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