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