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