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