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