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