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