Maintain max_len when emitting calls on ARM hard float.
[mono.git] / mono / mini / unwind.c
index dba0ed7155597773d801c2147d3424234117566e..350b08f64f60990a64381da7717221ccc73893ff 100644 (file)
@@ -12,6 +12,7 @@
 
 #include <mono/utils/mono-counters.h>
 #include <mono/utils/freebsd-dwarf.h>
+#include <mono/utils/hazard-pointer.h>
 #include <mono/metadata/threads-types.h>
 #include <mono/metadata/mono-endian.h>
 
@@ -30,10 +31,13 @@ typedef struct {
        guint8 info [MONO_ZERO_LEN_ARRAY];
 } MonoUnwindInfo;
 
+#define ALIGN_TO(val,align) ((((guint64)val) + ((align) - 1)) & ~((align) - 1))
+
 static CRITICAL_SECTION unwind_mutex;
 
 static MonoUnwindInfo **cached_info;
 static int cached_info_next, cached_info_size;
+static GSList *cached_info_list;
 /* Statistics */
 static int unwind_info_size;
 
@@ -47,12 +51,22 @@ static int map_hw_reg_to_dwarf_reg [] = { 0, 2, 1, 3, 7, 6, 4, 5, 8, 9, 10, 11,
 #define DWARF_PC_REG (mono_hw_reg_to_dwarf_reg (AMD64_RIP))
 #elif defined(TARGET_ARM)
 // http://infocenter.arm.com/help/topic/com.arm.doc.ihi0040a/IHI0040A_aadwarf.pdf
-static int map_hw_reg_to_dwarf_reg [] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
-#define NUM_REGS 16
+/* Assign d8..d15 to hregs 16..24 */
+static int map_hw_reg_to_dwarf_reg [] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 264, 265, 266, 267, 268, 269, 270, 271 };
+#define NUM_REGS 272
 #define DWARF_DATA_ALIGN (-4)
 #define DWARF_PC_REG (mono_hw_reg_to_dwarf_reg (ARMREG_LR))
 #elif defined (TARGET_X86)
+#ifdef __APPLE__
+/*
+ * LLVM seems to generate unwind info where esp is encoded as 5, and ebp as 4, ie see this line:
+ *   def ESP : RegisterWithSubRegs<"esp", [SP]>, DwarfRegNum<[-2, 5, 4]>;
+ * in lib/Target/X86/X86RegisterInfo.td in the llvm sources.
+ */
+static int map_hw_reg_to_dwarf_reg [] = { 0, 1, 2, 3, 5, 4, 6, 7, 8 };
+#else
 static int map_hw_reg_to_dwarf_reg [] = { 0, 1, 2, 3, 4, 5, 6, 7, 8 };
+#endif
 /* + 1 is for IP */
 #define NUM_REGS X86_NREG + 1
 #define DWARF_DATA_ALIGN (-4)
@@ -71,6 +85,17 @@ static int map_hw_reg_to_dwarf_reg [] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
 #define NUM_REGS 16
 #define DWARF_DATA_ALIGN (-8)
 #define DWARF_PC_REG (mono_hw_reg_to_dwarf_reg (14))
+#elif defined (TARGET_MIPS)
+/* FIXME: */
+static int map_hw_reg_to_dwarf_reg [32] = {
+       0, 1, 2, 3, 4, 5, 6, 7,
+       8, 9, 10, 11, 12, 13, 14, 15,
+       16, 17, 18, 19, 20, 21, 22, 23,
+       24, 25, 26, 27, 28, 29, 30, 31
+};
+#define NUM_REGS 32
+#define DWARF_DATA_ALIGN (-(gint32)sizeof (mgreg_t))
+#define DWARF_PC_REG (mono_hw_reg_to_dwarf_reg (mips_ra))
 #else
 static int map_hw_reg_to_dwarf_reg [16];
 #define NUM_REGS 16
@@ -226,6 +251,68 @@ decode_sleb128 (guint8 *buf, guint8 **endbuf)
        return res;
 }
 
