Merge pull request #309 from i59/patch-1
[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_optimizations (&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_optimizations (&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         guint32 recompilation_times;
838 } CompileAllThreadArgs;
839
840 static void
841 compile_all_methods_thread_main_inner (CompileAllThreadArgs *args)
842 {
843         MonoAssembly *ass = args->ass;
844         int verbose = args->verbose;
845         MonoImage *image = mono_assembly_get_image (ass);
846         MonoMethod *method;
847         MonoCompile *cfg;
848         int i, count = 0, fail_count = 0;
849
850         for (i = 0; i < mono_image_get_table_rows (image, MONO_TABLE_METHOD); ++i) {
851                 guint32 token = MONO_TOKEN_METHOD_DEF | (i + 1);
852                 MonoMethodSignature *sig;
853
854                 if (mono_metadata_has_generic_params (image, token))
855                         continue;
856
857                 method = mono_get_method (image, token, NULL);
858                 if (!method)
859                         continue;
860                 if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
861                     (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
862                     (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
863                     (method->flags & METHOD_ATTRIBUTE_ABSTRACT))
864                         continue;
865
866                 if (method->klass->generic_container)
867                         continue;
868                 sig = mono_method_signature (method);
869                 if (!sig) {
870                         char * desc = mono_method_full_name (method, TRUE);
871                         g_print ("Could not retrieve method signature for %s\n", desc);
872                         g_free (desc);
873                         fail_count ++;
874                         continue;
875                 }
876
877                 if (sig->has_type_parameters)
878                         continue;
879
880                 count++;
881                 if (verbose) {
882                         char * desc = mono_method_full_name (method, TRUE);
883                         g_print ("Compiling %d %s\n", count, desc);
884                         g_free (desc);
885                 }
886                 cfg = mini_method_compile (method, args->opts, mono_get_root_domain (), FALSE, FALSE, 0);
887                 if (cfg->exception_type != MONO_EXCEPTION_NONE) {
888                         printf ("Compilation of %s failed with exception '%s':\n", mono_method_full_name (cfg->method, TRUE), cfg->exception_message);
889                         fail_count ++;
890                 }
891                 mono_destroy_compile (cfg);
892         }
893
894         if (fail_count)
895                 exit (1);
896 }
897
898 static void
899 compile_all_methods_thread_main (CompileAllThreadArgs *args)
900 {
901         guint32 i;
902         for (i = 0; i < args->recompilation_times; ++i)
903                 compile_all_methods_thread_main_inner (args);
904 }
905
906 static void
907 compile_all_methods (MonoAssembly *ass, int verbose, guint32 opts, guint32 recompilation_times)
908 {
909         CompileAllThreadArgs args;
910
911         args.ass = ass;
912         args.verbose = verbose;
913         args.opts = opts;
914         args.recompilation_times = recompilation_times;
915
916         /* 
917          * Need to create a mono thread since compilation might trigger
918          * running of managed code.
919          */
920         mono_thread_create (mono_domain_get (), compile_all_methods_thread_main, &args);
921
922         mono_thread_manage ();
923 }
924
925 /**
926  * mono_jit_exec:
927  * @assembly: reference to an assembly
928  * @argc: argument count
929  * @argv: argument vector
930  *
931  * Start execution of a program.
932  */
933 int 
934 mono_jit_exec (MonoDomain *domain, MonoAssembly *assembly, int argc, char *argv[])
935 {
936         MonoImage *image = mono_assembly_get_image (assembly);
937         MonoMethod *method;
938         guint32 entry = mono_image_get_entry_point (image);
939
940         if (!entry) {
941                 g_print ("Assembly '%s' doesn't have an entry point.\n", mono_image_get_filename (image));
942                 /* FIXME: remove this silly requirement. */
943                 mono_environment_exitcode_set (1);
944                 return 1;
945         }
946
947         method = mono_get_method (image, entry, NULL);
948         if (method == NULL){
949                 g_print ("The entry point method could not be loaded\n");
950                 mono_environment_exitcode_set (1);
951                 return 1;
952         }
953         
954         return mono_runtime_run_main (method, argc, argv, NULL);
955 }
956
957 typedef struct 
958 {
959         MonoDomain *domain;
960         const char *file;
961         int argc;
962         char **argv;
963         guint32 opts;
964         char *aot_options;
965 } MainThreadArgs;
966
967 static void main_thread_handler (gpointer user_data)
968 {
969         MainThreadArgs *main_args = user_data;
970         MonoAssembly *assembly;
971
972         if (mono_compile_aot) {
973                 int i, res;
974
975                 /* Treat the other arguments as assemblies to compile too */
976                 for (i = 0; i < main_args->argc; ++i) {
977                         assembly = mono_domain_assembly_open (main_args->domain, main_args->argv [i]);
978                         if (!assembly) {
979                                 fprintf (stderr, "Can not open image %s\n", main_args->argv [i]);
980                                 exit (1);
981                         }
982                         /* Check that the assembly loaded matches the filename */
983                         {
984                                 MonoImageOpenStatus status;
985                                 MonoImage *img;
986
987                                 img = mono_image_open (main_args->argv [i], &status);
988                                 if (img && strcmp (img->name, assembly->image->name)) {
989                                         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);
990                                         exit (1);
991                                 }
992                         }
993                         res = mono_compile_assembly (assembly, main_args->opts, main_args->aot_options);
994                         if (res != 0) {
995                                 fprintf (stderr, "AOT of image %s failed.\n", main_args->argv [i]);
996                                 exit (1);
997                         }
998                 }
999         } else {
1000                 assembly = mono_domain_assembly_open (main_args->domain, main_args->file);
1001                 if (!assembly){
1002                         fprintf (stderr, "Can not open image %s\n", main_args->file);
1003                         exit (1);
1004                 }
1005
1006                 /* 
1007                  * This must be done in a thread managed by mono since it can invoke
1008                  * managed code.
1009                  */
1010                 if (main_args->opts & MONO_OPT_PRECOMP)
1011                         mono_precompile_assemblies ();
1012
1013                 mono_jit_exec (main_args->domain, assembly, main_args->argc, main_args->argv);
1014         }
1015 }
1016
1017 static int
1018 load_agent (MonoDomain *domain, char *desc)
1019 {
1020         char* col = strchr (desc, ':'); 
1021         char *agent, *args;
1022         MonoAssembly *agent_assembly;
1023         MonoImage *image;
1024         MonoMethod *method;
1025         guint32 entry;
1026         MonoArray *main_args;
1027         gpointer pa [1];
1028         MonoImageOpenStatus open_status;
1029
1030         if (col) {
1031                 agent = g_memdup (desc, col - desc + 1);
1032                 agent [col - desc] = '\0';
1033                 args = col + 1;
1034         } else {
1035                 agent = g_strdup (desc);
1036                 args = NULL;
1037         }
1038
1039         agent_assembly = mono_assembly_open (agent, &open_status);
1040         if (!agent_assembly) {
1041                 fprintf (stderr, "Cannot open agent assembly '%s': %s.\n", agent, mono_image_strerror (open_status));
1042                 g_free (agent);
1043                 return 2;
1044         }
1045
1046         /* 
1047          * Can't use mono_jit_exec (), as it sets things which might confuse the
1048          * real Main method.
1049          */
1050         image = mono_assembly_get_image (agent_assembly);
1051         entry = mono_image_get_entry_point (image);
1052         if (!entry) {
1053                 g_print ("Assembly '%s' doesn't have an entry point.\n", mono_image_get_filename (image));
1054                 g_free (agent);
1055                 return 1;
1056         }
1057
1058         method = mono_get_method (image, entry, NULL);
1059         if (method == NULL){
1060                 g_print ("The entry point method of assembly '%s' could not be loaded\n", agent);
1061                 g_free (agent);
1062                 return 1;
1063         }
1064         
1065         mono_thread_set_main (mono_thread_current ());
1066
1067         if (args) {
1068                 main_args = (MonoArray*)mono_array_new (domain, mono_defaults.string_class, 1);
1069                 mono_array_set (main_args, MonoString*, 0, mono_string_new (domain, args));
1070         } else {
1071                 main_args = (MonoArray*)mono_array_new (domain, mono_defaults.string_class, 0);
1072         }
1073
1074         g_free (agent);
1075
1076         pa [0] = main_args;
1077         /* Pass NULL as 'exc' so unhandled exceptions abort the runtime */
1078         mono_runtime_invoke (method, NULL, pa, NULL);
1079
1080         return 0;
1081 }
1082
1083 static void
1084 mini_usage_jitdeveloper (void)
1085 {
1086         int i;
1087         
1088         fprintf (stdout,
1089                  "Runtime and JIT debugging options:\n"
1090                  "    --breakonex            Inserts a breakpoint on exceptions\n"
1091                  "    --break METHOD         Inserts a breakpoint at METHOD entry\n"
1092                  "    --break-at-bb METHOD N Inserts a breakpoint in METHOD at BB N\n"
1093                  "    --compile METHOD       Just compile METHOD in assembly\n"
1094                  "    --compile-all=N        Compiles all the methods in the assembly multiple times (default: 1)\n"
1095                  "    --ncompile N           Number of times to compile METHOD (default: 1)\n"
1096                  "    --print-vtable         Print the vtable of all used classes\n"
1097                  "    --regression           Runs the regression test contained in the assembly\n"
1098                  "    --statfile FILE        Sets the stat file to FILE\n"
1099                  "    --stats                Print statistics about the JIT operations\n"
1100                  "    --wapi=hps|semdel|seminfo IO-layer maintenance\n"
1101                  "    --inject-async-exc METHOD OFFSET Inject an asynchronous exception at METHOD\n"
1102                  "    --verify-all           Run the verifier on all assemblies and methods\n"
1103                  "    --full-aot             Avoid JITting any code\n"
1104                  "    --agent=ASSEMBLY[:ARG] Loads the specific agent assembly and executes its Main method with the given argument before loading the main assembly.\n"
1105                  "    --no-x86-stack-align   Don't align stack on x86\n"
1106                  "\n"
1107                  "Other options:\n" 
1108                  "    --graph[=TYPE] METHOD  Draws a graph of the specified method:\n");
1109         
1110         for (i = 0; i < G_N_ELEMENTS (graph_names); ++i) {
1111                 fprintf (stdout, "                           %-10s %s\n", graph_names [i].name, graph_names [i].desc);
1112         }
1113 }
1114
1115 static void
1116 mini_usage_list_opt (void)
1117 {
1118         int i;
1119         
1120         for (i = 0; i < G_N_ELEMENTS (opt_names); ++i)
1121                 fprintf (stdout, "                           %-10s %s\n", optflag_get_name (i), optflag_get_desc (i));
1122 }
1123
1124 static void
1125 mini_usage (void)
1126 {
1127         fprintf (stdout,
1128                 "Usage is: mono [options] program [program-options]\n"
1129                 "\n"
1130                 "Development:\n"
1131                 "    --aot[=<options>]      Compiles the assembly to native code\n"
1132                 "    --debug[=<options>]    Enable debugging support, use --help-debug for details\n"
1133                 "    --debugger-agent=options Enable the debugger agent\n"
1134                 "    --profile[=profiler]   Runs in profiling mode with the specified profiler module\n"
1135                 "    --trace[=EXPR]         Enable tracing, use --help-trace for details\n"
1136                 "    --jitmap               Output a jit method map to /tmp/perf-PID.map\n"
1137                 "    --help-devel           Shows more options available to developers\n"
1138 #ifdef __native_client_codegen__
1139                 "    --nacl-align-mask-off  Turn off Native Client 32-byte alignment mask (for debug only)\n"
1140 #endif
1141                 "\n"
1142                 "Runtime:\n"
1143                 "    --config FILE          Loads FILE as the Mono config\n"
1144                 "    --verbose, -v          Increases the verbosity level\n"
1145                 "    --help, -h             Show usage information\n"
1146                 "    --version, -V          Show version information\n"
1147                 "    --runtime=VERSION      Use the VERSION runtime, instead of autodetecting\n"
1148                 "    --optimize=OPT         Turns on or off a specific optimization\n"
1149                 "                           Use --list-opt to get a list of optimizations\n"
1150                 "    --security[=mode]      Turns on the unsupported security manager (off by default)\n"
1151                 "                           mode is one of cas, core-clr, verifiable or validil\n"
1152                 "    --attach=OPTIONS       Pass OPTIONS to the attach agent in the runtime.\n"
1153                 "                           Currently the only supported option is 'disable'.\n"
1154                 "    --llvm, --nollvm       Controls whenever the runtime uses LLVM to compile code.\n"
1155                 "    --gc=[sgen,boehm]      Select SGen or Boehm GC (runs mono or mono-sgen)\n"
1156 #ifdef HOST_WIN32
1157                 "    --mixed-mode           Enable mixed-mode image support.\n"
1158 #endif
1159           );
1160 }
1161
1162 static void
1163 mini_trace_usage (void)
1164 {
1165         fprintf (stdout,
1166                  "Tracing options:\n"
1167                  "   --trace[=EXPR]        Trace every call, optional EXPR controls the scope\n"
1168                  "\n"
1169                  "EXPR is composed of:\n"
1170                  "    all                  All assemblies\n"
1171                  "    none                 No assemblies\n"
1172                  "    program              Entry point assembly\n"
1173                  "    assembly             Specifies an assembly\n"
1174                  "    M:Type:Method        Specifies a method\n"
1175                  "    N:Namespace          Specifies a namespace\n"
1176                  "    T:Type               Specifies a type\n"
1177                  "    EXPR                 Includes expression\n"
1178                  "    -EXPR                Excludes expression\n"
1179                  "    EXPR,EXPR            Multiple expressions\n"
1180                  "    disabled             Don't print any output until toggled via SIGUSR2\n");
1181 }
1182
1183 static void
1184 mini_debug_usage (void)
1185 {
1186         fprintf (stdout,
1187                  "Debugging options:\n"
1188                  "   --debug[=OPTIONS]     Enable debugging support, optional OPTIONS is a comma\n"
1189                  "                         separated list of options\n"
1190                  "\n"
1191                  "OPTIONS is composed of:\n"
1192                  "    casts                Enable more detailed InvalidCastException messages.\n"
1193                  "    mdb-optimizations    Disable some JIT optimizations which are normally\n"
1194                  "                         disabled when running inside the debugger.\n"
1195                  "                         This is useful if you plan to attach to the running\n"
1196                  "                         process with the debugger.\n");
1197 }
1198
1199 #if defined(MONO_ARCH_ARCHITECTURE)
1200 /* Redefine ARCHITECTURE to include more information */
1201 #undef ARCHITECTURE
1202 #define ARCHITECTURE MONO_ARCH_ARCHITECTURE
1203 #endif
1204
1205 static const char info[] =
1206 #ifdef HAVE_KW_THREAD
1207         "\tTLS:           __thread\n"
1208 #else
1209         "\tTLS:           normal\n"
1210 #endif /* HAVE_KW_THREAD */
1211 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
1212     "\tSIGSEGV:       altstack\n"
1213 #else
1214     "\tSIGSEGV:       normal\n"
1215 #endif
1216 #ifdef HAVE_EPOLL
1217     "\tNotifications: epoll\n"
1218 #elif defined(HAVE_KQUEUE)
1219     "\tNotification:  kqueue\n"
1220 #else
1221     "\tNotification:  Thread + polling\n"
1222 #endif
1223         "\tArchitecture:  " ARCHITECTURE "\n"
1224         "\tDisabled:      " DISABLED_FEATURES "\n"
1225         "\tMisc:          "
1226 #ifdef MONO_SMALL_CONFIG
1227         "smallconfig "
1228 #endif
1229 #ifdef MONO_BIG_ARRAYS
1230         "bigarrays "
1231 #endif
1232 #ifdef MONO_DEBUGGER_SUPPORTED
1233         "debugger "
1234 #endif
1235 #if defined(MONO_ARCH_SOFT_DEBUG_SUPPORTED) && !defined(DISABLE_SOFT_DEBUG)
1236         "softdebug "
1237 #endif
1238                 "\n"
1239 #ifdef MONO_ARCH_LLVM_SUPPORTED
1240 #ifdef ENABLE_LLVM
1241         "\tLLVM:          yes(" LLVM_VERSION ")\n"
1242 #else
1243         "\tLLVM:          supported, not enabled.\n"
1244 #endif
1245 #endif
1246         "";
1247
1248 #ifndef MONO_ARCH_AOT_SUPPORTED
1249 #define error_if_aot_unsupported() do {fprintf (stderr, "AOT compilation is not supported on this platform.\n"); exit (1);} while (0)
1250 #else
1251 #define error_if_aot_unsupported()
1252 #endif
1253
1254 #ifdef HOST_WIN32
1255 BOOL APIENTRY DllMain (HMODULE module_handle, DWORD reason, LPVOID reserved)
1256 {
1257         int dummy;
1258         if (!mono_gc_dllmain (module_handle, reason, reserved))
1259                 return FALSE;
1260
1261         switch (reason)
1262         {
1263         case DLL_PROCESS_ATTACH:
1264                 mono_install_runtime_load (mini_init);
1265                 break;
1266         case DLL_PROCESS_DETACH:
1267                 if (coree_module_handle)
1268                         FreeLibrary (coree_module_handle);
1269                 break;
1270         case DLL_THREAD_ATTACH:
1271                 mono_thread_info_attach (&dummy);
1272                 break;
1273         case DLL_THREAD_DETACH:
1274                 mono_thread_info_dettach ();
1275                 break;
1276         
1277         }
1278         return TRUE;
1279 }
1280 #endif
1281
1282 static gboolean enable_debugging;
1283
1284 /*
1285  * mono_jit_parse_options:
1286  *
1287  *   Process the command line options in ARGV as done by the runtime executable. 
1288  * This should be called before mono_jit_init ().
1289  */
1290 void
1291 mono_jit_parse_options (int argc, char * argv[])
1292 {
1293         int i;
1294         char *trace_options = NULL;
1295         int mini_verbose = 0;
1296
1297         /* 
1298          * Some options have no effect here, since they influence the behavior of 
1299          * mono_main ().
1300          */
1301
1302         /* FIXME: Avoid code duplication */
1303         for (i = 0; i < argc; ++i) {
1304                 if (argv [i] [0] != '-')
1305                         break;
1306                 if (strncmp (argv [i], "--debugger-agent=", 17) == 0) {
1307                         MonoDebugOptions *opt = mini_get_debug_options ();
1308
1309                         mono_debugger_agent_parse_options (argv [i] + 17);
1310                         opt->mdb_optimizations = TRUE;
1311                         enable_debugging = TRUE;
1312                 } else if (!strcmp (argv [i], "--soft-breakpoints")) {
1313                         MonoDebugOptions *opt = mini_get_debug_options ();
1314
1315                         opt->soft_breakpoints = TRUE;
1316                         opt->explicit_null_checks = TRUE;
1317                 } else if (strncmp (argv [i], "--optimize=", 11) == 0) {
1318                         guint32 opt = parse_optimizations (argv [i] + 11);
1319                         mono_set_optimizations (opt);
1320                 } else if (strncmp (argv [i], "-O=", 3) == 0) {
1321                         guint32 opt = parse_optimizations (argv [i] + 3);
1322                         mono_set_optimizations (opt);
1323                 } else if (strcmp (argv [i], "--trace") == 0) {
1324                         trace_options = (char*)"";
1325                 } else if (strncmp (argv [i], "--trace=", 8) == 0) {
1326                         trace_options = &argv [i][8];
1327                 } else if (strcmp (argv [i], "--verbose") == 0 || strcmp (argv [i], "-v") == 0) {
1328                         mini_verbose++;
1329                 } else if (strcmp (argv [i], "--breakonex") == 0) {
1330                         MonoDebugOptions *opt = mini_get_debug_options ();
1331
1332                         opt->break_on_exc = TRUE;
1333                 } else if (strcmp (argv [i], "--stats") == 0) {
1334                         mono_counters_enable (-1);
1335                         mono_stats.enabled = TRUE;
1336                         mono_jit_stats.enabled = TRUE;
1337                 } else if (strcmp (argv [i], "--break") == 0) {
1338                         if (i+1 >= argc){
1339                                 fprintf (stderr, "Missing method name in --break command line option\n");
1340                                 exit (1);
1341                         }
1342                         
1343                         if (!mono_debugger_insert_breakpoint (argv [++i], FALSE))
1344                                 fprintf (stderr, "Error: invalid method name '%s'\n", argv [i]);
1345                 } else if (strcmp (argv [i], "--llvm") == 0) {
1346 #ifndef MONO_ARCH_LLVM_SUPPORTED
1347                         fprintf (stderr, "Mono Warning: --llvm not supported on this platform.\n");
1348 #else
1349                         mono_use_llvm = TRUE;
1350 #endif
1351                 } else {
1352                         fprintf (stderr, "Unsupported command line option: '%s'\n", argv [i]);
1353                         exit (1);
1354                 }
1355         }
1356
1357         if (trace_options != NULL) {
1358                 /* 
1359                  * Need to call this before mini_init () so we can trace methods 
1360                  * compiled there too.
1361                  */
1362                 mono_jit_trace_calls = mono_trace_parse_options (trace_options);
1363                 if (mono_jit_trace_calls == NULL)
1364                         exit (1);
1365         }
1366
1367         if (mini_verbose)
1368                 mono_set_verbose_level (mini_verbose);
1369 }
1370
1371 static void
1372 mono_set_use_smp (int use_smp)
1373 {
1374 #if HAVE_SCHED_SETAFFINITY
1375         if (!use_smp) {
1376                 unsigned long proc_mask = 1;
1377 #ifdef GLIBC_BEFORE_2_3_4_SCHED_SETAFFINITY
1378                 sched_setaffinity (getpid(), (gpointer)&proc_mask);
1379 #else
1380                 sched_setaffinity (getpid(), sizeof (unsigned long), (gpointer)&proc_mask);
1381 #endif
1382         }
1383 #endif
1384 }
1385         
1386
1387 /**
1388  * mono_main:
1389  * @argc: number of arguments in the argv array
1390  * @argv: array of strings containing the startup arguments
1391  *
1392  * Launches the Mono JIT engine and parses all the command line options
1393  * in the same way that the mono command line VM would.
1394  */
1395 int
1396 mono_main (int argc, char* argv[])
1397 {
1398         MainThreadArgs main_args;
1399         MonoAssembly *assembly;
1400         MonoMethodDesc *desc;
1401         MonoMethod *method;
1402         MonoCompile *cfg;
1403         MonoDomain *domain;
1404         MonoImageOpenStatus open_status;
1405         const char* aname, *mname = NULL;
1406         char *config_file = NULL;
1407         int i, count = 1;
1408         guint32 opt, action = DO_EXEC, recompilation_times = 1;
1409         MonoGraphOptions mono_graph_options = 0;
1410         int mini_verbose = 0;
1411         gboolean enable_profile = FALSE;
1412         char *trace_options = NULL;
1413         char *profile_options = NULL;
1414         char *aot_options = NULL;
1415         char *forced_version = NULL;
1416         GPtrArray *agents = NULL;
1417         char *attach_options = NULL;
1418 #ifdef MONO_JIT_INFO_TABLE_TEST
1419         int test_jit_info_table = FALSE;
1420 #endif
1421 #ifdef HOST_WIN32
1422         int mixed_mode = FALSE;
1423 #endif
1424
1425 #ifdef MOONLIGHT
1426 #ifndef HOST_WIN32
1427         /* stdout defaults to block buffering if it's not writing to a terminal, which
1428          * happens with our test harness: we redirect stdout to capture it. Force line
1429          * buffering in all cases. */
1430         setlinebuf (stdout);
1431 #endif
1432 #endif
1433
1434         setlocale (LC_ALL, "");
1435
1436         if (getenv ("MONO_NO_SMP"))
1437                 mono_set_use_smp (FALSE);
1438         
1439         if (!g_thread_supported ())
1440                 g_thread_init (NULL);
1441
1442         g_log_set_always_fatal (G_LOG_LEVEL_ERROR);
1443         g_log_set_fatal_mask (G_LOG_DOMAIN, G_LOG_LEVEL_ERROR);
1444
1445         opt = parse_optimizations (NULL);
1446
1447         for (i = 1; i < argc; ++i) {
1448                 if (argv [i] [0] != '-')
1449                         break;
1450                 if (strcmp (argv [i], "--regression") == 0) {
1451                         action = DO_REGRESSION;
1452                 } else if (strcmp (argv [i], "--verbose") == 0 || strcmp (argv [i], "-v") == 0) {
1453                         mini_verbose++;
1454                 } else if (strcmp (argv [i], "--version") == 0 || strcmp (argv [i], "-V") == 0) {
1455                         char *build = mono_get_runtime_build_info ();
1456                         char *gc_descr;
1457
1458                         g_print ("Mono JIT compiler version %s\nCopyright (C) 2002-2012 Novell, Inc, Xamarin Inc and Contributors. www.mono-project.com\n", build);
1459                         g_free (build);
1460                         g_print (info);
1461                         gc_descr = mono_gc_get_description ();
1462                         g_print ("\tGC:            %s\n", gc_descr);
1463                         g_free (gc_descr);
1464                         if (mini_verbose) {
1465                                 const char *cerror;
1466                                 const char *clibpath;
1467                                 mono_init ("mono");
1468                                 cerror = mono_check_corlib_version ();
1469                                 clibpath = mono_defaults.corlib? mono_image_get_filename (mono_defaults.corlib): "unknown";
1470                                 if (cerror) {
1471                                         g_print ("The currently installed mscorlib doesn't match this runtime version.\n");
1472                                         g_print ("The error is: %s\n", cerror);
1473                                         g_print ("mscorlib.dll loaded at: %s\n", clibpath);
1474                                         return 1;
1475                                 }
1476                         }
1477                         return 0;
1478                 } else if (strcmp (argv [i], "--help") == 0 || strcmp (argv [i], "-h") == 0) {
1479                         mini_usage ();
1480                         return 0;
1481                 } else if (strcmp (argv [i], "--help-trace") == 0){
1482                         mini_trace_usage ();
1483                         return 0;
1484                 } else if (strcmp (argv [i], "--help-devel") == 0){
1485                         mini_usage_jitdeveloper ();
1486                         return 0;
1487                 } else if (strcmp (argv [i], "--help-debug") == 0){
1488                         mini_debug_usage ();
1489                         return 0;
1490                 } else if (strcmp (argv [i], "--list-opt") == 0){
1491                         mini_usage_list_opt ();
1492                         return 0;
1493                 } else if (strncmp (argv [i], "--statfile", 10) == 0) {
1494                         if (i + 1 >= argc){
1495                                 fprintf (stderr, "error: --statfile requires a filename argument\n");
1496                                 return 1;
1497                         }
1498                         mini_stats_fd = fopen (argv [++i], "w+");
1499                 } else if (strncmp (argv [i], "--optimize=", 11) == 0) {
1500                         opt = parse_optimizations (argv [i] + 11);
1501                 } else if (strncmp (argv [i], "-O=", 3) == 0) {
1502                         opt = parse_optimizations (argv [i] + 3);
1503                 } else if (strcmp (argv [i], "--gc=sgen") == 0) {
1504                         if (!strcmp (mono_gc_get_gc_name (), "boehm")) {
1505                                 GString *path = g_string_new (argv [0]);
1506                                 g_string_append (path, "-sgen");
1507                                 argv [0] = path->str;
1508 #ifdef HAVE_EXECVP
1509                                 execvp (path->str, argv);
1510 #else
1511                                 fprintf (stderr, "Error: --gc=<NAME> option not supported on this platform.\n");
1512 #endif
1513                         }
1514                 } else if (strcmp (argv [i], "--gc=boehm") == 0) {
1515                         if (!strcmp (mono_gc_get_gc_name (), "sgen")) {
1516                                 char *copy = g_strdup (argv [0]);
1517                                 char *p = strstr (copy, "-sgen");
1518                                 if (p == NULL){
1519                                         fprintf (stderr, "Error, this process is not named mono-sgen and the command line option --boehm was passed");
1520                                         exit (1);
1521                                 }
1522                                 *p = 0;
1523                                 argv [0] = p;
1524 #ifdef HAVE_EXECVP
1525                                 execvp (p, argv);
1526 #else
1527                                 fprintf (stderr, "Error: --gc=<NAME> option not supported on this platform.\n");
1528 #endif
1529                         }
1530                 } else if (strcmp (argv [i], "--config") == 0) {
1531                         if (i +1 >= argc){
1532                                 fprintf (stderr, "error: --config requires a filename argument\n");
1533                                 return 1;
1534                         }
1535                         config_file = argv [++i];
1536 #ifdef HOST_WIN32
1537                 } else if (strcmp (argv [i], "--mixed-mode") == 0) {
1538                         mixed_mode = TRUE;
1539 #endif
1540                 } else if (strcmp (argv [i], "--ncompile") == 0) {
1541                         if (i + 1 >= argc){
1542                                 fprintf (stderr, "error: --ncompile requires an argument\n");
1543                                 return 1;
1544                         }
1545                         count = atoi (argv [++i]);
1546                         action = DO_BENCH;
1547                 } else if (strcmp (argv [i], "--trace") == 0) {
1548                         trace_options = (char*)"";
1549                 } else if (strncmp (argv [i], "--trace=", 8) == 0) {
1550                         trace_options = &argv [i][8];
1551                 } else if (strcmp (argv [i], "--breakonex") == 0) {
1552                         MonoDebugOptions *opt = mini_get_debug_options ();
1553
1554                         opt->break_on_exc = TRUE;
1555                 } else if (strcmp (argv [i], "--break") == 0) {
1556                         if (i+1 >= argc){
1557                                 fprintf (stderr, "Missing method name in --break command line option\n");
1558                                 return 1;
1559                         }
1560                         
1561                         if (!mono_debugger_insert_breakpoint (argv [++i], FALSE))
1562                                 fprintf (stderr, "Error: invalid method name '%s'\n", argv [i]);
1563                 } else if (strcmp (argv [i], "--break-at-bb") == 0) {
1564                         if (i + 2 >= argc) {
1565                                 fprintf (stderr, "Missing method name or bb num in --break-at-bb command line option.");
1566                                 return 1;
1567                         }
1568                         mono_break_at_bb_method = mono_method_desc_new (argv [++i], TRUE);
1569                         if (mono_break_at_bb_method == NULL) {
1570                                 fprintf (stderr, "Method name is in a bad format in --break-at-bb command line option.");
1571                                 return 1;
1572                         }
1573                         mono_break_at_bb_bb_num = atoi (argv [++i]);
1574                 } else if (strcmp (argv [i], "--inject-async-exc") == 0) {
1575                         if (i + 2 >= argc) {
1576                                 fprintf (stderr, "Missing method name or position in --inject-async-exc command line option\n");
1577                                 return 1;
1578                         }
1579                         mono_inject_async_exc_method = mono_method_desc_new (argv [++i], TRUE);
1580                         if (mono_inject_async_exc_method == NULL) {
1581                                 fprintf (stderr, "Method name is in a bad format in --inject-async-exc command line option\n");
1582                                 return 1;
1583                         }
1584                         mono_inject_async_exc_pos = atoi (argv [++i]);
1585                 } else if (strcmp (argv [i], "--verify-all") == 0) {
1586                         mono_verifier_enable_verify_all ();
1587                 } else if (strcmp (argv [i], "--full-aot") == 0) {
1588                         mono_aot_only = TRUE;
1589                 } else if (strcmp (argv [i], "--print-vtable") == 0) {
1590                         mono_print_vtable = TRUE;
1591                 } else if (strcmp (argv [i], "--stats") == 0) {
1592                         mono_counters_enable (-1);
1593                         mono_stats.enabled = TRUE;
1594                         mono_jit_stats.enabled = TRUE;
1595 #ifndef DISABLE_AOT
1596                 } else if (strcmp (argv [i], "--aot") == 0) {
1597                         error_if_aot_unsupported ();
1598                         mono_compile_aot = TRUE;
1599                 } else if (strncmp (argv [i], "--aot=", 6) == 0) {
1600                         error_if_aot_unsupported ();
1601                         mono_compile_aot = TRUE;
1602                         aot_options = &argv [i][6];
1603 #endif
1604                 } else if (strncmp (argv [i], "--compile-all=", 14) == 0) {
1605                         action = DO_COMPILE;
1606                         recompilation_times = atoi (argv [i] + 14);
1607                 } else if (strcmp (argv [i], "--compile-all") == 0) {
1608                         action = DO_COMPILE;
1609                 } else if (strncmp (argv [i], "--runtime=", 10) == 0) {
1610                         forced_version = &argv [i][10];
1611                 } else if (strcmp (argv [i], "--jitmap") == 0) {
1612                         mono_enable_jit_map ();
1613                 } else if (strcmp (argv [i], "--profile") == 0) {
1614                         enable_profile = TRUE;
1615                         profile_options = NULL;
1616                 } else if (strncmp (argv [i], "--profile=", 10) == 0) {
1617                         enable_profile = TRUE;
1618                         profile_options = argv [i] + 10;
1619                 } else if (strncmp (argv [i], "--agent=", 8) == 0) {
1620                         if (agents == NULL)
1621                                 agents = g_ptr_array_new ();
1622                         g_ptr_array_add (agents, argv [i] + 8);
1623                 } else if (strncmp (argv [i], "--attach=", 9) == 0) {
1624                         attach_options = argv [i] + 9;
1625                 } else if (strcmp (argv [i], "--compile") == 0) {
1626                         if (i + 1 >= argc){
1627                                 fprintf (stderr, "error: --compile option requires a method name argument\n");
1628                                 return 1;
1629                         }
1630                         
1631                         mname = argv [++i];
1632                         action = DO_BENCH;
1633                 } else if (strncmp (argv [i], "--graph=", 8) == 0) {
1634                         if (i + 1 >= argc){
1635                                 fprintf (stderr, "error: --graph option requires a method name argument\n");
1636                                 return 1;
1637                         }
1638                         
1639                         mono_graph_options = mono_parse_graph_options (argv [i] + 8);
1640                         mname = argv [++i];
1641                         action = DO_DRAW;
1642                 } else if (strcmp (argv [i], "--graph") == 0) {
1643                         if (i + 1 >= argc){
1644                                 fprintf (stderr, "error: --graph option requires a method name argument\n");
1645                                 return 1;
1646                         }
1647                         
1648                         mname = argv [++i];
1649                         mono_graph_options = MONO_GRAPH_CFG;
1650                         action = DO_DRAW;
1651                 } else if (strcmp (argv [i], "--debug") == 0) {
1652                         enable_debugging = TRUE;
1653                 } else if (strncmp (argv [i], "--debug=", 8) == 0) {
1654                         enable_debugging = TRUE;
1655                         if (!parse_debug_options (argv [i] + 8))
1656                                 return 1;
1657                 } else if (strncmp (argv [i], "--debugger-agent=", 17) == 0) {
1658                         MonoDebugOptions *opt = mini_get_debug_options ();
1659
1660                         mono_debugger_agent_parse_options (argv [i] + 17);
1661                         opt->mdb_optimizations = TRUE;
1662                         enable_debugging = TRUE;
1663                 } else if (strcmp (argv [i], "--security") == 0) {
1664                         mono_verifier_set_mode (MONO_VERIFIER_MODE_VERIFIABLE);
1665                         mono_security_set_mode (MONO_SECURITY_MODE_CAS);
1666                         mono_activate_security_manager ();
1667                 } else if (strncmp (argv [i], "--security=", 11) == 0) {
1668                         if (strcmp (argv [i] + 11, "temporary-smcs-hack") == 0) {
1669                                 mono_security_set_mode (MONO_SECURITY_MODE_SMCS_HACK);
1670                         } else if (strcmp (argv [i] + 11, "core-clr") == 0) {
1671                                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VERIFIABLE);
1672                                 mono_security_set_mode (MONO_SECURITY_MODE_CORE_CLR);
1673                         } else if (strcmp (argv [i] + 11, "core-clr-test") == 0) {
1674                                 /* fixme should we enable verifiable code here?*/
1675                                 mono_security_set_mode (MONO_SECURITY_MODE_CORE_CLR);
1676                                 mono_security_core_clr_test = TRUE;
1677                         } else if (strcmp (argv [i] + 11, "cas") == 0){
1678                                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VERIFIABLE);
1679                                 mono_security_set_mode (MONO_SECURITY_MODE_CAS);
1680                                 mono_activate_security_manager ();
1681                         } else  if (strcmp (argv [i] + 11, "validil") == 0) {
1682                                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VALID);
1683                         } else  if (strcmp (argv [i] + 11, "verifiable") == 0) {
1684                                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VERIFIABLE);
1685                         } else  {
1686                                 fprintf (stderr, "error: --security= option has invalid argument (cas, core-clr, verifiable or validil)\n");
1687                                 return 1;
1688                         }
1689                 } else if (strcmp (argv [i], "--desktop") == 0) {
1690                         mono_gc_set_desktop_mode ();
1691                         /* Put desktop-specific optimizations here */
1692                 } else if (strcmp (argv [i], "--server") == 0){
1693                         /* Put server-specific optimizations here */
1694                 } else if (strcmp (argv [i], "--inside-mdb") == 0) {
1695                         action = DO_DEBUGGER;
1696                 } else if (strncmp (argv [i], "--wapi=", 7) == 0) {
1697                         if (strcmp (argv [i] + 7, "hps") == 0) {
1698                                 return mini_wapi_hps (argc - i, argv + i);
1699                         } else if (strcmp (argv [i] + 7, "semdel") == 0) {
1700                                 return mini_wapi_semdel (argc - i, argv + i);
1701                         } else if (strcmp (argv [i] + 7, "seminfo") == 0) {
1702                                 return mini_wapi_seminfo (argc - i, argv + i);
1703                         } else {
1704                                 fprintf (stderr, "Invalid --wapi suboption: '%s'\n", argv [i]);
1705                                 return 1;
1706                         }
1707                 } else if (strcmp (argv [i], "--no-x86-stack-align") == 0) {
1708                         mono_do_x86_stack_align = FALSE;
1709 #ifdef MONO_JIT_INFO_TABLE_TEST
1710                 } else if (strcmp (argv [i], "--test-jit-info-table") == 0) {
1711                         test_jit_info_table = TRUE;
1712 #endif
1713                 } else if (strcmp (argv [i], "--llvm") == 0) {
1714 #ifndef MONO_ARCH_LLVM_SUPPORTED
1715                         fprintf (stderr, "Mono Warning: --llvm not supported on this platform.\n");
1716 #else
1717                         mono_use_llvm = TRUE;
1718 #endif
1719                 } else if (strcmp (argv [i], "--nollvm") == 0){
1720                         mono_use_llvm = FALSE;
1721 #ifdef __native_client_codegen__
1722                 } else if (strcmp (argv [i], "--nacl-align-mask-off") == 0){
1723                         nacl_align_byte = -1; /* 0xff */
1724 #endif
1725 #ifdef __native_client__
1726                 } else if (strcmp (argv [i], "--nacl-mono-path") == 0){
1727                         nacl_mono_path = g_strdup(argv[++i]);
1728 #endif
1729                 } else {
1730                         fprintf (stderr, "Unknown command line option: '%s'\n", argv [i]);
1731                         return 1;
1732                 }
1733         }
1734
1735 #ifdef __native_client_codegen__
1736         if (getenv ("MONO_NACL_ALIGN_MASK_OFF"))
1737         {
1738                 nacl_align_byte = -1; /* 0xff */
1739         }
1740 #endif
1741
1742         if (!argv [i]) {
1743                 mini_usage ();
1744                 return 1;
1745         }
1746
1747         if (getenv ("MONO_XDEBUG"))
1748                 enable_debugging = TRUE;
1749
1750 #ifdef MONO_CROSS_COMPILE
1751        if (!mono_compile_aot) {
1752                    fprintf (stderr, "This mono runtime is compiled for cross-compiling. Only the --aot option is supported.\n");
1753                    exit (1);
1754        }
1755 #if SIZEOF_VOID_P == 8 && defined(TARGET_ARM)
1756        fprintf (stderr, "Can't cross-compile on 64 bit platforms to arm.\n");
1757        exit (1);
1758 #endif
1759 #endif
1760
1761         if ((action == DO_EXEC) && mono_debug_using_mono_debugger ())
1762                 action = DO_DEBUGGER;
1763
1764         if (mono_compile_aot || action == DO_EXEC || action == DO_DEBUGGER) {
1765                 g_set_prgname (argv[i]);
1766         }
1767
1768         if (enable_profile)
1769                 mono_profiler_load (profile_options);
1770
1771         mono_attach_parse_options (attach_options);
1772
1773         if (trace_options != NULL){
1774                 /* 
1775                  * Need to call this before mini_init () so we can trace methods 
1776                  * compiled there too.
1777                  */
1778                 mono_jit_trace_calls = mono_trace_parse_options (trace_options);
1779                 if (mono_jit_trace_calls == NULL)
1780                         exit (1);
1781         }
1782
1783 #ifdef DISABLE_JIT
1784         if (!mono_aot_only) {
1785                 fprintf (stderr, "This runtime has been configured with --enable-minimal=jit, so the --full-aot command line option is required.\n");
1786                 exit (1);
1787         }
1788 #endif
1789
1790         if (action == DO_DEBUGGER) {
1791                 enable_debugging = TRUE;
1792
1793 #ifdef MONO_DEBUGGER_SUPPORTED
1794                 mono_debug_init (MONO_DEBUG_FORMAT_DEBUGGER);
1795 #else
1796                 g_print ("The Mono Debugger is not supported on this platform.\n");
1797                 return 1;
1798 #endif
1799         } else if (enable_debugging)
1800                 mono_debug_init (MONO_DEBUG_FORMAT_MONO);
1801
1802 #ifdef MONO_DEBUGGER_SUPPORTED
1803         if (enable_debugging) {
1804                 if ((opt & MONO_OPT_GSHARED) == 0)
1805                         mini_debugger_set_attach_ok ();
1806         }
1807 #endif
1808
1809 #ifdef HOST_WIN32
1810         if (mixed_mode)
1811                 mono_load_coree (argv [i]);
1812 #endif
1813
1814         mono_set_defaults (mini_verbose, opt);
1815         domain = mini_init (argv [i], forced_version);
1816
1817         mono_gc_set_stack_end (&domain);
1818
1819         if (agents) {
1820                 int i;
1821
1822                 for (i = 0; i < agents->len; ++i) {
1823                         int res = load_agent (domain, (char*)g_ptr_array_index (agents, i));
1824                         if (res) {
1825                                 g_ptr_array_free (agents, TRUE);
1826                                 mini_cleanup (domain);
1827                                 return 1;
1828                         }
1829                 }
1830
1831                 g_ptr_array_free (agents, TRUE);
1832         }
1833         
1834         switch (action) {
1835         case DO_REGRESSION:
1836                 if (mini_regression_list (mini_verbose, argc -i, argv + i)) {
1837                         g_print ("Regression ERRORS!\n");
1838                         mini_cleanup (domain);
1839                         return 1;
1840                 }
1841                 mini_cleanup (domain);
1842                 return 0;
1843         case DO_BENCH:
1844                 if (argc - i != 1 || mname == NULL) {
1845                         g_print ("Usage: mini --ncompile num --compile method assembly\n");
1846                         mini_cleanup (domain);
1847                         return 1;
1848                 }
1849                 aname = argv [i];
1850                 break;
1851         case DO_COMPILE:
1852                 if (argc - i != 1) {
1853                         mini_usage ();
1854                         mini_cleanup (domain);
1855                         return 1;
1856                 }
1857                 aname = argv [i];
1858                 break;
1859         case DO_DRAW:
1860                 if (argc - i != 1 || mname == NULL) {
1861                         mini_usage ();
1862                         mini_cleanup (domain);
1863                         return 1;
1864                 }
1865                 aname = argv [i];
1866                 break;
1867         default:
1868                 if (argc - i < 1) {
1869                         mini_usage ();
1870                         mini_cleanup (domain);
1871                         return 1;
1872                 }
1873                 aname = argv [i];
1874                 break;
1875         }
1876
1877         /* Parse gac loading options before loading assemblies. */
1878         if (mono_compile_aot || action == DO_EXEC || action == DO_DEBUGGER) {
1879                 mono_config_parse (config_file);
1880         }
1881
1882 #ifdef MONO_JIT_INFO_TABLE_TEST
1883         if (test_jit_info_table)
1884                 jit_info_table_test (domain);
1885 #endif
1886
1887         assembly = mono_assembly_open (aname, &open_status);
1888         if (!assembly) {
1889                 fprintf (stderr, "Cannot open assembly '%s': %s.\n", aname, mono_image_strerror (open_status));
1890                 mini_cleanup (domain);
1891                 return 2;
1892         }
1893
1894         if (trace_options != NULL)
1895                 mono_trace_set_assembly (assembly);
1896
1897         if (mono_compile_aot || action == DO_EXEC) {
1898                 const char *error;
1899
1900                 //mono_set_rootdir ();
1901
1902                 error = mono_check_corlib_version ();
1903                 if (error) {
1904                         fprintf (stderr, "Corlib not in sync with this runtime: %s\n", error);
1905                         fprintf (stderr, "Loaded from: %s\n",
1906                                 mono_defaults.corlib? mono_image_get_filename (mono_defaults.corlib): "unknown");
1907                         fprintf (stderr, "Download a newer corlib or a newer runtime at http://www.go-mono.com/daily.\n");
1908                         exit (1);
1909                 }
1910
1911 #ifdef HOST_WIN32
1912                 /* Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32 */
1913                 if (!enable_debugging && !mono_compile_aot && ((MonoCLIImageInfo*)(mono_assembly_get_image (assembly)->image_info))->cli_header.nt.pe_subsys_required == IMAGE_SUBSYSTEM_WINDOWS_GUI)
1914                         FreeConsole ();
1915 #endif
1916
1917                 main_args.domain = domain;
1918                 main_args.file = aname;         
1919                 main_args.argc = argc - i;
1920                 main_args.argv = argv + i;
1921                 main_args.opts = opt;
1922                 main_args.aot_options = aot_options;
1923 #if RUN_IN_SUBTHREAD
1924                 mono_runtime_exec_managed_code (domain, main_thread_handler, &main_args);
1925 #else
1926                 main_thread_handler (&main_args);
1927                 mono_thread_manage ();
1928 #endif
1929
1930         /* 
1931          * On unix, WaitForMultipleObjects for threads is implemented by waiting on
1932          * a cond variable, which is set by the thread when it exits _mono code_, 
1933          * but it could still be running libc code. On amd64, the libc thread exit 
1934          * code does a stack unwind, and if it encounters a frame pointing to native
1935          * code which is in memory which is no longer mapped (because the runtime has
1936          * shut down), it will crash:
1937          * http://mail-archives.apache.org/mod_mbox/harmony-dev/200801.mbox/%3C200801130327.41572.gshimansky@apache.org%3E
1938          * Testcase: tests/main-exit-background-change.exe.
1939          * Testcase: test/main-returns-background-abort-resetabort.exe.
1940          * To make this race less frequent, we avoid freeing the global code manager.
1941          * Since mono_main () is hopefully only used by the runtime executable, this 
1942          * will only cause a shutdown leak. This workaround also has the advantage
1943          * that it can be back-ported to 2.0 safely.
1944          * FIXME: Fix this properly by waiting for threads to really exit using 
1945          * pthread_join (). This cannot be done currently as the io-layer calls
1946          * pthread_detach ().
1947          *
1948          * This used to be an amd64 only crash, but it looks like now most glibc targets do unwinding
1949          * that requires reading the target code.
1950          */
1951 #ifdef __linux__
1952                 mono_dont_free_global_codeman = TRUE;
1953 #endif
1954
1955                 mini_cleanup (domain);
1956
1957                 /* Look up return value from System.Environment.ExitCode */
1958                 i = mono_environment_exitcode_get ();
1959                 return i;
1960         } else if (action == DO_COMPILE) {
1961                 compile_all_methods (assembly, mini_verbose, opt, recompilation_times);
1962                 mini_cleanup (domain);
1963                 return 0;
1964         } else if (action == DO_DEBUGGER) {
1965 #ifdef MONO_DEBUGGER_SUPPORTED
1966                 const char *error;
1967
1968                 error = mono_check_corlib_version ();
1969                 if (error) {
1970                         fprintf (stderr, "Corlib not in sync with this runtime: %s\n", error);
1971                         fprintf (stderr, "Download a newer corlib or a newer runtime at http://www.go-mono.com/daily.\n");
1972                         exit (1);
1973                 }
1974
1975                 mini_debugger_main (domain, assembly, argc - i, argv + i);
1976                 mini_cleanup (domain);
1977                 return 0;
1978 #else
1979                 return 1;
1980 #endif
1981         }
1982         desc = mono_method_desc_new (mname, 0);
1983         if (!desc) {
1984                 g_print ("Invalid method name %s\n", mname);
1985                 mini_cleanup (domain);
1986                 return 3;
1987         }
1988         method = mono_method_desc_search_in_image (desc, mono_assembly_get_image (assembly));
1989         if (!method) {
1990                 g_print ("Cannot find method %s\n", mname);
1991                 mini_cleanup (domain);
1992                 return 3;
1993         }
1994
1995 #ifndef DISABLE_JIT
1996         if (action == DO_DRAW) {
1997                 int part = 0;
1998
1999                 switch (mono_graph_options) {
2000                 case MONO_GRAPH_DTREE:
2001                         part = 1;
2002                         opt |= MONO_OPT_LOOP;
2003                         break;
2004                 case MONO_GRAPH_CFG_CODE:
2005                         part = 1;
2006                         break;
2007                 case MONO_GRAPH_CFG_SSA:
2008                         part = 2;
2009                         break;
2010                 case MONO_GRAPH_CFG_OPTCODE:
2011                         part = 3;
2012                         break;
2013                 default:
2014                         break;
2015                 }
2016
2017                 if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
2018                         (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)) {
2019                         MonoMethod *nm;
2020                         nm = mono_marshal_get_native_wrapper (method, TRUE, FALSE);
2021                         cfg = mini_method_compile (nm, opt, mono_get_root_domain (), FALSE, FALSE, part);
2022                 }
2023                 else
2024                         cfg = mini_method_compile (method, opt, mono_get_root_domain (), FALSE, FALSE, part);
2025                 if ((mono_graph_options & MONO_GRAPH_CFG_SSA) && !(cfg->comp_done & MONO_COMP_SSA)) {
2026                         g_warning ("no SSA info available (use -O=deadce)");
2027                         return 1;
2028                 }
2029                 mono_draw_graph (cfg, mono_graph_options);
2030                 mono_destroy_compile (cfg);
2031
2032         } else if (action == DO_BENCH) {
2033                 if (mini_stats_fd) {
2034                         const char *n;
2035                         double no_opt_time = 0.0;
2036                         GTimer *timer = g_timer_new ();
2037                         fprintf (mini_stats_fd, "$stattitle = \'Compilations times for %s\';\n", 
2038                                  mono_method_full_name (method, TRUE));
2039                         fprintf (mini_stats_fd, "@data = (\n");
2040                         fprintf (mini_stats_fd, "[");
2041                         for (i = 0; i < G_N_ELEMENTS (opt_sets); i++) {
2042                                 opt = opt_sets [i];
2043                                 n = opt_descr (opt);
2044                                 if (!n [0])
2045                                         n = "none";
2046                                 fprintf (mini_stats_fd, "\"%s\",", n);
2047                         }
2048                         fprintf (mini_stats_fd, "],\n[");
2049
2050                         for (i = 0; i < G_N_ELEMENTS (opt_sets); i++) {
2051                                 int j;
2052                                 double elapsed;
2053                                 opt = opt_sets [i];
2054                                 g_timer_start (timer);
2055                                 for (j = 0; j < count; ++j) {
2056                                         cfg = mini_method_compile (method, opt, mono_get_root_domain (), FALSE, FALSE, 0);
2057                                         mono_destroy_compile (cfg);
2058                                 }
2059                                 g_timer_stop (timer);
2060                                 elapsed = g_timer_elapsed (timer, NULL);
2061                                 if (!opt)
2062                                         no_opt_time = elapsed;
2063                                 fprintf (mini_stats_fd, "%f, ", elapsed);
2064                         }
2065                         fprintf (mini_stats_fd, "]");
2066                         if (no_opt_time > 0.0) {
2067                                 fprintf (mini_stats_fd, ", \n[");
2068                                 for (i = 0; i < G_N_ELEMENTS (opt_sets); i++) 
2069                                         fprintf (mini_stats_fd, "%f,", no_opt_time);
2070                                 fprintf (mini_stats_fd, "]");
2071                         }
2072                         fprintf (mini_stats_fd, ");\n");
2073                 } else {
2074                         for (i = 0; i < count; ++i) {
2075                                 if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
2076                                         (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL))
2077                                         method = mono_marshal_get_native_wrapper (method, TRUE, FALSE);
2078
2079                                 cfg = mini_method_compile (method, opt, mono_get_root_domain (), FALSE, FALSE, 0);
2080                                 mono_destroy_compile (cfg);
2081                         }
2082                 }
2083         } else {
2084                 cfg = mini_method_compile (method, opt, mono_get_root_domain (), FALSE, FALSE, 0);
2085                 mono_destroy_compile (cfg);
2086         }
2087 #endif
2088
2089         mini_cleanup (domain);
2090         return 0;
2091 }
2092
2093 MonoDomain * 
2094 mono_jit_init (const char *file)
2095 {
2096         return mini_init (file, NULL);
2097 }
2098
2099 /**
2100  * mono_jit_init_version:
2101  * @domain_name: the name of the root domain
2102  * @runtime_version: the version of the runtime to load
2103  *
2104  * Use this version when you want to force a particular runtime
2105  * version to be used.  By default Mono will pick the runtime that is
2106  * referenced by the initial assembly (specified in @file), this
2107  * routine allows programmers to specify the actual runtime to be used
2108  * as the initial runtime is inherited by all future assemblies loaded
2109  * (since Mono does not support having more than one mscorlib runtime
2110  * loaded at once).
2111  *
2112  * The @runtime_version can be one of these strings: "v1.1.4322" for
2113  * the 1.1 runtime or "v2.0.50727"  for the 2.0 runtime. 
2114  *
2115  * Returns: the MonoDomain representing the domain where the assembly
2116  * was loaded.
2117  */
2118 MonoDomain * 
2119 mono_jit_init_version (const char *domain_name, const char *runtime_version)
2120 {
2121         return mini_init (domain_name, runtime_version);
2122 }
2123
2124 void        
2125 mono_jit_cleanup (MonoDomain *domain)
2126 {
2127         mini_cleanup (domain);
2128 }
2129
2130 void
2131 mono_jit_set_aot_only (gboolean val)
2132 {
2133         mono_aot_only = val;
2134 }
2135
2136 /**
2137  * mono_jit_set_trace_options:
2138  * @options: string representing the trace options
2139  *
2140  * Set the options of the tracing engine. This function can be called before initializing
2141  * the mono runtime. See the --trace mono(1) manpage for the options format.
2142  *
2143  * Returns: #TRUE if the options where parsed and set correctly, #FALSE otherwise.
2144  */
2145 gboolean
2146 mono_jit_set_trace_options (const char* options)
2147 {
2148         MonoTraceSpec *trace_opt = mono_trace_parse_options (options);
2149         if (trace_opt == NULL)
2150                 return FALSE;
2151         mono_jit_trace_calls = trace_opt;
2152         return TRUE;
2153 }
2154
2155 /**
2156  * mono_set_signal_chaining:
2157  *
2158  *   Enable/disable signal chaining. This should be called before mono_jit_init ().
2159  * If signal chaining is enabled, the runtime saves the original signal handlers before
2160  * installing its own handlers, and calls the original ones in the following cases:
2161  * - a SIGSEGV/SIGABRT signal received while executing native (i.e. not JITted) code.
2162  * - SIGPROF
2163  * - SIGFPE
2164  * - SIGQUIT
2165  * - SIGUSR2
2166  * Signal chaining only works on POSIX platforms.
2167  */
2168 void
2169 mono_set_signal_chaining (gboolean chain_signals)
2170 {
2171         mono_do_signal_chaining = chain_signals;
2172 }