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