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