+void
+mono_print_unwind_info (guint8 *unwind_info, int unwind_info_len)
+{
+       guint8 *p;
+       int pos, reg, offset, cfa_reg, cfa_offset;
+
+       p = unwind_info;
+       pos = 0;
+       while (p < unwind_info + unwind_info_len) {
+               int op = *p & 0xc0;
+
+               switch (op) {
+               case DW_CFA_advance_loc:
+                       pos += *p & 0x3f;
+                       p ++;
+                       break;
+               case DW_CFA_offset:
+                       reg = *p & 0x3f;
+                       p ++;
+                       offset = decode_uleb128 (p, &p) * DWARF_DATA_ALIGN;
+                       if (reg == DWARF_PC_REG)
+                               printf ("CFA: [%x] offset: %s at cfa-0x%x\n", pos, "pc", -offset);
+                       else
+                               printf ("CFA: [%x] offset: %s at cfa-0x%x\n", pos, mono_arch_regname (mono_dwarf_reg_to_hw_reg (reg)), -offset);
+                       break;
+               case 0: {
+                       int ext_op = *p;
+                       p ++;
+                       switch (ext_op) {
+                       case DW_CFA_def_cfa:
+                               cfa_reg = decode_uleb128 (p, &p);
+                               cfa_offset = decode_uleb128 (p, &p);
+                               printf ("CFA: [%x] def_cfa: %s+0x%x\n", pos, mono_arch_regname (mono_dwarf_reg_to_hw_reg (cfa_reg)), cfa_offset);
+                               break;
+                       case DW_CFA_def_cfa_offset:
+                               cfa_offset = decode_uleb128 (p, &p);
+                               printf ("CFA: [%x] def_cfa_offset: 0x%x\n", pos, cfa_offset);
+                               break;
+                       case DW_CFA_def_cfa_register:
+                               cfa_reg = decode_uleb128 (p, &p);
+                               printf ("CFA: [%x] def_cfa_reg: %s\n", pos, mono_arch_regname (mono_dwarf_reg_to_hw_reg (cfa_reg)));
+                               break;
+                       case DW_CFA_offset_extended_sf:
+                               reg = decode_uleb128 (p, &p);
+                               offset = decode_sleb128 (p, &p) * DWARF_DATA_ALIGN;
+                               printf ("CFA: [%x] offset_extended_sf: %s at cfa-0x%x\n", pos, mono_arch_regname (mono_dwarf_reg_to_hw_reg (reg)), -offset);
+                               break;
+                       case DW_CFA_advance_loc4:
+                               pos += read32 (p);
+                               p += 4;
+                               break;
+                       default:
+                               g_assert_not_reached ();
+                       }
+                       break;
+               }
+               default:
+                       g_assert_not_reached ();
+               }
+       }
+}
+
 /*
  * mono_unwind_ops_encode:
  *
@@ -308,14 +395,14 @@ mono_unwind_ops_encode (GSList *unwind_ops, guint32 *out_len)
 #endif
 
 static G_GNUC_UNUSED void
-print_dwarf_state (int cfa_reg, int cfa_offset, int ip, int nregs, Loc *locations)
+print_dwarf_state (int cfa_reg, int cfa_offset, int ip, int nregs, Loc *locations, guint8 *reg_saved)
 {
        int i;
 
        printf ("\t%x: cfa=r%d+%d ", ip, cfa_reg, cfa_offset);
 
        for (i = 0; i < nregs; ++i)
-               if (locations [i].loc_type == LOC_OFFSET)
+               if (reg_saved [i] && locations [i].loc_type == LOC_OFFSET)
                        printf ("r%d@%d(cfa) ", i, locations [i].offset);
        printf ("\n");
 }
@@ -336,12 +423,12 @@ mono_unwind_frame (guint8 *unwind_info, guint32 unwind_info_len,
                                   guint8 **out_cfa)
 {
        Loc locations [NUM_REGS];
-       int i, pos, reg, cfa_reg, cfa_offset;
+       guint8 reg_saved [NUM_REGS];
+       int i, pos, reg, cfa_reg, cfa_offset, offset;
        guint8 *p;
        guint8 *cfa_val;
 
-       for (i = 0; i < NUM_REGS; ++i)
-               locations [i].loc_type = LOC_SAME;
+       memset (reg_saved, 0, sizeof (reg_saved));
 
        p = unwind_info;
        pos = 0;
@@ -359,6 +446,7 @@ mono_unwind_frame (guint8 *unwind_info, guint32 unwind_info_len,
                case DW_CFA_offset:
                        reg = *p & 0x3f;
                        p ++;
+                       reg_saved [reg] = TRUE;
                        locations [reg].loc_type = LOC_OFFSET;
                        locations [reg].offset = decode_uleb128 (p, &p) * DWARF_DATA_ALIGN;
                        break;
@@ -378,8 +466,19 @@ mono_unwind_frame (guint8 *unwind_info, guint32 unwind_info_len,
                                break;
                        case DW_CFA_offset_extended_sf:
                                reg = decode_uleb128 (p, &p);
+                               offset = decode_sleb128 (p, &p);
+                               g_assert (reg < NUM_REGS);
+                               reg_saved [reg] = TRUE;
                                locations [reg].loc_type = LOC_OFFSET;
-                               locations [reg].offset = decode_sleb128 (p, &p) * DWARF_DATA_ALIGN;
+                               locations [reg].offset = offset * DWARF_DATA_ALIGN;
+                               break;
+                       case DW_CFA_offset_extended:
+                               reg = decode_uleb128 (p, &p);
+                               offset = decode_uleb128 (p, &p);
+                               g_assert (reg < NUM_REGS);
+                               reg_saved [reg] = TRUE;
+                               locations [reg].loc_type = LOC_OFFSET;
+                               locations [reg].offset = offset * DWARF_DATA_ALIGN;
                                break;
                        case DW_CFA_advance_loc4:
                                pos += read32 (p);
@@ -400,7 +499,7 @@ mono_unwind_frame (guint8 *unwind_info, guint32 unwind_info_len,
 
        cfa_val = (guint8*)regs [mono_dwarf_reg_to_hw_reg (cfa_reg)] + cfa_offset;
        for (i = 0; i < NUM_REGS; ++i) {
-               if (locations [i].loc_type == LOC_OFFSET) {
+               if (reg_saved [i] && locations [i].loc_type == LOC_OFFSET) {
                        int hreg = mono_dwarf_reg_to_hw_reg (i);
                        g_assert (hreg < nregs);
                        regs [hreg] = *(mgreg_t*)(cfa_val + locations [i].offset);
@@ -481,8 +580,8 @@ mono_cache_unwind_info (guint8 *unwind_info, guint32 unwind_info_len)
                MonoUnwindInfo **old_table, **new_table;
 
                /*
-                * Have to resize the table, while synchronizing with 
-                * mono_get_cached_unwind_info () using hazard pointers.
+                * Avoid freeing the old table so mono_get_cached_unwind_info ()
+                * doesn't need locks/hazard pointers.
                 */
 
                old_table = cached_info;
