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