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