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