* config/tc-mips.c : support frame and regmask/fregmask when
[deliverable/binutils-gdb.git] / gas / ehopt.c
index d339a3054121093dfaa39494637b3fd210a64c73..cb900e0db2cee4960a5942bc04f3926013294551 100644 (file)
@@ -95,7 +95,10 @@ eh_frame_code_alignment ()
   segT current_seg;
   subsegT current_subseg;
   fragS *f;
+  fixS *fix;
   int offset;
+  char augmentation[10];
+  int iaug;
 
   if (code_alignment != 0)
     return code_alignment;
@@ -106,6 +109,7 @@ eh_frame_code_alignment ()
   current_subseg = now_subseg;
   subseg_new (".eh_frame", 0);
   f = seg_info (now_seg)->frchainP->frch_root;
+  fix = seg_info (now_seg)->frchainP->fix_root;
   subseg_set (current_seg, current_subseg);
 
   /* Look through the frags of the section to find the code alignment.  */
@@ -147,6 +151,7 @@ eh_frame_code_alignment ()
 
   /* Skip the augmentation (a null terminated string).  */
 
+  iaug = 0;
   ++offset;
   while (1)
     {
@@ -161,7 +166,14 @@ eh_frame_code_alignment ()
          return -1;
        }
       while (offset < f->fr_fix && f->fr_literal[offset] != '\0')
-       ++offset;
+       {
+         if (iaug < (sizeof augmentation) - 1)
+           {
+             augmentation[iaug] = f->fr_literal[offset];
+             ++iaug;
+           }
+         ++offset;
+       }
       if (offset < f->fr_fix)
        break;
     }
@@ -177,6 +189,39 @@ eh_frame_code_alignment ()
       return -1;
     }
 
+  augmentation[iaug] = '\0';
+  if (augmentation[0] == '\0')
+    {
+      /* No augmentation.  */
+    }
+  else if (strcmp (augmentation, "eh") == 0)
+    {
+      /* We have to skip a pointer.  Unfortunately, we don't know how
+        large it is.  We find out by looking for a matching fixup.  */
+      while (fix != NULL
+            && (fix->fx_frag != f || fix->fx_where != offset))
+       fix = fix->fx_next;
+      if (fix == NULL)
+       offset += 4;
+      else
+       offset += fix->fx_size;
+      while (f != NULL && offset >= f->fr_fix)
+       {
+         offset -= f->fr_fix;
+         f = f->fr_next;
+       }
+      if (f == NULL)
+       {
+         code_alignment = -1;
+         return -1;
+       }
+    }
+  else
+    {
+      code_alignment = -1;
+      return -1;
+    }
+
   /* We're now at the code alignment factor, which is a ULEB128.  If
      it isn't a single byte, forget it.  */
 
@@ -248,7 +293,7 @@ check_eh_frame (exp, pnbytes)
          /* Don't optimize.  */
        }
       else if (exp->X_add_number % ca == 0
-         && exp->X_add_number / ca < 0x40)
+              && exp->X_add_number / ca < 0x40)
        {
          loc4_frag->fr_literal[loc4_fix]
            = DW_CFA_advance_loc | (exp->X_add_number / ca);
@@ -280,6 +325,8 @@ check_eh_frame (exp, pnbytes)
 
       frag_var (rs_cfa, 4, 0, 0, make_expr_symbol (exp),
                loc4_fix, (char *) loc4_frag);
+
+      return 1;
     }
   else
     saw_advance_loc4 = 0;
@@ -375,4 +422,5 @@ eh_frame_convert_frag (frag)
 
   frag->fr_fix += frag->fr_subtype;
   frag->fr_type = rs_fill;
+  frag->fr_offset = 0;
 }
This page took 0.024738 seconds and 4 git commands to generate.