d028d15e5f8e5754d487262e74ccbd21d0fbceba
[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         g_assert (!vtable->initialized);
718
719         mono_runtime_class_init (vtable);
720 }
721
722 static gpointer
723 mono_rgctx_lazy_fetch_trampoline (gssize *regs, guint8 *code, gpointer data, guint8 *tramp)
724 {
725 #ifdef MONO_ARCH_VTABLE_REG
726         static gboolean inited = FALSE;
727         static int num_lookups = 0;
728         guint32 slot = GPOINTER_TO_UINT (data);
729         gpointer arg = (gpointer)(gssize)regs [MONO_ARCH_VTABLE_REG];
730         guint32 index = MONO_RGCTX_SLOT_INDEX (slot);
731         gboolean mrgctx = MONO_RGCTX_SLOT_IS_MRGCTX (slot);
732
733         if (!inited) {
734                 mono_counters_register ("RGCTX unmanaged lookups", MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &num_lookups);
735                 inited = TRUE;
736         }
737
738         num_lookups++;
739
740         if (mrgctx)
741                 return mono_method_fill_runtime_generic_context (arg, index);
742         else
743                 return mono_class_fill_runtime_generic_context (arg, index);
744 #else
745         g_assert_not_reached ();
746 #endif
747 }
748
749 void
750 mono_monitor_enter_trampoline (gssize *regs, guint8 *code, MonoObject *obj, guint8 *tramp)
751 {
752         mono_monitor_enter (obj);
753 }
754
755 void
756 mono_monitor_exit_trampoline (gssize *regs, guint8 *code, MonoObject *obj, guint8 *tramp)
757 {
758         mono_monitor_exit (obj);
759 }
760
761 #ifdef MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE
762
763 /**
764  * mono_delegate_trampoline:
765  *
766  *   This trampoline handles calls made to Delegate:Invoke ().
767  * This is called once the first time a delegate is invoked, so it must be fast.
768  */
769 gpointer
770 mono_delegate_trampoline (gssize *regs, guint8 *code, gpointer *tramp_data, guint8* tramp)
771 {
772         MonoDomain *domain = mono_domain_get ();
773         MonoDelegate *delegate;
774         MonoJitInfo *ji;
775         MonoMethod *m;
776         MonoMethod *method = NULL;
777         gboolean multicast, callvirt;
778 #ifdef MONO_ARCH_HAVE_STATIC_RGCTX_TRAMPOLINE
779         gboolean need_rgctx_tramp = FALSE;
780 #endif
781         MonoMethod *invoke = tramp_data [0];
782         guint8 *impl_this = tramp_data [1];
783         guint8 *impl_nothis = tramp_data [2];
784
785         /* Obtain the delegate object according to the calling convention */
786
787         /* 
788          * Avoid calling mono_get_generic_context_from_code () now since it is expensive, 
789          * get_this_arg_from_call will call it if needed.
790          */
791         delegate = mono_arch_get_this_arg_from_call (NULL, mono_method_signature (invoke), regs, code);
792
793         if (delegate->method) {
794                 method = delegate->method;
795
796                 /*
797                  * delegate->method_ptr == NULL means the delegate was initialized by 
798                  * mini_delegate_ctor, while != NULL means it is initialized by 
799                  * mono_delegate_ctor_with_method (). In both cases, we need to add wrappers
800                  * (ctor_with_method () does this, but it doesn't store the wrapper back into
801                  * delegate->method).
802                  */
803                 if (delegate->target && delegate->target->vtable->klass == mono_defaults.transparent_proxy_class)
804                         method = mono_marshal_get_remoting_invoke (method);
805                 else if (mono_method_signature (method)->hasthis && method->klass->valuetype)
806                         method = mono_marshal_get_unbox_wrapper (method);
807         } else {
808                 ji = mono_jit_info_table_find (domain, mono_get_addr_from_ftnptr (delegate->method_ptr));
809                 if (ji)
810                         method = ji->method;
811         }
812         callvirt = !delegate->target && method && mono_method_signature (method)->hasthis;
813
814         if (method && method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED)
815                 method = mono_marshal_get_synchronized_wrapper (method);
816
817         if (method && mono_method_needs_static_rgctx_invoke (method, FALSE)) {
818 #ifdef MONO_ARCH_HAVE_STATIC_RGCTX_TRAMPOLINE
819                 need_rgctx_tramp = TRUE;
820 #else
821                 method = mono_marshal_get_static_rgctx_invoke (method);
822 #endif
823         }
824
825         /* 
826          * If the called address is a trampoline, replace it with the compiled method so
827          * further calls don't have to go through the trampoline.
828          */
829         if (method && !callvirt) {
830                 /* Avoid the overhead of looking up an already compiled method if possible */
831                 if (delegate->method_code && *delegate->method_code) {
832                         delegate->method_ptr = *delegate->method_code;
833                 } else {
834                         delegate->method_ptr = mono_compile_method (method);
835                         if (delegate->method_code)
836                                 *delegate->method_code = delegate->method_ptr;
837                         mono_debugger_trampoline_compiled (method, delegate->method_ptr);
838                 }
839         }
840
841 #ifdef MONO_ARCH_HAVE_STATIC_RGCTX_TRAMPOLINE
842         if (need_rgctx_tramp)
843                 delegate->method_ptr = mono_create_static_rgctx_trampoline (method, delegate->method_ptr);
844 #endif
845
846         multicast = ((MonoMulticastDelegate*)delegate)->prev != NULL;
847         if (!multicast && !callvirt) {
848                 if (method && (method->flags & METHOD_ATTRIBUTE_STATIC) && mono_method_signature (method)->param_count == mono_method_signature (invoke)->param_count + 1)
849                         /* Closed static delegate */
850                         code = impl_this;
851                 else
852                         code = delegate->target ? impl_this : impl_nothis;
853
854                 if (code) {
855                         delegate->invoke_impl = mono_get_addr_from_ftnptr (code);
856                         return code;
857                 }
858         }
859
860         /* The general, unoptimized case */
861         m = mono_marshal_get_delegate_invoke (invoke, delegate);
862         code = mono_compile_method (m);
863         delegate->invoke_impl = mono_get_addr_from_ftnptr (code);
864         mono_debugger_trampoline_compiled (m, delegate->invoke_impl);
865
866         return code;
867 }
868
869 #endif
870
871 /*
872  * mono_get_trampoline_func:
873  *
874  *   Return the C function which needs to be called by the generic trampoline of type
875  * TRAMP_TYPE.
876  */
877 gconstpointer
878 mono_get_trampoline_func (MonoTrampolineType tramp_type)
879 {
880         switch (tramp_type) {
881         case MONO_TRAMPOLINE_JIT:
882         case MONO_TRAMPOLINE_JUMP:
883                 return mono_magic_trampoline;
884         case MONO_TRAMPOLINE_CLASS_INIT:
885                 return mono_class_init_trampoline;
886         case MONO_TRAMPOLINE_GENERIC_CLASS_INIT:
887                 return mono_generic_class_init_trampoline;
888         case MONO_TRAMPOLINE_RGCTX_LAZY_FETCH:
889                 return mono_rgctx_lazy_fetch_trampoline;
890 #ifdef MONO_ARCH_AOT_SUPPORTED
891         case MONO_TRAMPOLINE_AOT:
892                 return mono_aot_trampoline;
893         case MONO_TRAMPOLINE_AOT_PLT:
894                 return mono_aot_plt_trampoline;
895 #endif
896 #ifdef MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE
897         case MONO_TRAMPOLINE_DELEGATE:
898                 return mono_delegate_trampoline;
899 #endif
900         case MONO_TRAMPOLINE_RESTORE_STACK_PROT:
901                 return mono_altstack_restore_prot;
902         case MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING:
903                 return mono_generic_virtual_remoting_trampoline;
904         case MONO_TRAMPOLINE_MONITOR_ENTER:
905                 return mono_monitor_enter_trampoline;
906         case MONO_TRAMPOLINE_MONITOR_EXIT:
907                 return mono_monitor_exit_trampoline;
908 #ifdef ENABLE_LLVM
909         case MONO_TRAMPOLINE_LLVM_VCALL:
910                 return mono_llvm_vcall_trampoline;
911 #endif
912         default:
913                 g_assert_not_reached ();
914                 return NULL;
915         }
916 }
917
918 void
919 mono_trampolines_init (void)
920 {
921         InitializeCriticalSection (&trampolines_mutex);
922
923         if (mono_aot_only)
924                 return;
925
926         mono_trampoline_code [MONO_TRAMPOLINE_JIT] = mono_arch_create_trampoline_code (MONO_TRAMPOLINE_JIT);
927         mono_trampoline_code [MONO_TRAMPOLINE_JUMP] = mono_arch_create_trampoline_code (MONO_TRAMPOLINE_JUMP);
928         mono_trampoline_code [MONO_TRAMPOLINE_CLASS_INIT] = mono_arch_create_trampoline_code (MONO_TRAMPOLINE_CLASS_INIT);
929         mono_trampoline_code [MONO_TRAMPOLINE_GENERIC_CLASS_INIT] = mono_arch_create_trampoline_code (MONO_TRAMPOLINE_GENERIC_CLASS_INIT);
930         mono_trampoline_code [MONO_TRAMPOLINE_RGCTX_LAZY_FETCH] = mono_arch_create_trampoline_code (MONO_TRAMPOLINE_RGCTX_LAZY_FETCH);
931 #ifdef MONO_ARCH_AOT_SUPPORTED
932         mono_trampoline_code [MONO_TRAMPOLINE_AOT] = mono_arch_create_trampoline_code (MONO_TRAMPOLINE_AOT);
933         mono_trampoline_code [MONO_TRAMPOLINE_AOT_PLT] = mono_arch_create_trampoline_code (MONO_TRAMPOLINE_AOT_PLT);
934 #endif
935 #ifdef MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE
936         mono_trampoline_code [MONO_TRAMPOLINE_DELEGATE] = mono_arch_create_trampoline_code (MONO_TRAMPOLINE_DELEGATE);
937 #endif
938         mono_trampoline_code [MONO_TRAMPOLINE_RESTORE_STACK_PROT] = mono_arch_create_trampoline_code (MONO_TRAMPOLINE_RESTORE_STACK_PROT);
939         mono_trampoline_code [MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING] = mono_arch_create_trampoline_code (MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING);
940         mono_trampoline_code [MONO_TRAMPOLINE_MONITOR_ENTER] = mono_arch_create_trampoline_code (MONO_TRAMPOLINE_MONITOR_ENTER);
941         mono_trampoline_code [MONO_TRAMPOLINE_MONITOR_EXIT] = mono_arch_create_trampoline_code (MONO_TRAMPOLINE_MONITOR_EXIT);
942 #ifdef ENABLE_LLVM
943         mono_trampoline_code [MONO_TRAMPOLINE_LLVM_VCALL] = mono_arch_create_trampoline_code (MONO_TRAMPOLINE_LLVM_VCALL);
944 #endif
945 }
946
947 void
948 mono_trampolines_cleanup (void)
949 {
950         if (class_init_hash_addr)
951                 g_hash_table_destroy (class_init_hash_addr);
952         if (delegate_trampoline_hash_addr)
953                 g_hash_table_destroy (delegate_trampoline_hash_addr);
954
955         DeleteCriticalSection (&trampolines_mutex);
956 }
957
958 guint8 *
959 mono_get_trampoline_code (MonoTrampolineType tramp_type)
960 {
961         g_assert (mono_trampoline_code [tramp_type]);
962
963         return mono_trampoline_code [tramp_type];
964 }
965
966 gpointer
967 mono_create_specific_trampoline (gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len)
968 {
969         if (mono_aot_only)
970                 return mono_aot_create_specific_trampoline (mono_defaults.corlib, arg1, tramp_type, domain, code_len);
971         else
972                 return mono_arch_create_specific_trampoline (arg1, tramp_type, domain, code_len);
973 }
974
975 gpointer
976 mono_create_class_init_trampoline (MonoVTable *vtable)
977 {
978         gpointer code, ptr;
979         MonoDomain *domain = vtable->domain;
980
981         g_assert (!vtable->klass->generic_container);
982
983         /* previously created trampoline code */
984         mono_domain_lock (domain);
985         ptr = 
986                 g_hash_table_lookup (domain_jit_info (domain)->class_init_trampoline_hash,
987                                                                   vtable);
988         mono_domain_unlock (domain);
989         if (ptr)
990                 return ptr;
991
992         code = mono_create_specific_trampoline (vtable, MONO_TRAMPOLINE_CLASS_INIT, domain, NULL);
993
994         ptr = mono_create_ftnptr (domain, code);
995
996         /* store trampoline address */
997         mono_domain_lock (domain);
998         g_hash_table_insert (domain_jit_info (domain)->class_init_trampoline_hash,
999                                                           vtable, ptr);
1000         mono_domain_unlock (domain);
1001
1002         mono_trampolines_lock ();
1003         if (!class_init_hash_addr)
1004                 class_init_hash_addr = g_hash_table_new (NULL, NULL);
1005         g_hash_table_insert (class_init_hash_addr, ptr, vtable);
1006         mono_trampolines_unlock ();
1007
1008         return ptr;
1009 }
1010
1011 gpointer
1012 mono_create_generic_class_init_trampoline (void)
1013 {
1014 #ifdef MONO_ARCH_VTABLE_REG
1015         static gpointer code;
1016
1017         mono_trampolines_lock ();
1018
1019         if (!code) {
1020                 if (mono_aot_only)
1021                         code = mono_aot_get_named_code ("generic_class_init_trampoline");
1022                 else
1023                         code = mono_arch_create_generic_class_init_trampoline ();
1024         }
1025
1026         mono_trampolines_unlock ();
1027
1028         return code;
1029 #else
1030         g_assert_not_reached ();
1031 #endif
1032 }
1033
1034 gpointer
1035 mono_create_jump_trampoline (MonoDomain *domain, MonoMethod *method, gboolean add_sync_wrapper)
1036 {
1037         MonoJitInfo *ji;
1038         gpointer code;
1039         guint32 code_size = 0;
1040
1041         code = mono_jit_find_compiled_method_with_jit_info (domain, method, &ji);
1042         /*
1043          * We cannot recover the correct type of a shared generic
1044          * method from its native code address, so we use the
1045          * trampoline instead.
1046          */
1047         if (code && !ji->has_generic_jit_info)
1048                 return code;
1049
1050         mono_domain_lock (domain);
1051         code = g_hash_table_lookup (domain_jit_info (domain)->jump_trampoline_hash, method);
1052         mono_domain_unlock (domain);
1053         if (code)
1054                 return code;
1055
1056         code = mono_create_specific_trampoline (method, MONO_TRAMPOLINE_JUMP, mono_domain_get (), &code_size);
1057         g_assert (code_size);
1058
1059         ji = mono_domain_alloc0 (domain, sizeof (MonoJitInfo));
1060         ji->code_start = code;
1061         ji->code_size = code_size;
1062         ji->method = method;
1063
1064         /*
1065          * mono_delegate_ctor needs to find the method metadata from the 
1066          * trampoline address, so we save it here.
1067          */
1068
1069         mono_jit_info_table_add (domain, ji);
1070
1071         mono_domain_lock (domain);
1072         g_hash_table_insert (domain_jit_info (domain)->jump_trampoline_hash, method, ji->code_start);
1073         mono_domain_unlock (domain);
1074
1075         return ji->code_start;
1076 }
1077
1078 gpointer
1079 mono_create_jit_trampoline_in_domain (MonoDomain *domain, MonoMethod *method)
1080 {
1081         gpointer tramp;
1082
1083         if (mono_aot_only) {
1084                 /* Avoid creating trampolines if possible */
1085                 gpointer code = mono_jit_find_compiled_method (domain, method);
1086                 
1087                 if (code)
1088                         return code;
1089         }
1090
1091         mono_domain_lock (domain);
1092         tramp = g_hash_table_lookup (domain_jit_info (domain)->jit_trampoline_hash, method);
1093         mono_domain_unlock (domain);
1094         if (tramp)
1095                 return tramp;
1096
1097         tramp = mono_create_specific_trampoline (method, MONO_TRAMPOLINE_JIT, domain, NULL);
1098         
1099         mono_domain_lock (domain);
1100         g_hash_table_insert (domain_jit_info (domain)->jit_trampoline_hash, method, tramp);
1101         mono_domain_unlock (domain);
1102
1103         mono_jit_stats.method_trampolines++;
1104
1105         return tramp;
1106 }       
1107
1108 gpointer
1109 mono_create_jit_trampoline (MonoMethod *method)
1110 {
1111         return mono_create_jit_trampoline_in_domain (mono_domain_get (), method);
1112 }
1113
1114 #ifdef MONO_ARCH_HAVE_CREATE_TRAMPOLINE_FROM_TOKEN
1115 gpointer
1116 mono_create_jit_trampoline_from_token (MonoImage *image, guint32 token)
1117 {
1118         gpointer tramp;
1119
1120         MonoDomain *domain = mono_domain_get ();
1121         guint8 *buf, *start;
1122
1123         buf = start = mono_domain_code_reserve (domain, 2 * sizeof (gpointer));
1124
1125         *(gpointer*)(gpointer)buf = image;
1126         buf += sizeof (gpointer);
1127         *(guint32*)(gpointer)buf = token;
1128
1129         tramp = mono_create_specific_trampoline (start, MONO_TRAMPOLINE_AOT, domain, NULL);
1130
1131         mono_jit_stats.method_trampolines++;
1132
1133         return tramp;
1134 }       
1135 #endif
1136
1137 gpointer
1138 mono_create_delegate_trampoline (MonoClass *klass)
1139 {
1140 #ifdef MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE
1141         MonoDomain *domain = mono_domain_get ();
1142         gpointer ptr;
1143         guint32 code_size = 0;
1144         gpointer *tramp_data;
1145         MonoMethod *invoke;
1146
1147         mono_domain_lock (domain);
1148         ptr = g_hash_table_lookup (domain_jit_info (domain)->delegate_trampoline_hash, klass);
1149         mono_domain_unlock (domain);
1150         if (ptr)
1151                 return ptr;
1152
1153         // Precompute the delegate invoke impl and pass it to the delegate trampoline
1154         invoke = mono_get_delegate_invoke (klass);
1155         g_assert (invoke);
1156
1157         tramp_data = mono_domain_alloc (domain, sizeof (gpointer) * 3);
1158         tramp_data [0] = invoke;
1159         tramp_data [1] = mono_arch_get_delegate_invoke_impl (mono_method_signature (invoke), TRUE);
1160         tramp_data [2] = mono_arch_get_delegate_invoke_impl (mono_method_signature (invoke), FALSE);
1161
1162         ptr = mono_create_specific_trampoline (tramp_data, MONO_TRAMPOLINE_DELEGATE, mono_domain_get (), &code_size);
1163         g_assert (code_size);
1164
1165         /* store trampoline address */
1166         mono_domain_lock (domain);
1167         g_hash_table_insert (domain_jit_info (domain)->delegate_trampoline_hash,
1168                                                           klass, ptr);
1169         mono_domain_unlock (domain);
1170
1171         mono_trampolines_lock ();
1172         if (!delegate_trampoline_hash_addr)
1173                 delegate_trampoline_hash_addr = g_hash_table_new (NULL, NULL);
1174         g_hash_table_insert (delegate_trampoline_hash_addr, ptr, klass);
1175         mono_trampolines_unlock ();
1176
1177         return ptr;
1178 #else
1179         return NULL;
1180 #endif
1181 }
1182
1183 gpointer
1184 mono_create_rgctx_lazy_fetch_trampoline (guint32 offset)
1185 {
1186         static gboolean inited = FALSE;
1187         static int num_trampolines = 0;
1188
1189         gpointer tramp, ptr;
1190
1191         if (mono_aot_only)
1192                 return mono_aot_get_lazy_fetch_trampoline (offset);
1193
1194         mono_trampolines_lock ();
1195         if (rgctx_lazy_fetch_trampoline_hash)
1196                 tramp = g_hash_table_lookup (rgctx_lazy_fetch_trampoline_hash, GUINT_TO_POINTER (offset));
1197         else
1198                 tramp = NULL;
1199         mono_trampolines_unlock ();
1200         if (tramp)
1201                 return tramp;
1202
1203         tramp = mono_arch_create_rgctx_lazy_fetch_trampoline (offset);
1204         ptr = mono_create_ftnptr (mono_get_root_domain (), tramp);
1205
1206         mono_trampolines_lock ();
1207         if (!rgctx_lazy_fetch_trampoline_hash) {
1208                 rgctx_lazy_fetch_trampoline_hash = g_hash_table_new (NULL, NULL);
1209                 rgctx_lazy_fetch_trampoline_hash_addr = g_hash_table_new (NULL, NULL);
1210         }
1211         g_hash_table_insert (rgctx_lazy_fetch_trampoline_hash, GUINT_TO_POINTER (offset), ptr);
1212         g_assert (offset != -1);
1213         g_hash_table_insert (rgctx_lazy_fetch_trampoline_hash_addr, ptr, GUINT_TO_POINTER (offset + 1));
1214         mono_trampolines_unlock ();
1215
1216         if (!inited) {
1217                 mono_counters_register ("RGCTX num lazy fetch trampolines",
1218                                 MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &num_trampolines);
1219                 inited = TRUE;
1220         }
1221         num_trampolines++;
1222
1223         return ptr;
1224 }
1225
1226 gpointer
1227 mono_create_monitor_enter_trampoline (void)
1228 {
1229         static gpointer code;
1230
1231         if (mono_aot_only) {
1232                 if (!code)
1233                         code = mono_aot_get_named_code ("monitor_enter_trampoline");
1234                 return code;
1235         }
1236
1237 #ifdef MONO_ARCH_MONITOR_OBJECT_REG
1238         mono_trampolines_lock ();
1239
1240         if (!code)
1241                 code = mono_arch_create_monitor_enter_trampoline ();
1242
1243         mono_trampolines_unlock ();
1244 #else
1245         code = NULL;
1246         g_assert_not_reached ();
1247 #endif
1248
1249         return code;
1250 }
1251
1252 gpointer
1253 mono_create_monitor_exit_trampoline (void)
1254 {
1255         static gpointer code;
1256
1257         if (mono_aot_only) {
1258                 if (!code)
1259                         code = mono_aot_get_named_code ("monitor_exit_trampoline");
1260                 return code;
1261         }
1262
1263 #ifdef MONO_ARCH_MONITOR_OBJECT_REG
1264         mono_trampolines_lock ();
1265
1266         if (!code)
1267                 code = mono_arch_create_monitor_exit_trampoline ();
1268
1269         mono_trampolines_unlock ();
1270 #else
1271         code = NULL;
1272         g_assert_not_reached ();
1273 #endif
1274         return code;
1275 }
1276  
1277 #ifdef ENABLE_LLVM
1278 /*
1279  * mono_create_llvm_vcall_trampoline:
1280  *
1281  *  LLVM emits code for virtual calls which mono_get_vcall_slot is unable to
1282  * decode, i.e. only the final branch address is available:
1283  * mov <offset>(%rax), %rax
1284  * <random code inserted by instruction scheduling>
1285  * call *%rax
1286  *
1287  * To work around this problem, we don't use the common vtable trampoline when
1288  * llvm is enabled. Instead, we use one trampoline per method.
1289  */
1290 gpointer
1291 mono_create_llvm_vcall_trampoline (MonoMethod *method)
1292 {
1293         MonoDomain *domain;
1294         gpointer res;
1295
1296         domain = mono_domain_get ();
1297
1298         mono_domain_lock (domain);
1299         res = g_hash_table_lookup (domain_jit_info (domain)->llvm_vcall_trampoline_hash, method);
1300         mono_domain_unlock (domain);
1301         if (res)
1302                 return res;
1303
1304         res = mono_create_specific_trampoline (method, MONO_TRAMPOLINE_LLVM_VCALL, domain, NULL);
1305
1306         mono_domain_lock (domain);
1307         g_hash_table_insert (domain_jit_info (domain)->llvm_vcall_trampoline_hash, method, res);
1308         mono_domain_unlock (domain);
1309
1310         return res;
1311 }
1312 #endif
1313
1314 MonoVTable*
1315 mono_find_class_init_trampoline_by_addr (gconstpointer addr)
1316 {
1317         MonoVTable *res;
1318
1319         mono_trampolines_lock ();
1320         if (class_init_hash_addr)
1321                 res = g_hash_table_lookup (class_init_hash_addr, addr);
1322         else
1323                 res = NULL;
1324         mono_trampolines_unlock ();
1325         return res;
1326 }
1327
1328 MonoClass*
1329 mono_find_delegate_trampoline_by_addr (gconstpointer addr)
1330 {
1331         MonoClass *res;
1332
1333         mono_trampolines_lock ();
1334         if (delegate_trampoline_hash_addr)
1335                 res = g_hash_table_lookup (delegate_trampoline_hash_addr, addr);
1336         else
1337                 res = NULL;
1338         mono_trampolines_unlock ();
1339         return res;
1340 }
1341
1342 guint32
1343 mono_find_rgctx_lazy_fetch_trampoline_by_addr (gconstpointer addr)
1344 {
1345         int offset;
1346
1347         mono_trampolines_lock ();
1348         if (rgctx_lazy_fetch_trampoline_hash_addr) {
1349                 /* We store the real offset + 1 so we can detect when the lookup fails */
1350                 offset = GPOINTER_TO_INT (g_hash_table_lookup (rgctx_lazy_fetch_trampoline_hash_addr, addr));
1351                 if (offset)
1352                         offset -= 1;
1353                 else
1354                         offset = -1;
1355         } else {
1356                 offset = -1;
1357         }
1358         mono_trampolines_unlock ();
1359         return offset;
1360 }