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