@@ -494,9 +593,7 @@ mono_cache_unwind_info (guint8 *unwind_info, guint32 unwind_info_len)
 
                cached_info = new_table;
 
-               mono_memory_barrier ();
-
-               mono_thread_hazardous_free_or_queue (old_table, g_free);
+               cached_info_list = g_slist_prepend (cached_info_list, cached_info);
 
                cached_info_size *= 2;
        }
@@ -509,32 +606,6 @@ mono_cache_unwind_info (guint8 *unwind_info, guint32 unwind_info_len)
        return i;
 }
 
-static gpointer
-get_hazardous_pointer (gpointer volatile *pp, MonoThreadHazardPointers *hp, int hazard_index)
-{
-       gpointer p;
-
-       for (;;) {
-               /* Get the pointer */
-               p = *pp;
-               /* If we don't have hazard pointers just return the
-                  pointer. */
-               if (!hp)
-                       return p;
-               /* Make it hazardous */
-               mono_hazard_pointer_set (hp, hazard_index, p);
-               /* Check that it's still the same.  If not, try
-                  again. */
-               if (*pp != p) {
-                       mono_hazard_pointer_clear (hp, hazard_index);
-                       continue;
-               }
-               break;
-       }
-
-       return p;
-}
-
 /*
  * This function is signal safe.
  */
@@ -544,17 +615,18 @@ mono_get_cached_unwind_info (guint32 index, guint32 *unwind_info_len)
        MonoUnwindInfo **table;
        MonoUnwindInfo *info;
        guint8 *data;
-       MonoThreadHazardPointers *hp = mono_hazard_pointer_get ();
 
-       table = get_hazardous_pointer ((gpointer volatile*)&cached_info, hp, 0);
+       /*
+        * This doesn't need any locks/hazard pointers,
+        * since new tables are copies of the old ones.
+        */
+       table = cached_info;
 
        info = table [index];
 
        *unwind_info_len = info->len;
        data = info->info;
 
