2006-03-25 Thomas Koenig <Thomas.Koenig@online.de>
[official-gcc.git] / gcc / config / s390 / linux-unwind.h
blobd1e9b735edbc14334aad5ced5357015ec2f7f5df
1 /* DWARF2 EH unwinding support for S/390 Linux.
2 Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
9 version.
11 In addition to the permissions in the GNU General Public License, the
12 Free Software Foundation gives you unlimited permission to link the
13 compiled version of this file with other programs, and to distribute
14 those programs without any restriction coming from the use of this
15 file. (The General Public License restrictions do apply in other
16 respects; for example, they cover modification of the file, and
17 distribution when not linked into another program.)
19 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
20 WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 for more details.
24 You should have received a copy of the GNU General Public License
25 along with GCC; see the file COPYING. If not, write to the Free
26 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
27 02110-1301, USA. */
29 /* Do code reading to identify a signal frame, and set the frame
30 state data appropriately. See unwind-dw2.c for the structs. */
32 #define MD_FALLBACK_FRAME_STATE_FOR s390_fallback_frame_state
34 static _Unwind_Reason_Code
35 s390_fallback_frame_state (struct _Unwind_Context *context,
36 _Unwind_FrameState *fs)
38 unsigned char *pc = context->ra;
39 long new_cfa;
40 int i;
42 typedef struct
44 unsigned long psw_mask;
45 unsigned long psw_addr;
46 unsigned long gprs[16];
47 unsigned int acrs[16];
48 unsigned int fpc;
49 unsigned int __pad;
50 double fprs[16];
51 } __attribute__ ((__aligned__ (8))) sigregs_;
53 sigregs_ *regs;
54 int *signo = NULL;
56 /* svc $__NR_sigreturn or svc $__NR_rt_sigreturn */
57 if (pc[0] != 0x0a || (pc[1] != 119 && pc[1] != 173))
58 return _URC_END_OF_STACK;
60 /* New-style RT frame:
61 retcode + alignment (8 bytes)
62 siginfo (128 bytes)
63 ucontext (contains sigregs) */
64 if (context->ra == context->cfa)
66 struct ucontext_
68 unsigned long uc_flags;
69 struct ucontext_ *uc_link;
70 unsigned long uc_stack[3];
71 sigregs_ uc_mcontext;
72 } *uc = context->cfa + 8 + 128;
74 regs = &uc->uc_mcontext;
75 signo = context->cfa + sizeof(long);
78 /* Old-style RT frame and all non-RT frames:
79 old signal mask (8 bytes)
80 pointer to sigregs */
81 else
83 regs = *(sigregs_ **)(context->cfa + 8);
85 /* Recent kernels store the signal number immediately after
86 the sigregs; old kernels have the return trampoline at
87 this location. */
88 if ((void *)(regs + 1) != context->ra)
89 signo = (int *)(regs + 1);
92 new_cfa = regs->gprs[15] + 16*sizeof(long) + 32;
93 fs->cfa_how = CFA_REG_OFFSET;
94 fs->cfa_reg = 15;
95 fs->cfa_offset =
96 new_cfa - (long) context->cfa + 16*sizeof(long) + 32;
98 for (i = 0; i < 16; i++)
100 fs->regs.reg[i].how = REG_SAVED_OFFSET;
101 fs->regs.reg[i].loc.offset =
102 (long)&regs->gprs[i] - new_cfa;
104 for (i = 0; i < 16; i++)
106 fs->regs.reg[16+i].how = REG_SAVED_OFFSET;
107 fs->regs.reg[16+i].loc.offset =
108 (long)&regs->fprs[i] - new_cfa;
111 /* Load return addr from PSW into dummy register 32. */
113 fs->regs.reg[32].how = REG_SAVED_OFFSET;
114 fs->regs.reg[32].loc.offset = (long)&regs->psw_addr - new_cfa;
115 fs->retaddr_column = 32;
116 /* SIGILL, SIGFPE and SIGTRAP are delivered with psw_addr
117 after the faulting instruction rather than before it.
118 Don't set FS->signal_frame in that case. */
119 if (!signo || (*signo != 4 && *signo != 5 && *signo != 8))
120 fs->signal_frame = 1;
122 return _URC_NO_REASON;