Merge pull request #725 from knocte/threadpool_init
[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->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 #else
1355                         mono_use_llvm = TRUE;
1356 #endif
1357                 } else {
1358                         fprintf (stderr, "Unsupported command line option: '%s'\n", argv [i]);
1359                         exit (1);
1360                 }
1361         }
1362
1363         if (trace_options != NULL) {
1364                 /* 
1365                  * Need to call this before mini_init () so we can trace methods 
1366                  * compiled there too.
1367                  */
1368                 mono_jit_trace_calls = mono_trace_parse_options (trace_options);
1369                 if (mono_jit_trace_calls == NULL)
1370                         exit (1);
1371         }
1372
1373         if (mini_verbose)
1374                 mono_set_verbose_level (mini_verbose);
1375 }
1376
1377 static void
1378 mono_set_use_smp (int use_smp)
1379 {
1380 #if HAVE_SCHED_SETAFFINITY
1381         if (!use_smp) {
1382                 unsigned long proc_mask = 1;
1383 #ifdef GLIBC_BEFORE_2_3_4_SCHED_SETAFFINITY
1384                 sched_setaffinity (getpid(), (gpointer)&proc_mask);
1385 #else
1386                 sched_setaffinity (getpid(), sizeof (unsigned long), (gpointer)&proc_mask);
1387 #endif
1388         }
1389 #endif
1390 }
1391
1392 static void
1393 switch_gc (char* argv[], const char* target_gc)
1394 {
1395         GString *path;
1396
1397         if (!strcmp (mono_gc_get_gc_name (), target_gc)) {
1398                 return;
1399         }
1400
1401         path = g_string_new (argv [0]);
1402
1403         /*Running mono without any argument*/
1404         if (strstr (argv [0], "-sgen"))
1405                 g_string_truncate (path, path->len - 5);
1406         else if (strstr (argv [0], "-boehm"))
1407                 g_string_truncate (path, path->len - 6);
1408
1409         g_string_append_c (path, '-');
1410         g_string_append (path, target_gc);
1411
1412 #ifdef HAVE_EXECVP
1413         execvp (path->str, argv);
1414 #else
1415         fprintf (stderr, "Error: --gc=<NAME> option not supported on this platform.\n");
1416 #endif
1417 }
1418
1419 /**
1420  * mono_main:
1421  * @argc: number of arguments in the argv array
1422  * @argv: array of strings containing the startup arguments
1423  *
1424  * Launches the Mono JIT engine and parses all the command line options
1425  * in the same way that the mono command line VM would.
1426  */
1427 int
1428 mono_main (int argc, char* argv[])
1429 {
1430         MainThreadArgs main_args;
1431         MonoAssembly *assembly;
1432         MonoMethodDesc *desc;
1433         MonoMethod *method;
1434         MonoCompile *cfg;
1435         MonoDomain *domain;
1436         MonoImageOpenStatus open_status;
1437         const char* aname, *mname = NULL;
1438         char *config_file = NULL;
1439         int i, count = 1;
1440         guint32 opt, action = DO_EXEC, recompilation_times = 1;
1441         MonoGraphOptions mono_graph_options = 0;
1442         int mini_verbose = 0;
1443         gboolean enable_profile = FALSE;
1444         char *trace_options = NULL;
1445         char *profile_options = NULL;
1446         char *aot_options = NULL;
1447         char *forced_version = NULL;
1448         GPtrArray *agents = NULL;
1449         char *attach_options = NULL;
1450 #ifdef MONO_JIT_INFO_TABLE_TEST
1451         int test_jit_info_table = FALSE;
1452 #endif
1453 #ifdef HOST_WIN32
1454         int mixed_mode = FALSE;
1455 #endif
1456 #ifdef __native_client__
1457         gboolean nacl_null_checks_off = FALSE;
1458 #endif
1459
1460 #ifdef MOONLIGHT
1461 #ifndef HOST_WIN32
1462         /* stdout defaults to block buffering if it's not writing to a terminal, which
1463          * happens with our test harness: we redirect stdout to capture it. Force line
1464          * buffering in all cases. */
1465         setlinebuf (stdout);
1466 #endif
1467 #endif
1468
1469         setlocale (LC_ALL, "");
1470
1471         if (getenv ("MONO_NO_SMP"))
1472                 mono_set_use_smp (FALSE);
1473         
1474         if (!g_thread_supported ())
1475                 g_thread_init (NULL);
1476
1477         g_log_set_always_fatal (G_LOG_LEVEL_ERROR);
1478         g_log_set_fatal_mask (G_LOG_DOMAIN, G_LOG_LEVEL_ERROR);
1479
1480         opt = parse_optimizations (NULL);
1481
1482         for (i = 1; i < argc; ++i) {
1483                 if (argv [i] [0] != '-')
1484                         break;
1485                 if (strcmp (argv [i], "--regression") == 0) {
1486                         action = DO_REGRESSION;
1487                 } else if (strcmp (argv [i], "--verbose") == 0 || strcmp (argv [i], "-v") == 0) {
1488                         mini_verbose++;
1489                 } else if (strcmp (argv [i], "--version") == 0 || strcmp (argv [i], "-V") == 0) {
1490                         char *build = mono_get_runtime_build_info ();
1491                         char *gc_descr;
1492
1493                         g_print ("Mono JIT compiler version %s\nCopyright (C) 2002-2012 Novell, Inc, Xamarin Inc and Contributors. www.mono-project.com\n", build);
1494                         g_free (build);
1495                         g_print (info);
1496                         gc_descr = mono_gc_get_description ();
1497                         g_print ("\tGC:            %s\n", gc_descr);
1498                         g_free (gc_descr);
1499                         if (mini_verbose) {
1500                                 const char *cerror;
1501                                 const char *clibpath;
1502                                 mono_init ("mono");
1503                                 cerror = mono_check_corlib_version ();
1504                                 clibpath = mono_defaults.corlib? mono_image_get_filename (mono_defaults.corlib): "unknown";
1505                                 if (cerror) {
1506                                         g_print ("The currently installed mscorlib doesn't match this runtime version.\n");
1507                                         g_print ("The error is: %s\n", cerror);
1508                                         g_print ("mscorlib.dll loaded at: %s\n", clibpath);
1509                                         return 1;
1510                                 }
1511                         }
1512                         return 0;
1513                 } else if (strcmp (argv [i], "--help") == 0 || strcmp (argv [i], "-h") == 0) {
1514                         mini_usage ();
1515                         return 0;
1516                 } else if (strcmp (argv [i], "--help-trace") == 0){
1517                         mini_trace_usage ();
1518                         return 0;
1519                 } else if (strcmp (argv [i], "--help-devel") == 0){
1520                         mini_usage_jitdeveloper ();
1521                         return 0;
1522                 } else if (strcmp (argv [i], "--help-debug") == 0){
1523                         mini_debug_usage ();
1524                         return 0;
1525                 } else if (strcmp (argv [i], "--list-opt") == 0){
1526                         mini_usage_list_opt ();
1527                         return 0;
1528                 } else if (strncmp (argv [i], "--statfile", 10) == 0) {
1529                         if (i + 1 >= argc){
1530                                 fprintf (stderr, "error: --statfile requires a filename argument\n");
1531                                 return 1;
1532                         }
1533                         mini_stats_fd = fopen (argv [++i], "w+");
1534                 } else if (strncmp (argv [i], "--optimize=", 11) == 0) {
1535                         opt = parse_optimizations (argv [i] + 11);
1536                 } else if (strncmp (argv [i], "-O=", 3) == 0) {
1537                         opt = parse_optimizations (argv [i] + 3);
1538                 } else if (strcmp (argv [i], "--gc=sgen") == 0) {
1539                         switch_gc (argv, "sgen");
1540                 } else if (strcmp (argv [i], "--gc=boehm") == 0) {
1541                         switch_gc (argv, "boehm");
1542                 } else if (strcmp (argv [i], "--config") == 0) {
1543                         if (i +1 >= argc){
1544                                 fprintf (stderr, "error: --config requires a filename argument\n");
1545                                 return 1;
1546                         }
1547                         config_file = argv [++i];
1548 #ifdef HOST_WIN32
1549                 } else if (strcmp (argv [i], "--mixed-mode") == 0) {
1550                         mixed_mode = TRUE;
1551 #endif
1552                 } else if (strcmp (argv [i], "--ncompile") == 0) {
1553                         if (i + 1 >= argc){
1554                                 fprintf (stderr, "error: --ncompile requires an argument\n");
1555                                 return 1;
1556                         }
1557                         count = atoi (argv [++i]);
1558                         action = DO_BENCH;
1559                 } else if (strcmp (argv [i], "--trace") == 0) {
1560                         trace_options = (char*)"";
1561                 } else if (strncmp (argv [i], "--trace=", 8) == 0) {
1562                         trace_options = &argv [i][8];
1563                 } else if (strcmp (argv [i], "--breakonex") == 0) {
1564                         MonoDebugOptions *opt = mini_get_debug_options ();
1565
1566                         opt->break_on_exc = TRUE;
1567                 } else if (strcmp (argv [i], "--break") == 0) {
1568                         if (i+1 >= argc){
1569                                 fprintf (stderr, "Missing method name in --break command line option\n");
1570                                 return 1;
1571                         }
1572                         
1573                         if (!mono_debugger_insert_breakpoint (argv [++i], FALSE))
1574                                 fprintf (stderr, "Error: invalid method name '%s'\n", argv [i]);
1575                 } else if (strcmp (argv [i], "--break-at-bb") == 0) {
1576                         if (i + 2 >= argc) {
1577                                 fprintf (stderr, "Missing method name or bb num in --break-at-bb command line option.");
1578                                 return 1;
1579                         }
1580                         mono_break_at_bb_method = mono_method_desc_new (argv [++i], TRUE);
1581                         if (mono_break_at_bb_method == NULL) {
1582                                 fprintf (stderr, "Method name is in a bad format in --break-at-bb command line option.");
1583                                 return 1;
1584                         }
1585                         mono_break_at_bb_bb_num = atoi (argv [++i]);
1586                 } else if (strcmp (argv [i], "--inject-async-exc") == 0) {
1587                         if (i + 2 >= argc) {
1588                                 fprintf (stderr, "Missing method name or position in --inject-async-exc command line option\n");
1589                                 return 1;
1590                         }
1591                         mono_inject_async_exc_method = mono_method_desc_new (argv [++i], TRUE);
1592                         if (mono_inject_async_exc_method == NULL) {
1593                                 fprintf (stderr, "Method name is in a bad format in --inject-async-exc command line option\n");
1594                                 return 1;
1595                         }
1596                         mono_inject_async_exc_pos = atoi (argv [++i]);
1597                 } else if (strcmp (argv [i], "--verify-all") == 0) {
1598                         mono_verifier_enable_verify_all ();
1599                 } else if (strcmp (argv [i], "--full-aot") == 0) {
1600                         mono_aot_only = TRUE;
1601                 } else if (strcmp (argv [i], "--print-vtable") == 0) {
1602                         mono_print_vtable = TRUE;
1603                 } else if (strcmp (argv [i], "--stats") == 0) {
1604                         mono_counters_enable (-1);
1605                         mono_stats.enabled = TRUE;
1606                         mono_jit_stats.enabled = TRUE;
1607 #ifndef DISABLE_AOT
1608                 } else if (strcmp (argv [i], "--aot") == 0) {
1609                         error_if_aot_unsupported ();
1610                         mono_compile_aot = TRUE;
1611                 } else if (strncmp (argv [i], "--aot=", 6) == 0) {
1612                         error_if_aot_unsupported ();
1613                         mono_compile_aot = TRUE;
1614                         aot_options = &argv [i][6];
1615 #endif
1616                 } else if (strncmp (argv [i], "--compile-all=", 14) == 0) {
1617                         action = DO_COMPILE;
1618                         recompilation_times = atoi (argv [i] + 14);
1619                 } else if (strcmp (argv [i], "--compile-all") == 0) {
1620                         action = DO_COMPILE;
1621                 } else if (strncmp (argv [i], "--runtime=", 10) == 0) {
1622                         forced_version = &argv [i][10];
1623                 } else if (strcmp (argv [i], "--jitmap") == 0) {
1624                         mono_enable_jit_map ();
1625                 } else if (strcmp (argv [i], "--profile") == 0) {
1626                         enable_profile = TRUE;
1627                         profile_options = NULL;
1628                 } else if (strncmp (argv [i], "--profile=", 10) == 0) {
1629                         enable_profile = TRUE;
1630                         profile_options = argv [i] + 10;
1631                 } else if (strncmp (argv [i], "--agent=", 8) == 0) {
1632                         if (agents == NULL)
1633                                 agents = g_ptr_array_new ();
1634                         g_ptr_array_add (agents, argv [i] + 8);
1635                 } else if (strncmp (argv [i], "--attach=", 9) == 0) {
1636                         attach_options = argv [i] + 9;
1637                 } else if (strcmp (argv [i], "--compile") == 0) {
1638                         if (i + 1 >= argc){
1639                                 fprintf (stderr, "error: --compile option requires a method name argument\n");
1640                                 return 1;
1641                         }
1642                         
1643                         mname = argv [++i];
1644                         action = DO_BENCH;
1645                 } else if (strncmp (argv [i], "--graph=", 8) == 0) {
1646                         if (i + 1 >= argc){
1647                                 fprintf (stderr, "error: --graph option requires a method name argument\n");
1648                                 return 1;
1649                         }
1650                         
1651                         mono_graph_options = mono_parse_graph_options (argv [i] + 8);
1652                         mname = argv [++i];
1653                         action = DO_DRAW;
1654                 } else if (strcmp (argv [i], "--graph") == 0) {
1655                         if (i + 1 >= argc){
1656                                 fprintf (stderr, "error: --graph option requires a method name argument\n");
1657                                 return 1;
1658                         }
1659                         
1660                         mname = argv [++i];
1661                         mono_graph_options = MONO_GRAPH_CFG;
1662                         action = DO_DRAW;
1663                 } else if (strcmp (argv [i], "--debug") == 0) {
1664                         enable_debugging = TRUE;
1665                 } else if (strncmp (argv [i], "--debug=", 8) == 0) {
1666                         enable_debugging = TRUE;
1667                         if (!parse_debug_options (argv [i] + 8))
1668                                 return 1;
1669                 } else if (strncmp (argv [i], "--debugger-agent=", 17) == 0) {
1670                         MonoDebugOptions *opt = mini_get_debug_options ();
1671
1672                         mono_debugger_agent_parse_options (argv [i] + 17);
1673                         opt->mdb_optimizations = TRUE;
1674                         enable_debugging = TRUE;
1675                 } else if (strcmp (argv [i], "--security") == 0) {
1676 #ifndef DISABLE_SECURITY
1677                         mono_verifier_set_mode (MONO_VERIFIER_MODE_VERIFIABLE);
1678                         mono_security_set_mode (MONO_SECURITY_MODE_CAS);
1679                         mono_activate_security_manager ();
1680 #else
1681                         fprintf (stderr, "error: --security: not compiled with security manager support");
1682                         return 1;
1683 #endif
1684                 } else if (strncmp (argv [i], "--security=", 11) == 0) {
1685                         /* Note: temporary-smcs-hack, validil, and verifiable need to be
1686                            accepted even if DISABLE_SECURITY is defined. */
1687
1688                         if (strcmp (argv [i] + 11, "temporary-smcs-hack") == 0) {
1689                                 mono_security_set_mode (MONO_SECURITY_MODE_SMCS_HACK);
1690                         } else if (strcmp (argv [i] + 11, "core-clr") == 0) {
1691 #ifndef DISABLE_SECURITY
1692                                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VERIFIABLE);
1693                                 mono_security_set_mode (MONO_SECURITY_MODE_CORE_CLR);
1694 #else
1695                                 fprintf (stderr, "error: --security: not compiled with CoreCLR support");
1696                                 return 1;
1697 #endif
1698                         } else if (strcmp (argv [i] + 11, "core-clr-test") == 0) {
1699 #ifndef DISABLE_SECURITY
1700                                 /* fixme should we enable verifiable code here?*/
1701                                 mono_security_set_mode (MONO_SECURITY_MODE_CORE_CLR);
1702                                 mono_security_core_clr_test = TRUE;
1703 #else
1704                                 fprintf (stderr, "error: --security: not compiled with CoreCLR support");
1705                                 return 1;
1706 #endif
1707                         } else if (strcmp (argv [i] + 11, "cas") == 0) {
1708 #ifndef DISABLE_SECURITY
1709                                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VERIFIABLE);
1710                                 mono_security_set_mode (MONO_SECURITY_MODE_CAS);
1711                                 mono_activate_security_manager ();
1712 #else
1713                                 fprintf (stderr, "error: --security: not compiled with CAS support");
1714                                 return 1;
1715 #endif
1716                         } else if (strcmp (argv [i] + 11, "validil") == 0) {
1717                                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VALID);
1718                         } else if (strcmp (argv [i] + 11, "verifiable") == 0) {
1719                                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VERIFIABLE);
1720                         } else {
1721                                 fprintf (stderr, "error: --security= option has invalid argument (cas, core-clr, verifiable or validil)\n");
1722                                 return 1;
1723                         }
1724                 } else if (strcmp (argv [i], "--desktop") == 0) {
1725                         mono_gc_set_desktop_mode ();
1726                         /* Put more desktop-specific optimizations here */
1727                 } else if (strcmp (argv [i], "--server") == 0){
1728                         mono_config_set_server_mode (TRUE);
1729                         /* Put more server-specific optimizations here */
1730                 } else if (strcmp (argv [i], "--inside-mdb") == 0) {
1731                         action = DO_DEBUGGER;
1732                 } else if (strncmp (argv [i], "--wapi=", 7) == 0) {
1733                         if (strcmp (argv [i] + 7, "hps") == 0) {
1734                                 return mini_wapi_hps (argc - i, argv + i);
1735                         } else if (strcmp (argv [i] + 7, "semdel") == 0) {
1736                                 return mini_wapi_semdel (argc - i, argv + i);
1737                         } else if (strcmp (argv [i] + 7, "seminfo") == 0) {
1738                                 return mini_wapi_seminfo (argc - i, argv + i);
1739                         } else {
1740                                 fprintf (stderr, "Invalid --wapi suboption: '%s'\n", argv [i]);
1741                                 return 1;
1742                         }
1743                 } else if (strcmp (argv [i], "--no-x86-stack-align") == 0) {
1744                         mono_do_x86_stack_align = FALSE;
1745 #ifdef MONO_JIT_INFO_TABLE_TEST
1746                 } else if (strcmp (argv [i], "--test-jit-info-table") == 0) {
1747                         test_jit_info_table = TRUE;
1748 #endif
1749                 } else if (strcmp (argv [i], "--llvm") == 0) {
1750 #ifndef MONO_ARCH_LLVM_SUPPORTED
1751                         fprintf (stderr, "Mono Warning: --llvm not supported on this platform.\n");
1752 #else
1753                         mono_use_llvm = TRUE;
1754 #endif
1755                 } else if (strcmp (argv [i], "--nollvm") == 0){
1756                         mono_use_llvm = FALSE;
1757 #ifdef __native_client_codegen__
1758                 } else if (strcmp (argv [i], "--nacl-align-mask-off") == 0){
1759                         nacl_align_byte = -1; /* 0xff */
1760 #endif
1761 #ifdef __native_client__
1762                 } else if (strcmp (argv [i], "--nacl-mono-path") == 0){
1763                         nacl_mono_path = g_strdup(argv[++i]);
1764                 } else if (strcmp (argv [i], "--nacl-null-checks-off") == 0){
1765                         nacl_null_checks_off = TRUE;
1766 #endif
1767                 } else {
1768                         fprintf (stderr, "Unknown command line option: '%s'\n", argv [i]);
1769                         return 1;
1770                 }
1771         }
1772
1773 #ifdef __native_client_codegen__
1774         if (getenv ("MONO_NACL_ALIGN_MASK_OFF"))
1775         {
1776                 nacl_align_byte = -1; /* 0xff */
1777         }
1778         if (!nacl_null_checks_off) {
1779                 MonoDebugOptions *opt = mini_get_debug_options ();
1780                 opt->explicit_null_checks = TRUE;
1781         }
1782 #endif
1783
1784         if (!argv [i]) {
1785                 mini_usage ();
1786                 return 1;
1787         }
1788
1789         if (getenv ("MONO_XDEBUG"))
1790                 enable_debugging = TRUE;
1791
1792 #ifdef MONO_CROSS_COMPILE
1793        if (!mono_compile_aot) {
1794                    fprintf (stderr, "This mono runtime is compiled for cross-compiling. Only the --aot option is supported.\n");
1795                    exit (1);
1796        }
1797 #if SIZEOF_VOID_P == 8 && defined(TARGET_ARM)
1798        fprintf (stderr, "Can't cross-compile on 64 bit platforms to arm.\n");
1799        exit (1);
1800 #endif
1801 #endif
1802
1803         if ((action == DO_EXEC) && mono_debug_using_mono_debugger ())
1804                 action = DO_DEBUGGER;
1805
1806         if (mono_compile_aot || action == DO_EXEC || action == DO_DEBUGGER) {
1807                 g_set_prgname (argv[i]);
1808         }
1809
1810         if (enable_profile)
1811                 mono_profiler_load (profile_options);
1812
1813         mono_attach_parse_options (attach_options);
1814
1815         if (trace_options != NULL){
1816                 /* 
1817                  * Need to call this before mini_init () so we can trace methods 
1818                  * compiled there too.
1819                  */
1820                 mono_jit_trace_calls = mono_trace_parse_options (trace_options);
1821                 if (mono_jit_trace_calls == NULL)
1822                         exit (1);
1823         }
1824
1825 #ifdef DISABLE_JIT
1826         if (!mono_aot_only) {
1827                 fprintf (stderr, "This runtime has been configured with --enable-minimal=jit, so the --full-aot command line option is required.\n");
1828                 exit (1);
1829         }
1830 #endif
1831
1832         if (action == DO_DEBUGGER) {
1833                 enable_debugging = TRUE;
1834
1835 #ifdef MONO_DEBUGGER_SUPPORTED
1836                 mono_debug_init (MONO_DEBUG_FORMAT_DEBUGGER);
1837 #else
1838                 g_print ("The Mono Debugger is not supported on this platform.\n");
1839                 return 1;
1840 #endif
1841         } else if (enable_debugging)
1842                 mono_debug_init (MONO_DEBUG_FORMAT_MONO);
1843
1844 #ifdef MONO_DEBUGGER_SUPPORTED
1845         if (enable_debugging) {
1846                 if ((opt & MONO_OPT_GSHARED) == 0)
1847                         mini_debugger_set_attach_ok ();
1848         }
1849 #endif
1850
1851 #ifdef HOST_WIN32
1852         if (mixed_mode)
1853                 mono_load_coree (argv [i]);
1854 #endif
1855
1856         mono_set_defaults (mini_verbose, opt);
1857         domain = mini_init (argv [i], forced_version);
1858
1859         mono_gc_set_stack_end (&domain);
1860
1861         if (agents) {
1862                 int i;
1863
1864                 for (i = 0; i < agents->len; ++i) {
1865                         int res = load_agent (domain, (char*)g_ptr_array_index (agents, i));
1866                         if (res) {
1867                                 g_ptr_array_free (agents, TRUE);
1868                                 mini_cleanup (domain);
1869                                 return 1;
1870                         }
1871                 }
1872
1873                 g_ptr_array_free (agents, TRUE);
1874         }
1875         
1876         switch (action) {
1877         case DO_REGRESSION:
1878                 if (mini_regression_list (mini_verbose, argc -i, argv + i)) {
1879                         g_print ("Regression ERRORS!\n");
1880                         mini_cleanup (domain);
1881                         return 1;
1882                 }
1883                 mini_cleanup (domain);
1884                 return 0;
1885         case DO_BENCH:
1886                 if (argc - i != 1 || mname == NULL) {
1887                         g_print ("Usage: mini --ncompile num --compile method assembly\n");
1888                         mini_cleanup (domain);
1889                         return 1;
1890                 }
1891                 aname = argv [i];
1892                 break;
1893         case DO_COMPILE:
1894                 if (argc - i != 1) {
1895                         mini_usage ();
1896                         mini_cleanup (domain);
1897                         return 1;
1898                 }
1899                 aname = argv [i];
1900                 break;
1901         case DO_DRAW:
1902                 if (argc - i != 1 || mname == NULL) {
1903                         mini_usage ();
1904                         mini_cleanup (domain);
1905                         return 1;
1906                 }
1907                 aname = argv [i];
1908                 break;
1909         default:
1910                 if (argc - i < 1) {
1911                         mini_usage ();
1912                         mini_cleanup (domain);
1913                         return 1;
1914                 }
1915                 aname = argv [i];
1916                 break;
1917         }
1918
1919         /* Parse gac loading options before loading assemblies. */
1920         if (mono_compile_aot || action == DO_EXEC || action == DO_DEBUGGER) {
1921                 mono_config_parse (config_file);
1922         }
1923
1924 #ifdef MONO_JIT_INFO_TABLE_TEST
1925         if (test_jit_info_table)
1926                 jit_info_table_test (domain);
1927 #endif
1928
1929         assembly = mono_assembly_open (aname, &open_status);
1930         if (!assembly) {
1931                 fprintf (stderr, "Cannot open assembly '%s': %s.\n", aname, mono_image_strerror (open_status));
1932                 mini_cleanup (domain);
1933                 return 2;
1934         }
1935
1936         if (trace_options != NULL)
1937                 mono_trace_set_assembly (assembly);
1938
1939         if (mono_compile_aot || action == DO_EXEC) {
1940                 const char *error;
1941
1942                 //mono_set_rootdir ();
1943
1944                 error = mono_check_corlib_version ();
1945                 if (error) {
1946                         fprintf (stderr, "Corlib not in sync with this runtime: %s\n", error);
1947                         fprintf (stderr, "Loaded from: %s\n",
1948                                 mono_defaults.corlib? mono_image_get_filename (mono_defaults.corlib): "unknown");
1949                         fprintf (stderr, "Download a newer corlib or a newer runtime at http://www.go-mono.com/daily.\n");
1950                         exit (1);
1951                 }
1952
1953 #ifdef HOST_WIN32
1954                 /* Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32 */
1955                 if (!enable_debugging && !mono_compile_aot && ((MonoCLIImageInfo*)(mono_assembly_get_image (assembly)->image_info))->cli_header.nt.pe_subsys_required == IMAGE_SUBSYSTEM_WINDOWS_GUI)
1956                         FreeConsole ();
1957 #endif
1958
1959                 main_args.domain = domain;
1960                 main_args.file = aname;         
1961                 main_args.argc = argc - i;
1962                 main_args.argv = argv + i;
1963                 main_args.opts = opt;
1964                 main_args.aot_options = aot_options;
1965 #if RUN_IN_SUBTHREAD
1966                 mono_runtime_exec_managed_code (domain, main_thread_handler, &main_args);
1967 #else
1968                 main_thread_handler (&main_args);
1969                 mono_thread_manage ();
1970 #endif
1971
1972         /* 
1973          * On unix, WaitForMultipleObjects for threads is implemented by waiting on
1974          * a cond variable, which is set by the thread when it exits _mono code_, 
1975          * but it could still be running libc code. On amd64, the libc thread exit 
1976          * code does a stack unwind, and if it encounters a frame pointing to native
1977          * code which is in memory which is no longer mapped (because the runtime has
1978          * shut down), it will crash:
1979          * http://mail-archives.apache.org/mod_mbox/harmony-dev/200801.mbox/%3C200801130327.41572.gshimansky@apache.org%3E
1980          * Testcase: tests/main-exit-background-change.exe.
1981          * Testcase: test/main-returns-background-abort-resetabort.exe.
1982          * To make this race less frequent, we avoid freeing the global code manager.
1983          * Since mono_main () is hopefully only used by the runtime executable, this 
1984          * will only cause a shutdown leak. This workaround also has the advantage
1985          * that it can be back-ported to 2.0 safely.
1986          * FIXME: Fix this properly by waiting for threads to really exit using 
1987          * pthread_join (). This cannot be done currently as the io-layer calls
1988          * pthread_detach ().
1989          *
1990          * This used to be an amd64 only crash, but it looks like now most glibc targets do unwinding
1991          * that requires reading the target code.
1992          */
1993 #if defined( __linux__ ) || defined( __native_client__ )
1994                 mono_dont_free_global_codeman = TRUE;
1995 #endif
1996
1997                 mini_cleanup (domain);
1998
1999                 /* Look up return value from System.Environment.ExitCode */
2000                 i = mono_environment_exitcode_get ();
2001                 return i;
2002         } else if (action == DO_COMPILE) {
2003                 compile_all_methods (assembly, mini_verbose, opt, recompilation_times);
2004                 mini_cleanup (domain);
2005                 return 0;
2006         } else if (action == DO_DEBUGGER) {
2007 #ifdef MONO_DEBUGGER_SUPPORTED
2008                 const char *error;
2009
2010                 error = mono_check_corlib_version ();
2011                 if (error) {
2012                         fprintf (stderr, "Corlib not in sync with this runtime: %s\n", error);
2013                         fprintf (stderr, "Download a newer corlib or a newer runtime at http://www.go-mono.com/daily.\n");
2014                         exit (1);
2015                 }
2016
2017                 mini_debugger_main (domain, assembly, argc - i, argv + i);
2018                 mini_cleanup (domain);
2019                 return 0;
2020 #else
2021                 return 1;
2022 #endif
2023         }
2024         desc = mono_method_desc_new (mname, 0);
2025         if (!desc) {
2026                 g_print ("Invalid method name %s\n", mname);
2027                 mini_cleanup (domain);
2028                 return 3;
2029         }
2030         method = mono_method_desc_search_in_image (desc, mono_assembly_get_image (assembly));
2031         if (!method) {
2032                 g_print ("Cannot find method %s\n", mname);
2033                 mini_cleanup (domain);
2034                 return 3;
2035         }
2036
2037 #ifndef DISABLE_JIT
2038         if (action == DO_DRAW) {
2039                 int part = 0;
2040
2041                 switch (mono_graph_options) {
2042                 case MONO_GRAPH_DTREE:
2043                         part = 1;
2044                         opt |= MONO_OPT_LOOP;
2045                         break;
2046                 case MONO_GRAPH_CFG_CODE:
2047                         part = 1;
2048                         break;
2049                 case MONO_GRAPH_CFG_SSA:
2050                         part = 2;
2051                         break;
2052                 case MONO_GRAPH_CFG_OPTCODE:
2053                         part = 3;
2054                         break;
2055                 default:
2056                         break;
2057                 }
2058
2059                 if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
2060                         (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)) {
2061                         MonoMethod *nm;
2062                         nm = mono_marshal_get_native_wrapper (method, TRUE, FALSE);
2063                         cfg = mini_method_compile (nm, opt, mono_get_root_domain (), FALSE, FALSE, part);
2064                 }
2065                 else
2066                         cfg = mini_method_compile (method, opt, mono_get_root_domain (), FALSE, FALSE, part);
2067                 if ((mono_graph_options & MONO_GRAPH_CFG_SSA) && !(cfg->comp_done & MONO_COMP_SSA)) {
2068                         g_warning ("no SSA info available (use -O=deadce)");
2069                         return 1;
2070                 }
2071                 mono_draw_graph (cfg, mono_graph_options);
2072                 mono_destroy_compile (cfg);
2073
2074         } else if (action == DO_BENCH) {
2075                 if (mini_stats_fd) {
2076                         const char *n;
2077                         double no_opt_time = 0.0;
2078                         GTimer *timer = g_timer_new ();
2079                         fprintf (mini_stats_fd, "$stattitle = \'Compilations times for %s\';\n", 
2080                                  mono_method_full_name (method, TRUE));
2081                         fprintf (mini_stats_fd, "@data = (\n");
2082                         fprintf (mini_stats_fd, "[");
2083                         for (i = 0; i < G_N_ELEMENTS (opt_sets); i++) {
2084                                 opt = opt_sets [i];
2085                                 n = opt_descr (opt);
2086                                 if (!n [0])
2087                                         n = "none";
2088                                 fprintf (mini_stats_fd, "\"%s\",", n);
2089                         }
2090                         fprintf (mini_stats_fd, "],\n[");
2091
2092                         for (i = 0; i < G_N_ELEMENTS (opt_sets); i++) {
2093                                 int j;
2094                                 double elapsed;
2095                                 opt = opt_sets [i];
2096                                 g_timer_start (timer);
2097                                 for (j = 0; j < count; ++j) {
2098                                         cfg = mini_method_compile (method, opt, mono_get_root_domain (), FALSE, FALSE, 0);
2099                                         mono_destroy_compile (cfg);
2100                                 }
2101                                 g_timer_stop (timer);
2102                                 elapsed = g_timer_elapsed (timer, NULL);
2103                                 if (!opt)
2104                                         no_opt_time = elapsed;
2105                                 fprintf (mini_stats_fd, "%f, ", elapsed);
2106                         }
2107                         fprintf (mini_stats_fd, "]");
2108                         if (no_opt_time > 0.0) {
2109                                 fprintf (mini_stats_fd, ", \n[");
2110                                 for (i = 0; i < G_N_ELEMENTS (opt_sets); i++) 
2111                                         fprintf (mini_stats_fd, "%f,", no_opt_time);
2112                                 fprintf (mini_stats_fd, "]");
2113                         }
2114                         fprintf (mini_stats_fd, ");\n");
2115                 } else {
2116                         for (i = 0; i < count; ++i) {
2117                                 if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
2118                                         (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL))
2119                                         method = mono_marshal_get_native_wrapper (method, TRUE, FALSE);
2120
2121                                 cfg = mini_method_compile (method, opt, mono_get_root_domain (), FALSE, FALSE, 0);
2122                                 mono_destroy_compile (cfg);
2123                         }
2124                 }
2125         } else {
2126                 cfg = mini_method_compile (method, opt, mono_get_root_domain (), FALSE, FALSE, 0);
2127                 mono_destroy_compile (cfg);
2128         }
2129 #endif
2130
2131         mini_cleanup (domain);
2132         return 0;
2133 }
2134
2135 MonoDomain * 
2136 mono_jit_init (const char *file)
2137 {
2138         return mini_init (file, NULL);
2139 }
2140
2141 /**
2142  * mono_jit_init_version:
2143  * @domain_name: the name of the root domain
2144  * @runtime_version: the version of the runtime to load
2145  *
2146  * Use this version when you want to force a particular runtime
2147  * version to be used.  By default Mono will pick the runtime that is
2148  * referenced by the initial assembly (specified in @file), this
2149  * routine allows programmers to specify the actual runtime to be used
2150  * as the initial runtime is inherited by all future assemblies loaded
2151  * (since Mono does not support having more than one mscorlib runtime
2152  * loaded at once).
2153  *
2154  * The @runtime_version can be one of these strings: "v1.1.4322" for
2155  * the 1.1 runtime or "v2.0.50727"  for the 2.0 runtime. 
2156  *
2157  * Returns: the MonoDomain representing the domain where the assembly
2158  * was loaded.
2159  */
2160 MonoDomain * 
2161 mono_jit_init_version (const char *domain_name, const char *runtime_version)
2162 {
2163         return mini_init (domain_name, runtime_version);
2164 }
2165
2166 void        
2167 mono_jit_cleanup (MonoDomain *domain)
2168 {
2169         mini_cleanup (domain);
2170 }
2171
2172 void
2173 mono_jit_set_aot_only (gboolean val)
2174 {
2175         mono_aot_only = val;
2176 }
2177
2178 /**
2179  * mono_jit_set_trace_options:
2180  * @options: string representing the trace options
2181  *
2182  * Set the options of the tracing engine. This function can be called before initializing
2183  * the mono runtime. See the --trace mono(1) manpage for the options format.
2184  *
2185  * Returns: #TRUE if the options where parsed and set correctly, #FALSE otherwise.
2186  */
2187 gboolean
2188 mono_jit_set_trace_options (const char* options)
2189 {
2190         MonoTraceSpec *trace_opt = mono_trace_parse_options (options);
2191         if (trace_opt == NULL)
2192                 return FALSE;
2193         mono_jit_trace_calls = trace_opt;
2194         return TRUE;
2195 }
2196
2197 /**
2198  * mono_set_signal_chaining:
2199  *
2200  *   Enable/disable signal chaining. This should be called before mono_jit_init ().
2201  * If signal chaining is enabled, the runtime saves the original signal handlers before
2202  * installing its own handlers, and calls the original ones in the following cases:
2203  * - a SIGSEGV/SIGABRT signal received while executing native (i.e. not JITted) code.
2204  * - SIGPROF
2205  * - SIGFPE
2206  * - SIGQUIT
2207  * - SIGUSR2
2208  * Signal chaining only works on POSIX platforms.
2209  */
2210 void
2211 mono_set_signal_chaining (gboolean chain_signals)
2212 {
2213         mono_do_signal_chaining = chain_signals;
2214 }