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