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