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