Avoid passing a name to mono_register_jit_icall () which is later freed.
[mono.git] / mono / mini / tramp-x86.c
index 309aff75d184e6a04a8d627b9d336457bbd23ff3..071db897631f311211678365d92c5438b0c19529 100644 (file)
@@ -17,6 +17,7 @@
 #include <mono/metadata/mono-debug.h>
 #include <mono/metadata/mono-debug-debugger.h>
 #include <mono/metadata/monitor.h>
+#include <mono/metadata/gc-internal.h>
 #include <mono/arch/x86/x86-codegen.h>
 
 #include <mono/utils/memcheck.h>
@@ -28,7 +29,6 @@ static guint8* nullified_class_init_trampoline;
 
 /*
  * mono_arch_get_unbox_trampoline:
- * @gsctx: the generic sharing context
  * @m: method pointer
  * @addr: pointer to native code for @m
  *
@@ -37,15 +37,12 @@ static guint8* nullified_class_init_trampoline;
  * unboxing before calling the method
  */
 gpointer
-mono_arch_get_unbox_trampoline (MonoGenericSharingContext *gsctx, MonoMethod *m, gpointer addr)
+mono_arch_get_unbox_trampoline (MonoMethod *m, gpointer addr)
 {
        guint8 *code, *start;
        int this_pos = 4;
        MonoDomain *domain = mono_domain_get ();
 
-       if (MONO_TYPE_ISSTRUCT (mono_method_signature (m)->ret))
-               this_pos = 8;
-           
        start = code = mono_domain_code_reserve (domain, 16);
 
        x86_alu_membase_imm (code, X86_ADD, X86_ESP, this_pos, sizeof (MonoObject));
@@ -147,17 +144,73 @@ mono_arch_patch_plt_entry (guint8 *code, gpointer *got, mgreg_t *regs, guint8 *a
 
        /* Patch the jump table entry used by the plt entry */
 
+#if defined(__native_client_codegen__) || defined(__native_client__)
+       /* for both compiler and runtime      */
+       /* A PLT entry:                       */
+       /*        mov <DISP>(%ebx), %ecx      */
+       /*        and 0xffffffe0, %ecx        */
+       /*        jmp *%ecx                   */
+       g_assert (code [0] == 0x8b);
+       g_assert (code [1] == 0x8b);
+
+       offset = *(guint32*)(code + 2);
+#else
        /* A PLT entry: jmp *<DISP>(%ebx) */
        g_assert (code [0] == 0xff);
        g_assert (code [1] == 0xa3);
 
        offset = *(guint32*)(code + 2);
-
+#endif  /* __native_client_codegen__ */
        if (!got)
                got = (gpointer*)(gsize) regs [MONO_ARCH_GOT_REG];
        *(guint8**)((guint8*)got + offset) = addr;
 }
 
+static gpointer
+get_vcall_slot (guint8 *code, mgreg_t *regs, int *displacement)
+{
+       const int kBufSize = NACL_SIZE (8, 16);
+       guint8 buf [64];
+       guint8 reg = 0;
+       gint32 disp = 0;
+
+       mono_breakpoint_clean_code (NULL, code, kBufSize, buf, kBufSize);
+       code = buf + 8;
+
+       *displacement = 0;
+
+       if ((code [0] == 0xff) && ((code [1] & 0x18) == 0x10) && ((code [1] >> 6) == 2)) {
+               reg = code [1] & 0x07;
+               disp = *((gint32*)(code + 2));
+#if defined(__native_client_codegen__) || defined(__native_client__)
+       } else if ((code[1] == 0x83) && (code[2] == 0xe1) && (code[4] == 0xff) &&
+                          (code[5] == 0xd1) && (code[-5] == 0x8b)) {
+               disp = *((gint32*)(code - 3));
+               reg = code[-4] & 0x07;
+       } else if ((code[-2] == 0x8b) && (code[1] == 0x83) && (code[4] == 0xff)) {
+               reg = code[-1] & 0x07;
+               disp = (signed char)code[0];
+#endif
+       } else {
+               g_assert_not_reached ();
+               return NULL;
+       }
+
+       *displacement = disp;
+       return (gpointer)regs [reg];
+}
+
+static gpointer*
+get_vcall_slot_addr (guint8* code, mgreg_t *regs)
+{
+       gpointer vt;
+       int displacement;
+       vt = get_vcall_slot (code, regs, &displacement);
+       if (!vt)
+               return NULL;
+       return (gpointer*)((char*)vt + displacement);
+}
+
 void
 mono_arch_nullify_class_init_trampoline (guint8 *code, mgreg_t *regs)
 {
@@ -202,7 +255,7 @@ mono_arch_nullify_class_init_trampoline (guint8 *code, mgreg_t *regs)
                /* call *<OFFSET>(<REG>) -> Call made from AOT code */
                gpointer *vtable_slot;
 
-               vtable_slot = mono_get_vcall_slot_addr (code + 5, regs);
+               vtable_slot = get_vcall_slot_addr (code + 5, regs);
                g_assert (vtable_slot);
 
                *vtable_slot = nullified_class_init_trampoline;
@@ -217,19 +270,21 @@ void
 mono_arch_nullify_plt_entry (guint8 *code, mgreg_t *regs)
 {
        if (mono_aot_only && !nullified_class_init_trampoline)
-               nullified_class_init_trampoline = mono_aot_get_named_code ("nullified_class_init_trampoline");
+               nullified_class_init_trampoline = mono_aot_get_trampoline ("nullified_class_init_trampoline");
 
        mono_arch_patch_plt_entry (code, NULL, regs, nullified_class_init_trampoline);
 }
 
 guchar*
-mono_arch_create_generic_trampoline_full (MonoTrampolineType tramp_type, MonoTrampInfo **info, gboolean aot)
+mono_arch_create_generic_trampoline (MonoTrampolineType tramp_type, MonoTrampInfo **info, gboolean aot)
 {
        guint8 *buf, *code, *tramp;
        int pushed_args, pushed_args_caller_saved;
        GSList *unwind_ops = NULL;
        MonoJumpInfo *ji = NULL;
 
+       unwind_ops = mono_arch_get_cie_program ();
+
        code = buf = mono_global_codeman_reserve (256);
 
        /* Note that there is a single argument to the trampoline
@@ -348,6 +403,8 @@ mono_arch_create_generic_trampoline_full (MonoTrampolineType tramp_type, MonoTra
        x86_breakpoint (buf);*/
 #endif
 
+       mono_add_unwind_op_def_cfa (unwind_ops, code, buf, X86_ESP, ((pushed_args + 2) * 4));
+
        if (aot) {
                char *icall_name = g_strdup_printf ("trampoline_func_%d", tramp_type);
                code = mono_arch_emit_load_aotconst (buf, code, &ji, MONO_PATCH_INFO_JIT_ICALL_ADDR, icall_name);
@@ -444,15 +501,14 @@ mono_arch_create_generic_trampoline_full (MonoTrampolineType tramp_type, MonoTra
 
        g_assert ((code - buf) <= 256);
 
+       if (info)
+               *info = mono_tramp_info_create (mono_get_generic_trampoline_name (tramp_type), buf, code - buf, ji, unwind_ops);
+
        if (tramp_type == MONO_TRAMPOLINE_CLASS_INIT) {
                /* Initialize the nullified class init trampoline used in the AOT case */
-               nullified_class_init_trampoline = code = mono_global_codeman_reserve (16);
-               x86_ret (code);
+               nullified_class_init_trampoline = mono_arch_get_nullified_class_init_trampoline (NULL);
        }
 
-       if (info)
-               *info = mono_tramp_info_create (g_strdup_printf ("generic_trampoline_%d", tramp_type), buf, code - buf, ji, unwind_ops);
-
        return buf;
 }
 
@@ -469,6 +525,9 @@ mono_arch_get_nullified_class_init_trampoline (MonoTrampInfo **info)
        if (info)
                *info = mono_tramp_info_create (g_strdup_printf ("nullified_class_init_trampoline"), buf, code - buf, NULL, NULL);
 
+       if (mono_jit_map_is_enabled ())
+               mono_emit_jit_tramp (buf, code - buf, "nullified_class_init_trampoline");
+
        return buf;
 }
 
@@ -481,7 +540,7 @@ mono_arch_create_specific_trampoline (gpointer arg1, MonoTrampolineType tramp_ty
        
        tramp = mono_get_trampoline_code (tramp_type);
 
-       code = buf = mono_domain_code_reserve_align (domain, TRAMPOLINE_SIZE, 4);
+       code = buf = mono_domain_code_reserve_align (domain, TRAMPOLINE_SIZE, NACL_SIZE (4, kNaClAlignment));
 
        x86_push_imm (buf, arg1);
        x86_jump_code (buf, tramp);
@@ -496,7 +555,7 @@ mono_arch_create_specific_trampoline (gpointer arg1, MonoTrampolineType tramp_ty
 }
 
 gpointer
-mono_arch_create_rgctx_lazy_fetch_trampoline_full (guint32 slot, MonoTrampInfo **info, gboolean aot)
+mono_arch_create_rgctx_lazy_fetch_trampoline (guint32 slot, MonoTrampInfo **info, gboolean aot)
 {
        guint8 *tramp;
        guint8 *code, *buf;
@@ -508,6 +567,8 @@ mono_arch_create_rgctx_lazy_fetch_trampoline_full (guint32 slot, MonoTrampInfo *
        MonoJumpInfo *ji = NULL;
        GSList *unwind_ops = NULL;
 
+       unwind_ops = mono_arch_get_cie_program ();
+
        mrgctx = MONO_RGCTX_SLOT_IS_MRGCTX (slot);
        index = MONO_RGCTX_SLOT_INDEX (slot);
        if (mrgctx)
@@ -520,7 +581,13 @@ mono_arch_create_rgctx_lazy_fetch_trampoline_full (guint32 slot, MonoTrampInfo *
                index -= size - 1;
        }
 
+#ifdef __native_client_codegen__
+       /* TODO: align for Native Client */
+       tramp_size = (aot ? 64 : 36) + 2 * kNaClAlignment +
+               6 * (depth + kNaClAlignment);
+#else
        tramp_size = (aot ? 64 : 36) + 6 * depth;
+#endif  /* __native_client_codegen__ */
 
        code = buf = mono_global_codeman_reserve (tramp_size);
 
@@ -583,13 +650,13 @@ mono_arch_create_rgctx_lazy_fetch_trampoline_full (guint32 slot, MonoTrampInfo *
        g_assert (code - buf <= tramp_size);
 
        if (info)
-               *info = mono_tramp_info_create (g_strdup_printf ("rgctx_fetch_trampoline_%u", slot), buf, code - buf, ji, unwind_ops);
+               *info = mono_tramp_info_create (mono_get_rgctx_fetch_trampoline_name (slot), buf, code - buf, ji, unwind_ops);
 
        return buf;
 }
 
 gpointer
-mono_arch_create_generic_class_init_trampoline_full (MonoTrampInfo **info, gboolean aot)
+mono_arch_create_generic_class_init_trampoline (MonoTrampInfo **info, gboolean aot)
 {
        guint8 *tramp;
        guint8 *code, *buf;
@@ -604,6 +671,8 @@ mono_arch_create_generic_class_init_trampoline_full (MonoTrampInfo **info, gbool
 
        code = buf = mono_global_codeman_reserve (tramp_size);
 
+       unwind_ops = mono_arch_get_cie_program ();
+
        if (byte_offset < 0)
                mono_marshal_find_bitfield_offset (MonoVTable, initialized, &byte_offset, &bitmask);
 
@@ -631,7 +700,9 @@ mono_arch_create_generic_class_init_trampoline_full (MonoTrampInfo **info, gbool
        mono_arch_flush_icache (code, code - buf);
 
        g_assert (code - buf <= tramp_size);
-
+#ifdef __native_client_codegen__
+       g_assert (code - buf <= kNaClAlignment);
+#endif
        if (info)
                *info = mono_tramp_info_create (g_strdup_printf ("generic_class_init_trampoline"), buf, code - buf, ji, unwind_ops);
 
@@ -658,11 +729,11 @@ mono_arch_create_generic_class_init_trampoline_full (MonoTrampInfo **info, gbool
  *
  */
 gpointer
-mono_arch_create_monitor_enter_trampoline_full (MonoTrampInfo **info, gboolean aot)
+mono_arch_create_monitor_enter_trampoline (MonoTrampInfo **info, gboolean aot)
 {
        guint8 *tramp = mono_get_trampoline_code (MONO_TRAMPOLINE_MONITOR_ENTER);
        guint8 *code, *buf;
-       guint8 *jump_obj_null, *jump_sync_null, *jump_other_owner, *jump_cmpxchg_failed, *jump_tid;
+       guint8 *jump_obj_null, *jump_sync_null, *jump_other_owner, *jump_cmpxchg_failed, *jump_tid, *jump_sync_thin_hash = NULL;
        int tramp_size;
        int owner_offset, nest_offset, dummy;
        MonoJumpInfo *ji = NULL;
@@ -676,7 +747,7 @@ mono_arch_create_monitor_enter_trampoline_full (MonoTrampInfo **info, gboolean a
        owner_offset = MONO_THREADS_SYNC_MEMBER_OFFSET (owner_offset);
        nest_offset = MONO_THREADS_SYNC_MEMBER_OFFSET (nest_offset);
 
-       tramp_size = 64;
+       tramp_size = NACL_SIZE (64, 128);
 
        code = buf = mono_global_codeman_reserve (tramp_size);
 
@@ -690,8 +761,21 @@ mono_arch_create_monitor_enter_trampoline_full (MonoTrampInfo **info, gboolean a
 
                /* load obj->synchronization to ECX */
                x86_mov_reg_membase (code, X86_ECX, X86_EAX, G_STRUCT_OFFSET (MonoObject, synchronisation), 4);
+
+               if (mono_gc_is_moving ()) {
+                       /*if bit zero is set it's a thin hash*/
+                       /*FIXME use testb encoding*/
+                       x86_test_reg_imm (code, X86_ECX, 0x01);
+                       jump_sync_thin_hash = code;
+                       x86_branch8 (code, X86_CC_NE, -1, 1);
+
+                       /*clear bits used by the gc*/
+                       x86_alu_reg_imm (code, X86_AND, X86_ECX, ~0x3);
+               }
+
                /* is synchronization null? */
                x86_test_reg_reg (code, X86_ECX, X86_ECX);
+
                /* if yes, jump to actual trampoline */
                jump_sync_null = code;
                x86_branch8 (code, X86_CC_Z, -1, 1);
@@ -736,6 +820,8 @@ mono_arch_create_monitor_enter_trampoline_full (MonoTrampInfo **info, gboolean a
 
                /* push obj */
                x86_patch (jump_obj_null, code);
+               if (jump_sync_thin_hash)
+                       x86_patch (jump_sync_thin_hash, code);
                x86_patch (jump_sync_null, code);
                x86_patch (jump_other_owner, code);
                x86_push_reg (code, X86_EAX);
@@ -771,11 +857,11 @@ mono_arch_create_monitor_enter_trampoline_full (MonoTrampInfo **info, gboolean a
 }
 
 gpointer
-mono_arch_create_monitor_exit_trampoline_full (MonoTrampInfo **info, gboolean aot)
+mono_arch_create_monitor_exit_trampoline (MonoTrampInfo **info, gboolean aot)
 {
        guint8 *tramp = mono_get_trampoline_code (MONO_TRAMPOLINE_MONITOR_EXIT);
        guint8 *code, *buf;
-       guint8 *jump_obj_null, *jump_have_waiters, *jump_sync_null, *jump_not_owned;
+       guint8 *jump_obj_null, *jump_have_waiters, *jump_sync_null, *jump_not_owned, *jump_sync_thin_hash = NULL;
        guint8 *jump_next;
        int tramp_size;
        int owner_offset, nest_offset, entry_count_offset;
@@ -792,7 +878,7 @@ mono_arch_create_monitor_exit_trampoline_full (MonoTrampInfo **info, gboolean ao
        nest_offset = MONO_THREADS_SYNC_MEMBER_OFFSET (nest_offset);
        entry_count_offset = MONO_THREADS_SYNC_MEMBER_OFFSET (entry_count_offset);
 
-       tramp_size = 64;
+       tramp_size = NACL_SIZE (96, 128);
 
        code = buf = mono_global_codeman_reserve (tramp_size);
 
@@ -806,6 +892,18 @@ mono_arch_create_monitor_exit_trampoline_full (MonoTrampInfo **info, gboolean ao
 
                /* load obj->synchronization to ECX */
                x86_mov_reg_membase (code, X86_ECX, X86_EAX, G_STRUCT_OFFSET (MonoObject, synchronisation), 4);
+
+               if (mono_gc_is_moving ()) {
+                       /*if bit zero is set it's a thin hash*/
+                       /*FIXME use testb encoding*/
+                       x86_test_reg_imm (code, X86_ECX, 0x01);
+                       jump_sync_thin_hash = code;
+                       x86_branch8 (code, X86_CC_NE, -1, 1);
+
+                       /*clear bits used by the gc*/
+                       x86_alu_reg_imm (code, X86_AND, X86_ECX, ~0x3);
+               }
+
                /* is synchronization null? */
                x86_test_reg_reg (code, X86_ECX, X86_ECX);
                /* if yes, jump to actual trampoline */
@@ -846,6 +944,8 @@ mono_arch_create_monitor_exit_trampoline_full (MonoTrampInfo **info, gboolean ao
 
                /* push obj and jump to the actual trampoline */
                x86_patch (jump_obj_null, code);
+               if (jump_sync_thin_hash)
+                       x86_patch (jump_sync_thin_hash, code);
                x86_patch (jump_have_waiters, code);
                x86_patch (jump_not_owned, code);
                x86_patch (jump_sync_null, code);
@@ -868,20 +968,23 @@ mono_arch_create_monitor_exit_trampoline_full (MonoTrampInfo **info, gboolean ao
 
        return buf;
 }
+
 #else
+
 gpointer
-mono_arch_create_monitor_enter_trampoline (void)
+mono_arch_create_monitor_enter_trampoline (MonoTrampInfo **info, gboolean aot)
 {
        g_assert_not_reached ();
        return NULL;
 }
 
 gpointer
-mono_arch_create_monitor_exit_trampoline (void)
+mono_arch_create_monitor_exit_trampoline (MonoTrampInfo **info, gboolean aot)
 {
        g_assert_not_reached ();
        return NULL;
 }
+
 #endif
 
 void
@@ -929,6 +1032,9 @@ mono_arch_create_handler_block_trampoline (void)
        mono_arch_flush_icache (buf, code - buf);
        g_assert (code - buf <= tramp_size);
 
+       if (mono_jit_map_is_enabled ())
+               mono_emit_jit_tramp (buf, code - buf, "handler_block_trampoline");
+
        return buf;
 }
 
@@ -948,5 +1054,5 @@ mono_arch_get_call_target (guint8 *code)
 guint32
 mono_arch_get_plt_info_offset (guint8 *plt_entry, mgreg_t *regs, guint8 *code)
 {
-       return *(guint32*)(plt_entry + 6);
+       return *(guint32*)(plt_entry + NACL_SIZE (6, 12));
 }