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