Disable SMP on arm until #683409 is fixed.
[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 #ifdef HOST_WIN32
1147                 "    --mixed-mode           Enable mixed-mode image support.\n"
1148 #endif
1149           );
1150 }
1151
1152 static void
1153 mini_trace_usage (void)
1154 {
1155         fprintf (stdout,
1156                  "Tracing options:\n"
1157                  "   --trace[=EXPR]        Trace every call, optional EXPR controls the scope\n"
1158                  "\n"
1159                  "EXPR is composed of:\n"
1160                  "    all                  All assemblies\n"
1161                  "    none                 No assemblies\n"
1162                  "    program              Entry point assembly\n"
1163                  "    assembly             Specifies an assembly\n"
1164                  "    M:Type:Method        Specifies a method\n"
1165                  "    N:Namespace          Specifies a namespace\n"
1166                  "    T:Type               Specifies a type\n"
1167                  "    EXPR                 Includes expression\n"
1168                  "    -EXPR                Excludes expression\n"
1169                  "    EXPR,EXPR            Multiple expressions\n"
1170                  "    disabled             Don't print any output until toggled via SIGUSR2\n");
1171 }
1172
1173 static void
1174 mini_debug_usage (void)
1175 {
1176         fprintf (stdout,
1177                  "Debugging options:\n"
1178                  "   --debug[=OPTIONS]     Enable debugging support, optional OPTIONS is a comma\n"
1179                  "                         separated list of options\n"
1180                  "\n"
1181                  "OPTIONS is composed of:\n"
1182                  "    casts                Enable more detailed InvalidCastException messages.\n"
1183                  "    mdb-optimizations    Disable some JIT optimizations which are normally\n"
1184                  "                         disabled when running inside the debugger.\n"
1185                  "                         This is useful if you plan to attach to the running\n"
1186                  "                         process with the debugger.\n");
1187 }
1188
1189 #if defined(MONO_ARCH_ARCHITECTURE)
1190 /* Redefine ARCHITECTURE to include more information */
1191 #undef ARCHITECTURE
1192 #define ARCHITECTURE MONO_ARCH_ARCHITECTURE
1193 #endif
1194
1195 static const char info[] =
1196 #ifdef HAVE_KW_THREAD
1197         "\tTLS:           __thread\n"
1198 #else
1199         "\tTLS:           normal\n"
1200 #endif /* HAVE_KW_THREAD */
1201 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
1202     "\tSIGSEGV:       altstack\n"
1203 #else
1204     "\tSIGSEGV:       normal\n"
1205 #endif
1206 #ifdef HAVE_EPOLL
1207     "\tNotifications: epoll\n"
1208 #elif defined(HAVE_KQUEUE)
1209     "\tNotification:  kqueue\n"
1210 #else
1211     "\tNotification:  Thread + polling\n"
1212 #endif
1213         "\tArchitecture:  " ARCHITECTURE "\n"
1214         "\tDisabled:      " DISABLED_FEATURES "\n"
1215         "\tMisc:          "
1216 #ifdef MONO_SMALL_CONFIG
1217         "smallconfig "
1218 #endif
1219 #ifdef MONO_BIG_ARRAYS
1220         "bigarrays "
1221 #endif
1222 #ifdef MONO_DEBUGGER_SUPPORTED
1223         "debugger "
1224 #endif
1225 #if defined(MONO_ARCH_SOFT_DEBUG_SUPPORTED) && !defined(DISABLE_SOFT_DEBUG)
1226         "softdebug "
1227 #endif
1228                 "\n"
1229 #ifdef MONO_ARCH_LLVM_SUPPORTED
1230 #ifdef ENABLE_LLVM
1231         "\tLLVM:          yes(" LLVM_VERSION ")\n"
1232 #else
1233         "\tLLVM:          supported, not enabled.\n"
1234 #endif
1235 #endif
1236         "";
1237
1238 #ifndef MONO_ARCH_AOT_SUPPORTED
1239 #define error_if_aot_unsupported() do {fprintf (stderr, "AOT compilation is not supported on this platform.\n"); exit (1);} while (0)
1240 #else
1241 #define error_if_aot_unsupported()
1242 #endif
1243
1244 #ifdef HOST_WIN32
1245 BOOL APIENTRY DllMain (HMODULE module_handle, DWORD reason, LPVOID reserved)
1246 {
1247         if (!mono_gc_dllmain (module_handle, reason, reserved))
1248                 return FALSE;
1249
1250         switch (reason)
1251         {
1252         case DLL_PROCESS_ATTACH:
1253                 mono_install_runtime_load (mini_init);
1254                 break;
1255         case DLL_PROCESS_DETACH:
1256                 if (coree_module_handle)
1257                         FreeLibrary (coree_module_handle);
1258                 break;
1259         }
1260         return TRUE;
1261 }
1262 #endif
1263
1264 static gboolean enable_debugging;
1265
1266 /*
1267  * mono_jit_parse_options:
1268  *
1269  *   Process the command line options in ARGV as done by the runtime executable. 
1270  * This should be called before mono_jit_init ().
1271  */
1272 void
1273 mono_jit_parse_options (int argc, char * argv[])
1274 {
1275         int i;
1276
1277         /* 
1278          * Some options have no effect here, since they influence the behavior of 
1279          * mono_main ().
1280          */
1281
1282         /* FIXME: Avoid code duplication */
1283         for (i = 0; i < argc; ++i) {
1284                 if (argv [i] [0] != '-')
1285                         break;
1286                 if (strncmp (argv [i], "--debugger-agent=", 17) == 0) {
1287                         MonoDebugOptions *opt = mini_get_debug_options ();
1288
1289                         mono_debugger_agent_parse_options (argv [i] + 17);
1290                         opt->mdb_optimizations = TRUE;
1291                         enable_debugging = TRUE;
1292                 } else {
1293                         fprintf (stderr, "Unsupported command line option: '%s'\n", argv [i]);
1294                         exit (1);
1295                 }
1296         }
1297 }
1298
1299 static void
1300 mono_set_use_smp (int use_smp)
1301 {
1302 #if HAVE_SCHED_SETAFFINITY
1303         if (!use_smp) {
1304                 unsigned long proc_mask = 1;
1305 #ifdef GLIBC_BEFORE_2_3_4_SCHED_SETAFFINITY
1306                 sched_setaffinity (getpid(), (gpointer)&proc_mask);
1307 #else
1308                 sched_setaffinity (getpid(), sizeof (unsigned long), (gpointer)&proc_mask);
1309 #endif
1310         }
1311 #endif
1312 }
1313         
1314
1315 /**
1316  * mono_main:
1317  * @argc: number of arguments in the argv array
1318  * @argv: array of strings containing the startup arguments
1319  *
1320  * Launches the Mono JIT engine and parses all the command line options
1321  * in the same way that the mono command line VM would.
1322  */
1323 int
1324 mono_main (int argc, char* argv[])
1325 {
1326         MainThreadArgs main_args;
1327         MonoAssembly *assembly;
1328         MonoMethodDesc *desc;
1329         MonoMethod *method;
1330         MonoCompile *cfg;
1331         MonoDomain *domain;
1332         MonoImageOpenStatus open_status;
1333         const char* aname, *mname = NULL;
1334         char *config_file = NULL;
1335         int i, count = 1;
1336         guint32 opt, action = DO_EXEC;
1337         MonoGraphOptions mono_graph_options = 0;
1338         int mini_verbose = 0;
1339         gboolean enable_profile = FALSE;
1340         char *trace_options = NULL;
1341         char *profile_options = NULL;
1342         char *aot_options = NULL;
1343         char *forced_version = NULL;
1344         GPtrArray *agents = NULL;
1345         char *attach_options = NULL;
1346 #ifdef MONO_JIT_INFO_TABLE_TEST
1347         int test_jit_info_table = FALSE;
1348 #endif
1349 #ifdef HOST_WIN32
1350         int mixed_mode = FALSE;
1351 #endif
1352
1353 #ifdef MOONLIGHT
1354 #ifndef HOST_WIN32
1355         /* stdout defaults to block buffering if it's not writing to a terminal, which
1356          * happens with our test harness: we redirect stdout to capture it. Force line
1357          * buffering in all cases. */
1358         setlinebuf (stdout);
1359 #endif
1360 #endif
1361
1362         setlocale (LC_ALL, "");
1363
1364         if (getenv ("MONO_NO_SMP"))
1365                 mono_set_use_smp (FALSE);
1366
1367 #ifdef TARGET_ARM
1368         // #683409
1369         mono_set_use_smp (FALSE);
1370 #endif
1371         
1372         if (!g_thread_supported ())
1373                 g_thread_init (NULL);
1374
1375         if (mono_running_on_valgrind () && getenv ("MONO_VALGRIND_LEAK_CHECK")) {
1376                 GMemVTable mem_vtable;
1377
1378                 /* 
1379                  * Instruct glib to use the system allocation functions so valgrind
1380                  * can track the memory allocated by the g_... functions.
1381                  */
1382                 memset (&mem_vtable, 0, sizeof (mem_vtable));
1383                 mem_vtable.malloc = malloc;
1384                 mem_vtable.realloc = realloc;
1385                 mem_vtable.free = free;
1386                 mem_vtable.calloc = calloc;
1387
1388                 g_mem_set_vtable (&mem_vtable);
1389         }
1390
1391         g_log_set_always_fatal (G_LOG_LEVEL_ERROR);
1392         g_log_set_fatal_mask (G_LOG_DOMAIN, G_LOG_LEVEL_ERROR);
1393
1394         opt = parse_optimizations (NULL);
1395
1396         for (i = 1; i < argc; ++i) {
1397                 if (argv [i] [0] != '-')
1398                         break;
1399                 if (strcmp (argv [i], "--regression") == 0) {
1400                         action = DO_REGRESSION;
1401                 } else if (strcmp (argv [i], "--verbose") == 0 || strcmp (argv [i], "-v") == 0) {
1402                         mini_verbose++;
1403                 } else if (strcmp (argv [i], "--version") == 0 || strcmp (argv [i], "-V") == 0) {
1404                         char *build = mono_get_runtime_build_info ();
1405                         char *gc_descr;
1406
1407                         g_print ("Mono JIT compiler version %s\nCopyright (C) 2002-2011 Novell, Inc and Contributors. www.mono-project.com\n", build);
1408                         g_free (build);
1409                         g_print (info);
1410                         gc_descr = mono_gc_get_description ();
1411                         g_print ("\tGC:            %s\n", gc_descr);
1412                         g_free (gc_descr);
1413                         if (mini_verbose) {
1414                                 const char *cerror;
1415                                 const char *clibpath;
1416                                 mono_init ("mono");
1417                                 cerror = mono_check_corlib_version ();
1418                                 clibpath = mono_defaults.corlib? mono_image_get_filename (mono_defaults.corlib): "unknown";
1419                                 if (cerror) {
1420                                         g_print ("The currently installed mscorlib doesn't match this runtime version.\n");
1421                                         g_print ("The error is: %s\n", cerror);
1422                                         g_print ("mscorlib.dll loaded at: %s\n", clibpath);
1423                                         return 1;
1424                                 }
1425                         }
1426                         return 0;
1427                 } else if (strcmp (argv [i], "--help") == 0 || strcmp (argv [i], "-h") == 0) {
1428                         mini_usage ();
1429                         return 0;
1430                 } else if (strcmp (argv [i], "--help-trace") == 0){
1431                         mini_trace_usage ();
1432                         return 0;
1433                 } else if (strcmp (argv [i], "--help-devel") == 0){
1434                         mini_usage_jitdeveloper ();
1435                         return 0;
1436                 } else if (strcmp (argv [i], "--help-debug") == 0){
1437                         mini_debug_usage ();
1438                         return 0;
1439                 } else if (strcmp (argv [i], "--list-opt") == 0){
1440                         mini_usage_list_opt ();
1441                         return 0;
1442                 } else if (strncmp (argv [i], "--statfile", 10) == 0) {
1443                         if (i + 1 >= argc){
1444                                 fprintf (stderr, "error: --statfile requires a filename argument\n");
1445                                 return 1;
1446                         }
1447                         mini_stats_fd = fopen (argv [++i], "w+");
1448                 } else if (strncmp (argv [i], "--optimize=", 11) == 0) {
1449                         opt = parse_optimizations (argv [i] + 11);
1450                 } else if (strncmp (argv [i], "-O=", 3) == 0) {
1451                         opt = parse_optimizations (argv [i] + 3);
1452                 } else if (strcmp (argv [i], "--gc=sgen") == 0) {
1453                         if (!strcmp (mono_gc_get_gc_name (), "boehm")) {
1454                                 GString *path = g_string_new (argv [0]);
1455                                 g_string_append (path, "-sgen");
1456                                 argv [0] = path->str;
1457 #ifdef HAVE_EXECVP
1458                                 execvp (path->str, argv);
1459 #else
1460                                 fprintf (stderr, "Error: --gc=<NAME> option not supported on this platform.\n");
1461 #endif
1462                         }
1463                 } else if (strcmp (argv [i], "--gc=boehm") == 0) {
1464                         if (!strcmp (mono_gc_get_gc_name (), "sgen")) {
1465                                 char *copy = g_strdup (argv [0]);
1466                                 char *p = strstr (copy, "-sgen");
1467                                 if (p == NULL){
1468                                         fprintf (stderr, "Error, this process is not named mono-sgen and the command line option --boehm was passed");
1469                                         exit (1);
1470                                 }
1471                                 *p = 0;
1472                                 argv [0] = p;
1473 #ifdef HAVE_EXECVP
1474                                 execvp (p, argv);
1475 #else
1476                                 fprintf (stderr, "Error: --gc=<NAME> option not supported on this platform.\n");
1477 #endif
1478                         }
1479                 } else if (strcmp (argv [i], "--config") == 0) {
1480                         if (i +1 >= argc){
1481                                 fprintf (stderr, "error: --config requires a filename argument\n");
1482                                 return 1;
1483                         }
1484                         config_file = argv [++i];
1485 #ifdef HOST_WIN32
1486                 } else if (strcmp (argv [i], "--mixed-mode") == 0) {
1487                         mixed_mode = TRUE;
1488 #endif
1489                 } else if (strcmp (argv [i], "--ncompile") == 0) {
1490                         if (i + 1 >= argc){
1491                                 fprintf (stderr, "error: --ncompile requires an argument\n");
1492                                 return 1;
1493                         }
1494                         count = atoi (argv [++i]);
1495                         action = DO_BENCH;
1496                 } else if (strcmp (argv [i], "--trace") == 0) {
1497                         trace_options = (char*)"";
1498                 } else if (strncmp (argv [i], "--trace=", 8) == 0) {
1499                         trace_options = &argv [i][8];
1500                 } else if (strcmp (argv [i], "--breakonex") == 0) {
1501                         mono_break_on_exc = TRUE;
1502                 } else if (strcmp (argv [i], "--break") == 0) {
1503                         if (i+1 >= argc){
1504                                 fprintf (stderr, "Missing method name in --break command line option\n");
1505                                 return 1;
1506                         }
1507                         
1508                         if (!mono_debugger_insert_breakpoint (argv [++i], FALSE))
1509                                 fprintf (stderr, "Error: invalid method name '%s'\n", argv [i]);
1510                 } else if (strcmp (argv [i], "--break-at-bb") == 0) {
1511                         if (i + 2 >= argc) {
1512                                 fprintf (stderr, "Missing method name or bb num in --break-at-bb command line option.");
1513                                 return 1;
1514                         }
1515                         mono_break_at_bb_method = mono_method_desc_new (argv [++i], TRUE);
1516                         if (mono_break_at_bb_method == NULL) {
1517                                 fprintf (stderr, "Method name is in a bad format in --break-at-bb command line option.");
1518                                 return 1;
1519                         }
1520                         mono_break_at_bb_bb_num = atoi (argv [++i]);
1521                 } else if (strcmp (argv [i], "--inject-async-exc") == 0) {
1522                         if (i + 2 >= argc) {
1523                                 fprintf (stderr, "Missing method name or position in --inject-async-exc command line option\n");
1524                                 return 1;
1525                         }
1526                         mono_inject_async_exc_method = mono_method_desc_new (argv [++i], TRUE);
1527                         if (mono_inject_async_exc_method == NULL) {
1528                                 fprintf (stderr, "Method name is in a bad format in --inject-async-exc command line option\n");
1529                                 return 1;
1530                         }
1531                         mono_inject_async_exc_pos = atoi (argv [++i]);
1532                 } else if (strcmp (argv [i], "--verify-all") == 0) {
1533                         mono_verifier_enable_verify_all ();
1534                 } else if (strcmp (argv [i], "--full-aot") == 0) {
1535                         mono_aot_only = TRUE;
1536                 } else if (strcmp (argv [i], "--print-vtable") == 0) {
1537                         mono_print_vtable = TRUE;
1538                 } else if (strcmp (argv [i], "--stats") == 0) {
1539                         mono_counters_enable (-1);
1540                         mono_stats.enabled = TRUE;
1541                         mono_jit_stats.enabled = TRUE;
1542 #ifndef DISABLE_AOT
1543                 } else if (strcmp (argv [i], "--aot") == 0) {
1544                         error_if_aot_unsupported ();
1545                         mono_compile_aot = TRUE;
1546                 } else if (strncmp (argv [i], "--aot=", 6) == 0) {
1547                         error_if_aot_unsupported ();
1548                         mono_compile_aot = TRUE;
1549                         aot_options = &argv [i][6];
1550 #endif
1551                 } else if (strcmp (argv [i], "--compile-all") == 0) {
1552                         action = DO_COMPILE;
1553                 } else if (strncmp (argv [i], "--runtime=", 10) == 0) {
1554                         forced_version = &argv [i][10];
1555                 } else if (strcmp (argv [i], "--jitmap") == 0) {
1556                         mono_enable_jit_map ();
1557                 } else if (strcmp (argv [i], "--profile") == 0) {
1558                         enable_profile = TRUE;
1559                         profile_options = NULL;
1560                 } else if (strncmp (argv [i], "--profile=", 10) == 0) {
1561                         enable_profile = TRUE;
1562                         profile_options = argv [i] + 10;
1563                 } else if (strncmp (argv [i], "--agent=", 8) == 0) {
1564                         if (agents == NULL)
1565                                 agents = g_ptr_array_new ();
1566                         g_ptr_array_add (agents, argv [i] + 8);
1567                 } else if (strncmp (argv [i], "--attach=", 9) == 0) {
1568                         attach_options = argv [i] + 9;
1569                 } else if (strcmp (argv [i], "--compile") == 0) {
1570                         if (i + 1 >= argc){
1571                                 fprintf (stderr, "error: --compile option requires a method name argument\n");
1572                                 return 1;
1573                         }
1574                         
1575                         mname = argv [++i];
1576                         action = DO_BENCH;
1577                 } else if (strncmp (argv [i], "--graph=", 8) == 0) {
1578                         if (i + 1 >= argc){
1579                                 fprintf (stderr, "error: --graph option requires a method name argument\n");
1580                                 return 1;
1581                         }
1582                         
1583                         mono_graph_options = mono_parse_graph_options (argv [i] + 8);
1584                         mname = argv [++i];
1585                         action = DO_DRAW;
1586                 } else if (strcmp (argv [i], "--graph") == 0) {
1587                         if (i + 1 >= argc){
1588                                 fprintf (stderr, "error: --graph option requires a method name argument\n");
1589                                 return 1;
1590                         }
1591                         
1592                         mname = argv [++i];
1593                         mono_graph_options = MONO_GRAPH_CFG;
1594                         action = DO_DRAW;
1595                 } else if (strcmp (argv [i], "--debug") == 0) {
1596                         enable_debugging = TRUE;
1597                 } else if (strncmp (argv [i], "--debug=", 8) == 0) {
1598                         enable_debugging = TRUE;
1599                         if (!parse_debug_options (argv [i] + 8))
1600                                 return 1;
1601                 } else if (strncmp (argv [i], "--debugger-agent=", 17) == 0) {
1602                         MonoDebugOptions *opt = mini_get_debug_options ();
1603
1604                         mono_debugger_agent_parse_options (argv [i] + 17);
1605                         opt->mdb_optimizations = TRUE;
1606                         enable_debugging = TRUE;
1607                 } else if (strcmp (argv [i], "--security") == 0) {
1608                         mono_verifier_set_mode (MONO_VERIFIER_MODE_VERIFIABLE);
1609                         mono_security_set_mode (MONO_SECURITY_MODE_CAS);
1610                         mono_activate_security_manager ();
1611                 } else if (strncmp (argv [i], "--security=", 11) == 0) {
1612                         if (strcmp (argv [i] + 11, "temporary-smcs-hack") == 0) {
1613                                 mono_security_set_mode (MONO_SECURITY_MODE_SMCS_HACK);
1614                         } else if (strcmp (argv [i] + 11, "core-clr") == 0) {
1615                                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VERIFIABLE);
1616                                 mono_security_set_mode (MONO_SECURITY_MODE_CORE_CLR);
1617                         } else if (strcmp (argv [i] + 11, "core-clr-test") == 0) {
1618                                 /* fixme should we enable verifiable code here?*/
1619                                 mono_security_set_mode (MONO_SECURITY_MODE_CORE_CLR);
1620                                 mono_security_core_clr_test = TRUE;
1621                         } else if (strcmp (argv [i] + 11, "cas") == 0){
1622                                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VERIFIABLE);
1623                                 mono_security_set_mode (MONO_SECURITY_MODE_CAS);
1624                                 mono_activate_security_manager ();
1625                         } else  if (strcmp (argv [i] + 11, "validil") == 0) {
1626                                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VALID);
1627                         } else  if (strcmp (argv [i] + 11, "verifiable") == 0) {
1628                                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VERIFIABLE);
1629                         } else  {
1630                                 fprintf (stderr, "error: --security= option has invalid argument (cas, core-clr, verifiable or validil)\n");
1631                                 return 1;
1632                         }
1633                 } else if (strcmp (argv [i], "--desktop") == 0) {
1634                         mono_gc_set_desktop_mode ();
1635                         /* Put desktop-specific optimizations here */
1636                 } else if (strcmp (argv [i], "--server") == 0){
1637                         /* Put server-specific optimizations here */
1638                 } else if (strcmp (argv [i], "--inside-mdb") == 0) {
1639                         action = DO_DEBUGGER;
1640                 } else if (strncmp (argv [i], "--wapi=", 7) == 0) {
1641                         if (strcmp (argv [i] + 7, "hps") == 0) {
1642                                 return mini_wapi_hps (argc - i, argv + i);
1643                         } else if (strcmp (argv [i] + 7, "semdel") == 0) {
1644                                 return mini_wapi_semdel (argc - i, argv + i);
1645                         } else if (strcmp (argv [i] + 7, "seminfo") == 0) {
1646                                 return mini_wapi_seminfo (argc - i, argv + i);
1647                         } else {
1648                                 fprintf (stderr, "Invalid --wapi suboption: '%s'\n", argv [i]);
1649                                 return 1;
1650                         }
1651                 } else if (strcmp (argv [i], "--no-x86-stack-align") == 0) {
1652                         mono_do_x86_stack_align = FALSE;
1653 #ifdef MONO_JIT_INFO_TABLE_TEST
1654                 } else if (strcmp (argv [i], "--test-jit-info-table") == 0) {
1655                         test_jit_info_table = TRUE;
1656 #endif
1657                 } else if (strcmp (argv [i], "--llvm") == 0) {
1658 #ifndef MONO_ARCH_LLVM_SUPPORTED
1659                         fprintf (stderr, "Mono Warning: --llvm not supported on this platform.\n");
1660 #else
1661                         mono_use_llvm = TRUE;
1662 #endif
1663                 } else if (strcmp (argv [i], "--nollvm") == 0){
1664                         mono_use_llvm = FALSE;
1665 #ifdef __native_client_codegen__
1666                 } else if (strcmp (argv [i], "--nacl-align-mask-off") == 0){
1667                         nacl_align_byte = -1; /* 0xff */
1668 #endif
1669 #ifdef __native_client__
1670                 } else if (strcmp (argv [i], "--nacl-mono-path") == 0){
1671                         nacl_mono_path = g_strdup(argv[++i]);
1672 #endif
1673                 } else {
1674                         fprintf (stderr, "Unknown command line option: '%s'\n", argv [i]);
1675                         return 1;
1676                 }
1677         }
1678
1679 #ifdef __native_client_codegen__
1680         if (getenv ("MONO_NACL_ALIGN_MASK_OFF"))
1681         {
1682                 nacl_align_byte = -1; /* 0xff */
1683         }
1684 #endif
1685
1686         if (!argv [i]) {
1687                 mini_usage ();
1688                 return 1;
1689         }
1690
1691         if (getenv ("MONO_XDEBUG"))
1692                 enable_debugging = TRUE;
1693
1694 #ifdef MONO_CROSS_COMPILE
1695        if (!mono_compile_aot) {
1696                    fprintf (stderr, "This mono runtime is compiled for cross-compiling. Only the --aot option is supported.\n");
1697                    exit (1);
1698        }
1699 #if SIZEOF_VOID_P == 8 && defined(TARGET_ARM)
1700        fprintf (stderr, "Can't cross-compile on 64 bit platforms to arm.\n");
1701        exit (1);
1702 #endif
1703 #endif
1704
1705         if ((action == DO_EXEC) && mono_debug_using_mono_debugger ())
1706                 action = DO_DEBUGGER;
1707
1708         if (mono_compile_aot || action == DO_EXEC || action == DO_DEBUGGER) {
1709                 g_set_prgname (argv[i]);
1710         }
1711
1712         if (enable_profile)
1713                 mono_profiler_load (profile_options);
1714
1715         mono_attach_parse_options (attach_options);
1716
1717         if (trace_options != NULL){
1718                 /* 
1719                  * Need to call this before mini_init () so we can trace methods 
1720                  * compiled there too.
1721                  */
1722                 mono_jit_trace_calls = mono_trace_parse_options (trace_options);
1723                 if (mono_jit_trace_calls == NULL)
1724                         exit (1);
1725         }
1726
1727 #ifdef DISABLE_JIT
1728         if (!mono_aot_only) {
1729                 fprintf (stderr, "This runtime has been configured with --enable-minimal=jit, so the --full-aot command line option is required.\n");
1730                 exit (1);
1731         }
1732 #endif
1733
1734         if (action == DO_DEBUGGER) {
1735                 enable_debugging = TRUE;
1736
1737 #ifdef MONO_DEBUGGER_SUPPORTED
1738                 mono_debug_init (MONO_DEBUG_FORMAT_DEBUGGER);
1739 #else
1740                 g_print ("The Mono Debugger is not supported on this platform.\n");
1741                 return 1;
1742 #endif
1743         } else if (enable_debugging)
1744                 mono_debug_init (MONO_DEBUG_FORMAT_MONO);
1745
1746 #ifdef MONO_DEBUGGER_SUPPORTED
1747         if (enable_debugging) {
1748                 if ((opt & MONO_OPT_GSHARED) == 0)
1749                         mini_debugger_set_attach_ok ();
1750         }
1751 #endif
1752
1753 #ifdef HOST_WIN32
1754         if (mixed_mode)
1755                 mono_load_coree (argv [i]);
1756 #endif
1757
1758         mono_set_defaults (mini_verbose, opt);
1759         domain = mini_init (argv [i], forced_version);
1760
1761         if (agents) {
1762                 int i;
1763
1764                 for (i = 0; i < agents->len; ++i) {
1765                         int res = load_agent (domain, (char*)g_ptr_array_index (agents, i));
1766                         if (res) {
1767                                 g_ptr_array_free (agents, TRUE);
1768                                 mini_cleanup (domain);
1769                                 return 1;
1770                         }
1771                 }
1772
1773                 g_ptr_array_free (agents, TRUE);
1774         }
1775         
1776         switch (action) {
1777         case DO_REGRESSION:
1778                 if (mini_regression_list (mini_verbose, argc -i, argv + i)) {
1779                         g_print ("Regression ERRORS!\n");
1780                         mini_cleanup (domain);
1781                         return 1;
1782                 }
1783                 mini_cleanup (domain);
1784                 return 0;
1785         case DO_BENCH:
1786                 if (argc - i != 1 || mname == NULL) {
1787                         g_print ("Usage: mini --ncompile num --compile method assembly\n");
1788                         mini_cleanup (domain);
1789                         return 1;
1790                 }
1791                 aname = argv [i];
1792                 break;
1793         case DO_COMPILE:
1794                 if (argc - i != 1) {
1795                         mini_usage ();
1796                         mini_cleanup (domain);
1797                         return 1;
1798                 }
1799                 aname = argv [i];
1800                 break;
1801         case DO_DRAW:
1802                 if (argc - i != 1 || mname == NULL) {
1803                         mini_usage ();
1804                         mini_cleanup (domain);
1805                         return 1;
1806                 }
1807                 aname = argv [i];
1808                 break;
1809         default:
1810                 if (argc - i < 1) {
1811                         mini_usage ();
1812                         mini_cleanup (domain);
1813                         return 1;
1814                 }
1815                 aname = argv [i];
1816                 break;
1817         }
1818
1819         /* Parse gac loading options before loading assemblies. */
1820         if (mono_compile_aot || action == DO_EXEC || action == DO_DEBUGGER) {
1821                 mono_config_parse (config_file);
1822         }
1823
1824 #ifdef MONO_JIT_INFO_TABLE_TEST
1825         if (test_jit_info_table)
1826                 jit_info_table_test (domain);
1827 #endif
1828
1829         assembly = mono_assembly_open (aname, &open_status);
1830         if (!assembly) {
1831                 fprintf (stderr, "Cannot open assembly '%s': %s.\n", aname, mono_image_strerror (open_status));
1832                 mini_cleanup (domain);
1833                 return 2;
1834         }
1835
1836         if (trace_options != NULL)
1837                 mono_trace_set_assembly (assembly);
1838
1839         if (mono_compile_aot || action == DO_EXEC) {
1840                 const char *error;
1841
1842                 //mono_set_rootdir ();
1843
1844                 error = mono_check_corlib_version ();
1845                 if (error) {
1846                         fprintf (stderr, "Corlib not in sync with this runtime: %s\n", error);
1847                         fprintf (stderr, "Loaded from: %s\n",
1848                                 mono_defaults.corlib? mono_image_get_filename (mono_defaults.corlib): "unknown");
1849                         fprintf (stderr, "Download a newer corlib or a newer runtime at http://www.go-mono.com/daily.\n");
1850                         exit (1);
1851                 }
1852
1853 #ifdef HOST_WIN32
1854                 /* Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32 */
1855                 if (!enable_debugging && !mono_compile_aot && ((MonoCLIImageInfo*)(mono_assembly_get_image (assembly)->image_info))->cli_header.nt.pe_subsys_required == IMAGE_SUBSYSTEM_WINDOWS_GUI)
1856                         FreeConsole ();
1857 #endif
1858
1859                 main_args.domain = domain;
1860                 main_args.file = aname;         
1861                 main_args.argc = argc - i;
1862                 main_args.argv = argv + i;
1863                 main_args.opts = opt;
1864                 main_args.aot_options = aot_options;
1865 #if RUN_IN_SUBTHREAD
1866                 mono_runtime_exec_managed_code (domain, main_thread_handler, &main_args);
1867 #else
1868                 main_thread_handler (&main_args);
1869                 mono_thread_manage ();
1870 #endif
1871
1872         /* 
1873          * On unix, WaitForMultipleObjects for threads is implemented by waiting on
1874          * a cond variable, which is set by the thread when it exits _mono code_, 
1875          * but it could still be running libc code. On amd64, the libc thread exit 
1876          * code does a stack unwind, and if it encounters a frame pointing to native
1877          * code which is in memory which is no longer mapped (because the runtime has
1878          * shut down), it will crash:
1879          * http://mail-archives.apache.org/mod_mbox/harmony-dev/200801.mbox/%3C200801130327.41572.gshimansky@apache.org%3E
1880          * Testcase: tests/main-exit-background-change.exe.
1881          * Testcase: test/main-returns-background-abort-resetabort.exe.
1882          * To make this race less frequent, we avoid freeing the global code manager.
1883          * Since mono_main () is hopefully only used by the runtime executable, this 
1884          * will only cause a shutdown leak. This workaround also has the advantage
1885          * that it can be back-ported to 2.0 safely.
1886          * FIXME: Fix this properly by waiting for threads to really exit using 
1887          * pthread_join (). This cannot be done currently as the io-layer calls
1888          * pthread_detach ().
1889          *
1890          * This used to be an amd64 only crash, but it looks like now most glibc targets do unwinding
1891          * that requires reading the target code.
1892          */
1893 #ifdef __linux__
1894                 mono_dont_free_global_codeman = TRUE;
1895 #endif
1896
1897                 mini_cleanup (domain);
1898
1899                 /* Look up return value from System.Environment.ExitCode */
1900                 i = mono_environment_exitcode_get ();
1901                 return i;
1902         } else if (action == DO_COMPILE) {
1903                 compile_all_methods (assembly, mini_verbose, opt);
1904                 mini_cleanup (domain);
1905                 return 0;
1906         } else if (action == DO_DEBUGGER) {
1907 #ifdef MONO_DEBUGGER_SUPPORTED
1908                 const char *error;
1909
1910                 error = mono_check_corlib_version ();
1911                 if (error) {
1912                         fprintf (stderr, "Corlib not in sync with this runtime: %s\n", error);
1913                         fprintf (stderr, "Download a newer corlib or a newer runtime at http://www.go-mono.com/daily.\n");
1914                         exit (1);
1915                 }
1916
1917                 mini_debugger_main (domain, assembly, argc - i, argv + i);
1918                 mini_cleanup (domain);
1919                 return 0;
1920 #else
1921                 return 1;
1922 #endif
1923         }
1924         desc = mono_method_desc_new (mname, 0);
1925         if (!desc) {
1926                 g_print ("Invalid method name %s\n", mname);
1927                 mini_cleanup (domain);
1928                 return 3;
1929         }
1930         method = mono_method_desc_search_in_image (desc, mono_assembly_get_image (assembly));
1931         if (!method) {
1932                 g_print ("Cannot find method %s\n", mname);
1933                 mini_cleanup (domain);
1934                 return 3;
1935         }
1936
1937 #ifndef DISABLE_JIT
1938         if (action == DO_DRAW) {
1939                 int part = 0;
1940
1941                 switch (mono_graph_options) {
1942                 case MONO_GRAPH_DTREE:
1943                         part = 1;
1944                         opt |= MONO_OPT_LOOP;
1945                         break;
1946                 case MONO_GRAPH_CFG_CODE:
1947                         part = 1;
1948                         break;
1949                 case MONO_GRAPH_CFG_SSA:
1950                         part = 2;
1951                         break;
1952                 case MONO_GRAPH_CFG_OPTCODE:
1953                         part = 3;
1954                         break;
1955                 default:
1956                         break;
1957                 }
1958
1959                 if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
1960                         (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)) {
1961                         MonoMethod *nm;
1962                         nm = mono_marshal_get_native_wrapper (method, TRUE, FALSE);
1963                         cfg = mini_method_compile (nm, opt, mono_get_root_domain (), FALSE, FALSE, part);
1964                 }
1965                 else
1966                         cfg = mini_method_compile (method, opt, mono_get_root_domain (), FALSE, FALSE, part);
1967                 if ((mono_graph_options & MONO_GRAPH_CFG_SSA) && !(cfg->comp_done & MONO_COMP_SSA)) {
1968                         g_warning ("no SSA info available (use -O=deadce)");
1969                         return 1;
1970                 }
1971                 mono_draw_graph (cfg, mono_graph_options);
1972                 mono_destroy_compile (cfg);
1973
1974         } else if (action == DO_BENCH) {
1975                 if (mini_stats_fd) {
1976                         const char *n;
1977                         double no_opt_time = 0.0;
1978                         GTimer *timer = g_timer_new ();
1979                         fprintf (mini_stats_fd, "$stattitle = \'Compilations times for %s\';\n", 
1980                                  mono_method_full_name (method, TRUE));
1981                         fprintf (mini_stats_fd, "@data = (\n");
1982                         fprintf (mini_stats_fd, "[");
1983                         for (i = 0; i < G_N_ELEMENTS (opt_sets); i++) {
1984                                 opt = opt_sets [i];
1985                                 n = opt_descr (opt);
1986                                 if (!n [0])
1987                                         n = "none";
1988                                 fprintf (mini_stats_fd, "\"%s\",", n);
1989                         }
1990                         fprintf (mini_stats_fd, "],\n[");
1991
1992                         for (i = 0; i < G_N_ELEMENTS (opt_sets); i++) {
1993                                 int j;
1994                                 double elapsed;
1995                                 opt = opt_sets [i];
1996                                 g_timer_start (timer);
1997                                 for (j = 0; j < count; ++j) {
1998                                         cfg = mini_method_compile (method, opt, mono_get_root_domain (), FALSE, FALSE, 0);
1999                                         mono_destroy_compile (cfg);
2000                                 }
2001                                 g_timer_stop (timer);
2002                                 elapsed = g_timer_elapsed (timer, NULL);
2003                                 if (!opt)
2004                                         no_opt_time = elapsed;
2005                                 fprintf (mini_stats_fd, "%f, ", elapsed);
2006                         }
2007                         fprintf (mini_stats_fd, "]");
2008                         if (no_opt_time > 0.0) {
2009                                 fprintf (mini_stats_fd, ", \n[");
2010                                 for (i = 0; i < G_N_ELEMENTS (opt_sets); i++) 
2011                                         fprintf (mini_stats_fd, "%f,", no_opt_time);
2012                                 fprintf (mini_stats_fd, "]");
2013                         }
2014                         fprintf (mini_stats_fd, ");\n");
2015                 } else {
2016                         for (i = 0; i < count; ++i) {
2017                                 if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
2018                                         (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL))
2019                                         method = mono_marshal_get_native_wrapper (method, TRUE, FALSE);
2020
2021                                 cfg = mini_method_compile (method, opt, mono_get_root_domain (), FALSE, FALSE, 0);
2022                                 mono_destroy_compile (cfg);
2023                         }
2024                 }
2025         } else {
2026                 cfg = mini_method_compile (method, opt, mono_get_root_domain (), FALSE, FALSE, 0);
2027                 mono_destroy_compile (cfg);
2028         }
2029 #endif
2030
2031         mini_cleanup (domain);
2032         return 0;
2033 }
2034
2035 MonoDomain * 
2036 mono_jit_init (const char *file)
2037 {
2038         return mini_init (file, NULL);
2039 }
2040
2041 /**
2042  * mono_jit_init_version:
2043  * @domain_name: the name of the root domain
2044  * @runtime_version: the version of the runtime to load
2045  *
2046  * Use this version when you want to force a particular runtime
2047  * version to be used.  By default Mono will pick the runtime that is
2048  * referenced by the initial assembly (specified in @file), this
2049  * routine allows programmers to specify the actual runtime to be used
2050  * as the initial runtime is inherited by all future assemblies loaded
2051  * (since Mono does not support having more than one mscorlib runtime
2052  * loaded at once).
2053  *
2054  * The @runtime_version can be one of these strings: "v1.1.4322" for
2055  * the 1.1 runtime or "v2.0.50727"  for the 2.0 runtime. 
2056  *
2057  * Returns: the MonoDomain representing the domain where the assembly
2058  * was loaded.
2059  */
2060 MonoDomain * 
2061 mono_jit_init_version (const char *domain_name, const char *runtime_version)
2062 {
2063         return mini_init (domain_name, runtime_version);
2064 }
2065
2066 void        
2067 mono_jit_cleanup (MonoDomain *domain)
2068 {
2069         mini_cleanup (domain);
2070 }
2071
2072 void
2073 mono_jit_set_aot_only (gboolean val)
2074 {
2075         mono_aot_only = val;
2076 }
2077
2078 /**
2079  * mono_jit_set_trace_options:
2080  * @options: string representing the trace options
2081  *
2082  * Set the options of the tracing engine. This function can be called before initializing
2083  * the mono runtime. See the --trace mono(1) manpage for the options format.
2084  *
2085  * Returns: #TRUE if the options where parsed and set correctly, #FALSE otherwise.
2086  */
2087 gboolean
2088 mono_jit_set_trace_options (const char* options)
2089 {
2090         MonoTraceSpec *trace_opt = mono_trace_parse_options (options);
2091         if (trace_opt == NULL)
2092                 return FALSE;
2093         mono_jit_trace_calls = trace_opt;
2094         return TRUE;
2095 }
2096
2097 /**
2098  * mono_set_signal_chaining:
2099  *
2100  *   Enable/disable signal chaining. This should be called before mono_jit_init ().
2101  * If signal chaining is enabled, the runtime saves the original signal handlers before
2102  * installing its own handlers, and calls the original ones in the following cases:
2103  * - a SIGSEGV/SIGABRT signal received while executing native (i.e. not JITted) code.
2104  * - SIGPROF
2105  * - SIGFPE
2106  * - SIGQUIT
2107  * - SIGUSR2
2108  * Signal chaining only works on POSIX platforms.
2109  */
2110 void
2111 mono_set_signal_chaining (gboolean chain_signals)
2112 {
2113         mono_do_signal_chaining = chain_signals;
2114 }