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