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