00191a1598084fb848fe66d7074f45d35567b37a
[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/utils/mono-counters.h"
49 #include <mono/os/gc_wrapper.h>
50
51 #include "mini.h"
52 #include "jit.h"
53 #include <string.h>
54 #include <ctype.h>
55 #include "inssel.h"
56 #include <locale.h>
57 #include "version.h"
58
59 static FILE *mini_stats_fd = NULL;
60
61 static void mini_usage (void);
62
63 #ifdef PLATFORM_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 #define DEFAULT_OPTIMIZATIONS ( \
118         MONO_OPT_PEEPHOLE |     \
119         MONO_OPT_CFOLD |        \
120         MONO_OPT_INLINE |       \
121         MONO_OPT_CONSPROP |     \
122         MONO_OPT_COPYPROP |     \
123         MONO_OPT_TREEPROP |     \
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_AOT)
133
134 #define EXCLUDED_FROM_ALL (MONO_OPT_SHARED | MONO_OPT_PRECOMP)
135
136 static guint32
137 parse_optimizations (const char* p)
138 {
139         /* the default value */
140         guint32 opt = DEFAULT_OPTIMIZATIONS;
141         guint32 exclude = 0;
142         const char *n;
143         int i, invert, len;
144
145         /* call out to cpu detection code here that sets the defaults ... */
146         opt |= mono_arch_cpu_optimizazions (&exclude);
147         opt &= ~exclude;
148         if (!p)
149                 return opt;
150
151         while (*p) {
152                 if (*p == '-') {
153                         p++;
154                         invert = TRUE;
155                 } else {
156                         invert = FALSE;
157                 }
158                 for (i = 0; i < G_N_ELEMENTS (opt_names) && optflag_get_name (i); ++i) {
159                         n = optflag_get_name (i);
160                         len = strlen (n);
161                         if (strncmp (p, n, len) == 0) {
162                                 if (invert)
163                                         opt &= ~ (1 << i);
164                                 else
165                                         opt |= 1 << i;
166                                 p += len;
167                                 if (*p == ',') {
168                                         p++;
169                                         break;
170                                 } else if (*p == '=') {
171                                         p++;
172                                         if (opt_funcs [i])
173                                                 opt_funcs [i] (p);
174                                         while (*p && *p++ != ',');
175                                         break;
176                                 }
177                                 /* error out */
178                                 break;
179                         }
180                 }
181                 if (i == G_N_ELEMENTS (opt_names) || !optflag_get_name (i)) {
182                         if (strncmp (p, "all", 3) == 0) {
183                                 if (invert)
184                                         opt = 0;
185                                 else
186                                         opt = ~(EXCLUDED_FROM_ALL | exclude);
187                                 p += 3;
188                                 if (*p == ',')
189                                         p++;
190                         } else {
191                                 fprintf (stderr, "Invalid optimization name `%s'\n", p);
192                                 exit (1);
193                         }
194                 }
195         }
196         return opt;
197 }
198
199 static gboolean
200 parse_debug_options (const char* p)
201 {
202         MonoDebugOptions *opt = mini_get_debug_options ();
203
204         do {
205                 if (!*p) {
206                         fprintf (stderr, "Syntax error; expected debug option name\n");
207                         return FALSE;
208                 }
209
210                 if (!strncmp (p, "casts", 5)) {
211                         opt->better_cast_details = TRUE;
212                         p += 5;
213                 } else if (!strncmp (p, "mdb-optimizations", 17)) {
214                         opt->mdb_optimizations = TRUE;
215                         p += 17;
216                 } else {
217                         fprintf (stderr, "Invalid debug option `%s', use --help-debug for details\n", p);
218                         return FALSE;
219                 }
220
221                 if (*p == ',') {
222                         p++;
223                         if (!*p) {
224                                 fprintf (stderr, "Syntax error; expected debug option name\n");
225                                 return FALSE;
226                         }
227                 }
228         } while (*p);
229
230         return TRUE;
231 }
232
233 typedef struct {
234         const char name [6];
235         const char desc [18];
236         MonoGraphOptions value;
237 } GraphName;
238
239 static const GraphName 
240 graph_names [] = {
241         {"cfg",      "Control Flow",                            MONO_GRAPH_CFG},
242         {"dtree",    "Dominator Tree",                          MONO_GRAPH_DTREE},
243         {"code",     "CFG showing code",                        MONO_GRAPH_CFG_CODE},
244         {"ssa",      "CFG after SSA",                           MONO_GRAPH_CFG_SSA},
245         {"optc",     "CFG after IR opts",                       MONO_GRAPH_CFG_OPTCODE}
246 };
247
248 static MonoGraphOptions
249 mono_parse_graph_options (const char* p)
250 {
251         const char *n;
252         int i, len;
253
254         for (i = 0; i < G_N_ELEMENTS (graph_names); ++i) {
255                 n = graph_names [i].name;
256                 len = strlen (n);
257                 if (strncmp (p, n, len) == 0)
258                         return graph_names [i].value;
259         }
260
261         fprintf (stderr, "Invalid graph name provided: %s\n", p);
262         exit (1);
263 }
264
265 int
266 mono_parse_default_optimizations (const char* p)
267 {
268         guint32 opt;
269
270         opt = parse_optimizations (p);
271         return opt;
272 }
273
274 static char*
275 opt_descr (guint32 flags) {
276         GString *str = g_string_new ("");
277         int i, need_comma;
278
279         need_comma = 0;
280         for (i = 0; i < G_N_ELEMENTS (opt_names); ++i) {
281                 if (flags & (1 << i)) {
282                         if (need_comma)
283                                 g_string_append_c (str, ',');
284                         g_string_append (str, optflag_get_name (i));
285                         need_comma = 1;
286                 }
287         }
288         return g_string_free (str, FALSE);
289 }
290
291 static const guint32
292 opt_sets [] = {
293        0,
294        MONO_OPT_PEEPHOLE,
295        MONO_OPT_BRANCH,
296        MONO_OPT_CFOLD,
297        MONO_OPT_FCMOV,
298        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_INTRINS,
299        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_LINEARS,
300        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_LINEARS | MONO_OPT_COPYPROP,
301        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_LINEARS | MONO_OPT_CFOLD,
302        MONO_OPT_BRANCH | MONO_OPT_PEEPHOLE | MONO_OPT_LINEARS | MONO_OPT_COPYPROP | MONO_OPT_CONSPROP | MONO_OPT_DEADCE,
303        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,
304        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,
305        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,
306        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,
307        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,
308        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,
309        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,
310        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_TREEPROP,
311        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,
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 | MONO_OPT_ABCREM | MONO_OPT_SHARED
313 };
314
315 typedef int (*TestMethod) (void);
316
317 #if 0
318 static void
319 domain_dump_native_code (MonoDomain *domain) {
320         // need to poke into the domain, move to metadata/domain.c
321         // need to empty jit_info_table and code_mp
322 }
323 #endif
324
325 static int
326 mini_regression (MonoImage *image, int verbose, int *total_run) {
327         guint32 i, opt, opt_flags;
328         MonoMethod *method;
329         MonoCompile *cfg;
330         char *n;
331         int result, expected, failed, cfailed, run, code_size, total;
332         TestMethod func;
333         GTimer *timer = g_timer_new ();
334
335         if (mini_stats_fd) {
336                 fprintf (mini_stats_fd, "$stattitle = \'Mono Benchmark Results (various optimizations)\';\n");
337
338                 fprintf (mini_stats_fd, "$graph->set_legend(qw(");
339                 for (opt = 0; opt < G_N_ELEMENTS (opt_sets); opt++) {
340                         opt_flags = opt_sets [opt];
341                         n = opt_descr (opt_flags);
342                         if (!n [0])
343                                 n = (char *)"none";
344                         if (opt)
345                                 fprintf (mini_stats_fd, " ");
346                         fprintf (mini_stats_fd, "%s", n);
347                 
348
349                 }
350                 fprintf (mini_stats_fd, "));\n");
351
352                 fprintf (mini_stats_fd, "@data = (\n");
353                 fprintf (mini_stats_fd, "[");
354         }
355
356         /* load the metadata */
357         for (i = 0; i < mono_image_get_table_rows (image, MONO_TABLE_METHOD); ++i) {
358                 method = mono_get_method (image, MONO_TOKEN_METHOD_DEF | (i + 1), NULL);
359                 mono_class_init (method->klass);
360
361                 if (!strncmp (method->name, "test_", 5) && mini_stats_fd) {
362                         fprintf (mini_stats_fd, "\"%s\",", method->name);
363                 }
364         }
365         if (mini_stats_fd)
366                 fprintf (mini_stats_fd, "],\n");
367
368
369         total = 0;
370         *total_run = 0;
371         for (opt = 0; opt < G_N_ELEMENTS (opt_sets); ++opt) {
372                 double elapsed, comp_time, start_time;
373
374                 opt_flags = opt_sets [opt];
375                 mono_set_defaults (verbose, opt_flags);
376                 n = opt_descr (opt_flags);
377                 g_print ("Test run: image=%s, opts=%s\n", mono_image_get_filename (image), n);
378                 g_free (n);
379                 cfailed = failed = run = code_size = 0;
380                 comp_time = elapsed = 0.0;
381
382                 /* fixme: ugly hack - delete all previously compiled methods */
383                 g_hash_table_destroy (mono_domain_get ()->jit_trampoline_hash);
384                 mono_domain_get ()->jit_trampoline_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
385                 mono_internal_hash_table_destroy (&(mono_domain_get ()->jit_code_hash));
386                 mono_jit_code_hash_init (&(mono_domain_get ()->jit_code_hash));
387
388                 g_timer_start (timer);
389                 if (mini_stats_fd)
390                         fprintf (mini_stats_fd, "[");
391                 for (i = 0; i < mono_image_get_table_rows (image, MONO_TABLE_METHOD); ++i) {
392                         method = mono_get_method (image, MONO_TOKEN_METHOD_DEF | (i + 1), NULL);
393                         if (strncmp (method->name, "test_", 5) == 0) {
394                                 expected = atoi (method->name + 5);
395                                 run++;
396                                 start_time = g_timer_elapsed (timer, NULL);
397                                 comp_time -= start_time; 
398                                 cfg = mini_method_compile (method, opt_flags, mono_get_root_domain (), TRUE, FALSE, 0);
399                                 comp_time += g_timer_elapsed (timer, NULL);
400                                 if (cfg->exception_type == MONO_EXCEPTION_NONE) {
401                                         if (verbose >= 2)
402                                                 g_print ("Running '%s' ...\n", method->name);
403 #ifdef MONO_USE_AOT_COMPILER
404                                         if ((func = mono_aot_get_method (mono_get_root_domain (), method)))
405                                                 ;
406                                         else
407 #endif
408                                                 func = (TestMethod)(gpointer)cfg->native_code;
409                                         func = (TestMethod)mono_create_ftnptr (mono_get_root_domain (), func);
410                                         result = func ();
411                                         if (result != expected) {
412                                                 failed++;
413                                                 g_print ("Test '%s' failed result (got %d, expected %d).\n", method->name, result, expected);
414                                         }
415                                         code_size += cfg->code_len;
416                                         mono_destroy_compile (cfg);
417
418                                 } else {
419                                         cfailed++;
420                                         if (verbose)
421                                                 g_print ("Test '%s' failed compilation.\n", method->name);
422                                 }
423                                 if (mini_stats_fd)
424                                         fprintf (mini_stats_fd, "%f, ", 
425                                                  g_timer_elapsed (timer, NULL) - start_time);
426                         }
427                 }
428                 if (mini_stats_fd)
429                         fprintf (mini_stats_fd, "],\n");
430                 g_timer_stop (timer);
431                 elapsed = g_timer_elapsed (timer, NULL);
432                 if (failed > 0 || cfailed > 0){
433                         g_print ("Results: total tests: %d, failed: %d, cfailed: %d (pass: %.2f%%)\n", 
434                                  run, failed, cfailed, 100.0*(run-failed-cfailed)/run);
435                 } else {
436                         g_print ("Results: total tests: %d, all pass \n",  run);
437                 }
438                 
439                 g_print ("Elapsed time: %f secs (%f, %f), Code size: %d\n\n", elapsed, 
440                          elapsed - comp_time, comp_time, code_size);
441                 total += failed + cfailed;
442                 *total_run += run;
443         }
444
445         if (mini_stats_fd) {
446                 fprintf (mini_stats_fd, ");\n");
447                 fflush (mini_stats_fd);
448         }
449
450         g_timer_destroy (timer);
451         return total;
452 }
453
454 static int
455 mini_regression_list (int verbose, int count, char *images [])
456 {
457         int i, total, total_run, run;
458         MonoAssembly *ass;
459         
460         total_run =  total = 0;
461         for (i = 0; i < count; ++i) {
462                 ass = mono_assembly_open (images [i], NULL);
463                 if (!ass) {
464                         g_warning ("failed to load assembly: %s", images [i]);
465                         continue;
466                 }
467                 total += mini_regression (mono_assembly_get_image (ass), verbose, &run);
468                 total_run += run;
469         }
470         if (total > 0){
471                 g_print ("Overall results: tests: %d, failed: %d, opt combinations: %d (pass: %.2f%%)\n", 
472                          total_run, total, (int)G_N_ELEMENTS (opt_sets), 100.0*(total_run-total)/total_run);
473         } else {
474                 g_print ("Overall results: tests: %d, 100%% pass, opt combinations: %d\n", 
475                          total_run, (int)G_N_ELEMENTS (opt_sets));
476         }
477         
478         return total;
479 }
480
481 #ifdef MONO_JIT_INFO_TABLE_TEST
482 typedef struct _JitInfoData
483 {
484         guint start;
485         guint length;
486         MonoJitInfo *ji;
487         struct _JitInfoData *next;
488 } JitInfoData;
489
490 typedef struct
491 {
492         guint start;
493         guint length;
494         int num_datas;
495         JitInfoData *data;
496 } Region;
497
498 typedef struct
499 {
500         int num_datas;
501         int num_regions;
502         Region *regions;
503         int num_frees;
504         JitInfoData *frees;
505 } ThreadData;
506
507 static int num_threads;
508 static ThreadData *thread_datas;
509 static MonoDomain *test_domain;
510
511 static JitInfoData*
512 alloc_random_data (Region *region)
513 {
514         JitInfoData **data;
515         JitInfoData *prev;
516         guint prev_end;
517         guint next_start;
518         guint max_len;
519         JitInfoData *d;
520         int num_retries = 0;
521         int pos, i;
522
523  restart:
524         prev = NULL;
525         data = &region->data;
526         pos = random () % (region->num_datas + 1);
527         i = 0;
528         while (*data != NULL) {
529                 if (i++ == pos)
530                         break;
531                 prev = *data;
532                 data = &(*data)->next;
533         }
534
535         if (prev == NULL)
536                 g_assert (*data == region->data);
537         else
538                 g_assert (prev->next == *data);
539
540         if (prev == NULL)
541                 prev_end = region->start;
542         else
543                 prev_end = prev->start + prev->length;
544
545         if (*data == NULL)
546                 next_start = region->start + region->length;
547         else
548                 next_start = (*data)->start;
549
550         g_assert (prev_end <= next_start);
551
552         max_len = next_start - prev_end;
553         if (max_len < 128) {
554                 if (++num_retries >= 10)
555                         return NULL;
556                 goto restart;
557         }
558         if (max_len > 1024)
559                 max_len = 1024;
560
561         d = g_new0 (JitInfoData, 1);
562         d->start = prev_end + random () % (max_len / 2);
563         d->length = random () % MIN (max_len, next_start - d->start) + 1;
564
565         g_assert (d->start >= prev_end && d->start + d->length <= next_start);
566
567         d->ji = g_new0 (MonoJitInfo, 1);
568         d->ji->method = (MonoMethod*) 0xABadBabe;
569         d->ji->code_start = (gpointer)(gulong) d->start;
570         d->ji->code_size = d->length;
571         d->ji->cas_inited = 1;  /* marks an allocated jit info */
572
573         d->next = *data;
574         *data = d;
575
576         ++region->num_datas;
577
578         return d;
579 }
580
581 static JitInfoData**
582 choose_random_data (Region *region)
583 {
584         int n;
585         int i;
586         JitInfoData **d;
587
588         g_assert (region->num_datas > 0);
589
590         n = random () % region->num_datas;
591
592         for (d = &region->data, i = 0;
593              i < n;
594              d = &(*d)->next, ++i)
595                 ;
596
597         return d;
598 }
599
600 static Region*
601 choose_random_region (ThreadData *td)
602 {
603         return &td->regions [random () % td->num_regions];
604 }
605
606 static ThreadData*
607 choose_random_thread (void)
608 {
609         return &thread_datas [random () % num_threads];
610 }
611
612 static void
613 free_jit_info_data (ThreadData *td, JitInfoData *free)
614 {
615         free->next = td->frees;
616         td->frees = free;
617
618         if (++td->num_frees >= 1000) {
619                 int i;
620
621                 for (i = 0; i < 500; ++i)
622                         free = free->next;
623
624                 while (free->next != NULL) {
625                         JitInfoData *next = free->next->next;
626
627                         //g_free (free->next->ji);
628                         g_free (free->next);
629                         free->next = next;
630
631                         --td->num_frees;
632                 }
633         }
634 }
635
636 #define NUM_THREADS             8
637 #define REGIONS_PER_THREAD      10
638 #define REGION_SIZE             0x10000
639
640 #define MAX_ADDR                (REGION_SIZE * REGIONS_PER_THREAD * NUM_THREADS)
641
642 #define MODE_ALLOC      1
643 #define MODE_FREE       2
644
645 static void
646 test_thread_func (ThreadData *td)
647 {
648         int mode = MODE_ALLOC;
649         int i = 0;
650         gulong lookup_successes = 0, lookup_failures = 0;
651         MonoDomain *domain = test_domain;
652         int thread_num = (int)(td - thread_datas);
653         gboolean modify_thread = thread_num < NUM_THREADS / 2; /* only half of the threads modify the table */
654
655         for (;;) {
656                 int alloc;
657                 int lookup = 1;
658
659                 if (td->num_datas == 0) {
660                         lookup = 0;
661                         alloc = 1;
662                 } else if (modify_thread && random () % 1000 < 5) {
663                         lookup = 0;
664                         if (mode == MODE_ALLOC)
665                                 alloc = (random () % 100) < 70;
666                         else if (mode == MODE_FREE)
667                                 alloc = (random () % 100) < 30;
668                 }
669
670                 if (lookup) {
671                         /* modify threads sometimes look up their own jit infos */
672                         if (modify_thread && random () % 10 < 5) {
673                                 Region *region = choose_random_region (td);
674
675                                 if (region->num_datas > 0) {
676                                         JitInfoData **data = choose_random_data (region);
677                                         guint pos = (*data)->start + random () % (*data)->length;
678                                         MonoJitInfo *ji;
679
680                                         ji = mono_jit_info_table_find (domain, (char*)(gulong) pos);
681
682                                         g_assert (ji->cas_inited);
683                                         g_assert ((*data)->ji == ji);
684                                 }
685                         } else {
686                                 int pos = random () % MAX_ADDR;
687                                 char *addr = (char*)(gulong) pos;
688                                 MonoJitInfo *ji;
689
690                                 ji = mono_jit_info_table_find (domain, addr);
691
692                                 /*
693                                  * FIXME: We are actually not allowed
694                                  * to do this.  By the time we examine
695                                  * the ji another thread might already
696                                  * have removed it.
697                                  */
698                                 if (ji != NULL) {
699                                         g_assert (addr >= (char*)ji->code_start && addr < (char*)ji->code_start + ji->code_size);
700                                         ++lookup_successes;
701                                 } else
702                                         ++lookup_failures;
703                         }
704                 } else if (alloc) {
705                         JitInfoData *data = alloc_random_data (choose_random_region (td));
706
707                         if (data != NULL) {
708                                 mono_jit_info_table_add (domain, data->ji);
709
710                                 ++td->num_datas;
711                         }
712                 } else {
713                         Region *region = choose_random_region (td);
714
715                         if (region->num_datas > 0) {
716                                 JitInfoData **data = choose_random_data (region);
717                                 JitInfoData *free;
718
719                                 mono_jit_info_table_remove (domain, (*data)->ji);
720
721                                 //(*data)->ji->cas_inited = 0; /* marks a free jit info */
722
723                                 free = *data;
724                                 *data = (*data)->next;
725
726                                 free_jit_info_data (td, free);
727
728                                 --region->num_datas;
729                                 --td->num_datas;
730                         }
731                 }
732
733                 if (++i % 100000 == 0) {
734                         int j;
735                         g_print ("num datas %d (%ld - %ld): %d", (int)(td - thread_datas),
736                                  lookup_successes, lookup_failures, td->num_datas);
737                         for (j = 0; j < td->num_regions; ++j)
738                                 g_print ("  %d", td->regions [j].num_datas);
739                         g_print ("\n");
740                 }
741
742                 if (td->num_datas < 100)
743                         mode = MODE_ALLOC;
744                 else if (td->num_datas > 2000)
745                         mode = MODE_FREE;
746         }
747 }
748
749 /*
750 static void
751 small_id_thread_func (gpointer arg)
752 {
753         MonoThread *thread = mono_thread_current ();
754         MonoThreadHazardPointers *hp = mono_hazard_pointer_get ();
755
756         g_print ("my small id is %d\n", (int)thread->small_id);
757         mono_hazard_pointer_clear (hp, 1);
758         sleep (3);
759         g_print ("done %d\n", (int)thread->small_id);
760 }
761 */
762
763 static void
764 jit_info_table_test (MonoDomain *domain)
765 {
766         int i;
767
768         g_print ("testing jit_info_table\n");
769
770         num_threads = NUM_THREADS;
771         thread_datas = g_new0 (ThreadData, num_threads);
772
773         for (i = 0; i < num_threads; ++i) {
774                 int j;
775
776                 thread_datas [i].num_regions = REGIONS_PER_THREAD;
777                 thread_datas [i].regions = g_new0 (Region, REGIONS_PER_THREAD);
778
779                 for (j = 0; j < REGIONS_PER_THREAD; ++j) {
780                         thread_datas [i].regions [j].start = (num_threads * j + i) * REGION_SIZE;
781                         thread_datas [i].regions [j].length = REGION_SIZE;
782                 }
783         }
784
785         test_domain = domain;
786
787         /*
788         for (i = 0; i < 72; ++i)
789                 mono_thread_create (domain, small_id_thread_func, NULL);
790
791         sleep (2);
792         */
793
794         for (i = 0; i < num_threads; ++i)
795                 mono_thread_create (domain, test_thread_func, &thread_datas [i]);
796 }
797 #endif
798
799 enum {
800         DO_BENCH,
801         DO_REGRESSION,
802         DO_COMPILE,
803         DO_EXEC,
804         DO_DRAW,
805         DO_DEBUGGER
806 };
807
808 typedef struct CompileAllThreadArgs {
809         MonoAssembly *ass;
810         int verbose;
811         guint32 opts;
812 } CompileAllThreadArgs;
813
814 static void
815 compile_all_methods_thread_main (CompileAllThreadArgs *args)
816 {
817         MonoAssembly *ass = args->ass;
818         int verbose = args->verbose;
819         MonoImage *image = mono_assembly_get_image (ass);
820         MonoMethod *method;
821         MonoCompile *cfg;
822         int i, count = 0, fail_count = 0;
823
824         for (i = 0; i < mono_image_get_table_rows (image, MONO_TABLE_METHOD); ++i) {
825                 guint32 token = MONO_TOKEN_METHOD_DEF | (i + 1);
826                 MonoMethodSignature *sig;
827
828                 if (mono_metadata_has_generic_params (image, token))
829                         continue;
830
831                 method = mono_get_method (image, token, NULL);
832                 if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
833                     (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
834                     (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
835                     (method->flags & METHOD_ATTRIBUTE_ABSTRACT))
836                         continue;
837
838                 if (method->klass->generic_container)
839                         continue;
840                 sig = mono_method_signature (method);
841                 if (sig->has_type_parameters)
842                         continue;
843
844                 count++;
845                 if (verbose) {
846                         char * desc = mono_method_full_name (method, TRUE);
847                         g_print ("Compiling %d %s\n", count, desc);
848                         g_free (desc);
849                 }
850                 cfg = mini_method_compile (method, args->opts, mono_get_root_domain (), FALSE, FALSE, 0);
851                 if (cfg->exception_type != MONO_EXCEPTION_NONE) {
852                         printf ("Compilation of %s failed with exception '%s':\n", mono_method_full_name (cfg->method, TRUE), cfg->exception_message);
853                         fail_count ++;
854                 }
855                 mono_destroy_compile (cfg);
856         }
857
858         if (fail_count)
859                 exit (1);
860 }
861
862 static void
863 compile_all_methods (MonoAssembly *ass, int verbose, guint32 opts)
864 {
865         CompileAllThreadArgs args;
866
867         args.ass = ass;
868         args.verbose = verbose;
869         args.opts = opts;
870
871         /* 
872          * Need to create a mono thread since compilation might trigger
873          * running of managed code.
874          */
875         mono_thread_create (mono_domain_get (), compile_all_methods_thread_main, &args);
876
877         mono_thread_manage ();
878 }
879
880 /**
881  * mono_jit_exec:
882  * @assembly: reference to an assembly
883  * @argc: argument count
884  * @argv: argument vector
885  *
886  * Start execution of a program.
887  */
888 int 
889 mono_jit_exec (MonoDomain *domain, MonoAssembly *assembly, int argc, char *argv[])
890 {
891         MonoImage *image = mono_assembly_get_image (assembly);
892         MonoMethod *method;
893         guint32 entry = mono_image_get_entry_point (image);
894
895         if (!entry) {
896                 g_print ("Assembly '%s' doesn't have an entry point.\n", mono_image_get_filename (image));
897                 /* FIXME: remove this silly requirement. */
898                 mono_environment_exitcode_set (1);
899                 return 1;
900         }
901
902         method = mono_get_method (image, entry, NULL);
903         if (method == NULL){
904                 g_print ("The entry point method could not be loaded\n");
905                 mono_environment_exitcode_set (1);
906                 return 1;
907         }
908         
909         return mono_runtime_run_main (method, argc, argv, NULL);
910 }
911
912 typedef struct 
913 {
914         MonoDomain *domain;
915         const char *file;
916         int argc;
917         char **argv;
918         guint32 opts;
919         char *aot_options;
920 } MainThreadArgs;
921
922 static void main_thread_handler (gpointer user_data)
923 {
924         MainThreadArgs *main_args = user_data;
925         MonoAssembly *assembly;
926
927         assembly = mono_domain_assembly_open (main_args->domain, main_args->file);
928         if (!assembly){
929                 fprintf (stderr, "Can not open image %s\n", main_args->file);
930                 exit (1);
931         }
932
933         if (mono_compile_aot) {
934                 int res = mono_compile_assembly (assembly, main_args->opts, main_args->aot_options);
935                 printf ("AOT RESULT %d\n", res);
936         } else {
937                 /* 
938                  * This must be done in a thread managed by mono since it can invoke
939                  * managed code.
940                  */
941                 if (main_args->opts & MONO_OPT_PRECOMP)
942                         mono_precompile_assemblies ();
943
944                 mono_jit_exec (main_args->domain, assembly, main_args->argc, main_args->argv);
945         }
946 }
947
948 static void
949 mini_usage_jitdeveloper (void)
950 {
951         int i;
952         
953         fprintf (stdout,
954                  "Runtime and JIT debugging options:\n"
955                  "    --breakonex            Inserts a breakpoint on exceptions\n"
956                  "    --break METHOD         Inserts a breakpoint at METHOD entry\n"
957                  "    --break-at-bb METHOD N Inserts a breakpoint in METHOD at BB N\n"
958                  "    --compile METHOD       Just compile METHOD in assembly\n"
959                  "    --compile-all          Compiles all the methods in the assembly\n"
960                  "    --ncompile N           Number of times to compile METHOD (default: 1)\n"
961                  "    --print-vtable         Print the vtable of all used classes\n"
962                  "    --regression           Runs the regression test contained in the assembly\n"
963                  "    --statfile FILE        Sets the stat file to FILE\n"
964                  "    --stats                Print statistics about the JIT operations\n"
965                  "    --wapi=hps|semdel|seminfo IO-layer maintenance\n"
966                  "    --inject-async-exc METHOD OFFSET Inject an asynchronous exception at METHOD\n"
967                  "    --verify-all           Run the verifier on all methods\n"
968                  "    --full-aot             Avoid JITting any code\n"
969                  "\n"
970                  "Other options:\n" 
971                  "    --graph[=TYPE] METHOD  Draws a graph of the specified method:\n");
972         
973         for (i = 0; i < G_N_ELEMENTS (graph_names); ++i) {
974                 fprintf (stdout, "                           %-10s %s\n", graph_names [i].name, graph_names [i].desc);
975         }
976 }
977
978 static void
979 mini_usage_list_opt (void)
980 {
981         int i;
982         
983         for (i = 0; i < G_N_ELEMENTS (opt_names); ++i)
984                 fprintf (stdout, "                           %-10s %s\n", optflag_get_name (i), optflag_get_desc (i));
985 }
986
987 static void
988 mini_usage (void)
989 {
990         fprintf (stdout,
991                 "Usage is: mono [options] program [program-options]\n"
992                 "\n"
993                 "Development:\n"
994                 "    --aot                  Compiles the assembly to native code\n"
995                 "    --debug[=<options>]    Enable debugging support, use --help-debug for details\n"
996                 "    --profile[=profiler]   Runs in profiling mode with the specified profiler module\n"
997                 "    --trace[=EXPR]         Enable tracing, use --help-trace for details\n"
998                 "    --help-devel           Shows more options available to developers\n"
999                 "\n"
1000                 "Runtime:\n"
1001                 "    --config FILE          Loads FILE as the Mono config\n"
1002                 "    --verbose, -v          Increases the verbosity level\n"
1003                 "    --help, -h             Show usage information\n"
1004                 "    --version, -V          Show version information\n"
1005                 "    --runtime=VERSION      Use the VERSION runtime, instead of autodetecting\n"
1006                 "    --optimize=OPT         Turns on or off a specific optimization\n"
1007                 "                           Use --list-opt to get a list of optimizations\n"
1008                 "    --security[=mode]      Turns on the unsupported security manager (off by default)\n"
1009                 "                           mode is one of cas, core-clr, verifiable or validil\n");
1010 }
1011
1012 static void
1013 mini_trace_usage (void)
1014 {
1015         fprintf (stdout,
1016                  "Tracing options:\n"
1017                  "   --trace[=EXPR]        Trace every call, optional EXPR controls the scope\n"
1018                  "\n"
1019                  "EXPR is composed of:\n"
1020                  "    all                  All assemblies\n"
1021                  "    none                 No assemblies\n"
1022                  "    program              Entry point assembly\n"
1023                  "    assembly             Specifies an assembly\n"
1024                  "    M:Type:Method        Specifies a method\n"
1025                  "    N:Namespace          Specifies a namespace\n"
1026                  "    T:Type               Specifies a type\n"
1027                  "    +EXPR                Includes expression\n"
1028                  "    -EXPR                Excludes expression\n"
1029                  "    disabled             Don't print any output until toggled via SIGUSR2\n");
1030 }
1031
1032 static void
1033 mini_debug_usage (void)
1034 {
1035         fprintf (stdout,
1036                  "Debugging options:\n"
1037                  "   --debug[=OPTIONS]     Enable debugging support, optional OPTIONS is a comma\n"
1038                  "                         separated list of options\n"
1039                  "\n"
1040                  "OPTIONS is composed of:\n"
1041                  "    casts                Enable more detailed InvalidCastException messages.\n"
1042                  "    mdb-optimizations    Disable some JIT optimizations which are normally\n"
1043                  "                         disabled when running inside the debugger.\n"
1044                  "                         This is useful if you plan to attach to the running\n"
1045                  "                         process with the debugger.\n");
1046 }
1047
1048 #if defined(__arm__) && defined(__ARM_EABI__)
1049 /* Redefine ARCHITECTURE to include more information */
1050 #undef ARCHITECTURE
1051 #if G_BYTE_ORDER == G_LITTLE_ENDIAN
1052 #define ARCHITECTURE "armel"
1053 #else
1054 #define ARCHITECTURE "armeb"
1055 #endif
1056 #endif
1057
1058 static const char info[] =
1059 #ifdef HAVE_KW_THREAD
1060         "\tTLS:           __thread\n"
1061 #else
1062         "\tTLS:           normal\n"
1063 #endif /* HAVE_KW_THREAD */
1064         "\tGC:            " USED_GC_NAME "\n"
1065 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
1066     "\tSIGSEGV:       altstack\n"
1067 #else
1068     "\tSIGSEGV:       normal\n"
1069 #endif
1070 #ifdef HAVE_EPOLL
1071     "\tNotifications: epoll\n"
1072 #else
1073     "\tNotification:  Thread + polling\n"
1074 #endif
1075         "\tArchitecture:  " ARCHITECTURE "\n"
1076         "\tDisabled:      " DISABLED_FEATURES "\n"
1077         "";
1078
1079 #ifndef MONO_ARCH_AOT_SUPPORTED
1080 #define error_if_aot_unsupported() do {fprintf (stderr, "AOT compilation is not supported on this platform.\n"); exit (1);} while (0)
1081 #else
1082 #define error_if_aot_unsupported()
1083 #endif
1084
1085 #ifdef PLATFORM_WIN32
1086 BOOL APIENTRY DllMain (HMODULE module_handle, DWORD reason, LPVOID reserved)
1087 {
1088         if (!GC_DllMain (module_handle, reason, reserved))
1089                 return FALSE;
1090
1091         switch (reason)
1092         {
1093         case DLL_PROCESS_ATTACH:
1094                 mono_install_runtime_load (mini_init);
1095                 break;
1096         case DLL_PROCESS_DETACH:
1097                 if (coree_module_handle)
1098                         FreeLibrary (coree_module_handle);
1099                 break;
1100         }
1101         return TRUE;
1102 }
1103 #endif
1104
1105 int
1106 mono_main (int argc, char* argv[])
1107 {
1108         MainThreadArgs main_args;
1109         MonoAssembly *assembly;
1110         MonoMethodDesc *desc;
1111         MonoMethod *method;
1112         MonoCompile *cfg;
1113         MonoDomain *domain;
1114         MonoImageOpenStatus open_status;
1115         const char* aname, *mname = NULL;
1116         char *config_file = NULL;
1117         int i, count = 1;
1118         int enable_debugging = FALSE;
1119         guint32 opt, action = DO_EXEC;
1120         MonoGraphOptions mono_graph_options = 0;
1121         int mini_verbose = 0;
1122         gboolean enable_profile = FALSE;
1123         char *trace_options = NULL;
1124         char *profile_options = NULL;
1125         char *aot_options = NULL;
1126         char *forced_version = NULL;
1127 #ifdef MONO_JIT_INFO_TABLE_TEST
1128         int test_jit_info_table = FALSE;
1129 #endif
1130
1131         setlocale (LC_ALL, "");
1132
1133 #if HAVE_SCHED_SETAFFINITY
1134         if (getenv ("MONO_NO_SMP")) {
1135                 unsigned long proc_mask = 1;
1136                 sched_setaffinity (getpid(), sizeof (unsigned long), (gpointer)&proc_mask);
1137         }
1138 #endif
1139         if (!g_thread_supported ())
1140                 g_thread_init (NULL);
1141
1142         if (mono_running_on_valgrind () && getenv ("MONO_VALGRIND_LEAK_CHECK")) {
1143                 GMemVTable mem_vtable;
1144
1145                 /* 
1146                  * Instruct glib to use the system allocation functions so valgrind
1147                  * can track the memory allocated by the g_... functions.
1148                  */
1149                 memset (&mem_vtable, 0, sizeof (mem_vtable));
1150                 mem_vtable.malloc = malloc;
1151                 mem_vtable.realloc = realloc;
1152                 mem_vtable.free = free;
1153                 mem_vtable.calloc = calloc;
1154
1155                 g_mem_set_vtable (&mem_vtable);
1156         }
1157
1158         g_log_set_always_fatal (G_LOG_LEVEL_ERROR);
1159         g_log_set_fatal_mask (G_LOG_DOMAIN, G_LOG_LEVEL_ERROR);
1160
1161         opt = parse_optimizations (NULL);
1162
1163         for (i = 1; i < argc; ++i) {
1164                 if (argv [i] [0] != '-')
1165                         break;
1166                 if (strcmp (argv [i], "--regression") == 0) {
1167                         action = DO_REGRESSION;
1168                 } else if (strcmp (argv [i], "--verbose") == 0 || strcmp (argv [i], "-v") == 0) {
1169                         mini_verbose++;
1170                 } else if (strcmp (argv [i], "--version") == 0 || strcmp (argv [i], "-V") == 0) {
1171                         g_print ("Mono JIT compiler version %s (%s)\nCopyright (C) 2002-2008 Novell, Inc and Contributors. www.mono-project.com\n", VERSION, FULL_VERSION);
1172                         g_print (info);
1173                         if (mini_verbose) {
1174                                 const char *cerror;
1175                                 const char *clibpath;
1176                                 mono_init ("mono");
1177                                 cerror = mono_check_corlib_version ();
1178                                 clibpath = mono_defaults.corlib? mono_image_get_filename (mono_defaults.corlib): "unknown";
1179                                 if (cerror) {
1180                                         g_print ("The currently installed mscorlib doesn't match this runtime version.\n");
1181                                         g_print ("The error is: %s\n", cerror);
1182                                         g_print ("mscorlib.dll loaded at: %s\n", clibpath);
1183                                         return 1;
1184                                 }
1185                         }
1186                         return 0;
1187                 } else if (strcmp (argv [i], "--help") == 0 || strcmp (argv [i], "-h") == 0) {
1188                         mini_usage ();
1189                         return 0;
1190                 } else if (strcmp (argv [i], "--help-trace") == 0){
1191                         mini_trace_usage ();
1192                         return 0;
1193                 } else if (strcmp (argv [i], "--help-devel") == 0){
1194                         mini_usage_jitdeveloper ();
1195                         return 0;
1196                 } else if (strcmp (argv [i], "--help-debug") == 0){
1197                         mini_debug_usage ();
1198                         return 0;
1199                 } else if (strcmp (argv [i], "--list-opt") == 0){
1200                         mini_usage_list_opt ();
1201                         return 0;
1202                 } else if (strncmp (argv [i], "--statfile", 10) == 0) {
1203                         if (i + 1 >= argc){
1204                                 fprintf (stderr, "error: --statfile requires a filename argument\n");
1205                                 return 1;
1206                         }
1207                         mini_stats_fd = fopen (argv [++i], "w+");
1208                 } else if (strncmp (argv [i], "--optimize=", 11) == 0) {
1209                         opt = parse_optimizations (argv [i] + 11);
1210                 } else if (strncmp (argv [i], "-O=", 3) == 0) {
1211                         opt = parse_optimizations (argv [i] + 3);
1212                 } else if (strcmp (argv [i], "--config") == 0) {
1213                         if (i +1 >= argc){
1214                                 fprintf (stderr, "error: --config requires a filename argument\n");
1215                                 return 1;
1216                         }
1217                         config_file = argv [++i];
1218                 } else if (strcmp (argv [i], "--ncompile") == 0) {
1219                         if (i + 1 >= argc){
1220                                 fprintf (stderr, "error: --ncompile requires an argument\n");
1221                                 return 1;
1222                         }
1223                         count = atoi (argv [++i]);
1224                         action = DO_BENCH;
1225                 } else if (strcmp (argv [i], "--trace") == 0) {
1226                         trace_options = (char*)"";
1227                 } else if (strncmp (argv [i], "--trace=", 8) == 0) {
1228                         trace_options = &argv [i][8];
1229                 } else if (strcmp (argv [i], "--breakonex") == 0) {
1230                         mono_break_on_exc = TRUE;
1231                 } else if (strcmp (argv [i], "--break") == 0) {
1232                         if (i+1 >= argc){
1233                                 fprintf (stderr, "Missing method name in --break command line option\n");
1234                                 return 1;
1235                         }
1236                         
1237                         if (!mono_debugger_insert_breakpoint (argv [++i], FALSE))
1238                                 fprintf (stderr, "Error: invalid method name '%s'\n", argv [i]);
1239                 } else if (strcmp (argv [i], "--break-at-bb") == 0) {
1240                         if (i + 2 >= argc) {
1241                                 fprintf (stderr, "Missing method name or bb num in --break-at-bb command line option.");
1242                                 return 1;
1243                         }
1244                         mono_break_at_bb_method = mono_method_desc_new (argv [++i], TRUE);
1245                         if (mono_break_at_bb_method == NULL) {
1246                                 fprintf (stderr, "Method name is in a bad format in --break-at-bb command line option.");
1247                                 return 1;
1248                         }
1249                         mono_break_at_bb_bb_num = atoi (argv [++i]);
1250                 } else if (strcmp (argv [i], "--inject-async-exc") == 0) {
1251                         if (i + 2 >= argc) {
1252                                 fprintf (stderr, "Missing method name or position in --inject-async-exc command line option\n");
1253                                 return 1;
1254                         }
1255                         mono_inject_async_exc_method = mono_method_desc_new (argv [++i], TRUE);
1256                         if (mono_inject_async_exc_method == NULL) {
1257                                 fprintf (stderr, "Method name is in a bad format in --inject-async-exc command line option\n");
1258                                 return 1;
1259                         }
1260                         mono_inject_async_exc_pos = atoi (argv [++i]);
1261                 } else if (strcmp (argv [i], "--verify-all") == 0) {
1262                         mono_verifier_enable_verify_all ();
1263                 } else if (strcmp (argv [i], "--full-aot") == 0) {
1264                         mono_aot_only = TRUE;
1265                 } else if (strcmp (argv [i], "--print-vtable") == 0) {
1266                         mono_print_vtable = TRUE;
1267                 } else if (strcmp (argv [i], "--stats") == 0) {
1268                         mono_counters_enable (-1);
1269                         mono_stats.enabled = TRUE;
1270                         mono_jit_stats.enabled = TRUE;
1271 #ifndef DISABLE_AOT
1272                 } else if (strcmp (argv [i], "--aot") == 0) {
1273                         error_if_aot_unsupported ();
1274                         mono_compile_aot = TRUE;
1275                 } else if (strncmp (argv [i], "--aot=", 6) == 0) {
1276                         error_if_aot_unsupported ();
1277                         mono_compile_aot = TRUE;
1278                         aot_options = &argv [i][6];
1279 #endif
1280                 } else if (strcmp (argv [i], "--compile-all") == 0) {
1281                         action = DO_COMPILE;
1282                 } else if (strncmp (argv [i], "--runtime=", 10) == 0) {
1283                         forced_version = &argv [i][10];
1284                 } else if (strcmp (argv [i], "--profile") == 0) {
1285                         enable_profile = TRUE;
1286                         profile_options = NULL;
1287                 } else if (strncmp (argv [i], "--profile=", 10) == 0) {
1288                         enable_profile = TRUE;
1289                         profile_options = argv [i] + 10;
1290                 } else if (strcmp (argv [i], "--compile") == 0) {
1291                         if (i + 1 >= argc){
1292                                 fprintf (stderr, "error: --compile option requires a method name argument\n");
1293                                 return 1;
1294                         }
1295                         
1296                         mname = argv [++i];
1297                         action = DO_BENCH;
1298                 } else if (strncmp (argv [i], "--graph=", 8) == 0) {
1299                         if (i + 1 >= argc){
1300                                 fprintf (stderr, "error: --graph option requires a method name argument\n");
1301                                 return 1;
1302                         }
1303                         
1304                         mono_graph_options = mono_parse_graph_options (argv [i] + 8);
1305                         mname = argv [++i];
1306                         action = DO_DRAW;
1307                 } else if (strcmp (argv [i], "--graph") == 0) {
1308                         if (i + 1 >= argc){
1309                                 fprintf (stderr, "error: --graph option requires a method name argument\n");
1310                                 return 1;
1311                         }
1312                         
1313                         mname = argv [++i];
1314                         mono_graph_options = MONO_GRAPH_CFG;
1315                         action = DO_DRAW;
1316                 } else if (strcmp (argv [i], "--debug") == 0) {
1317                         enable_debugging = TRUE;
1318                 } else if (strncmp (argv [i], "--debug=", 8) == 0) {
1319                         enable_debugging = TRUE;
1320                         if (!parse_debug_options (argv [i] + 8))
1321                                 return 1;
1322                 } else if (strcmp (argv [i], "--security") == 0) {
1323                         /* fixme enable verifiable code when the verifier works with 2.0
1324                         * mini_verifier_set_mode (MINI_VERIFIER_MODE_VERIFIABLE);
1325                         */
1326                         mono_security_set_mode (MONO_SECURITY_MODE_CAS);
1327                         mono_activate_security_manager ();
1328                 } else if (strncmp (argv [i], "--security=", 11) == 0) {
1329                         if (strcmp (argv [i] + 11, "temporary-smcs-hack") == 0) {
1330                                 mono_security_set_mode (MONO_SECURITY_MODE_SMCS_HACK);
1331                         } else if (strcmp (argv [i] + 11, "core-clr") == 0) {
1332                                 /* fixme enable verifiable code when the verifier works with 2.0
1333                                  * mini_verifier_set_mode (MINI_VERIFIER_MODE_VERIFIABLE);
1334                                  */
1335                                 mono_security_set_mode (MONO_SECURITY_MODE_CORE_CLR);
1336                         } else if (strcmp (argv [i] + 11, "core-clr-test") == 0) {
1337                                 /* fixme should we enable verifiable code here?*/
1338                                 mono_security_set_mode (MONO_SECURITY_MODE_CORE_CLR);
1339                                 mono_security_core_clr_test = TRUE;
1340                         } else if (strcmp (argv [i] + 11, "cas") == 0){
1341                                 /* fixme enable verifiable code when the verifier works with 2.0
1342                                  * mini_verifier_set_mode (MINI_VERIFIER_MODE_VERIFIABLE);
1343                                  */
1344                                 mono_security_set_mode (MONO_SECURITY_MODE_CAS);
1345                                 mono_activate_security_manager ();
1346                         } else  if (strcmp (argv [i] + 11, "validil") == 0) {
1347                                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VALID);
1348                         } else  if (strcmp (argv [i] + 11, "verifiable") == 0) {
1349                                 mono_verifier_set_mode (MONO_VERIFIER_MODE_VERIFIABLE);
1350                         } else  {
1351                                 fprintf (stderr, "error: --security= option has invalid argument (cas, core-clr, verifiable or validil)\n");
1352                                 return 1;
1353                         }
1354                 } else if (strcmp (argv [i], "--desktop") == 0) {
1355 #if defined (HAVE_BOEHM_GC)
1356                         GC_dont_expand = 1;
1357 #endif
1358                         /* Put desktop-specific optimizations here */
1359                 } else if (strcmp (argv [i], "--server") == 0){
1360                         /* Put server-specific optimizations here */
1361                 } else if (strcmp (argv [i], "--inside-mdb") == 0) {
1362                         action = DO_DEBUGGER;
1363                 } else if (strncmp (argv [i], "--wapi=", 7) == 0) {
1364                         if (strcmp (argv [i] + 7, "hps") == 0) {
1365                                 return mini_wapi_hps (argc - i, argv + i);
1366                         } else if (strcmp (argv [i] + 7, "semdel") == 0) {
1367                                 return mini_wapi_semdel (argc - i, argv + i);
1368                         } else if (strcmp (argv [i] + 7, "seminfo") == 0) {
1369                                 return mini_wapi_seminfo (argc - i, argv + i);
1370                         } else {
1371                                 fprintf (stderr, "Invalid --wapi suboption: '%s'\n", argv [i]);
1372                                 return 1;
1373                         }
1374 #ifdef MONO_JIT_INFO_TABLE_TEST
1375                 } else if (strcmp (argv [i], "--test-jit-info-table") == 0) {
1376                         test_jit_info_table = TRUE;
1377 #endif
1378                 } else {
1379                         fprintf (stderr, "Unknown command line option: '%s'\n", argv [i]);
1380                         return 1;
1381                 }
1382         }
1383
1384         if (!argv [i]) {
1385                 mini_usage ();
1386                 return 1;
1387         }
1388
1389         if ((action == DO_EXEC) && mono_debug_using_mono_debugger ())
1390                 action = DO_DEBUGGER;
1391
1392         if (mono_compile_aot || action == DO_EXEC || action == DO_DEBUGGER) {
1393                 g_set_prgname (argv[i]);
1394         }
1395
1396         if (enable_profile) {
1397                 /* Needed because of TLS accesses in mono_profiler_load () */
1398                 mono_gc_base_init ();
1399                 mono_profiler_load (profile_options);
1400         }
1401
1402         if (trace_options != NULL){
1403                 /* 
1404                  * Need to call this before mini_init () so we can trace methods 
1405                  * compiled there too.
1406                  */
1407                 mono_jit_trace_calls = mono_trace_parse_options (trace_options);
1408                 if (mono_jit_trace_calls == NULL)
1409                         exit (1);
1410         }
1411
1412         if (action == DO_DEBUGGER) {
1413                 enable_debugging = TRUE;
1414
1415 #ifdef MONO_DEBUGGER_SUPPORTED
1416                 mono_debug_init (MONO_DEBUG_FORMAT_DEBUGGER);
1417                 mono_debugger_init ();
1418 #else
1419                 g_print ("The Mono Debugger is not supported on this platform.\n");
1420                 return 1;
1421 #endif
1422         } else if (enable_debugging)
1423                 mono_debug_init (MONO_DEBUG_FORMAT_MONO);
1424
1425         mono_set_defaults (mini_verbose, opt);
1426         mono_setup_vtable_in_class_init = FALSE;
1427         domain = mini_init (argv [i], forced_version);
1428         
1429         switch (action) {
1430         case DO_REGRESSION:
1431                 if (mini_regression_list (mini_verbose, argc -i, argv + i)) {
1432                         g_print ("Regression ERRORS!\n");
1433                         mini_cleanup (domain);
1434                         return 1;
1435                 }
1436                 mini_cleanup (domain);
1437                 return 0;
1438         case DO_BENCH:
1439                 if (argc - i != 1 || mname == NULL) {
1440                         g_print ("Usage: mini --ncompile num --compile method assembly\n");
1441                         mini_cleanup (domain);
1442                         return 1;
1443                 }
1444                 aname = argv [i];
1445                 break;
1446         case DO_COMPILE:
1447                 if (argc - i != 1) {
1448                         mini_usage ();
1449                         mini_cleanup (domain);
1450                         return 1;
1451                 }
1452                 aname = argv [i];
1453                 break;
1454         case DO_DRAW:
1455                 if (argc - i != 1 || mname == NULL) {
1456                         mini_usage ();
1457                         mini_cleanup (domain);
1458                         return 1;
1459                 }
1460                 aname = argv [i];
1461                 break;
1462         default:
1463                 if (argc - i < 1) {
1464                         mini_usage ();
1465                         mini_cleanup (domain);
1466                         return 1;
1467                 }
1468                 aname = argv [i];
1469                 break;
1470         }
1471
1472         /* Parse gac loading options before loading assemblies. */
1473         if (mono_compile_aot || action == DO_EXEC || action == DO_DEBUGGER) {
1474                 mono_config_parse (config_file);
1475         }
1476
1477 #ifdef MONO_JIT_INFO_TABLE_TEST
1478         if (test_jit_info_table)
1479                 jit_info_table_test (domain);
1480 #endif
1481
1482         assembly = mono_assembly_open (aname, &open_status);
1483         if (!assembly) {
1484                 fprintf (stderr, "Cannot open assembly '%s': %s.\n", aname, mono_image_strerror (open_status));
1485                 mini_cleanup (domain);
1486                 return 2;
1487         }
1488
1489         if (trace_options != NULL)
1490                 mono_trace_set_assembly (assembly);
1491
1492         if (mono_compile_aot || action == DO_EXEC) {
1493                 const char *error;
1494
1495                 //mono_set_rootdir ();
1496
1497                 error = mono_check_corlib_version ();
1498                 if (error) {
1499                         fprintf (stderr, "Corlib not in sync with this runtime: %s\n", error);
1500                         fprintf (stderr, "Loaded from: %s\n",
1501                                 mono_defaults.corlib? mono_image_get_filename (mono_defaults.corlib): "unknown");
1502                         fprintf (stderr, "Download a newer corlib or a newer runtime at http://www.go-mono.com/daily.\n");
1503                         exit (1);
1504                 }
1505
1506 #ifdef PLATFORM_WIN32
1507                 /* Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32 */
1508                 if (!enable_debugging && !mono_compile_aot && ((MonoCLIImageInfo*)(mono_assembly_get_image (assembly)->image_info))->cli_header.nt.pe_subsys_required == IMAGE_SUBSYSTEM_WINDOWS_GUI)
1509                         FreeConsole ();
1510 #endif
1511
1512                 main_args.domain = domain;
1513                 main_args.file = aname;         
1514                 main_args.argc = argc - i;
1515                 main_args.argv = argv + i;
1516                 main_args.opts = opt;
1517                 main_args.aot_options = aot_options;
1518 #if RUN_IN_SUBTHREAD
1519                 mono_runtime_exec_managed_code (domain, main_thread_handler, &main_args);
1520 #else
1521                 main_thread_handler (&main_args);
1522                 mono_thread_manage ();
1523 #endif
1524                 mini_cleanup (domain);
1525
1526                 /* Look up return value from System.Environment.ExitCode */
1527                 i = mono_environment_exitcode_get ();
1528                 return i;
1529         } else if (action == DO_COMPILE) {
1530                 compile_all_methods (assembly, mini_verbose, opt);
1531                 mini_cleanup (domain);
1532                 return 0;
1533         } else if (action == DO_DEBUGGER) {
1534 #ifdef MONO_DEBUGGER_SUPPORTED
1535                 const char *error;
1536
1537                 error = mono_check_corlib_version ();
1538                 if (error) {
1539                         fprintf (stderr, "Corlib not in sync with this runtime: %s\n", error);
1540                         fprintf (stderr, "Download a newer corlib or a newer runtime at http://www.go-mono.com/daily.\n");
1541                         exit (1);
1542                 }
1543
1544                 mono_debugger_main (domain, assembly, argc - i, argv + i);
1545                 mini_cleanup (domain);
1546                 return 0;
1547 #else
1548                 return 1;
1549 #endif
1550         }
1551         desc = mono_method_desc_new (mname, 0);
1552         if (!desc) {
1553                 g_print ("Invalid method name %s\n", mname);
1554                 mini_cleanup (domain);
1555                 return 3;
1556         }
1557         method = mono_method_desc_search_in_image (desc, mono_assembly_get_image (assembly));
1558         if (!method) {
1559                 g_print ("Cannot find method %s\n", mname);
1560                 mini_cleanup (domain);
1561                 return 3;
1562         }
1563
1564         if (action == DO_DRAW) {
1565                 int part = 0;
1566
1567                 switch (mono_graph_options) {
1568                 case MONO_GRAPH_DTREE:
1569                         part = 1;
1570                         opt |= MONO_OPT_LOOP;
1571                         break;
1572                 case MONO_GRAPH_CFG_CODE:
1573                         part = 1;
1574                         break;
1575                 case MONO_GRAPH_CFG_SSA:
1576                         part = 2;
1577                         break;
1578                 case MONO_GRAPH_CFG_OPTCODE:
1579                         part = 3;
1580                         break;
1581                 default:
1582                         break;
1583                 }
1584
1585                 if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
1586                         (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)) {
1587                         MonoMethod *nm;
1588                         nm = mono_marshal_get_native_wrapper (method, TRUE, FALSE);
1589                         cfg = mini_method_compile (nm, opt, mono_get_root_domain (), FALSE, FALSE, part);
1590                 }
1591                 else
1592                         cfg = mini_method_compile (method, opt, mono_get_root_domain (), FALSE, FALSE, part);
1593                 if ((mono_graph_options & MONO_GRAPH_CFG_SSA) && !(cfg->comp_done & MONO_COMP_SSA)) {
1594                         g_warning ("no SSA info available (use -O=deadce)");
1595                         return 1;
1596                 }
1597                 mono_draw_graph (cfg, mono_graph_options);
1598                 mono_destroy_compile (cfg);
1599
1600         } else if (action == DO_BENCH) {
1601                 if (mini_stats_fd) {
1602                         const char *n;
1603                         double no_opt_time = 0.0;
1604                         GTimer *timer = g_timer_new ();
1605                         fprintf (mini_stats_fd, "$stattitle = \'Compilations times for %s\';\n", 
1606                                  mono_method_full_name (method, TRUE));
1607                         fprintf (mini_stats_fd, "@data = (\n");
1608                         fprintf (mini_stats_fd, "[");
1609                         for (i = 0; i < G_N_ELEMENTS (opt_sets); i++) {
1610                                 opt = opt_sets [i];
1611                                 n = opt_descr (opt);
1612                                 if (!n [0])
1613                                         n = "none";
1614                                 fprintf (mini_stats_fd, "\"%s\",", n);
1615                         }
1616                         fprintf (mini_stats_fd, "],\n[");
1617
1618                         for (i = 0; i < G_N_ELEMENTS (opt_sets); i++) {
1619                                 int j;
1620                                 double elapsed;
1621                                 opt = opt_sets [i];
1622                                 g_timer_start (timer);
1623                                 for (j = 0; j < count; ++j) {
1624                                         cfg = mini_method_compile (method, opt, mono_get_root_domain (), FALSE, FALSE, 0);
1625                                         mono_destroy_compile (cfg);
1626                                 }
1627                                 g_timer_stop (timer);
1628                                 elapsed = g_timer_elapsed (timer, NULL);
1629                                 if (!opt)
1630                                         no_opt_time = elapsed;
1631                                 fprintf (mini_stats_fd, "%f, ", elapsed);
1632                         }
1633                         fprintf (mini_stats_fd, "]");
1634                         if (no_opt_time > 0.0) {
1635                                 fprintf (mini_stats_fd, ", \n[");
1636                                 for (i = 0; i < G_N_ELEMENTS (opt_sets); i++) 
1637                                         fprintf (mini_stats_fd, "%f,", no_opt_time);
1638                                 fprintf (mini_stats_fd, "]");
1639                         }
1640                         fprintf (mini_stats_fd, ");\n");
1641                 } else {
1642                         for (i = 0; i < count; ++i) {
1643                                 if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
1644                                         (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL))
1645                                         method = mono_marshal_get_native_wrapper (method, TRUE, FALSE);
1646
1647                                 cfg = mini_method_compile (method, opt, mono_get_root_domain (), FALSE, FALSE, 0);
1648                                 mono_destroy_compile (cfg);
1649                         }
1650                 }
1651         } else {
1652                 cfg = mini_method_compile (method, opt, mono_get_root_domain (), FALSE, FALSE, 0);
1653                 mono_destroy_compile (cfg);
1654         }
1655
1656         mini_cleanup (domain);
1657         return 0;
1658 }
1659
1660 MonoDomain * 
1661 mono_jit_init (const char *file)
1662 {
1663         return mini_init (file, NULL);
1664 }
1665
1666 /**
1667  * mono_jit_init_version:
1668  * @domain_name: the name of the root domain
1669  * @runtime_version: the version of the runtime to load
1670  *
1671  * Use this version when you want to force a particular runtime
1672  * version to be used.  By default Mono will pick the runtime that is
1673  * referenced by the initial assembly (specified in @file), this
1674  * routine allows programmers to specify the actual runtime to be used
1675  * as the initial runtime is inherited by all future assemblies loaded
1676  * (since Mono does not support having more than one mscorlib runtime
1677  * loaded at once).
1678  *
1679  * The @runtime_version can be one of these strings: "v1.1.4322" for
1680  * the 1.1 runtime or "v2.0.50727"  for the 2.0 runtime. 
1681  *
1682  * Returns: the MonoDomain representing the domain where the assembly
1683  * was loaded.
1684  */
1685 MonoDomain * 
1686 mono_jit_init_version (const char *domain_name, const char *runtime_version)
1687 {
1688         return mini_init (domain_name, runtime_version);
1689 }
1690
1691 void        
1692 mono_jit_cleanup (MonoDomain *domain)
1693 {
1694         mini_cleanup (domain);
1695 }
1696
1697 /**
1698  * mono_jit_set_trace_options:
1699  * @options: string representing the trace options
1700  *
1701  * Set the options of the tracing engine. This function can be called before initializing
1702  * the mono runtime. See the --trace mono(1) manpage for the options format.
1703  *
1704  * Returns: #TRUE if the options where parsed and set correctly, #FALSE otherwise.
1705  */
1706 gboolean
1707 mono_jit_set_trace_options (const char* options)
1708 {
1709         MonoTraceSpec *trace_opt = mono_trace_parse_options (options);
1710         if (trace_opt == NULL)
1711                 return FALSE;
1712         mono_jit_trace_calls = trace_opt;
1713         return TRUE;
1714 }
1715