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