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