linux-unwind.h (s390_fallback_frame_state): Detect signal frames correctly even when...
authorUlrich Weigand <uweigand@de.ibm.com>
Fri, 14 Jul 2006 16:43:27 +0000 (16:43 +0000)
committerUlrich Weigand <uweigand@gcc.gnu.org>
Fri, 14 Jul 2006 16:43:27 +0000 (16:43 +0000)
* config/s390/linux-unwind.h (s390_fallback_frame_state): Detect
signal frames correctly even when the signal was installed with
sa_restorer set.

From-SVN: r115448

gcc/ChangeLog
gcc/config/s390/linux-unwind.h

index 5a604c0e258725a59113dc731f53d4237ccb6b7c..4cdb0acd12b381284068e05fe3a6012539444cee 100644 (file)
@@ -1,3 +1,9 @@
+2006-07-14  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * config/s390/linux-unwind.h (s390_fallback_frame_state): Detect
+       signal frames correctly even when the signal was installed with
+       sa_restorer set.
+
 2006-07-14  Carlos O'Donell  <carlos@codesoucery.com>
 
 
index d1e9b735edbc14334aad5ced5357015ec2f7f5df..221a5d4bc0a2bca579542eec7978f81c0d2997f6 100644 (file)
@@ -51,17 +51,33 @@ s390_fallback_frame_state (struct _Unwind_Context *context,
   } __attribute__ ((__aligned__ (8))) sigregs_;
 
   sigregs_ *regs;
-  int *signo = NULL;
+  int *signo;
 
   /* svc $__NR_sigreturn or svc $__NR_rt_sigreturn  */
   if (pc[0] != 0x0a || (pc[1] != 119 && pc[1] != 173))
     return _URC_END_OF_STACK;
 
+  /* Legacy frames:
+       old signal mask (8 bytes)
+       pointer to sigregs (8 bytes) - points always to next location
+       sigregs
+       retcode
+     This frame layout was used on kernels < 2.6.9 for non-RT frames,
+     and on kernels < 2.4.13 for RT frames as well.  Note that we need
+     to look at RA to detect this layout -- this means that if you use
+     sa_restorer to install a different signal restorer on a legacy
+     kernel, unwinding from signal frames will not work.  */
+  if (context->ra == context->cfa + 16 + sizeof (sigregs_))
+    {
+      regs = (sigregs_ *)(context->cfa + 16);
+      signo = NULL;
+    }
+
   /* New-style RT frame:
      retcode + alignment (8 bytes)
      siginfo (128 bytes)
      ucontext (contains sigregs)  */
-  if (context->ra == context->cfa)
+  else if (pc[1] == 173 /* __NR_rt_sigreturn */)
     {
       struct ucontext_
       {
@@ -75,18 +91,13 @@ s390_fallback_frame_state (struct _Unwind_Context *context,
       signo = context->cfa + sizeof(long);
     }
 
-  /* Old-style RT frame and all non-RT frames:
+  /* New-style non-RT frame:
      old signal mask (8 bytes)
-     pointer to sigregs  */
+     pointer to sigregs (followed by signal number)  */
   else
     {
       regs = *(sigregs_ **)(context->cfa + 8);
-
-      /* Recent kernels store the signal number immediately after
-        the sigregs; old kernels have the return trampoline at
-        this location.  */
-      if ((void *)(regs + 1) != context->ra)
-       signo = (int *)(regs + 1);
+      signo = (int *)(regs + 1);
     }
 
   new_cfa = regs->gprs[15] + 16*sizeof(long) + 32;