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