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