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