X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fmini%2Fmini-trampolines.c;h=a11911e5c47985a582e0fe4eee35ec362d44fe04;hb=023046395bb3d091f5f1dd60ca4da378356d5964;hp=bc9e2a14d68ec4294b702517644aac4923773870;hpb=96c46ddad421fad6b381c00d38bec5804c5191e2;p=mono.git diff --git a/mono/mini/mini-trampolines.c b/mono/mini/mini-trampolines.c index bc9e2a14d68..a11911e5c47 100644 --- a/mono/mini/mini-trampolines.c +++ b/mono/mini/mini-trampolines.c @@ -1,4 +1,5 @@ -/* +/** + * \file * (C) 2003 Ximian, Inc. * (C) 2003-2011 Novell, Inc. * Copyright 2011 Xamarin, Inc (http://www.xamarin.com) @@ -18,6 +19,11 @@ #include #include "mini.h" +#include "lldb.h" + +#ifdef ENABLE_INTERPRETER +#include "interp/interp.h" +#endif /* * Address of the trampoline code. This is used by the debugger to check @@ -62,8 +68,8 @@ rgctx_tramp_info_hash (gconstpointer data) /** * mono_create_static_rgctx_trampoline: - * @m: the mono method to create a trampoline for - * @addr: the address to jump to (where the compiled code for M lives) + * \param m the mono method to create a trampoline for + * \param addr the address to jump to (where the compiled code for M lives) * * Creates a static rgctx trampoline for M which branches to ADDR which should * point to the compiled code of M. @@ -77,7 +83,7 @@ rgctx_tramp_info_hash (gconstpointer data) * * On PPC addr should be an ftnptr and the return value is an ftnptr too. * - * Returns the generated static rgctx trampoline. + * \returns the generated static rgctx trampoline. */ gpointer mono_create_static_rgctx_trampoline (MonoMethod *m, gpointer addr) @@ -114,7 +120,7 @@ mono_create_static_rgctx_trampoline (MonoMethod *m, gpointer addr) if (mono_aot_only) res = mono_aot_get_static_rgctx_trampoline (ctx, addr); else - res = mono_arch_get_static_rgctx_trampoline (m, (MonoMethodRuntimeGenericContext *)ctx, addr); + res = mono_arch_get_static_rgctx_trampoline (ctx, addr); mono_domain_lock (domain); /* Duplicates inserted while we didn't hold the lock are OK */ @@ -166,7 +172,7 @@ mini_resolve_imt_method (MonoVTable *vt, gpointer *vtable_slot, MonoMethod *imt_ g_assert (imt_slot < MONO_IMT_SIZE); - mono_error_init (error); + error_init (error); /* This has to be variance aware since imt_method can be from an interface that vt->klass doesn't directly implement */ interface_offset = mono_class_interface_offset_with_variance (vt->klass, imt_method->klass, &variance_used); if (interface_offset < 0) @@ -522,7 +528,7 @@ common_call_trampoline (mgreg_t *regs, guint8 *code, MonoMethod *m, MonoVTable * gpointer *orig_vtable_slot, *vtable_slot_to_patch = NULL; MonoJitInfo *ji = NULL; - mono_error_init (error); + error_init (error); virtual_ = vt && (gpointer)vtable_slot > (gpointer)vt; imt_call = vt && (gpointer)vtable_slot < (gpointer)vt; @@ -561,6 +567,10 @@ common_call_trampoline (mgreg_t *regs, guint8 *code, MonoMethod *m, MonoVTable * vtable_slot = mini_resolve_imt_method (vt, vtable_slot, imt_method, &impl_method, &addr, &need_rgctx_tramp, &variant_iface, error); return_val_if_nok (error, NULL); + /* We must handle magic interfaces on rank 1 arrays of ref types as if they were variant */ + if (!variant_iface && vt->klass->rank == 1 && !vt->klass->element_class->valuetype && imt_method->klass->is_array_special_interface) + variant_iface = imt_method; + /* This is the vcall slot which gets called through the IMT trampoline */ vtable_slot_to_patch = vtable_slot; @@ -818,19 +828,19 @@ gpointer mono_magic_trampoline (mgreg_t *regs, guint8 *code, gpointer arg, guint8* tramp) { gpointer res; + MonoError error; - MONO_ENTER_GC_UNSAFE_UNBALANCED; + MONO_REQ_GC_UNSAFE_MODE; - MonoError error; + g_assert (mono_thread_is_gc_unsafe_mode ()); trampoline_calls ++; res = common_call_trampoline (regs, code, (MonoMethod *)arg, NULL, NULL, &error); - mono_error_set_pending_exception (&error); - - mono_interruption_checkpoint_from_trampoline (); - - MONO_EXIT_GC_UNSAFE_UNBALANCED; + if (!is_ok (&error)) { + mono_error_set_pending_exception (&error); + return NULL; + } return res; } @@ -850,7 +860,7 @@ mono_vcall_trampoline (mgreg_t *regs, guint8 *code, int slot, guint8 *tramp) gpointer *vtable_slot; MonoMethod *m; MonoError error; - gpointer addr, res; + gpointer addr, res = NULL; trampoline_calls ++; @@ -1120,7 +1130,7 @@ mono_delegate_trampoline (mgreg_t *regs, guint8 *code, gpointer *arg, guint8* tr * delegate->method). */ #ifndef DISABLE_REMOTING - if (delegate->target && delegate->target->vtable->klass == mono_defaults.transparent_proxy_class) { + if (delegate->target && mono_object_is_transparent_proxy (delegate->target)) { is_remote = TRUE; #ifndef DISABLE_COM if (((MonoTransparentProxy *)delegate->target)->remote_class->proxy_class != mono_class_get_com_object_class () && @@ -1132,7 +1142,7 @@ mono_delegate_trampoline (mgreg_t *regs, guint8 *code, gpointer *arg, guint8* tr if (!is_remote) { sig = tramp_info->sig; if (!(sig && method == tramp_info->method)) { - mono_error_init (&err); + error_init (&err); sig = mono_method_signature_checked (method, &err); if (!sig) { mono_error_set_pending_exception (&err); @@ -1166,7 +1176,7 @@ mono_delegate_trampoline (mgreg_t *regs, guint8 *code, gpointer *arg, guint8* tr if (method) { sig = tramp_info->sig; if (!(sig && method == tramp_info->method)) { - mono_error_init (&err); + error_init (&err); sig = mono_method_signature_checked (method, &err); if (!sig) { mono_error_set_pending_exception (&err); @@ -1188,7 +1198,7 @@ mono_delegate_trampoline (mgreg_t *regs, guint8 *code, gpointer *arg, guint8* tr * If the call doesn't return a valuetype, then the vcall uses the same calling * convention as a normal call. */ - if (((mono_class_get_flags (method->klass) & TYPE_ATTRIBUTE_SEALED) || !(method->flags & METHOD_ATTRIBUTE_VIRTUAL)) && !MONO_TYPE_ISSTRUCT (sig->ret)) { + if ((mono_class_is_sealed (method->klass) || !(method->flags & METHOD_ATTRIBUTE_VIRTUAL)) && !MONO_TYPE_ISSTRUCT (sig->ret)) { callvirt = FALSE; enable_caching = FALSE; } @@ -1197,7 +1207,7 @@ mono_delegate_trampoline (mgreg_t *regs, guint8 *code, gpointer *arg, guint8* tr if (delegate->target && method->flags & METHOD_ATTRIBUTE_VIRTUAL && method->flags & METHOD_ATTRIBUTE_ABSTRACT && - mono_class_get_flags (method->klass) & TYPE_ATTRIBUTE_ABSTRACT) { + mono_class_is_abstract (method->klass)) { method = mono_object_get_virtual_method (delegate->target, method); enable_caching = FALSE; } @@ -1267,68 +1277,6 @@ mono_delegate_trampoline (mgreg_t *regs, guint8 *code, gpointer *arg, guint8* tr return code; } -#ifdef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD -static gpointer -mono_handler_block_guard_trampoline (mgreg_t *regs, guint8 *code, gpointer *tramp_info, guint8* tramp) -{ - MONO_REQ_GC_UNSAFE_MODE; - - MonoContext ctx; - MonoException *exc; - MonoJitTlsData *jit_tls = (MonoJitTlsData *)mono_native_tls_get_value (mono_jit_tls_id); - gpointer resume_ip = jit_tls->handler_block_return_address; - - memcpy (&ctx, &jit_tls->handler_block_context, sizeof (MonoContext)); - MONO_CONTEXT_SET_IP (&ctx, jit_tls->handler_block_return_address); - - jit_tls->handler_block_return_address = NULL; - jit_tls->handler_block = NULL; - - if (!resume_ip) /*this should not happen, but we should avoid crashing */ - exc = mono_get_exception_execution_engine ("Invalid internal state, resuming abort after handler block but no resume ip found"); - else - exc = mono_thread_resume_interruption (); - - if (exc) { - mono_handle_exception (&ctx, (MonoObject *)exc); - mono_restore_context (&ctx); - } - - return resume_ip; -} - -gpointer -mono_create_handler_block_trampoline (void) -{ - static gpointer code; - - if (code) - return code; - - if (mono_aot_only) { - gpointer tmp = mono_aot_get_trampoline ("handler_block_trampoline"); - g_assert (tmp); - mono_memory_barrier (); - code = tmp; - return code; - } - - mono_trampolines_lock (); - if (!code) { - MonoTrampInfo *info; - gpointer tmp; - - tmp = mono_arch_create_handler_block_trampoline (&info, FALSE); - mono_tramp_info_register (info, NULL); - mono_memory_barrier (); - code = tmp; - } - mono_trampolines_unlock (); - - return code; -} -#endif - /* * mono_get_trampoline_func: * @@ -1360,10 +1308,6 @@ mono_get_trampoline_func (MonoTrampolineType tramp_type) #endif case MONO_TRAMPOLINE_VCALL: return mono_vcall_trampoline; -#ifdef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD - case MONO_TRAMPOLINE_HANDLER_BLOCK_GUARD: - return mono_handler_block_guard_trampoline; -#endif default: g_assert_not_reached (); return NULL; @@ -1403,10 +1347,6 @@ mono_trampolines_init (void) mono_trampoline_code [MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING] = create_trampoline_code (MONO_TRAMPOLINE_GENERIC_VIRTUAL_REMOTING); #endif mono_trampoline_code [MONO_TRAMPOLINE_VCALL] = create_trampoline_code (MONO_TRAMPOLINE_VCALL); -#ifdef MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD - mono_trampoline_code [MONO_TRAMPOLINE_HANDLER_BLOCK_GUARD] = create_trampoline_code (MONO_TRAMPOLINE_HANDLER_BLOCK_GUARD); - mono_create_handler_block_trampoline (); -#endif mono_counters_register ("Calls to trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &trampoline_calls); mono_counters_register ("JIT trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &jit_trampolines); @@ -1436,10 +1376,17 @@ mono_get_trampoline_code (MonoTrampolineType tramp_type) gpointer mono_create_specific_trampoline (gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len) { + gpointer code; + guint32 len; + if (mono_aot_only) - return mono_aot_create_specific_trampoline (mono_defaults.corlib, arg1, tramp_type, domain, code_len); + code = mono_aot_create_specific_trampoline (mono_defaults.corlib, arg1, tramp_type, domain, &len); else - return mono_arch_create_specific_trampoline (arg1, tramp_type, domain, code_len); + code = mono_arch_create_specific_trampoline (arg1, tramp_type, domain, &len); + mono_lldb_save_specific_trampoline_info (arg1, tramp_type, domain, code, len); + if (code_len) + *code_len = len; + return code; } gpointer @@ -1449,7 +1396,16 @@ mono_create_jump_trampoline (MonoDomain *domain, MonoMethod *method, gboolean ad gpointer code; guint32 code_size = 0; - mono_error_init (error); + error_init (error); + +#ifdef ENABLE_INTERPRETER + if (mono_use_interpreter) { + gpointer ret = mono_interp_create_trampoline (domain, method, error); + if (!mono_error_ok (error)) + return NULL; + return ret; + } +#endif code = mono_jit_find_compiled_method_with_jit_info (domain, method, &ji); /* @@ -1507,7 +1463,7 @@ mono_create_jit_trampoline (MonoDomain *domain, MonoMethod *method, MonoError *e { gpointer tramp; - mono_error_init (error); + error_init (error); if (mono_aot_only) { if (mono_llvm_only && method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED) @@ -1601,7 +1557,7 @@ mono_create_delegate_trampoline_info (MonoDomain *domain, MonoClass *klass, Mono tramp_info->impl_nothis = mono_arch_get_delegate_invoke_impl (mono_method_signature (invoke), FALSE); tramp_info->method = method; if (method) { - mono_error_init (&error); + error_init (&error); tramp_info->sig = mono_method_signature_checked (method, &error); tramp_info->need_rgctx_tramp = mono_method_needs_static_rgctx_invoke (method, FALSE); } @@ -1628,7 +1584,7 @@ no_delegate_trampoline (void) gpointer mono_create_delegate_trampoline (MonoDomain *domain, MonoClass *klass) { - if (mono_llvm_only) + if (mono_llvm_only || mono_use_interpreter) return no_delegate_trampoline; return mono_create_delegate_trampoline_info (domain, klass, NULL)->invoke_impl; @@ -1718,8 +1674,7 @@ static const char*tramp_names [MONO_TRAMPOLINE_NUM] = { "delegate", "restore_stack_prot", "generic_virtual_remoting", - "vcall", - "handler_block_guard" + "vcall" }; /*