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