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