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