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