-       mono_hazard_pointer_clear (hp, 0);
-
        return data;
 }
 
@@ -611,6 +683,10 @@ decode_cie_op (guint8 *p, guint8 **endp)
                case DW_CFA_advance_loc4:
                        p += 4;
                        break;
+               case DW_CFA_offset_extended_sf:
+                       decode_uleb128 (p, &p);
+                       decode_uleb128 (p, &p);
+                       break;
                default:
                        g_assert_not_reached ();
                }
@@ -623,24 +699,6 @@ decode_cie_op (guint8 *p, guint8 **endp)
        *endp = p;
 }
 
-/* Pointer Encoding in the .eh_frame */
-enum {
-       DW_EH_PE_absptr = 0x00,
-       DW_EH_PE_omit = 0xff,
-
-       DW_EH_PE_udata4 = 0x03,
-       DW_EH_PE_sdata4 = 0x0b,
-       DW_EH_PE_sdata8 = 0x0c,
-
-       DW_EH_PE_pcrel = 0x10,
-       DW_EH_PE_textrel = 0x20,
-       DW_EH_PE_datarel = 0x30,
-       DW_EH_PE_funcrel = 0x40,
-       DW_EH_PE_aligned = 0x50,
-
-       DW_EH_PE_indirect = 0x80
-};
-
 static gint64
 read_encoded_val (guint32 encoding, guint8 *p, guint8 **endp)
 {
@@ -666,33 +724,27 @@ read_encoded_val (guint32 encoding, guint8 *p, guint8 **endp)
 /*
  * decode_lsda:
  *
- *   Decode the Language Specific Data Area generated by LLVM.
+ *   Decode the Mono specific Language Specific Data Area generated by LLVM.
  */
 static void
 decode_lsda (guint8 *lsda, guint8 *code, MonoJitExceptionInfo **ex_info, guint32 *ex_info_len, gpointer **type_info, int *this_reg, int *this_offset)
 {
-       gint32 ttype_offset, call_site_length;
-       gint32 ttype_encoding, call_site_encoding;
-       guint8 *ttype, *action_table, *call_site, *p;
-       int i, ncall_sites;
+       guint8 *p;
+       int i, ncall_sites, this_encoding;
+       guint32 mono_magic, version;
 
-       /*
-        * LLVM generates a c++ style LSDA, which can be decoded by looking at
-        * eh_personality.cc in gcc.
-        */
        p = lsda;
 
-       if (*p == DW_EH_PE_udata4) {
-               /* This is the modified LSDA generated by the LLVM mono branch */
-               guint32 mono_magic, version;
+       /* This is the modified LSDA generated by the LLVM mono branch */
+       mono_magic = decode_uleb128 (p, &p);
+       g_assert (mono_magic == 0x4d4fef4f);
+       version = decode_uleb128 (p, &p);
+       g_assert (version == 1);
+       this_encoding = *p;
+       p ++;
+       if (this_encoding == DW_EH_PE_udata4) {
                gint32 op, reg, offset;
 
-               p ++;
-               mono_magic = decode_uleb128 (p, &p);
-               g_assert (mono_magic == 0x4d4fef4f);
-               version = decode_uleb128 (p, &p);
-               g_assert (version == 1);
-
                /* 'this' location */
                op = *p;
                g_assert (op == DW_OP_bregx);
@@ -703,61 +755,24 @@ decode_lsda (guint8 *lsda, guint8 *code, MonoJitExceptionInfo **ex_info, guint32
                *this_reg = mono_dwarf_reg_to_hw_reg (reg);
                *this_offset = offset;
        } else {
-               /* Read @LPStart */
-               g_assert (*p == DW_EH_PE_omit);
-               p ++;
+               g_assert (this_encoding == DW_EH_PE_omit);
 
                *this_reg = -1;
                *this_offset = -1;
        }
-
-       /* Read @TType */
-       ttype_encoding = *p;
-       p ++;
-       ttype_offset = decode_uleb128 (p, &p);
-       ttype = p + ttype_offset;
-
-       /* Read call-site table */
-       call_site_encoding = *p;
-       g_assert (call_site_encoding == DW_EH_PE_udata4);
-       p ++;
-       call_site_length = decode_uleb128 (p, &p);
-       call_site = p;
-       p += call_site_length;
-       action_table = p;
-
-       /* Calculate the size of our table */
-       ncall_sites = 0;
-       p = call_site;
-       while (p < action_table) {
-               int block_start_offset, block_size, landing_pad, action_offset;
-
-               block_start_offset = read32 (p);
-               p += sizeof (gint32);
-               block_size = read32 (p);
-               p += sizeof (gint32);
-               landing_pad = read32 (p);
-               p += sizeof (gint32);
-               action_offset = decode_uleb128 (p, &p);
-
-               /* landing_pad == 0 means the region has no landing pad */
-               if (landing_pad)
-                       ncall_sites ++;
-       }
+       ncall_sites = decode_uleb128 (p, &p);
+       p = (guint8*)ALIGN_TO ((mgreg_t)p, 4);
 
        if (ex_info) {
                *ex_info = g_malloc0 (ncall_sites * sizeof (MonoJitExceptionInfo));
                *ex_info_len = ncall_sites;
        }
-
        if (type_info)
                *type_info = g_malloc0 (ncall_sites * sizeof (gpointer));
 
-       p = call_site;
-       i = 0;
-       while (p < action_table) {
-               int block_start_offset, block_size, landing_pad, action_offset, type_offset;
-               guint8 *action, *tinfo;
+       for (i = 0; i < ncall_sites; ++i) {
+               int block_start_offset, block_size, landing_pad;
+               guint8 *tinfo;
 
                block_start_offset = read32 (p);
                p += sizeof (gint32);
@@ -765,46 +780,19 @@ decode_lsda (guint8 *lsda, guint8 *code, MonoJitExceptionInfo **ex_info, guint32
                p += sizeof (gint32);
                landing_pad = read32 (p);
                p += sizeof (gint32);
-               action_offset = decode_uleb128 (p, &p);
-
-               action = action_table + action_offset - 1;
-
-               type_offset = decode_sleb128 (action, &action);
-
-               if (landing_pad) {
-                       //printf ("BLOCK: %p-%p %p, %d\n", code + block_start_offset, code + block_start_offset + block_size, code + landing_pad, action_offset);
-
-                       g_assert (ttype_offset);
-
-                       if (ttype_encoding == DW_EH_PE_absptr) {
-                               guint8 *ttype_entry = (ttype - (type_offset * sizeof (gpointer)));
-                               tinfo = *(gpointer*)ttype_entry;
-                       } else if (ttype_encoding == (DW_EH_PE_indirect | DW_EH_PE_pcrel | DW_EH_PE_sdata4)) {
-                               guint8 *ttype_entry = (ttype - (type_offset * 4));
-                               gint32 offset = *(gint32*)ttype_entry;
-                               guint8 *stub = ttype_entry + offset;
-                               tinfo = *(gpointer*)stub;
-                       } else if (ttype_encoding == (DW_EH_PE_pcrel | DW_EH_PE_sdata4)) {
-                               guint8 *ttype_entry = (ttype - (type_offset * 4));
-                               gint32 offset = *(gint32*)ttype_entry;
-                               tinfo = ttype_entry + offset;
-                       } else if (ttype_encoding == DW_EH_PE_udata4) {
-                               /* Embedded directly */
-                               guint8 *ttype_entry = (ttype - (type_offset * 4));
-                               tinfo = ttype_entry;
-                       } else {
-                               g_assert_not_reached ();
-                       }
+               tinfo = p;
+               p += sizeof (gint32);
 
-                       if (ex_info) {
-                               if (*type_info)
-                                       (*type_info) [i] = tinfo;
-                               (*ex_info)[i].try_start = code + block_start_offset;
-                               (*ex_info)[i].try_end = code + block_start_offset + block_size;
-                               (*ex_info)[i].handler_start = code + landing_pad;
+               g_assert (landing_pad);
+               g_assert (((guint64)tinfo % 4) == 0);
+               //printf ("X: %p %d\n", landing_pad, *(int*)tinfo);
 
-                       }
-                       i ++;
+               if (ex_info) {
+                       if (*type_info)
+                               (*type_info) [i] = tinfo;
+                       (*ex_info)[i].try_start = code + block_start_offset;
+                       (*ex_info)[i].try_end = code + block_start_offset + block_size;
+                       (*ex_info)[i].handler_start = code + landing_pad;
                }
        }
 }