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