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