Aot runtime noraise3 (#3054)
[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
19 #include "mini.h"
20
21 /*
22  * Address of the trampoline code.  This is used by the debugger to check
23  * whether a method is a trampoline.
24  */
25 guint8* mono_trampoline_code [MONO_TRAMPOLINE_NUM];
26
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_os_mutex_lock (&trampolines_mutex)
32 #define mono_trampolines_unlock() mono_os_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 = (const RgctxTrampInfo *)ka;
46         const RgctxTrampInfo *i2 = (const RgctxTrampInfo *)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 = (const RgctxTrampInfo *)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, (MonoMethodRuntimeGenericContext *)ctx, addr);
117
118         mono_domain_lock (domain);
119         /* Duplicates inserted while we didn't hold the lock are OK */
120         info = (RgctxTrampInfo *)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 #if 0
143 #define DEBUG_IMT(stmt) do { stmt; } while (0)
144 #else
145 #define DEBUG_IMT(stmt) do { } while (0)
146 #endif
147
148 /*
149  * mini_resolve_imt_method:
150  *
151  *   Resolve the actual method called when making an IMT call through VTABLE_SLOT with IMT_METHOD as the interface method.
152  *
153  * Either IMPL_METHOD or OUT_AOT_ADDR will be set on return.
154  */
155 gpointer*
156 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)
157 {
158         MonoMethod *impl = NULL, *generic_virtual = NULL;
159         gboolean lookup_aot, variance_used = FALSE, need_rgctx_tramp = FALSE;
160         gpointer addr;
161         guint8 *aot_addr = NULL;
162         int displacement = vtable_slot - ((gpointer*)vt);
163         int interface_offset;
164         int imt_slot = MONO_IMT_SIZE + displacement;
165
166         g_assert (imt_slot < MONO_IMT_SIZE);
167
168         /* This has to be variance aware since imt_method can be from an interface that vt->klass doesn't directly implement */
169         interface_offset = mono_class_interface_offset_with_variance (vt->klass, imt_method->klass, &variance_used);
170         if (interface_offset < 0)
171                 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));
172
173         *variant_iface = NULL;
174         if (imt_method->is_inflated && ((MonoMethodInflated*)imt_method)->context.method_inst) {
175                 /* Generic virtual method */
176                 generic_virtual = imt_method;
177                 need_rgctx_tramp = TRUE;
178         } else if (variance_used && mono_class_has_variant_generic_params (imt_method->klass)) {
179                 *variant_iface = imt_method;
180         }
181
182         addr = NULL;
183         /* We can only use the AOT compiled code if we don't require further processing */
184         lookup_aot = !generic_virtual & !variant_iface;
185
186         if (!mono_llvm_only)
187                 mono_vtable_build_imt_slot (vt, mono_method_get_imt_slot (imt_method));
188
189         if (imt_method->is_inflated && ((MonoMethodInflated*)imt_method)->context.method_inst) {
190                 MonoError error;
191                 MonoGenericContext context = { NULL, NULL };
192
193                 /*
194                  * Generic virtual method, imt_method contains the inflated interface
195                  * method, need to get the inflated impl method.
196                  */
197                 /* imt_method->slot might not be set */
198                 impl = mono_class_get_vtable_entry (vt->klass, interface_offset + mono_method_get_declaring_generic_method (imt_method)->slot);
199
200                 if (impl->klass->generic_class)
201                         context.class_inst = impl->klass->generic_class->context.class_inst;
202                 context.method_inst = ((MonoMethodInflated*)imt_method)->context.method_inst;
203                 impl = mono_class_inflate_generic_method_checked (impl, &context, &error);
204                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
205         } else {
206                 MonoError error;
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                         mono_error_raise_exception (&error); // FIXME: Don't raise here
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);
565                         /* This is the vcall slot which gets called through the IMT thunk */
566                         vtable_slot_to_patch = vtable_slot;
567
568                         if (addr) {
569                                 /*
570                                  * We found AOT compiled code for the method, skip the rest.
571                                  */
572                                 if (mono_domain_owns_vtable_slot (mono_domain_get (), vtable_slot))
573                                         *vtable_slot = addr;
574
575                                 return mono_create_ftnptr (mono_domain_get (), addr);
576                         }
577
578                         m = impl_method;
579                 }
580         }
581
582         /*
583          * The virtual check is needed because is_generic_method_definition (m) could
584          * return TRUE for methods used in IMT calls too.
585          */
586         if (virtual_ && is_generic_method_definition (m)) {
587                 MonoError error;
588                 MonoGenericContext context = { NULL, NULL };
589                 MonoMethod *declaring;
590
591                 if (m->is_inflated)
592                         declaring = mono_method_get_declaring_generic_method (m);
593                 else
594                         declaring = m;
595
596                 if (m->klass->generic_class)
597                         context.class_inst = m->klass->generic_class->context.class_inst;
598                 else
599                         g_assert (!m->klass->generic_container);
600
601                 generic_virtual = mono_arch_find_imt_method (regs, code);
602                 g_assert (generic_virtual);
603                 g_assert (generic_virtual->is_inflated);
604                 context.method_inst = ((MonoMethodInflated*)generic_virtual)->context.method_inst;
605
606                 m = mono_class_inflate_generic_method_checked (declaring, &context, &error);
607                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
608                 /* FIXME: only do this if the method is sharable */
609                 need_rgctx_tramp = TRUE;
610         } else if ((context_used = mono_method_check_context_used (m))) {
611                 MonoClass *klass = NULL;
612                 MonoMethod *actual_method = NULL;
613                 MonoVTable *vt = NULL;
614                 MonoGenericInst *method_inst = NULL;
615
616                 vtable_slot = NULL;
617                 generic_shared = TRUE;
618
619                 g_assert (code);
620
621                 /*
622                  * The caller is gshared code, compute the actual method to call from M and this/rgctx.
623                  */
624                 if (m->is_inflated && mono_method_get_context (m)->method_inst) {
625                         MonoMethodRuntimeGenericContext *mrgctx = (MonoMethodRuntimeGenericContext*)mono_arch_find_static_call_vtable (regs, code);
626
627                         klass = mrgctx->class_vtable->klass;
628                         method_inst = mrgctx->method_inst;
629                 } else if ((m->flags & METHOD_ATTRIBUTE_STATIC) || m->klass->valuetype) {
630                         MonoVTable *vtable = mono_arch_find_static_call_vtable (regs, code);
631
632                         klass = vtable->klass;
633                 } else {
634                         MonoObject *this_argument = (MonoObject *)mono_arch_get_this_arg_from_call (regs, code);
635
636                         vt = this_argument->vtable;
637                         vtable_slot = orig_vtable_slot;
638
639                         g_assert (this_argument->vtable->klass->inited);
640
641                         if (!vtable_slot) {
642                                 mono_class_setup_supertypes (this_argument->vtable->klass);
643                                 klass = this_argument->vtable->klass->supertypes [m->klass->idepth - 1];
644                         }
645                 }
646
647                 g_assert (vtable_slot || klass);
648
649                 if (vtable_slot) {
650                         int displacement = vtable_slot - ((gpointer*)vt);
651
652                         g_assert_not_reached ();
653
654                         g_assert (displacement > 0);
655
656                         actual_method = vt->klass->vtable [displacement];
657                 }
658
659                 if (method_inst || m->wrapper_type) {
660                         MonoError error;
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                         g_assert (mono_error_ok (&error)); /* FIXME don't swallow the 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                 mono_error_raise_exception (&error); /* FIXME don't raise here */
879                 if (addr && !vt->klass->valuetype) {
880                         if (mono_domain_owns_vtable_slot (mono_domain_get (), vtable_slot))
881                                 *vtable_slot = addr;
882
883                         return mono_create_ftnptr (mono_domain_get (), addr);
884                 }
885
886                 /*
887                  * Bug #616463 (see
888                  * is_generic_method_definition() above) also
889                  * goes away if we do a
890                  * mono_class_setup_vtable (vt->klass) here,
891                  * because we then inflate the method
892                  * correctly, put it in the cache, and the
893                  * "wrong" inflation invocation still looks up
894                  * the correctly inflated method.
895                  *
896                  * The hack above seems more stable and
897                  * trustworthy.
898                  */
899                 m = mono_class_get_vtable_entry (vt->klass, slot);
900         } else {
901                 /* IMT call */
902                 vtable_slot = &(((gpointer*)vt) [slot]);
903
904                 m = NULL;
905         }
906
907         res = common_call_trampoline (regs, code, m, vt, vtable_slot, &error);
908         if (!mono_error_ok (&error)) {
909                 mono_error_set_pending_exception (&error);
910                 return NULL;
911         }
912         return res;
913 }
914
915 #ifndef DISABLE_REMOTING
916 gpointer
917 mono_generic_virtual_remoting_trampoline (mgreg_t *regs, guint8 *code, MonoMethod *m, guint8 *tramp)
918 {
919         MONO_REQ_GC_UNSAFE_MODE;
920
921         MonoError error;
922         MonoGenericContext context = { NULL, NULL };
923         MonoMethod *imt_method, *declaring;
924         gpointer addr;
925
926         trampoline_calls ++;
927
928         g_assert (m->is_generic);
929
930         if (m->is_inflated)
931                 declaring = mono_method_get_declaring_generic_method (m);
932         else
933                 declaring = m;
934
935         if (m->klass->generic_class)
936                 context.class_inst = m->klass->generic_class->context.class_inst;
937         else
938                 g_assert (!m->klass->generic_container);
939
940         imt_method = mono_arch_find_imt_method (regs, code);
941         if (imt_method->is_inflated)
942                 context.method_inst = ((MonoMethodInflated*)imt_method)->context.method_inst;
943         m = mono_class_inflate_generic_method_checked (declaring, &context, &error);
944         g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */;
945         m = mono_marshal_get_remoting_invoke_with_check (m);
946
947         addr = mono_jit_compile_method (m, &error);
948         if (!mono_error_ok (&error)) {
949                 mono_error_set_pending_exception (&error);
950                 return NULL;
951         }
952         g_assert (addr);
953
954         return addr;
955 }
956 #endif
957
958 /**
959  * mono_aot_trampoline:
960  *
961  * This trampoline handles calls made from AOT code. We try to bypass the 
962  * normal JIT compilation logic to avoid loading the metadata for the method.
963  */
964 #ifdef MONO_ARCH_AOT_SUPPORTED
965 gpointer
966 mono_aot_trampoline (mgreg_t *regs, guint8 *code, guint8 *token_info, 
967                                          guint8* tramp)
968 {
969         MONO_REQ_GC_UNSAFE_MODE;
970
971         MonoImage *image;
972         guint32 token;
973         MonoMethod *method = NULL;
974         gpointer addr;
975         guint8 *plt_entry;
976         MonoError error;
977
978         trampoline_calls ++;
979
980         image = (MonoImage *)*(gpointer*)(gpointer)token_info;
981         token_info += sizeof (gpointer);
982         token = *(guint32*)(gpointer)token_info;
983
984         addr = mono_aot_get_method_from_token (mono_domain_get (), image, token, &error);
985         if (!is_ok (&error))
986                 mono_error_cleanup (&error);
987         if (!addr) {
988                 method = mono_get_method_checked (image, token, NULL, NULL, &error);
989                 if (!method)
990                         g_error ("Could not load AOT trampoline due to %s", mono_error_get_message (&error));
991
992                 /* Use the generic code */
993                 return mono_magic_trampoline (regs, code, method, tramp);
994         }
995
996         addr = mono_create_ftnptr (mono_domain_get (), addr);
997
998         /* This is a normal call through a PLT entry */
999         plt_entry = mono_aot_get_plt_entry (code);
1000         g_assert (plt_entry);
1001
1002         mono_aot_patch_plt_entry (code, plt_entry, NULL, regs, (guint8 *)addr);
1003
1004         return addr;
1005 }
1006
1007 /*
1008  * mono_aot_plt_trampoline:
1009  *
1010  *   This trampoline handles calls made from AOT code through the PLT table.
1011  */
1012 gpointer
1013 mono_aot_plt_trampoline (mgreg_t *regs, guint8 *code, guint8 *aot_module, 
1014                                                  guint8* tramp)
1015 {
1016         MONO_REQ_GC_UNSAFE_MODE;
1017
1018         guint32 plt_info_offset = mono_aot_get_plt_info_offset (regs, code);
1019         gpointer res;
1020         MonoError error;
1021
1022         trampoline_calls ++;
1023
1024         res = mono_aot_plt_resolve (aot_module, plt_info_offset, code, &error);
1025         if (!res) {
1026                 if (!mono_error_ok (&error)) {
1027                         mono_error_set_pending_exception (&error);
1028                         return NULL;
1029                 }
1030                 // FIXME: Error handling (how ?)
1031                 g_assert (res);
1032         }
1033
1034         return res;
1035 }
1036 #endif
1037
1038 static gpointer
1039 mono_rgctx_lazy_fetch_trampoline (mgreg_t *regs, guint8 *code, gpointer data, guint8 *tramp)
1040 {
1041         MONO_REQ_GC_UNSAFE_MODE;
1042
1043         static gboolean inited = FALSE;
1044         static int num_lookups = 0;
1045         guint32 slot = GPOINTER_TO_UINT (data);
1046         mgreg_t *r = (mgreg_t*)regs;
1047         gpointer arg = (gpointer)(gssize)r [MONO_ARCH_VTABLE_REG];
1048         guint32 index = MONO_RGCTX_SLOT_INDEX (slot);
1049         gboolean mrgctx = MONO_RGCTX_SLOT_IS_MRGCTX (slot);
1050         MonoError error;
1051         gpointer res;
1052
1053         trampoline_calls ++;
1054
1055         if (!inited) {
1056                 mono_counters_register ("RGCTX unmanaged lookups", MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &num_lookups);
1057                 inited = TRUE;
1058         }
1059
1060         num_lookups++;
1061
1062         if (mrgctx)
1063                 res = mono_method_fill_runtime_generic_context ((MonoMethodRuntimeGenericContext *)arg, index, &error);
1064         else
1065                 res = mono_class_fill_runtime_generic_context ((MonoVTable *)arg, index, &error);
1066         if (!mono_error_ok (&error)) {
1067                 mono_error_set_pending_exception (&error);
1068                 return NULL;
1069         }
1070         return res;
1071 }
1072
1073 /**
1074  * mono_delegate_trampoline:
1075  *
1076  *   This trampoline handles calls made to Delegate:Invoke ().
1077  * This is called once the first time a delegate is invoked, so it must be fast.
1078  */
1079 gpointer
1080 mono_delegate_trampoline (mgreg_t *regs, guint8 *code, gpointer *arg, guint8* tramp)
1081 {
1082         MONO_REQ_GC_UNSAFE_MODE;
1083
1084         MonoDomain *domain = mono_domain_get ();
1085         MonoDelegate *delegate;
1086         MonoJitInfo *ji;
1087         MonoMethod *m;
1088         MonoMethod *method = NULL;
1089         MonoError error;
1090         gboolean multicast, callvirt = FALSE, closed_over_null = FALSE;
1091         gboolean need_rgctx_tramp = FALSE;
1092         gboolean need_unbox_tramp = FALSE;
1093         gboolean enable_caching = TRUE;
1094         MonoDelegateTrampInfo *tramp_info = (MonoDelegateTrampInfo*)arg;
1095         MonoMethod *invoke = tramp_info->invoke;
1096         guint8 *impl_this = (guint8 *)tramp_info->impl_this;
1097         guint8 *impl_nothis = (guint8 *)tramp_info->impl_nothis;
1098         MonoError err;
1099         MonoMethodSignature *sig;
1100         gpointer addr, compiled_method;
1101         gboolean is_remote = FALSE;
1102
1103         trampoline_calls ++;
1104
1105         /* Obtain the delegate object according to the calling convention */
1106         delegate = (MonoDelegate *)mono_arch_get_this_arg_from_call (regs, code);
1107         g_assert (mono_class_has_parent (mono_object_class (delegate), mono_defaults.multicastdelegate_class));
1108
1109         if (delegate->method) {
1110                 method = delegate->method;
1111
1112                 /*
1113                  * delegate->method_ptr == NULL means the delegate was initialized by 
1114                  * mini_delegate_ctor, while != NULL means it is initialized by 
1115                  * mono_delegate_ctor_with_method (). In both cases, we need to add wrappers
1116                  * (ctor_with_method () does this, but it doesn't store the wrapper back into
1117                  * delegate->method).
1118                  */
1119 #ifndef DISABLE_REMOTING
1120                 if (delegate->target && delegate->target->vtable->klass == mono_defaults.transparent_proxy_class) {
1121                         is_remote = TRUE;
1122 #ifndef DISABLE_COM
1123                         if (((MonoTransparentProxy *)delegate->target)->remote_class->proxy_class != mono_class_get_com_object_class () &&
1124                            !mono_class_is_com_object (((MonoTransparentProxy *)delegate->target)->remote_class->proxy_class))
1125 #endif
1126                                 method = mono_marshal_get_remoting_invoke (method);
1127                 }
1128 #endif
1129                 if (!is_remote) {
1130                         sig = tramp_info->sig;
1131                         if (!(sig && method == tramp_info->method)) {
1132                                 mono_error_init (&err);
1133                                 sig = mono_method_signature_checked (method, &err);
1134                                 if (!sig) {
1135                                         mono_error_set_pending_exception (&err);
1136                                         return NULL;
1137                                 }
1138                         }
1139
1140                         if (sig->hasthis && method->klass->valuetype) {
1141                                 gboolean need_unbox = TRUE;
1142
1143                                 if (tramp_info->invoke_sig->param_count > sig->param_count && tramp_info->invoke_sig->params [0]->byref)
1144                                         need_unbox = FALSE;
1145
1146                                 if (need_unbox) {
1147                                         if (mono_aot_only)
1148                                                 need_unbox_tramp = TRUE;
1149                                         else
1150                                                 method = mono_marshal_get_unbox_wrapper (method);
1151                                 }
1152                         }
1153                 }
1154         // If "delegate->method_ptr" is null mono_get_addr_from_ftnptr will fail if
1155         // ftnptrs are being used.  "method" would end up null on archtitectures without
1156         // ftnptrs so we can just skip this.
1157         } else if (delegate->method_ptr) {
1158                 ji = mono_jit_info_table_find (domain, (char *)mono_get_addr_from_ftnptr (delegate->method_ptr));
1159                 if (ji)
1160                         method = jinfo_get_method (ji);
1161         }
1162
1163         if (method) {
1164                 sig = tramp_info->sig;
1165                 if (!(sig && method == tramp_info->method)) {
1166                         mono_error_init (&err);
1167                         sig = mono_method_signature_checked (method, &err);
1168                         if (!sig) {
1169                                 mono_error_set_pending_exception (&err);
1170                                 return NULL;
1171                         }
1172                 }
1173
1174                 callvirt = !delegate->target && sig->hasthis;
1175                 if (callvirt)
1176                         closed_over_null = tramp_info->invoke_sig->param_count == sig->param_count;
1177
1178                 if (callvirt && !closed_over_null) {
1179                         /*
1180                          * The delegate needs to make a virtual call to the target method using its
1181                          * first argument as the receiver. This is hard to support in full-aot, so
1182                          * optimize it in some cases if possible.
1183                          * If the target method is not virtual or is in a sealed class,
1184                          * the vcall will call it directly.
1185                          * If the call doesn't return a valuetype, then the vcall uses the same calling
1186                          * convention as a normal call.
1187                          */
1188                         if (((method->klass->flags & TYPE_ATTRIBUTE_SEALED) || !(method->flags & METHOD_ATTRIBUTE_VIRTUAL)) && !MONO_TYPE_ISSTRUCT (sig->ret)) {
1189                                 callvirt = FALSE;
1190                                 enable_caching = FALSE;
1191                         }
1192                 }
1193
1194                 if (delegate->target && 
1195                         method->flags & METHOD_ATTRIBUTE_VIRTUAL && 
1196                         method->flags & METHOD_ATTRIBUTE_ABSTRACT &&
1197                         method->klass->flags & TYPE_ATTRIBUTE_ABSTRACT) {
1198                         method = mono_object_get_virtual_method (delegate->target, method);
1199                         enable_caching = FALSE;
1200                 }
1201
1202                 if (method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED)
1203                         method = mono_marshal_get_synchronized_wrapper (method);
1204
1205                 if (method == tramp_info->method)
1206                         need_rgctx_tramp = tramp_info->need_rgctx_tramp;
1207                 else if (mono_method_needs_static_rgctx_invoke (method, FALSE))
1208                         need_rgctx_tramp = TRUE;
1209         }
1210
1211         /* 
1212          * If the called address is a trampoline, replace it with the compiled method so
1213          * further calls don't have to go through the trampoline.
1214          */
1215         if (method && !callvirt) {
1216                 /* Avoid the overhead of looking up an already compiled method if possible */
1217                 if (enable_caching && delegate->method_code && *delegate->method_code) {
1218                         delegate->method_ptr = *delegate->method_code;
1219                 } else {
1220                         compiled_method = addr = mono_jit_compile_method (method, &error);
1221                         if (!mono_error_ok (&error)) {
1222                                 mono_error_set_pending_exception (&error);
1223                                 return NULL;
1224                         }
1225                         addr = mini_add_method_trampoline (method, compiled_method, need_rgctx_tramp, need_unbox_tramp);
1226                         delegate->method_ptr = addr;
1227                         if (enable_caching && delegate->method_code)
1228                                 *delegate->method_code = (guint8 *)delegate->method_ptr;
1229                 }
1230         } else {
1231                 if (need_rgctx_tramp)
1232                         delegate->method_ptr = mono_create_static_rgctx_trampoline (method, delegate->method_ptr);
1233         }
1234
1235         /* Necessary for !code condition to fallback to slow path */
1236         code = NULL;
1237
1238         multicast = ((MonoMulticastDelegate*)delegate)->delegates != NULL;
1239         if (!multicast && !callvirt) {
1240                 if (method && (method->flags & METHOD_ATTRIBUTE_STATIC) && mono_method_signature (method)->param_count == mono_method_signature (invoke)->param_count + 1)
1241                         /* Closed static delegate */
1242                         code = impl_this;
1243                 else
1244                         code = delegate->target ? impl_this : impl_nothis;
1245         }
1246
1247         if (!code) {
1248                 /* The general, unoptimized case */
1249                 m = mono_marshal_get_delegate_invoke (invoke, delegate);
1250                 code = (guint8 *)mono_jit_compile_method (m, &error);
1251                 if (!mono_error_ok (&error)) {
1252                         mono_error_set_pending_exception (&error);
1253                         return NULL;
1254                 }
1255                 code = (guint8 *)mini_add_method_trampoline (m, code, mono_method_needs_static_rgctx_invoke (m, FALSE), FALSE);
1256         }
1257
1258         delegate->invoke_impl = mono_get_addr_from_ftnptr (code);
1259         if (enable_caching && !callvirt && tramp_info->method) {
1260                 tramp_info->method_ptr = delegate->method_ptr;
1261                 tramp_info->invoke_impl = delegate->invoke_impl;
1262         }
1263
1264         return code;
1265 }
1266
1267 #ifdef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD
1268 static gpointer
1269 mono_handler_block_guard_trampoline (mgreg_t *regs, guint8 *code, gpointer *tramp_info, guint8* tramp)
1270 {
1271         MONO_REQ_GC_UNSAFE_MODE;
1272
1273         MonoContext ctx;
1274         MonoException *exc;
1275         MonoJitTlsData *jit_tls = (MonoJitTlsData *)mono_native_tls_get_value (mono_jit_tls_id);
1276         gpointer resume_ip = jit_tls->handler_block_return_address;
1277
1278         memcpy (&ctx, &jit_tls->handler_block_context, sizeof (MonoContext));
1279         MONO_CONTEXT_SET_IP (&ctx, jit_tls->handler_block_return_address);
1280
1281         jit_tls->handler_block_return_address = NULL;
1282         jit_tls->handler_block = NULL;
1283
1284         if (!resume_ip) /*this should not happen, but we should avoid crashing */
1285                 exc = mono_get_exception_execution_engine ("Invalid internal state, resuming abort after handler block but no resume ip found");
1286         else
1287                 exc = mono_thread_resume_interruption ();
1288
1289         if (exc) {
1290                 mono_handle_exception (&ctx, (MonoObject *)exc);
1291                 mono_restore_context (&ctx);
1292         }
1293
1294         return resume_ip;
1295 }
1296
1297 gpointer
1298 mono_create_handler_block_trampoline (void)
1299 {
1300         static gpointer code;
1301         if (code) {
1302                 mono_memory_barrier ();
1303                 return code;
1304         }
1305
1306         g_assert (!mono_aot_only);
1307
1308         mono_trampolines_lock ();
1309
1310         if (!code) {
1311                 MonoTrampInfo *info;
1312                 gpointer tmp;
1313
1314                 tmp = mono_arch_create_handler_block_trampoline (&info, FALSE);
1315                 mono_tramp_info_register (info, NULL);
1316                 mono_memory_barrier ();
1317                 code = tmp;
1318         }
1319         mono_trampolines_unlock ();
1320
1321         return code;
1322 }
1323 #endif
1324
1325 /*
1326  * mono_get_trampoline_func:
1327  *
1328  *   Return the C function which needs to be called by the generic trampoline of type
1329  * TRAMP_TYPE.
1330  */
1331 gconstpointer
1332 mono_get_trampoline_func (MonoTrampolineType tramp_type)
1333 {
1334         switch (tramp_type) {
1335         case MONO_TRAMPOLINE_JIT:
1336         case MONO_TRAMPOLINE_JUMP:
1337                 return mono_magic_trampoline;
1338         case MONO_TRAMPOLINE_RGCTX_LAZY_FETCH:
1339                 return mono_rgctx_lazy_fetch_trampoline;
1340 #ifdef MONO_ARCH_AOT_SUPPORTED
1341         case MONO_TRAMPOLINE_AOT:
1342                 return mono_aot_trampoline;
1343         case MONO_TRAMPOLINE_AOT_PLT:
1344                 return mono_aot_plt_trampoline;
1345 #endif
1346         case MONO_TRAMPOLINE_DELEGATE:
1347                 return mono_delegate_trampoline;
1348         case MONO_TRAMPOLINE_RESTORE_STACK_PROT:
1349                 return mono_altstack_restore_prot;
1350 #ifndef DISABLE_REMOTING
1351         case MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING:
1352                 return mono_generic_virtual_remoting_trampoline;
1353 #endif
1354         case MONO_TRAMPOLINE_VCALL:
1355                 return mono_vcall_trampoline;
1356 #ifdef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD
1357         case MONO_TRAMPOLINE_HANDLER_BLOCK_GUARD:
1358                 return mono_handler_block_guard_trampoline;
1359 #endif
1360         default:
1361                 g_assert_not_reached ();
1362                 return NULL;
1363         }
1364 }
1365
1366 static guchar*
1367 create_trampoline_code (MonoTrampolineType tramp_type)
1368 {
1369         MonoTrampInfo *info;
1370         guchar *code;
1371
1372         code = mono_arch_create_generic_trampoline (tramp_type, &info, FALSE);
1373         mono_tramp_info_register (info, NULL);
1374
1375         return code;
1376 }
1377
1378 void
1379 mono_trampolines_init (void)
1380 {
1381         mono_os_mutex_init_recursive (&trampolines_mutex);
1382
1383         if (mono_aot_only)
1384                 return;
1385
1386         mono_trampoline_code [MONO_TRAMPOLINE_JIT] = create_trampoline_code (MONO_TRAMPOLINE_JIT);
1387         mono_trampoline_code [MONO_TRAMPOLINE_JUMP] = create_trampoline_code (MONO_TRAMPOLINE_JUMP);
1388         mono_trampoline_code [MONO_TRAMPOLINE_RGCTX_LAZY_FETCH] = create_trampoline_code (MONO_TRAMPOLINE_RGCTX_LAZY_FETCH);
1389 #ifdef MONO_ARCH_AOT_SUPPORTED
1390         mono_trampoline_code [MONO_TRAMPOLINE_AOT] = create_trampoline_code (MONO_TRAMPOLINE_AOT);
1391         mono_trampoline_code [MONO_TRAMPOLINE_AOT_PLT] = create_trampoline_code (MONO_TRAMPOLINE_AOT_PLT);
1392 #endif
1393         mono_trampoline_code [MONO_TRAMPOLINE_DELEGATE] = create_trampoline_code (MONO_TRAMPOLINE_DELEGATE);
1394         mono_trampoline_code [MONO_TRAMPOLINE_RESTORE_STACK_PROT] = create_trampoline_code (MONO_TRAMPOLINE_RESTORE_STACK_PROT);
1395 #ifndef DISABLE_REMOTING
1396         mono_trampoline_code [MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING] = create_trampoline_code (MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING);
1397 #endif
1398         mono_trampoline_code [MONO_TRAMPOLINE_VCALL] = create_trampoline_code (MONO_TRAMPOLINE_VCALL);
1399 #ifdef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD
1400         mono_trampoline_code [MONO_TRAMPOLINE_HANDLER_BLOCK_GUARD] = create_trampoline_code (MONO_TRAMPOLINE_HANDLER_BLOCK_GUARD);
1401         mono_create_handler_block_trampoline ();
1402 #endif
1403
1404         mono_counters_register ("Calls to trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &trampoline_calls);
1405         mono_counters_register ("JIT trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &jit_trampolines);
1406         mono_counters_register ("Unbox trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &unbox_trampolines);
1407         mono_counters_register ("Static rgctx trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &static_rgctx_trampolines);
1408 }
1409
1410 void
1411 mono_trampolines_cleanup (void)
1412 {
1413         if (rgctx_lazy_fetch_trampoline_hash)
1414                 g_hash_table_destroy (rgctx_lazy_fetch_trampoline_hash);
1415         if (rgctx_lazy_fetch_trampoline_hash_addr)
1416                 g_hash_table_destroy (rgctx_lazy_fetch_trampoline_hash_addr);
1417
1418         mono_os_mutex_destroy (&trampolines_mutex);
1419 }
1420
1421 guint8 *
1422 mono_get_trampoline_code (MonoTrampolineType tramp_type)
1423 {
1424         g_assert (mono_trampoline_code [tramp_type]);
1425
1426         return mono_trampoline_code [tramp_type];
1427 }
1428
1429 gpointer
1430 mono_create_specific_trampoline (gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len)
1431 {
1432         if (mono_aot_only)
1433                 return mono_aot_create_specific_trampoline (mono_defaults.corlib, arg1, tramp_type, domain, code_len);
1434         else
1435                 return mono_arch_create_specific_trampoline (arg1, tramp_type, domain, code_len);
1436 }
1437
1438 gpointer
1439 mono_create_jump_trampoline (MonoDomain *domain, MonoMethod *method, gboolean add_sync_wrapper, MonoError *error)
1440 {
1441         MonoJitInfo *ji;
1442         gpointer code;
1443         guint32 code_size = 0;
1444
1445         mono_error_init (error);
1446
1447         code = mono_jit_find_compiled_method_with_jit_info (domain, method, &ji);
1448         /*
1449          * We cannot recover the correct type of a shared generic
1450          * method from its native code address, so we use the
1451          * trampoline instead.
1452          * For synchronized methods, the trampoline adds the wrapper.
1453          */
1454         if (code && !ji->has_generic_jit_info && !(method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED))
1455                 return code;
1456
1457         if (mono_llvm_only) {
1458                 code = mono_jit_compile_method (method, error);
1459                 if (!mono_error_ok (error))
1460                         return NULL;
1461                 return code;
1462         }
1463
1464         mono_domain_lock (domain);
1465         code = g_hash_table_lookup (domain_jit_info (domain)->jump_trampoline_hash, method);
1466         mono_domain_unlock (domain);
1467         if (code)
1468                 return code;
1469
1470         code = mono_create_specific_trampoline (method, MONO_TRAMPOLINE_JUMP, mono_domain_get (), &code_size);
1471         g_assert (code_size);
1472
1473         ji = (MonoJitInfo *)mono_domain_alloc0 (domain, MONO_SIZEOF_JIT_INFO);
1474         ji->code_start = code;
1475         ji->code_size = code_size;
1476         ji->d.method = method;
1477
1478         /*
1479          * mono_delegate_ctor needs to find the method metadata from the 
1480          * trampoline address, so we save it here.
1481          */
1482
1483         mono_jit_info_table_add (domain, ji);
1484
1485         mono_domain_lock (domain);
1486         g_hash_table_insert (domain_jit_info (domain)->jump_trampoline_hash, method, ji->code_start);
1487         mono_domain_unlock (domain);
1488
1489         return ji->code_start;
1490 }
1491
1492 static void
1493 method_not_found (void)
1494 {
1495         g_assert_not_reached ();
1496 }
1497
1498 gpointer
1499 mono_create_jit_trampoline (MonoDomain *domain, MonoMethod *method, MonoError *error)
1500 {
1501         gpointer tramp;
1502
1503         mono_error_init (error);
1504
1505         if (mono_aot_only) {
1506                 /* Avoid creating trampolines if possible */
1507                 gpointer code = mono_jit_find_compiled_method (domain, method);
1508                 
1509                 if (code)
1510                         return code;
1511                 if (mono_llvm_only) {
1512                         if (method->wrapper_type == MONO_WRAPPER_PROXY_ISINST || method->wrapper_type == MONO_WRAPPER_LDFLD_REMOTE ||
1513                                 method->wrapper_type == MONO_WRAPPER_STFLD_REMOTE)
1514                                 /* These wrappers are not generated */
1515                                 return method_not_found;
1516                         /* Methods are lazily initialized on first call, so this can't lead recursion */
1517                         code = mono_jit_compile_method (method, error);
1518                         if (!mono_error_ok (error))
1519                                 return NULL;
1520                         return code;
1521                 }
1522         }
1523
1524         mono_domain_lock (domain);
1525         tramp = g_hash_table_lookup (domain_jit_info (domain)->jit_trampoline_hash, method);
1526         mono_domain_unlock (domain);
1527         if (tramp)
1528                 return tramp;
1529
1530         tramp = mono_create_specific_trampoline (method, MONO_TRAMPOLINE_JIT, domain, NULL);
1531         
1532         mono_domain_lock (domain);
1533         g_hash_table_insert (domain_jit_info (domain)->jit_trampoline_hash, method, tramp);
1534         mono_domain_unlock (domain);
1535
1536         jit_trampolines++;
1537
1538         return tramp;
1539 }       
1540
1541 gpointer
1542 mono_create_jit_trampoline_from_token (MonoImage *image, guint32 token)
1543 {
1544         gpointer tramp;
1545
1546         MonoDomain *domain = mono_domain_get ();
1547         guint8 *buf, *start;
1548
1549         buf = start = (guint8 *)mono_domain_alloc0 (domain, 2 * sizeof (gpointer));
1550
1551         *(gpointer*)(gpointer)buf = image;
1552         buf += sizeof (gpointer);
1553         *(guint32*)(gpointer)buf = token;
1554
1555         tramp = mono_create_specific_trampoline (start, MONO_TRAMPOLINE_AOT, domain, NULL);
1556
1557         jit_trampolines++;
1558
1559         return tramp;
1560 }       
1561
1562
1563 /*
1564  * mono_create_delegate_trampoline_info:
1565  *
1566  *  Create a trampoline info structure for the KLASS+METHOD pair.
1567  */
1568 MonoDelegateTrampInfo*
1569 mono_create_delegate_trampoline_info (MonoDomain *domain, MonoClass *klass, MonoMethod *method)
1570 {
1571         MonoMethod *invoke;
1572         MonoError error;
1573         MonoDelegateTrampInfo *tramp_info;
1574         MonoClassMethodPair pair, *dpair;
1575         guint32 code_size = 0;
1576
1577         pair.klass = klass;
1578         pair.method = method;
1579         mono_domain_lock (domain);
1580         tramp_info = (MonoDelegateTrampInfo *)g_hash_table_lookup (domain_jit_info (domain)->delegate_trampoline_hash, &pair);
1581         mono_domain_unlock (domain);
1582         if (tramp_info)
1583                 return tramp_info;
1584
1585         invoke = mono_get_delegate_invoke (klass);
1586         g_assert (invoke);
1587
1588         tramp_info = (MonoDelegateTrampInfo *)mono_domain_alloc0 (domain, sizeof (MonoDelegateTrampInfo));
1589         tramp_info->invoke = invoke;
1590         tramp_info->invoke_sig = mono_method_signature (invoke);
1591         tramp_info->impl_this = mono_arch_get_delegate_invoke_impl (mono_method_signature (invoke), TRUE);
1592         tramp_info->impl_nothis = mono_arch_get_delegate_invoke_impl (mono_method_signature (invoke), FALSE);
1593         tramp_info->method = method;
1594         if (method) {
1595                 mono_error_init (&error);
1596                 tramp_info->sig = mono_method_signature_checked (method, &error);
1597                 tramp_info->need_rgctx_tramp = mono_method_needs_static_rgctx_invoke (method, FALSE);
1598         }
1599         tramp_info->invoke_impl = mono_create_specific_trampoline (tramp_info, MONO_TRAMPOLINE_DELEGATE, domain, &code_size);
1600         g_assert (code_size);
1601
1602         dpair = (MonoClassMethodPair *)mono_domain_alloc0 (domain, sizeof (MonoClassMethodPair));
1603         memcpy (dpair, &pair, sizeof (MonoClassMethodPair));
1604
1605         /* store trampoline address */
1606         mono_domain_lock (domain);
1607         g_hash_table_insert (domain_jit_info (domain)->delegate_trampoline_hash, dpair, tramp_info);
1608         mono_domain_unlock (domain);
1609
1610         return tramp_info;
1611 }
1612
1613 static void
1614 no_delegate_trampoline (void)
1615 {
1616         g_assert_not_reached ();
1617 }
1618
1619 gpointer
1620 mono_create_delegate_trampoline (MonoDomain *domain, MonoClass *klass)
1621 {
1622         if (mono_llvm_only)
1623                 return no_delegate_trampoline;
1624
1625         return mono_create_delegate_trampoline_info (domain, klass, NULL)->invoke_impl;
1626 }
1627
1628 gpointer
1629 mono_create_delegate_virtual_trampoline (MonoDomain *domain, MonoClass *klass, MonoMethod *method)
1630 {
1631         MonoMethod *invoke = mono_get_delegate_invoke (klass);
1632         g_assert (invoke);
1633
1634         return mono_get_delegate_virtual_invoke_impl (mono_method_signature (invoke), method);
1635 }
1636
1637 gpointer
1638 mono_create_rgctx_lazy_fetch_trampoline (guint32 offset)
1639 {
1640         static gboolean inited = FALSE;
1641         static int num_trampolines = 0;
1642         MonoTrampInfo *info;
1643
1644         gpointer tramp, ptr;
1645
1646         mono_trampolines_lock ();
1647         if (rgctx_lazy_fetch_trampoline_hash)
1648                 tramp = g_hash_table_lookup (rgctx_lazy_fetch_trampoline_hash, GUINT_TO_POINTER (offset));
1649         else
1650                 tramp = NULL;
1651         mono_trampolines_unlock ();
1652         if (tramp)
1653                 return tramp;
1654
1655         if (mono_aot_only) {
1656                 ptr = mono_aot_get_lazy_fetch_trampoline (offset);
1657         } else {
1658                 tramp = mono_arch_create_rgctx_lazy_fetch_trampoline (offset, &info, FALSE);
1659                 mono_tramp_info_register (info, NULL);
1660                 ptr = mono_create_ftnptr (mono_get_root_domain (), tramp);
1661         }
1662
1663         mono_trampolines_lock ();
1664         if (!rgctx_lazy_fetch_trampoline_hash) {
1665                 rgctx_lazy_fetch_trampoline_hash = g_hash_table_new (NULL, NULL);
1666                 rgctx_lazy_fetch_trampoline_hash_addr = g_hash_table_new (NULL, NULL);
1667         }
1668         g_hash_table_insert (rgctx_lazy_fetch_trampoline_hash, GUINT_TO_POINTER (offset), ptr);
1669         g_assert (offset != -1);
1670         g_hash_table_insert (rgctx_lazy_fetch_trampoline_hash_addr, ptr, GUINT_TO_POINTER (offset + 1));
1671         mono_trampolines_unlock ();
1672
1673         if (!inited) {
1674                 mono_counters_register ("RGCTX num lazy fetch trampolines",
1675                                 MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &num_trampolines);
1676                 inited = TRUE;
1677         }
1678         num_trampolines++;
1679
1680         return ptr;
1681 }
1682
1683 guint32
1684 mono_find_rgctx_lazy_fetch_trampoline_by_addr (gconstpointer addr)
1685 {
1686         int offset;
1687
1688         mono_trampolines_lock ();
1689         if (rgctx_lazy_fetch_trampoline_hash_addr) {
1690                 /* We store the real offset + 1 so we can detect when the lookup fails */
1691                 offset = GPOINTER_TO_INT (g_hash_table_lookup (rgctx_lazy_fetch_trampoline_hash_addr, addr));
1692                 if (offset)
1693                         offset -= 1;
1694                 else
1695                         offset = -1;
1696         } else {
1697                 offset = -1;
1698         }
1699         mono_trampolines_unlock ();
1700         return offset;
1701 }
1702
1703 static const char*tramp_names [MONO_TRAMPOLINE_NUM] = {
1704         "jit",
1705         "jump",
1706         "rgctx_lazy_fetch",
1707         "aot",
1708         "aot_plt",
1709         "delegate",
1710         "restore_stack_prot",
1711         "generic_virtual_remoting",
1712         "vcall",
1713         "handler_block_guard"
1714 };
1715
1716 /*
1717  * mono_get_generic_trampoline_simple_name:
1718  *
1719  */
1720 const char*
1721 mono_get_generic_trampoline_simple_name (MonoTrampolineType tramp_type)
1722 {
1723         return tramp_names [tramp_type];
1724 }
1725
1726 /*
1727  * mono_get_generic_trampoline_name:
1728  *
1729  *   Returns a pointer to malloc-ed memory.
1730  */
1731 char*
1732 mono_get_generic_trampoline_name (MonoTrampolineType tramp_type)
1733 {
1734         return g_strdup_printf ("generic_trampoline_%s", tramp_names [tramp_type]);
1735 }
1736
1737 /*
1738  * mono_get_rgctx_fetch_trampoline_name:
1739  *
1740  *   Returns a pointer to malloc-ed memory.
1741  */
1742 char*
1743 mono_get_rgctx_fetch_trampoline_name (int slot)
1744 {
1745         gboolean mrgctx;
1746         int index;
1747
1748         mrgctx = MONO_RGCTX_SLOT_IS_MRGCTX (slot);
1749         index = MONO_RGCTX_SLOT_INDEX (slot);
1750
1751         return g_strdup_printf ("rgctx_fetch_trampoline_%s_%d", mrgctx ? "mrgctx" : "rgctx", index);
1752 }
1753
1754 /*
1755  * mini_get_single_step_trampoline:
1756  *
1757  *   Return a trampoline which calls debugger_agent_single_step_from_context ().
1758  */
1759 gpointer
1760 mini_get_single_step_trampoline (void)
1761 {
1762         static gpointer trampoline;
1763
1764         if (!trampoline) {
1765                 gpointer tramp;
1766
1767                 if (mono_aot_only) {
1768                         tramp = mono_aot_get_trampoline ("sdb_single_step_trampoline");
1769                 } else {
1770 #ifdef MONO_ARCH_HAVE_SDB_TRAMPOLINES
1771                         MonoTrampInfo *info;
1772                         tramp = mono_arch_create_sdb_trampoline (TRUE, &info, FALSE);
1773                         mono_tramp_info_register (info, NULL);
1774 #else
1775                         tramp = NULL;
1776                         g_assert_not_reached ();
1777 #endif
1778                 }
1779                 mono_memory_barrier ();
1780                 trampoline = tramp;
1781         }
1782
1783         return trampoline;
1784 }
1785
1786 /*
1787  * mini_get_breakpoint_trampoline:
1788  *
1789  *   Return a trampoline which calls debugger_agent_breakpoint_from_context ().
1790  */
1791 gpointer
1792 mini_get_breakpoint_trampoline (void)
1793 {
1794         static gpointer trampoline;
1795
1796         if (!trampoline) {
1797                 gpointer tramp;
1798
1799                 if (mono_aot_only) {
1800                         tramp = mono_aot_get_trampoline ("sdb_breakpoint_trampoline");
1801                 } else {
1802 #ifdef MONO_ARCH_HAVE_SDB_TRAMPOLINES
1803                         MonoTrampInfo *info;
1804                         tramp = mono_arch_create_sdb_trampoline (FALSE, &info, FALSE);
1805                         mono_tramp_info_register (info, NULL);
1806 #else
1807                         tramp = NULL;
1808                         g_assert_not_reached ();
1809 #endif
1810                 }
1811                 mono_memory_barrier ();
1812                 trampoline = tramp;
1813         }
1814
1815         return trampoline;
1816 }