Implement passing of this as the first argument for ia64 correctly.
[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         }
472
473         /* Calls made through delegates on platforms without delegate trampolines */
474         if (!code && mono_method_needs_static_rgctx_invoke (m, FALSE))
475                 need_rgctx_tramp = TRUE;
476
477         addr = compiled_method = mono_compile_method (m);
478         g_assert (addr);
479
480         mono_debugger_trampoline_compiled (code, m, addr);
481
482         if (need_rgctx_tramp)
483                 addr = mono_create_static_rgctx_trampoline (m, addr);
484
485         if (generic_virtual || variant_iface) {
486                 MonoMethod *target = generic_virtual ? generic_virtual : variant_iface;
487
488                 vtable_slot = orig_vtable_slot;
489                 g_assert (vtable_slot);
490
491                 if (vt->klass->valuetype) /*FIXME is this required variant iface?*/
492                         addr = get_unbox_trampoline (m, addr, need_rgctx_tramp);
493
494                 mono_method_add_generic_virtual_invocation (mono_domain_get (), 
495                                                                                                         vt, vtable_slot,
496                                                                                                         target, addr);
497
498                 return addr;
499         }
500
501         /* the method was jumped to */
502         if (!code) {
503                 MonoDomain *domain = mono_domain_get ();
504
505                 /* Patch the got entries pointing to this method */
506                 /* 
507                  * We do this here instead of in mono_codegen () to cover the case when m
508                  * was loaded from an aot image.
509                  */
510                 if (domain_jit_info (domain)->jump_target_got_slot_hash) {
511                         GSList *list, *tmp;
512
513                         mono_domain_lock (domain);
514                         list = g_hash_table_lookup (domain_jit_info (domain)->jump_target_got_slot_hash, m);
515                         if (list) {
516                                 for (tmp = list; tmp; tmp = tmp->next) {
517                                         gpointer *got_slot = tmp->data;
518                                         *got_slot = addr;
519                                 }
520                                 g_hash_table_remove (domain_jit_info (domain)->jump_target_got_slot_hash, m);
521                                 g_slist_free (list);
522                         }
523                         mono_domain_unlock (domain);
524                 }
525
526                 return addr;
527         }
528
529         vtable_slot = orig_vtable_slot;
530
531         if (vtable_slot) {
532                 if (m->klass->valuetype)
533                         addr = get_unbox_trampoline (m, addr, need_rgctx_tramp);
534
535                 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))) {
536                         g_assert (*vtable_slot_to_patch);
537                         *vtable_slot_to_patch = mono_get_addr_from_ftnptr (addr);
538                 }
539         }
540         else {
541                 guint8 *plt_entry = mono_aot_get_plt_entry (code);
542
543                 if (plt_entry) {
544                                 mono_aot_patch_plt_entry (plt_entry, NULL, regs, addr);
545                 } else {
546                         if (generic_shared) {
547                                 if (m->wrapper_type != MONO_WRAPPER_NONE)
548                                         m = mono_marshal_method_from_wrapper (m);
549                                 g_assert (mono_method_is_generic_sharable_impl (m, FALSE));
550                         }
551
552                         /* Patch calling code */
553                         {
554                                 MonoJitInfo *target_ji = 
555                                         mono_jit_info_table_find (mono_domain_get (), mono_get_addr_from_ftnptr (compiled_method));
556
557                                 if (!ji)
558                                         ji = mono_jit_info_table_find (mono_domain_get (), (char*)code);
559
560                                 if (mono_method_same_domain (ji, target_ji))
561                                         mono_arch_patch_callsite (ji->code_start, code, addr);
562                         }
563                 }
564         }
565
566         return addr;
567 }
568
569 /**
570  * mono_magic_trampoline:
571  *
572  *   This trampoline handles normal calls from JITted code.
573  */
574 gpointer
575 mono_magic_trampoline (mgreg_t *regs, guint8 *code, gpointer arg, guint8* tramp)
576 {
577         trampoline_calls ++;
578
579         return common_call_trampoline (regs, code, arg, tramp, NULL, NULL, FALSE);
580 }
581
582 /*
583  * mono_vcall_trampoline:
584  *
585  *   This trampoline handles virtual calls.
586  */
587 static gpointer
588 mono_vcall_trampoline (mgreg_t *regs, guint8 *code, int slot, guint8 *tramp)
589 {
590         MonoObject *this;
591         MonoVTable *vt;
592         gpointer *vtable_slot;
593         MonoMethod *m;
594         gboolean need_rgctx_tramp = FALSE;
595         gpointer addr;
596
597         trampoline_calls ++;
598
599         /*
600          * We need to obtain the following pieces of information:
601          * - the method which needs to be compiled.
602          * - the vtable slot.
603          * We use one vtable trampoline per vtable slot index, so we need only the vtable,
604          * the other two can be computed from the vtable + the slot index.
605          */
606 #ifndef MONO_ARCH_THIS_AS_FIRST_ARG
607         /* All architectures should support this */
608         g_assert_not_reached ();
609 #endif
610
611         /*
612          * Obtain the vtable from the 'this' arg.
613          */
614         this = mono_arch_get_this_arg_from_call (regs, code);
615         g_assert (this);
616
617         vt = this->vtable;
618
619         if (slot >= 0) {
620                 /* Normal virtual call */
621                 vtable_slot = &(vt->vtable [slot]);
622
623                 /* Avoid loading metadata or creating a generic vtable if possible */
624                 addr = mono_aot_get_method_from_vt_slot (mono_domain_get (), vt, slot);
625                 if (addr && !vt->klass->valuetype) {
626                         if (mono_domain_owns_vtable_slot (mono_domain_get (), vtable_slot))
627                                 *vtable_slot = addr;
628
629                         return mono_create_ftnptr (mono_domain_get (), addr);
630                 }
631
632                 /*
633                  * Bug #616463 (see
634                  * is_generic_method_definition() above) also
635                  * goes away if we do a
636                  * mono_class_setup_vtable (vt->klass) here,
637                  * because we then inflate the method
638                  * correctly, put it in the cache, and the
639                  * "wrong" inflation invocation still looks up
640                  * the correctly inflated method.
641                  *
642                  * The hack above seems more stable and
643                  * trustworthy.
644                  */
645                 m = mono_class_get_vtable_entry (vt->klass, slot);
646
647                 need_rgctx_tramp = mono_method_needs_static_rgctx_invoke (m, 0);
648         } else {
649                 /* IMT call */
650                 vtable_slot = &(((gpointer*)vt) [slot]);
651
652                 m = NULL;
653                 need_rgctx_tramp = FALSE;
654         }
655
656         return common_call_trampoline (regs, code, m, tramp, vt, vtable_slot, need_rgctx_tramp);
657 }
658
659 gpointer
660 mono_generic_virtual_remoting_trampoline (mgreg_t *regs, guint8 *code, MonoMethod *m, guint8 *tramp)
661 {
662         MonoGenericContext context = { NULL, NULL };
663         MonoMethod *imt_method, *declaring;
664         gpointer addr;
665
666         trampoline_calls ++;
667
668         g_assert (m->is_generic);
669
670         if (m->is_inflated)
671                 declaring = mono_method_get_declaring_generic_method (m);
672         else
673                 declaring = m;
674
675         if (m->klass->generic_class)
676                 context.class_inst = m->klass->generic_class->context.class_inst;
677         else
678                 g_assert (!m->klass->generic_container);
679
680 #ifdef MONO_ARCH_HAVE_IMT
681         imt_method = mono_arch_find_imt_method (regs, code);
682         if (imt_method->is_inflated)
683                 context.method_inst = ((MonoMethodInflated*)imt_method)->context.method_inst;
684 #endif
685         m = mono_class_inflate_generic_method (declaring, &context);
686         m = mono_marshal_get_remoting_invoke_with_check (m);
687
688         addr = mono_compile_method (m);
689         g_assert (addr);
690
691         mono_debugger_trampoline_compiled (NULL, m, addr);
692
693         return addr;
694 }
695
696 /*
697  * mono_aot_trampoline:
698  *
699  *   This trampoline handles calls made from AOT code. We try to bypass the 
700  * normal JIT compilation logic to avoid loading the metadata for the method.
701  */
702 #ifdef MONO_ARCH_AOT_SUPPORTED
703 gpointer
704 mono_aot_trampoline (mgreg_t *regs, guint8 *code, guint8 *token_info, 
705                                          guint8* tramp)
706 {
707         MonoImage *image;
708         guint32 token;
709         MonoMethod *method = NULL;
710         gpointer addr;
711         guint8 *plt_entry;
712
713         trampoline_calls ++;
714
715         image = *(gpointer*)(gpointer)token_info;
716         token_info += sizeof (gpointer);
717         token = *(guint32*)(gpointer)token_info;
718
719         addr = mono_aot_get_method_from_token (mono_domain_get (), image, token);
720         if (!addr) {
721                 method = mono_get_method (image, token, NULL);
722                 g_assert (method);
723
724                 /* Use the generic code */
725                 return mono_magic_trampoline (regs, code, method, tramp);
726         }
727
728         addr = mono_create_ftnptr (mono_domain_get (), addr);
729
730         /* This is a normal call through a PLT entry */
731         plt_entry = mono_aot_get_plt_entry (code);
732         g_assert (plt_entry);
733
734         mono_aot_patch_plt_entry (plt_entry, NULL, regs, addr);
735
736         return addr;
737 }
738
739 /*
740  * mono_aot_plt_trampoline:
741  *
742  *   This trampoline handles calls made from AOT code through the PLT table.
743  */
744 gpointer
745 mono_aot_plt_trampoline (mgreg_t *regs, guint8 *code, guint8 *aot_module, 
746                                                  guint8* tramp)
747 {
748         guint32 plt_info_offset = mono_aot_get_plt_info_offset (regs, code);
749         gpointer res;
750
751         trampoline_calls ++;
752
753         res = mono_aot_plt_resolve (aot_module, plt_info_offset, code);
754         if (!res) {
755                 if (mono_loader_get_last_error ())
756                         mono_raise_exception (mono_loader_error_prepare_exception (mono_loader_get_last_error ()));
757                 // FIXME: Error handling (how ?)
758                 g_assert (res);
759         }
760
761         return res;
762 }
763 #endif
764
765 /**
766  * mono_class_init_trampoline:
767  *
768  * This method calls mono_runtime_class_init () to run the static constructor
769  * for the type, then patches the caller code so it is not called again.
770  */
771 void
772 mono_class_init_trampoline (mgreg_t *regs, guint8 *code, MonoVTable *vtable, guint8 *tramp)
773 {
774         guint8 *plt_entry = mono_aot_get_plt_entry (code);
775
776         trampoline_calls ++;
777
778         mono_runtime_class_init (vtable);
779
780         if (plt_entry) {
781                 mono_arch_nullify_plt_entry (plt_entry, regs);
782         } else {
783                 mono_arch_nullify_class_init_trampoline (code, regs);
784         }
785 }
786
787 /**
788  * mono_generic_class_init_trampoline:
789  *
790  * This method calls mono_runtime_class_init () to run the static constructor
791  * for the type.
792  */
793 void
794 mono_generic_class_init_trampoline (mgreg_t *regs, guint8 *code, MonoVTable *vtable, guint8 *tramp)
795 {
796         trampoline_calls ++;
797
798         mono_runtime_class_init (vtable);
799 }
800
801 static gpointer
802 mono_rgctx_lazy_fetch_trampoline (mgreg_t *regs, guint8 *code, gpointer data, guint8 *tramp)
803 {
804 #ifdef MONO_ARCH_VTABLE_REG
805         static gboolean inited = FALSE;
806         static int num_lookups = 0;
807         guint32 slot = GPOINTER_TO_UINT (data);
808         mgreg_t *r = (mgreg_t*)regs;
809         gpointer arg = (gpointer)(gssize)r [MONO_ARCH_VTABLE_REG];
810         guint32 index = MONO_RGCTX_SLOT_INDEX (slot);
811         gboolean mrgctx = MONO_RGCTX_SLOT_IS_MRGCTX (slot);
812
813         trampoline_calls ++;
814
815         if (!inited) {
816                 mono_counters_register ("RGCTX unmanaged lookups", MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &num_lookups);
817                 inited = TRUE;
818         }
819
820         num_lookups++;
821
822         if (mrgctx)
823                 return mono_method_fill_runtime_generic_context (arg, index);
824         else
825                 return mono_class_fill_runtime_generic_context (arg, index);
826 #else
827         g_assert_not_reached ();
828 #endif
829 }
830
831 void
832 mono_monitor_enter_trampoline (mgreg_t *regs, guint8 *code, MonoObject *obj, guint8 *tramp)
833 {
834         mono_monitor_enter (obj);
835 }
836
837 void
838 mono_monitor_exit_trampoline (mgreg_t *regs, guint8 *code, MonoObject *obj, guint8 *tramp)
839 {
840         mono_monitor_exit (obj);
841 }
842
843 #ifdef MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE
844
845 /**
846  * mono_delegate_trampoline:
847  *
848  *   This trampoline handles calls made to Delegate:Invoke ().
849  * This is called once the first time a delegate is invoked, so it must be fast.
850  */
851 gpointer
852 mono_delegate_trampoline (mgreg_t *regs, guint8 *code, gpointer *tramp_data, guint8* tramp)
853 {
854         MonoDomain *domain = mono_domain_get ();
855         MonoDelegate *delegate;
856         MonoJitInfo *ji;
857         MonoMethod *m;
858         MonoMethod *method = NULL;
859         gboolean multicast, callvirt = FALSE;
860         gboolean need_rgctx_tramp = FALSE;
861         MonoMethod *invoke = tramp_data [0];
862         guint8 *impl_this = tramp_data [1];
863         guint8 *impl_nothis = tramp_data [2];
864         MonoError err;
865         MonoMethodSignature *sig;
866
867         trampoline_calls ++;
868
869         /* Obtain the delegate object according to the calling convention */
870         delegate = mono_arch_get_this_arg_from_call (regs, code);
871
872         if (delegate->method) {
873                 method = delegate->method;
874
875                 /*
876                  * delegate->method_ptr == NULL means the delegate was initialized by 
877                  * mini_delegate_ctor, while != NULL means it is initialized by 
878                  * mono_delegate_ctor_with_method (). In both cases, we need to add wrappers
879                  * (ctor_with_method () does this, but it doesn't store the wrapper back into
880                  * delegate->method).
881                  */
882                 if (delegate->target && delegate->target->vtable->klass == mono_defaults.transparent_proxy_class) {
883 #ifndef DISABLE_COM
884                         if (((MonoTransparentProxy *)delegate->target)->remote_class->proxy_class != mono_defaults.com_object_class && 
885                            !((MonoTransparentProxy *)delegate->target)->remote_class->proxy_class->is_com_object)
886 #endif
887                                 method = mono_marshal_get_remoting_invoke (method);
888                 }
889                 else {
890                         mono_error_init (&err);
891                         sig = mono_method_signature_checked (method, &err);
892                         if (!sig)
893                                 mono_error_raise_exception (&err);
894                                 
895                         if (sig->hasthis && method->klass->valuetype)
896                                 method = mono_marshal_get_unbox_wrapper (method);
897                 }
898         } else {
899                 ji = mono_jit_info_table_find (domain, mono_get_addr_from_ftnptr (delegate->method_ptr));
900                 if (ji)
901                         method = ji->method;
902         }
903
904         if (method) {
905                 mono_error_init (&err);
906                 sig = mono_method_signature_checked (method, &err);
907                 if (!sig)
908                         mono_error_raise_exception (&err);
909
910                 callvirt = !delegate->target && sig->hasthis;
911         }
912
913         if (method && method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED)
914                 method = mono_marshal_get_synchronized_wrapper (method);
915
916         if (method && mono_method_needs_static_rgctx_invoke (method, FALSE))
917                 need_rgctx_tramp = TRUE;
918
919         /* 
920          * If the called address is a trampoline, replace it with the compiled method so
921          * further calls don't have to go through the trampoline.
922          */
923         if (method && !callvirt) {
924                 /* Avoid the overhead of looking up an already compiled method if possible */
925                 if (delegate->method_code && *delegate->method_code) {
926                         delegate->method_ptr = *delegate->method_code;
927                 } else {
928                         delegate->method_ptr = mono_compile_method (method);
929                         if (need_rgctx_tramp)
930                                 delegate->method_ptr = mono_create_static_rgctx_trampoline (method, delegate->method_ptr);
931                         if (delegate->method_code)
932                                 *delegate->method_code = delegate->method_ptr;
933                         mono_debugger_trampoline_compiled (NULL, method, delegate->method_ptr);
934                 }
935         } else {
936                 if (need_rgctx_tramp)
937                         delegate->method_ptr = mono_create_static_rgctx_trampoline (method, delegate->method_ptr);
938         }
939
940         multicast = ((MonoMulticastDelegate*)delegate)->prev != NULL;
941         if (!multicast && !callvirt) {
942                 if (method && (method->flags & METHOD_ATTRIBUTE_STATIC) && mono_method_signature (method)->param_count == mono_method_signature (invoke)->param_count + 1)
943                         /* Closed static delegate */
944                         code = impl_this;
945                 else
946                         code = delegate->target ? impl_this : impl_nothis;
947
948                 if (code) {
949                         delegate->invoke_impl = mono_get_addr_from_ftnptr (code);
950                         return code;
951                 }
952         }
953
954         /* The general, unoptimized case */
955         m = mono_marshal_get_delegate_invoke (invoke, delegate);
956         code = mono_compile_method (m);
957         delegate->invoke_impl = mono_get_addr_from_ftnptr (code);
958         mono_debugger_trampoline_compiled (NULL, m, delegate->invoke_impl);
959
960         return code;
961 }
962
963 #endif
964
965 #ifdef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD
966 static gpointer
967 mono_handler_block_guard_trampoline (mgreg_t *regs, guint8 *code, gpointer *tramp_data, guint8* tramp)
968 {
969         MonoContext ctx;
970         MonoException *exc;
971         MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
972         gpointer resume_ip = jit_tls->handler_block_return_address;
973
974         memcpy (&ctx, &jit_tls->ex_ctx, sizeof (MonoContext));
975         MONO_CONTEXT_SET_IP (&ctx, jit_tls->handler_block_return_address);
976
977         jit_tls->handler_block_return_address = NULL;
978         jit_tls->handler_block = NULL;
979
980         if (!resume_ip) /*this should not happen, but we should avoid crashing */
981                 exc = mono_get_exception_execution_engine ("Invalid internal state, resuming abort after handler block but no resume ip found");
982         else
983                 exc = mono_thread_resume_interruption ();
984
985         if (exc) {
986                 static void (*restore_context) (MonoContext *);
987
988                 if (!restore_context)
989                         restore_context = mono_get_restore_context ();
990
991                 mono_handle_exception (&ctx, exc, NULL, FALSE);
992                 restore_context (&ctx);
993         }
994
995         return resume_ip;
996 }
997
998 gpointer
999 mono_create_handler_block_trampoline (void)
1000 {
1001         static gpointer code;
1002
1003         if (mono_aot_only) {
1004                 g_assert (0);
1005                 return code;
1006         }
1007
1008         mono_trampolines_lock ();
1009
1010         if (!code)
1011                 code = mono_arch_create_handler_block_trampoline ();
1012
1013         mono_trampolines_unlock ();
1014
1015         return code;
1016 }
1017 #endif
1018
1019 /*
1020  * mono_get_trampoline_func:
1021  *
1022  *   Return the C function which needs to be called by the generic trampoline of type
1023  * TRAMP_TYPE.
1024  */
1025 gconstpointer
1026 mono_get_trampoline_func (MonoTrampolineType tramp_type)
1027 {
1028         switch (tramp_type) {
1029         case MONO_TRAMPOLINE_JIT:
1030         case MONO_TRAMPOLINE_JUMP:
1031                 return mono_magic_trampoline;
1032         case MONO_TRAMPOLINE_CLASS_INIT:
1033                 return mono_class_init_trampoline;
1034         case MONO_TRAMPOLINE_GENERIC_CLASS_INIT:
1035                 return mono_generic_class_init_trampoline;
1036         case MONO_TRAMPOLINE_RGCTX_LAZY_FETCH:
1037                 return mono_rgctx_lazy_fetch_trampoline;
1038 #ifdef MONO_ARCH_AOT_SUPPORTED
1039         case MONO_TRAMPOLINE_AOT:
1040                 return mono_aot_trampoline;
1041         case MONO_TRAMPOLINE_AOT_PLT:
1042                 return mono_aot_plt_trampoline;
1043 #endif
1044 #ifdef MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE
1045         case MONO_TRAMPOLINE_DELEGATE:
1046                 return mono_delegate_trampoline;
1047 #endif
1048         case MONO_TRAMPOLINE_RESTORE_STACK_PROT:
1049                 return mono_altstack_restore_prot;
1050         case MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING:
1051                 return mono_generic_virtual_remoting_trampoline;
1052         case MONO_TRAMPOLINE_MONITOR_ENTER:
1053                 return mono_monitor_enter_trampoline;
1054         case MONO_TRAMPOLINE_MONITOR_EXIT:
1055                 return mono_monitor_exit_trampoline;
1056         case MONO_TRAMPOLINE_VCALL:
1057                 return mono_vcall_trampoline;
1058 #ifdef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD
1059         case MONO_TRAMPOLINE_HANDLER_BLOCK_GUARD:
1060                 return mono_handler_block_guard_trampoline;
1061 #endif
1062         default:
1063                 g_assert_not_reached ();
1064                 return NULL;
1065         }
1066 }
1067
1068 static guchar*
1069 create_trampoline_code (MonoTrampolineType tramp_type)
1070 {
1071         MonoTrampInfo *info;
1072         guchar *code;
1073
1074         code = mono_arch_create_generic_trampoline (tramp_type, &info, FALSE);
1075         if (info) {
1076                 mono_save_trampoline_xdebug_info (info);
1077                 if (mono_jit_map_is_enabled ())
1078                         mono_emit_jit_tramp (info->code, info->code_size, info->name);
1079                 mono_tramp_info_free (info);
1080         }
1081
1082         return code;
1083 }
1084
1085 void
1086 mono_trampolines_init (void)
1087 {
1088         InitializeCriticalSection (&trampolines_mutex);
1089
1090         if (mono_aot_only)
1091                 return;
1092
1093         mono_trampoline_code [MONO_TRAMPOLINE_JIT] = create_trampoline_code (MONO_TRAMPOLINE_JIT);
1094         mono_trampoline_code [MONO_TRAMPOLINE_JUMP] = create_trampoline_code (MONO_TRAMPOLINE_JUMP);
1095         mono_trampoline_code [MONO_TRAMPOLINE_CLASS_INIT] = create_trampoline_code (MONO_TRAMPOLINE_CLASS_INIT);
1096         mono_trampoline_code [MONO_TRAMPOLINE_GENERIC_CLASS_INIT] = create_trampoline_code (MONO_TRAMPOLINE_GENERIC_CLASS_INIT);
1097         mono_trampoline_code [MONO_TRAMPOLINE_RGCTX_LAZY_FETCH] = create_trampoline_code (MONO_TRAMPOLINE_RGCTX_LAZY_FETCH);
1098 #ifdef MONO_ARCH_AOT_SUPPORTED
1099         mono_trampoline_code [MONO_TRAMPOLINE_AOT] = create_trampoline_code (MONO_TRAMPOLINE_AOT);
1100         mono_trampoline_code [MONO_TRAMPOLINE_AOT_PLT] = create_trampoline_code (MONO_TRAMPOLINE_AOT_PLT);
1101 #endif
1102 #ifdef MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE
1103         mono_trampoline_code [MONO_TRAMPOLINE_DELEGATE] = create_trampoline_code (MONO_TRAMPOLINE_DELEGATE);
1104 #endif
1105         mono_trampoline_code [MONO_TRAMPOLINE_RESTORE_STACK_PROT] = create_trampoline_code (MONO_TRAMPOLINE_RESTORE_STACK_PROT);
1106         mono_trampoline_code [MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING] = create_trampoline_code (MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING);
1107         mono_trampoline_code [MONO_TRAMPOLINE_MONITOR_ENTER] = create_trampoline_code (MONO_TRAMPOLINE_MONITOR_ENTER);
1108         mono_trampoline_code [MONO_TRAMPOLINE_MONITOR_EXIT] = create_trampoline_code (MONO_TRAMPOLINE_MONITOR_EXIT);
1109         mono_trampoline_code [MONO_TRAMPOLINE_VCALL] = create_trampoline_code (MONO_TRAMPOLINE_VCALL);
1110 #ifdef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD
1111         mono_trampoline_code [MONO_TRAMPOLINE_HANDLER_BLOCK_GUARD] = create_trampoline_code (MONO_TRAMPOLINE_HANDLER_BLOCK_GUARD);
1112         mono_create_handler_block_trampoline ();
1113 #endif
1114
1115         mono_counters_register ("Calls to trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &trampoline_calls);
1116         mono_counters_register ("JIT trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &jit_trampolines);
1117         mono_counters_register ("Unbox trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &unbox_trampolines);
1118         mono_counters_register ("Static rgctx trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &static_rgctx_trampolines);
1119 }
1120
1121 void
1122 mono_trampolines_cleanup (void)
1123 {
1124         if (class_init_hash_addr)
1125                 g_hash_table_destroy (class_init_hash_addr);
1126         if (rgctx_lazy_fetch_trampoline_hash)
1127                 g_hash_table_destroy (rgctx_lazy_fetch_trampoline_hash);
1128         if (rgctx_lazy_fetch_trampoline_hash_addr)
1129                 g_hash_table_destroy (rgctx_lazy_fetch_trampoline_hash_addr);
1130
1131         DeleteCriticalSection (&trampolines_mutex);
1132 }
1133
1134 guint8 *
1135 mono_get_trampoline_code (MonoTrampolineType tramp_type)
1136 {
1137         g_assert (mono_trampoline_code [tramp_type]);
1138
1139         return mono_trampoline_code [tramp_type];
1140 }
1141
1142 gpointer
1143 mono_create_specific_trampoline (gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len)
1144 {
1145         if (mono_aot_only)
1146                 return mono_aot_create_specific_trampoline (mono_defaults.corlib, arg1, tramp_type, domain, code_len);
1147         else
1148                 return mono_arch_create_specific_trampoline (arg1, tramp_type, domain, code_len);
1149 }
1150
1151 gpointer
1152 mono_create_class_init_trampoline (MonoVTable *vtable)
1153 {
1154         gpointer code, ptr;
1155         MonoDomain *domain = vtable->domain;
1156
1157         g_assert (!vtable->klass->generic_container);
1158
1159         /* previously created trampoline code */
1160         mono_domain_lock (domain);
1161         ptr = 
1162                 g_hash_table_lookup (domain_jit_info (domain)->class_init_trampoline_hash,
1163                                                                   vtable);
1164         mono_domain_unlock (domain);
1165         if (ptr)
1166                 return ptr;
1167
1168         code = mono_create_specific_trampoline (vtable, MONO_TRAMPOLINE_CLASS_INIT, domain, NULL);
1169
1170         ptr = mono_create_ftnptr (domain, code);
1171
1172         /* store trampoline address */
1173         mono_domain_lock (domain);
1174         g_hash_table_insert (domain_jit_info (domain)->class_init_trampoline_hash,
1175                                                           vtable, ptr);
1176         mono_domain_unlock (domain);
1177
1178         mono_trampolines_lock ();
1179         if (!class_init_hash_addr)
1180                 class_init_hash_addr = g_hash_table_new (NULL, NULL);
1181         g_hash_table_insert (class_init_hash_addr, ptr, vtable);
1182         mono_trampolines_unlock ();
1183
1184         return ptr;
1185 }
1186
1187 gpointer
1188 mono_create_generic_class_init_trampoline (void)
1189 {
1190 #ifdef MONO_ARCH_VTABLE_REG
1191         static gpointer code;
1192         MonoTrampInfo *info;
1193
1194         mono_trampolines_lock ();
1195
1196         if (!code) {
1197                 if (mono_aot_only)
1198                         /* get_named_code () might return an ftnptr, but our caller expects a direct pointer */
1199                         code = mono_get_addr_from_ftnptr (mono_aot_get_trampoline ("generic_class_init_trampoline"));
1200                 else {
1201                         code = mono_arch_create_generic_class_init_trampoline (&info, FALSE);
1202
1203                         if (info) {
1204                                 mono_save_trampoline_xdebug_info (info);
1205                                 if (mono_jit_map_is_enabled ())
1206                                         mono_emit_jit_tramp (info->code, info->code_size, info->name);
1207                                 mono_tramp_info_free (info);
1208                         }
1209                 }
1210         }
1211
1212         mono_trampolines_unlock ();
1213
1214         return code;
1215 #else
1216         g_assert_not_reached ();
1217 #endif
1218 }
1219
1220 gpointer
1221 mono_create_jump_trampoline (MonoDomain *domain, MonoMethod *method, gboolean add_sync_wrapper)
1222 {
1223         MonoJitInfo *ji;
1224         gpointer code;
1225         guint32 code_size = 0;
1226
1227         code = mono_jit_find_compiled_method_with_jit_info (domain, method, &ji);
1228         /*
1229          * We cannot recover the correct type of a shared generic
1230          * method from its native code address, so we use the
1231          * trampoline instead.
1232          */
1233         if (code && !ji->has_generic_jit_info)
1234                 return code;
1235
1236         mono_domain_lock (domain);
1237         code = g_hash_table_lookup (domain_jit_info (domain)->jump_trampoline_hash, method);
1238         mono_domain_unlock (domain);
1239         if (code)
1240                 return code;
1241
1242         code = mono_create_specific_trampoline (method, MONO_TRAMPOLINE_JUMP, mono_domain_get (), &code_size);
1243         g_assert (code_size);
1244
1245         ji = mono_domain_alloc0 (domain, MONO_SIZEOF_JIT_INFO);
1246         ji->code_start = code;
1247         ji->code_size = code_size;
1248         ji->method = method;
1249
1250         /*
1251          * mono_delegate_ctor needs to find the method metadata from the 
1252          * trampoline address, so we save it here.
1253          */
1254
1255         mono_jit_info_table_add (domain, ji);
1256
1257         mono_domain_lock (domain);
1258         g_hash_table_insert (domain_jit_info (domain)->jump_trampoline_hash, method, ji->code_start);
1259         mono_domain_unlock (domain);
1260
1261         return ji->code_start;
1262 }
1263
1264 gpointer
1265 mono_create_jit_trampoline_in_domain (MonoDomain *domain, MonoMethod *method)
1266 {
1267         gpointer tramp;
1268
1269         if (mono_aot_only) {
1270                 /* Avoid creating trampolines if possible */
1271                 gpointer code = mono_jit_find_compiled_method (domain, method);
1272                 
1273                 if (code)
1274                         return code;
1275         }
1276
1277         mono_domain_lock (domain);
1278         tramp = g_hash_table_lookup (domain_jit_info (domain)->jit_trampoline_hash, method);
1279         mono_domain_unlock (domain);
1280         if (tramp)
1281                 return tramp;
1282
1283         tramp = mono_create_specific_trampoline (method, MONO_TRAMPOLINE_JIT, domain, NULL);
1284         
1285         mono_domain_lock (domain);
1286         g_hash_table_insert (domain_jit_info (domain)->jit_trampoline_hash, method, tramp);
1287         mono_domain_unlock (domain);
1288
1289         jit_trampolines++;
1290
1291         return tramp;
1292 }       
1293
1294 gpointer
1295 mono_create_jit_trampoline (MonoMethod *method)
1296 {
1297         return mono_create_jit_trampoline_in_domain (mono_domain_get (), method);
1298 }
1299
1300 gpointer
1301 mono_create_jit_trampoline_from_token (MonoImage *image, guint32 token)
1302 {
1303         gpointer tramp;
1304
1305         MonoDomain *domain = mono_domain_get ();
1306         guint8 *buf, *start;
1307
1308         buf = start = mono_domain_code_reserve (domain, 2 * sizeof (gpointer));
1309
1310         *(gpointer*)(gpointer)buf = image;
1311         buf += sizeof (gpointer);
1312         *(guint32*)(gpointer)buf = token;
1313
1314         tramp = mono_create_specific_trampoline (start, MONO_TRAMPOLINE_AOT, domain, NULL);
1315
1316         jit_trampolines++;
1317
1318         return tramp;
1319 }       
1320
1321 gpointer
1322 mono_create_delegate_trampoline (MonoClass *klass)
1323 {
1324 #ifdef MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE
1325         MonoDomain *domain = mono_domain_get ();
1326         gpointer ptr;
1327         guint32 code_size = 0;
1328         gpointer *tramp_data;
1329         MonoMethod *invoke;
1330
1331         mono_domain_lock (domain);
1332         ptr = g_hash_table_lookup (domain_jit_info (domain)->delegate_trampoline_hash, klass);
1333         mono_domain_unlock (domain);
1334         if (ptr)
1335                 return ptr;
1336
1337         // Precompute the delegate invoke impl and pass it to the delegate trampoline
1338         invoke = mono_get_delegate_invoke (klass);
1339         g_assert (invoke);
1340
1341         tramp_data = mono_domain_alloc (domain, sizeof (gpointer) * 3);
1342         tramp_data [0] = invoke;
1343         tramp_data [1] = mono_arch_get_delegate_invoke_impl (mono_method_signature (invoke), TRUE);
1344         tramp_data [2] = mono_arch_get_delegate_invoke_impl (mono_method_signature (invoke), FALSE);
1345
1346         ptr = mono_create_specific_trampoline (tramp_data, MONO_TRAMPOLINE_DELEGATE, mono_domain_get (), &code_size);
1347         g_assert (code_size);
1348
1349         /* store trampoline address */
1350         mono_domain_lock (domain);
1351         g_hash_table_insert (domain_jit_info (domain)->delegate_trampoline_hash,
1352                                                           klass, ptr);
1353         mono_domain_unlock (domain);
1354
1355         return ptr;
1356 #else
1357         return NULL;
1358 #endif
1359 }
1360
1361 gpointer
1362 mono_create_rgctx_lazy_fetch_trampoline (guint32 offset)
1363 {
1364         static gboolean inited = FALSE;
1365         static int num_trampolines = 0;
1366         MonoTrampInfo *info;
1367
1368         gpointer tramp, ptr;
1369
1370         if (mono_aot_only)
1371                 return mono_aot_get_lazy_fetch_trampoline (offset);
1372
1373         mono_trampolines_lock ();
1374         if (rgctx_lazy_fetch_trampoline_hash)
1375                 tramp = g_hash_table_lookup (rgctx_lazy_fetch_trampoline_hash, GUINT_TO_POINTER (offset));
1376         else
1377                 tramp = NULL;
1378         mono_trampolines_unlock ();
1379         if (tramp)
1380                 return tramp;
1381
1382         tramp = mono_arch_create_rgctx_lazy_fetch_trampoline (offset, &info, FALSE);
1383         if (info) {
1384                 mono_save_trampoline_xdebug_info (info);
1385                 if (mono_jit_map_is_enabled ())
1386                         mono_emit_jit_tramp (info->code, info->code_size, info->name);
1387                 mono_tramp_info_free (info);
1388         }
1389         ptr = mono_create_ftnptr (mono_get_root_domain (), tramp);
1390
1391         mono_trampolines_lock ();
1392         if (!rgctx_lazy_fetch_trampoline_hash) {
1393                 rgctx_lazy_fetch_trampoline_hash = g_hash_table_new (NULL, NULL);
1394                 rgctx_lazy_fetch_trampoline_hash_addr = g_hash_table_new (NULL, NULL);
1395         }
1396         g_hash_table_insert (rgctx_lazy_fetch_trampoline_hash, GUINT_TO_POINTER (offset), ptr);
1397         g_assert (offset != -1);
1398         g_hash_table_insert (rgctx_lazy_fetch_trampoline_hash_addr, ptr, GUINT_TO_POINTER (offset + 1));
1399         mono_trampolines_unlock ();
1400
1401         if (!inited) {
1402                 mono_counters_register ("RGCTX num lazy fetch trampolines",
1403                                 MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &num_trampolines);
1404                 inited = TRUE;
1405         }
1406         num_trampolines++;
1407
1408         return ptr;
1409 }
1410
1411 gpointer
1412 mono_create_monitor_enter_trampoline (void)
1413 {
1414         static gpointer code;
1415         MonoTrampInfo *info;
1416
1417         if (mono_aot_only) {
1418                 if (!code)
1419                         code = mono_aot_get_trampoline ("monitor_enter_trampoline");
1420                 return code;
1421         }
1422
1423 #ifdef MONO_ARCH_MONITOR_OBJECT_REG
1424         mono_trampolines_lock ();
1425
1426         if (!code) {
1427                 code = mono_arch_create_monitor_enter_trampoline (&info, FALSE);
1428                 if (info) {
1429                         mono_save_trampoline_xdebug_info (info);
1430                         if (mono_jit_map_is_enabled ())
1431                                 mono_emit_jit_tramp (info->code, info->code_size, info->name);
1432                         mono_tramp_info_free (info);
1433                 }
1434         }
1435
1436         mono_trampolines_unlock ();
1437 #else
1438         code = NULL;
1439         g_assert_not_reached ();
1440 #endif
1441
1442         return code;
1443 }
1444
1445 gpointer
1446 mono_create_monitor_exit_trampoline (void)
1447 {
1448         static gpointer code;
1449         MonoTrampInfo *info;
1450
1451         if (mono_aot_only) {
1452                 if (!code)
1453                         code = mono_aot_get_trampoline ("monitor_exit_trampoline");
1454                 return code;
1455         }
1456
1457 #ifdef MONO_ARCH_MONITOR_OBJECT_REG
1458         mono_trampolines_lock ();
1459
1460         if (!code) {
1461                 code = mono_arch_create_monitor_exit_trampoline (&info, FALSE);
1462                 if (info) {
1463                         mono_save_trampoline_xdebug_info (info);
1464                         if (mono_jit_map_is_enabled ())
1465                                 mono_emit_jit_tramp (info->code, info->code_size, info->name);
1466                         mono_tramp_info_free (info);
1467                 }
1468         }
1469
1470         mono_trampolines_unlock ();
1471 #else
1472         code = NULL;
1473         g_assert_not_reached ();
1474 #endif
1475         return code;
1476 }
1477  
1478 #ifdef MONO_ARCH_LLVM_SUPPORTED
1479 /*
1480  * mono_create_llvm_imt_trampoline:
1481  *
1482  *   LLVM compiled code can't pass in the IMT argument, so we use this trampoline, which
1483  * sets the IMT argument, then branches to the contents of the vtable slot given by
1484  * vt_offset in the vtable which is obtained from the argument list.
1485  */
1486 gpointer
1487 mono_create_llvm_imt_trampoline (MonoDomain *domain, MonoMethod *m, int vt_offset)
1488 {
1489 #ifdef MONO_ARCH_HAVE_LLVM_IMT_TRAMPOLINE
1490         return mono_arch_get_llvm_imt_trampoline (domain, m, vt_offset);
1491 #else
1492         g_assert_not_reached ();
1493         return NULL;
1494 #endif
1495 }
1496 #endif
1497
1498 MonoVTable*
1499 mono_find_class_init_trampoline_by_addr (gconstpointer addr)
1500 {
1501         MonoVTable *res;
1502
1503         mono_trampolines_lock ();
1504         if (class_init_hash_addr)
1505                 res = g_hash_table_lookup (class_init_hash_addr, addr);
1506         else
1507                 res = NULL;
1508         mono_trampolines_unlock ();
1509         return res;
1510 }
1511
1512 guint32
1513 mono_find_rgctx_lazy_fetch_trampoline_by_addr (gconstpointer addr)
1514 {
1515         int offset;
1516
1517         mono_trampolines_lock ();
1518         if (rgctx_lazy_fetch_trampoline_hash_addr) {
1519                 /* We store the real offset + 1 so we can detect when the lookup fails */
1520                 offset = GPOINTER_TO_INT (g_hash_table_lookup (rgctx_lazy_fetch_trampoline_hash_addr, addr));
1521                 if (offset)
1522                         offset -= 1;
1523                 else
1524                         offset = -1;
1525         } else {
1526                 offset = -1;
1527         }
1528         mono_trampolines_unlock ();
1529         return offset;
1530 }
1531
1532 static const char*tramp_names [MONO_TRAMPOLINE_NUM] = {
1533         "jit",
1534         "jump",
1535         "class_init",
1536         "generic_class_init",
1537         "rgctx_lazy_fetch",
1538         "aot",
1539         "aot_plt",
1540         "delegate",
1541         "restore_stack_prot",
1542         "generic_virtual_remoting",
1543         "monitor_enter",
1544         "monitor_exit",
1545         "vcall",
1546 #ifdef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD
1547         "handler_block_guard"
1548 #endif
1549 };
1550
1551 /*
1552  * mono_get_generic_trampoline_name:
1553  *
1554  *   Returns a pointer to malloc-ed memory.
1555  */
1556 char*
1557 mono_get_generic_trampoline_name (MonoTrampolineType tramp_type)
1558 {
1559         return g_strdup_printf ("generic_trampoline_%s", tramp_names [tramp_type]);
1560 }
1561
1562 /*
1563  * mono_get_rgctx_fetch_trampoline_name:
1564  *
1565  *   Returns a pointer to malloc-ed memory.
1566  */
1567 char*
1568 mono_get_rgctx_fetch_trampoline_name (int slot)
1569 {
1570         gboolean mrgctx;
1571         int index;
1572
1573         mrgctx = MONO_RGCTX_SLOT_IS_MRGCTX (slot);
1574         index = MONO_RGCTX_SLOT_INDEX (slot);
1575
1576         return g_strdup_printf ("rgctx_fetch_trampoline_%s_%d", mrgctx ? "mrgctx" : "rgctx", index);
1577 }
1578