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