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