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