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