[xbuild] Make Engine.DefaultToolsVersion 2.0 .
[mono.git] / mono / mini / mini-trampolines.c
1
2 #include <config.h>
3 #include <glib.h>
4
5 #include <mono/metadata/appdomain.h>
6 #include <mono/metadata/metadata-internals.h>
7 #include <mono/metadata/marshal.h>
8 #include <mono/metadata/tabledefs.h>
9 #include <mono/utils/mono-counters.h>
10 #include <mono/utils/mono-error-internals.h>
11
12 #include "mini.h"
13 #include "debug-mini.h"
14
15 /*
16  * Address of the trampoline code.  This is used by the debugger to check
17  * whether a method is a trampoline.
18  */
19 guint8* mono_trampoline_code [MONO_TRAMPOLINE_NUM];
20
21 static GHashTable *class_init_hash_addr = NULL;
22 static GHashTable *rgctx_lazy_fetch_trampoline_hash = NULL;
23 static GHashTable *rgctx_lazy_fetch_trampoline_hash_addr = NULL;
24 static guint32 trampoline_calls, jit_trampolines, unbox_trampolines, static_rgctx_trampolines;
25
26 #define mono_trampolines_lock() EnterCriticalSection (&trampolines_mutex)
27 #define mono_trampolines_unlock() LeaveCriticalSection (&trampolines_mutex)
28 static CRITICAL_SECTION trampolines_mutex;
29
30 static gpointer
31 get_unbox_trampoline (MonoMethod *m, gpointer addr, gboolean need_rgctx_tramp)
32 {
33         if (mono_aot_only) {
34                 if (need_rgctx_tramp)
35                         /* 
36                          * The unbox trampolines call the method directly, so need to add
37                          * an rgctx tramp before them.
38                          */
39                         return mono_create_static_rgctx_trampoline (m, mono_aot_get_unbox_trampoline (m));
40                 else
41                         return mono_aot_get_unbox_trampoline (m);
42         } else {
43                 unbox_trampolines ++;
44                 return mono_arch_get_unbox_trampoline (m, addr);
45         }
46 }
47
48 #ifdef MONO_ARCH_HAVE_STATIC_RGCTX_TRAMPOLINE
49
50 typedef struct {
51         MonoMethod *m;
52         gpointer addr;
53 } RgctxTrampInfo;
54
55 static gint
56 rgctx_tramp_info_equal (gconstpointer ka, gconstpointer kb)
57 {
58         const RgctxTrampInfo *i1 = ka;
59         const RgctxTrampInfo *i2 = kb;
60
61         if (i1->m == i2->m && i1->addr == i2->addr)
62                 return 1;
63         else
64                 return 0;
65 }
66
67 static guint
68 rgctx_tramp_info_hash (gconstpointer data)
69 {
70         const RgctxTrampInfo *info = data;
71
72         return GPOINTER_TO_UINT (info->m) ^ GPOINTER_TO_UINT (info->addr);
73 }
74
75 /*
76  * mono_create_static_rgctx_trampoline:
77  *
78  *   Return a static rgctx trampoline for M which branches to ADDR which should
79  * point to the compiled code of M.
80  *
81  *   Static rgctx trampolines are used when a shared generic method which doesn't
82  * have a this argument is called indirectly, ie. from code which can't pass in
83  * the rgctx argument. The trampoline sets the rgctx argument and jumps to the
84  * methods code. These trampolines are similar to the unbox trampolines, they
85  * perform the same task as the static rgctx wrappers, but they are smaller/faster,
86  * and can be made to work with full AOT.
87  * On PPC addr should be an ftnptr and the return value is an ftnptr too.
88  */
89 gpointer
90 mono_create_static_rgctx_trampoline (MonoMethod *m, gpointer addr)
91 {
92         gpointer ctx;
93         gpointer res;
94         MonoDomain *domain;
95         RgctxTrampInfo tmp_info;
96         RgctxTrampInfo *info;
97
98 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
99         g_assert (((gpointer*)addr) [2] == 0);
100 #endif
101
102         if (mini_method_get_context (m)->method_inst)
103                 ctx = mono_method_lookup_rgctx (mono_class_vtable (mono_domain_get (), m->klass), mini_method_get_context (m)->method_inst);
104         else
105                 ctx = mono_class_vtable (mono_domain_get (), m->klass);
106
107         domain = mono_domain_get ();
108
109         /* 
110          * In the AOT case, addr might point to either the method, or to an unbox trampoline,
111          * so make the hash keyed on the m+addr pair.
112          */
113         mono_domain_lock (domain);
114         if (!domain_jit_info (domain)->static_rgctx_trampoline_hash)
115                 domain_jit_info (domain)->static_rgctx_trampoline_hash = g_hash_table_new (rgctx_tramp_info_hash, rgctx_tramp_info_equal);
116         tmp_info.m = m;
117         tmp_info.addr = addr;
118         res = g_hash_table_lookup (domain_jit_info (domain)->static_rgctx_trampoline_hash,
119                                                            &tmp_info);
120         mono_domain_unlock (domain);
121         if (res)
122                 return res;
123
124         if (mono_aot_only)
125                 res = mono_aot_get_static_rgctx_trampoline (ctx, addr);
126         else
127                 res = mono_arch_get_static_rgctx_trampoline (m, ctx, addr);
128
129         mono_domain_lock (domain);
130         /* Duplicates inserted while we didn't hold the lock are OK */
131         info = mono_domain_alloc (domain, sizeof (RgctxTrampInfo));
132         info->m = m;
133         info->addr = addr;
134         g_hash_table_insert (domain_jit_info (domain)->static_rgctx_trampoline_hash, info, res);
135         mono_domain_unlock (domain);
136
137         static_rgctx_trampolines ++;
138
139         return res;
140 }
141 #else
142 gpointer
143 mono_create_static_rgctx_trampoline (MonoMethod *m, gpointer addr)
144 {
145         /* 
146          * This shouldn't happen as all arches which support generic sharing support
147          * static rgctx trampolines as well.
148          */
149         g_assert_not_reached ();
150 }
151 #endif
152
153 #ifdef MONO_ARCH_HAVE_IMT
154
155 /*
156  * Either IMPL_METHOD or AOT_ADDR will be set on return.
157  */
158 static gpointer*
159 mono_convert_imt_slot_to_vtable_slot (gpointer* slot, mgreg_t *regs, guint8 *code, MonoMethod *method, MonoMethod **impl_method, gboolean *need_rgctx_tramp, gboolean *variance_used, gpointer *aot_addr)
160 {
161         MonoObject *this_argument = mono_arch_get_this_arg_from_call (regs, code);
162         MonoVTable *vt = this_argument->vtable;
163         int displacement = slot - ((gpointer*)vt);
164
165         if (displacement > 0) {
166                 /* slot is in the vtable, not in the IMT */
167 #if DEBUG_IMT
168                 printf ("mono_convert_imt_slot_to_vtable_slot: slot %p is in the vtable, not in the IMT\n", slot);
169 #endif
170                 return slot;
171         } else {
172                 MonoMethod *imt_method = mono_arch_find_imt_method (regs, code);
173                 MonoMethod *impl;
174                 int interface_offset;
175                 int imt_slot = MONO_IMT_SIZE + displacement;
176
177                 /*This has to be variance aware since imt_method can be from an interface that vt->klass doesn't directly implement*/
178                 interface_offset = mono_class_interface_offset_with_variance (vt->klass, imt_method->klass, variance_used);
179
180                 if (interface_offset < 0) {
181                         g_error ("%s doesn't implement interface %s\n", mono_type_get_name_full (&vt->klass->byval_arg, 0), mono_type_get_name_full (&imt_method->klass->byval_arg, 0));
182                 }
183                 mono_vtable_build_imt_slot (vt, mono_method_get_imt_slot (imt_method));
184
185                 if (imt_method->is_inflated && ((MonoMethodInflated*)imt_method)->context.method_inst) {
186                         MonoGenericContext context = { NULL, NULL };
187
188                         /* 
189                          * Generic virtual method, imt_method contains the inflated interface 
190                          * method, need to get the inflated impl method.
191                          */
192                         /* imt_method->slot might not be set */
193                         impl = mono_class_get_vtable_entry (vt->klass, interface_offset + mono_method_get_declaring_generic_method (imt_method)->slot);
194
195                         if (impl->klass->generic_class)
196                                 context.class_inst = impl->klass->generic_class->context.class_inst;
197                         context.method_inst = ((MonoMethodInflated*)imt_method)->context.method_inst;
198                         impl = mono_class_inflate_generic_method (impl, &context);
199                 } else {
200                         /* Avoid loading metadata or creating a generic vtable if possible */
201                         if (!vt->klass->valuetype)
202                                 *aot_addr = mono_aot_get_method_from_vt_slot (mono_domain_get (), vt, interface_offset + mono_method_get_vtable_slot (imt_method));
203                         else
204                                 *aot_addr = NULL;
205                         if (*aot_addr)
206                                 impl = NULL;
207                         else
208                                 impl = mono_class_get_vtable_entry (vt->klass, interface_offset + mono_method_get_vtable_slot (imt_method));
209                 }
210
211                 if (impl && mono_method_needs_static_rgctx_invoke (impl, FALSE))
212                         *need_rgctx_tramp = TRUE;
213
214                 *impl_method = impl;
215 #if DEBUG_IMT
216                 printf ("mono_convert_imt_slot_to_vtable_slot: method = %s.%s.%s, imt_method = %s.%s.%s\n",
217                                 method->klass->name_space, method->klass->name, method->name, 
218                                 imt_method->klass->name_space, imt_method->klass->name, imt_method->name);
219 #endif
220
221                 g_assert (imt_slot < MONO_IMT_SIZE);
222                 if (vt->imt_collisions_bitmap & (1 << imt_slot)) {
223                         int slot = mono_method_get_vtable_index (imt_method);
224                         int vtable_offset;
225                         gpointer *vtable_slot;
226
227                         g_assert (slot != -1);
228                         vtable_offset = interface_offset + slot;
229                         vtable_slot = & (vt->vtable [vtable_offset]);
230 #if DEBUG_IMT
231                         printf ("mono_convert_imt_slot_to_vtable_slot: slot %p[%d] is in the IMT, and colliding becomes %p[%d] (interface_offset = %d, method->slot = %d)\n", slot, imt_slot, vtable_slot, vtable_offset, interface_offset, imt_method->slot);
232 #endif
233                         return vtable_slot;
234                 } else {
235 #if DEBUG_IMT
236                         printf ("mono_convert_imt_slot_to_vtable_slot: slot %p[%d] is in the IMT, but not colliding\n", slot, imt_slot);
237 #endif
238                         return slot;
239                 }
240         }
241 }
242 #endif
243
244 /*
245  * This is a super-ugly hack to fix bug #616463.
246  *
247  * The problem is that we don't always set is_generic for generic
248  * method definitions.  See the comment at the end of
249  * mono_class_inflate_generic_method_full_checked() in class.c.
250  */
251 static gboolean
252 is_generic_method_definition (MonoMethod *m)
253 {
254         MonoGenericContext *context;
255         if (m->is_generic)
256                 return TRUE;
257         if (!m->is_inflated)
258                 return FALSE;
259
260         context = mono_method_get_context (m);
261         if (!context->method_inst)
262                 return FALSE;
263         if (context->method_inst == mono_method_get_generic_container (((MonoMethodInflated*)m)->declaring)->context.method_inst)
264                 return TRUE;
265         return FALSE;
266 }
267
268 /**
269  * common_call_trampoline:
270  *
271  *   The code to handle normal, virtual, and interface method calls and jumps, both
272  * from JITted and LLVM compiled code.
273  */
274 static gpointer
275 common_call_trampoline (mgreg_t *regs, guint8 *code, MonoMethod *m, guint8* tramp, MonoVTable *vt, gpointer *vtable_slot, gboolean need_rgctx_tramp)
276 {
277         gpointer addr, compiled_method;
278         gboolean generic_shared = FALSE;
279         MonoMethod *declaring = NULL;
280         MonoMethod *generic_virtual = NULL, *variant_iface = NULL;
281         int context_used;
282         gboolean virtual, proxy = FALSE, variance_used = FALSE;
283         gpointer *orig_vtable_slot, *vtable_slot_to_patch = NULL;
284         MonoJitInfo *ji = NULL;
285
286         virtual = (gpointer)vtable_slot > (gpointer)vt;
287
288         orig_vtable_slot = vtable_slot;
289         vtable_slot_to_patch = vtable_slot;
290
291 #ifdef MONO_ARCH_HAVE_IMT
292         /* IMT call */
293         if (vt && (gpointer)vtable_slot < (gpointer)vt) {
294                 MonoMethod *impl_method = NULL;
295                 MonoObject *this_arg;
296
297                 /* we get the interface method because mono_convert_imt_slot_to_vtable_slot ()
298                  * needs the signature to be able to find the this argument
299                  */
300                 m = mono_arch_find_imt_method (regs, code);
301                 vtable_slot = orig_vtable_slot;
302                 g_assert (vtable_slot);
303
304                 this_arg = mono_arch_get_this_arg_from_call (regs, code);
305
306                 if (this_arg->vtable->klass == mono_defaults.transparent_proxy_class) {
307                         /* Use the slow path for now */
308                         proxy = TRUE;
309                     m = mono_object_get_virtual_method (this_arg, m);
310                         vtable_slot_to_patch = NULL;
311                 } else {
312                         addr = NULL;
313                         vtable_slot = mono_convert_imt_slot_to_vtable_slot (vtable_slot, regs, code, m, &impl_method, &need_rgctx_tramp, &variance_used, &addr);
314                         /* This is the vcall slot which gets called through the IMT thunk */
315                         vtable_slot_to_patch = vtable_slot;
316                         /* mono_convert_imt_slot_to_vtable_slot () also gives us the method that is supposed
317                          * to be called, so we compile it and go ahead as usual.
318                          */
319                         /*g_print ("imt found method %p (%s) at %p\n", impl_method, impl_method->name, code);*/
320                         if (m->is_inflated && ((MonoMethodInflated*)m)->context.method_inst) {
321                                 /* Generic virtual method */
322                                 generic_virtual = m;
323                                 need_rgctx_tramp = TRUE;
324                         } else if (variance_used && mono_class_has_variant_generic_params (m->klass)) {
325                                 variant_iface = m;
326                         }
327
328                         if (addr && !generic_virtual && !variant_iface) {
329                                 /*
330                                  * We found AOT compiled code for the method, skip the rest.
331                                  */
332                                 if (mono_domain_owns_vtable_slot (mono_domain_get (), vtable_slot))
333                                         *vtable_slot = addr;
334
335                                 return mono_create_ftnptr (mono_domain_get (), addr);
336                         }
337
338                         m = impl_method;
339                 }
340         }
341 #endif
342
343         /*
344          * The virtual check is needed because is_generic_method_definition (m) could
345          * return TRUE for methods used in IMT calls too.
346          */
347         if (virtual && is_generic_method_definition (m)) {
348                 MonoGenericContext context = { NULL, NULL };
349                 MonoMethod *declaring;
350
351                 if (m->is_inflated)
352                         declaring = mono_method_get_declaring_generic_method (m);
353                 else
354                         declaring = m;
355
356                 if (m->klass->generic_class)
357                         context.class_inst = m->klass->generic_class->context.class_inst;
358                 else
359                         g_assert (!m->klass->generic_container);
360
361 #ifdef MONO_ARCH_HAVE_IMT
362                 generic_virtual = mono_arch_find_imt_method (regs, code);
363 #endif
364                 if (generic_virtual) {
365                         g_assert (generic_virtual->is_inflated);
366                         context.method_inst = ((MonoMethodInflated*)generic_virtual)->context.method_inst;
367                 }
368
369                 m = mono_class_inflate_generic_method (declaring, &context);
370                 /* FIXME: only do this if the method is sharable */
371                 need_rgctx_tramp = TRUE;
372         } else if ((context_used = mono_method_check_context_used (m))) {
373                 MonoClass *klass = NULL;
374                 MonoMethod *actual_method = NULL;
375                 MonoVTable *vt = NULL;
376                 MonoGenericInst *method_inst = NULL;
377
378                 vtable_slot = NULL;
379                 generic_shared = TRUE;
380
381                 g_assert (code);
382
383                 if (m->is_inflated && mono_method_get_context (m)->method_inst) {
384 #ifdef MONO_ARCH_RGCTX_REG
385                         MonoMethodRuntimeGenericContext *mrgctx = (MonoMethodRuntimeGenericContext*)mono_arch_find_static_call_vtable (regs, code);
386
387                         klass = mrgctx->class_vtable->klass;
388                         method_inst = mrgctx->method_inst;
389 #else
390                         g_assert_not_reached ();
391 #endif
392                 } else if ((m->flags & METHOD_ATTRIBUTE_STATIC) || m->klass->valuetype) {
393 #ifdef MONO_ARCH_RGCTX_REG
394                         MonoVTable *vtable = mono_arch_find_static_call_vtable (regs, code);
395
396                         klass = vtable->klass;
397 #else
398                         g_assert_not_reached ();
399 #endif
400                 } else {
401 #ifdef MONO_ARCH_HAVE_IMT
402                         MonoObject *this_argument = mono_arch_get_this_arg_from_call (regs, code);
403
404                         vt = this_argument->vtable;
405                         vtable_slot = orig_vtable_slot;
406
407                         g_assert (this_argument->vtable->klass->inited);
408                         //mono_class_init (this_argument->vtable->klass);
409
410                         if (!vtable_slot)
411                                 klass = this_argument->vtable->klass->supertypes [m->klass->idepth - 1];
412 #else
413                         NOT_IMPLEMENTED;
414 #endif
415                 }
416
417                 g_assert (vtable_slot || klass);
418
419                 if (vtable_slot) {
420                         int displacement = vtable_slot - ((gpointer*)vt);
421
422                         g_assert_not_reached ();
423
424                         g_assert (displacement > 0);
425
426                         actual_method = vt->klass->vtable [displacement];
427                 }
428
429                 if (method_inst) {
430                         MonoGenericContext context = { NULL, NULL };
431
432                         if (m->is_inflated)
433                                 declaring = mono_method_get_declaring_generic_method (m);
434                         else
435                                 declaring = m;
436
437                         if (klass->generic_class)
438                                 context.class_inst = klass->generic_class->context.class_inst;
439                         else if (klass->generic_container)
440                                 context.class_inst = klass->generic_container->context.class_inst;
441                         context.method_inst = method_inst;
442
443                         actual_method = mono_class_inflate_generic_method (declaring, &context);
444                 } else {
445                         actual_method = mono_class_get_method_generic (klass, m);
446                 }
447
448                 g_assert (klass);
449                 g_assert (actual_method);
450                 g_assert (actual_method->klass == klass);
451
452                 if (actual_method->is_inflated)
453                         declaring = mono_method_get_declaring_generic_method (actual_method);
454                 else
455                         declaring = NULL;
456
457                 m = actual_method;
458         }
459
460         if (m->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED) {
461                 MonoJitInfo *ji;
462
463                 if (code)
464                         ji = mini_jit_info_table_find (mono_domain_get (), (char*)code, NULL);
465                 else
466                         ji = NULL;
467
468                 /* Avoid recursion */
469                 if (!(ji && ji->method->wrapper_type == MONO_WRAPPER_SYNCHRONIZED)) {
470                         m = mono_marshal_get_synchronized_wrapper (m);
471                         need_rgctx_tramp = FALSE;
472                 }
473         }
474
475         /* Calls made through delegates on platforms without delegate trampolines */
476         if (!code && mono_method_needs_static_rgctx_invoke (m, FALSE))
477                 need_rgctx_tramp = TRUE;
478
479         addr = compiled_method = mono_compile_method (m);
480         g_assert (addr);
481
482         mono_debugger_trampoline_compiled (code, m, addr);
483
484         if (need_rgctx_tramp)
485                 addr = mono_create_static_rgctx_trampoline (m, addr);
486
487         if (generic_virtual || variant_iface) {
488                 MonoMethod *target = generic_virtual ? generic_virtual : variant_iface;
489
490                 vtable_slot = orig_vtable_slot;
491                 g_assert (vtable_slot);
492
493                 if (vt->klass->valuetype) /*FIXME is this required variant iface?*/
494                         addr = get_unbox_trampoline (m, addr, need_rgctx_tramp);
495
496                 mono_method_add_generic_virtual_invocation (mono_domain_get (), 
497                                                                                                         vt, vtable_slot,
498                                                                                                         target, addr);
499
500                 return addr;
501         }
502
503         /* the method was jumped to */
504         if (!code) {
505                 MonoDomain *domain = mono_domain_get ();
506
507                 /* Patch the got entries pointing to this method */
508                 /* 
509                  * We do this here instead of in mono_codegen () to cover the case when m
510                  * was loaded from an aot image.
511                  */
512                 if (domain_jit_info (domain)->jump_target_got_slot_hash) {
513                         GSList *list, *tmp;
514
515                         mono_domain_lock (domain);
516                         list = g_hash_table_lookup (domain_jit_info (domain)->jump_target_got_slot_hash, m);
517                         if (list) {
518                                 for (tmp = list; tmp; tmp = tmp->next) {
519                                         gpointer *got_slot = tmp->data;
520                                         *got_slot = addr;
521                                 }
522                                 g_hash_table_remove (domain_jit_info (domain)->jump_target_got_slot_hash, m);
523                                 g_slist_free (list);
524                         }
525                         mono_domain_unlock (domain);
526                 }
527
528                 return addr;
529         }
530
531         vtable_slot = orig_vtable_slot;
532
533         if (vtable_slot) {
534                 if (m->klass->valuetype)
535                         addr = get_unbox_trampoline (m, addr, need_rgctx_tramp);
536
537                 if (vtable_slot_to_patch && (mono_aot_is_got_entry (code, (guint8*)vtable_slot_to_patch) || mono_domain_owns_vtable_slot (mono_domain_get (), vtable_slot_to_patch))) {
538                         g_assert (*vtable_slot_to_patch);
539                         *vtable_slot_to_patch = mono_get_addr_from_ftnptr (addr);
540                 }
541         }
542         else {
543                 guint8 *plt_entry = mono_aot_get_plt_entry (code);
544
545                 if (plt_entry) {
546                                 mono_aot_patch_plt_entry (plt_entry, NULL, regs, addr);
547                 } else {
548                         if (generic_shared) {
549                                 if (m->wrapper_type != MONO_WRAPPER_NONE)
550                                         m = mono_marshal_method_from_wrapper (m);
551                                 g_assert (mono_method_is_generic_sharable_impl (m, FALSE));
552                         }
553
554                         /* Patch calling code */
555                         {
556                                 MonoJitInfo *target_ji = 
557                                         mono_jit_info_table_find (mono_domain_get (), mono_get_addr_from_ftnptr (compiled_method));
558                                 if (!target_ji)
559                                         target_ji = mono_jit_info_table_find (mono_get_root_domain (), mono_get_addr_from_ftnptr (compiled_method));
560
561                                 if (!ji)
562                                         ji = mono_jit_info_table_find (mono_domain_get (), (char*)code);
563                                 if (!ji)
564                                         ji = mono_jit_info_table_find (mono_get_root_domain (), (char*)code);
565
566                                 if (mono_method_same_domain (ji, target_ji))
567                                         mono_arch_patch_callsite (ji->code_start, code, addr);
568                         }
569                 }
570         }
571
572         return addr;
573 }
574
575 /**
576  * mono_magic_trampoline:
577  *
578  *   This trampoline handles normal calls from JITted code.
579  */
580 gpointer
581 mono_magic_trampoline (mgreg_t *regs, guint8 *code, gpointer arg, guint8* tramp)
582 {
583         trampoline_calls ++;
584
585         return common_call_trampoline (regs, code, arg, tramp, NULL, NULL, FALSE);
586 }
587
588 /*
589  * mono_vcall_trampoline:
590  *
591  *   This trampoline handles virtual calls.
592  */
593 static gpointer
594 mono_vcall_trampoline (mgreg_t *regs, guint8 *code, int slot, guint8 *tramp)
595 {
596         MonoObject *this;
597         MonoVTable *vt;
598         gpointer *vtable_slot;
599         MonoMethod *m;
600         gboolean need_rgctx_tramp = FALSE;
601         gpointer addr;
602
603         trampoline_calls ++;
604
605         /*
606          * We need to obtain the following pieces of information:
607          * - the method which needs to be compiled.
608          * - the vtable slot.
609          * We use one vtable trampoline per vtable slot index, so we need only the vtable,
610          * the other two can be computed from the vtable + the slot index.
611          */
612 #ifndef MONO_ARCH_THIS_AS_FIRST_ARG
613         /* All architectures should support this */
614         g_assert_not_reached ();
615 #endif
616
617         /*
618          * Obtain the vtable from the 'this' arg.
619          */
620         this = mono_arch_get_this_arg_from_call (regs, code);
621         g_assert (this);
622
623         vt = this->vtable;
624
625         if (slot >= 0) {
626                 /* Normal virtual call */
627                 vtable_slot = &(vt->vtable [slot]);
628
629                 /* Avoid loading metadata or creating a generic vtable if possible */
630                 addr = mono_aot_get_method_from_vt_slot (mono_domain_get (), vt, slot);
631                 if (addr && !vt->klass->valuetype) {
632                         if (mono_domain_owns_vtable_slot (mono_domain_get (), vtable_slot))
633                                 *vtable_slot = addr;
634
635                         return mono_create_ftnptr (mono_domain_get (), addr);
636                 }
637
638                 /*
639                  * Bug #616463 (see
640                  * is_generic_method_definition() above) also
641                  * goes away if we do a
642                  * mono_class_setup_vtable (vt->klass) here,
643                  * because we then inflate the method
644                  * correctly, put it in the cache, and the
645                  * "wrong" inflation invocation still looks up
646                  * the correctly inflated method.
647                  *
648                  * The hack above seems more stable and
649                  * trustworthy.
650                  */
651                 m = mono_class_get_vtable_entry (vt->klass, slot);
652
653                 need_rgctx_tramp = mono_method_needs_static_rgctx_invoke (m, 0);
654         } else {
655                 /* IMT call */
656                 vtable_slot = &(((gpointer*)vt) [slot]);
657
658                 m = NULL;
659                 need_rgctx_tramp = FALSE;
660         }
661
662         return common_call_trampoline (regs, code, m, tramp, vt, vtable_slot, need_rgctx_tramp);
663 }
664
665 gpointer
666 mono_generic_virtual_remoting_trampoline (mgreg_t *regs, guint8 *code, MonoMethod *m, guint8 *tramp)
667 {
668         MonoGenericContext context = { NULL, NULL };
669         MonoMethod *imt_method, *declaring;
670         gpointer addr;
671
672         trampoline_calls ++;
673
674         g_assert (m->is_generic);
675
676         if (m->is_inflated)
677                 declaring = mono_method_get_declaring_generic_method (m);
678         else
679                 declaring = m;
680
681         if (m->klass->generic_class)
682                 context.class_inst = m->klass->generic_class->context.class_inst;
683         else
684                 g_assert (!m->klass->generic_container);
685
686 #ifdef MONO_ARCH_HAVE_IMT
687         imt_method = mono_arch_find_imt_method (regs, code);
688         if (imt_method->is_inflated)
689                 context.method_inst = ((MonoMethodInflated*)imt_method)->context.method_inst;
690 #endif
691         m = mono_class_inflate_generic_method (declaring, &context);
692         m = mono_marshal_get_remoting_invoke_with_check (m);
693
694         addr = mono_compile_method (m);
695         g_assert (addr);
696
697         mono_debugger_trampoline_compiled (NULL, m, addr);
698
699         return addr;
700 }
701
702 /*
703  * mono_aot_trampoline:
704  *
705  *   This trampoline handles calls made from AOT code. We try to bypass the 
706  * normal JIT compilation logic to avoid loading the metadata for the method.
707  */
708 #ifdef MONO_ARCH_AOT_SUPPORTED
709 gpointer
710 mono_aot_trampoline (mgreg_t *regs, guint8 *code, guint8 *token_info, 
711                                          guint8* tramp)
712 {
713         MonoImage *image;
714         guint32 token;
715         MonoMethod *method = NULL;
716         gpointer addr;
717         guint8 *plt_entry;
718
719         trampoline_calls ++;
720
721         image = *(gpointer*)(gpointer)token_info;
722         token_info += sizeof (gpointer);
723         token = *(guint32*)(gpointer)token_info;
724
725         addr = mono_aot_get_method_from_token (mono_domain_get (), image, token);
726         if (!addr) {
727                 method = mono_get_method (image, token, NULL);
728                 g_assert (method);
729
730                 /* Use the generic code */
731                 return mono_magic_trampoline (regs, code, method, tramp);
732         }
733
734         addr = mono_create_ftnptr (mono_domain_get (), addr);
735
736         /* This is a normal call through a PLT entry */
737         plt_entry = mono_aot_get_plt_entry (code);
738         g_assert (plt_entry);
739
740         mono_aot_patch_plt_entry (plt_entry, NULL, regs, addr);
741
742         return addr;
743 }
744
745 /*
746  * mono_aot_plt_trampoline:
747  *
748  *   This trampoline handles calls made from AOT code through the PLT table.
749  */
750 gpointer
751 mono_aot_plt_trampoline (mgreg_t *regs, guint8 *code, guint8 *aot_module, 
752                                                  guint8* tramp)
753 {
754         guint32 plt_info_offset = mono_aot_get_plt_info_offset (regs, code);
755         gpointer res;
756
757         trampoline_calls ++;
758
759         res = mono_aot_plt_resolve (aot_module, plt_info_offset, code);
760         if (!res) {
761                 if (mono_loader_get_last_error ())
762                         mono_raise_exception (mono_loader_error_prepare_exception (mono_loader_get_last_error ()));
763                 // FIXME: Error handling (how ?)
764                 g_assert (res);
765         }
766
767         return res;
768 }
769 #endif
770
771 /**
772  * mono_class_init_trampoline:
773  *
774  * This method calls mono_runtime_class_init () to run the static constructor
775  * for the type, then patches the caller code so it is not called again.
776  */
777 void
778 mono_class_init_trampoline (mgreg_t *regs, guint8 *code, MonoVTable *vtable, guint8 *tramp)
779 {
780         guint8 *plt_entry = mono_aot_get_plt_entry (code);
781
782         trampoline_calls ++;
783
784         mono_runtime_class_init (vtable);
785
786         if (plt_entry) {
787                 mono_arch_nullify_plt_entry (plt_entry, regs);
788         } else {
789                 mono_arch_nullify_class_init_trampoline (code, regs);
790         }
791 }
792
793 /**
794  * mono_generic_class_init_trampoline:
795  *
796  * This method calls mono_runtime_class_init () to run the static constructor
797  * for the type.
798  */
799 void
800 mono_generic_class_init_trampoline (mgreg_t *regs, guint8 *code, MonoVTable *vtable, guint8 *tramp)
801 {
802         trampoline_calls ++;
803
804         mono_runtime_class_init (vtable);
805 }
806
807 static gpointer
808 mono_rgctx_lazy_fetch_trampoline (mgreg_t *regs, guint8 *code, gpointer data, guint8 *tramp)
809 {
810 #ifdef MONO_ARCH_VTABLE_REG
811         static gboolean inited = FALSE;
812         static int num_lookups = 0;
813         guint32 slot = GPOINTER_TO_UINT (data);
814         mgreg_t *r = (mgreg_t*)regs;
815         gpointer arg = (gpointer)(gssize)r [MONO_ARCH_VTABLE_REG];
816         guint32 index = MONO_RGCTX_SLOT_INDEX (slot);
817         gboolean mrgctx = MONO_RGCTX_SLOT_IS_MRGCTX (slot);
818
819         trampoline_calls ++;
820
821         if (!inited) {
822                 mono_counters_register ("RGCTX unmanaged lookups", MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &num_lookups);
823                 inited = TRUE;
824         }
825
826         num_lookups++;
827
828         if (mrgctx)
829                 return mono_method_fill_runtime_generic_context (arg, index);
830         else
831                 return mono_class_fill_runtime_generic_context (arg, index);
832 #else
833         g_assert_not_reached ();
834 #endif
835 }
836
837 void
838 mono_monitor_enter_trampoline (mgreg_t *regs, guint8 *code, MonoObject *obj, guint8 *tramp)
839 {
840         mono_monitor_enter (obj);
841 }
842
843 void
844 mono_monitor_exit_trampoline (mgreg_t *regs, guint8 *code, MonoObject *obj, guint8 *tramp)
845 {
846         mono_monitor_exit (obj);
847 }
848
849 #ifdef MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE
850
851 /**
852  * mono_delegate_trampoline:
853  *
854  *   This trampoline handles calls made to Delegate:Invoke ().
855  * This is called once the first time a delegate is invoked, so it must be fast.
856  */
857 gpointer
858 mono_delegate_trampoline (mgreg_t *regs, guint8 *code, gpointer *tramp_data, guint8* tramp)
859 {
860         MonoDomain *domain = mono_domain_get ();
861         MonoDelegate *delegate;
862         MonoJitInfo *ji;
863         MonoMethod *m;
864         MonoMethod *method = NULL;
865         gboolean multicast, callvirt = FALSE;
866         gboolean need_rgctx_tramp = FALSE;
867         gboolean enable_caching = TRUE;
868         MonoMethod *invoke = tramp_data [0];
869         guint8 *impl_this = tramp_data [1];
870         guint8 *impl_nothis = tramp_data [2];
871         MonoError err;
872         MonoMethodSignature *sig;
873
874         trampoline_calls ++;
875
876         /* Obtain the delegate object according to the calling convention */
877         delegate = mono_arch_get_this_arg_from_call (regs, code);
878
879         if (delegate->method) {
880                 method = delegate->method;
881
882                 /*
883                  * delegate->method_ptr == NULL means the delegate was initialized by 
884                  * mini_delegate_ctor, while != NULL means it is initialized by 
885                  * mono_delegate_ctor_with_method (). In both cases, we need to add wrappers
886                  * (ctor_with_method () does this, but it doesn't store the wrapper back into
887                  * delegate->method).
888                  */
889                 if (delegate->target && delegate->target->vtable->klass == mono_defaults.transparent_proxy_class) {
890 #ifndef DISABLE_COM
891                         if (((MonoTransparentProxy *)delegate->target)->remote_class->proxy_class != mono_defaults.com_object_class && 
892                            !((MonoTransparentProxy *)delegate->target)->remote_class->proxy_class->is_com_object)
893 #endif
894                                 method = mono_marshal_get_remoting_invoke (method);
895                 }
896                 else {
897                         mono_error_init (&err);
898                         sig = mono_method_signature_checked (method, &err);
899                         if (!sig)
900                                 mono_error_raise_exception (&err);
901                                 
902                         if (sig->hasthis && method->klass->valuetype)
903                                 method = mono_marshal_get_unbox_wrapper (method);
904                 }
905         } else {
906                 ji = mono_jit_info_table_find (domain, mono_get_addr_from_ftnptr (delegate->method_ptr));
907                 if (ji)
908                         method = ji->method;
909         }
910
911         if (method) {
912                 mono_error_init (&err);
913                 sig = mono_method_signature_checked (method, &err);
914                 if (!sig)
915                         mono_error_raise_exception (&err);
916
917                 callvirt = !delegate->target && sig->hasthis;
918                 if (delegate->target && 
919                         method->flags & METHOD_ATTRIBUTE_VIRTUAL && 
920                         method->flags & METHOD_ATTRIBUTE_ABSTRACT &&
921                         method->klass->flags & TYPE_ATTRIBUTE_ABSTRACT) {
922                         method = mono_object_get_virtual_method (delegate->target, method);
923                         enable_caching = FALSE;
924                 }
925         }
926
927         if (method && method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED)
928                 method = mono_marshal_get_synchronized_wrapper (method);
929
930         if (method && mono_method_needs_static_rgctx_invoke (method, FALSE))
931                 need_rgctx_tramp = TRUE;
932
933         /* 
934          * If the called address is a trampoline, replace it with the compiled method so
935          * further calls don't have to go through the trampoline.
936          */
937         if (method && !callvirt) {
938                 /* Avoid the overhead of looking up an already compiled method if possible */
939                 if (enable_caching && delegate->method_code && *delegate->method_code) {
940                         delegate->method_ptr = *delegate->method_code;
941                 } else {
942                         delegate->method_ptr = mono_compile_method (method);
943                         if (need_rgctx_tramp)
944                                 delegate->method_ptr = mono_create_static_rgctx_trampoline (method, delegate->method_ptr);
945                         if (enable_caching && delegate->method_code)
946                                 *delegate->method_code = delegate->method_ptr;
947                         mono_debugger_trampoline_compiled (NULL, method, delegate->method_ptr);
948                 }
949         } else {
950                 if (need_rgctx_tramp)
951                         delegate->method_ptr = mono_create_static_rgctx_trampoline (method, delegate->method_ptr);
952         }
953
954         multicast = ((MonoMulticastDelegate*)delegate)->prev != NULL;
955         if (!multicast && !callvirt) {
956                 if (method && (method->flags & METHOD_ATTRIBUTE_STATIC) && mono_method_signature (method)->param_count == mono_method_signature (invoke)->param_count + 1)
957                         /* Closed static delegate */
958                         code = impl_this;
959                 else
960                         code = delegate->target ? impl_this : impl_nothis;
961
962                 if (code) {
963                         delegate->invoke_impl = mono_get_addr_from_ftnptr (code);
964                         return code;
965                 }
966         }
967
968         /* The general, unoptimized case */
969         m = mono_marshal_get_delegate_invoke (invoke, delegate);
970         code = mono_compile_method (m);
971         delegate->invoke_impl = mono_get_addr_from_ftnptr (code);
972         mono_debugger_trampoline_compiled (NULL, m, delegate->invoke_impl);
973
974         return code;
975 }
976
977 #endif
978
979 #ifdef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD
980 static gpointer
981 mono_handler_block_guard_trampoline (mgreg_t *regs, guint8 *code, gpointer *tramp_data, guint8* tramp)
982 {
983         MonoContext ctx;
984         MonoException *exc;
985         MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
986         gpointer resume_ip = jit_tls->handler_block_return_address;
987
988         memcpy (&ctx, &jit_tls->handler_block_context, sizeof (MonoContext));
989         MONO_CONTEXT_SET_IP (&ctx, jit_tls->handler_block_return_address);
990
991         jit_tls->handler_block_return_address = NULL;
992         jit_tls->handler_block = NULL;
993
994         if (!resume_ip) /*this should not happen, but we should avoid crashing */
995                 exc = mono_get_exception_execution_engine ("Invalid internal state, resuming abort after handler block but no resume ip found");
996         else
997                 exc = mono_thread_resume_interruption ();
998
999         if (exc) {
1000                 static void (*restore_context) (MonoContext *);
1001
1002                 if (!restore_context)
1003                         restore_context = mono_get_restore_context ();
1004
1005                 mono_handle_exception (&ctx, exc, NULL, FALSE);
1006                 restore_context (&ctx);
1007         }
1008
1009         return resume_ip;
1010 }
1011
1012 gpointer
1013 mono_create_handler_block_trampoline (void)
1014 {
1015         static gpointer code;
1016
1017         if (mono_aot_only) {
1018                 g_assert (0);
1019                 return code;
1020         }
1021
1022         mono_trampolines_lock ();
1023
1024         if (!code)
1025                 code = mono_arch_create_handler_block_trampoline ();
1026
1027         mono_trampolines_unlock ();
1028
1029         return code;
1030 }
1031 #endif
1032
1033 /*
1034  * mono_get_trampoline_func:
1035  *
1036  *   Return the C function which needs to be called by the generic trampoline of type
1037  * TRAMP_TYPE.
1038  */
1039 gconstpointer
1040 mono_get_trampoline_func (MonoTrampolineType tramp_type)
1041 {
1042         switch (tramp_type) {
1043         case MONO_TRAMPOLINE_JIT:
1044         case MONO_TRAMPOLINE_JUMP:
1045                 return mono_magic_trampoline;
1046         case MONO_TRAMPOLINE_CLASS_INIT:
1047                 return mono_class_init_trampoline;
1048         case MONO_TRAMPOLINE_GENERIC_CLASS_INIT:
1049                 return mono_generic_class_init_trampoline;
1050         case MONO_TRAMPOLINE_RGCTX_LAZY_FETCH:
1051                 return mono_rgctx_lazy_fetch_trampoline;
1052 #ifdef MONO_ARCH_AOT_SUPPORTED
1053         case MONO_TRAMPOLINE_AOT:
1054                 return mono_aot_trampoline;
1055         case MONO_TRAMPOLINE_AOT_PLT:
1056                 return mono_aot_plt_trampoline;
1057 #endif
1058 #ifdef MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE
1059         case MONO_TRAMPOLINE_DELEGATE:
1060                 return mono_delegate_trampoline;
1061 #endif
1062         case MONO_TRAMPOLINE_RESTORE_STACK_PROT:
1063                 return mono_altstack_restore_prot;
1064         case MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING:
1065                 return mono_generic_virtual_remoting_trampoline;
1066         case MONO_TRAMPOLINE_MONITOR_ENTER:
1067                 return mono_monitor_enter_trampoline;
1068         case MONO_TRAMPOLINE_MONITOR_EXIT:
1069                 return mono_monitor_exit_trampoline;
1070         case MONO_TRAMPOLINE_VCALL:
1071                 return mono_vcall_trampoline;
1072 #ifdef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD
1073         case MONO_TRAMPOLINE_HANDLER_BLOCK_GUARD:
1074                 return mono_handler_block_guard_trampoline;
1075 #endif
1076         default:
1077                 g_assert_not_reached ();
1078                 return NULL;
1079         }
1080 }
1081
1082 static guchar*
1083 create_trampoline_code (MonoTrampolineType tramp_type)
1084 {
1085         MonoTrampInfo *info;
1086         guchar *code;
1087
1088         code = mono_arch_create_generic_trampoline (tramp_type, &info, FALSE);
1089         if (info) {
1090                 mono_save_trampoline_xdebug_info (info);
1091                 if (mono_jit_map_is_enabled ())
1092                         mono_emit_jit_tramp (info->code, info->code_size, info->name);
1093                 mono_tramp_info_free (info);
1094         }
1095
1096         return code;
1097 }
1098
1099 void
1100 mono_trampolines_init (void)
1101 {
1102         InitializeCriticalSection (&trampolines_mutex);
1103
1104         if (mono_aot_only)
1105                 return;
1106
1107         mono_trampoline_code [MONO_TRAMPOLINE_JIT] = create_trampoline_code (MONO_TRAMPOLINE_JIT);
1108         mono_trampoline_code [MONO_TRAMPOLINE_JUMP] = create_trampoline_code (MONO_TRAMPOLINE_JUMP);
1109         mono_trampoline_code [MONO_TRAMPOLINE_CLASS_INIT] = create_trampoline_code (MONO_TRAMPOLINE_CLASS_INIT);
1110         mono_trampoline_code [MONO_TRAMPOLINE_GENERIC_CLASS_INIT] = create_trampoline_code (MONO_TRAMPOLINE_GENERIC_CLASS_INIT);
1111         mono_trampoline_code [MONO_TRAMPOLINE_RGCTX_LAZY_FETCH] = create_trampoline_code (MONO_TRAMPOLINE_RGCTX_LAZY_FETCH);
1112 #ifdef MONO_ARCH_AOT_SUPPORTED
1113         mono_trampoline_code [MONO_TRAMPOLINE_AOT] = create_trampoline_code (MONO_TRAMPOLINE_AOT);
1114         mono_trampoline_code [MONO_TRAMPOLINE_AOT_PLT] = create_trampoline_code (MONO_TRAMPOLINE_AOT_PLT);
1115 #endif
1116 #ifdef MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE
1117         mono_trampoline_code [MONO_TRAMPOLINE_DELEGATE] = create_trampoline_code (MONO_TRAMPOLINE_DELEGATE);
1118 #endif
1119         mono_trampoline_code [MONO_TRAMPOLINE_RESTORE_STACK_PROT] = create_trampoline_code (MONO_TRAMPOLINE_RESTORE_STACK_PROT);
1120         mono_trampoline_code [MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING] = create_trampoline_code (MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING);
1121         mono_trampoline_code [MONO_TRAMPOLINE_MONITOR_ENTER] = create_trampoline_code (MONO_TRAMPOLINE_MONITOR_ENTER);
1122         mono_trampoline_code [MONO_TRAMPOLINE_MONITOR_EXIT] = create_trampoline_code (MONO_TRAMPOLINE_MONITOR_EXIT);
1123         mono_trampoline_code [MONO_TRAMPOLINE_VCALL] = create_trampoline_code (MONO_TRAMPOLINE_VCALL);
1124 #ifdef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD
1125         mono_trampoline_code [MONO_TRAMPOLINE_HANDLER_BLOCK_GUARD] = create_trampoline_code (MONO_TRAMPOLINE_HANDLER_BLOCK_GUARD);
1126         mono_create_handler_block_trampoline ();
1127 #endif
1128
1129         mono_counters_register ("Calls to trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &trampoline_calls);
1130         mono_counters_register ("JIT trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &jit_trampolines);
1131         mono_counters_register ("Unbox trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &unbox_trampolines);
1132         mono_counters_register ("Static rgctx trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &static_rgctx_trampolines);
1133 }
1134
1135 void
1136 mono_trampolines_cleanup (void)
1137 {
1138         if (class_init_hash_addr)
1139                 g_hash_table_destroy (class_init_hash_addr);
1140         if (rgctx_lazy_fetch_trampoline_hash)
1141                 g_hash_table_destroy (rgctx_lazy_fetch_trampoline_hash);
1142         if (rgctx_lazy_fetch_trampoline_hash_addr)
1143                 g_hash_table_destroy (rgctx_lazy_fetch_trampoline_hash_addr);
1144
1145         DeleteCriticalSection (&trampolines_mutex);
1146 }
1147
1148 guint8 *
1149 mono_get_trampoline_code (MonoTrampolineType tramp_type)
1150 {
1151         g_assert (mono_trampoline_code [tramp_type]);
1152
1153         return mono_trampoline_code [tramp_type];
1154 }
1155
1156 gpointer
1157 mono_create_specific_trampoline (gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len)
1158 {
1159         if (mono_aot_only)
1160                 return mono_aot_create_specific_trampoline (mono_defaults.corlib, arg1, tramp_type, domain, code_len);
1161         else
1162                 return mono_arch_create_specific_trampoline (arg1, tramp_type, domain, code_len);
1163 }
1164
1165 gpointer
1166 mono_create_class_init_trampoline (MonoVTable *vtable)
1167 {
1168         gpointer code, ptr;
1169         MonoDomain *domain = vtable->domain;
1170
1171         g_assert (!vtable->klass->generic_container);
1172
1173         /* previously created trampoline code */
1174         mono_domain_lock (domain);
1175         ptr = 
1176                 g_hash_table_lookup (domain_jit_info (domain)->class_init_trampoline_hash,
1177                                                                   vtable);
1178         mono_domain_unlock (domain);
1179         if (ptr)
1180                 return ptr;
1181
1182         code = mono_create_specific_trampoline (vtable, MONO_TRAMPOLINE_CLASS_INIT, domain, NULL);
1183
1184         ptr = mono_create_ftnptr (domain, code);
1185
1186         /* store trampoline address */
1187         mono_domain_lock (domain);
1188         g_hash_table_insert (domain_jit_info (domain)->class_init_trampoline_hash,
1189                                                           vtable, ptr);
1190         mono_domain_unlock (domain);
1191
1192         mono_trampolines_lock ();
1193         if (!class_init_hash_addr)
1194                 class_init_hash_addr = g_hash_table_new (NULL, NULL);
1195         g_hash_table_insert (class_init_hash_addr, ptr, vtable);
1196         mono_trampolines_unlock ();
1197
1198         return ptr;
1199 }
1200
1201 gpointer
1202 mono_create_generic_class_init_trampoline (void)
1203 {
1204 #ifdef MONO_ARCH_VTABLE_REG
1205         static gpointer code;
1206         MonoTrampInfo *info;
1207
1208         mono_trampolines_lock ();
1209
1210         if (!code) {
1211                 if (mono_aot_only)
1212                         /* get_named_code () might return an ftnptr, but our caller expects a direct pointer */
1213                         code = mono_get_addr_from_ftnptr (mono_aot_get_trampoline ("generic_class_init_trampoline"));
1214                 else {
1215                         code = mono_arch_create_generic_class_init_trampoline (&info, FALSE);
1216
1217                         if (info) {
1218                                 mono_save_trampoline_xdebug_info (info);
1219                                 if (mono_jit_map_is_enabled ())
1220                                         mono_emit_jit_tramp (info->code, info->code_size, info->name);
1221                                 mono_tramp_info_free (info);
1222                         }
1223                 }
1224         }
1225
1226         mono_trampolines_unlock ();
1227
1228         return code;
1229 #else
1230         g_assert_not_reached ();
1231 #endif
1232 }
1233
1234 gpointer
1235 mono_create_jump_trampoline (MonoDomain *domain, MonoMethod *method, gboolean add_sync_wrapper)
1236 {
1237         MonoJitInfo *ji;
1238         gpointer code;
1239         guint32 code_size = 0;
1240
1241         code = mono_jit_find_compiled_method_with_jit_info (domain, method, &ji);
1242         /*
1243          * We cannot recover the correct type of a shared generic
1244          * method from its native code address, so we use the
1245          * trampoline instead.
1246          */
1247         if (code && !ji->has_generic_jit_info)
1248                 return code;
1249
1250         mono_domain_lock (domain);
1251         code = g_hash_table_lookup (domain_jit_info (domain)->jump_trampoline_hash, method);
1252         mono_domain_unlock (domain);
1253         if (code)
1254                 return code;
1255
1256         code = mono_create_specific_trampoline (method, MONO_TRAMPOLINE_JUMP, mono_domain_get (), &code_size);
1257         g_assert (code_size);
1258
1259         ji = mono_domain_alloc0 (domain, MONO_SIZEOF_JIT_INFO);
1260         ji->code_start = code;
1261         ji->code_size = code_size;
1262         ji->method = method;
1263
1264         /*
1265          * mono_delegate_ctor needs to find the method metadata from the 
1266          * trampoline address, so we save it here.
1267          */
1268
1269         mono_jit_info_table_add (domain, ji);
1270
1271         mono_domain_lock (domain);
1272         g_hash_table_insert (domain_jit_info (domain)->jump_trampoline_hash, method, ji->code_start);
1273         mono_domain_unlock (domain);
1274
1275         return ji->code_start;
1276 }
1277
1278 gpointer
1279 mono_create_jit_trampoline_in_domain (MonoDomain *domain, MonoMethod *method)
1280 {
1281         gpointer tramp;
1282
1283         if (mono_aot_only) {
1284                 /* Avoid creating trampolines if possible */
1285                 gpointer code = mono_jit_find_compiled_method (domain, method);
1286                 
1287                 if (code)
1288                         return code;
1289         }
1290
1291         mono_domain_lock (domain);
1292         tramp = g_hash_table_lookup (domain_jit_info (domain)->jit_trampoline_hash, method);
1293         mono_domain_unlock (domain);
1294         if (tramp)
1295                 return tramp;
1296
1297         tramp = mono_create_specific_trampoline (method, MONO_TRAMPOLINE_JIT, domain, NULL);
1298         
1299         mono_domain_lock (domain);
1300         g_hash_table_insert (domain_jit_info (domain)->jit_trampoline_hash, method, tramp);
1301         mono_domain_unlock (domain);
1302
1303         jit_trampolines++;
1304
1305         return tramp;
1306 }       
1307
1308 gpointer
1309 mono_create_jit_trampoline (MonoMethod *method)
1310 {
1311         return mono_create_jit_trampoline_in_domain (mono_domain_get (), method);
1312 }
1313
1314 gpointer
1315 mono_create_jit_trampoline_from_token (MonoImage *image, guint32 token)
1316 {
1317         gpointer tramp;
1318
1319         MonoDomain *domain = mono_domain_get ();
1320         guint8 *buf, *start;
1321
1322         buf = start = mono_domain_code_reserve (domain, 2 * sizeof (gpointer));
1323
1324         *(gpointer*)(gpointer)buf = image;
1325         buf += sizeof (gpointer);
1326         *(guint32*)(gpointer)buf = token;
1327
1328         tramp = mono_create_specific_trampoline (start, MONO_TRAMPOLINE_AOT, domain, NULL);
1329
1330         jit_trampolines++;
1331
1332         return tramp;
1333 }       
1334
1335 gpointer
1336 mono_create_delegate_trampoline (MonoClass *klass)
1337 {
1338 #ifdef MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE
1339         MonoDomain *domain = mono_domain_get ();
1340         gpointer ptr;
1341         guint32 code_size = 0;
1342         gpointer *tramp_data;
1343         MonoMethod *invoke;
1344
1345         mono_domain_lock (domain);
1346         ptr = g_hash_table_lookup (domain_jit_info (domain)->delegate_trampoline_hash, klass);
1347         mono_domain_unlock (domain);
1348         if (ptr)
1349                 return ptr;
1350
1351         // Precompute the delegate invoke impl and pass it to the delegate trampoline
1352         invoke = mono_get_delegate_invoke (klass);
1353         g_assert (invoke);
1354
1355         tramp_data = mono_domain_alloc (domain, sizeof (gpointer) * 3);
1356         tramp_data [0] = invoke;
1357         tramp_data [1] = mono_arch_get_delegate_invoke_impl (mono_method_signature (invoke), TRUE);
1358         tramp_data [2] = mono_arch_get_delegate_invoke_impl (mono_method_signature (invoke), FALSE);
1359
1360         ptr = mono_create_specific_trampoline (tramp_data, MONO_TRAMPOLINE_DELEGATE, mono_domain_get (), &code_size);
1361         g_assert (code_size);
1362
1363         /* store trampoline address */
1364         mono_domain_lock (domain);
1365         g_hash_table_insert (domain_jit_info (domain)->delegate_trampoline_hash,
1366                                                           klass, ptr);
1367         mono_domain_unlock (domain);
1368
1369         return ptr;
1370 #else
1371         return NULL;
1372 #endif
1373 }
1374
1375 gpointer
1376 mono_create_rgctx_lazy_fetch_trampoline (guint32 offset)
1377 {
1378         static gboolean inited = FALSE;
1379         static int num_trampolines = 0;
1380         MonoTrampInfo *info;
1381
1382         gpointer tramp, ptr;
1383
1384         if (mono_aot_only)
1385                 return mono_aot_get_lazy_fetch_trampoline (offset);
1386
1387         mono_trampolines_lock ();
1388         if (rgctx_lazy_fetch_trampoline_hash)
1389                 tramp = g_hash_table_lookup (rgctx_lazy_fetch_trampoline_hash, GUINT_TO_POINTER (offset));
1390         else
1391                 tramp = NULL;
1392         mono_trampolines_unlock ();
1393         if (tramp)
1394                 return tramp;
1395
1396         tramp = mono_arch_create_rgctx_lazy_fetch_trampoline (offset, &info, FALSE);
1397         if (info) {
1398                 mono_save_trampoline_xdebug_info (info);
1399                 if (mono_jit_map_is_enabled ())
1400                         mono_emit_jit_tramp (info->code, info->code_size, info->name);
1401                 mono_tramp_info_free (info);
1402         }
1403         ptr = mono_create_ftnptr (mono_get_root_domain (), tramp);
1404
1405         mono_trampolines_lock ();
1406         if (!rgctx_lazy_fetch_trampoline_hash) {
1407                 rgctx_lazy_fetch_trampoline_hash = g_hash_table_new (NULL, NULL);
1408                 rgctx_lazy_fetch_trampoline_hash_addr = g_hash_table_new (NULL, NULL);
1409         }
1410         g_hash_table_insert (rgctx_lazy_fetch_trampoline_hash, GUINT_TO_POINTER (offset), ptr);
1411         g_assert (offset != -1);
1412         g_hash_table_insert (rgctx_lazy_fetch_trampoline_hash_addr, ptr, GUINT_TO_POINTER (offset + 1));
1413         mono_trampolines_unlock ();
1414
1415         if (!inited) {
1416                 mono_counters_register ("RGCTX num lazy fetch trampolines",
1417                                 MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &num_trampolines);
1418                 inited = TRUE;
1419         }
1420         num_trampolines++;
1421
1422         return ptr;
1423 }
1424
1425 gpointer
1426 mono_create_monitor_enter_trampoline (void)
1427 {
1428         static gpointer code;
1429         MonoTrampInfo *info;
1430
1431         if (mono_aot_only) {
1432                 if (!code)
1433                         code = mono_aot_get_trampoline ("monitor_enter_trampoline");
1434                 return code;
1435         }
1436
1437 #ifdef MONO_ARCH_MONITOR_OBJECT_REG
1438         mono_trampolines_lock ();
1439
1440         if (!code) {
1441                 code = mono_arch_create_monitor_enter_trampoline (&info, FALSE);
1442                 if (info) {
1443                         mono_save_trampoline_xdebug_info (info);
1444                         if (mono_jit_map_is_enabled ())
1445                                 mono_emit_jit_tramp (info->code, info->code_size, info->name);
1446                         mono_tramp_info_free (info);
1447                 }
1448         }
1449
1450         mono_trampolines_unlock ();
1451 #else
1452         code = NULL;
1453         g_assert_not_reached ();
1454 #endif
1455
1456         return code;
1457 }
1458
1459 gpointer
1460 mono_create_monitor_exit_trampoline (void)
1461 {
1462         static gpointer code;
1463         MonoTrampInfo *info;
1464
1465         if (mono_aot_only) {
1466                 if (!code)
1467                         code = mono_aot_get_trampoline ("monitor_exit_trampoline");
1468                 return code;
1469         }
1470
1471 #ifdef MONO_ARCH_MONITOR_OBJECT_REG
1472         mono_trampolines_lock ();
1473
1474         if (!code) {
1475                 code = mono_arch_create_monitor_exit_trampoline (&info, FALSE);
1476                 if (info) {
1477                         mono_save_trampoline_xdebug_info (info);
1478                         if (mono_jit_map_is_enabled ())
1479                                 mono_emit_jit_tramp (info->code, info->code_size, info->name);
1480                         mono_tramp_info_free (info);
1481                 }
1482         }
1483
1484         mono_trampolines_unlock ();
1485 #else
1486         code = NULL;
1487         g_assert_not_reached ();
1488 #endif
1489         return code;
1490 }
1491  
1492 #ifdef MONO_ARCH_LLVM_SUPPORTED
1493 /*
1494  * mono_create_llvm_imt_trampoline:
1495  *
1496  *   LLVM compiled code can't pass in the IMT argument, so we use this trampoline, which
1497  * sets the IMT argument, then branches to the contents of the vtable slot given by
1498  * vt_offset in the vtable which is obtained from the argument list.
1499  */
1500 gpointer
1501 mono_create_llvm_imt_trampoline (MonoDomain *domain, MonoMethod *m, int vt_offset)
1502 {
1503 #ifdef MONO_ARCH_HAVE_LLVM_IMT_TRAMPOLINE
1504         return mono_arch_get_llvm_imt_trampoline (domain, m, vt_offset);
1505 #else
1506         g_assert_not_reached ();
1507         return NULL;
1508 #endif
1509 }
1510 #endif
1511
1512 MonoVTable*
1513 mono_find_class_init_trampoline_by_addr (gconstpointer addr)
1514 {
1515         MonoVTable *res;
1516
1517         mono_trampolines_lock ();
1518         if (class_init_hash_addr)
1519                 res = g_hash_table_lookup (class_init_hash_addr, addr);
1520         else
1521                 res = NULL;
1522         mono_trampolines_unlock ();
1523         return res;
1524 }
1525
1526 guint32
1527 mono_find_rgctx_lazy_fetch_trampoline_by_addr (gconstpointer addr)
1528 {
1529         int offset;
1530
1531         mono_trampolines_lock ();
1532         if (rgctx_lazy_fetch_trampoline_hash_addr) {
1533                 /* We store the real offset + 1 so we can detect when the lookup fails */
1534                 offset = GPOINTER_TO_INT (g_hash_table_lookup (rgctx_lazy_fetch_trampoline_hash_addr, addr));
1535                 if (offset)
1536                         offset -= 1;
1537                 else
1538                         offset = -1;
1539         } else {
1540                 offset = -1;
1541         }
1542         mono_trampolines_unlock ();
1543         return offset;
1544 }
1545
1546 static const char*tramp_names [MONO_TRAMPOLINE_NUM] = {
1547         "jit",
1548         "jump",
1549         "class_init",
1550         "generic_class_init",
1551         "rgctx_lazy_fetch",
1552         "aot",
1553         "aot_plt",
1554         "delegate",
1555         "restore_stack_prot",
1556         "generic_virtual_remoting",
1557         "monitor_enter",
1558         "monitor_exit",
1559         "vcall",
1560 #ifdef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD
1561         "handler_block_guard"
1562 #endif
1563 };
1564
1565 /*
1566  * mono_get_generic_trampoline_name:
1567  *
1568  *   Returns a pointer to malloc-ed memory.
1569  */
1570 char*
1571 mono_get_generic_trampoline_name (MonoTrampolineType tramp_type)
1572 {
1573         return g_strdup_printf ("generic_trampoline_%s", tramp_names [tramp_type]);
1574 }
1575
1576 /*
1577  * mono_get_rgctx_fetch_trampoline_name:
1578  *
1579  *   Returns a pointer to malloc-ed memory.
1580  */
1581 char*
1582 mono_get_rgctx_fetch_trampoline_name (int slot)
1583 {
1584         gboolean mrgctx;
1585         int index;
1586
1587         mrgctx = MONO_RGCTX_SLOT_IS_MRGCTX (slot);
1588         index = MONO_RGCTX_SLOT_INDEX (slot);
1589
1590         return g_strdup_printf ("rgctx_fetch_trampoline_%s_%d", mrgctx ? "mrgctx" : "rgctx", index);
1591 }
1592