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