12f5901920d83d1d33961bd4c2065cb33ec5f7e7
[mono.git] / mono / mini / mini-runtime.c
1 /*
2  * mini-runtime.c: Runtime code for the JIT
3  *
4  * Authors:
5  *   Paolo Molaro (lupus@ximian.com)
6  *   Dietmar Maurer (dietmar@ximian.com)
7  *
8  * Copyright 2002-2003 Ximian, Inc.
9  * Copyright 2003-2010 Novell, Inc.
10  * Copyright 2011-2015 Xamarin, Inc (http://www.xamarin.com)
11  */
12
13 #include <config.h>
14 #ifdef HAVE_ALLOCA_H
15 #include <alloca.h>
16 #endif
17 #ifdef HAVE_UNISTD_H
18 #include <unistd.h>
19 #endif
20 #include <math.h>
21 #ifdef HAVE_SYS_TIME_H
22 #include <sys/time.h>
23 #endif
24 #ifdef HAVE_SIGNAL_H
25 #include <signal.h>
26 #endif
27
28 #include <mono/utils/memcheck.h>
29
30 #include <mono/metadata/assembly.h>
31 #include <mono/metadata/loader.h>
32 #include <mono/metadata/tabledefs.h>
33 #include <mono/metadata/class.h>
34 #include <mono/metadata/object.h>
35 #include <mono/metadata/tokentype.h>
36 #include <mono/metadata/tabledefs.h>
37 #include <mono/metadata/threads.h>
38 #include <mono/metadata/appdomain.h>
39 #include <mono/metadata/debug-helpers.h>
40 #include "mono/metadata/profiler.h"
41 #include <mono/metadata/profiler-private.h>
42 #include <mono/metadata/mono-config.h>
43 #include <mono/metadata/environment.h>
44 #include <mono/metadata/mono-debug.h>
45 #include <mono/metadata/gc-internal.h>
46 #include <mono/metadata/threads-types.h>
47 #include <mono/metadata/mempool-internals.h>
48 #include <mono/metadata/attach.h>
49 #include <mono/metadata/runtime.h>
50 #include <mono/utils/mono-math.h>
51 #include <mono/utils/mono-compiler.h>
52 #include <mono/utils/mono-counters.h>
53 #include <mono/utils/mono-error-internals.h>
54 #include <mono/utils/mono-logger-internal.h>
55 #include <mono/utils/mono-mmap.h>
56 #include <mono/utils/mono-path.h>
57 #include <mono/utils/mono-tls.h>
58 #include <mono/utils/mono-hwcap.h>
59 #include <mono/utils/dtrace.h>
60 #include <mono/utils/mono-signal-handler.h>
61 #include <mono/utils/mono-threads.h>
62 #include <mono/io-layer/io-layer.h>
63
64 #include "mini.h"
65 #include "seq-points.h"
66 #include "tasklets.h"
67 #include <string.h>
68 #include <ctype.h>
69 #include "trace.h"
70 #include "version.h"
71
72 #include "jit-icalls.h"
73
74 #include "mini-gc.h"
75 #include "debugger-agent.h"
76
77 static guint32 default_opt = 0;
78 static gboolean default_opt_set = FALSE;
79
80 MonoNativeTlsKey mono_jit_tls_id;
81
82 #ifdef MONO_HAVE_FAST_TLS
83 MONO_FAST_TLS_DECLARE(mono_jit_tls);
84 #endif
85
86 gboolean mono_compile_aot = FALSE;
87 /* If this is set, no code is generated dynamically, everything is taken from AOT files */
88 gboolean mono_aot_only = FALSE;
89 MonoAotMode mono_aot_mode = MONO_AOT_MODE_NONE;
90
91 const char *mono_build_date;
92 gboolean mono_do_signal_chaining;
93 gboolean mono_do_crash_chaining;
94 int mini_verbose = 0;
95
96 /*
97  * This flag controls whenever the runtime uses LLVM for JIT compilation, and whenever
98  * it can load AOT code compiled by LLVM.
99  */
100 gboolean mono_use_llvm = FALSE;
101
102 #define mono_jit_lock() mono_mutex_lock (&jit_mutex)
103 #define mono_jit_unlock() mono_mutex_unlock (&jit_mutex)
104 static mono_mutex_t jit_mutex;
105
106 static MonoCodeManager *global_codeman;
107
108 MonoDebugOptions debug_options;
109
110 #ifdef VALGRIND_JIT_REGISTER_MAP
111 int valgrind_register;
112 #endif
113
114 static GSList *tramp_infos;
115
116 static void register_icalls (void);
117
118 gboolean
119 mono_running_on_valgrind (void)
120 {
121         if (RUNNING_ON_VALGRIND){
122 #ifdef VALGRIND_JIT_REGISTER_MAP
123                 valgrind_register = TRUE;
124 #endif
125                 return TRUE;
126         } else
127                 return FALSE;
128 }
129
130 typedef struct {
131         void *ip;
132         MonoMethod *method;
133 } FindTrampUserData;
134
135 static void
136 find_tramp (gpointer key, gpointer value, gpointer user_data)
137 {
138         FindTrampUserData *ud = (FindTrampUserData*)user_data;
139
140         if (value == ud->ip)
141                 ud->method = (MonoMethod*)key;
142 }
143
144 /* debug function */
145 G_GNUC_UNUSED static char*
146 get_method_from_ip (void *ip)
147 {
148         MonoJitInfo *ji;
149         char *method;
150         char *res;
151         MonoDomain *domain = mono_domain_get ();
152         MonoDebugSourceLocation *location;
153         FindTrampUserData user_data;
154
155         if (!domain)
156                 domain = mono_get_root_domain ();
157
158         ji = mono_jit_info_table_find (domain, ip);
159         if (!ji) {
160                 user_data.ip = ip;
161                 user_data.method = NULL;
162                 mono_domain_lock (domain);
163                 g_hash_table_foreach (domain_jit_info (domain)->jit_trampoline_hash, find_tramp, &user_data);
164                 mono_domain_unlock (domain);
165                 if (user_data.method) {
166                         char *mname = mono_method_full_name (user_data.method, TRUE);
167                         res = g_strdup_printf ("<%p - JIT trampoline for %s>", ip, mname);
168                         g_free (mname);
169                         return res;
170                 }
171                 else
172                         return NULL;
173         }
174         method = mono_method_full_name (jinfo_get_method (ji), TRUE);
175         /* FIXME: unused ? */
176         location = mono_debug_lookup_source_location (jinfo_get_method (ji), (guint32)((guint8*)ip - (guint8*)ji->code_start), domain);
177
178         res = g_strdup_printf (" %s + 0x%x (%p %p) [%p - %s]", method, (int)((char*)ip - (char*)ji->code_start), ji->code_start, (char*)ji->code_start + ji->code_size, domain, domain->friendly_name);
179
180         mono_debug_free_source_location (location);
181         g_free (method);
182
183         return res;
184 }
185
186 /**
187  * mono_pmip:
188  * @ip: an instruction pointer address
189  *
190  * This method is used from a debugger to get the name of the
191  * method at address @ip.   This routine is typically invoked from
192  * a debugger like this:
193  *
194  * (gdb) print mono_pmip ($pc)
195  *
196  * Returns: the name of the method at address @ip.
197  */
198 G_GNUC_UNUSED char *
199 mono_pmip (void *ip)
200 {
201         return get_method_from_ip (ip);
202 }
203
204 /**
205  * mono_print_method_from_ip
206  * @ip: an instruction pointer address
207  *
208  * This method is used from a debugger to get the name of the
209  * method at address @ip.
210  *
211  * This prints the name of the method at address @ip in the standard
212  * output.  Unlike mono_pmip which returns a string, this routine
213  * prints the value on the standard output.
214  */
215 #ifdef __GNUC__
216 /* Prevent the linker from optimizing this away in embedding setups to help debugging */
217  __attribute__((used))
218 #endif
219 void
220 mono_print_method_from_ip (void *ip)
221 {
222         MonoJitInfo *ji;
223         char *method;
224         MonoDebugSourceLocation *source;
225         MonoDomain *domain = mono_domain_get ();
226         MonoDomain *target_domain = mono_domain_get ();
227         FindTrampUserData user_data;
228         MonoGenericSharingContext*gsctx;
229         const char *shared_type;
230
231         ji = mini_jit_info_table_find_ext (domain, ip, TRUE, &target_domain);
232         if (ji && ji->is_trampoline) {
233                 MonoTrampInfo *tinfo = ji->d.tramp_info;
234
235                 printf ("IP %p is at offset 0x%x of trampoline '%s'.\n", ip, (int)((guint8*)ip - tinfo->code), tinfo->name);
236                 return;
237         }
238
239         if (!ji) {
240                 user_data.ip = ip;
241                 user_data.method = NULL;
242                 mono_domain_lock (domain);
243                 g_hash_table_foreach (domain_jit_info (domain)->jit_trampoline_hash, find_tramp, &user_data);
244                 mono_domain_unlock (domain);
245
246                 if (user_data.method) {
247                         char *mname = mono_method_full_name (user_data.method, TRUE);
248                         printf ("IP %p is a JIT trampoline for %s\n", ip, mname);
249                         g_free (mname);
250                         return;
251                 }
252
253                 g_print ("No method at %p\n", ip);
254                 fflush (stdout);
255                 return;
256         }
257         method = mono_method_full_name (jinfo_get_method (ji), TRUE);
258         source = mono_debug_lookup_source_location (jinfo_get_method (ji), (guint32)((guint8*)ip - (guint8*)ji->code_start), target_domain);
259
260         gsctx = mono_jit_info_get_generic_sharing_context (ji);
261         shared_type = "";
262         if (gsctx) {
263                 if (gsctx->is_gsharedvt)
264                         shared_type = "gsharedvt ";
265                 else
266                         shared_type = "gshared ";
267         }
268
269         g_print ("IP %p at offset 0x%x of %smethod %s (%p %p)[domain %p - %s]\n", ip, (int)((char*)ip - (char*)ji->code_start), shared_type, method, ji->code_start, (char*)ji->code_start + ji->code_size, target_domain, target_domain->friendly_name);
270
271         if (source)
272                 g_print ("%s:%d\n", source->source_file, source->row);
273         fflush (stdout);
274
275         mono_debug_free_source_location (source);
276         g_free (method);
277 }
278
279 /*
280  * mono_method_same_domain:
281  *
282  * Determine whenever two compiled methods are in the same domain, thus
283  * the address of the callee can be embedded in the caller.
284  */
285 gboolean mono_method_same_domain (MonoJitInfo *caller, MonoJitInfo *callee)
286 {
287         MonoMethod *cmethod;
288
289         if (!caller || !callee)
290                 return FALSE;
291
292         /*
293          * If the call was made from domain-neutral to domain-specific
294          * code, we can't patch the call site.
295          */
296         if (caller->domain_neutral && !callee->domain_neutral)
297                 return FALSE;
298
299         cmethod = jinfo_get_method (caller);
300         if ((cmethod->klass == mono_defaults.appdomain_class) &&
301                 (strstr (cmethod->name, "InvokeInDomain"))) {
302                  /* The InvokeInDomain methods change the current appdomain */
303                 return FALSE;
304         }
305
306         return TRUE;
307 }
308
309 /*
310  * mono_global_codeman_reserve:
311  *
312  *  Allocate code memory from the global code manager.
313  */
314 void *mono_global_codeman_reserve (int size)
315 {
316         void *ptr;
317
318         if (mono_aot_only)
319                 g_error ("Attempting to allocate from the global code manager while running with --aot-only.\n");
320
321         if (!global_codeman) {
322                 /* This can happen during startup */
323                 global_codeman = mono_code_manager_new ();
324                 return mono_code_manager_reserve (global_codeman, size);
325         }
326         else {
327                 mono_jit_lock ();
328                 ptr = mono_code_manager_reserve (global_codeman, size);
329                 mono_jit_unlock ();
330                 return ptr;
331         }
332 }
333
334 #if defined(__native_client_codegen__) && defined(__native_client__)
335 void
336 mono_nacl_gc()
337 {
338 #ifdef __native_client_gc__
339         __nacl_suspend_thread_if_needed();
340 #endif
341 }
342
343 /* Given the temporary buffer (allocated by mono_global_codeman_reserve) into
344  * which we are generating code, return a pointer to the destination in the
345  * dynamic code segment into which the code will be copied when
346  * mono_global_codeman_commit is called.
347  * LOCKING: Acquires the jit lock.
348  */
349 void*
350 nacl_global_codeman_get_dest (void *data)
351 {
352         void *dest;
353         mono_jit_lock ();
354         dest = nacl_code_manager_get_code_dest (global_codeman, data);
355         mono_jit_unlock ();
356         return dest;
357 }
358
359 void
360 mono_global_codeman_commit (void *data, int size, int newsize)
361 {
362         mono_jit_lock ();
363         mono_code_manager_commit (global_codeman, data, size, newsize);
364         mono_jit_unlock ();
365 }
366
367 /*
368  * Convenience function which calls mono_global_codeman_commit to validate and
369  * copy the code. The caller sets *buf_base and *buf_size to the start and size
370  * of the buffer (allocated by mono_global_codeman_reserve), and *code_end to
371  * the byte after the last instruction byte. On return, *buf_base will point to
372  * the start of the copied in the code segment, and *code_end will point after
373  * the end of the copied code.
374  */
375 void
376 nacl_global_codeman_validate (guint8 **buf_base, int buf_size, guint8 **code_end)
377 {
378         guint8 *tmp = nacl_global_codeman_get_dest (*buf_base);
379         mono_global_codeman_commit (*buf_base, buf_size, *code_end - *buf_base);
380         *code_end = tmp + (*code_end - *buf_base);
381         *buf_base = tmp;
382 }
383 #else
384 /* no-op versions of Native Client functions */
385 void*
386 nacl_global_codeman_get_dest (void *data)
387 {
388         return data;
389 }
390
391 void
392 mono_global_codeman_commit (void *data, int size, int newsize)
393 {
394 }
395
396 void
397 nacl_global_codeman_validate (guint8 **buf_base, int buf_size, guint8 **code_end)
398 {
399 }
400
401 #endif /* __native_client__ */
402
403 /**
404  * mono_create_unwind_op:
405  *
406  *   Create an unwind op with the given parameters.
407  */
408 MonoUnwindOp*
409 mono_create_unwind_op (int when, int tag, int reg, int val)
410 {
411         MonoUnwindOp *op = g_new0 (MonoUnwindOp, 1);
412
413         op->op = tag;
414         op->reg = reg;
415         op->val = val;
416         op->when = when;
417
418         return op;
419 }
420
421 MonoJumpInfoToken *
422 mono_jump_info_token_new2 (MonoMemPool *mp, MonoImage *image, guint32 token, MonoGenericContext *context)
423 {
424         MonoJumpInfoToken *res = mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoToken));
425         res->image = image;
426         res->token = token;
427         res->has_context = context != NULL;
428         if (context)
429                 memcpy (&res->context, context, sizeof (MonoGenericContext));
430
431         return res;
432 }
433
434 MonoJumpInfoToken *
435 mono_jump_info_token_new (MonoMemPool *mp, MonoImage *image, guint32 token)
436 {
437         return mono_jump_info_token_new2 (mp, image, token, NULL);
438 }
439
440 /*
441  * mono_tramp_info_create:
442  *
443  *   Create a MonoTrampInfo structure from the arguments. This function assumes ownership
444  * of JI, and UNWIND_OPS.
445  */
446 MonoTrampInfo*
447 mono_tramp_info_create (const char *name, guint8 *code, guint32 code_size, MonoJumpInfo *ji, GSList *unwind_ops)
448 {
449         MonoTrampInfo *info = g_new0 (MonoTrampInfo, 1);
450
451         info->name = g_strdup ((char*)name);
452         info->code = code;
453         info->code_size = code_size;
454         info->ji = ji;
455         info->unwind_ops = unwind_ops;
456
457         return info;
458 }
459
460 void
461 mono_tramp_info_free (MonoTrampInfo *info)
462 {
463         GSList *l;
464
465         g_free (info->name);
466
467         // FIXME: ji
468         for (l = info->unwind_ops; l; l = l->next)
469                 g_free (l->data);
470         g_slist_free (info->unwind_ops);
471         g_free (info);
472 }
473
474 static void
475 register_trampoline_jit_info (MonoDomain *domain, MonoTrampInfo *info)
476 {
477         MonoJitInfo *ji;
478
479         ji = mono_domain_alloc0 (domain, mono_jit_info_size (0, 0, 0));
480         mono_jit_info_init (ji, NULL, info->code, info->code_size, 0, 0, 0);
481         ji->d.tramp_info = info;
482         ji->is_trampoline = TRUE;
483         // FIXME: Unwind info
484
485         mono_jit_info_table_add (domain, ji);
486 }
487
488 /*
489  * mono_tramp_info_register:
490  *
491  * Remember INFO for use by xdebug, mono_print_method_from_ip (), jit maps, etc.
492  * INFO can be NULL.
493  * Frees INFO.
494  */
495 void
496 mono_tramp_info_register (MonoTrampInfo *info)
497 {
498         MonoTrampInfo *copy;
499
500         if (!info)
501                 return;
502
503         copy = g_new0 (MonoTrampInfo, 1);
504         copy->code = info->code;
505         copy->code_size = info->code_size;
506         copy->name = g_strdup (info->name);
507
508         mono_jit_lock ();
509         tramp_infos = g_slist_prepend (tramp_infos, copy);
510         mono_jit_unlock ();
511
512         mono_save_trampoline_xdebug_info (info);
513
514         if (mono_get_root_domain ())
515                 register_trampoline_jit_info (mono_get_root_domain (), copy);
516
517         if (mono_jit_map_is_enabled ())
518                 mono_emit_jit_tramp (info->code, info->code_size, info->name);
519
520         mono_tramp_info_free (info);
521 }
522
523 static void
524 mono_tramp_info_cleanup (void)
525 {
526         GSList *l;
527
528         for (l = tramp_infos; l; l = l->next) {
529                 MonoTrampInfo *info = l->data;
530
531                 mono_tramp_info_free (info);
532         }
533         g_slist_free (tramp_infos);
534 }
535
536 /* Register trampolines created before the root domain was created in the jit info tables */
537 static void
538 register_trampolines (MonoDomain *domain)
539 {
540         GSList *l;
541
542         for (l = tramp_infos; l; l = l->next) {
543                 MonoTrampInfo *info = l->data;
544
545                 register_trampoline_jit_info (domain, info);
546         }
547 }
548
549 G_GNUC_UNUSED static void
550 break_count (void)
551 {
552 }
553
554 /*
555  * Runtime debugging tool, use if (debug_count ()) <x> else <y> to do <x> the first COUNT times, then do <y> afterwards.
556  * Set a breakpoint in break_count () to break the last time <x> is done.
557  */
558 G_GNUC_UNUSED gboolean
559 mono_debug_count (void)
560 {
561         static int count = 0;
562         static gboolean inited;
563         static const char *value;
564
565         count ++;
566
567         if (!inited) {
568                 value = g_getenv ("COUNT");
569                 inited = TRUE;
570         }
571
572         if (!value)
573                 return TRUE;
574
575         if (count == atoi (value))
576                 break_count ();
577
578         if (count > atoi (value))
579                 return FALSE;
580
581         return TRUE;
582 }
583
584 gconstpointer
585 mono_icall_get_wrapper_full (MonoJitICallInfo* callinfo, gboolean do_compile)
586 {
587         char *name;
588         MonoMethod *wrapper;
589         gconstpointer trampoline;
590         MonoDomain *domain = mono_get_root_domain ();
591         gboolean check_exc = check_for_pending_exc;
592
593         if (callinfo->wrapper) {
594                 return callinfo->wrapper;
595         }
596
597         if (callinfo->trampoline)
598                 return callinfo->trampoline;
599
600         /*
601          * We use the lock on the root domain instead of the JIT lock to protect
602          * callinfo->trampoline, since we do a lot of stuff inside the critical section.
603          */
604         mono_loader_lock (); /*FIXME mono_compile_method requires the loader lock, by large.*/
605         mono_domain_lock (domain);
606
607         if (callinfo->trampoline) {
608                 mono_domain_unlock (domain);
609                 mono_loader_unlock ();
610                 return callinfo->trampoline;
611         }
612
613         if (!strcmp (callinfo->name, "mono_thread_interruption_checkpoint"))
614                 /* This icall is used to check for exceptions, so don't check in the wrapper */
615                 check_exc = FALSE;
616
617         name = g_strdup_printf ("__icall_wrapper_%s", callinfo->name);
618         wrapper = mono_marshal_get_icall_wrapper (callinfo->sig, name, callinfo->func, check_exc);
619         g_free (name);
620
621         if (do_compile)
622                 trampoline = mono_compile_method (wrapper);
623         else
624                 trampoline = mono_create_ftnptr (domain, mono_create_jit_trampoline_in_domain (domain, wrapper));
625         mono_register_jit_icall_wrapper (callinfo, trampoline);
626
627         callinfo->trampoline = trampoline;
628
629         mono_domain_unlock (domain);
630         mono_loader_unlock ();
631
632         return callinfo->trampoline;
633 }
634
635 gconstpointer
636 mono_icall_get_wrapper (MonoJitICallInfo* callinfo)
637 {
638         return mono_icall_get_wrapper_full (callinfo, FALSE);
639 }
640
641 static MonoJitDynamicMethodInfo*
642 mono_dynamic_code_hash_lookup (MonoDomain *domain, MonoMethod *method)
643 {
644         MonoJitDynamicMethodInfo *res;
645
646         if (domain_jit_info (domain)->dynamic_code_hash)
647                 res = g_hash_table_lookup (domain_jit_info (domain)->dynamic_code_hash, method);
648         else
649                 res = NULL;
650         return res;
651 }
652
653 static void
654 register_opcode_emulation (int opcode, const char *name, const char *sigstr, gpointer func, const char *symbol, gboolean no_throw)
655 {
656         return mini_register_opcode_emulation (opcode, name, sigstr, func, symbol, no_throw);
657 }
658
659 /*
660  * For JIT icalls implemented in C.
661  * NAME should be the same as the name of the C function whose address is FUNC.
662  * If @avoid_wrapper is TRUE, no wrapper is generated. This is for perf critical icalls which
663  * can't throw exceptions.
664  */
665 static void
666 register_icall (gpointer func, const char *name, const char *sigstr, gboolean avoid_wrapper)
667 {
668         MonoMethodSignature *sig;
669
670         if (sigstr)
671                 sig = mono_create_icall_signature (sigstr);
672         else
673                 sig = NULL;
674
675         mono_register_jit_icall_full (func, name, sig, avoid_wrapper, FALSE, avoid_wrapper ? name : NULL);
676 }
677
678 static void
679 register_dyn_icall (gpointer func, const char *name, const char *sigstr, gboolean save)
680 {
681         MonoMethodSignature *sig;
682
683         if (sigstr)
684                 sig = mono_create_icall_signature (sigstr);
685         else
686                 sig = NULL;
687
688         mono_register_jit_icall (func, name, sig, save);
689 }
690
691 #ifdef MONO_HAVE_FAST_TLS
692 MONO_FAST_TLS_DECLARE(mono_lmf_addr);
693 #ifdef MONO_ARCH_ENABLE_MONO_LMF_VAR
694 /*
695  * When this is defined, the current lmf is stored in this tls variable instead of in
696  * jit_tls->lmf.
697  */
698 MONO_FAST_TLS_DECLARE(mono_lmf);
699 #endif
700 #endif
701
702 gint32
703 mono_get_jit_tls_offset (void)
704 {
705         int offset;
706
707 #ifdef HOST_WIN32
708         if (mono_jit_tls_id)
709                 offset = mono_jit_tls_id;
710         else
711                 /* FIXME: Happens during startup */
712                 offset = -1;
713 #else
714         MONO_THREAD_VAR_OFFSET (mono_jit_tls, offset);
715 #endif
716         return offset;
717 }
718
719 gint32
720 mono_get_lmf_tls_offset (void)
721 {
722 #if defined(MONO_ARCH_ENABLE_MONO_LMF_VAR)
723         int offset;
724         MONO_THREAD_VAR_OFFSET(mono_lmf,offset);
725         return offset;
726 #else
727         return -1;
728 #endif
729 }
730
731 gint32
732 mono_get_lmf_addr_tls_offset (void)
733 {
734         int offset;
735         MONO_THREAD_VAR_OFFSET(mono_lmf_addr,offset);
736         return offset;
737 }
738
739 MonoLMF *
740 mono_get_lmf (void)
741 {
742 #if defined(MONO_HAVE_FAST_TLS) && defined(MONO_ARCH_ENABLE_MONO_LMF_VAR)
743         return MONO_FAST_TLS_GET (mono_lmf);
744 #else
745         MonoJitTlsData *jit_tls;
746
747         if ((jit_tls = mono_native_tls_get_value (mono_jit_tls_id)))
748                 return jit_tls->lmf;
749         /*
750          * We do not assert here because this function can be called from
751          * mini-gc.c on a thread that has not executed any managed code, yet
752          * (the thread object allocation can trigger a collection).
753          */
754         return NULL;
755 #endif
756 }
757
758 MonoLMF **
759 mono_get_lmf_addr (void)
760 {
761 #ifdef MONO_HAVE_FAST_TLS
762         return MONO_FAST_TLS_GET (mono_lmf_addr);
763 #else
764         MonoJitTlsData *jit_tls;
765
766         jit_tls = mono_native_tls_get_value (mono_jit_tls_id);
767         if (G_LIKELY (jit_tls))
768                 return &jit_tls->lmf;
769
770         /*
771          * When resolving the call to mono_jit_thread_attach full-aot will look
772          * in the plt, which causes a call into the generic trampoline, which in turn
773          * tries to resolve the lmf_addr creating a cyclic dependency.  We cannot
774          * call mono_jit_thread_attach from the native-to-managed wrapper, without
775          * mono_get_lmf_addr, and mono_get_lmf_addr requires the thread to be attached.
776          */
777
778         mono_jit_thread_attach (NULL);
779
780         if ((jit_tls = mono_native_tls_get_value (mono_jit_tls_id)))
781                 return &jit_tls->lmf;
782
783         g_assert_not_reached ();
784         return NULL;
785 #endif
786 }
787
788 void
789 mono_set_lmf (MonoLMF *lmf)
790 {
791 #if defined(MONO_HAVE_FAST_TLS) && defined(MONO_ARCH_ENABLE_MONO_LMF_VAR)
792         MONO_FAST_TLS_SET (mono_lmf, lmf);
793 #endif
794
795         (*mono_get_lmf_addr ()) = lmf;
796 }
797
798 MonoJitTlsData*
799 mono_get_jit_tls (void)
800 {
801         return mono_native_tls_get_value (mono_jit_tls_id);
802 }
803
804 static void
805 mono_set_jit_tls (MonoJitTlsData *jit_tls)
806 {
807         MonoThreadInfo *info;
808
809         mono_native_tls_set_value (mono_jit_tls_id, jit_tls);
810
811 #ifdef MONO_HAVE_FAST_TLS
812         MONO_FAST_TLS_SET (mono_jit_tls, jit_tls);
813 #endif
814
815         /* Save it into MonoThreadInfo so it can be accessed by mono_thread_state_init_from_handle () */
816         info = mono_thread_info_current ();
817         if (info)
818                 mono_thread_info_tls_set (info, TLS_KEY_JIT_TLS, jit_tls);
819 }
820
821 static void
822 mono_set_lmf_addr (gpointer lmf_addr)
823 {
824         MonoThreadInfo *info;
825
826 #ifdef MONO_HAVE_FAST_TLS
827         MONO_FAST_TLS_SET (mono_lmf_addr, lmf_addr);
828 #endif
829
830         /* Save it into MonoThreadInfo so it can be accessed by mono_thread_state_init_from_handle () */
831         info = mono_thread_info_current ();
832         if (info)
833                 mono_thread_info_tls_set (info, TLS_KEY_LMF_ADDR, lmf_addr);
834 }
835
836 /*
837  * mono_jit_thread_attach:
838  *
839  * Called by native->managed wrappers. Returns the original domain which needs to be
840  * restored, or NULL.
841  */
842 MonoDomain*
843 mono_jit_thread_attach (MonoDomain *domain)
844 {
845         MonoDomain *orig;
846
847         if (!domain)
848                 /*
849                  * Happens when called from AOTed code which is only used in the root
850                  * domain.
851                  */
852                 domain = mono_get_root_domain ();
853
854 #ifdef MONO_HAVE_FAST_TLS
855         if (!MONO_FAST_TLS_GET (mono_lmf_addr)) {
856                 mono_thread_attach (domain);
857                 // #678164
858                 mono_thread_set_state (mono_thread_internal_current (), ThreadState_Background);
859         }
860 #else
861         if (!mono_native_tls_get_value (mono_jit_tls_id)) {
862                 mono_thread_attach (domain);
863                 mono_thread_set_state (mono_thread_internal_current (), ThreadState_Background);
864         }
865 #endif
866         orig = mono_domain_get ();
867         if (orig != domain)
868                 mono_domain_set (domain, TRUE);
869
870         return orig != domain ? orig : NULL;
871 }
872
873 /* Called by native->managed wrappers */
874 void
875 mono_jit_set_domain (MonoDomain *domain)
876 {
877         if (domain)
878                 mono_domain_set (domain, TRUE);
879 }
880
881 /**
882  * mono_thread_abort:
883  * @obj: exception object
884  *
885  * abort the thread, print exception information and stack trace
886  */
887 static void
888 mono_thread_abort (MonoObject *obj)
889 {
890         /* MonoJitTlsData *jit_tls = mono_native_tls_get_value (mono_jit_tls_id); */
891
892         /* handle_remove should be eventually called for this thread, too
893         g_free (jit_tls);*/
894
895         if ((mono_runtime_unhandled_exception_policy_get () == MONO_UNHANDLED_POLICY_LEGACY) ||
896                         (obj->vtable->klass == mono_defaults.threadabortexception_class)) {
897                 mono_thread_exit ();
898         } else {
899                 mono_invoke_unhandled_exception_hook (obj);
900         }
901 }
902
903 static void*
904 setup_jit_tls_data (gpointer stack_start, gpointer abort_func)
905 {
906         MonoJitTlsData *jit_tls;
907         MonoLMF *lmf;
908
909         jit_tls = mono_native_tls_get_value (mono_jit_tls_id);
910         if (jit_tls)
911                 return jit_tls;
912
913         jit_tls = g_new0 (MonoJitTlsData, 1);
914
915         jit_tls->abort_func = abort_func;
916         jit_tls->end_of_stack = stack_start;
917
918         mono_set_jit_tls (jit_tls);
919
920         lmf = g_new0 (MonoLMF, 1);
921         MONO_ARCH_INIT_TOP_LMF_ENTRY (lmf);
922
923         jit_tls->first_lmf = lmf;
924
925 #if defined(MONO_HAVE_FAST_TLS) && defined(MONO_ARCH_ENABLE_MONO_LMF_VAR)
926         /* jit_tls->lmf is unused */
927         MONO_FAST_TLS_SET (mono_lmf, lmf);
928         mono_set_lmf_addr (MONO_FAST_TLS_ADDR (mono_lmf));
929 #else
930         mono_set_lmf_addr (&jit_tls->lmf);
931
932         jit_tls->lmf = lmf;
933 #endif
934
935 #ifdef MONO_ARCH_HAVE_TLS_INIT
936         mono_arch_tls_init ();
937 #endif
938
939         mono_setup_altstack (jit_tls);
940
941         return jit_tls;
942 }
943
944 static void
945 free_jit_tls_data (MonoJitTlsData *jit_tls)
946 {
947         mono_arch_free_jit_tls_data (jit_tls);
948         mono_free_altstack (jit_tls);
949
950         g_free (jit_tls->first_lmf);
951         g_free (jit_tls);
952 }
953
954 static void
955 mono_thread_start_cb (intptr_t tid, gpointer stack_start, gpointer func)
956 {
957         MonoThreadInfo *thread;
958         void *jit_tls = setup_jit_tls_data (stack_start, mono_thread_abort);
959         thread = mono_thread_info_current_unchecked ();
960         if (thread)
961                 thread->jit_data = jit_tls;
962
963         mono_arch_cpu_init ();
964 }
965
966 void (*mono_thread_attach_aborted_cb ) (MonoObject *obj) = NULL;
967
968 static void
969 mono_thread_abort_dummy (MonoObject *obj)
970 {
971   if (mono_thread_attach_aborted_cb)
972     mono_thread_attach_aborted_cb (obj);
973   else
974     mono_thread_abort (obj);
975 }
976
977 static void
978 mono_thread_attach_cb (intptr_t tid, gpointer stack_start)
979 {
980         MonoThreadInfo *thread;
981         void *jit_tls = setup_jit_tls_data (stack_start, mono_thread_abort_dummy);
982         thread = mono_thread_info_current_unchecked ();
983         if (thread)
984                 thread->jit_data = jit_tls;
985         if (mono_profiler_get_events () & MONO_PROFILE_STATISTICAL)
986                 mono_runtime_setup_stat_profiler ();
987
988         mono_arch_cpu_init ();
989 }
990
991 static void
992 mini_thread_cleanup (MonoNativeThreadId tid)
993 {
994         MonoJitTlsData *jit_tls = NULL;
995         MonoThreadInfo *info;
996
997         info = mono_thread_info_current_unchecked ();
998
999         /* We can't clean up tls information if we are on another thread, it will clean up the wrong stuff
1000          * It would be nice to issue a warning when this happens outside of the shutdown sequence. but it's
1001          * not a trivial thing.
1002          *
1003          * The current offender is mono_thread_manage which cleanup threads from the outside.
1004          */
1005         if (info && mono_thread_info_get_tid (info) == tid) {
1006                 jit_tls = info->jit_data;
1007                 info->jit_data = NULL;
1008
1009                 mono_set_jit_tls (NULL);
1010
1011                 /* If we attach a thread but never call into managed land, we might never get an lmf.*/
1012                 if (mono_get_lmf ()) {
1013                         mono_set_lmf (NULL);
1014                         mono_set_lmf_addr (NULL);
1015                 }
1016         } else {
1017                 info = mono_thread_info_lookup (tid);
1018                 if (info) {
1019                         jit_tls = info->jit_data;
1020                         info->jit_data = NULL;
1021                 }
1022                 mono_hazard_pointer_clear (mono_hazard_pointer_get (), 1);
1023         }
1024
1025         if (jit_tls)
1026                 free_jit_tls_data (jit_tls);
1027 }
1028
1029 int
1030 mini_get_tls_offset (MonoTlsKey key)
1031 {
1032         int offset;
1033
1034         switch (key) {
1035         case TLS_KEY_THREAD:
1036                 offset = mono_thread_get_tls_offset ();
1037                 break;
1038         case TLS_KEY_JIT_TLS:
1039                 offset = mono_get_jit_tls_offset ();
1040                 break;
1041         case TLS_KEY_DOMAIN:
1042                 offset = mono_domain_get_tls_offset ();
1043                 break;
1044         case TLS_KEY_LMF:
1045                 offset = mono_get_lmf_tls_offset ();
1046                 break;
1047         case TLS_KEY_LMF_ADDR:
1048                 offset = mono_get_lmf_addr_tls_offset ();
1049                 break;
1050         default:
1051                 offset = mono_tls_key_get_offset (key);
1052                 g_assert (offset != -1);
1053                 break;
1054         }
1055
1056         return offset;
1057 }
1058
1059 static gboolean
1060 mini_tls_key_supported (MonoTlsKey key)
1061 {
1062         if (!MONO_ARCH_HAVE_TLS_GET)
1063                 return FALSE;
1064
1065         return mini_get_tls_offset (key) != -1;
1066 }
1067
1068 MonoJumpInfo *
1069 mono_patch_info_list_prepend (MonoJumpInfo *list, int ip, MonoJumpInfoType type, gconstpointer target)
1070 {
1071         MonoJumpInfo *ji = g_new0 (MonoJumpInfo, 1);
1072
1073         ji->ip.i = ip;
1074         ji->type = type;
1075         ji->data.target = target;
1076         ji->next = list;
1077
1078         return ji;
1079 }
1080
1081 /**
1082  * mono_patch_info_dup_mp:
1083  *
1084  * Make a copy of PATCH_INFO, allocating memory from the mempool MP.
1085  */
1086 MonoJumpInfo*
1087 mono_patch_info_dup_mp (MonoMemPool *mp, MonoJumpInfo *patch_info)
1088 {
1089         MonoJumpInfo *res = mono_mempool_alloc (mp, sizeof (MonoJumpInfo));
1090         memcpy (res, patch_info, sizeof (MonoJumpInfo));
1091
1092         switch (patch_info->type) {
1093         case MONO_PATCH_INFO_RVA:
1094         case MONO_PATCH_INFO_LDSTR:
1095         case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
1096         case MONO_PATCH_INFO_LDTOKEN:
1097         case MONO_PATCH_INFO_DECLSEC:
1098                 res->data.token = mono_mempool_alloc (mp, sizeof (MonoJumpInfoToken));
1099                 memcpy (res->data.token, patch_info->data.token, sizeof (MonoJumpInfoToken));
1100                 break;
1101         case MONO_PATCH_INFO_SWITCH:
1102                 res->data.table = mono_mempool_alloc (mp, sizeof (MonoJumpInfoBBTable));
1103                 memcpy (res->data.table, patch_info->data.table, sizeof (MonoJumpInfoBBTable));
1104                 res->data.table->table = mono_mempool_alloc (mp, sizeof (MonoBasicBlock*) * patch_info->data.table->table_size);
1105                 memcpy (res->data.table->table, patch_info->data.table->table, sizeof (MonoBasicBlock*) * patch_info->data.table->table_size);
1106                 break;
1107         case MONO_PATCH_INFO_RGCTX_FETCH:
1108                 res->data.rgctx_entry = mono_mempool_alloc (mp, sizeof (MonoJumpInfoRgctxEntry));
1109                 memcpy (res->data.rgctx_entry, patch_info->data.rgctx_entry, sizeof (MonoJumpInfoRgctxEntry));
1110                 res->data.rgctx_entry->data = mono_patch_info_dup_mp (mp, res->data.rgctx_entry->data);
1111                 break;
1112         case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE:
1113                 res->data.del_tramp = mono_mempool_alloc0 (mp, sizeof (MonoDelegateClassMethodPair));
1114                 memcpy (res->data.del_tramp, patch_info->data.del_tramp, sizeof (MonoDelegateClassMethodPair));
1115                 break;
1116         case MONO_PATCH_INFO_GSHAREDVT_CALL:
1117                 res->data.gsharedvt = mono_mempool_alloc (mp, sizeof (MonoJumpInfoGSharedVtCall));
1118                 memcpy (res->data.gsharedvt, patch_info->data.gsharedvt, sizeof (MonoJumpInfoGSharedVtCall));
1119                 break;
1120         case MONO_PATCH_INFO_GSHAREDVT_METHOD: {
1121                 MonoGSharedVtMethodInfo *info;
1122                 MonoGSharedVtMethodInfo *oinfo;
1123                 int i;
1124
1125                 oinfo = patch_info->data.gsharedvt_method;
1126                 info = mono_mempool_alloc (mp, sizeof (MonoGSharedVtMethodInfo));
1127                 res->data.gsharedvt_method = info;
1128                 memcpy (info, oinfo, sizeof (MonoGSharedVtMethodInfo));
1129                 info->entries = mono_mempool_alloc (mp, sizeof (MonoRuntimeGenericContextInfoTemplate) * info->count_entries);
1130                 for (i = 0; i < oinfo->num_entries; ++i) {
1131                         MonoRuntimeGenericContextInfoTemplate *otemplate = &oinfo->entries [i];
1132                         MonoRuntimeGenericContextInfoTemplate *template = &info->entries [i];
1133
1134                         memcpy (template, otemplate, sizeof (MonoRuntimeGenericContextInfoTemplate));
1135                 }
1136                 //info->locals_types = mono_mempool_alloc0 (mp, info->nlocals * sizeof (MonoType*));
1137                 //memcpy (info->locals_types, oinfo->locals_types, info->nlocals * sizeof (MonoType*));
1138                 break;
1139         }
1140         case MONO_PATCH_INFO_VIRT_METHOD: {
1141                 MonoJumpInfoVirtMethod *info;
1142                 MonoJumpInfoVirtMethod *oinfo;
1143
1144                 oinfo = patch_info->data.virt_method;
1145                 info = mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoVirtMethod));
1146                 res->data.virt_method = info;
1147                 memcpy (info, oinfo, sizeof (MonoJumpInfoVirtMethod));
1148                 break;
1149         }
1150         default:
1151                 break;
1152         }
1153
1154         return res;
1155 }
1156
1157 guint
1158 mono_patch_info_hash (gconstpointer data)
1159 {
1160         const MonoJumpInfo *ji = (MonoJumpInfo*)data;
1161
1162         switch (ji->type) {
1163         case MONO_PATCH_INFO_RVA:
1164         case MONO_PATCH_INFO_LDSTR:
1165         case MONO_PATCH_INFO_LDTOKEN:
1166         case MONO_PATCH_INFO_DECLSEC:
1167                 return (ji->type << 8) | ji->data.token->token;
1168         case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
1169                 return (ji->type << 8) | ji->data.token->token | (ji->data.token->has_context ? (gsize)ji->data.token->context.class_inst : 0);
1170         case MONO_PATCH_INFO_INTERNAL_METHOD:
1171                 return (ji->type << 8) | g_str_hash (ji->data.name);
1172         case MONO_PATCH_INFO_VTABLE:
1173         case MONO_PATCH_INFO_CLASS:
1174         case MONO_PATCH_INFO_IID:
1175         case MONO_PATCH_INFO_ADJUSTED_IID:
1176         case MONO_PATCH_INFO_CLASS_INIT:
1177         case MONO_PATCH_INFO_METHODCONST:
1178         case MONO_PATCH_INFO_METHOD:
1179         case MONO_PATCH_INFO_METHOD_JUMP:
1180         case MONO_PATCH_INFO_IMAGE:
1181         case MONO_PATCH_INFO_ICALL_ADDR:
1182         case MONO_PATCH_INFO_FIELD:
1183         case MONO_PATCH_INFO_SFLDA:
1184         case MONO_PATCH_INFO_SEQ_POINT_INFO:
1185         case MONO_PATCH_INFO_METHOD_RGCTX:
1186         case MONO_PATCH_INFO_SIGNATURE:
1187         case MONO_PATCH_INFO_TLS_OFFSET:
1188         case MONO_PATCH_INFO_METHOD_CODE_SLOT:
1189                 return (ji->type << 8) | (gssize)ji->data.target;
1190         case MONO_PATCH_INFO_GSHAREDVT_CALL:
1191                 return (ji->type << 8) | (gssize)ji->data.gsharedvt->method;
1192         case MONO_PATCH_INFO_RGCTX_FETCH: {
1193                 MonoJumpInfoRgctxEntry *e = ji->data.rgctx_entry;
1194
1195                 return (ji->type << 8) | (gssize)e->method | (e->in_mrgctx) | e->info_type | mono_patch_info_hash (e->data);
1196         }
1197         case MONO_PATCH_INFO_INTERRUPTION_REQUEST_FLAG:
1198         case MONO_PATCH_INFO_MSCORLIB_GOT_ADDR:
1199         case MONO_PATCH_INFO_GC_CARD_TABLE_ADDR:
1200         case MONO_PATCH_INFO_GC_NURSERY_START:
1201         case MONO_PATCH_INFO_JIT_TLS_ID:
1202         case MONO_PATCH_INFO_MONITOR_ENTER:
1203         case MONO_PATCH_INFO_MONITOR_ENTER_V4:
1204         case MONO_PATCH_INFO_MONITOR_EXIT:
1205         case MONO_PATCH_INFO_GOT_OFFSET:
1206         case MONO_PATCH_INFO_GC_SAFE_POINT_FLAG:
1207                 return (ji->type << 8);
1208         case MONO_PATCH_INFO_CASTCLASS_CACHE:
1209                 return (ji->type << 8) | (ji->data.index);
1210         case MONO_PATCH_INFO_SWITCH:
1211                 return (ji->type << 8) | ji->data.table->table_size;
1212         case MONO_PATCH_INFO_GSHAREDVT_METHOD:
1213                 return (ji->type << 8) | (gssize)ji->data.gsharedvt_method->method;
1214         case MONO_PATCH_INFO_OBJC_SELECTOR_REF:
1215                 /* Hash on the selector name */
1216                 return g_str_hash (ji->data.target);
1217         case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE:
1218                 return (ji->type << 8) | (gsize)ji->data.del_tramp->klass | (gsize)ji->data.del_tramp->method | (gsize)ji->data.del_tramp->virtual;
1219         case MONO_PATCH_INFO_LDSTR_LIT:
1220                 return g_str_hash (ji->data.target);
1221         case MONO_PATCH_INFO_VIRT_METHOD: {
1222                 MonoJumpInfoVirtMethod *info = ji->data.virt_method;
1223
1224                 return (ji->type << 8) | (gssize)info->klass | (gssize)info->method;
1225         }
1226         case MONO_PATCH_INFO_JIT_ICALL_ADDR:
1227                 return (ji->type << 8) | g_str_hash (ji->data.target);
1228         default:
1229                 printf ("info type: %d\n", ji->type);
1230                 mono_print_ji (ji); printf ("\n");
1231                 g_assert_not_reached ();
1232                 return 0;
1233         }
1234 }
1235
1236 /*
1237  * mono_patch_info_equal:
1238  *
1239  * This might fail to recognize equivalent patches, i.e. floats, so its only
1240  * usable in those cases where this is not a problem, i.e. sharing GOT slots
1241  * in AOT.
1242  */
1243 gint
1244 mono_patch_info_equal (gconstpointer ka, gconstpointer kb)
1245 {
1246         const MonoJumpInfo *ji1 = (MonoJumpInfo*)ka;
1247         const MonoJumpInfo *ji2 = (MonoJumpInfo*)kb;
1248
1249         if (ji1->type != ji2->type)
1250                 return 0;
1251
1252         switch (ji1->type) {
1253         case MONO_PATCH_INFO_RVA:
1254         case MONO_PATCH_INFO_LDSTR:
1255         case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
1256         case MONO_PATCH_INFO_LDTOKEN:
1257         case MONO_PATCH_INFO_DECLSEC:
1258                 if ((ji1->data.token->image != ji2->data.token->image) ||
1259                         (ji1->data.token->token != ji2->data.token->token) ||
1260                         (ji1->data.token->has_context != ji2->data.token->has_context) ||
1261                         (ji1->data.token->context.class_inst != ji2->data.token->context.class_inst) ||
1262                         (ji1->data.token->context.method_inst != ji2->data.token->context.method_inst))
1263                         return 0;
1264                 break;
1265         case MONO_PATCH_INFO_INTERNAL_METHOD:
1266                 return g_str_equal (ji1->data.name, ji2->data.name);
1267         case MONO_PATCH_INFO_RGCTX_FETCH: {
1268                 MonoJumpInfoRgctxEntry *e1 = ji1->data.rgctx_entry;
1269                 MonoJumpInfoRgctxEntry *e2 = ji2->data.rgctx_entry;
1270
1271                 return e1->method == e2->method && e1->in_mrgctx == e2->in_mrgctx && e1->info_type == e2->info_type && mono_patch_info_equal (e1->data, e2->data);
1272         }
1273         case MONO_PATCH_INFO_GSHAREDVT_CALL: {
1274                 MonoJumpInfoGSharedVtCall *c1 = ji1->data.gsharedvt;
1275                 MonoJumpInfoGSharedVtCall *c2 = ji2->data.gsharedvt;
1276
1277                 return c1->sig == c2->sig && c1->method == c2->method;
1278         }
1279         case MONO_PATCH_INFO_GSHAREDVT_METHOD:
1280                 return ji1->data.gsharedvt_method->method == ji2->data.gsharedvt_method->method;
1281         case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE:
1282                 return ji1->data.del_tramp->klass == ji2->data.del_tramp->klass && ji1->data.del_tramp->method == ji2->data.del_tramp->method && ji1->data.del_tramp->virtual == ji2->data.del_tramp->virtual;
1283         case MONO_PATCH_INFO_CASTCLASS_CACHE:
1284                 return ji1->data.index == ji2->data.index;
1285         case MONO_PATCH_INFO_VIRT_METHOD:
1286                 return ji1->data.virt_method->klass == ji2->data.virt_method->klass && ji1->data.virt_method->method == ji2->data.virt_method->method;
1287         case MONO_PATCH_INFO_JIT_ICALL_ADDR:
1288                 if (ji1->data.target == ji2->data.target)
1289                         return 1;
1290                 return strcmp (ji1->data.target, ji2->data.target) == 0 ? 1 : 0;
1291         default:
1292                 if (ji1->data.target != ji2->data.target)
1293                         return 0;
1294                 break;
1295         }
1296
1297         return 1;
1298 }
1299
1300 gpointer
1301 mono_resolve_patch_target (MonoMethod *method, MonoDomain *domain, guint8 *code, MonoJumpInfo *patch_info, gboolean run_cctors)
1302 {
1303         unsigned char *ip = patch_info->ip.i + code;
1304         gconstpointer target = NULL;
1305
1306         switch (patch_info->type) {
1307         case MONO_PATCH_INFO_BB:
1308                 /*
1309                  * FIXME: This could be hit for methods without a prolog. Should use -1
1310                  * but too much code depends on a 0 initial value.
1311                  */
1312                 //g_assert (patch_info->data.bb->native_offset);
1313                 target = patch_info->data.bb->native_offset + code;
1314                 break;
1315         case MONO_PATCH_INFO_ABS:
1316                 target = patch_info->data.target;
1317                 break;
1318         case MONO_PATCH_INFO_LABEL:
1319                 target = patch_info->data.inst->inst_c0 + code;
1320                 break;
1321         case MONO_PATCH_INFO_IP:
1322 #if defined(__native_client__) && defined(__native_client_codegen__)
1323                 /* Need to transform to the destination address, it's */
1324                 /* emitted as an immediate in the code. */
1325                 target = nacl_inverse_modify_patch_target(ip);
1326 #else
1327                 target = ip;
1328 #endif
1329                 break;
1330         case MONO_PATCH_INFO_METHOD_REL:
1331                 target = code + patch_info->data.offset;
1332                 break;
1333         case MONO_PATCH_INFO_INTERNAL_METHOD: {
1334                 MonoJitICallInfo *mi = mono_find_jit_icall_by_name (patch_info->data.name);
1335                 if (!mi) {
1336                         g_warning ("unknown MONO_PATCH_INFO_INTERNAL_METHOD %s", patch_info->data.name);
1337                         g_assert_not_reached ();
1338                 }
1339                 target = mono_icall_get_wrapper (mi);
1340                 break;
1341         }
1342         case MONO_PATCH_INFO_JIT_ICALL_ADDR: {
1343                 MonoJitICallInfo *mi = mono_find_jit_icall_by_name (patch_info->data.name);
1344                 if (!mi) {
1345                         g_warning ("unknown MONO_PATCH_INFO_JIT_ICALL_ADDR %s", patch_info->data.name);
1346                         g_assert_not_reached ();
1347                 }
1348                 target = mi->func;
1349                 break;
1350         }
1351         case MONO_PATCH_INFO_METHOD_JUMP:
1352                 target = mono_create_jump_trampoline (domain, patch_info->data.method, FALSE);
1353 #if defined(__native_client__) && defined(__native_client_codegen__)
1354 # if defined(TARGET_AMD64)
1355                 /* This target is an absolute address, not relative to the */
1356                 /* current code being emitted on AMD64. */
1357                 target = nacl_inverse_modify_patch_target(target);
1358 # endif
1359 #endif
1360                 break;
1361         case MONO_PATCH_INFO_METHOD:
1362 #if defined(__native_client_codegen__) && defined(USE_JUMP_TABLES)
1363                 /*
1364                  * If we use jumptables, for recursive calls we cannot
1365                  * avoid trampoline, as we not yet know where we will
1366                  * be installed.
1367                  */
1368                 target = mono_create_jit_trampoline_in_domain (domain, patch_info->data.method);
1369 #else
1370                 if (patch_info->data.method == method) {
1371                         target = code;
1372                 } else {
1373                         /* get the trampoline to the method from the domain */
1374                         target = mono_create_jit_trampoline_in_domain (domain, patch_info->data.method);
1375                 }
1376 #endif
1377                 break;
1378         case MONO_PATCH_INFO_METHOD_CODE_SLOT: {
1379                 gpointer code_slot;
1380
1381                 mono_domain_lock (domain);
1382                 if (!domain_jit_info (domain)->method_code_hash)
1383                         domain_jit_info (domain)->method_code_hash = g_hash_table_new (NULL, NULL);
1384                 code_slot = g_hash_table_lookup (domain_jit_info (domain)->method_code_hash, patch_info->data.method);
1385                 if (!code_slot) {
1386                         code_slot = mono_domain_alloc0 (domain, sizeof (gpointer));
1387                         g_hash_table_insert (domain_jit_info (domain)->method_code_hash, patch_info->data.method, code_slot);
1388                 }
1389                 mono_domain_unlock (domain);
1390                 target = code_slot;
1391                 break;
1392         }
1393         case MONO_PATCH_INFO_GC_SAFE_POINT_FLAG:
1394 #if defined(__native_client_codegen__)
1395                 target = (gpointer)&__nacl_thread_suspension_needed;
1396 #elif defined (USE_COOP_GC)
1397                 target = (gpointer)&mono_polling_required;
1398 #else
1399                 g_error ("Unsuported patch target");
1400 #endif
1401                 break;
1402         case MONO_PATCH_INFO_SWITCH: {
1403                 gpointer *jump_table;
1404                 int i;
1405 #if defined(__native_client__) && defined(__native_client_codegen__)
1406                 /* This memory will leak, but we don't care if we're */
1407                 /* not deleting JIT'd methods anyway                 */
1408                 jump_table = g_malloc0 (sizeof(gpointer) * patch_info->data.table->table_size);
1409 #else
1410                 if (method && method->dynamic) {
1411                         jump_table = mono_code_manager_reserve (mono_dynamic_code_hash_lookup (domain, method)->code_mp, sizeof (gpointer) * patch_info->data.table->table_size);
1412                 } else {
1413                         if (mono_aot_only) {
1414                                 jump_table = mono_domain_alloc (domain, sizeof (gpointer) * patch_info->data.table->table_size);
1415                         } else {
1416                                 jump_table = mono_domain_code_reserve (domain, sizeof (gpointer) * patch_info->data.table->table_size);
1417                         }
1418                 }
1419 #endif
1420
1421                 for (i = 0; i < patch_info->data.table->table_size; i++) {
1422 #if defined(__native_client__) && defined(__native_client_codegen__)
1423                         /* 'code' is relative to the current code blob, we */
1424                         /* need to do this transform on it to make the     */
1425                         /* pointers in this table absolute                 */
1426                         jump_table [i] = nacl_inverse_modify_patch_target (code) + GPOINTER_TO_INT (patch_info->data.table->table [i]);
1427 #else
1428                         jump_table [i] = code + GPOINTER_TO_INT (patch_info->data.table->table [i]);
1429 #endif
1430                 }
1431
1432 #if defined(__native_client__) && defined(__native_client_codegen__)
1433                 /* jump_table is in the data section, we need to transform */
1434                 /* it here so when it gets modified in amd64_patch it will */
1435                 /* then point back to the absolute data address            */
1436                 target = nacl_inverse_modify_patch_target (jump_table);
1437 #else
1438                 target = jump_table;
1439 #endif
1440                 break;
1441         }
1442         case MONO_PATCH_INFO_METHODCONST:
1443         case MONO_PATCH_INFO_CLASS:
1444         case MONO_PATCH_INFO_IMAGE:
1445         case MONO_PATCH_INFO_FIELD:
1446         case MONO_PATCH_INFO_SIGNATURE:
1447                 target = patch_info->data.target;
1448                 break;
1449         case MONO_PATCH_INFO_IID:
1450                 mono_class_init (patch_info->data.klass);
1451                 target = GINT_TO_POINTER ((int)patch_info->data.klass->interface_id);
1452                 break;
1453         case MONO_PATCH_INFO_ADJUSTED_IID:
1454                 mono_class_init (patch_info->data.klass);
1455                 target = GINT_TO_POINTER ((int)(-((patch_info->data.klass->interface_id + 1) * SIZEOF_VOID_P)));
1456                 break;
1457         case MONO_PATCH_INFO_VTABLE:
1458                 target = mono_class_vtable (domain, patch_info->data.klass);
1459                 g_assert (target);
1460                 break;
1461         case MONO_PATCH_INFO_CLASS_INIT: {
1462                 MonoVTable *vtable = mono_class_vtable (domain, patch_info->data.klass);
1463
1464                 g_assert (vtable);
1465                 target = mono_create_class_init_trampoline (vtable);
1466                 break;
1467         }
1468         case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE: {
1469                 MonoDelegateClassMethodPair *del_tramp = patch_info->data.del_tramp;
1470
1471                 if (del_tramp->virtual)
1472                         target = mono_create_delegate_virtual_trampoline (domain, del_tramp->klass, del_tramp->method);
1473                 else
1474                         target = mono_create_delegate_trampoline_info (domain, del_tramp->klass, del_tramp->method);
1475                 break;
1476         }
1477         case MONO_PATCH_INFO_SFLDA: {
1478                 MonoVTable *vtable = mono_class_vtable (domain, patch_info->data.field->parent);
1479
1480                 if (mono_class_field_is_special_static (patch_info->data.field)) {
1481                         gpointer addr = NULL;
1482
1483                         mono_domain_lock (domain);
1484                         if (domain->special_static_fields)
1485                                 addr = g_hash_table_lookup (domain->special_static_fields, patch_info->data.field);
1486                         mono_domain_unlock (domain);
1487                         g_assert (addr);
1488                         return addr;
1489                 }
1490
1491                 g_assert (vtable);
1492                 if (!vtable->initialized && !(vtable->klass->flags & TYPE_ATTRIBUTE_BEFORE_FIELD_INIT) && (method && mono_class_needs_cctor_run (vtable->klass, method)))
1493                         /* Done by the generated code */
1494                         ;
1495                 else {
1496                         if (run_cctors)
1497                                 mono_runtime_class_init (vtable);
1498                 }
1499                 target = (char*)mono_vtable_get_static_field_data (vtable) + patch_info->data.field->offset;
1500                 break;
1501         }
1502         case MONO_PATCH_INFO_RVA: {
1503                 guint32 field_index = mono_metadata_token_index (patch_info->data.token->token);
1504                 guint32 rva;
1505
1506                 mono_metadata_field_info (patch_info->data.token->image, field_index - 1, NULL, &rva, NULL);
1507                 target = mono_image_rva_map (patch_info->data.token->image, rva);
1508                 break;
1509         }
1510         case MONO_PATCH_INFO_R4:
1511         case MONO_PATCH_INFO_R8:
1512                 target = patch_info->data.target;
1513                 break;
1514         case MONO_PATCH_INFO_EXC_NAME:
1515                 target = patch_info->data.name;
1516                 break;
1517         case MONO_PATCH_INFO_LDSTR:
1518                 target =
1519                         mono_ldstr (domain, patch_info->data.token->image,
1520                                                 mono_metadata_token_index (patch_info->data.token->token));
1521                 break;
1522         case MONO_PATCH_INFO_TYPE_FROM_HANDLE: {
1523                 gpointer handle;
1524                 MonoClass *handle_class;
1525                 MonoError error;
1526
1527                 handle = mono_ldtoken_checked (patch_info->data.token->image,
1528                                                            patch_info->data.token->token, &handle_class, patch_info->data.token->has_context ? &patch_info->data.token->context : NULL, &error);
1529                 if (!mono_error_ok (&error))
1530                         g_error ("Could not patch ldtoken due to %s", mono_error_get_message (&error));
1531                 mono_class_init (handle_class);
1532                 mono_class_init (mono_class_from_mono_type (handle));
1533
1534                 target =
1535                         mono_type_get_object (domain, handle);
1536                 break;
1537         }
1538         case MONO_PATCH_INFO_LDTOKEN: {
1539                 gpointer handle;
1540                 MonoClass *handle_class;
1541                 MonoError error;
1542
1543                 handle = mono_ldtoken_checked (patch_info->data.token->image,
1544                                                            patch_info->data.token->token, &handle_class, patch_info->data.token->has_context ? &patch_info->data.token->context : NULL, &error);
1545                 if (!mono_error_ok (&error))
1546                         g_error ("Could not patch ldtoken due to %s", mono_error_get_message (&error));
1547                 mono_class_init (handle_class);
1548
1549                 target = handle;
1550                 break;
1551         }
1552         case MONO_PATCH_INFO_DECLSEC:
1553                 target = (mono_metadata_blob_heap (patch_info->data.token->image, patch_info->data.token->token) + 2);
1554                 break;
1555         case MONO_PATCH_INFO_ICALL_ADDR:
1556                 /* run_cctors == 0 -> AOT */
1557                 if (patch_info->data.method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) {
1558                         const char *exc_class;
1559                         const char *exc_arg;
1560
1561                         if (run_cctors) {
1562                                 target = mono_lookup_pinvoke_call (patch_info->data.method, &exc_class, &exc_arg);
1563                                 if (!target) {
1564                                         if (mono_aot_only)
1565                                                 mono_raise_exception (mono_exception_from_name_msg (mono_defaults.corlib, "System", exc_class, exc_arg));
1566                                         g_error ("Unable to resolve pinvoke method '%s' Re-run with MONO_LOG_LEVEL=debug for more information.\n", mono_method_full_name (patch_info->data.method, TRUE));
1567                                 }
1568                         } else {
1569                                 target = NULL;
1570                         }
1571                 } else {
1572                         target = mono_lookup_internal_call (patch_info->data.method);
1573
1574                         if (!target && run_cctors)
1575                                 g_error ("Unregistered icall '%s'\n", mono_method_full_name (patch_info->data.method, TRUE));
1576                 }
1577                 break;
1578         case MONO_PATCH_INFO_INTERRUPTION_REQUEST_FLAG:
1579                 target = mono_thread_interruption_request_flag ();
1580                 break;
1581         case MONO_PATCH_INFO_METHOD_RGCTX: {
1582                 MonoVTable *vtable = mono_class_vtable (domain, patch_info->data.method->klass);
1583                 g_assert (vtable);
1584
1585                 target = mono_method_lookup_rgctx (vtable, mini_method_get_context (patch_info->data.method)->method_inst);
1586                 break;
1587         }
1588         case MONO_PATCH_INFO_BB_OVF:
1589         case MONO_PATCH_INFO_EXC_OVF:
1590         case MONO_PATCH_INFO_GOT_OFFSET:
1591         case MONO_PATCH_INFO_NONE:
1592                 break;
1593         case MONO_PATCH_INFO_RGCTX_FETCH: {
1594                 int slot = mini_get_rgctx_entry_slot (patch_info->data.rgctx_entry);
1595
1596                 target = mono_create_rgctx_lazy_fetch_trampoline (slot);
1597                 break;
1598         }
1599         case MONO_PATCH_INFO_MONITOR_ENTER:
1600                 target = mono_create_monitor_enter_trampoline ();
1601                 break;
1602         case MONO_PATCH_INFO_MONITOR_ENTER_V4:
1603                 target = mono_create_monitor_enter_v4_trampoline ();
1604                 break;
1605         case MONO_PATCH_INFO_MONITOR_EXIT:
1606                 target = mono_create_monitor_exit_trampoline ();
1607                 break;
1608 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
1609         case MONO_PATCH_INFO_SEQ_POINT_INFO:
1610                 if (!run_cctors)
1611                         /* AOT, not needed */
1612                         target = NULL;
1613                 else
1614                         target = mono_arch_get_seq_point_info (domain, code);
1615                 break;
1616 #endif
1617         case MONO_PATCH_INFO_LLVM_IMT_TRAMPOLINE:
1618 #ifdef MONO_ARCH_LLVM_SUPPORTED
1619                 g_assert (mono_use_llvm);
1620                 target = mono_create_llvm_imt_trampoline (domain, patch_info->data.imt_tramp->method, patch_info->data.imt_tramp->vt_offset);
1621 #else
1622                 g_assert_not_reached ();
1623 #endif
1624                 break;
1625         case MONO_PATCH_INFO_GC_CARD_TABLE_ADDR: {
1626                 int card_table_shift_bits;
1627                 gpointer card_table_mask;
1628
1629                 target = mono_gc_get_card_table (&card_table_shift_bits, &card_table_mask);
1630                 break;
1631         }
1632         case MONO_PATCH_INFO_GC_NURSERY_START: {
1633                 int shift_bits;
1634                 size_t size;
1635
1636                 target = mono_gc_get_nursery (&shift_bits, &size);
1637                 break;
1638         }
1639         case MONO_PATCH_INFO_CASTCLASS_CACHE: {
1640                 target = mono_domain_alloc0 (domain, sizeof (gpointer));
1641                 break;
1642         }
1643         case MONO_PATCH_INFO_JIT_TLS_ID: {
1644                 target = (gpointer) (size_t) mono_jit_tls_id;
1645                 break;
1646         }
1647         case MONO_PATCH_INFO_TLS_OFFSET: {
1648                 int offset;
1649
1650                 offset = mini_get_tls_offset (GPOINTER_TO_INT (patch_info->data.target));
1651 #ifdef MONO_ARCH_HAVE_TRANSLATE_TLS_OFFSET
1652                 offset = mono_arch_translate_tls_offset (offset);
1653 #endif
1654                 target = GINT_TO_POINTER (offset);
1655                 break;
1656         }
1657         case MONO_PATCH_INFO_OBJC_SELECTOR_REF: {
1658                 target = NULL;
1659                 break;
1660         }
1661         case MONO_PATCH_INFO_LDSTR_LIT: {
1662                 int len;
1663                 char *s;
1664
1665                 len = strlen (patch_info->data.target);
1666                 s = mono_domain_alloc0 (domain, len + 1);
1667                 memcpy (s, patch_info->data.target, len);
1668                 target = s;
1669
1670                 break;
1671         }
1672         default:
1673                 g_assert_not_reached ();
1674         }
1675
1676         return (gpointer)target;
1677 }
1678
1679 void
1680 mini_init_gsctx (MonoDomain *domain, MonoMemPool *mp, MonoGenericContext *context, MonoGenericSharingContext *gsctx)
1681 {
1682         MonoGenericInst *inst;
1683         int i;
1684
1685         memset (gsctx, 0, sizeof (MonoGenericSharingContext));
1686
1687         if (context && context->class_inst) {
1688                 inst = context->class_inst;
1689                 for (i = 0; i < inst->type_argc; ++i) {
1690                         MonoType *type = inst->type_argv [i];
1691
1692                         if (mini_is_gsharedvt_gparam (type))
1693                                 gsctx->is_gsharedvt = TRUE;
1694                 }
1695         }
1696         if (context && context->method_inst) {
1697                 inst = context->method_inst;
1698
1699                 for (i = 0; i < inst->type_argc; ++i) {
1700                         MonoType *type = inst->type_argv [i];
1701
1702                         if (mini_is_gsharedvt_gparam (type))
1703                                 gsctx->is_gsharedvt = TRUE;
1704                 }
1705         }
1706 }
1707
1708 /*
1709  * LOCKING: Acquires the jit code hash lock.
1710  */
1711 MonoJitInfo*
1712 mini_lookup_method (MonoDomain *domain, MonoMethod *method, MonoMethod *shared)
1713 {
1714         MonoJitInfo *ji;
1715         static gboolean inited = FALSE;
1716         static int lookups = 0;
1717         static int failed_lookups = 0;
1718
1719         mono_domain_jit_code_hash_lock (domain);
1720         ji = mono_internal_hash_table_lookup (&domain->jit_code_hash, method);
1721         if (!ji && shared) {
1722                 /* Try generic sharing */
1723                 ji = mono_internal_hash_table_lookup (&domain->jit_code_hash, shared);
1724                 if (ji && !ji->has_generic_jit_info)
1725                         ji = NULL;
1726                 if (!inited) {
1727                         mono_counters_register ("Shared generic lookups", MONO_COUNTER_INT|MONO_COUNTER_GENERICS, &lookups);
1728                         mono_counters_register ("Failed shared generic lookups", MONO_COUNTER_INT|MONO_COUNTER_GENERICS, &failed_lookups);
1729                         inited = TRUE;
1730                 }
1731
1732                 ++lookups;
1733                 if (!ji)
1734                         ++failed_lookups;
1735         }
1736         mono_domain_jit_code_hash_unlock (domain);
1737
1738         return ji;
1739 }
1740
1741 static MonoJitInfo*
1742 lookup_method (MonoDomain *domain, MonoMethod *method)
1743 {
1744         MonoJitInfo *ji;
1745         MonoMethod *shared;
1746
1747         ji = mini_lookup_method (domain, method, NULL);
1748
1749         if (!ji) {
1750                 if (!mono_method_is_generic_sharable (method, FALSE))
1751                         return NULL;
1752                 shared = mini_get_shared_method (method);
1753                 ji = mini_lookup_method (domain, method, shared);
1754         }
1755
1756         return ji;
1757 }
1758
1759 MonoJitInfo *
1760 mono_get_jit_info_from_method (MonoDomain *domain, MonoMethod *method)
1761 {
1762         return lookup_method (domain, method);
1763 }
1764
1765 #if ENABLE_JIT_MAP
1766 static FILE* perf_map_file;
1767
1768 void
1769 mono_enable_jit_map (void)
1770 {
1771         if (!perf_map_file) {
1772                 char name [64];
1773                 g_snprintf (name, sizeof (name), "/tmp/perf-%d.map", getpid ());
1774                 unlink (name);
1775                 perf_map_file = fopen (name, "w");
1776         }
1777 }
1778
1779 void
1780 mono_emit_jit_tramp (void *start, int size, const char *desc)
1781 {
1782         if (perf_map_file)
1783                 fprintf (perf_map_file, "%llx %x %s\n", (long long unsigned int)(gsize)start, size, desc);
1784 }
1785
1786 void
1787 mono_emit_jit_map (MonoJitInfo *jinfo)
1788 {
1789         if (perf_map_file) {
1790                 char *name = mono_method_full_name (jinfo_get_method (jinfo), TRUE);
1791                 mono_emit_jit_tramp (jinfo->code_start, jinfo->code_size, name);
1792                 g_free (name);
1793         }
1794 }
1795
1796 gboolean
1797 mono_jit_map_is_enabled (void)
1798 {
1799         return perf_map_file != NULL;
1800 }
1801
1802 #endif
1803
1804 static gpointer
1805 mono_jit_compile_method_with_opt (MonoMethod *method, guint32 opt, MonoException **ex)
1806 {
1807         MonoDomain *target_domain, *domain = mono_domain_get ();
1808         MonoJitInfo *info;
1809         gpointer code = NULL, p;
1810         MonoJitInfo *ji;
1811         MonoJitICallInfo *callinfo = NULL;
1812         WrapperInfo *winfo = NULL;
1813
1814         /*
1815          * ICALL wrappers are handled specially, since there is only one copy of them
1816          * shared by all appdomains.
1817          */
1818         if (method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE)
1819                 winfo = mono_marshal_get_wrapper_info (method);
1820         if (winfo && winfo->subtype == WRAPPER_SUBTYPE_ICALL_WRAPPER) {
1821                 callinfo = mono_find_jit_icall_by_addr (winfo->d.icall.func);
1822                 g_assert (callinfo);
1823
1824                 /* Must be domain neutral since there is only one copy */
1825                 opt |= MONO_OPT_SHARED;
1826         }
1827
1828         if (method->dynamic)
1829                 opt &= ~MONO_OPT_SHARED;
1830
1831         /* These methods can become invalid when a domain is unloaded */
1832         if (method->klass->image != mono_get_corlib () || method->is_inflated)
1833                 opt &= ~MONO_OPT_SHARED;
1834
1835         if (opt & MONO_OPT_SHARED)
1836                 target_domain = mono_get_root_domain ();
1837         else
1838                 target_domain = domain;
1839
1840         if (method->wrapper_type == MONO_WRAPPER_UNKNOWN) {
1841                 WrapperInfo *info = mono_marshal_get_wrapper_info (method);
1842
1843                 g_assert (info);
1844                 if (info->subtype == WRAPPER_SUBTYPE_SYNCHRONIZED_INNER) {
1845                         MonoGenericContext *ctx = NULL;
1846                         if (method->is_inflated)
1847                                 ctx = mono_method_get_context (method);
1848                         method = info->d.synchronized_inner.method;
1849                         if (ctx) {
1850                                 MonoError error;
1851                                 method = mono_class_inflate_generic_method_checked (method, ctx, &error);
1852                                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
1853                         }
1854                 }
1855         }
1856
1857         info = lookup_method (target_domain, method);
1858         if (info) {
1859                 /* We can't use a domain specific method in another domain */
1860                 if (! ((domain != target_domain) && !info->domain_neutral)) {
1861                         MonoVTable *vtable;
1862                         MonoException *tmpEx;
1863
1864                         mono_jit_stats.methods_lookups++;
1865                         vtable = mono_class_vtable (domain, method->klass);
1866                         g_assert (vtable);
1867                         tmpEx = mono_runtime_class_init_full (vtable, ex == NULL);
1868                         if (tmpEx) {
1869                                 *ex = tmpEx;
1870                                 return NULL;
1871                         }
1872                         return mono_create_ftnptr (target_domain, info->code_start);
1873                 }
1874         }
1875
1876 #ifdef MONO_USE_AOT_COMPILER
1877         if (opt & MONO_OPT_AOT) {
1878                 MonoDomain *domain = mono_domain_get ();
1879
1880                 mono_class_init (method->klass);
1881
1882                 if ((code = mono_aot_get_method (domain, method))) {
1883                         MonoVTable *vtable;
1884
1885                         vtable = mono_class_vtable (domain, method->klass);
1886                         g_assert (vtable);
1887                         mono_runtime_class_init (vtable);
1888                 }
1889         }
1890 #endif
1891
1892         if (!code)
1893                 code = mono_jit_compile_method_inner (method, target_domain, opt, ex);
1894         if (!code)
1895                 return NULL;
1896
1897         if (method->wrapper_type == MONO_WRAPPER_WRITE_BARRIER || method->wrapper_type == MONO_WRAPPER_ALLOC) {
1898                 MonoDomain *d;
1899
1900                 /*
1901                  * SGEN requires the JIT info for these methods to be registered, see is_ip_in_managed_allocator ().
1902                  */
1903                 ji = mini_jit_info_table_find (mono_domain_get (), code, &d);
1904                 g_assert (ji);
1905         }
1906
1907         p = mono_create_ftnptr (target_domain, code);
1908
1909         if (callinfo) {
1910                 /*mono_register_jit_icall_wrapper takes the loader lock, so we take it on the outside. */
1911                 mono_loader_lock ();
1912                 mono_jit_lock ();
1913                 if (!callinfo->wrapper) {
1914                         callinfo->wrapper = p;
1915                         mono_register_jit_icall_wrapper (callinfo, p);
1916                 }
1917                 mono_jit_unlock ();
1918                 mono_loader_unlock ();
1919         }
1920
1921         return p;
1922 }
1923
1924 gpointer
1925 mono_jit_compile_method (MonoMethod *method)
1926 {
1927         MonoException *ex = NULL;
1928         gpointer code;
1929
1930         code = mono_jit_compile_method_with_opt (method, mono_get_optimizations_for_method (method, default_opt), &ex);
1931         if (!code) {
1932                 g_assert (ex);
1933                 mono_raise_exception (ex);
1934         }
1935
1936         return code;
1937 }
1938
1939 #ifdef MONO_ARCH_HAVE_INVALIDATE_METHOD
1940 static void
1941 invalidated_delegate_trampoline (char *desc)
1942 {
1943         g_error ("Unmanaged code called delegate of type %s which was already garbage collected.\n"
1944                  "See http://www.mono-project.com/Diagnostic:Delegate for an explanation and ways to fix this.",
1945                  desc);
1946 }
1947 #endif
1948
1949 /*
1950  * mono_jit_free_method:
1951  *
1952  *  Free all memory allocated by the JIT for METHOD.
1953  */
1954 static void
1955 mono_jit_free_method (MonoDomain *domain, MonoMethod *method)
1956 {
1957         MonoJitDynamicMethodInfo *ji;
1958         gboolean destroy = TRUE;
1959         GHashTableIter iter;
1960         MonoJumpList *jlist;
1961
1962         g_assert (method->dynamic);
1963
1964         mono_domain_lock (domain);
1965         ji = mono_dynamic_code_hash_lookup (domain, method);
1966         mono_domain_unlock (domain);
1967
1968         if (!ji)
1969                 return;
1970
1971         mono_debug_remove_method (method, domain);
1972
1973         mono_domain_lock (domain);
1974         g_hash_table_remove (domain_jit_info (domain)->dynamic_code_hash, method);
1975         mono_domain_jit_code_hash_lock (domain);
1976         mono_internal_hash_table_remove (&domain->jit_code_hash, method);
1977         mono_domain_jit_code_hash_unlock (domain);
1978         g_hash_table_remove (domain_jit_info (domain)->jump_trampoline_hash, method);
1979         mono_conc_hashtable_remove (domain_jit_info (domain)->runtime_invoke_hash, method);
1980
1981         /* Remove jump targets in this method */
1982         g_hash_table_iter_init (&iter, domain_jit_info (domain)->jump_target_hash);
1983         while (g_hash_table_iter_next (&iter, NULL, (void**)&jlist)) {
1984                 GSList *tmp, *remove;
1985
1986                 remove = NULL;
1987                 for (tmp = jlist->list; tmp; tmp = tmp->next) {
1988                         guint8 *ip = tmp->data;
1989
1990                         if (ip >= (guint8*)ji->ji->code_start && ip < (guint8*)ji->ji->code_start + ji->ji->code_size)
1991                                 remove = g_slist_prepend (remove, tmp);
1992                 }
1993                 for (tmp = remove; tmp; tmp = tmp->next) {
1994                         jlist->list = g_slist_delete_link (jlist->list, tmp->data);
1995                 }
1996                 g_slist_free (remove);
1997         }
1998
1999         mono_domain_unlock (domain);
2000
2001 #ifdef MONO_ARCH_HAVE_INVALIDATE_METHOD
2002         if (debug_options.keep_delegates && method->wrapper_type == MONO_WRAPPER_NATIVE_TO_MANAGED) {
2003                 /*
2004                  * Instead of freeing the code, change it to call an error routine
2005                  * so people can fix their code.
2006                  */
2007                 char *type = mono_type_full_name (&method->klass->byval_arg);
2008                 char *type_and_method = g_strdup_printf ("%s.%s", type, method->name);
2009
2010                 g_free (type);
2011                 mono_arch_invalidate_method (ji->ji, invalidated_delegate_trampoline, type_and_method);
2012                 destroy = FALSE;
2013         }
2014 #endif
2015
2016         /*
2017          * This needs to be done before freeing code_mp, since the code address is the
2018          * key in the table, so if we free the code_mp first, another thread can grab the
2019          * same code address and replace our entry in the table.
2020          */
2021         mono_jit_info_table_remove (domain, ji->ji);
2022
2023         if (destroy)
2024                 mono_code_manager_destroy (ji->code_mp);
2025         g_free (ji);
2026 }
2027
2028 gpointer
2029 mono_jit_find_compiled_method_with_jit_info (MonoDomain *domain, MonoMethod *method, MonoJitInfo **ji)
2030 {
2031         MonoDomain *target_domain;
2032         MonoJitInfo *info;
2033
2034         if (default_opt & MONO_OPT_SHARED)
2035                 target_domain = mono_get_root_domain ();
2036         else
2037                 target_domain = domain;
2038
2039         info = lookup_method (target_domain, method);
2040         if (info) {
2041                 /* We can't use a domain specific method in another domain */
2042                 if (! ((domain != target_domain) && !info->domain_neutral)) {
2043                         mono_jit_stats.methods_lookups++;
2044                         if (ji)
2045                                 *ji = info;
2046                         return info->code_start;
2047                 }
2048         }
2049
2050         if (ji)
2051                 *ji = NULL;
2052         return NULL;
2053 }
2054
2055 gboolean mono_do_single_method_regression = FALSE;
2056 guint32 mono_single_method_regression_opt = 0;
2057 MonoMethod *mono_current_single_method;
2058 GSList *mono_single_method_list;
2059 GHashTable *mono_single_method_hash;
2060
2061 guint32
2062 mono_get_optimizations_for_method (MonoMethod *method, guint32 default_opt)
2063 {
2064         g_assert (method);
2065
2066         if (!mono_do_single_method_regression)
2067                 return default_opt;
2068         if (!mono_current_single_method) {
2069                 if (!mono_single_method_hash)
2070                         mono_single_method_hash = g_hash_table_new (g_direct_hash, g_direct_equal);
2071                 if (!g_hash_table_lookup (mono_single_method_hash, method)) {
2072                         g_hash_table_insert (mono_single_method_hash, method, method);
2073                         mono_single_method_list = g_slist_prepend (mono_single_method_list, method);
2074                 }
2075                 return default_opt;
2076         }
2077         if (method == mono_current_single_method)
2078                 return mono_single_method_regression_opt;
2079         return default_opt;
2080 }
2081
2082 gpointer
2083 mono_jit_find_compiled_method (MonoDomain *domain, MonoMethod *method)
2084 {
2085         return mono_jit_find_compiled_method_with_jit_info (domain, method, NULL);
2086 }
2087
2088 typedef struct {
2089         MonoMethod *method;
2090         gpointer compiled_method;
2091         gpointer runtime_invoke;
2092         MonoVTable *vtable;
2093         MonoDynCallInfo *dyn_call_info;
2094         MonoClass *ret_box_class;
2095 } RuntimeInvokeInfo;
2096
2097 /**
2098  * mono_jit_runtime_invoke:
2099  * @method: the method to invoke
2100  * @obj: this pointer
2101  * @params: array of parameter values.
2102  * @exc: used to catch exceptions objects
2103  */
2104 static MonoObject*
2105 mono_jit_runtime_invoke (MonoMethod *method, void *obj, void **params, MonoObject **exc)
2106 {
2107         MonoMethod *invoke, *callee;
2108         MonoObject *(*runtime_invoke) (MonoObject *this, void **params, MonoObject **exc, void* compiled_method);
2109         MonoDomain *domain = mono_domain_get ();
2110         MonoJitDomainInfo *domain_info;
2111         RuntimeInvokeInfo *info, *info2;
2112
2113         if (obj == NULL && !(method->flags & METHOD_ATTRIBUTE_STATIC) && !method->string_ctor && (method->wrapper_type == 0)) {
2114                 g_warning ("Ignoring invocation of an instance method on a NULL instance.\n");
2115                 return NULL;
2116         }
2117
2118         domain_info = domain_jit_info (domain);
2119
2120         info = mono_conc_hashtable_lookup (domain_info->runtime_invoke_hash, method);
2121
2122         if (!info) {
2123                 if (mono_security_core_clr_enabled ()) {
2124                         /*
2125                          * This might be redundant since mono_class_vtable () already does this,
2126                          * but keep it just in case for moonlight.
2127                          */
2128                         mono_class_setup_vtable (method->klass);
2129                         if (method->klass->exception_type != MONO_EXCEPTION_NONE) {
2130                                 if (exc)
2131                                         *exc = (MonoObject*)mono_class_get_exception_for_failure (method->klass);
2132                                 else
2133                                         mono_raise_exception (mono_class_get_exception_for_failure (method->klass));
2134                                 return NULL;
2135                         }
2136                 }
2137
2138                 info = g_new0 (RuntimeInvokeInfo, 1);
2139
2140                 invoke = mono_marshal_get_runtime_invoke (method, FALSE);
2141                 info->vtable = mono_class_vtable_full (domain, method->klass, TRUE);
2142                 g_assert (info->vtable);
2143
2144                 callee = method;
2145                 if (method->klass->rank && (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) &&
2146                         (method->iflags & METHOD_IMPL_ATTRIBUTE_NATIVE)) {
2147                         /*
2148                          * Array Get/Set/Address methods. The JIT implements them using inline code
2149                          * inside the runtime invoke wrappers, so no need to compile them.
2150                          */
2151                         if (mono_aot_only) {
2152                                 /*
2153                                  * Call a wrapper, since the runtime invoke wrapper was not generated.
2154                                  */
2155                                 MonoMethod *wrapper;
2156
2157                                 wrapper = mono_marshal_get_array_accessor_wrapper (method);
2158                                 invoke = mono_marshal_get_runtime_invoke (wrapper, FALSE);
2159                                 callee = wrapper;
2160                         } else {
2161                                 callee = NULL;
2162                         }
2163                 }
2164
2165                 if (callee) {
2166                         MonoException *jit_ex = NULL;
2167
2168                         info->compiled_method = mono_jit_compile_method_with_opt (callee, mono_get_optimizations_for_method (callee, default_opt), &jit_ex);
2169                         if (!info->compiled_method) {
2170                                 g_free (info);
2171                                 g_assert (jit_ex);
2172                                 if (exc) {
2173                                         *exc = (MonoObject*)jit_ex;
2174                                         return NULL;
2175                                 } else {
2176                                         mono_raise_exception (jit_ex);
2177                                 }
2178                         }
2179
2180                         info->compiled_method = mini_add_method_trampoline (NULL, callee, info->compiled_method, mono_method_needs_static_rgctx_invoke (callee, FALSE), FALSE);
2181                 } else {
2182                         info->compiled_method = NULL;
2183                 }
2184
2185                 /*
2186                  * We want to avoid AOTing 1000s of runtime-invoke wrappers when running
2187                  * in full-aot mode, so we use a slower, but more generic wrapper if
2188                  * possible, built on top of the OP_DYN_CALL opcode provided by the JIT.
2189                  */
2190 #ifdef MONO_ARCH_DYN_CALL_SUPPORTED
2191                 if (mono_aot_only || debug_options.dyn_runtime_invoke) {
2192                         MonoType *ret_type;
2193                         MonoMethodSignature *sig = mono_method_signature (method);
2194                         gboolean supported = TRUE;
2195                         int i;
2196
2197                         if (method->string_ctor)
2198                                 sig = mono_marshal_get_string_ctor_signature (method);
2199
2200                         for (i = 0; i < sig->param_count; ++i) {
2201                                 MonoType *t = sig->params [i];
2202
2203                                 if (t->byref && t->type == MONO_TYPE_GENERICINST && mono_class_is_nullable (mono_class_from_mono_type (t)))
2204                                         supported = FALSE;
2205                         }
2206
2207                         if (mono_class_is_contextbound (method->klass) || !info->compiled_method)
2208                                 supported = FALSE;
2209
2210                         if (supported)
2211                                 info->dyn_call_info = mono_arch_dyn_call_prepare (sig);
2212
2213                         ret_type = sig->ret;
2214                         if (info->dyn_call_info) {
2215                                 switch (ret_type->type) {
2216                                 case MONO_TYPE_VOID:
2217                                         break;
2218                                 case MONO_TYPE_I1:
2219                                 case MONO_TYPE_U1:
2220                                 case MONO_TYPE_I2:
2221                                 case MONO_TYPE_U2:
2222                                 case MONO_TYPE_I4:
2223                                 case MONO_TYPE_U4:
2224                                 case MONO_TYPE_I:
2225                                 case MONO_TYPE_U:
2226                                 case MONO_TYPE_I8:
2227                                 case MONO_TYPE_U8:
2228                                 case MONO_TYPE_BOOLEAN:
2229                                 case MONO_TYPE_CHAR:
2230                                 case MONO_TYPE_R4:
2231                                 case MONO_TYPE_R8:
2232                                         info->ret_box_class = mono_class_from_mono_type (ret_type);
2233                                         break;
2234                                 case MONO_TYPE_PTR:
2235                                         info->ret_box_class = mono_defaults.int_class;
2236                                         break;
2237                                 case MONO_TYPE_STRING:
2238                                 case MONO_TYPE_CLASS:
2239                                 case MONO_TYPE_ARRAY:
2240                                 case MONO_TYPE_SZARRAY:
2241                                 case MONO_TYPE_OBJECT:
2242                                         break;
2243                                 case MONO_TYPE_GENERICINST:
2244                                         if (!MONO_TYPE_IS_REFERENCE (ret_type))
2245                                                 info->ret_box_class = mono_class_from_mono_type (ret_type);
2246                                         break;
2247                                 case MONO_TYPE_VALUETYPE:
2248                                         info->ret_box_class = mono_class_from_mono_type (ret_type);
2249                                         break;
2250                                 default:
2251                                         g_assert_not_reached ();
2252                                         break;
2253                                 }
2254                         }
2255                 }
2256 #endif
2257
2258                 if (!info->dyn_call_info)
2259                         info->runtime_invoke = mono_jit_compile_method (invoke);
2260
2261                 info2 = mono_conc_hashtable_insert (domain_info->runtime_invoke_hash, method, info);
2262                 if (info2) {
2263                         g_free (info);
2264                         info = info2;
2265                 }
2266         }
2267
2268         runtime_invoke = info->runtime_invoke;
2269
2270         /*
2271          * We need this here because mono_marshal_get_runtime_invoke can place
2272          * the helper method in System.Object and not the target class.
2273          */
2274         if (exc) {
2275                 *exc = (MonoObject*)mono_runtime_class_init_full (info->vtable, FALSE);
2276                 if (*exc)
2277                         return NULL;
2278         } else {
2279                 mono_runtime_class_init (info->vtable);
2280         }
2281
2282         /* The wrappers expect this to be initialized to NULL */
2283         if (exc)
2284                 *exc = NULL;
2285
2286 #ifdef MONO_ARCH_DYN_CALL_SUPPORTED
2287         if (info->dyn_call_info) {
2288                 MonoMethodSignature *sig = mono_method_signature (method);
2289                 gpointer *args;
2290                 static RuntimeInvokeDynamicFunction dyn_runtime_invoke;
2291                 int i, pindex;
2292                 guint8 buf [256];
2293                 guint8 retval [256];
2294
2295                 if (!dyn_runtime_invoke) {
2296                         invoke = mono_marshal_get_runtime_invoke_dynamic ();
2297                         dyn_runtime_invoke = mono_jit_compile_method (invoke);
2298                 }
2299
2300                 /* Convert the arguments to the format expected by start_dyn_call () */
2301                 args = g_alloca ((sig->param_count + sig->hasthis) * sizeof (gpointer));
2302                 pindex = 0;
2303                 if (sig->hasthis)
2304                         args [pindex ++] = &obj;
2305                 for (i = 0; i < sig->param_count; ++i) {
2306                         MonoType *t = sig->params [i];
2307
2308                         if (t->byref) {
2309                                 args [pindex ++] = &params [i];
2310                         } else if (MONO_TYPE_IS_REFERENCE (t) || t->type == MONO_TYPE_PTR) {
2311                                 args [pindex ++] = &params [i];
2312                         } else {
2313                                 args [pindex ++] = params [i];
2314                         }
2315                 }
2316
2317                 //printf ("M: %s\n", mono_method_full_name (method, TRUE));
2318
2319                 mono_arch_start_dyn_call (info->dyn_call_info, (gpointer**)args, retval, buf, sizeof (buf));
2320
2321                 dyn_runtime_invoke (buf, exc, info->compiled_method);
2322
2323                 mono_arch_finish_dyn_call (info->dyn_call_info, buf);
2324
2325                 if (info->ret_box_class)
2326                         return mono_value_box (domain, info->ret_box_class, retval);
2327                 else
2328                         return *(MonoObject**)retval;
2329         }
2330 #endif
2331
2332         return runtime_invoke (obj, params, exc, info->compiled_method);
2333 }
2334
2335 MONO_SIG_HANDLER_FUNC (, mono_sigfpe_signal_handler)
2336 {
2337         MonoException *exc = NULL;
2338         MonoJitInfo *ji;
2339         MONO_SIG_HANDLER_INFO_TYPE *info = MONO_SIG_HANDLER_GET_INFO ();
2340         MONO_SIG_HANDLER_GET_CONTEXT;
2341
2342         ji = mono_jit_info_table_find (mono_domain_get (), mono_arch_ip_from_context (ctx));
2343
2344 #if defined(MONO_ARCH_HAVE_IS_INT_OVERFLOW)
2345         if (mono_arch_is_int_overflow (ctx, info))
2346                 /*
2347                  * The spec says this throws ArithmeticException, but MS throws the derived
2348                  * OverflowException.
2349                  */
2350                 exc = mono_get_exception_overflow ();
2351         else
2352                 exc = mono_get_exception_divide_by_zero ();
2353 #else
2354         exc = mono_get_exception_divide_by_zero ();
2355 #endif
2356
2357         if (!ji) {
2358                 if (!mono_do_crash_chaining && mono_chain_signal (MONO_SIG_HANDLER_PARAMS))
2359                         return;
2360
2361                 mono_handle_native_sigsegv (SIGSEGV, ctx, info);
2362                 if (mono_do_crash_chaining) {
2363                         mono_chain_signal (MONO_SIG_HANDLER_PARAMS);
2364                         return;
2365                 }
2366         }
2367
2368         mono_arch_handle_exception (ctx, exc);
2369 }
2370
2371 MONO_SIG_HANDLER_FUNC (, mono_sigill_signal_handler)
2372 {
2373         MonoException *exc;
2374         MONO_SIG_HANDLER_GET_CONTEXT;
2375
2376         exc = mono_get_exception_execution_engine ("SIGILL");
2377
2378         mono_arch_handle_exception (ctx, exc);
2379 }
2380
2381 #if defined(MONO_ARCH_USE_SIGACTION) || defined(HOST_WIN32)
2382 #define HAVE_SIG_INFO
2383 #endif
2384
2385 MONO_SIG_HANDLER_FUNC (, mono_sigsegv_signal_handler)
2386 {
2387         MonoJitInfo *ji;
2388         MonoJitTlsData *jit_tls = mono_native_tls_get_value (mono_jit_tls_id);
2389         gpointer fault_addr = NULL;
2390 #ifdef HAVE_SIG_INFO
2391         MONO_SIG_HANDLER_INFO_TYPE *info = MONO_SIG_HANDLER_GET_INFO ();
2392 #else
2393         void *info = NULL;
2394 #endif
2395         MONO_SIG_HANDLER_GET_CONTEXT;
2396
2397 #if defined(MONO_ARCH_SOFT_DEBUG_SUPPORTED) && defined(HAVE_SIG_INFO)
2398         if (mono_arch_is_single_step_event (info, ctx)) {
2399                 mono_debugger_agent_single_step_event (ctx);
2400                 return;
2401         } else if (mono_arch_is_breakpoint_event (info, ctx)) {
2402                 mono_debugger_agent_breakpoint_hit (ctx);
2403                 return;
2404         }
2405 #endif
2406
2407 #if defined(HAVE_SIG_INFO)
2408 #if !defined(HOST_WIN32)
2409         fault_addr = info->si_addr;
2410         if (mono_aot_is_pagefault (info->si_addr)) {
2411                 mono_aot_handle_pagefault (info->si_addr);
2412                 return;
2413         }
2414 #endif
2415
2416         /* The thread might no be registered with the runtime */
2417         if (!mono_domain_get () || !jit_tls) {
2418                 if (!mono_do_crash_chaining && mono_chain_signal (MONO_SIG_HANDLER_PARAMS))
2419                         return;
2420                 mono_handle_native_sigsegv (SIGSEGV, ctx, info);
2421                 if (mono_do_crash_chaining) {
2422                         mono_chain_signal (MONO_SIG_HANDLER_PARAMS);
2423                         return;
2424                 }
2425         }
2426 #endif
2427
2428         ji = mono_jit_info_table_find (mono_domain_get (), mono_arch_ip_from_context (ctx));
2429
2430 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
2431         if (mono_handle_soft_stack_ovf (jit_tls, ji, ctx, info, (guint8*)info->si_addr))
2432                 return;
2433
2434 #ifdef MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX
2435         /* info->si_addr seems to be NULL on some kernels when handling stack overflows */
2436         fault_addr = info->si_addr;
2437         if (fault_addr == NULL) {
2438                 MonoContext mctx;
2439
2440                 mono_sigctx_to_monoctx (ctx, &mctx);
2441
2442                 fault_addr = MONO_CONTEXT_GET_SP (&mctx);
2443         }
2444 #endif
2445
2446         if (jit_tls->stack_size &&
2447                 ABS ((guint8*)fault_addr - ((guint8*)jit_tls->end_of_stack - jit_tls->stack_size)) < 8192 * sizeof (gpointer)) {
2448                 /*
2449                  * The hard-guard page has been hit: there is not much we can do anymore
2450                  * Print a hopefully clear message and abort.
2451                  */
2452                 mono_handle_hard_stack_ovf (jit_tls, ji, ctx, (guint8*)info->si_addr);
2453                 g_assert_not_reached ();
2454         } else {
2455                 /* The original handler might not like that it is executed on an altstack... */
2456                 if (!ji && mono_chain_signal (MONO_SIG_HANDLER_PARAMS))
2457                         return;
2458
2459                 mono_arch_handle_altstack_exception (ctx, info, info->si_addr, FALSE);
2460         }
2461 #else
2462
2463         if (!ji) {
2464                 if (!mono_do_crash_chaining && mono_chain_signal (MONO_SIG_HANDLER_PARAMS))
2465                         return;
2466
2467                 mono_handle_native_sigsegv (SIGSEGV, ctx, info);
2468
2469                 if (mono_do_crash_chaining) {
2470                         mono_chain_signal (MONO_SIG_HANDLER_PARAMS);
2471                         return;
2472                 }
2473         }
2474
2475         mono_arch_handle_exception (ctx, NULL);
2476 #endif
2477 }
2478
2479 MONO_SIG_HANDLER_FUNC (, mono_sigint_signal_handler)
2480 {
2481         MonoException *exc;
2482         MONO_SIG_HANDLER_GET_CONTEXT;
2483
2484         exc = mono_get_exception_execution_engine ("Interrupted (SIGINT).");
2485
2486         mono_arch_handle_exception (ctx, exc);
2487 }
2488
2489 #ifndef DISABLE_REMOTING
2490 /* mono_jit_create_remoting_trampoline:
2491  * @method: pointer to the method info
2492  *
2493  * Creates a trampoline which calls the remoting functions. This
2494  * is used in the vtable of transparent proxies.
2495  *
2496  * Returns: a pointer to the newly created code
2497  */
2498 static gpointer
2499 mono_jit_create_remoting_trampoline (MonoDomain *domain, MonoMethod *method, MonoRemotingTarget target)
2500 {
2501         MonoMethod *nm;
2502         guint8 *addr = NULL;
2503
2504         if ((method->flags & METHOD_ATTRIBUTE_VIRTUAL) && mono_method_signature (method)->generic_param_count) {
2505                 return mono_create_specific_trampoline (method, MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING,
2506                         domain, NULL);
2507         }
2508
2509         if ((method->flags & METHOD_ATTRIBUTE_ABSTRACT) ||
2510             (mono_method_signature (method)->hasthis && (mono_class_is_marshalbyref (method->klass) || method->klass == mono_defaults.object_class))) {
2511                 nm = mono_marshal_get_remoting_invoke_for_target (method, target);
2512                 addr = mono_compile_method (nm);
2513         } else
2514         {
2515                 addr = mono_compile_method (method);
2516         }
2517         return mono_get_addr_from_ftnptr (addr);
2518 }
2519 #endif
2520
2521 static gpointer *vtable_trampolines;
2522 static int vtable_trampolines_size;
2523
2524 gpointer
2525 mini_get_vtable_trampoline (int slot_index)
2526 {
2527         int index = slot_index + MONO_IMT_SIZE;
2528
2529         g_assert (slot_index >= - MONO_IMT_SIZE);
2530         if (!vtable_trampolines || slot_index + MONO_IMT_SIZE >= vtable_trampolines_size) {
2531                 mono_jit_lock ();
2532                 if (!vtable_trampolines || index >= vtable_trampolines_size) {
2533                         int new_size;
2534                         gpointer new_table;
2535
2536                         new_size = vtable_trampolines_size ? vtable_trampolines_size * 2 : 128;
2537                         while (new_size <= index)
2538                                 new_size *= 2;
2539                         new_table = g_new0 (gpointer, new_size);
2540
2541                         if (vtable_trampolines)
2542                                 memcpy (new_table, vtable_trampolines, vtable_trampolines_size * sizeof (gpointer));
2543                         g_free (vtable_trampolines);
2544                         mono_memory_barrier ();
2545                         vtable_trampolines = new_table;
2546                         vtable_trampolines_size = new_size;
2547                 }
2548                 mono_jit_unlock ();
2549         }
2550
2551         if (!vtable_trampolines [index])
2552                 vtable_trampolines [index] = mono_create_specific_trampoline (GUINT_TO_POINTER (slot_index), MONO_TRAMPOLINE_VCALL, mono_get_root_domain (), NULL);
2553         return vtable_trampolines [index];
2554 }
2555
2556 gpointer
2557 mono_get_delegate_virtual_invoke_impl (MonoMethodSignature *sig, MonoMethod *method)
2558 {
2559         gboolean is_virtual_generic, is_interface, load_imt_reg;
2560         int offset, idx;
2561
2562         static guint8 **cache = NULL;
2563         static int cache_size = 0;
2564
2565         if (!method)
2566                 return NULL;
2567
2568         if (MONO_TYPE_ISSTRUCT (sig->ret))
2569                 return NULL;
2570
2571         is_virtual_generic = method->is_inflated && mono_method_get_declaring_generic_method (method)->is_generic;
2572         is_interface = method->klass->flags & TYPE_ATTRIBUTE_INTERFACE ? TRUE : FALSE;
2573         load_imt_reg = is_virtual_generic || is_interface;
2574
2575         if (is_interface && !is_virtual_generic)
2576                 offset = ((gint32)mono_method_get_imt_slot (method) - MONO_IMT_SIZE) * SIZEOF_VOID_P;
2577         else
2578                 offset = G_STRUCT_OFFSET (MonoVTable, vtable) + ((mono_method_get_vtable_index (method)) * (SIZEOF_VOID_P));
2579
2580         idx = (offset / SIZEOF_VOID_P + MONO_IMT_SIZE) * 2 + (load_imt_reg ? 1 : 0);
2581         g_assert (idx >= 0);
2582
2583         /* Resize the cache to idx + 1 */
2584         if (cache_size < idx + 1) {
2585                 mono_jit_lock ();
2586                 if (cache_size < idx + 1) {
2587                         guint8 **new_cache;
2588                         int new_cache_size = idx + 1;
2589
2590                         new_cache = g_new0 (guint8*, new_cache_size);
2591                         if (cache)
2592                                 memcpy (new_cache, cache, cache_size * sizeof (guint8*));
2593                         g_free (cache);
2594
2595                         mono_memory_barrier ();
2596                         cache = new_cache;
2597                         cache_size = new_cache_size;
2598                 }
2599                 mono_jit_unlock ();
2600         }
2601
2602         if (cache [idx])
2603                 return cache [idx];
2604
2605         /* FIXME Support more cases */
2606         if (mono_aot_only) {
2607                 char tramp_name [256];
2608
2609                 sprintf (tramp_name, "delegate_virtual_invoke%s_%d", load_imt_reg ? "_imt" : "", offset / SIZEOF_VOID_P);
2610                 cache [idx] = mono_aot_get_trampoline (tramp_name);
2611                 g_assert (cache [idx]);
2612         } else {
2613                 cache [idx] = mono_arch_get_delegate_virtual_invoke_impl (sig, method, offset, load_imt_reg);
2614         }
2615         return cache [idx];
2616 }
2617
2618 static gpointer
2619 mini_get_imt_trampoline (int slot_index)
2620 {
2621         return mini_get_vtable_trampoline (slot_index - MONO_IMT_SIZE);
2622 }
2623
2624 static void
2625 mini_parse_debug_options (void)
2626 {
2627         const char *options = g_getenv ("MONO_DEBUG");
2628         gchar **args, **ptr;
2629
2630         if (!options)
2631                 return;
2632
2633         args = g_strsplit (options, ",", -1);
2634
2635         for (ptr = args; ptr && *ptr; ptr++) {
2636                 const char *arg = *ptr;
2637
2638                 if (!strcmp (arg, "handle-sigint"))
2639                         debug_options.handle_sigint = TRUE;
2640                 else if (!strcmp (arg, "keep-delegates"))
2641                         debug_options.keep_delegates = TRUE;
2642                 else if (!strcmp (arg, "reverse-pinvoke-exceptions"))
2643                         debug_options.reverse_pinvoke_exceptions = TRUE;
2644                 else if (!strcmp (arg, "collect-pagefault-stats"))
2645                         debug_options.collect_pagefault_stats = TRUE;
2646                 else if (!strcmp (arg, "break-on-unverified"))
2647                         debug_options.break_on_unverified = TRUE;
2648                 else if (!strcmp (arg, "no-gdb-backtrace"))
2649                         debug_options.no_gdb_backtrace = TRUE;
2650                 else if (!strcmp (arg, "suspend-on-sigsegv"))
2651                         debug_options.suspend_on_sigsegv = TRUE;
2652                 else if (!strcmp (arg, "suspend-on-exception"))
2653                         debug_options.suspend_on_exception = TRUE;
2654                 else if (!strcmp (arg, "suspend-on-unhandled"))
2655                         debug_options.suspend_on_unhandled = TRUE;
2656                 else if (!strcmp (arg, "dont-free-domains"))
2657                         mono_dont_free_domains = TRUE;
2658                 else if (!strcmp (arg, "dyn-runtime-invoke"))
2659                         debug_options.dyn_runtime_invoke = TRUE;
2660                 else if (!strcmp (arg, "gdb"))
2661                         debug_options.gdb = TRUE;
2662                 else if (!strcmp (arg, "explicit-null-checks"))
2663                         debug_options.explicit_null_checks = TRUE;
2664                 else if (!strcmp (arg, "gen-seq-points"))
2665                         debug_options.gen_sdb_seq_points = TRUE;
2666                 else if (!strcmp (arg, "gen-compact-seq-points"))
2667                         debug_options.gen_seq_points_compact_data = TRUE;
2668                 else if (!strcmp (arg, "init-stacks"))
2669                         debug_options.init_stacks = TRUE;
2670                 else if (!strcmp (arg, "casts"))
2671                         debug_options.better_cast_details = TRUE;
2672                 else if (!strcmp (arg, "soft-breakpoints"))
2673                         debug_options.soft_breakpoints = TRUE;
2674                 else if (!strcmp (arg, "check-pinvoke-callconv"))
2675                         debug_options.check_pinvoke_callconv = TRUE;
2676                 else if (!strcmp (arg, "debug-domain-unload"))
2677                         mono_enable_debug_domain_unload (TRUE);
2678                 else if (!strcmp (arg, "partial-sharing"))
2679                         mono_set_partial_sharing_supported (TRUE);
2680                 else if (!strcmp (arg, "align-small-structs"))
2681                         mono_align_small_structs = TRUE;
2682                 else {
2683                         fprintf (stderr, "Invalid option for the MONO_DEBUG env variable: %s\n", arg);
2684                         fprintf (stderr, "Available options: 'handle-sigint', 'keep-delegates', 'reverse-pinvoke-exceptions', 'collect-pagefault-stats', 'break-on-unverified', 'no-gdb-backtrace', 'dont-free-domains', 'suspend-on-sigsegv', 'suspend-on-exception', 'suspend-on-unhandled', 'dyn-runtime-invoke', 'gdb', 'explicit-null-checks', 'init-stacks', 'check-pinvoke-callconv', 'debug-domain-unload', 'partial-sharing', 'align-small-structs'\n");
2685                         exit (1);
2686                 }
2687         }
2688
2689         g_strfreev (args);
2690 }
2691
2692 MonoDebugOptions *
2693 mini_get_debug_options (void)
2694 {
2695         return &debug_options;
2696 }
2697
2698 static gpointer
2699 mini_create_ftnptr (MonoDomain *domain, gpointer addr)
2700 {
2701 #if !defined(__ia64__) && (!defined(__ppc64__) && !defined(__powerpc64__) || _CALL_ELF == 2)
2702         return addr;
2703 #else
2704         gpointer* desc = NULL;
2705
2706         if ((desc = g_hash_table_lookup (domain->ftnptrs_hash, addr)))
2707                 return desc;
2708 #       ifdef __ia64__
2709         desc = mono_domain_code_reserve (domain, 2 * sizeof (gpointer));
2710
2711         desc [0] = addr;
2712         desc [1] = NULL;
2713 #       elif defined(__ppc64__) || defined(__powerpc64__)
2714
2715         desc = mono_domain_alloc0 (domain, 3 * sizeof (gpointer));
2716
2717         desc [0] = addr;
2718         desc [1] = NULL;
2719         desc [2] = NULL;
2720 #       endif
2721         g_hash_table_insert (domain->ftnptrs_hash, addr, desc);
2722         return desc;
2723 #endif
2724 }
2725
2726 static gpointer
2727 mini_get_addr_from_ftnptr (gpointer descr)
2728 {
2729 #if defined(__ia64__) || ((defined(__ppc64__) || defined(__powerpc64__)) && _CALL_ELF != 2)
2730         return *(gpointer*)descr;
2731 #else
2732         return descr;
2733 #endif
2734 }
2735
2736 static void
2737 register_jit_stats (void)
2738 {
2739         mono_counters_register ("Compiled methods", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.methods_compiled);
2740         mono_counters_register ("Methods from AOT", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.methods_aot);
2741         mono_counters_register ("Methods JITted using mono JIT", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.methods_without_llvm);
2742         mono_counters_register ("Methods JITted using LLVM", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.methods_with_llvm);
2743         mono_counters_register ("Total time spent JITting (sec)", MONO_COUNTER_JIT | MONO_COUNTER_DOUBLE, &mono_jit_stats.jit_time);
2744         mono_counters_register ("Basic blocks", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.basic_blocks);
2745         mono_counters_register ("Max basic blocks", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.max_basic_blocks);
2746         mono_counters_register ("Allocated vars", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.allocate_var);
2747         mono_counters_register ("Code reallocs", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.code_reallocs);
2748         mono_counters_register ("Allocated code size", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.allocated_code_size);
2749         mono_counters_register ("Allocated seq points size", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.allocated_seq_points_size);
2750         mono_counters_register ("Inlineable methods", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.inlineable_methods);
2751         mono_counters_register ("Inlined methods", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.inlined_methods);
2752         mono_counters_register ("Regvars", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.regvars);
2753         mono_counters_register ("Locals stack size", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.locals_stack_size);
2754         mono_counters_register ("Method cache lookups", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.methods_lookups);
2755         mono_counters_register ("Compiled CIL code size", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.cil_code_size);
2756         mono_counters_register ("Native code size", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.native_code_size);
2757         mono_counters_register ("Aliases found", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.alias_found);
2758         mono_counters_register ("Aliases eliminated", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.alias_removed);
2759         mono_counters_register ("Aliased loads eliminated", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.loads_eliminated);
2760         mono_counters_register ("Aliased stores eliminated", MONO_COUNTER_JIT | MONO_COUNTER_INT, &mono_jit_stats.stores_eliminated);
2761 }
2762
2763 static void runtime_invoke_info_free (gpointer value);
2764
2765 static gint
2766 class_method_pair_equal (gconstpointer ka, gconstpointer kb)
2767 {
2768         const MonoClassMethodPair *apair = ka;
2769         const MonoClassMethodPair *bpair = kb;
2770
2771         return apair->klass == bpair->klass && apair->method == bpair->method ? 1 : 0;
2772 }
2773
2774 static guint
2775 class_method_pair_hash (gconstpointer data)
2776 {
2777         const MonoClassMethodPair *pair = data;
2778
2779         return (gsize)pair->klass ^ (gsize)pair->method;
2780 }
2781
2782 static void
2783 mini_create_jit_domain_info (MonoDomain *domain)
2784 {
2785         MonoJitDomainInfo *info = g_new0 (MonoJitDomainInfo, 1);
2786
2787         info->class_init_trampoline_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
2788         info->jump_trampoline_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
2789         info->jit_trampoline_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
2790         info->delegate_trampoline_hash = g_hash_table_new (class_method_pair_hash, class_method_pair_equal);
2791         info->llvm_vcall_trampoline_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
2792         info->runtime_invoke_hash = mono_conc_hashtable_new_full (&domain->lock, mono_aligned_addr_hash, NULL, NULL, runtime_invoke_info_free);
2793         info->seq_points = g_hash_table_new_full (mono_aligned_addr_hash, NULL, NULL, mono_seq_point_info_free);
2794         info->arch_seq_points = g_hash_table_new (mono_aligned_addr_hash, NULL);
2795         info->jump_target_hash = g_hash_table_new (NULL, NULL);
2796
2797         domain->runtime_info = info;
2798 }
2799
2800 static void
2801 delete_jump_list (gpointer key, gpointer value, gpointer user_data)
2802 {
2803         MonoJumpList *jlist = value;
2804         g_slist_free (jlist->list);
2805 }
2806
2807 static void
2808 delete_got_slot_list (gpointer key, gpointer value, gpointer user_data)
2809 {
2810         GSList *list = value;
2811         g_slist_free (list);
2812 }
2813
2814 static void
2815 dynamic_method_info_free (gpointer key, gpointer value, gpointer user_data)
2816 {
2817         MonoJitDynamicMethodInfo *di = value;
2818         mono_code_manager_destroy (di->code_mp);
2819         g_free (di);
2820 }
2821
2822 static void
2823 runtime_invoke_info_free (gpointer value)
2824 {
2825         RuntimeInvokeInfo *info = (RuntimeInvokeInfo*)value;
2826
2827 #ifdef MONO_ARCH_DYN_CALL_SUPPORTED
2828         if (info->dyn_call_info)
2829                 mono_arch_dyn_call_free (info->dyn_call_info);
2830 #endif
2831         g_free (info);
2832 }
2833
2834 static void
2835 mini_free_jit_domain_info (MonoDomain *domain)
2836 {
2837         MonoJitDomainInfo *info = domain_jit_info (domain);
2838
2839         g_hash_table_foreach (info->jump_target_hash, delete_jump_list, NULL);
2840         g_hash_table_destroy (info->jump_target_hash);
2841         if (info->jump_target_got_slot_hash) {
2842                 g_hash_table_foreach (info->jump_target_got_slot_hash, delete_got_slot_list, NULL);
2843                 g_hash_table_destroy (info->jump_target_got_slot_hash);
2844         }
2845         if (info->dynamic_code_hash) {
2846                 g_hash_table_foreach (info->dynamic_code_hash, dynamic_method_info_free, NULL);
2847                 g_hash_table_destroy (info->dynamic_code_hash);
2848         }
2849         if (info->method_code_hash)
2850                 g_hash_table_destroy (info->method_code_hash);
2851         g_hash_table_destroy (info->class_init_trampoline_hash);
2852         g_hash_table_destroy (info->jump_trampoline_hash);
2853         g_hash_table_destroy (info->jit_trampoline_hash);
2854         g_hash_table_destroy (info->delegate_trampoline_hash);
2855         if (info->static_rgctx_trampoline_hash)
2856                 g_hash_table_destroy (info->static_rgctx_trampoline_hash);
2857         g_hash_table_destroy (info->llvm_vcall_trampoline_hash);
2858         mono_conc_hashtable_destroy (info->runtime_invoke_hash);
2859         g_hash_table_destroy (info->seq_points);
2860         g_hash_table_destroy (info->arch_seq_points);
2861         if (info->agent_info)
2862                 mono_debugger_agent_free_domain_info (domain);
2863         if (info->gsharedvt_arg_tramp_hash)
2864                 g_hash_table_destroy (info->gsharedvt_arg_tramp_hash);
2865 #ifdef ENABLE_LLVM
2866         mono_llvm_free_domain_info (domain);
2867 #endif
2868
2869         g_free (domain->runtime_info);
2870         domain->runtime_info = NULL;
2871 }
2872
2873 #ifdef ENABLE_LLVM
2874 static gboolean
2875 llvm_init_inner (void)
2876 {
2877         if (!mono_llvm_load (NULL))
2878                 return FALSE;
2879
2880         mono_llvm_init ();
2881         return TRUE;
2882 }
2883 #endif
2884
2885 /*
2886  * mini_llvm_init:
2887  *
2888  *   Load and initialize LLVM support.
2889  * Return TRUE on success.
2890  */
2891 gboolean
2892 mini_llvm_init (void)
2893 {
2894 #ifdef ENABLE_LLVM
2895         static gboolean llvm_inited;
2896         static gboolean init_result;
2897
2898         mono_loader_lock_if_inited ();
2899         if (!llvm_inited) {
2900                 init_result = llvm_init_inner ();
2901                 llvm_inited = TRUE;
2902         }
2903         mono_loader_unlock_if_inited ();
2904         return init_result;
2905 #else
2906         return FALSE;
2907 #endif
2908 }
2909
2910 MonoDomain *
2911 mini_init (const char *filename, const char *runtime_version)
2912 {
2913         MonoDomain *domain;
2914         MonoRuntimeCallbacks callbacks;
2915         MonoThreadInfoRuntimeCallbacks ticallbacks;
2916
2917         MONO_VES_INIT_BEGIN ();
2918
2919 #if defined(__linux__) && !defined(__native_client__)
2920         if (access ("/proc/self/maps", F_OK) != 0) {
2921                 g_print ("Mono requires /proc to be mounted.\n");
2922                 exit (1);
2923         }
2924 #endif
2925
2926         mono_mutex_init_recursive (&jit_mutex);
2927
2928         mono_cross_helpers_run ();
2929
2930         mini_jit_init ();
2931
2932         /* Happens when using the embedding interface */
2933         if (!default_opt_set)
2934                 default_opt = mono_parse_default_optimizations (NULL);
2935
2936 #ifdef MONO_ARCH_GSHAREDVT_SUPPORTED
2937         if (mono_aot_only)
2938                 mono_set_generic_sharing_vt_supported (TRUE);
2939 #endif
2940
2941 #ifdef MONO_HAVE_FAST_TLS
2942         MONO_FAST_TLS_INIT (mono_jit_tls);
2943         MONO_FAST_TLS_INIT (mono_lmf_addr);
2944 #ifdef MONO_ARCH_ENABLE_MONO_LMF_VAR
2945         MONO_FAST_TLS_INIT (mono_lmf);
2946 #endif
2947 #endif
2948
2949         mono_runtime_set_has_tls_get (MONO_ARCH_HAVE_TLS_GET);
2950
2951         if (!global_codeman)
2952                 global_codeman = mono_code_manager_new ();
2953
2954         memset (&callbacks, 0, sizeof (callbacks));
2955         callbacks.create_ftnptr = mini_create_ftnptr;
2956         callbacks.get_addr_from_ftnptr = mini_get_addr_from_ftnptr;
2957         callbacks.get_runtime_build_info = mono_get_runtime_build_info;
2958         callbacks.set_cast_details = mono_set_cast_details;
2959         callbacks.debug_log = mono_debugger_agent_debug_log;
2960         callbacks.debug_log_is_enabled = mono_debugger_agent_debug_log_is_enabled;
2961         callbacks.tls_key_supported = mini_tls_key_supported;
2962
2963         callbacks.get_vtable_trampoline = mini_get_vtable_trampoline;
2964         callbacks.get_imt_trampoline = mini_get_imt_trampoline;
2965
2966         mono_install_callbacks (&callbacks);
2967
2968         memset (&ticallbacks, 0, sizeof (ticallbacks));
2969         ticallbacks.setup_async_callback = mono_setup_async_callback;
2970         ticallbacks.thread_state_init_from_sigctx = mono_thread_state_init_from_sigctx;
2971         ticallbacks.thread_state_init_from_handle = mono_thread_state_init_from_handle;
2972
2973         mono_counters_init ();
2974
2975         mono_threads_runtime_init (&ticallbacks);
2976
2977         if (g_getenv ("MONO_DEBUG") != NULL)
2978                 mini_parse_debug_options ();
2979
2980         mono_code_manager_init ();
2981
2982         mono_hwcap_init ();
2983
2984         mono_arch_cpu_init ();
2985
2986         mono_arch_init ();
2987
2988         mono_unwind_init ();
2989
2990 #ifdef XDEBUG_ENABLED
2991         if (g_getenv ("MONO_XDEBUG")) {
2992                 const char *xdebug_opts = g_getenv ("MONO_XDEBUG");
2993                 mono_xdebug_init (xdebug_opts);
2994                 /* So methods for multiple domains don't have the same address */
2995                 mono_dont_free_domains = TRUE;
2996                 mono_using_xdebug = TRUE;
2997         } else if (mini_get_debug_options ()->gdb) {
2998                 mono_xdebug_init ((char*)"gdb");
2999                 mono_dont_free_domains = TRUE;
3000                 mono_using_xdebug = TRUE;
3001         }
3002 #endif
3003
3004 #ifdef ENABLE_LLVM
3005         if (mono_use_llvm) {
3006                 if (!mono_llvm_load (NULL)) {
3007                         mono_use_llvm = FALSE;
3008                         fprintf (stderr, "Mono Warning: llvm support could not be loaded.\n");
3009                 }
3010         }
3011         if (mono_use_llvm)
3012                 mono_llvm_init ();
3013 #endif
3014
3015         mono_trampolines_init ();
3016
3017         mono_native_tls_alloc (&mono_jit_tls_id, NULL);
3018
3019         if (default_opt & MONO_OPT_AOT)
3020                 mono_aot_init ();
3021
3022         mono_debugger_agent_init ();
3023
3024 #ifdef MONO_ARCH_GSHARED_SUPPORTED
3025         mono_set_generic_sharing_supported (TRUE);
3026 #endif
3027
3028 #ifndef MONO_CROSS_COMPILE
3029         mono_runtime_install_handlers ();
3030 #endif
3031         mono_threads_install_cleanup (mini_thread_cleanup);
3032
3033 #ifdef MONO_ARCH_HAVE_NOTIFY_PENDING_EXC
3034         check_for_pending_exc = FALSE;
3035         mono_threads_install_notify_pending_exc ((MonoThreadNotifyPendingExcFunc)mono_arch_notify_pending_exc);
3036 #endif
3037
3038 #define JIT_TRAMPOLINES_WORK
3039 #ifdef JIT_TRAMPOLINES_WORK
3040         mono_install_compile_method (mono_jit_compile_method);
3041         mono_install_free_method (mono_jit_free_method);
3042         mono_install_trampoline (mono_create_jit_trampoline);
3043         mono_install_jump_trampoline (mono_create_jump_trampoline);
3044 #ifndef DISABLE_REMOTING
3045         mono_install_remoting_trampoline (mono_jit_create_remoting_trampoline);
3046 #endif
3047         mono_install_delegate_trampoline (mono_create_delegate_trampoline);
3048         mono_install_create_domain_hook (mini_create_jit_domain_info);
3049         mono_install_free_domain_hook (mini_free_jit_domain_info);
3050 #endif
3051 #define JIT_INVOKE_WORKS
3052 #ifdef JIT_INVOKE_WORKS
3053         mono_install_runtime_invoke (mono_jit_runtime_invoke);
3054 #endif
3055         mono_install_get_cached_class_info (mono_aot_get_cached_class_info);
3056         mono_install_get_class_from_name (mono_aot_get_class_from_name);
3057         mono_install_jit_info_find_in_aot (mono_aot_find_jit_info);
3058
3059         if (debug_options.collect_pagefault_stats)
3060                 mono_aot_set_make_unreadable (TRUE);
3061
3062         if (runtime_version)
3063                 domain = mono_init_version (filename, runtime_version);
3064         else
3065                 domain = mono_init_from_assembly (filename, filename);
3066
3067         if (mono_aot_only) {
3068                 /* This helps catch code allocation requests */
3069                 mono_code_manager_set_read_only (domain->code_mp);
3070                 mono_marshal_use_aot_wrappers (TRUE);
3071         }
3072
3073         if (mono_aot_only)
3074                 mono_install_imt_thunk_builder (mono_aot_get_imt_thunk);
3075         else
3076                 mono_install_imt_thunk_builder (mono_arch_build_imt_thunk);
3077
3078         /*Init arch tls information only after the metadata side is inited to make sure we see dynamic appdomain tls keys*/
3079         mono_arch_finish_init ();
3080
3081         mono_icall_init ();
3082
3083         /* This must come after mono_init () in the aot-only case */
3084         mono_exceptions_init ();
3085
3086         /* This should come after mono_init () too */
3087         mini_gc_init ();
3088
3089 #ifndef DISABLE_JIT
3090         mono_create_helper_signatures ();
3091 #endif
3092
3093         register_jit_stats ();
3094
3095 #define JIT_CALLS_WORK
3096 #ifdef JIT_CALLS_WORK
3097         /* Needs to be called here since register_jit_icall depends on it */
3098         mono_marshal_init ();
3099
3100         mono_arch_register_lowlevel_calls ();
3101
3102         register_icalls ();
3103
3104         mono_generic_sharing_init ();
3105 #endif
3106
3107 #ifdef MONO_ARCH_SIMD_INTRINSICS
3108         mono_simd_intrinsics_init ();
3109 #endif
3110
3111 #if MONO_SUPPORT_TASKLETS
3112         mono_tasklets_init ();
3113 #endif
3114
3115         register_trampolines (domain);
3116
3117         if (mono_compile_aot)
3118                 /*
3119                  * Avoid running managed code when AOT compiling, since the platform
3120                  * might only support aot-only execution.
3121                  */
3122                 mono_runtime_set_no_exec (TRUE);
3123
3124 #define JIT_RUNTIME_WORKS
3125 #ifdef JIT_RUNTIME_WORKS
3126         mono_install_runtime_cleanup ((MonoDomainFunc)mini_cleanup);
3127         mono_runtime_init (domain, mono_thread_start_cb, mono_thread_attach_cb);
3128         mono_thread_attach (domain);
3129 #endif
3130
3131         mono_profiler_runtime_initialized ();
3132
3133         MONO_VES_INIT_END ();
3134
3135         return domain;
3136 }
3137
3138 static void
3139 register_icalls (void)
3140 {
3141         mono_add_internal_call ("System.Diagnostics.StackFrame::get_frame_info",
3142                                 ves_icall_get_frame_info);
3143         mono_add_internal_call ("System.Diagnostics.StackTrace::get_trace",
3144                                 ves_icall_get_trace);
3145         mono_add_internal_call ("System.Exception::get_trace",
3146                                 ves_icall_System_Exception_get_trace);
3147         mono_add_internal_call ("Mono.Runtime::mono_runtime_install_handlers",
3148                                 mono_runtime_install_handlers);
3149
3150 #if defined(PLATFORM_ANDROID) || defined(TARGET_ANDROID)
3151         mono_add_internal_call ("System.Diagnostics.Debugger::Mono_UnhandledException_internal",
3152                                 mono_debugger_agent_unhandled_exception);
3153 #endif
3154
3155         /*
3156          * It's important that we pass `TRUE` as the last argument here, as
3157          * it causes the JIT to omit a wrapper for these icalls. If the JIT
3158          * *did* emit a wrapper, we'd be looking at infinite recursion since
3159          * the wrapper would call the icall which would call the wrapper and
3160          * so on.
3161          */
3162         register_icall (mono_profiler_method_enter, "mono_profiler_method_enter", "void ptr", TRUE);
3163         register_icall (mono_profiler_method_leave, "mono_profiler_method_leave", "void ptr", TRUE);
3164
3165         register_icall (mono_trace_enter_method, "mono_trace_enter_method", NULL, TRUE);
3166         register_icall (mono_trace_leave_method, "mono_trace_leave_method", NULL, TRUE);
3167         register_icall (mono_get_lmf_addr, "mono_get_lmf_addr", "ptr", TRUE);
3168         register_icall (mono_jit_thread_attach, "mono_jit_thread_attach", "ptr ptr", TRUE);
3169         register_icall (mono_jit_set_domain, "mono_jit_set_domain", "void ptr", TRUE);
3170         register_icall (mono_domain_get, "mono_domain_get", "ptr", TRUE);
3171
3172         register_dyn_icall (mono_get_throw_exception (), "mono_arch_throw_exception", "void object", TRUE);
3173         register_dyn_icall (mono_get_rethrow_exception (), "mono_arch_rethrow_exception", "void object", TRUE);
3174         register_dyn_icall (mono_get_throw_corlib_exception (), "mono_arch_throw_corlib_exception", "void ptr", TRUE);
3175         register_icall (mono_thread_get_undeniable_exception, "mono_thread_get_undeniable_exception", "object", FALSE);
3176         register_icall (mono_thread_interruption_checkpoint, "mono_thread_interruption_checkpoint", "object", FALSE);
3177         register_icall (mono_thread_force_interruption_checkpoint_noraise, "mono_thread_force_interruption_checkpoint_noraise", "object", FALSE);
3178         register_icall (mono_thread_force_interruption_checkpoint, "mono_thread_force_interruption_checkpoint", "void", FALSE);
3179 #ifndef DISABLE_REMOTING
3180         register_icall (mono_load_remote_field_new, "mono_load_remote_field_new", "object object ptr ptr", FALSE);
3181         register_icall (mono_store_remote_field_new, "mono_store_remote_field_new", "void object ptr ptr object", FALSE);
3182 #endif
3183
3184 #if defined(__native_client__) || defined(__native_client_codegen__)
3185         register_icall (mono_nacl_gc, "mono_nacl_gc", "void", FALSE);
3186 #endif
3187 #if defined(USE_COOP_GC)
3188         register_icall (mono_threads_state_poll, "mono_threads_state_poll", "void", FALSE);
3189 #endif
3190
3191 #ifndef MONO_ARCH_NO_EMULATE_LONG_MUL_OPTS
3192         register_opcode_emulation (OP_LMUL, "__emul_lmul", "long long long", mono_llmult, "mono_llmult", TRUE);
3193         register_opcode_emulation (OP_LDIV, "__emul_ldiv", "long long long", mono_lldiv, "mono_lldiv", FALSE);
3194         register_opcode_emulation (OP_LDIV_UN, "__emul_ldiv_un", "long long long", mono_lldiv_un, "mono_lldiv_un", FALSE);
3195         register_opcode_emulation (OP_LREM, "__emul_lrem", "long long long", mono_llrem, "mono_llrem", FALSE);
3196         register_opcode_emulation (OP_LREM_UN, "__emul_lrem_un", "long long long", mono_llrem_un, "mono_llrem_un", FALSE);
3197 #endif
3198 #if !defined(MONO_ARCH_NO_EMULATE_LONG_MUL_OPTS) || defined(MONO_ARCH_EMULATE_LONG_MUL_OVF_OPTS)
3199         register_opcode_emulation (OP_LMUL_OVF_UN, "__emul_lmul_ovf_un", "long long long", mono_llmult_ovf_un, "mono_llmult_ovf_un", FALSE);
3200         register_opcode_emulation (OP_LMUL_OVF, "__emul_lmul_ovf", "long long long", mono_llmult_ovf, "mono_llmult_ovf", FALSE);
3201 #endif
3202
3203 #ifndef MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS
3204         register_opcode_emulation (OP_LSHL, "__emul_lshl", "long long int32", mono_lshl, "mono_lshl", TRUE);
3205         register_opcode_emulation (OP_LSHR, "__emul_lshr", "long long int32", mono_lshr, "mono_lshr", TRUE);
3206         register_opcode_emulation (OP_LSHR_UN, "__emul_lshr_un", "long long int32", mono_lshr_un, "mono_lshr_un", TRUE);
3207 #endif
3208
3209 #if defined(MONO_ARCH_EMULATE_MUL_DIV) || defined(MONO_ARCH_EMULATE_DIV)
3210         register_opcode_emulation (OP_IDIV, "__emul_op_idiv", "int32 int32 int32", mono_idiv, "mono_idiv", FALSE);
3211         register_opcode_emulation (OP_IDIV_UN, "__emul_op_idiv_un", "int32 int32 int32", mono_idiv_un, "mono_idiv_un", FALSE);
3212         register_opcode_emulation (OP_IREM, "__emul_op_irem", "int32 int32 int32", mono_irem, "mono_irem", FALSE);
3213         register_opcode_emulation (OP_IREM_UN, "__emul_op_irem_un", "int32 int32 int32", mono_irem_un, "mono_irem_un", FALSE);
3214 #endif
3215
3216 #ifdef MONO_ARCH_EMULATE_MUL_DIV
3217         register_opcode_emulation (OP_IMUL, "__emul_op_imul", "int32 int32 int32", mono_imul, "mono_imul", TRUE);
3218 #endif
3219
3220 #if defined(MONO_ARCH_EMULATE_MUL_DIV) || defined(MONO_ARCH_EMULATE_MUL_OVF)
3221         register_opcode_emulation (OP_IMUL_OVF, "__emul_op_imul_ovf", "int32 int32 int32", mono_imul_ovf, "mono_imul_ovf", FALSE);
3222         register_opcode_emulation (OP_IMUL_OVF_UN, "__emul_op_imul_ovf_un", "int32 int32 int32", mono_imul_ovf_un, "mono_imul_ovf_un", FALSE);
3223 #endif
3224
3225 #if defined(MONO_ARCH_EMULATE_MUL_DIV) || defined(MONO_ARCH_SOFT_FLOAT_FALLBACK)
3226         if (ARCH_EMULATE_MUL_DIV || mono_arch_is_soft_float ()) {
3227                 register_opcode_emulation (OP_FDIV, "__emul_fdiv", "double double double", mono_fdiv, "mono_fdiv", FALSE);
3228         }
3229 #endif
3230
3231         register_opcode_emulation (OP_FCONV_TO_U8, "__emul_fconv_to_u8", "ulong double", mono_fconv_u8, "mono_fconv_u8", FALSE);
3232         register_opcode_emulation (OP_FCONV_TO_U4, "__emul_fconv_to_u4", "uint32 double", mono_fconv_u4, "mono_fconv_u4", FALSE);
3233         register_opcode_emulation (OP_FCONV_TO_OVF_I8, "__emul_fconv_to_ovf_i8", "long double", mono_fconv_ovf_i8, "mono_fconv_ovf_i8", FALSE);
3234         register_opcode_emulation (OP_FCONV_TO_OVF_U8, "__emul_fconv_to_ovf_u8", "ulong double", mono_fconv_ovf_u8, "mono_fconv_ovf_u8", FALSE);
3235         register_opcode_emulation (OP_RCONV_TO_OVF_I8, "__emul_rconv_to_ovf_i8", "long float", mono_rconv_ovf_i8, "mono_rconv_ovf_i8", FALSE);
3236         register_opcode_emulation (OP_RCONV_TO_OVF_U8, "__emul_rconv_to_ovf_u8", "ulong float", mono_rconv_ovf_u8, "mono_rconv_ovf_u8", FALSE);
3237
3238 #ifdef MONO_ARCH_EMULATE_FCONV_TO_I8
3239         register_opcode_emulation (OP_FCONV_TO_I8, "__emul_fconv_to_i8", "long double", mono_fconv_i8, "mono_fconv_i8", FALSE);
3240         register_opcode_emulation (OP_RCONV_TO_I8, "__emul_rconv_to_i8", "long float", mono_rconv_i8, "mono_rconv_i8", FALSE);
3241 #endif
3242 #ifdef MONO_ARCH_EMULATE_CONV_R8_UN
3243         register_opcode_emulation (OP_ICONV_TO_R_UN, "__emul_iconv_to_r_un", "double int32", mono_conv_to_r8_un, "mono_conv_to_r8_un", FALSE);
3244 #endif
3245 #ifdef MONO_ARCH_EMULATE_LCONV_TO_R8
3246         register_opcode_emulation (OP_LCONV_TO_R8, "__emul_lconv_to_r8", "double long", mono_lconv_to_r8, "mono_lconv_to_r8", FALSE);
3247 #endif
3248 #ifdef MONO_ARCH_EMULATE_LCONV_TO_R4
3249         register_opcode_emulation (OP_LCONV_TO_R4, "__emul_lconv_to_r4", "float long", mono_lconv_to_r4, "mono_lconv_to_r4", FALSE);
3250 #endif
3251 #ifdef MONO_ARCH_EMULATE_LCONV_TO_R8_UN
3252         register_opcode_emulation (OP_LCONV_TO_R_UN, "__emul_lconv_to_r8_un", "double long", mono_lconv_to_r8_un, "mono_lconv_to_r8_un", FALSE);
3253 #endif
3254 #ifdef MONO_ARCH_EMULATE_FREM
3255 #if defined(__default_codegen__)
3256         register_opcode_emulation (OP_FREM, "__emul_frem", "double double double", fmod, "fmod", FALSE);
3257         register_opcode_emulation (OP_RREM, "__emul_rrem", "float float float", fmodf, "fmodf", FALSE);
3258 #elif defined(__native_client_codegen__)
3259         register_opcode_emulation (OP_FREM, "__emul_frem", "double double double", mono_fmod, "mono_fmod", FALSE);
3260 #endif
3261 #endif
3262
3263 #ifdef MONO_ARCH_SOFT_FLOAT_FALLBACK
3264         if (mono_arch_is_soft_float ()) {
3265                 register_opcode_emulation (OP_FSUB, "__emul_fsub", "double double double", mono_fsub, "mono_fsub", FALSE);
3266                 register_opcode_emulation (OP_FADD, "__emul_fadd", "double double double", mono_fadd, "mono_fadd", FALSE);
3267                 register_opcode_emulation (OP_FMUL, "__emul_fmul", "double double double", mono_fmul, "mono_fmul", FALSE);
3268                 register_opcode_emulation (OP_FNEG, "__emul_fneg", "double double", mono_fneg, "mono_fneg", FALSE);
3269                 register_opcode_emulation (OP_ICONV_TO_R8, "__emul_iconv_to_r8", "double int32", mono_conv_to_r8, "mono_conv_to_r8", FALSE);
3270                 register_opcode_emulation (OP_ICONV_TO_R4, "__emul_iconv_to_r4", "double int32", mono_conv_to_r4, "mono_conv_to_r4", FALSE);
3271                 register_opcode_emulation (OP_FCONV_TO_R4, "__emul_fconv_to_r4", "double double", mono_fconv_r4, "mono_fconv_r4", FALSE);
3272                 register_opcode_emulation (OP_FCONV_TO_I1, "__emul_fconv_to_i1", "int8 double", mono_fconv_i1, "mono_fconv_i1", FALSE);
3273                 register_opcode_emulation (OP_FCONV_TO_I2, "__emul_fconv_to_i2", "int16 double", mono_fconv_i2, "mono_fconv_i2", FALSE);
3274                 register_opcode_emulation (OP_FCONV_TO_I4, "__emul_fconv_to_i4", "int32 double", mono_fconv_i4, "mono_fconv_i4", FALSE);
3275                 register_opcode_emulation (OP_FCONV_TO_U1, "__emul_fconv_to_u1", "uint8 double", mono_fconv_u1, "mono_fconv_u1", FALSE);
3276                 register_opcode_emulation (OP_FCONV_TO_U2, "__emul_fconv_to_u2", "uint16 double", mono_fconv_u2, "mono_fconv_u2", FALSE);
3277
3278 #if SIZEOF_VOID_P == 4
3279                 register_opcode_emulation (OP_FCONV_TO_I, "__emul_fconv_to_i", "int32 double", mono_fconv_i4, "mono_fconv_i4", FALSE);
3280 #endif
3281
3282                 register_opcode_emulation (OP_FBEQ, "__emul_fcmp_eq", "uint32 double double", mono_fcmp_eq, "mono_fcmp_eq", FALSE);
3283                 register_opcode_emulation (OP_FBLT, "__emul_fcmp_lt", "uint32 double double", mono_fcmp_lt, "mono_fcmp_lt", FALSE);
3284                 register_opcode_emulation (OP_FBGT, "__emul_fcmp_gt", "uint32 double double", mono_fcmp_gt, "mono_fcmp_gt", FALSE);
3285                 register_opcode_emulation (OP_FBLE, "__emul_fcmp_le", "uint32 double double", mono_fcmp_le, "mono_fcmp_le", FALSE);
3286                 register_opcode_emulation (OP_FBGE, "__emul_fcmp_ge", "uint32 double double", mono_fcmp_ge, "mono_fcmp_ge", FALSE);
3287                 register_opcode_emulation (OP_FBNE_UN, "__emul_fcmp_ne_un", "uint32 double double", mono_fcmp_ne_un, "mono_fcmp_ne_un", FALSE);
3288                 register_opcode_emulation (OP_FBLT_UN, "__emul_fcmp_lt_un", "uint32 double double", mono_fcmp_lt_un, "mono_fcmp_lt_un", FALSE);
3289                 register_opcode_emulation (OP_FBGT_UN, "__emul_fcmp_gt_un", "uint32 double double", mono_fcmp_gt_un, "mono_fcmp_gt_un", FALSE);
3290                 register_opcode_emulation (OP_FBLE_UN, "__emul_fcmp_le_un", "uint32 double double", mono_fcmp_le_un, "mono_fcmp_le_un", FALSE);
3291                 register_opcode_emulation (OP_FBGE_UN, "__emul_fcmp_ge_un", "uint32 double double", mono_fcmp_ge_un, "mono_fcmp_ge_un", FALSE);
3292
3293                 register_opcode_emulation (OP_FCEQ, "__emul_fcmp_ceq", "uint32 double double", mono_fceq, "mono_fceq", FALSE);
3294                 register_opcode_emulation (OP_FCGT, "__emul_fcmp_cgt", "uint32 double double", mono_fcgt, "mono_fcgt", FALSE);
3295                 register_opcode_emulation (OP_FCGT_UN, "__emul_fcmp_cgt_un", "uint32 double double", mono_fcgt_un, "mono_fcgt_un", FALSE);
3296                 register_opcode_emulation (OP_FCLT, "__emul_fcmp_clt", "uint32 double double", mono_fclt, "mono_fclt", FALSE);
3297                 register_opcode_emulation (OP_FCLT_UN, "__emul_fcmp_clt_un", "uint32 double double", mono_fclt_un, "mono_fclt_un", FALSE);
3298
3299                 register_icall (mono_fload_r4, "mono_fload_r4", "double ptr", FALSE);
3300                 register_icall (mono_fstore_r4, "mono_fstore_r4", "void double ptr", FALSE);
3301                 register_icall (mono_fload_r4_arg, "mono_fload_r4_arg", "uint32 double", FALSE);
3302                 register_icall (mono_isfinite, "mono_isfinite", "uint32 double", FALSE);
3303         }
3304 #endif
3305
3306 #ifdef COMPRESSED_INTERFACE_BITMAP
3307         register_icall (mono_class_interface_match, "mono_class_interface_match", "uint32 ptr int32", TRUE);
3308 #endif
3309
3310 #if SIZEOF_REGISTER == 4
3311         register_opcode_emulation (OP_FCONV_TO_U, "__emul_fconv_to_u", "uint32 double", mono_fconv_u4, "mono_fconv_u4", TRUE);
3312 #else
3313         register_opcode_emulation (OP_FCONV_TO_U, "__emul_fconv_to_u", "ulong double", mono_fconv_u8, "mono_fconv_u8", TRUE);
3314 #endif
3315
3316         /* other jit icalls */
3317         register_icall (mono_delegate_ctor, "mono_delegate_ctor", "void object object ptr", FALSE);
3318         register_icall (mono_class_static_field_address , "mono_class_static_field_address",
3319                                  "ptr ptr ptr", FALSE);
3320         register_icall (mono_ldtoken_wrapper, "mono_ldtoken_wrapper", "ptr ptr ptr ptr", FALSE);
3321         register_icall (mono_ldtoken_wrapper_generic_shared, "mono_ldtoken_wrapper_generic_shared",
3322                 "ptr ptr ptr ptr", FALSE);
3323         register_icall (mono_get_special_static_data, "mono_get_special_static_data", "ptr int", FALSE);
3324         register_icall (mono_ldstr, "mono_ldstr", "object ptr ptr int32", FALSE);
3325         register_icall (mono_helper_stelem_ref_check, "mono_helper_stelem_ref_check", "void object object", FALSE);
3326         register_icall (mono_object_new, "mono_object_new", "object ptr ptr", FALSE);
3327         register_icall (mono_object_new_specific, "mono_object_new_specific", "object ptr", FALSE);
3328         register_icall (mono_array_new, "mono_array_new", "object ptr ptr int32", FALSE);
3329         register_icall (mono_array_new_specific, "mono_array_new_specific", "object ptr int32", FALSE);
3330         register_icall (mono_runtime_class_init, "mono_runtime_class_init", "void ptr", FALSE);
3331         register_icall (mono_ldftn, "mono_ldftn", "ptr ptr", FALSE);
3332         register_icall (mono_ldvirtfn, "mono_ldvirtfn", "ptr object ptr", FALSE);
3333         register_icall (mono_ldvirtfn_gshared, "mono_ldvirtfn_gshared", "ptr object ptr", FALSE);
3334         register_icall (mono_helper_compile_generic_method, "mono_helper_compile_generic_method", "ptr object ptr ptr", FALSE);
3335         register_icall (mono_helper_ldstr, "mono_helper_ldstr", "object ptr int", FALSE);
3336         register_icall (mono_helper_ldstr_mscorlib, "mono_helper_ldstr_mscorlib", "object int", FALSE);
3337         register_icall (mono_helper_newobj_mscorlib, "mono_helper_newobj_mscorlib", "object int", FALSE);
3338         register_icall (mono_value_copy, "mono_value_copy", "void ptr ptr ptr", FALSE);
3339         register_icall (mono_object_castclass_unbox, "mono_object_castclass_unbox", "object object ptr", FALSE);
3340         register_icall (mono_break, "mono_break", NULL, TRUE);
3341         register_icall (mono_create_corlib_exception_0, "mono_create_corlib_exception_0", "object int", TRUE);
3342         register_icall (mono_create_corlib_exception_1, "mono_create_corlib_exception_1", "object int object", TRUE);
3343         register_icall (mono_create_corlib_exception_2, "mono_create_corlib_exception_2", "object int object object", TRUE);
3344         register_icall (mono_array_new_1, "mono_array_new_1", "object ptr int", FALSE);
3345         register_icall (mono_array_new_2, "mono_array_new_2", "object ptr int int", FALSE);
3346         register_icall (mono_array_new_3, "mono_array_new_3", "object ptr int int int", FALSE);
3347         register_icall (mono_array_new_4, "mono_array_new_4", "object ptr int int int int", FALSE);
3348         register_icall (mono_get_native_calli_wrapper, "mono_get_native_calli_wrapper", "ptr ptr ptr ptr", FALSE);
3349         register_icall (mono_resume_unwind, "mono_resume_unwind", "void", TRUE);
3350         register_icall (mono_gsharedvt_constrained_call, "mono_gsharedvt_constrained_call", "object ptr ptr ptr ptr ptr", FALSE);
3351         register_icall (mono_gsharedvt_value_copy, "mono_gsharedvt_value_copy", "void ptr ptr ptr", TRUE);
3352
3353         register_icall (mono_gc_wbarrier_value_copy_bitmap, "mono_gc_wbarrier_value_copy_bitmap", "void ptr ptr int int", FALSE);
3354
3355         register_icall (mono_object_castclass_with_cache, "mono_object_castclass_with_cache", "object object ptr ptr", FALSE);
3356         register_icall (mono_object_isinst_with_cache, "mono_object_isinst_with_cache", "object object ptr ptr", FALSE);
3357         register_icall (mono_generic_class_init, "mono_generic_class_init", "void ptr", FALSE);
3358
3359         register_icall (mono_debugger_agent_user_break, "mono_debugger_agent_user_break", "void", FALSE);
3360         register_dyn_icall (mono_create_specific_trampoline (NULL, MONO_TRAMPOLINE_GENERIC_CLASS_INIT, mono_get_root_domain (), NULL),
3361                                                 "specific_trampoline_generic_class_init", "void", TRUE);
3362
3363 #ifdef TARGET_IOS
3364         register_icall (pthread_getspecific, "pthread_getspecific", "ptr ptr", TRUE);
3365 #endif
3366 }
3367
3368 MonoJitStats mono_jit_stats = {0};
3369
3370 static void
3371 print_jit_stats (void)
3372 {
3373         if (mono_jit_stats.enabled) {
3374                 g_print ("Mono Jit statistics\n");
3375                 g_print ("Max code size ratio:    %.2f (%s)\n", mono_jit_stats.max_code_size_ratio/100.0,
3376                                  mono_jit_stats.max_ratio_method);
3377                 g_print ("Biggest method:         %ld (%s)\n", mono_jit_stats.biggest_method_size,
3378                                  mono_jit_stats.biggest_method);
3379
3380                 g_print ("Delegates created:      %ld\n", mono_stats.delegate_creations);
3381                 g_print ("Initialized classes:    %ld\n", mono_stats.initialized_class_count);
3382                 g_print ("Used classes:           %ld\n", mono_stats.used_class_count);
3383                 g_print ("Generic vtables:        %ld\n", mono_stats.generic_vtable_count);
3384                 g_print ("Methods:                %ld\n", mono_stats.method_count);
3385                 g_print ("Static data size:       %ld\n", mono_stats.class_static_data_size);
3386                 g_print ("VTable data size:       %ld\n", mono_stats.class_vtable_size);
3387                 g_print ("Mscorlib mempool size:  %d\n", mono_mempool_get_allocated (mono_defaults.corlib->mempool));
3388
3389                 g_print ("\nInitialized classes:    %ld\n", mono_stats.generic_class_count);
3390                 g_print ("Inflated types:         %ld\n", mono_stats.inflated_type_count);
3391                 g_print ("Generics virtual invokes: %ld\n", mono_jit_stats.generic_virtual_invocations);
3392
3393                 g_print ("Sharable generic methods: %ld\n", mono_stats.generics_sharable_methods);
3394                 g_print ("Unsharable generic methods: %ld\n", mono_stats.generics_unsharable_methods);
3395                 g_print ("Shared generic methods: %ld\n", mono_stats.generics_shared_methods);
3396                 g_print ("Shared vtype generic methods: %ld\n", mono_stats.gsharedvt_methods);
3397
3398                 g_print ("IMT tables size:        %ld\n", mono_stats.imt_tables_size);
3399                 g_print ("IMT number of tables:   %ld\n", mono_stats.imt_number_of_tables);
3400                 g_print ("IMT number of methods:  %ld\n", mono_stats.imt_number_of_methods);
3401                 g_print ("IMT used slots:         %ld\n", mono_stats.imt_used_slots);
3402                 g_print ("IMT colliding slots:    %ld\n", mono_stats.imt_slots_with_collisions);
3403                 g_print ("IMT max collisions:     %ld\n", mono_stats.imt_max_collisions_in_slot);
3404                 g_print ("IMT methods at max col: %ld\n", mono_stats.imt_method_count_when_max_collisions);
3405                 g_print ("IMT thunks size:        %ld\n", mono_stats.imt_thunks_size);
3406
3407                 g_print ("JIT info table inserts: %ld\n", mono_stats.jit_info_table_insert_count);
3408                 g_print ("JIT info table removes: %ld\n", mono_stats.jit_info_table_remove_count);
3409                 g_print ("JIT info table lookups: %ld\n", mono_stats.jit_info_table_lookup_count);
3410
3411                 g_free (mono_jit_stats.max_ratio_method);
3412                 mono_jit_stats.max_ratio_method = NULL;
3413                 g_free (mono_jit_stats.biggest_method);
3414                 mono_jit_stats.biggest_method = NULL;
3415         }
3416 }
3417
3418 void
3419 mini_cleanup (MonoDomain *domain)
3420 {
3421         mono_runtime_shutdown_stat_profiler ();
3422
3423 #ifndef DISABLE_COM
3424         cominterop_release_all_rcws ();
3425 #endif
3426
3427 #ifndef MONO_CROSS_COMPILE
3428         /*
3429          * mono_domain_finalize () needs to be called early since it needs the
3430          * execution engine still fully working (it may invoke managed finalizers).
3431          */
3432         mono_domain_finalize (domain, 2000);
3433 #endif
3434
3435         /* This accesses metadata so needs to be called before runtime shutdown */
3436         print_jit_stats ();
3437
3438         mono_profiler_shutdown ();
3439
3440 #ifndef MONO_CROSS_COMPILE
3441         mono_runtime_cleanup (domain);
3442 #endif
3443
3444         free_jit_tls_data (mono_native_tls_get_value (mono_jit_tls_id));
3445
3446         mono_icall_cleanup ();
3447
3448         mono_runtime_cleanup_handlers ();
3449
3450 #ifndef MONO_CROSS_COMPILE
3451         mono_domain_free (domain, TRUE);
3452 #endif
3453
3454 #ifdef ENABLE_LLVM
3455         if (mono_use_llvm)
3456                 mono_llvm_cleanup ();
3457 #endif
3458
3459         mono_aot_cleanup ();
3460
3461         mono_trampolines_cleanup ();
3462
3463         mono_unwind_cleanup ();
3464
3465         mono_code_manager_destroy (global_codeman);
3466         g_free (vtable_trampolines);
3467
3468         mini_jit_cleanup ();
3469
3470         mono_tramp_info_cleanup ();
3471
3472         mono_arch_cleanup ();
3473
3474         mono_generic_sharing_cleanup ();
3475
3476         mono_cleanup ();
3477
3478         mono_trace_cleanup ();
3479
3480         mono_counters_dump (MONO_COUNTER_SECTION_MASK | MONO_COUNTER_MONOTONIC, stdout);
3481
3482         if (mono_inject_async_exc_method)
3483                 mono_method_desc_free (mono_inject_async_exc_method);
3484
3485         mono_native_tls_free (mono_jit_tls_id);
3486
3487         mono_mutex_destroy (&jit_mutex);
3488
3489         mono_mutex_destroy (&mono_delegate_section);
3490
3491         mono_code_manager_cleanup ();
3492
3493 #ifdef USE_JUMP_TABLES
3494         mono_jumptable_cleanup ();
3495 #endif
3496 }
3497
3498 void
3499 mono_set_defaults (int verbose_level, guint32 opts)
3500 {
3501         mini_verbose = verbose_level;
3502         mono_set_optimizations (opts);
3503 }
3504
3505 void
3506 mono_disable_optimizations (guint32 opts)
3507 {
3508         default_opt &= ~opts;
3509 }
3510
3511 void
3512 mono_set_optimizations (guint32 opts)
3513 {
3514         default_opt = opts;
3515         default_opt_set = TRUE;
3516 #ifdef MONO_ARCH_GSHAREDVT_SUPPORTED
3517         mono_set_generic_sharing_vt_supported (mono_aot_only || ((default_opt & MONO_OPT_GSHAREDVT) != 0));
3518 #endif
3519 }
3520
3521 void
3522 mono_set_verbose_level (guint32 level)
3523 {
3524         mini_verbose = level;
3525 }
3526
3527 /**
3528  * mono_get_runtime_build_info:
3529  *
3530  * Return the runtime version + build date in string format.
3531  * The returned string is owned by the caller. The returned string
3532  * format is "VERSION (FULL_VERSION BUILD_DATE)" and build date is optional.
3533  */
3534 char*
3535 mono_get_runtime_build_info (void)
3536 {
3537         if (mono_build_date)
3538                 return g_strdup_printf ("%s (%s %s)", VERSION, FULL_VERSION, mono_build_date);
3539         else
3540                 return g_strdup_printf ("%s (%s)", VERSION, FULL_VERSION);
3541 }
3542
3543 static void
3544 mono_precompile_assembly (MonoAssembly *ass, void *user_data)
3545 {
3546         GHashTable *assemblies = (GHashTable*)user_data;
3547         MonoImage *image = mono_assembly_get_image (ass);
3548         MonoMethod *method, *invoke;
3549         int i, count = 0;
3550
3551         if (g_hash_table_lookup (assemblies, ass))
3552                 return;
3553
3554         g_hash_table_insert (assemblies, ass, ass);
3555
3556         if (mini_verbose > 0)
3557                 printf ("PRECOMPILE: %s.\n", mono_image_get_filename (image));
3558
3559         for (i = 0; i < mono_image_get_table_rows (image, MONO_TABLE_METHOD); ++i) {
3560                 method = mono_get_method (image, MONO_TOKEN_METHOD_DEF | (i + 1), NULL);
3561                 if (method->flags & METHOD_ATTRIBUTE_ABSTRACT)
3562                         continue;
3563                 if (method->is_generic || method->klass->generic_container)
3564                         continue;
3565
3566                 count++;
3567                 if (mini_verbose > 1) {
3568                         char * desc = mono_method_full_name (method, TRUE);
3569                         g_print ("Compiling %d %s\n", count, desc);
3570                         g_free (desc);
3571                 }
3572                 mono_compile_method (method);
3573                 if (strcmp (method->name, "Finalize") == 0) {
3574                         invoke = mono_marshal_get_runtime_invoke (method, FALSE);
3575                         mono_compile_method (invoke);
3576                 }
3577 #ifndef DISABLE_REMOTING
3578                 if (mono_class_is_marshalbyref (method->klass) && mono_method_signature (method)->hasthis) {
3579                         invoke = mono_marshal_get_remoting_invoke_with_check (method);
3580                         mono_compile_method (invoke);
3581                 }
3582 #endif
3583         }
3584
3585         /* Load and precompile referenced assemblies as well */
3586         for (i = 0; i < mono_image_get_table_rows (image, MONO_TABLE_ASSEMBLYREF); ++i) {
3587                 mono_assembly_load_reference (image, i);
3588                 if (image->references [i])
3589                         mono_precompile_assembly (image->references [i], assemblies);
3590         }
3591 }
3592
3593 void mono_precompile_assemblies ()
3594 {
3595         GHashTable *assemblies = g_hash_table_new (NULL, NULL);
3596
3597         mono_assembly_foreach ((GFunc)mono_precompile_assembly, assemblies);
3598
3599         g_hash_table_destroy (assemblies);
3600 }
3601
3602 #ifdef USE_JUMP_TABLES
3603 #define DEFAULT_JUMPTABLE_CHUNK_ELEMENTS 128
3604
3605 typedef struct MonoJumpTableChunk {
3606         guint32 total;
3607         guint32 active;
3608         struct MonoJumpTableChunk *previous;
3609         /* gpointer entries[total]; */
3610 } MonoJumpTableChunk;
3611
3612 static MonoJumpTableChunk* g_jumptable;
3613 #define mono_jumptable_lock() mono_mutex_lock (&jumptable_mutex)
3614 #define mono_jumptable_unlock() mono_mutex_unlock (&jumptable_mutex)
3615 static mono_mutex_t jumptable_mutex;
3616
3617 static  MonoJumpTableChunk*
3618 mono_create_jumptable_chunk (guint32 max_entries)
3619 {
3620         guint32 size = sizeof (MonoJumpTableChunk) + max_entries * sizeof(gpointer);
3621         MonoJumpTableChunk *chunk = (MonoJumpTableChunk*) g_new0 (guchar, size);
3622         chunk->total = max_entries;
3623         return chunk;
3624 }
3625
3626 void
3627 mono_jumptable_init (void)
3628 {
3629         if (g_jumptable == NULL) {
3630                 mono_mutex_init_recursive (&jumptable_mutex);
3631                 g_jumptable = mono_create_jumptable_chunk (DEFAULT_JUMPTABLE_CHUNK_ELEMENTS);
3632         }
3633 }
3634
3635 gpointer*
3636 mono_jumptable_add_entry (void)
3637 {
3638         return mono_jumptable_add_entries (1);
3639 }
3640
3641 gpointer*
3642 mono_jumptable_add_entries (guint32 entries)
3643 {
3644         guint32 index;
3645         gpointer *result;
3646
3647         mono_jumptable_init ();
3648         mono_jumptable_lock ();
3649         index = g_jumptable->active;
3650         if (index + entries >= g_jumptable->total) {
3651                 /*
3652                  * Grow jumptable, by adding one more chunk.
3653                  * We cannot realloc jumptable, as there could be pointers
3654                  * to existing jump table entries in the code, so instead
3655                  * we just add one more chunk.
3656                  */
3657                 guint32 max_entries = entries;
3658                 MonoJumpTableChunk *new_chunk;
3659
3660                 if (max_entries < DEFAULT_JUMPTABLE_CHUNK_ELEMENTS)
3661                         max_entries = DEFAULT_JUMPTABLE_CHUNK_ELEMENTS;
3662                 new_chunk = mono_create_jumptable_chunk (max_entries);
3663                 /* Link old jumptable, so that we could free it up later. */
3664                 new_chunk->previous = g_jumptable;
3665                 g_jumptable = new_chunk;
3666                 index = 0;
3667         }
3668         g_jumptable->active = index + entries;
3669         result = (gpointer*)((guchar*)g_jumptable + sizeof(MonoJumpTableChunk)) + index;
3670         mono_jumptable_unlock();
3671
3672         return result;
3673 }
3674
3675 void
3676 mono_jumptable_cleanup (void)
3677 {
3678         if (g_jumptable) {
3679                 MonoJumpTableChunk *current = g_jumptable, *prev;
3680                 while (current != NULL) {
3681                         prev = current->previous;
3682                         g_free (current);
3683                         current = prev;
3684                 }
3685                 g_jumptable = NULL;
3686                 mono_mutex_destroy (&jumptable_mutex);
3687         }
3688 }
3689
3690 gpointer*
3691 mono_jumptable_get_entry (guint8 *code_ptr)
3692 {
3693         return mono_arch_jumptable_entry_from_code (code_ptr);
3694 }
3695 #endif