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