Maintain max_len when emitting calls on ARM hard float.
[mono.git] / mono / mini / unwind.c
index c7f26a0235a6500f71086f31d96e002e64e016a6..350b08f64f60990a64381da7717221ccc73893ff 100644 (file)
@@ -31,6 +31,8 @@ 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;
@@ -249,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:
  *
@@ -660,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);
@@ -697,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);
@@ -759,49 +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);
-
-               if (!action_offset)
-                       continue;
-
-               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;
                }
        }
 }