[runtime] Move mono_invoke_unhandled_exception_hook to metadata
[mono.git] / mono / mini / driver.c
1 /*
2  * driver.c: The new mono JIT compiler.
3  *
4  * Author:
5  *   Paolo Molaro (lupus@ximian.com)
6  *   Dietmar Maurer (dietmar@ximian.com)
7  *
8  * (C) 2002-2003 Ximian, Inc.
9  * (C) 2003-2006 Novell, Inc.
10  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
11  */
12
13 #include <config.h>
14 #ifdef HAVE_SIGNAL_H
15 #include <signal.h>
16 #endif
17 #if HAVE_SCHED_SETAFFINITY
18 #include <sched.h>
19 #endif
20 #ifdef HAVE_UNISTD_H
21 #include <unistd.h>
22 #endif
23
24 #include <mono/metadata/assembly.h>
25 #include <mono/metadata/loader.h>
26 #include <mono/metadata/tabledefs.h>
27 #include <mono/metadata/class.h>
28 #include <mono/metadata/object.h>
29 #include <mono/metadata/exception.h>
30 #include <mono/metadata/opcodes.h>
31 #include <mono/metadata/mono-endian.h>
32 #include <mono/metadata/tokentype.h>
33 #include <mono/metadata/tabledefs.h>
34 #include <mono/metadata/threads.h>
35 #include <mono/metadata/marshal.h>
36 #include <mono/metadata/socket-io.h>
37 #include <mono/metadata/appdomain.h>
38 #include <mono/metadata/debug-helpers.h>
39 #include <mono/io-layer/io-layer.h>
40 #include "mono/metadata/profiler.h"
41 #include <mono/metadata/profiler-private.h>
42 #include <mono/metadata/mono-config.h>
43 #include <mono/metadata/environment.h>
44 #include <mono/metadata/verify.h>
45 #include <mono/metadata/verify-internals.h>
46 #include <mono/metadata/mono-debug.h>
47 #include <mono/metadata/security-manager.h>
48 #include <mono/metadata/security-core-clr.h>
49 #include <mono/metadata/gc-internals.h>
50 #include <mono/metadata/coree.h>
51 #include <mono/metadata/attach.h>
52 #include "mono/utils/mono-counters.h"
53 #include "mono/utils/mono-hwcap.h"
54 #include "mono/utils/mono-logger-internals.h"
55
56 #include "mini.h"
57 #include "jit.h"
58 #include "aot-compiler.h"
59
60 #include <string.h>
61 #include <ctype.h>
62 #include <locale.h>
63 #include "version.h"
64 #include "debugger-agent.h"
65 #if TARGET_OSX
66 #   include <sys/resource.h>
67 #endif
68
69 static FILE *mini_stats_fd;
70
71 static void mini_usage (void);
72
73 #ifdef HOST_WIN32
74 /* Need this to determine whether to detach console */
75 #include <mono/metadata/cil-coff.h>
76 /* This turns off command line globbing under win32 */
77 int _CRT_glob = 0;
78 #endif
79
80 typedef void (*OptFunc) (const char *p);
81
82 #undef OPTFLAG
83 #ifdef HAVE_ARRAY_ELEM_INIT
84 #define MSGSTRFIELD(line) MSGSTRFIELD1(line)
85 #define MSGSTRFIELD1(line) str##line
86
87 static const struct msgstr_t {
88 #define OPTFLAG(id,shift,name,desc) char MSGSTRFIELD(__LINE__) [sizeof (name) + sizeof (desc)];
89 #include "optflags-def.h"
90 #undef OPTFLAG
91 } opstr = {
92 #define OPTFLAG(id,shift,name,desc) name "\0" desc,
93 #include "optflags-def.h"
94 #undef OPTFLAG
95 };
96 static const gint16 opt_names [] = {
97 #define OPTFLAG(id,shift,name,desc) [(shift)] = offsetof (struct msgstr_t, MSGSTRFIELD(__LINE__)),
98 #include "optflags-def.h"
99 #undef OPTFLAG
100 };
101
102 #define optflag_get_name(id) ((const char*)&opstr + opt_names [(id)])
103 #define optflag_get_desc(id) (optflag_get_name(id) + 1 + strlen (optflag_get_name(id)))
104
105 #else /* !HAVE_ARRAY_ELEM_INIT */
106 typedef struct {
107         const char* name;
108         const char* desc;
109 } OptName;
110
111 #define OPTFLAG(id,shift,name,desc) {name,desc},
112 static const OptName 
113 opt_names [] = {
114 #include "optflags-def.h"
115         {NULL, NULL}
116 };
117 #define optflag_get_name(id) (opt_names [(id)].name)
118 #define optflag_get_desc(id) (opt_names [(id)].desc)
119
120 #endif
121
122 static const OptFunc
123 opt_funcs [sizeof (int) * 8] = {
124         NULL
125 };
126
127 #ifdef __native_client__
128 extern char *nacl_mono_path;
129 #endif
130
131 #define DEFAULT_OPTIMIZATIONS ( \
132         MONO_OPT_PEEPHOLE |     \
133         MONO_OPT_CFOLD |        \
134         MONO_OPT_INLINE |       \
135         MONO_OPT_CONSPROP |     \
136         MONO_OPT_COPYPROP |     \
137         MONO_OPT_DEADCE |       \
138         MONO_OPT_BRANCH |       \
139         MONO_OPT_LINEARS |      \
140         MONO_OPT_INTRINS |  \
141         MONO_OPT_LOOP |  \
142         MONO_OPT_EXCEPTION |  \
143     MONO_OPT_CMOV |  \
144         MONO_OPT_GSHARED |      \
145         MONO_OPT_SIMD | \
146         MONO_OPT_ALIAS_ANALYSIS | \
147         MONO_OPT_AOT)
148
149 #define EXCLUDED_FROM_ALL (MONO_OPT_SHARED | MONO_OPT_PRECOMP | MONO_OPT_UNSAFE | MONO_OPT_GSHAREDVT | MONO_OPT_FLOAT32)
150
151 static guint32
152 parse_optimizations (guint32 opt, const char* p, gboolean cpu_opts)
153 {
154         guint32 exclude = 0;
155         const char *n;
156         int i, invert, len;
157
158         /* Initialize the hwcap module if necessary. */
159         mono_hwcap_init ();
160
161         /* call out to cpu detection code here that sets the defaults ... */
162         if (cpu_opts) {
163                 opt |= mono_arch_cpu_optimizations (&exclude);
164                 opt &= ~exclude;
165         }
166         if (!p)
167                 return opt;
168
169         while (*p) {
170                 if (*p == '-') {
171                         p++;
172                         invert = TRUE;
173                 } else {
174                         invert = FALSE;
175                 }
176                 for (i = 0; i < G_N_ELEMENTS (opt_names) && optflag_get_name (i); ++i) {
177                         n = optflag_get_name (i);
178                         len = strlen (n);
179                         if (strncmp (p, n, len) == 0) {
180                                 if (invert)
181                                         opt &= ~ (1 << i);
182                                 else
183                                         opt |= 1 << i;
184                                 p += len;
185                                 if (*p == ',') {
186                                         p++;
187                                         break;
188                                 } else if (*p == '=') {
189                                         p++;
190                                         if (opt_funcs [i])
191                                                 opt_funcs [i] (p);
192                                         while (*p && *p++ != ',');
193                                         break;
194                                 }
195                                 /* error out */
196                                 break;
197                         }
198                 }
199                 if (i == G_N_ELEMENTS (opt_names) || !optflag_get_name (i)) {
200                         if (strncmp (p, "all", 3) == 0) {
201                                 if (invert)
202                                         opt = 0;
203                                 else
204                                         opt = ~(EXCLUDED_FROM_ALL | exclude);
205                                 p += 3;
206                                 if (*p == ',')
207                                         p++;
208                         } else {
209                                 fprintf (stderr, "Invalid optimization name `%s'\n", p);
210                                 exit (1);
211                         }
212                 }
213         }
214         return opt;
215 }
216
217 static gboolean
218 parse_debug_options (const char* p)
219 {
220         MonoDebugOptions *opt = mini_get_debug_options ();
221
222         do {
223                 if (!*p) {
224                         fprintf (stderr, "Syntax error; expected debug option name\n");
225                         return FALSE;
226                 }
227
228                 if (!strncmp (p, "casts", 5)) {
229                         opt->better_cast_details = TRUE;
230                         p += 5;
231                 } else if (!strncmp (p, "mdb-optimizations", 17)) {
232                         opt->mdb_optimizations = TRUE;
233                         p += 17;
234                 } else if (!strncmp (p, "gdb", 3)) {
235                         opt->gdb = TRUE;
236                         p += 3;
237                 } else {
238                         fprintf (stderr, "Invalid debug option `%s', use --help-debug for details\n", p);
239                         return FALSE;
240                 }
241
242                 if (*p == ',') {
243                         p++;
244                         if (!*p) {
245                                 fprintf (stderr, "Syntax error; expected debug option name\n");
246                                 return FALSE;
247                         }
248                 }
249         } while (*p);
250
251         return TRUE;
252 }
253
254 typedef struct {
255         const char name [6];
256         const char desc [18];
257         MonoGraphOptions value;
258 } GraphName;
259
260 static const GraphName 
261 graph_names [] = {
262         {"cfg",      "Control Flow",                            MONO_GRAPH_CFG},
263         {"dtree",    "Dominator Tree",                          MONO_GRAPH_DTREE},
264         {"code",     "CFG showing code",                        MONO_GRAPH_CFG_CODE},
265         {"ssa",      "CFG after SSA",                           MONO_GRAPH_CFG_SSA},
266         {"optc",     "CFG after IR opts",                       MONO_GRAPH_CFG_OPTCODE}
267 };
268
269 static MonoGraphOptions
270 mono_parse_graph_options (const char* p)
271 {
272         const char *n;
273         int i, len;
274
275         for (i = 0; i < G_N_ELEMENTS (graph_names); ++i) {
276                 n = graph_names [i].name;
277                 len = strlen (n);
278                 if (strncmp (p, n, len) == 0)
279                         return graph_names [i].value;
280         }
281
282         fprintf (stderr, "Invalid graph name provided: %s\n", p);
283         exit (1);
284 }
285
286 int
287 mono_parse_default_optimizations (const char* p)
288 {
289         guint32 opt;
290
291         opt = parse_optimizations (DEFAULT_OPTIMIZATIONS, p, TRUE);
292         return opt;
293 }
294
295 char*
296 mono_opt_descr (guint32 flags) {
297         GString *str = g_string_new ("");
298         int i, need_comma;
299
300         need_comma = 0;
301         for (i = 0; i < G_N_ELEMENTS (opt_names); ++i) {
302                 if (flags & (1 << i) && optflag_get_name (i)) {
303                         if (need_comma)
304                                 g_string_append_c (str, ',');
305                         g_string_append (str, optflag_get_name (i));
306                         need_comma = 1;
307                 }
308         }
309         return g_string_free (str, FALSE);
310 }
311
312 static const guint32
313 opt_sets [] = {
314        0,
315        MONO_OPT_PEEPHOLE,
316        MONO_OPT_BRANCH,
317        MONO_OPT_CFOLD,
318        MONO_OPT_FCMOV,
319        MONO_OPT_ALIAS_ANALYSIS,
320 #ifdef MONO_ARCH_SIMD_INTRINSICS
321        MONO_OPT_SIMD,
322        MONO_OPT_SSE2,
323        MONO_OPT_SIMD | MONO_OPT_SSE2,
324 #endif
325        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_INTRINS,
326        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_INTRINS | MONO_OPT_ALIAS_ANALYSIS,
327        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_LINEARS,
328        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_LINEARS | MONO_OPT_COPYPROP,
329        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_LINEARS | MONO_OPT_CFOLD,
330        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_LINEARS | MONO_OPT_COPYPROP | MONO_OPT_CONSPROP | MONO_OPT_DEADCE,
331        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_LINEARS | MONO_OPT_COPYPROP | MONO_OPT_CONSPROP | MONO_OPT_DEADCE | MONO_OPT_ALIAS_ANALYSIS,
332        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_LINEARS | MONO_OPT_COPYPROP | MONO_OPT_CONSPROP | MONO_OPT_DEADCE | MONO_OPT_LOOP | MONO_OPT_INLINE | MONO_OPT_INTRINS,
333        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_LINEARS | MONO_OPT_COPYPROP | MONO_OPT_CONSPROP | MONO_OPT_DEADCE | MONO_OPT_LOOP | MONO_OPT_INLINE | MONO_OPT_INTRINS | MONO_OPT_TAILC,
334        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_LINEARS | MONO_OPT_COPYPROP | MONO_OPT_CONSPROP | MONO_OPT_DEADCE | MONO_OPT_LOOP | MONO_OPT_INLINE | MONO_OPT_INTRINS | MONO_OPT_SSA,
335        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_LINEARS | MONO_OPT_COPYPROP | MONO_OPT_CONSPROP | MONO_OPT_DEADCE | MONO_OPT_LOOP | MONO_OPT_INLINE | MONO_OPT_INTRINS | MONO_OPT_EXCEPTION,
336        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_LINEARS | MONO_OPT_COPYPROP | MONO_OPT_CONSPROP | MONO_OPT_DEADCE | MONO_OPT_LOOP | MONO_OPT_INLINE | MONO_OPT_INTRINS | MONO_OPT_EXCEPTION | MONO_OPT_CMOV,
337        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_LINEARS | MONO_OPT_COPYPROP | MONO_OPT_CONSPROP | MONO_OPT_DEADCE | MONO_OPT_LOOP | MONO_OPT_INLINE | MONO_OPT_INTRINS | MONO_OPT_EXCEPTION | MONO_OPT_ABCREM,
338        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_LINEARS | MONO_OPT_COPYPROP | MONO_OPT_CONSPROP | MONO_OPT_DEADCE | MONO_OPT_LOOP | MONO_OPT_INLINE | MONO_OPT_INTRINS | MONO_OPT_ABCREM,
339        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_LINEARS | MONO_OPT_COPYPROP | MONO_OPT_CONSPROP | MONO_OPT_DEADCE | MONO_OPT_LOOP | MONO_OPT_INLINE | MONO_OPT_INTRINS | MONO_OPT_ABCREM | MONO_OPT_SHARED,
340        DEFAULT_OPTIMIZATIONS, 
341 };
342
343 typedef int (*TestMethod) (void);
344
345 #if 0
346 static void
347 domain_dump_native_code (MonoDomain *domain) {
348         // need to poke into the domain, move to metadata/domain.c
349         // need to empty jit_info_table and code_mp
350 }
351 #endif
352
353 static void
354 mini_regression_step (MonoImage *image, int verbose, int *total_run, int *total,
355                 guint32 opt_flags,
356                 GTimer *timer, MonoDomain *domain)
357 {
358         int result, expected, failed, cfailed, run, code_size;
359         TestMethod func;
360         double elapsed, comp_time, start_time;
361         char *n;
362         int i;
363
364         mono_set_defaults (verbose, opt_flags);
365         n = mono_opt_descr (opt_flags);
366         g_print ("Test run: image=%s, opts=%s\n", mono_image_get_filename (image), n);
367         g_free (n);
368         cfailed = failed = run = code_size = 0;
369         comp_time = elapsed = 0.0;
370
371         /* fixme: ugly hack - delete all previously compiled methods */
372         if (domain_jit_info (domain)) {
373                 g_hash_table_destroy (domain_jit_info (domain)->jit_trampoline_hash);
374                 domain_jit_info (domain)->jit_trampoline_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
375                 mono_internal_hash_table_destroy (&(domain->jit_code_hash));
376                 mono_jit_code_hash_init (&(domain->jit_code_hash));
377         }
378
379         g_timer_start (timer);
380         if (mini_stats_fd)
381                 fprintf (mini_stats_fd, "[");
382         for (i = 0; i < mono_image_get_table_rows (image, MONO_TABLE_METHOD); ++i) {
383                 MonoError error;
384                 MonoMethod *method = mono_get_method_checked (image, MONO_TOKEN_METHOD_DEF | (i + 1), NULL, NULL, &error);
385                 if (!method) {
386                         mono_error_cleanup (&error); /* FIXME don't swallow the error */
387                         continue;
388                 }
389                 if (strncmp (method->name, "test_", 5) == 0) {
390                         MonoCompile *cfg;
391
392                         expected = atoi (method->name + 5);
393                         run++;
394                         start_time = g_timer_elapsed (timer, NULL);
395                         comp_time -= start_time;
396                         cfg = mini_method_compile (method, mono_get_optimizations_for_method (method, opt_flags), mono_get_root_domain (), JIT_FLAG_RUN_CCTORS, 0, -1);
397                         comp_time += g_timer_elapsed (timer, NULL);
398                         if (cfg->exception_type == MONO_EXCEPTION_NONE) {
399                                 if (verbose >= 2)
400                                         g_print ("Running '%s' ...\n", method->name);
401 #ifdef MONO_USE_AOT_COMPILER
402                                 MonoError error;
403                                 func = (TestMethod)mono_aot_get_method_checked (mono_get_root_domain (), method, &error);
404                                 mono_error_cleanup (&error);
405                                 if (!func)
406                                         func = (TestMethod)(gpointer)cfg->native_code;
407 #else
408                                         func = (TestMethod)(gpointer)cfg->native_code;
409 #endif
410                                 func = (TestMethod)mono_create_ftnptr (mono_get_root_domain (), func);
411                                 result = func ();
412                                 if (result != expected) {
413                                         failed++;
414                                         g_print ("Test '%s' failed result (got %d, expected %d).\n", method->name, result, expected);
415                                 }
416                                 code_size += cfg->code_len;
417                                 mono_destroy_compile (cfg);
418
419                         } else {
420                                 cfailed++;
421                                 g_print ("Test '%s' failed compilation.\n", method->name);
422                         }
423                         if (mini_stats_fd)
424                                 fprintf (mini_stats_fd, "%f, ",
425                                                 g_timer_elapsed (timer, NULL) - start_time);
426                 }
427         }
428         if (mini_stats_fd)
429                 fprintf (mini_stats_fd, "],\n");
430         g_timer_stop (timer);
431         elapsed = g_timer_elapsed (timer, NULL);
432         if (failed > 0 || cfailed > 0){
433                 g_print ("Results: total tests: %d, failed: %d, cfailed: %d (pass: %.2f%%)\n",
434                                 run, failed, cfailed, 100.0*(run-failed-cfailed)/run);
435         } else {
436                 g_print ("Results: total tests: %d, all pass \n",  run);
437         }
438
439         g_print ("Elapsed time: %f secs (%f, %f), Code size: %d\n\n", elapsed,
440                         elapsed - comp_time, comp_time, code_size);
441         *total += failed + cfailed;
442         *total_run += run;
443 }
444
445 static int
446 mini_regression (MonoImage *image, int verbose, int *total_run)
447 {
448         guint32 i, opt;
449         MonoMethod *method;
450         char *n;
451         GTimer *timer = g_timer_new ();
452         MonoDomain *domain = mono_domain_get ();
453         guint32 exclude = 0;
454         int total;
455
456         /* Note: mono_hwcap_init () called in mono_init () before we get here. */
457         mono_arch_cpu_optimizations (&exclude);
458
459         if (mini_stats_fd) {
460                 fprintf (mini_stats_fd, "$stattitle = \'Mono Benchmark Results (various optimizations)\';\n");
461
462                 fprintf (mini_stats_fd, "$graph->set_legend(qw(");
463                 for (opt = 0; opt < G_N_ELEMENTS (opt_sets); opt++) {
464                         guint32 opt_flags = opt_sets [opt];
465                         n = mono_opt_descr (opt_flags);
466                         if (!n [0])
467                                 n = (char *)"none";
468                         if (opt)
469                                 fprintf (mini_stats_fd, " ");
470                         fprintf (mini_stats_fd, "%s", n);
471                 
472
473                 }
474                 fprintf (mini_stats_fd, "));\n");
475
476                 fprintf (mini_stats_fd, "@data = (\n");
477                 fprintf (mini_stats_fd, "[");
478         }
479
480         /* load the metadata */
481         for (i = 0; i < mono_image_get_table_rows (image, MONO_TABLE_METHOD); ++i) {
482                 MonoError error;
483                 method = mono_get_method_checked (image, MONO_TOKEN_METHOD_DEF | (i + 1), NULL, NULL, &error);
484                 if (!method) {
485                         mono_error_cleanup (&error);
486                         continue;
487                 }
488                 mono_class_init (method->klass);
489
490                 if (!strncmp (method->name, "test_", 5) && mini_stats_fd) {
491                         fprintf (mini_stats_fd, "\"%s\",", method->name);
492                 }
493         }
494         if (mini_stats_fd)
495                 fprintf (mini_stats_fd, "],\n");
496
497
498         total = 0;
499         *total_run = 0;
500         if (mono_do_single_method_regression) {
501                 GSList *iter;
502
503                 mini_regression_step (image, verbose, total_run, &total,
504                                 0,
505                                 timer, domain);
506                 if (total)
507                         return total;
508                 g_print ("Single method regression: %d methods\n", g_slist_length (mono_single_method_list));
509
510                 for (iter = mono_single_method_list; iter; iter = g_slist_next (iter)) {
511                         char *method_name;
512
513                         mono_current_single_method = (MonoMethod *)iter->data;
514
515                         method_name = mono_method_full_name (mono_current_single_method, TRUE);
516                         g_print ("Current single method: %s\n", method_name);
517                         g_free (method_name);
518
519                         mini_regression_step (image, verbose, total_run, &total,
520                                         0,
521                                         timer, domain);
522                         if (total)
523                                 return total;
524                 }
525         } else {
526                 for (opt = 0; opt < G_N_ELEMENTS (opt_sets); ++opt) {
527                         mini_regression_step (image, verbose, total_run, &total,
528                                         opt_sets [opt] & ~exclude,
529                                         timer, domain);
530                 }
531         }
532
533         if (mini_stats_fd) {
534                 fprintf (mini_stats_fd, ");\n");
535                 fflush (mini_stats_fd);
536         }
537
538         g_timer_destroy (timer);
539         return total;
540 }
541
542 static int
543 mini_regression_list (int verbose, int count, char *images [])
544 {
545         int i, total, total_run, run;
546         MonoAssembly *ass;
547         
548         total_run =  total = 0;
549         for (i = 0; i < count; ++i) {
550                 ass = mono_assembly_open (images [i], NULL);
551                 if (!ass) {
552                         g_warning ("failed to load assembly: %s", images [i]);
553                         continue;
554                 }
555                 total += mini_regression (mono_assembly_get_image (ass), verbose, &run);
556                 total_run += run;
557         }
558         if (total > 0){
559                 g_print ("Overall results: tests: %d, failed: %d, opt combinations: %d (pass: %.2f%%)\n", 
560                          total_run, total, (int)G_N_ELEMENTS (opt_sets), 100.0*(total_run-total)/total_run);
561         } else {
562                 g_print ("Overall results: tests: %d, 100%% pass, opt combinations: %d\n", 
563                          total_run, (int)G_N_ELEMENTS (opt_sets));
564         }
565         
566         return total;
567 }
568
569 #ifdef MONO_JIT_INFO_TABLE_TEST
570 typedef struct _JitInfoData
571 {
572         guint start;
573         guint length;
574         MonoJitInfo *ji;
575         struct _JitInfoData *next;
576 } JitInfoData;
577
578 typedef struct
579 {
580         guint start;
581         guint length;
582         int num_datas;
583         JitInfoData *data;
584 } Region;
585
586 typedef struct
587 {
588         int num_datas;
589         int num_regions;
590         Region *regions;
591         int num_frees;
592         JitInfoData *frees;
593 } ThreadData;
594
595 static int num_threads;
596 static ThreadData *thread_datas;
597 static MonoDomain *test_domain;
598
599 static JitInfoData*
600 alloc_random_data (Region *region)
601 {
602         JitInfoData **data;
603         JitInfoData *prev;
604         guint prev_end;
605         guint next_start;
606         guint max_len;
607         JitInfoData *d;
608         int num_retries = 0;
609         int pos, i;
610
611  restart:
612         prev = NULL;
613         data = &region->data;
614         pos = random () % (region->num_datas + 1);
615         i = 0;
616         while (*data != NULL) {
617                 if (i++ == pos)
618                         break;
619                 prev = *data;
620                 data = &(*data)->next;
621         }
622
623         if (prev == NULL)
624                 g_assert (*data == region->data);
625         else
626                 g_assert (prev->next == *data);
627
628         if (prev == NULL)
629                 prev_end = region->start;
630         else
631                 prev_end = prev->start + prev->length;
632
633         if (*data == NULL)
634                 next_start = region->start + region->length;
635         else
636                 next_start = (*data)->start;
637
638         g_assert (prev_end <= next_start);
639
640         max_len = next_start - prev_end;
641         if (max_len < 128) {
642                 if (++num_retries >= 10)
643                         return NULL;
644                 goto restart;
645         }
646         if (max_len > 1024)
647                 max_len = 1024;
648
649         d = g_new0 (JitInfoData, 1);
650         d->start = prev_end + random () % (max_len / 2);
651         d->length = random () % MIN (max_len, next_start - d->start) + 1;
652
653         g_assert (d->start >= prev_end && d->start + d->length <= next_start);
654
655         d->ji = g_new0 (MonoJitInfo, 1);
656         d->ji->d.method = (MonoMethod*) 0xABadBabe;
657         d->ji->code_start = (gpointer)(gulong) d->start;
658         d->ji->code_size = d->length;
659         d->ji->cas_inited = 1;  /* marks an allocated jit info */
660
661         d->next = *data;
662         *data = d;
663
664         ++region->num_datas;
665
666         return d;
667 }
668
669 static JitInfoData**
670 choose_random_data (Region *region)
671 {
672         int n;
673         int i;
674         JitInfoData **d;
675
676         g_assert (region->num_datas > 0);
677
678         n = random () % region->num_datas;
679
680         for (d = &region->data, i = 0;
681              i < n;
682              d = &(*d)->next, ++i)
683                 ;
684
685         return d;
686 }
687
688 static Region*
689 choose_random_region (ThreadData *td)
690 {
691         return &td->regions [random () % td->num_regions];
692 }
693
694 static ThreadData*
695 choose_random_thread (void)
696 {
697         return &thread_datas [random () % num_threads];
698 }
699
700 static void
701 free_jit_info_data (ThreadData *td, JitInfoData *free)
702 {
703         free->next = td->frees;
704         td->frees = free;
705
706         if (++td->num_frees >= 1000) {
707                 int i;
708
709                 for (i = 0; i < 500; ++i)
710                         free = free->next;
711
712                 while (free->next != NULL) {
713                         JitInfoData *next = free->next->next;
714
715                         //g_free (free->next->ji);
716                         g_free (free->next);
717                         free->next = next;
718
719                         --td->num_frees;
720                 }
721         }
722 }
723
724 #define NUM_THREADS             8
725 #define REGIONS_PER_THREAD      10
726 #define REGION_SIZE             0x10000
727
728 #define MAX_ADDR                (REGION_SIZE * REGIONS_PER_THREAD * NUM_THREADS)
729
730 #define MODE_ALLOC      1
731 #define MODE_FREE       2
732
733 static void
734 test_thread_func (ThreadData *td)
735 {
736         int mode = MODE_ALLOC;
737         int i = 0;
738         gulong lookup_successes = 0, lookup_failures = 0;
739         MonoDomain *domain = test_domain;
740         int thread_num = (int)(td - thread_datas);
741         gboolean modify_thread = thread_num < NUM_THREADS / 2; /* only half of the threads modify the table */
742
743         for (;;) {
744                 int alloc;
745                 int lookup = 1;
746
747                 if (td->num_datas == 0) {
748                         lookup = 0;
749                         alloc = 1;
750                 } else if (modify_thread && random () % 1000 < 5) {
751                         lookup = 0;
752                         if (mode == MODE_ALLOC)
753                                 alloc = (random () % 100) < 70;
754                         else if (mode == MODE_FREE)
755                                 alloc = (random () % 100) < 30;
756                 }
757
758                 if (lookup) {
759                         /* modify threads sometimes look up their own jit infos */
760                         if (modify_thread && random () % 10 < 5) {
761                                 Region *region = choose_random_region (td);
762
763                                 if (region->num_datas > 0) {
764                                         JitInfoData **data = choose_random_data (region);
765                                         guint pos = (*data)->start + random () % (*data)->length;
766                                         MonoJitInfo *ji;
767
768                                         ji = mono_jit_info_table_find (domain, (char*)(gulong) pos);
769
770                                         g_assert (ji->cas_inited);
771                                         g_assert ((*data)->ji == ji);
772                                 }
773                         } else {
774                                 int pos = random () % MAX_ADDR;
775                                 char *addr = (char*)(gulong) pos;
776                                 MonoJitInfo *ji;
777
778                                 ji = mono_jit_info_table_find (domain, addr);
779
780                                 /*
781                                  * FIXME: We are actually not allowed
782                                  * to do this.  By the time we examine
783                                  * the ji another thread might already
784                                  * have removed it.
785                                  */
786                                 if (ji != NULL) {
787                                         g_assert (addr >= (char*)ji->code_start && addr < (char*)ji->code_start + ji->code_size);
788                                         ++lookup_successes;
789                                 } else
790                                         ++lookup_failures;
791                         }
792                 } else if (alloc) {
793                         JitInfoData *data = alloc_random_data (choose_random_region (td));
794
795                         if (data != NULL) {
796                                 mono_jit_info_table_add (domain, data->ji);
797
798                                 ++td->num_datas;
799                         }
800                 } else {
801                         Region *region = choose_random_region (td);
802
803                         if (region->num_datas > 0) {
804                                 JitInfoData **data = choose_random_data (region);
805                                 JitInfoData *free;
806
807                                 mono_jit_info_table_remove (domain, (*data)->ji);
808
809                                 //(*data)->ji->cas_inited = 0; /* marks a free jit info */
810
811                                 free = *data;
812                                 *data = (*data)->next;
813
814                                 free_jit_info_data (td, free);
815
816                                 --region->num_datas;
817                                 --td->num_datas;
818                         }
819                 }
820
821                 if (++i % 100000 == 0) {
822                         int j;
823                         g_print ("num datas %d (%ld - %ld): %d", (int)(td - thread_datas),
824                                  lookup_successes, lookup_failures, td->num_datas);
825                         for (j = 0; j < td->num_regions; ++j)
826                                 g_print ("  %d", td->regions [j].num_datas);
827                         g_print ("\n");
828                 }
829
830                 if (td->num_datas < 100)
831                         mode = MODE_ALLOC;
832                 else if (td->num_datas > 2000)
833                         mode = MODE_FREE;
834         }
835 }
836
837 /*
838 static void
839 small_id_thread_func (gpointer arg)
840 {
841         MonoThread *thread = mono_thread_current ();
842         MonoThreadHazardPointers *hp = mono_hazard_pointer_get ();
843
844         g_print ("my small id is %d\n", (int)thread->small_id);
845         mono_hazard_pointer_clear (hp, 1);
846         sleep (3);
847         g_print ("done %d\n", (int)thread->small_id);
848 }
849 */
850
851 static void
852 jit_info_table_test (MonoDomain *domain)
853 {
854         MonoError error;
855         int i;
856
857         g_print ("testing jit_info_table\n");
858
859         num_threads = NUM_THREADS;
860         thread_datas = g_new0 (ThreadData, num_threads);
861
862         for (i = 0; i < num_threads; ++i) {
863                 int j;
864
865                 thread_datas [i].num_regions = REGIONS_PER_THREAD;
866                 thread_datas [i].regions = g_new0 (Region, REGIONS_PER_THREAD);
867
868                 for (j = 0; j < REGIONS_PER_THREAD; ++j) {
869                         thread_datas [i].regions [j].start = (num_threads * j + i) * REGION_SIZE;
870                         thread_datas [i].regions [j].length = REGION_SIZE;
871                 }
872         }
873
874         test_domain = domain;
875
876         /*
877         for (i = 0; i < 72; ++i)
878                 mono_thread_create (domain, small_id_thread_func, NULL);
879
880         sleep (2);
881         */
882
883         for (i = 0; i < num_threads; ++i) {
884                 mono_thread_create_checked (domain, test_thread_func, &thread_datas [i], &error);
885                 mono_error_assert_ok (&error);
886         }
887 }
888 #endif
889
890 enum {
891         DO_BENCH,
892         DO_REGRESSION,
893         DO_SINGLE_METHOD_REGRESSION,
894         DO_COMPILE,
895         DO_EXEC,
896         DO_DRAW,
897         DO_DEBUGGER
898 };
899
900 typedef struct CompileAllThreadArgs {
901         MonoAssembly *ass;
902         int verbose;
903         guint32 opts;
904         guint32 recompilation_times;
905 } CompileAllThreadArgs;
906
907 static void
908 compile_all_methods_thread_main_inner (CompileAllThreadArgs *args)
909 {
910         MonoAssembly *ass = args->ass;
911         int verbose = args->verbose;
912         MonoImage *image = mono_assembly_get_image (ass);
913         MonoMethod *method;
914         MonoCompile *cfg;
915         int i, count = 0, fail_count = 0;
916
917         for (i = 0; i < mono_image_get_table_rows (image, MONO_TABLE_METHOD); ++i) {
918                 MonoError error;
919                 guint32 token = MONO_TOKEN_METHOD_DEF | (i + 1);
920                 MonoMethodSignature *sig;
921
922                 if (mono_metadata_has_generic_params (image, token))
923                         continue;
924
925                 method = mono_get_method_checked (image, token, NULL, NULL, &error);
926                 if (!method) {
927                         mono_error_cleanup (&error); /* FIXME don't swallow the error */
928                         continue;
929                 }
930                 if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
931                     (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
932                     (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
933                     (method->flags & METHOD_ATTRIBUTE_ABSTRACT))
934                         continue;
935
936                 if (method->klass->generic_container)
937                         continue;
938                 sig = mono_method_signature (method);
939                 if (!sig) {
940                         char * desc = mono_method_full_name (method, TRUE);
941                         g_print ("Could not retrieve method signature for %s\n", desc);
942                         g_free (desc);
943                         fail_count ++;
944                         continue;
945                 }
946
947                 if (sig->has_type_parameters)
948                         continue;
949
950                 count++;
951                 if (verbose) {
952                         char * desc = mono_method_full_name (method, TRUE);
953                         g_print ("Compiling %d %s\n", count, desc);
954                         g_free (desc);
955                 }
956                 cfg = mini_method_compile (method, mono_get_optimizations_for_method (method, args->opts), mono_get_root_domain (), (JitFlags)0, 0, -1);
957                 if (cfg->exception_type != MONO_EXCEPTION_NONE) {
958                         printf ("Compilation of %s failed with exception '%s':\n", mono_method_full_name (cfg->method, TRUE), cfg->exception_message);
959                         fail_count ++;
960                 }
961                 mono_destroy_compile (cfg);
962         }
963
964         if (fail_count)
965                 exit (1);
966 }
967
968 static void
969 compile_all_methods_thread_main (CompileAllThreadArgs *args)
970 {
971         guint32 i;
972         for (i = 0; i < args->recompilation_times; ++i)
973                 compile_all_methods_thread_main_inner (args);
974 }
975
976 static void
977 compile_all_methods (MonoAssembly *ass, int verbose, guint32 opts, guint32 recompilation_times)
978 {
979         MonoError error;
980         CompileAllThreadArgs args;
981
982         args.ass = ass;
983         args.verbose = verbose;
984         args.opts = opts;
985         args.recompilation_times = recompilation_times;
986
987         /* 
988          * Need to create a mono thread since compilation might trigger
989          * running of managed code.
990          */
991         mono_thread_create_checked (mono_domain_get (), compile_all_methods_thread_main, &args, &error);
992         mono_error_assert_ok (&error);
993
994         mono_thread_manage ();
995 }
996
997 /**
998  * mono_jit_exec:
999  * @assembly: reference to an assembly
1000  * @argc: argument count
1001  * @argv: argument vector
1002  *
1003  * Start execution of a program.
1004  */
1005 int 
1006 mono_jit_exec (MonoDomain *domain, MonoAssembly *assembly, int argc, char *argv[])
1007 {
1008         MonoError error;
1009         MonoImage *image = mono_assembly_get_image (assembly);
1010         MonoMethod *method;
1011         guint32 entry = mono_image_get_entry_point (image);
1012
1013         if (!entry) {
1014                 g_print ("Assembly '%s' doesn't have an entry point.\n", mono_image_get_filename (image));
1015                 /* FIXME: remove this silly requirement. */
1016                 mono_environment_exitcode_set (1);
1017                 return 1;
1018         }
1019
1020         method = mono_get_method_checked (image, entry, NULL, NULL, &error);
1021         if (method == NULL){
1022                 g_print ("The entry point method could not be loaded due to %s\n", mono_error_get_message (&error));
1023                 mono_error_cleanup (&error);
1024                 mono_environment_exitcode_set (1);
1025                 return 1;
1026         }
1027         
1028         if (mono_llvm_only) {
1029                 MonoObject *exc = NULL;
1030                 int res;
1031
1032                 res = mono_runtime_try_run_main (method, argc, argv, &exc);
1033                 if (exc) {
1034                         mono_unhandled_exception (exc);
1035                         mono_invoke_unhandled_exception_hook (exc);
1036                         g_assert_not_reached ();
1037                 }
1038                 return res;
1039         } else {
1040                 int res = mono_runtime_run_main_checked (method, argc, argv, &error);
1041                 if (!is_ok (&error)) {
1042                         MonoException *ex = mono_error_convert_to_exception (&error);
1043                         if (ex) {
1044                                 mono_unhandled_exception (&ex->object);
1045                                 mono_invoke_unhandled_exception_hook (&ex->object);
1046                                 g_assert_not_reached ();
1047                         }
1048                 }
1049                 return res;
1050         }
1051 }
1052
1053 typedef struct 
1054 {
1055         MonoDomain *domain;
1056         const char *file;
1057         int argc;
1058         char **argv;
1059         guint32 opts;
1060         char *aot_options;
1061 } MainThreadArgs;
1062
1063 static void main_thread_handler (gpointer user_data)
1064 {
1065         MainThreadArgs *main_args = (MainThreadArgs *)user_data;
1066         MonoAssembly *assembly;
1067
1068         if (mono_compile_aot) {
1069                 int i, res;
1070
1071                 /* Treat the other arguments as assemblies to compile too */
1072                 for (i = 0; i < main_args->argc; ++i) {
1073                         assembly = mono_domain_assembly_open (main_args->domain, main_args->argv [i]);
1074                         if (!assembly) {
1075                                 fprintf (stderr, "Can not open image %s\n", main_args->argv [i]);
1076                                 exit (1);
1077                         }
1078                         /* Check that the assembly loaded matches the filename */
1079                         {
1080                                 MonoImageOpenStatus status;
1081                                 MonoImage *img;
1082
1083                                 img = mono_image_open (main_args->argv [i], &status);
1084                                 if (img && strcmp (img->name, assembly->image->name)) {
1085                                         fprintf (stderr, "Error: Loaded assembly '%s' doesn't match original file name '%s'. Set MONO_PATH to the assembly's location.\n", assembly->image->name, img->name);
1086                                         exit (1);
1087                                 }
1088                         }
1089                         res = mono_compile_assembly (assembly, main_args->opts, main_args->aot_options);
1090                         if (res != 0) {
1091                                 fprintf (stderr, "AOT of image %s failed.\n", main_args->argv [i]);
1092                                 exit (1);
1093                         }
1094                 }
1095         } else {
1096                 assembly = mono_domain_assembly_open (main_args->domain, main_args->file);
1097                 if (!assembly){
1098                         fprintf (stderr, "Can not open image %s\n", main_args->file);
1099                         exit (1);
1100                 }
1101
1102                 /* 
1103                  * This must be done in a thread managed by mono since it can invoke
1104                  * managed code.
1105                  */
1106                 if (main_args->opts & MONO_OPT_PRECOMP)
1107                         mono_precompile_assemblies ();
1108
1109                 mono_jit_exec (main_args->domain, assembly, main_args->argc, main_args->argv);
1110         }
1111 }
1112
1113 static int
1114 load_agent (MonoDomain *domain, char *desc)
1115 {
1116         MonoError error;
1117         char* col = strchr (desc, ':'); 
1118         char *agent, *args;
1119         MonoAssembly *agent_assembly;
1120         MonoImage *image;
1121         MonoMethod *method;
1122         guint32 entry;
1123         MonoArray *main_args;
1124         gpointer pa [1];
1125         MonoImageOpenStatus open_status;
1126
1127         if (col) {
1128                 agent = (char *)g_memdup (desc, col - desc + 1);
1129                 agent [col - desc] = '\0';
1130                 args = col + 1;
1131         } else {
1132                 agent = g_strdup (desc);
1133                 args = NULL;
1134         }
1135
1136         agent_assembly = mono_assembly_open (agent, &open_status);
1137         if (!agent_assembly) {
1138                 fprintf (stderr, "Cannot open agent assembly '%s': %s.\n", agent, mono_image_strerror (open_status));
1139                 g_free (agent);
1140                 return 2;
1141         }
1142
1143         /* 
1144          * Can't use mono_jit_exec (), as it sets things which might confuse the
1145          * real Main method.
1146          */
1147         image = mono_assembly_get_image (agent_assembly);
1148         entry = mono_image_get_entry_point (image);
1149         if (!entry) {
1150                 g_print ("Assembly '%s' doesn't have an entry point.\n", mono_image_get_filename (image));
1151                 g_free (agent);
1152                 return 1;
1153         }
1154
1155         method = mono_get_method_checked (image, entry, NULL, NULL, &error);
1156         if (method == NULL){
1157                 g_print ("The entry point method of assembly '%s' could not be loaded due to %s\n", agent, mono_error_get_message (&error));
1158                 mono_error_cleanup (&error);
1159                 g_free (agent);
1160                 return 1;
1161         }
1162         
1163         mono_thread_set_main (mono_thread_current ());
1164
1165         if (args) {
1166                 main_args = (MonoArray*)mono_array_new_checked (domain, mono_defaults.string_class, 1, &error);
1167                 if (main_args)
1168                         mono_array_set (main_args, MonoString*, 0, mono_string_new (domain, args));
1169         } else {
1170                 main_args = (MonoArray*)mono_array_new_checked (domain, mono_defaults.string_class, 0, &error);
1171         }
1172         if (!main_args) {
1173                 g_print ("Could not allocate array for main args of assembly '%s' due to %s\n", agent, mono_error_get_message (&error));
1174                 mono_error_cleanup (&error);
1175                 g_free (agent);
1176                 return 1;
1177         }
1178         
1179
1180         pa [0] = main_args;
1181         /* Pass NULL as 'exc' so unhandled exceptions abort the runtime */
1182         mono_runtime_invoke_checked (method, NULL, pa, &error);
1183         if (!is_ok (&error)) {
1184                 g_print ("The entry point method of assembly '%s' could not execute due to %s\n", agent, mono_error_get_message (&error));
1185                 mono_error_cleanup (&error);
1186                 g_free (agent);
1187                 return 1;
1188         }
1189
1190         g_free (agent);
1191         return 0;
1192 }
1193
1194 static void
1195 mini_usage_jitdeveloper (void)
1196 {
1197         int i;
1198         
1199         fprintf (stdout,
1200                  "Runtime and JIT debugging options:\n"
1201                  "    --breakonex            Inserts a breakpoint on exceptions\n"
1202                  "    --break METHOD         Inserts a breakpoint at METHOD entry\n"
1203                  "    --break-at-bb METHOD N Inserts a breakpoint in METHOD at BB N\n"
1204                  "    --compile METHOD       Just compile METHOD in assembly\n"
1205                  "    --compile-all=N        Compiles all the methods in the assembly multiple times (default: 1)\n"
1206                  "    --ncompile N           Number of times to compile METHOD (default: 1)\n"
1207                  "    --print-vtable         Print the vtable of all used classes\n"
1208                  "    --regression           Runs the regression test contained in the assembly\n"
1209                  "    --single-method=OPTS   Runs regressions with only one method optimized with OPTS at any time\n"
1210                  "    --statfile FILE        Sets the stat file to FILE\n"
1211                  "    --stats                Print statistics about the JIT operations\n"
1212                  "    --wapi=hps|semdel|seminfo IO-layer maintenance\n"
1213                  "    --inject-async-exc METHOD OFFSET Inject an asynchronous exception at METHOD\n"
1214                  "    --verify-all           Run the verifier on all assemblies and methods\n"
1215                  "    --full-aot             Avoid JITting any code\n"
1216                  "    --llvmonly             Use LLVM compiled code only\n"
1217                  "    --agent=ASSEMBLY[:ARG] Loads the specific agent assembly and executes its Main method with the given argument before loading the main assembly.\n"
1218                  "    --no-x86-stack-align   Don't align stack on x86\n"
1219                  "\n"
1220                  "The options supported by MONO_DEBUG can also be passed on the command line.\n"
1221                  "\n"
1222                  "Other options:\n" 
1223                  "    --graph[=TYPE] METHOD  Draws a graph of the specified method:\n");
1224         
1225         for (i = 0; i < G_N_ELEMENTS (graph_names); ++i) {
1226                 fprintf (stdout, "                           %-10s %s\n", graph_names [i].name, graph_names [i].desc);
1227         }
1228 }
1229
1230 static void
1231 mini_usage_list_opt (void)
1232 {
1233         int i;
1234         
1235         for (i = 0; i < G_N_ELEMENTS (opt_names); ++i)
1236                 fprintf (stdout, "                           %-10s %s\n", optflag_get_name (i), optflag_get_desc (i));
1237 }
1238
1239 static void
1240 mini_usage (void)
1241 {
1242         fprintf (stdout,
1243                 "Usage is: mono [options] program [program-options]\n"
1244                 "\n"
1245                 "Development:\n"
1246                 "    --aot[=<options>]      Compiles the assembly to native code\n"
1247                 "    --debug[=<options>]    Enable debugging support, use --help-debug for details\n"
1248                 "    --debugger-agent=options Enable the debugger agent\n"
1249                 "    --profile[=profiler]   Runs in profiling mode with the specified profiler module\n"
1250                 "    --trace[=EXPR]         Enable tracing, use --help-trace for details\n"
1251                 "    --jitmap               Output a jit method map to /tmp/perf-PID.map\n"
1252                 "    --help-devel           Shows more options available to developers\n"
1253                 "\n"
1254                 "Runtime:\n"
1255                 "    --config FILE          Loads FILE as the Mono config\n"
1256                 "    --verbose, -v          Increases the verbosity level\n"
1257                 "    --help, -h             Show usage information\n"
1258                 "    --version, -V          Show version information\n"
1259                 "    --runtime=VERSION      Use the VERSION runtime, instead of autodetecting\n"
1260                 "    --optimize=OPT         Turns on or off a specific optimization\n"
1261                 "                           Use --list-opt to get a list of optimizations\n"
1262 #ifndef DISABLE_SECURITY
1263                 "    --security[=mode]      Turns on the unsupported security manager (off by default)\n"
1264                 "                           mode is one of cas, core-clr, verifiable or validil\n"
1265 #endif
1266                 "    --attach=OPTIONS       Pass OPTIONS to the attach agent in the runtime.\n"
1267                 "                           Currently the only supported option is 'disable'.\n"
1268                 "    --llvm, --nollvm       Controls whenever the runtime uses LLVM to compile code.\n"
1269                 "    --gc=[sgen,boehm]      Select SGen or Boehm GC (runs mono or mono-sgen)\n"
1270 #ifdef TARGET_OSX
1271                 "    --arch=[32,64]         Select architecture (runs mono32 or mono64)\n"
1272 #endif
1273 #ifdef HOST_WIN32
1274                 "    --mixed-mode           Enable mixed-mode image support.\n"
1275 #endif
1276           );
1277 }
1278
1279 static void
1280 mini_trace_usage (void)
1281 {
1282         fprintf (stdout,
1283                  "Tracing options:\n"
1284                  "   --trace[=EXPR]        Trace every call, optional EXPR controls the scope\n"
1285                  "\n"
1286                  "EXPR is composed of:\n"
1287                  "    all                  All assemblies\n"
1288                  "    none                 No assemblies\n"
1289                  "    program              Entry point assembly\n"
1290                  "    assembly             Specifies an assembly\n"
1291                  "    wrapper              All wrappers bridging native and managed code\n"
1292                  "    M:Type:Method        Specifies a method\n"
1293                  "    N:Namespace          Specifies a namespace\n"
1294                  "    T:Type               Specifies a type\n"
1295                  "    E:Type               Specifies stack traces for an exception type\n"
1296                  "    EXPR                 Includes expression\n"
1297                  "    -EXPR                Excludes expression\n"
1298                  "    EXPR,EXPR            Multiple expressions\n"
1299                  "    disabled             Don't print any output until toggled via SIGUSR2\n");
1300 }
1301
1302 static void
1303 mini_debug_usage (void)
1304 {
1305         fprintf (stdout,
1306                  "Debugging options:\n"
1307                  "   --debug[=OPTIONS]     Enable debugging support, optional OPTIONS is a comma\n"
1308                  "                         separated list of options\n"
1309                  "\n"
1310                  "OPTIONS is composed of:\n"
1311                  "    casts                Enable more detailed InvalidCastException messages.\n"
1312                  "    mdb-optimizations    Disable some JIT optimizations which are normally\n"
1313                  "                         disabled when running inside the debugger.\n"
1314                  "                         This is useful if you plan to attach to the running\n"
1315                  "                         process with the debugger.\n");
1316 }
1317
1318 #if defined(MONO_ARCH_ARCHITECTURE)
1319 /* Redefine MONO_ARCHITECTURE to include more information */
1320 #undef MONO_ARCHITECTURE
1321 #define MONO_ARCHITECTURE MONO_ARCH_ARCHITECTURE
1322 #endif
1323
1324 static const char info[] =
1325 #ifdef HAVE_KW_THREAD
1326         "\tTLS:           __thread\n"
1327 #else
1328         "\tTLS:           normal\n"
1329 #endif /* HAVE_KW_THREAD */
1330 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
1331     "\tSIGSEGV:       altstack\n"
1332 #else
1333     "\tSIGSEGV:       normal\n"
1334 #endif
1335 #ifdef HAVE_EPOLL
1336     "\tNotifications: epoll\n"
1337 #elif defined(HAVE_KQUEUE)
1338     "\tNotification:  kqueue\n"
1339 #else
1340     "\tNotification:  Thread + polling\n"
1341 #endif
1342         "\tArchitecture:  " MONO_ARCHITECTURE "\n"
1343         "\tDisabled:      " DISABLED_FEATURES "\n"
1344         "\tMisc:          "
1345 #ifdef MONO_SMALL_CONFIG
1346         "smallconfig "
1347 #endif
1348 #ifdef MONO_BIG_ARRAYS
1349         "bigarrays "
1350 #endif
1351 #if defined(MONO_ARCH_SOFT_DEBUG_SUPPORTED) && !defined(DISABLE_SOFT_DEBUG)
1352         "softdebug "
1353 #endif
1354                 "\n"
1355 #ifdef MONO_ARCH_LLVM_SUPPORTED
1356 #ifdef ENABLE_LLVM
1357         "\tLLVM:          yes(" LLVM_VERSION ")\n"
1358 #else
1359         "\tLLVM:          supported, not enabled.\n"
1360 #endif
1361 #endif
1362         "";
1363
1364 #ifndef MONO_ARCH_AOT_SUPPORTED
1365 #define error_if_aot_unsupported() do {fprintf (stderr, "AOT compilation is not supported on this platform.\n"); exit (1);} while (0)
1366 #else
1367 #define error_if_aot_unsupported()
1368 #endif
1369
1370 #ifdef HOST_WIN32
1371 BOOL APIENTRY DllMain (HMODULE module_handle, DWORD reason, LPVOID reserved)
1372 {
1373         if (!mono_gc_dllmain (module_handle, reason, reserved))
1374                 return FALSE;
1375
1376         switch (reason)
1377         {
1378         case DLL_PROCESS_ATTACH:
1379                 mono_install_runtime_load (mini_init);
1380                 break;
1381         case DLL_PROCESS_DETACH:
1382                 if (coree_module_handle)
1383                         FreeLibrary (coree_module_handle);
1384                 break;
1385         case DLL_THREAD_DETACH:
1386                 mono_thread_info_detach ();
1387                 break;
1388         
1389         }
1390         return TRUE;
1391 }
1392 #endif
1393
1394 static gboolean enable_debugging;
1395
1396 /*
1397  * mono_jit_parse_options:
1398  *
1399  *   Process the command line options in ARGV as done by the runtime executable. 
1400  * This should be called before mono_jit_init ().
1401  */
1402 void
1403 mono_jit_parse_options (int argc, char * argv[])
1404 {
1405         int i;
1406         char *trace_options = NULL;
1407         int mini_verbose = 0;
1408         guint32 opt;
1409
1410         /* 
1411          * Some options have no effect here, since they influence the behavior of 
1412          * mono_main ().
1413          */
1414
1415         opt = mono_parse_default_optimizations (NULL);
1416
1417         /* FIXME: Avoid code duplication */
1418         for (i = 0; i < argc; ++i) {
1419                 if (argv [i] [0] != '-')
1420                         break;
1421                 if (strncmp (argv [i], "--debugger-agent=", 17) == 0) {
1422                         MonoDebugOptions *opt = mini_get_debug_options ();
1423
1424                         mono_debugger_agent_parse_options (argv [i] + 17);
1425                         opt->mdb_optimizations = TRUE;
1426                         enable_debugging = TRUE;
1427                 } else if (!strcmp (argv [i], "--soft-breakpoints")) {
1428                         MonoDebugOptions *opt = mini_get_debug_options ();
1429
1430                         opt->soft_breakpoints = TRUE;
1431                         opt->explicit_null_checks = TRUE;
1432                 } else if (strncmp (argv [i], "--optimize=", 11) == 0) {
1433                         opt = parse_optimizations (opt, argv [i] + 11, TRUE);
1434                         mono_set_optimizations (opt);
1435                 } else if (strncmp (argv [i], "-O=", 3) == 0) {
1436                         opt = parse_optimizations (opt, argv [i] + 3, TRUE);
1437                         mono_set_optimizations (opt);
1438                 } else if (strcmp (argv [i], "--trace") == 0) {
1439                         trace_options = (char*)"";
1440                 } else if (strncmp (argv [i], "--trace=", 8) == 0) {
1441                         trace_options = &argv [i][8];
1442                 } else if (strcmp (argv [i], "--verbose") == 0 || strcmp (argv [i], "-v") == 0) {
1443                         mini_verbose++;
1444                 } else if (strcmp (argv [i], "--breakonex") == 0) {
1445                         MonoDebugOptions *opt = mini_get_debug_options ();
1446
1447                         opt->break_on_exc = TRUE;
1448                 } else if (strcmp (argv [i], "--stats") == 0) {
1449                         mono_counters_enable (-1);
1450                         mono_stats.enabled = TRUE;
1451                         mono_jit_stats.enabled = TRUE;
1452                 } else if (strcmp (argv [i], "--break") == 0) {
1453                         if (i+1 >= argc){
1454                                 fprintf (stderr, "Missing method name in --break command line option\n");
1455                                 exit (1);
1456                         }
1457                         
1458                         if (!mono_debugger_insert_breakpoint (argv [++i], FALSE))
1459                                 fprintf (stderr, "Error: invalid method name '%s'\n", argv [i]);
1460                 } else if (strcmp (argv [i], "--llvm") == 0) {
1461 #ifndef MONO_ARCH_LLVM_SUPPORTED
1462                         fprintf (stderr, "Mono Warning: --llvm not supported on this platform.\n");
1463 #elif !defined(ENABLE_LLVM)
1464                         fprintf (stderr, "Mono Warning: --llvm not enabled in this runtime.\n");
1465 #else
1466                         mono_use_llvm = TRUE;
1467 #endif
1468                 } else if (argv [i][0] == '-' && argv [i][1] == '-' && mini_parse_debug_option (argv [i] + 2)) {
1469                 } else {
1470                         fprintf (stderr, "Unsupported command line option: '%s'\n", argv [i]);
1471                         exit (1);
1472                 }
1473         }
1474
1475         if (trace_options != NULL) {
1476                 /* 
1477                  * Need to call this before mini_init () so we can trace methods 
1478                  * compiled there too.
1479                  */
1480                 mono_jit_trace_calls = mono_trace_parse_options (trace_options);
1481                 if (mono_jit_trace_calls == NULL)
1482                         exit (1);
1483         }
1484
1485         if (mini_verbose)
1486                 mono_set_verbose_level (mini_verbose);
1487 }
1488
1489 static void
1490 mono_set_use_smp (int use_smp)
1491 {
1492 #if HAVE_SCHED_SETAFFINITY
1493         if (!use_smp) {
1494                 unsigned long proc_mask = 1;
1495 #ifdef GLIBC_BEFORE_2_3_4_SCHED_SETAFFINITY
1496                 sched_setaffinity (getpid(), (gpointer)&proc_mask);
1497 #else
1498                 sched_setaffinity (getpid(), sizeof (unsigned long), (const cpu_set_t *)&proc_mask);
1499 #endif
1500         }
1501 #endif
1502 }
1503
1504 static void
1505 switch_gc (char* argv[], const char* target_gc)
1506 {
1507         GString *path;
1508
1509         if (!strcmp (mono_gc_get_gc_name (), target_gc)) {
1510                 return;
1511         }
1512
1513         path = g_string_new (argv [0]);
1514
1515         /*Running mono without any argument*/
1516         if (strstr (argv [0], "-sgen"))
1517                 g_string_truncate (path, path->len - 5);
1518         else if (strstr (argv [0], "-boehm"))
1519                 g_string_truncate (path, path->len - 6);
1520
1521         g_string_append_c (path, '-');
1522         g_string_append (path, target_gc);
1523
1524 #ifdef HAVE_EXECVP
1525         execvp (path->str, argv);
1526 #else
1527         fprintf (stderr, "Error: --gc=<NAME> option not supported on this platform.\n");
1528 #endif
1529 }
1530
1531 #ifdef TARGET_OSX
1532
1533 /*
1534  * tries to increase the minimum number of files, if the number is below 1024
1535  */
1536 static void
1537 darwin_change_default_file_handles ()
1538 {
1539         struct rlimit limit;
1540         
1541         if (getrlimit (RLIMIT_NOFILE, &limit) == 0){
1542                 if (limit.rlim_cur < 1024){
1543                         limit.rlim_cur = MAX(1024,limit.rlim_cur);
1544                         setrlimit (RLIMIT_NOFILE, &limit);
1545                 }
1546         }
1547 }
1548
1549 static void
1550 switch_arch (char* argv[], const char* target_arch)
1551 {
1552         GString *path;
1553         gsize arch_offset;
1554
1555         if ((strcmp (target_arch, "32") == 0 && strcmp (MONO_ARCHITECTURE, "x86") == 0) ||
1556                 (strcmp (target_arch, "64") == 0 && strcmp (MONO_ARCHITECTURE, "amd64") == 0)) {
1557                 return; /* matching arch loaded */
1558         }
1559
1560         path = g_string_new (argv [0]);
1561         arch_offset = path->len -2; /* last two characters */
1562
1563         /* Remove arch suffix if present */
1564         if (strstr (&path->str[arch_offset], "32") || strstr (&path->str[arch_offset], "64")) {
1565                 g_string_truncate (path, arch_offset);
1566         }
1567
1568         g_string_append (path, target_arch);
1569
1570         if (execvp (path->str, argv) < 0) {
1571                 fprintf (stderr, "Error: --arch=%s Failed to switch to '%s'.\n", target_arch, path->str);
1572                 exit (1);
1573         }
1574 }
1575
1576 #endif
1577 /**
1578  * mono_main:
1579  * @argc: number of arguments in the argv array
1580  * @argv: array of strings containing the startup arguments
1581  *
1582  * Launches the Mono JIT engine and parses all the command line options
1583  * in the same way that the mono command line VM would.
1584  */
1585 int
1586 mono_main (int argc, char* argv[])
1587 {
1588         MainThreadArgs main_args;
1589         MonoAssembly *assembly;
1590         MonoMethodDesc *desc;
1591         MonoMethod *method;
1592         MonoCompile *cfg;
1593         MonoDomain *domain;
1594         MonoImageOpenStatus open_status;
1595         const char* aname, *mname = NULL;
1596         char *config_file = NULL;
1597         int i, count = 1;
1598         guint32 opt, action = DO_EXEC, recompilation_times = 1;
1599         MonoGraphOptions mono_graph_options = (MonoGraphOptions)0;
1600         int mini_verbose = 0;
1601         gboolean enable_profile = FALSE;
1602         char *trace_options = NULL;
1603         char *profile_options = NULL;
1604         char *aot_options = NULL;
1605         char *forced_version = NULL;
1606         GPtrArray *agents = NULL;
1607         char *attach_options = NULL;
1608 #ifdef MONO_JIT_INFO_TABLE_TEST
1609         int test_jit_info_table = FALSE;
1610 #endif
1611 #ifdef HOST_WIN32
1612         int mixed_mode = FALSE;
1613 #endif
1614 #ifdef __native_client__
1615         gboolean nacl_null_checks_off = FALSE;
1616 #endif
1617
1618 #ifdef MOONLIGHT
1619 #ifndef HOST_WIN32
1620         /* stdout defaults to block buffering if it's not writing to a terminal, which
1621          * happens with our test harness: we redirect stdout to capture it. Force line
1622          * buffering in all cases. */
1623         setlinebuf (stdout);
1624 #endif
1625 #endif
1626
1627         setlocale (LC_ALL, "");
1628
1629 #if TARGET_OSX
1630         darwin_change_default_file_handles ();
1631 #endif
1632
1633         if (g_getenv ("MONO_NO_SMP"))
1634                 mono_set_use_smp (FALSE);
1635         
1636         g_log_set_always_fatal (G_LOG_LEVEL_ERROR);
1637         g_log_set_fatal_mask (G_LOG_DOMAIN, G_LOG_LEVEL_ERROR);
1638
1639         opt = mono_parse_default_optimizations (NULL);
1640
1641         for (i = 1; i < argc; ++i) {
1642                 if (argv [i] [0] != '-')
1643                         break;
1644                 if (strcmp (argv [i], "--regression") == 0) {
1645                         action = DO_REGRESSION;
1646                 } else if (strncmp (argv [i], "--single-method=", 16) == 0) {
1647                         char *full_opts = g_strdup_printf ("-all,%s", argv [i] + 16);
1648                         action = DO_SINGLE_METHOD_REGRESSION;
1649                         mono_single_method_regression_opt = parse_optimizations (opt, full_opts, TRUE);
1650                         g_free (full_opts);
1651                 } else if (strcmp (argv [i], "--verbose") == 0 || strcmp (argv [i], "-v") == 0) {
1652                         mini_verbose++;
1653                 } else if (strcmp (argv [i], "--version") == 0 || strcmp (argv [i], "-V") == 0) {
1654                         char *build = mono_get_runtime_build_info ();
1655                         char *gc_descr;
1656
1657                         g_print ("Mono JIT compiler version %s\nCopyright (C) 2002-2014 Novell, Inc, Xamarin Inc and Contributors. www.mono-project.com\n", build);
1658                         g_free (build);
1659                         g_print (info);
1660                         gc_descr = mono_gc_get_description ();
1661                         g_print ("\tGC:            %s\n", gc_descr);
1662                         g_free (gc_descr);
1663                         return 0;
1664                 } else if (strcmp (argv [i], "--help") == 0 || strcmp (argv [i], "-h") == 0) {
1665                         mini_usage ();
1666                         return 0;
1667                 } else if (strcmp (argv [i], "--help-trace") == 0){
1668                         mini_trace_usage ();
1669                         return 0;
1670                 } else if (strcmp (argv [i], "--help-devel") == 0){
1671                         mini_usage_jitdeveloper ();
1672                         return 0;
1673                 } else if (strcmp (argv [i], "--help-debug") == 0){
1674                         mini_debug_usage ();
1675                         return 0;
1676                 } else if (strcmp (argv [i], "--list-opt") == 0){
1677                         mini_usage_list_opt ();
1678                         return 0;
1679                 } else if (strncmp (argv [i], "--statfile", 10) == 0) {
1680                         if (i + 1 >= argc){
1681                                 fprintf (stderr, "error: --statfile requires a filename argument\n");
1682                                 return 1;
1683                         }
1684                         mini_stats_fd = fopen (argv [++i], "w+");
1685                 } else if (strncmp (argv [i], "--optimize=", 11) == 0) {
1686                         opt = parse_optimizations (opt, argv [i] + 11, TRUE);
1687                 } else if (strncmp (argv [i], "-O=", 3) == 0) {
1688                         opt = parse_optimizations (opt, argv [i] + 3, TRUE);
1689                 } else if (strncmp (argv [i], "--bisect=", 9) == 0) {
1690                         char *param = argv [i] + 9;
1691                         char *sep = strchr (param, ':');
1692                         if (!sep) {
1693                                 fprintf (stderr, "Error: --bisect requires OPT:FILENAME\n");
1694                                 return 1;
1695                         }
1696                         char *opt_string = g_strndup (param, sep - param);
1697                         guint32 opt = parse_optimizations (0, opt_string, FALSE);
1698                         g_free (opt_string);
1699                         mono_set_bisect_methods (opt, sep + 1);
1700                 } else if (strcmp (argv [i], "--gc=sgen") == 0) {
1701                         switch_gc (argv, "sgen");
1702                 } else if (strcmp (argv [i], "--gc=boehm") == 0) {
1703                         switch_gc (argv, "boehm");
1704                 }
1705 #ifdef TARGET_OSX
1706                 else if (strcmp (argv [i], "--arch=32") == 0) {
1707                         switch_arch (argv, "32");
1708                 } else if (strcmp (argv [i], "--arch=64") == 0) {
1709                         switch_arch (argv, "64");
1710                 }
1711 #endif
1712                 else if (strcmp (argv [i], "--config") == 0) {
1713                         if (i +1 >= argc){
1714                                 fprintf (stderr, "error: --config requires a filename argument\n");
1715                                 return 1;
1716                         }
1717                         config_file = argv [++i];
1718 #ifdef HOST_WIN32
1719                 } else if (strcmp (argv [i], "--mixed-mode") == 0) {
1720                         mixed_mode = TRUE;
1721 #endif
1722                 } else if (strcmp (argv [i], "--ncompile") == 0) {
1723                         if (i + 1 >= argc){
1724                                 fprintf (stderr, "error: --ncompile requires an argument\n");
1725                                 return 1;
1726                         }
1727                         count = atoi (argv [++i]);
1728                         action = DO_BENCH;
1729                 } else if (strcmp (argv [i], "--trace") == 0) {
1730                         trace_options = (char*)"";
1731                 } else if (strncmp (argv [i], "--trace=", 8) == 0) {
1732                         trace_options = &argv [i][8];
1733                 } else if (strcmp (argv [i], "--breakonex") == 0) {
1734                         MonoDebugOptions *opt = mini_get_debug_options ();
1735
1736                         opt->break_on_exc = TRUE;
1737                 } else if (strcmp (argv [i], "--break") == 0) {
1738                         if (i+1 >= argc){
1739                                 fprintf (stderr, "Missing method name in --break command line option\n");
1740                                 return 1;
1741                         }
1742                         
1743                         if (!mono_debugger_insert_breakpoint (argv [++i], FALSE))
1744                                 fprintf (stderr, "Error: invalid method name '%s'\n", argv [i]);
1745                 } else if (strcmp (argv [i], "--break-at-bb") == 0) {
1746                         if (i + 2 >= argc) {
1747                                 fprintf (stderr, "Missing method name or bb num in --break-at-bb command line option.");
1748                                 return 1;
1749                         }
1750                         mono_break_at_bb_method = mono_method_desc_new (argv [++i], TRUE);
1751                         if (mono_break_at_bb_method == NULL) {
1752                                 fprintf (stderr, "Method name is in a bad format in --break-at-bb command line option.");
1753                                 return 1;
1754                         }
1755                         mono_break_at_bb_bb_num = atoi (argv [++i]);
1756                 } else if (strcmp (argv [i], "--inject-async-exc") == 0) {
1757                         if (i + 2 >= argc) {
1758                                 fprintf (stderr, "Missing method name or position in --inject-async-exc command line option\n");
1759                                 return 1;
1760                         }
1761                         mono_inject_async_exc_method = mono_method_desc_new (argv [++i], TRUE);
1762                         if (mono_inject_async_exc_method == NULL) {
1763                                 fprintf (stderr, "Method name is in a bad format in --inject-async-exc command line option\n");
1764                                 return 1;
1765                         }
1766                         mono_inject_async_exc_pos = atoi (argv [++i]);
1767                 } else if (strcmp (argv [i], "--verify-all") == 0) {
1768                         mono_verifier_enable_verify_all ();
1769                 } else if (strcmp (argv [i], "--full-aot") == 0) {
1770                         mono_aot_only = TRUE;
1771                 } else if (strcmp (argv [i], "--llvmonly") == 0) {
1772                         mono_aot_only = TRUE;
1773                         mono_llvm_only = TRUE;
1774                 } else if (strcmp (argv [i], "--print-vtable") == 0) {
1775                         mono_print_vtable = TRUE;
1776                 } else if (strcmp (argv [i], "--stats") == 0) {
1777                         mono_counters_enable (-1);
1778                         mono_stats.enabled = TRUE;
1779                         mono_jit_stats.enabled = TRUE;
1780 #ifndef DISABLE_AOT
1781                 } else if (strcmp (argv [i], "--aot") == 0) {
1782                         error_if_aot_unsupported ();
1783                         mono_compile_aot = TRUE;
1784                 } else if (strncmp (argv [i], "--aot=", 6) == 0) {
1785                         error_if_aot_unsupported ();
1786                         mono_compile_aot = TRUE;
1787                         aot_options = &argv [i][6];
1788 #endif
1789                 } else if (strncmp (argv [i], "--compile-all=", 14) == 0) {
1790                         action = DO_COMPILE;
1791                         recompilation_times = atoi (argv [i] + 14);
1792                 } else if (strcmp (argv [i], "--compile-all") == 0) {
1793                         action = DO_COMPILE;
1794                 } else if (strncmp (argv [i], "--runtime=", 10) == 0) {
1795                         forced_version = &argv [i][10];
1796                 } else if (strcmp (argv [i], "--jitmap") == 0) {
1797                         mono_enable_jit_map ();
1798                 } else if (strcmp (argv [i], "--profile") == 0) {
1799                         enable_profile = TRUE;
1800                         profile_options = NULL;
1801                 } else if (strncmp (argv [i], "--profile=", 10) == 0) {
1802                         enable_profile = TRUE;
1803                         profile_options = argv [i] + 10;
1804                 } else if (strncmp (argv [i], "--agent=", 8) == 0) {
1805                         if (agents == NULL)
1806                                 agents = g_ptr_array_new ();
1807                         g_ptr_array_add (agents, argv [i] + 8);
1808                 } else if (strncmp (argv [i], "--attach=", 9) == 0) {
1809                         attach_options = argv [i] + 9;
1810                 } else if (strcmp (argv [i], "--compile") == 0) {
1811                         if (i + 1 >= argc){
1812                                 fprintf (stderr, "error: --compile option requires a method name argument\n");
1813                                 return 1;
1814                         }
1815                         
1816                         mname = argv [++i];
1817                         action = DO_BENCH;
1818                 } else if (strncmp (argv [i], "--graph=", 8) == 0) {
1819                         if (i + 1 >= argc){
1820                                 fprintf (stderr, "error: --graph option requires a method name argument\n");
1821                                 return 1;
1822                         }
1823                         
1824                         mono_graph_options = mono_parse_graph_options (argv [i] + 8);
1825                         mname = argv [++i];
1826                         action = DO_DRAW;
1827                 } else if (strcmp (argv [i], "--graph") == 0) {
1828                         if (i + 1 >= argc){
1829                                 fprintf (stderr, "error: --graph option requires a method name argument\n");
1830                                 return 1;
1831                         }
1832                         
1833                         mname = argv [++i];
1834                         mono_graph_options = MONO_GRAPH_CFG;
1835                         action = DO_DRAW;
1836                 } else if (strcmp (argv [i], "--debug") == 0) {
1837                         enable_debugging = TRUE;
1838                 } else if (strncmp (argv [i], "--debug=", 8) == 0) {
1839                         enable_debugging = TRUE;
1840                         if (!parse_debug_options (argv [i] + 8))
1841                                 return 1;
1842                 } else if (strncmp (argv [i], "--debugger-agent=", 17) == 0) {
1843                         MonoDebugOptions *opt = mini_get_debug_options ();
1844
1845                         mono_debugger_agent_parse_options (argv [i] + 17);
1846                         opt->mdb_optimizations = TRUE;
1847                         enable_debugging = TRUE;
1848                 } else if (strcmp (argv [i], "--security") == 0) {
1849 #ifndef DISABLE_SECURITY
1850                         mono_verifier_set_mode (MONO_VERIFIER_MODE_VERIFIABLE);
1851 #else
1852                         fprintf (stderr, "error: --security: not compiled with security manager support");
1853                         return 1;
1854 #endif
1855                 } else if (strncmp (argv [i], "--security=", 11) == 0) {
1856                         /* Note: validil, and verifiable need to be
1857                            accepted even if DISABLE_SECURITY is defined. */
1858
1859                         if (strcmp (argv [i] + 11, "core-clr") == 0) {
1860 #ifndef DISABLE_SECURITY
1861                                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VERIFIABLE);
1862                                 mono_security_set_mode (MONO_SECURITY_MODE_CORE_CLR);
1863 #else
1864                                 fprintf (stderr, "error: --security: not compiled with CoreCLR support");
1865                                 return 1;
1866 #endif
1867                         } else if (strcmp (argv [i] + 11, "core-clr-test") == 0) {
1868 #ifndef DISABLE_SECURITY
1869                                 /* fixme should we enable verifiable code here?*/
1870                                 mono_security_set_mode (MONO_SECURITY_MODE_CORE_CLR);
1871                                 mono_security_core_clr_test = TRUE;
1872 #else
1873                                 fprintf (stderr, "error: --security: not compiled with CoreCLR support");
1874                                 return 1;
1875 #endif
1876                         } else if (strcmp (argv [i] + 11, "cas") == 0) {
1877 #ifndef DISABLE_SECURITY
1878                                 fprintf (stderr, "warning: --security=cas not supported.");
1879 #else
1880                                 fprintf (stderr, "error: --security: not compiled with CAS support");
1881                                 return 1;
1882 #endif
1883                         } else if (strcmp (argv [i] + 11, "validil") == 0) {
1884                                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VALID);
1885                         } else if (strcmp (argv [i] + 11, "verifiable") == 0) {
1886                                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VERIFIABLE);
1887                         } else {
1888                                 fprintf (stderr, "error: --security= option has invalid argument (cas, core-clr, verifiable or validil)\n");
1889                                 return 1;
1890                         }
1891                 } else if (strcmp (argv [i], "--desktop") == 0) {
1892                         mono_gc_set_desktop_mode ();
1893                         /* Put more desktop-specific optimizations here */
1894                 } else if (strcmp (argv [i], "--server") == 0){
1895                         mono_config_set_server_mode (TRUE);
1896                         /* Put more server-specific optimizations here */
1897                 } else if (strcmp (argv [i], "--inside-mdb") == 0) {
1898                         action = DO_DEBUGGER;
1899                 } else if (strncmp (argv [i], "--wapi=", 7) == 0) {
1900                         fprintf (stderr, "--wapi= option no longer supported\n.");
1901                         return 1;
1902                 } else if (strcmp (argv [i], "--no-x86-stack-align") == 0) {
1903                         mono_do_x86_stack_align = FALSE;
1904 #ifdef MONO_JIT_INFO_TABLE_TEST
1905                 } else if (strcmp (argv [i], "--test-jit-info-table") == 0) {
1906                         test_jit_info_table = TRUE;
1907 #endif
1908                 } else if (strcmp (argv [i], "--llvm") == 0) {
1909 #ifndef MONO_ARCH_LLVM_SUPPORTED
1910                         fprintf (stderr, "Mono Warning: --llvm not supported on this platform.\n");
1911 #elif !defined(ENABLE_LLVM)
1912                         fprintf (stderr, "Mono Warning: --llvm not enabled in this runtime.\n");
1913 #else
1914                         mono_use_llvm = TRUE;
1915 #endif
1916                 } else if (strcmp (argv [i], "--nollvm") == 0){
1917                         mono_use_llvm = FALSE;
1918 #ifdef __native_client__
1919                 } else if (strcmp (argv [i], "--nacl-mono-path") == 0){
1920                         nacl_mono_path = g_strdup(argv[++i]);
1921                 } else if (strcmp (argv [i], "--nacl-null-checks-off") == 0){
1922                         nacl_null_checks_off = TRUE;
1923 #endif
1924                 } else if (argv [i][0] == '-' && argv [i][1] == '-' && mini_parse_debug_option (argv [i] + 2)) {
1925                 } else {
1926                         fprintf (stderr, "Unknown command line option: '%s'\n", argv [i]);
1927                         return 1;
1928                 }
1929         }
1930
1931 #ifdef __native_client_codegen__
1932         if (!nacl_null_checks_off) {
1933                 MonoDebugOptions *opt = mini_get_debug_options ();
1934                 opt->explicit_null_checks = TRUE;
1935         }
1936 #endif
1937
1938 #if defined(DISABLE_HW_TRAPS) || defined(MONO_ARCH_DISABLE_HW_TRAPS)
1939         // Signal handlers not available
1940         {
1941                 MonoDebugOptions *opt = mini_get_debug_options ();
1942                 opt->explicit_null_checks = TRUE;
1943         }
1944 #endif
1945
1946         if (!argv [i]) {
1947                 mini_usage ();
1948                 return 1;
1949         }
1950
1951 #if !defined(HOST_WIN32) && defined(HAVE_UNISTD_H)
1952         /*
1953          * If we are not embedded, use the mono runtime executable to run managed exe's.
1954          */
1955         {
1956                 char *runtime_path;
1957
1958                 runtime_path = wapi_process_get_path (getpid ());
1959                 if (runtime_path) {
1960                         wapi_process_set_cli_launcher (runtime_path);
1961                         g_free (runtime_path);
1962                 }
1963         }
1964 #endif
1965
1966         if (g_getenv ("MONO_XDEBUG"))
1967                 enable_debugging = TRUE;
1968
1969 #ifdef MONO_CROSS_COMPILE
1970        if (!mono_compile_aot) {
1971                    fprintf (stderr, "This mono runtime is compiled for cross-compiling. Only the --aot option is supported.\n");
1972                    exit (1);
1973        }
1974 #if SIZEOF_VOID_P == 8 && (defined(TARGET_ARM) || defined(TARGET_X86))
1975        fprintf (stderr, "Can't cross-compile on 64-bit platforms to 32-bit architecture.\n");
1976        exit (1);
1977 #elif SIZEOF_VOID_P == 4 && (defined(TARGET_ARM64) || defined(TARGET_AMD64))
1978        fprintf (stderr, "Can't cross-compile on 32-bit platforms to 64-bit architecture.\n");
1979        exit (1);
1980 #endif
1981 #endif
1982
1983         if (mono_compile_aot || action == DO_EXEC || action == DO_DEBUGGER) {
1984                 g_set_prgname (argv[i]);
1985         }
1986
1987         mono_counters_init ();
1988
1989         /* Set rootdir before loading config */
1990         mono_set_rootdir ();
1991
1992         /*
1993          * We only set the native name of the thread since MS.NET leaves the
1994          * managed thread name for the main thread as null.
1995          */
1996         mono_native_thread_set_name (mono_native_thread_id_get (), "Main");
1997
1998         if (enable_profile) {
1999                 mono_profiler_load (profile_options);
2000                 mono_profiler_thread_name (MONO_NATIVE_THREAD_ID_TO_UINT (mono_native_thread_id_get ()), "Main");
2001         }
2002
2003         mono_attach_parse_options (attach_options);
2004
2005         if (trace_options != NULL){
2006                 /* 
2007                  * Need to call this before mini_init () so we can trace methods 
2008                  * compiled there too.
2009                  */
2010                 mono_jit_trace_calls = mono_trace_parse_options (trace_options);
2011                 if (mono_jit_trace_calls == NULL)
2012                         exit (1);
2013         }
2014
2015 #ifdef DISABLE_JIT
2016         if (!mono_aot_only) {
2017                 fprintf (stderr, "This runtime has been configured with --enable-minimal=jit, so the --full-aot command line option is required.\n");
2018                 exit (1);
2019         }
2020 #endif
2021
2022         if (action == DO_DEBUGGER) {
2023                 enable_debugging = TRUE;
2024                 g_print ("The Mono Debugger is no longer supported.\n");
2025                 return 1;
2026         } else if (enable_debugging)
2027                 mono_debug_init (MONO_DEBUG_FORMAT_MONO);
2028
2029 #ifdef HOST_WIN32
2030         if (mixed_mode)
2031                 mono_load_coree (argv [i]);
2032 #endif
2033
2034         /* Parse gac loading options before loading assemblies. */
2035         if (mono_compile_aot || action == DO_EXEC || action == DO_DEBUGGER) {
2036                 mono_config_parse (config_file);
2037         }
2038
2039         mono_set_defaults (mini_verbose, opt);
2040         domain = mini_init (argv [i], forced_version);
2041
2042         mono_gc_set_stack_end (&domain);
2043
2044         if (agents) {
2045                 int i;
2046
2047                 for (i = 0; i < agents->len; ++i) {
2048                         int res = load_agent (domain, (char*)g_ptr_array_index (agents, i));
2049                         if (res) {
2050                                 g_ptr_array_free (agents, TRUE);
2051                                 mini_cleanup (domain);
2052                                 return 1;
2053                         }
2054                 }
2055
2056                 g_ptr_array_free (agents, TRUE);
2057         }
2058         
2059         switch (action) {
2060         case DO_SINGLE_METHOD_REGRESSION:
2061                 mono_do_single_method_regression = TRUE;
2062         case DO_REGRESSION:
2063                 if (mini_regression_list (mini_verbose, argc -i, argv + i)) {
2064                         g_print ("Regression ERRORS!\n");
2065                         mini_cleanup (domain);
2066                         return 1;
2067                 }
2068                 mini_cleanup (domain);
2069                 return 0;
2070         case DO_BENCH:
2071                 if (argc - i != 1 || mname == NULL) {
2072                         g_print ("Usage: mini --ncompile num --compile method assembly\n");
2073                         mini_cleanup (domain);
2074                         return 1;
2075                 }
2076                 aname = argv [i];
2077                 break;
2078         case DO_COMPILE:
2079                 if (argc - i != 1) {
2080                         mini_usage ();
2081                         mini_cleanup (domain);
2082                         return 1;
2083                 }
2084                 aname = argv [i];
2085                 break;
2086         case DO_DRAW:
2087                 if (argc - i != 1 || mname == NULL) {
2088                         mini_usage ();
2089                         mini_cleanup (domain);
2090                         return 1;
2091                 }
2092                 aname = argv [i];
2093                 break;
2094         default:
2095                 if (argc - i < 1) {
2096                         mini_usage ();
2097                         mini_cleanup (domain);
2098                         return 1;
2099                 }
2100                 aname = argv [i];
2101                 break;
2102         }
2103
2104 #ifdef MONO_JIT_INFO_TABLE_TEST
2105         if (test_jit_info_table)
2106                 jit_info_table_test (domain);
2107 #endif
2108
2109         assembly = mono_assembly_open (aname, &open_status);
2110         if (!assembly) {
2111                 fprintf (stderr, "Cannot open assembly '%s': %s.\n", aname, mono_image_strerror (open_status));
2112                 mini_cleanup (domain);
2113                 return 2;
2114         }
2115
2116         if (trace_options != NULL)
2117                 mono_trace_set_assembly (assembly);
2118
2119         if (mono_compile_aot || action == DO_EXEC) {
2120                 const char *error;
2121
2122                 //mono_set_rootdir ();
2123
2124                 error = mono_check_corlib_version ();
2125                 if (error) {
2126                         fprintf (stderr, "Corlib not in sync with this runtime: %s\n", error);
2127                         fprintf (stderr, "Loaded from: %s\n",
2128                                 mono_defaults.corlib? mono_image_get_filename (mono_defaults.corlib): "unknown");
2129                         fprintf (stderr, "Download a newer corlib or a newer runtime at http://www.mono-project.com/download.\n");
2130                         exit (1);
2131                 }
2132
2133 #ifdef HOST_WIN32
2134                 /* Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32 */
2135                 if (!enable_debugging && !mono_compile_aot && ((MonoCLIImageInfo*)(mono_assembly_get_image (assembly)->image_info))->cli_header.nt.pe_subsys_required == IMAGE_SUBSYSTEM_WINDOWS_GUI)
2136                         FreeConsole ();
2137 #endif
2138
2139                 main_args.domain = domain;
2140                 main_args.file = aname;         
2141                 main_args.argc = argc - i;
2142                 main_args.argv = argv + i;
2143                 main_args.opts = opt;
2144                 main_args.aot_options = aot_options;
2145 #if RUN_IN_SUBTHREAD
2146                 mono_runtime_exec_managed_code (domain, main_thread_handler, &main_args);
2147 #else
2148                 main_thread_handler (&main_args);
2149                 mono_thread_manage ();
2150 #endif
2151
2152                 mini_cleanup (domain);
2153
2154                 /* Look up return value from System.Environment.ExitCode */
2155                 i = mono_environment_exitcode_get ();
2156                 return i;
2157         } else if (action == DO_COMPILE) {
2158                 compile_all_methods (assembly, mini_verbose, opt, recompilation_times);
2159                 mini_cleanup (domain);
2160                 return 0;
2161         } else if (action == DO_DEBUGGER) {
2162                 return 1;
2163         }
2164         desc = mono_method_desc_new (mname, 0);
2165         if (!desc) {
2166                 g_print ("Invalid method name %s\n", mname);
2167                 mini_cleanup (domain);
2168                 return 3;
2169         }
2170         method = mono_method_desc_search_in_image (desc, mono_assembly_get_image (assembly));
2171         if (!method) {
2172                 g_print ("Cannot find method %s\n", mname);
2173                 mini_cleanup (domain);
2174                 return 3;
2175         }
2176
2177 #ifndef DISABLE_JIT
2178         if (action == DO_DRAW) {
2179                 int part = 0;
2180
2181                 switch (mono_graph_options) {
2182                 case MONO_GRAPH_DTREE:
2183                         part = 1;
2184                         opt |= MONO_OPT_LOOP;
2185                         break;
2186                 case MONO_GRAPH_CFG_CODE:
2187                         part = 1;
2188                         break;
2189                 case MONO_GRAPH_CFG_SSA:
2190                         part = 2;
2191                         break;
2192                 case MONO_GRAPH_CFG_OPTCODE:
2193                         part = 3;
2194                         break;
2195                 default:
2196                         break;
2197                 }
2198
2199                 if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
2200                         (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)) {
2201                         MonoMethod *nm;
2202                         nm = mono_marshal_get_native_wrapper (method, TRUE, FALSE);
2203                         cfg = mini_method_compile (nm, opt, mono_get_root_domain (), (JitFlags)0, part, -1);
2204                 }
2205                 else
2206                         cfg = mini_method_compile (method, opt, mono_get_root_domain (), (JitFlags)0, part, -1);
2207                 if ((mono_graph_options & MONO_GRAPH_CFG_SSA) && !(cfg->comp_done & MONO_COMP_SSA)) {
2208                         g_warning ("no SSA info available (use -O=deadce)");
2209                         return 1;
2210                 }
2211                 mono_draw_graph (cfg, mono_graph_options);
2212                 mono_destroy_compile (cfg);
2213
2214         } else if (action == DO_BENCH) {
2215                 if (mini_stats_fd) {
2216                         const char *n;
2217                         double no_opt_time = 0.0;
2218                         GTimer *timer = g_timer_new ();
2219                         fprintf (mini_stats_fd, "$stattitle = \'Compilations times for %s\';\n", 
2220                                  mono_method_full_name (method, TRUE));
2221                         fprintf (mini_stats_fd, "@data = (\n");
2222                         fprintf (mini_stats_fd, "[");
2223                         for (i = 0; i < G_N_ELEMENTS (opt_sets); i++) {
2224                                 opt = opt_sets [i];
2225                                 n = mono_opt_descr (opt);
2226                                 if (!n [0])
2227                                         n = "none";
2228                                 fprintf (mini_stats_fd, "\"%s\",", n);
2229                         }
2230                         fprintf (mini_stats_fd, "],\n[");
2231
2232                         for (i = 0; i < G_N_ELEMENTS (opt_sets); i++) {
2233                                 int j;
2234                                 double elapsed;
2235                                 opt = opt_sets [i];
2236                                 g_timer_start (timer);
2237                                 for (j = 0; j < count; ++j) {
2238                                         cfg = mini_method_compile (method, opt, mono_get_root_domain (), (JitFlags)0, 0, -1);
2239                                         mono_destroy_compile (cfg);
2240                                 }
2241                                 g_timer_stop (timer);
2242                                 elapsed = g_timer_elapsed (timer, NULL);
2243                                 if (!opt)
2244                                         no_opt_time = elapsed;
2245                                 fprintf (mini_stats_fd, "%f, ", elapsed);
2246                         }
2247                         fprintf (mini_stats_fd, "]");
2248                         if (no_opt_time > 0.0) {
2249                                 fprintf (mini_stats_fd, ", \n[");
2250                                 for (i = 0; i < G_N_ELEMENTS (opt_sets); i++) 
2251                                         fprintf (mini_stats_fd, "%f,", no_opt_time);
2252                                 fprintf (mini_stats_fd, "]");
2253                         }
2254                         fprintf (mini_stats_fd, ");\n");
2255                 } else {
2256                         for (i = 0; i < count; ++i) {
2257                                 if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
2258                                         (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL))
2259                                         method = mono_marshal_get_native_wrapper (method, TRUE, FALSE);
2260
2261                                 cfg = mini_method_compile (method, opt, mono_get_root_domain (), (JitFlags)0, 0, -1);
2262                                 mono_destroy_compile (cfg);
2263                         }
2264                 }
2265         } else {
2266                 cfg = mini_method_compile (method, opt, mono_get_root_domain (), (JitFlags)0, 0, -1);
2267                 mono_destroy_compile (cfg);
2268         }
2269 #endif
2270
2271         mini_cleanup (domain);
2272         return 0;
2273 }
2274
2275 MonoDomain * 
2276 mono_jit_init (const char *file)
2277 {
2278         return mini_init (file, NULL);
2279 }
2280
2281 /**
2282  * mono_jit_init_version:
2283  * @domain_name: the name of the root domain
2284  * @runtime_version: the version of the runtime to load
2285  *
2286  * Use this version when you want to force a particular runtime
2287  * version to be used.  By default Mono will pick the runtime that is
2288  * referenced by the initial assembly (specified in @file), this
2289  * routine allows programmers to specify the actual runtime to be used
2290  * as the initial runtime is inherited by all future assemblies loaded
2291  * (since Mono does not support having more than one mscorlib runtime
2292  * loaded at once).
2293  *
2294  * The @runtime_version can be one of these strings: "v4.0.30319" for
2295  * desktop, "mobile" for mobile or "moonlight" for Silverlight compat.
2296  * If an unrecognized string is input, the vm will default to desktop.
2297  *
2298  * Returns: the MonoDomain representing the domain where the assembly
2299  * was loaded.
2300  */
2301 MonoDomain * 
2302 mono_jit_init_version (const char *domain_name, const char *runtime_version)
2303 {
2304         return mini_init (domain_name, runtime_version);
2305 }
2306
2307 void        
2308 mono_jit_cleanup (MonoDomain *domain)
2309 {
2310         mono_thread_manage ();
2311
2312         mini_cleanup (domain);
2313 }
2314
2315 void
2316 mono_jit_set_aot_only (gboolean val)
2317 {
2318         mono_aot_only = val;
2319 }
2320
2321 void
2322 mono_jit_set_aot_mode (MonoAotMode mode)
2323 {
2324         mono_aot_mode = mode;
2325         if (mono_aot_mode == MONO_AOT_MODE_LLVMONLY) {
2326                 mono_aot_only = TRUE;
2327                 mono_llvm_only = TRUE;
2328         }
2329 }
2330
2331 /**
2332  * mono_jit_set_trace_options:
2333  * @options: string representing the trace options
2334  *
2335  * Set the options of the tracing engine. This function can be called before initializing
2336  * the mono runtime. See the --trace mono(1) manpage for the options format.
2337  *
2338  * Returns: #TRUE if the options where parsed and set correctly, #FALSE otherwise.
2339  */
2340 gboolean
2341 mono_jit_set_trace_options (const char* options)
2342 {
2343         MonoTraceSpec *trace_opt = mono_trace_parse_options (options);
2344         if (trace_opt == NULL)
2345                 return FALSE;
2346         mono_jit_trace_calls = trace_opt;
2347         return TRUE;
2348 }
2349
2350 /**
2351  * mono_set_signal_chaining:
2352  *
2353  *   Enable/disable signal chaining. This should be called before mono_jit_init ().
2354  * If signal chaining is enabled, the runtime saves the original signal handlers before
2355  * installing its own handlers, and calls the original ones in the following cases:
2356  * - a SIGSEGV/SIGABRT signal received while executing native (i.e. not JITted) code.
2357  * - SIGPROF
2358  * - SIGFPE
2359  * - SIGQUIT
2360  * - SIGUSR2
2361  * Signal chaining only works on POSIX platforms.
2362  */
2363 void
2364 mono_set_signal_chaining (gboolean chain_signals)
2365 {
2366         mono_do_signal_chaining = chain_signals;
2367 }
2368
2369 /**
2370  * mono_set_crash_chaining:
2371  *
2372  * Enable/disable crash chaining due to signals. When a fatal signal is delivered and
2373  * Mono doesn't know how to handle it, it will invoke the crash handler. If chrash chaining
2374  * is enabled, it will first print its crash information and then try to chain with the native handler.
2375  */
2376 void
2377 mono_set_crash_chaining (gboolean chain_crashes)
2378 {
2379         mono_do_crash_chaining = chain_crashes;
2380 }
2381
2382 /**
2383  * mono_parse_options_from:
2384  * @options: string containing strings 
2385  * @ref_argc: pointer to the argc variable that might be updated 
2386  * @ref_argv: pointer to the argv string vector variable that might be updated
2387  *
2388  * This function parses the contents of the `MONO_ENV_OPTIONS`
2389  * environment variable as if they were parsed by a command shell
2390  * splitting the contents by spaces into different elements of the
2391  * @argv vector.  This method supports quoting with both the " and '
2392  * characters.  Inside quoting, spaces and tabs are significant,
2393  * otherwise, they are considered argument separators.
2394  *
2395  * The \ character can be used to escape the next character which will
2396  * be added to the current element verbatim.  Typically this is used
2397  * inside quotes.   If the quotes are not balanced, this method 
2398  *
2399  * If the environment variable is empty, no changes are made
2400  * to the values pointed by @ref_argc and @ref_argv.
2401  *
2402  * Otherwise the @ref_argv is modified to point to a new array that contains
2403  * all the previous elements contained in the vector, plus the values parsed.
2404  * The @argc is updated to match the new number of parameters.
2405  *
2406  * Returns: The value NULL is returned on success, otherwise a g_strdup allocated
2407  * string is returned (this is an alias to malloc under normal circumstances) that
2408  * contains the error message that happened during parsing.
2409  */
2410 char *
2411 mono_parse_options_from (const char *options, int *ref_argc, char **ref_argv [])
2412 {
2413         int argc = *ref_argc;
2414         char **argv = *ref_argv;
2415         GPtrArray *array = g_ptr_array_new ();
2416         GString *buffer = g_string_new ("");
2417         const char *p;
2418         unsigned i;
2419         gboolean in_quotes = FALSE;
2420         char quote_char = '\0';
2421
2422         if (options == NULL)
2423                 return NULL;
2424         
2425         for (p = options; *p; p++){
2426                 switch (*p){
2427                 case ' ': case '\t':
2428                         if (!in_quotes) {
2429                                 if (buffer->len != 0){
2430                                         g_ptr_array_add (array, g_strdup (buffer->str));
2431                                         g_string_truncate (buffer, 0);
2432                                 }
2433                         } else {
2434                                 g_string_append_c (buffer, *p);
2435                         }
2436                         break;
2437                 case '\\':
2438                         if (p [1]){
2439                                 g_string_append_c (buffer, p [1]);
2440                                 p++;
2441                         }
2442                         break;
2443                 case '\'':
2444                 case '"':
2445                         if (in_quotes) {
2446                                 if (quote_char == *p)
2447                                         in_quotes = FALSE;
2448                                 else
2449                                         g_string_append_c (buffer, *p);
2450                         } else {
2451                                 in_quotes = TRUE;
2452                                 quote_char = *p;
2453                         }
2454                         break;
2455                 default:
2456                         g_string_append_c (buffer, *p);
2457                         break;
2458                 }
2459         }
2460         if (in_quotes) 
2461                 return g_strdup_printf ("Unmatched quotes in value: [%s]\n", options);
2462                 
2463         if (buffer->len != 0)
2464                 g_ptr_array_add (array, g_strdup (buffer->str));
2465         g_string_free (buffer, TRUE);
2466
2467         if (array->len > 0){
2468                 int new_argc = array->len + argc;
2469                 char **new_argv = g_new (char *, new_argc + 1);
2470                 int j;
2471
2472                 new_argv [0] = argv [0];
2473                 
2474                 /* First the environment variable settings, to allow the command line options to override */
2475                 for (i = 0; i < array->len; i++)
2476                         new_argv [i+1] = (char *)g_ptr_array_index (array, i);
2477                 i++;
2478                 for (j = 1; j < argc; j++)
2479                         new_argv [i++] = argv [j];
2480                 new_argv [i] = NULL;
2481
2482                 *ref_argc = new_argc;
2483                 *ref_argv = new_argv;
2484         }
2485         g_ptr_array_free (array, TRUE);
2486         return NULL;
2487 }
2488
2489 /**
2490  * mono_parse_env_options:
2491  * @ref_argc: pointer to the argc variable that might be updated 
2492  * @ref_argv: pointer to the argv string vector variable that might be updated
2493  *
2494  * This function parses the contents of the `MONO_ENV_OPTIONS`
2495  * environment variable as if they were parsed by a command shell
2496  * splitting the contents by spaces into different elements of the
2497  * @argv vector.  This method supports quoting with both the " and '
2498  * characters.  Inside quoting, spaces and tabs are significant,
2499  * otherwise, they are considered argument separators.
2500  *
2501  * The \ character can be used to escape the next character which will
2502  * be added to the current element verbatim.  Typically this is used
2503  * inside quotes.   If the quotes are not balanced, this method 
2504  *
2505  * If the environment variable is empty, no changes are made
2506  * to the values pointed by @ref_argc and @ref_argv.
2507  *
2508  * Otherwise the @ref_argv is modified to point to a new array that contains
2509  * all the previous elements contained in the vector, plus the values parsed.
2510  * The @argc is updated to match the new number of parameters.
2511  *
2512  * If there is an error parsing, this method will terminate the process by
2513  * calling exit(1).
2514  *
2515  * An alternative to this method that allows an arbitrary string to be parsed
2516  * and does not exit on error is the `api:mono_parse_options_from`.
2517  */
2518 void
2519 mono_parse_env_options (int *ref_argc, char **ref_argv [])
2520 {
2521         char *ret;
2522         
2523         const char *env_options = g_getenv ("MONO_ENV_OPTIONS");
2524         if (env_options == NULL)
2525                 return;
2526         ret = mono_parse_options_from (env_options, ref_argc, ref_argv);
2527         if (ret == NULL)
2528                 return;
2529         fprintf (stderr, "%s", ret);
2530         exit (1);
2531 }
2532