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