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