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