2005-11-18 04:22:18 +01:00
|
|
|
/* DWARF2 EH unwinding support for PA HP-UX.
|
2017-01-01 13:07:43 +01:00
|
|
|
Copyright (C) 2005-2017 Free Software Foundation, Inc.
|
2005-11-18 04:22:18 +01:00
|
|
|
|
|
|
|
This file is part of GCC.
|
|
|
|
|
|
|
|
GCC is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2009-04-09 17:00:19 +02:00
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
2005-11-18 04:22:18 +01:00
|
|
|
any later version.
|
|
|
|
|
|
|
|
GCC is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
2009-04-09 17:00:19 +02:00
|
|
|
Under Section 7 of GPL version 3, you are granted additional
|
|
|
|
permissions described in the GCC Runtime Library Exception, version
|
|
|
|
3.1, as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License and
|
|
|
|
a copy of the GCC Runtime Library Exception along with this program;
|
|
|
|
see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2005-11-18 04:22:18 +01:00
|
|
|
|
|
|
|
/* Do code reading to identify a signal frame, and set the frame
|
|
|
|
state data appropriately. See unwind-dw2.c for the structs. */
|
|
|
|
|
2007-09-12 01:16:01 +02:00
|
|
|
/* Don't use this if inhibit_libc is set.
|
|
|
|
The build for this target will fail trying to include missing headers. */
|
|
|
|
#ifndef inhibit_libc
|
2005-11-18 04:22:18 +01:00
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/ucontext.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
/* FIXME: We currently ignore the high halves of general, space and
|
|
|
|
control registers on PA 2.0 machines for applications using the
|
|
|
|
32-bit runtime. We don't restore space registers or the floating
|
|
|
|
point status registers. */
|
|
|
|
|
|
|
|
#define MD_FALLBACK_FRAME_STATE_FOR pa_fallback_frame_state
|
|
|
|
|
|
|
|
/* HP-UX 10.X doesn't define GetSSReg. */
|
|
|
|
#ifndef GetSSReg
|
|
|
|
#define GetSSReg(ssp, ss_reg) \
|
|
|
|
((UseWideRegs (ssp)) \
|
|
|
|
? (ssp)->ss_wide.ss_32.ss_reg ## _lo \
|
|
|
|
: (ssp)->ss_narrow.ss_reg)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if TARGET_64BIT
|
|
|
|
#define GetSSRegAddr(ssp, ss_reg) ((long) &((ssp)->ss_wide.ss_64.ss_reg))
|
|
|
|
#else
|
|
|
|
#define GetSSRegAddr(ssp, ss_reg) \
|
|
|
|
((UseWideRegs (ssp)) \
|
|
|
|
? (long) &((ssp)->ss_wide.ss_32.ss_reg ## _lo) \
|
|
|
|
: (long) &((ssp)->ss_narrow.ss_reg))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define UPDATE_FS_FOR_SAR(FS, N) \
|
|
|
|
(FS)->regs.reg[N].how = REG_SAVED_OFFSET; \
|
|
|
|
(FS)->regs.reg[N].loc.offset = GetSSRegAddr (mc, ss_cr11) - new_cfa
|
|
|
|
|
|
|
|
#define UPDATE_FS_FOR_GR(FS, GRN, N) \
|
|
|
|
(FS)->regs.reg[N].how = REG_SAVED_OFFSET; \
|
|
|
|
(FS)->regs.reg[N].loc.offset = GetSSRegAddr (mc, ss_gr##GRN) - new_cfa
|
|
|
|
|
|
|
|
#define UPDATE_FS_FOR_FR(FS, FRN, N) \
|
|
|
|
(FS)->regs.reg[N].how = REG_SAVED_OFFSET; \
|
|
|
|
(FS)->regs.reg[N].loc.offset = (long) &(mc->ss_fr##FRN) - new_cfa;
|
|
|
|
|
|
|
|
#define UPDATE_FS_FOR_PC(FS, N) \
|
|
|
|
(FS)->regs.reg[N].how = REG_SAVED_OFFSET; \
|
|
|
|
(FS)->regs.reg[N].loc.offset = GetSSRegAddr (mc, ss_pcoq_head) - new_cfa
|
|
|
|
|
|
|
|
/* Extract bit field from word using HP's numbering (MSB = 0). */
|
|
|
|
#define GET_FIELD(X, FROM, TO) \
|
|
|
|
((X) >> (31 - (TO)) & ((1 << ((TO) - (FROM) + 1)) - 1))
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
sign_extend (int x, int len)
|
|
|
|
{
|
|
|
|
int signbit = (1 << (len - 1));
|
|
|
|
int mask = (signbit << 1) - 1;
|
|
|
|
return ((x & mask) ^ signbit) - signbit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Extract a 17-bit signed constant from branch instructions. */
|
|
|
|
static inline int
|
|
|
|
extract_17 (unsigned word)
|
|
|
|
{
|
|
|
|
return sign_extend (GET_FIELD (word, 19, 28)
|
|
|
|
| GET_FIELD (word, 29, 29) << 10
|
|
|
|
| GET_FIELD (word, 11, 15) << 11
|
|
|
|
| (word & 0x1) << 16, 17);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Extract a 22-bit signed constant from branch instructions. */
|
|
|
|
static inline int
|
|
|
|
extract_22 (unsigned word)
|
|
|
|
{
|
|
|
|
return sign_extend (GET_FIELD (word, 19, 28)
|
|
|
|
| GET_FIELD (word, 29, 29) << 10
|
|
|
|
| GET_FIELD (word, 11, 15) << 11
|
|
|
|
| GET_FIELD (word, 6, 10) << 16
|
|
|
|
| (word & 0x1) << 21, 22);
|
|
|
|
}
|
|
|
|
|
|
|
|
static _Unwind_Reason_Code
|
|
|
|
pa_fallback_frame_state (struct _Unwind_Context *context,
|
|
|
|
_Unwind_FrameState *fs)
|
|
|
|
{
|
|
|
|
static long cpu;
|
|
|
|
unsigned int *pc = (unsigned int *) context->ra;
|
|
|
|
|
|
|
|
if (pc == 0)
|
|
|
|
return _URC_END_OF_STACK;
|
|
|
|
|
2006-05-09 02:36:11 +02:00
|
|
|
/* Check for relocation of the return value. */
|
|
|
|
if (!TARGET_64BIT
|
|
|
|
&& *(pc + 0) == 0x2fd01224 /* fstd,ma fr4,8(sp) */
|
|
|
|
&& *(pc + 1) == 0x0fd9109d /* ldw -4(sp),ret1 */
|
|
|
|
&& *(pc + 2) == 0x0fd130bc) /* ldw,mb -8(sp),ret0 */
|
|
|
|
pc += 3;
|
|
|
|
else if (!TARGET_64BIT
|
|
|
|
&& *(pc + 0) == 0x27d01224 /* fstw,ma fr4,8(sp) */
|
|
|
|
&& *(pc + 1) == 0x0fd130bc) /* ldw,mb -8(sp),ret0 */
|
|
|
|
pc += 2;
|
|
|
|
else if (!TARGET_64BIT
|
|
|
|
&& *(pc + 0) == 0x0fdc12b0 /* stw,ma ret0,8(sp) */
|
|
|
|
&& *(pc + 1) == 0x0fdd1299 /* stw ret1,-4(sp) */
|
|
|
|
&& *(pc + 2) == 0x2fd13024) /* fldd,mb -8(sp),fr4 */
|
|
|
|
pc += 3;
|
|
|
|
else if (!TARGET_64BIT
|
|
|
|
&& *(pc + 0) == 0x0fdc12b0 /* stw,ma ret0,8(sp) */
|
|
|
|
&& *(pc + 1) == 0x27d13024) /* fldw,mb -8(sp),fr4 */
|
|
|
|
pc += 2;
|
|
|
|
|
2005-11-18 04:22:18 +01:00
|
|
|
/* Check if the return address points to an export stub (PA 1.1 or 2.0). */
|
|
|
|
if ((!TARGET_64BIT
|
|
|
|
&& *(pc + 0) == 0x4bc23fd1 /* ldw -18(sp),rp */
|
|
|
|
&& *(pc + 1) == 0x004010a1 /* ldsid (rp),r1 */
|
|
|
|
&& *(pc + 2) == 0x00011820 /* mtsp r1,sr0 */
|
|
|
|
&& *(pc + 3) == 0xe0400002) /* be,n 0(sr0,rp) */
|
|
|
|
||
|
|
|
|
(!TARGET_64BIT
|
|
|
|
&& *(pc + 0) == 0x4bc23fd1 /* ldw -18(sp),rp */
|
|
|
|
&& *(pc + 1) == 0xe840d002)) /* bve,n (rp) */
|
|
|
|
{
|
unwind-dw2.h: Move cfa-related variables into struct frame_state_reg_info to ensure that the...
* gcc/unwind-dw2.h: Move cfa-related variables into
struct frame_state_reg_info to ensure that the CFA is properly
handled when executing DW_CFA_{remember,restore}_state.
* gcc/unwind-dw2.c, gcc/config/alpha/linux-unwind.h,
gcc/config/alpha/vms-unwind.h, gcc/config/s390/tpf-unwind.h
gcc/config/s390/linux-unwind.h, gcc/config/sparc/linux-unwind.h
gcc/config/i386/linux-unwind.h, gcc/config/sh/linux-unwind.h
gcc/config/rs6000/linux-unwind.h,
gcc/config/rs6000/darwin-fallback.c, gcc/config/pa/linux-unwind.h,
gcc/config/pa/hpux-unwind.h, gcc/config/mips/linux-unwind.h:
Modify to use new cfa_* fields.
From-SVN: r118068
2006-10-26 21:31:09 +02:00
|
|
|
fs->regs.cfa_how = CFA_REG_OFFSET;
|
|
|
|
fs->regs.cfa_reg = 30;
|
|
|
|
fs->regs.cfa_offset = 0;
|
2005-11-18 04:22:18 +01:00
|
|
|
|
|
|
|
fs->retaddr_column = 0;
|
|
|
|
fs->regs.reg[0].how = REG_SAVED_OFFSET;
|
|
|
|
fs->regs.reg[0].loc.offset = -24;
|
|
|
|
|
2006-05-17 17:35:36 +02:00
|
|
|
/* Update context to describe the stub frame. */
|
|
|
|
uw_update_context (context, fs);
|
|
|
|
|
|
|
|
/* Set up fs to describe the FDE for the caller of this stub. */
|
|
|
|
return uw_frame_state_for (context, fs);
|
2006-05-09 02:36:11 +02:00
|
|
|
}
|
|
|
|
/* Check if the return address points to a relocation stub. */
|
|
|
|
else if (!TARGET_64BIT
|
|
|
|
&& *(pc + 0) == 0x0fd11082 /* ldw -8(sp),rp */
|
|
|
|
&& (*(pc + 1) == 0xe840c002 /* bv,n r0(rp) */
|
|
|
|
|| *(pc + 1) == 0xe840d002)) /* bve,n (rp) */
|
|
|
|
{
|
unwind-dw2.h: Move cfa-related variables into struct frame_state_reg_info to ensure that the...
* gcc/unwind-dw2.h: Move cfa-related variables into
struct frame_state_reg_info to ensure that the CFA is properly
handled when executing DW_CFA_{remember,restore}_state.
* gcc/unwind-dw2.c, gcc/config/alpha/linux-unwind.h,
gcc/config/alpha/vms-unwind.h, gcc/config/s390/tpf-unwind.h
gcc/config/s390/linux-unwind.h, gcc/config/sparc/linux-unwind.h
gcc/config/i386/linux-unwind.h, gcc/config/sh/linux-unwind.h
gcc/config/rs6000/linux-unwind.h,
gcc/config/rs6000/darwin-fallback.c, gcc/config/pa/linux-unwind.h,
gcc/config/pa/hpux-unwind.h, gcc/config/mips/linux-unwind.h:
Modify to use new cfa_* fields.
From-SVN: r118068
2006-10-26 21:31:09 +02:00
|
|
|
fs->regs.cfa_how = CFA_REG_OFFSET;
|
|
|
|
fs->regs.cfa_reg = 30;
|
|
|
|
fs->regs.cfa_offset = 0;
|
2006-05-09 02:36:11 +02:00
|
|
|
|
|
|
|
fs->retaddr_column = 0;
|
|
|
|
fs->regs.reg[0].how = REG_SAVED_OFFSET;
|
|
|
|
fs->regs.reg[0].loc.offset = -8;
|
|
|
|
|
2006-05-17 17:35:36 +02:00
|
|
|
/* Update context to describe the stub frame. */
|
|
|
|
uw_update_context (context, fs);
|
|
|
|
|
|
|
|
/* Set up fs to describe the FDE for the caller of this stub. */
|
|
|
|
return uw_frame_state_for (context, fs);
|
2005-11-18 04:22:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if the return address is an export stub as signal handlers
|
|
|
|
may return via an export stub. */
|
|
|
|
if (!TARGET_64BIT
|
|
|
|
&& (*pc & 0xffe0e002) == 0xe8400000 /* bl x,r2 */
|
|
|
|
&& *(pc + 1) == 0x08000240 /* nop */
|
|
|
|
&& *(pc + 2) == 0x4bc23fd1 /* ldw -18(sp),rp */
|
|
|
|
&& *(pc + 3) == 0x004010a1 /* ldsid (rp),r1 */
|
|
|
|
&& *(pc + 4) == 0x00011820 /* mtsp r1,sr0 */
|
|
|
|
&& *(pc + 5) == 0xe0400002) /* be,n 0(sr0,rp) */
|
|
|
|
/* Extract target address from PA 1.x 17-bit branch. */
|
|
|
|
pc += extract_17 (*pc) + 2;
|
|
|
|
else if (!TARGET_64BIT
|
|
|
|
&& (*pc & 0xfc00e002) == 0xe800a000 /* b,l x,r2 */
|
|
|
|
&& *(pc + 1) == 0x08000240 /* nop */
|
|
|
|
&& *(pc + 2) == 0x4bc23fd1 /* ldw -18(sp),rp */
|
|
|
|
&& *(pc + 3) == 0xe840d002) /* bve,n (rp) */
|
|
|
|
/* Extract target address from PA 2.0 22-bit branch. */
|
|
|
|
pc += extract_22 (*pc) + 2;
|
|
|
|
|
|
|
|
/* Now check if the return address is one of the signal handler
|
|
|
|
returns, _sigreturn or _sigsetreturn. */
|
|
|
|
if ((TARGET_64BIT
|
|
|
|
&& *(pc + 0) == 0x53db3f51 /* ldd -58(sp),dp */
|
|
|
|
&& *(pc + 8) == 0x34160116 /* ldi 8b,r22 */
|
|
|
|
&& *(pc + 9) == 0x08360ac1 /* shladd,l r22,3,r1,r1 */
|
|
|
|
&& *(pc + 10) == 0x0c2010c1 /* ldd 0(r1),r1 */
|
|
|
|
&& *(pc + 11) == 0xe4202000) /* be,l 0(sr4,r1) */
|
|
|
|
||
|
|
|
|
(TARGET_64BIT
|
|
|
|
&& *(pc + 0) == 0x36dc0000 /* ldo 0(r22),ret0 */
|
|
|
|
&& *(pc + 6) == 0x341601c0 /* ldi e0,r22 */
|
|
|
|
&& *(pc + 7) == 0x08360ac1 /* shladd,l r22,3,r1,r1 */
|
|
|
|
&& *(pc + 8) == 0x0c2010c1 /* ldd 0(r1),r1 */
|
|
|
|
&& *(pc + 9) == 0xe4202000) /* be,l 0(sr4,r1) */
|
|
|
|
||
|
|
|
|
(!TARGET_64BIT
|
|
|
|
&& *(pc + 0) == 0x379a0000 /* ldo 0(ret0),r26 */
|
|
|
|
&& *(pc + 1) == 0x6bd33fc9 /* stw r19,-1c(sp) */
|
|
|
|
&& *(pc + 2) == 0x20200801 /* ldil L%-40000000,r1 */
|
|
|
|
&& *(pc + 3) == 0xe420e008 /* be,l 4(sr7,r1) */
|
|
|
|
&& *(pc + 4) == 0x34160116) /* ldi 8b,r22 */
|
|
|
|
||
|
|
|
|
(!TARGET_64BIT
|
|
|
|
&& *(pc + 0) == 0x6bd33fc9 /* stw r19,-1c(sp) */
|
|
|
|
&& *(pc + 1) == 0x20200801 /* ldil L%-40000000,r1 */
|
|
|
|
&& *(pc + 2) == 0xe420e008 /* be,l 4(sr7,r1) */
|
|
|
|
&& *(pc + 3) == 0x341601c0)) /* ldi e0,r22 */
|
|
|
|
{
|
|
|
|
/* The previous stack pointer is saved at (long *)SP - 1. The
|
|
|
|
ucontext structure is offset from the start of the previous
|
|
|
|
frame by the siglocal_misc structure. */
|
|
|
|
struct siglocalx *sl = (struct siglocalx *)
|
|
|
|
(*((long *) context->cfa - 1));
|
|
|
|
mcontext_t *mc = &(sl->sl_uc.uc_mcontext);
|
|
|
|
|
|
|
|
long new_cfa = GetSSReg (mc, ss_sp);
|
|
|
|
|
unwind-dw2.h: Move cfa-related variables into struct frame_state_reg_info to ensure that the...
* gcc/unwind-dw2.h: Move cfa-related variables into
struct frame_state_reg_info to ensure that the CFA is properly
handled when executing DW_CFA_{remember,restore}_state.
* gcc/unwind-dw2.c, gcc/config/alpha/linux-unwind.h,
gcc/config/alpha/vms-unwind.h, gcc/config/s390/tpf-unwind.h
gcc/config/s390/linux-unwind.h, gcc/config/sparc/linux-unwind.h
gcc/config/i386/linux-unwind.h, gcc/config/sh/linux-unwind.h
gcc/config/rs6000/linux-unwind.h,
gcc/config/rs6000/darwin-fallback.c, gcc/config/pa/linux-unwind.h,
gcc/config/pa/hpux-unwind.h, gcc/config/mips/linux-unwind.h:
Modify to use new cfa_* fields.
From-SVN: r118068
2006-10-26 21:31:09 +02:00
|
|
|
fs->regs.cfa_how = CFA_REG_OFFSET;
|
|
|
|
fs->regs.cfa_reg = 30;
|
|
|
|
fs->regs.cfa_offset = new_cfa - (long) context->cfa;
|
2005-11-18 04:22:18 +01:00
|
|
|
|
|
|
|
UPDATE_FS_FOR_GR (fs, 1, 1);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 2, 2);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 3, 3);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 4, 4);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 5, 5);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 6, 6);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 7, 7);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 8, 8);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 9, 9);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 10, 10);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 11, 11);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 12, 12);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 13, 13);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 14, 14);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 15, 15);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 16, 16);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 17, 17);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 18, 18);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 19, 19);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 20, 20);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 21, 21);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 22, 22);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 23, 23);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 24, 24);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 25, 25);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 26, 26);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 27, 27);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 28, 28);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 29, 29);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 30, 30);
|
|
|
|
UPDATE_FS_FOR_GR (fs, 31, 31);
|
|
|
|
|
|
|
|
if (TARGET_64BIT)
|
|
|
|
{
|
|
|
|
UPDATE_FS_FOR_FR (fs, 4, 32);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 5, 33);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 6, 34);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 7, 35);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 8, 36);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 9, 37);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 10, 38);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 11, 39);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 12, 40);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 13, 41);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 14, 42);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 15, 43);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 16, 44);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 17, 45);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 18, 46);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 19, 47);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 20, 48);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 21, 49);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 22, 50);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 23, 51);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 24, 52);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 25, 53);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 26, 54);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 27, 55);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 28, 56);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 29, 57);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 30, 58);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 31, 59);
|
|
|
|
|
|
|
|
UPDATE_FS_FOR_SAR (fs, 60);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
UPDATE_FS_FOR_FR (fs, 4, 32);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 5, 34);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 6, 36);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 7, 38);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 8, 40);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 9, 44);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 10, 44);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 11, 46);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 12, 48);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 13, 50);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 14, 52);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 15, 54);
|
|
|
|
|
|
|
|
if (!cpu)
|
|
|
|
cpu = sysconf (_SC_CPU_VERSION);
|
|
|
|
|
|
|
|
/* PA-RISC 1.0 only has 16 floating point registers. */
|
|
|
|
if (cpu != CPU_PA_RISC1_0)
|
|
|
|
{
|
|
|
|
UPDATE_FS_FOR_FR (fs, 16, 56);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 17, 58);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 18, 60);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 19, 62);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 20, 64);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 21, 66);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 22, 68);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 23, 70);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 24, 72);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 25, 74);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 26, 76);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 27, 78);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 28, 80);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 29, 82);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 30, 84);
|
|
|
|
UPDATE_FS_FOR_FR (fs, 31, 86);
|
|
|
|
}
|
|
|
|
|
|
|
|
UPDATE_FS_FOR_SAR (fs, 88);
|
|
|
|
}
|
|
|
|
|
Use -fbuilding-libgcc for more target macros used in libgcc.
gcc/c-family:
* c-cppbuiltin.c (c_cpp_builtins): Also define
__LIBGCC_EH_TABLES_CAN_BE_READ_ONLY__,
__LIBGCC_EH_FRAME_SECTION_NAME__, __LIBGCC_JCR_SECTION_NAME__,
__LIBGCC_CTORS_SECTION_ASM_OP__, __LIBGCC_DTORS_SECTION_ASM_OP__,
__LIBGCC_TEXT_SECTION_ASM_OP__, __LIBGCC_INIT_SECTION_ASM_OP__,
__LIBGCC_INIT_ARRAY_SECTION_ASM_OP__,
__LIBGCC_STACK_GROWS_DOWNWARD__,
__LIBGCC_DONT_USE_BUILTIN_SETJMP__,
__LIBGCC_DWARF_ALT_FRAME_RETURN_COLUMN__,
__LIBGCC_DWARF_FRAME_REGISTERS__,
__LIBGCC_EH_RETURN_STACKADJ_RTX__, __LIBGCC_JMP_BUF_SIZE__,
__LIBGCC_STACK_POINTER_REGNUM__ and
__LIBGCC_VTABLE_USES_DESCRIPTORS__ for -fbuilding-libgcc.
(builtin_define_with_value): Handle backslash-escaping in string
macro values.
libgcc:
* Makefile.in (CRTSTUFF_CFLAGS): Add -fbuilding-libgcc.
* config/aarch64/linux-unwind.h (STACK_POINTER_REGNUM): Change all
uses to __LIBGCC_STACK_POINTER_REGNUM__.
(DWARF_ALT_FRAME_RETURN_COLUMN): Change all uses to
__LIBGCC_DWARF_ALT_FRAME_RETURN_COLUMN__.
* config/alpha/vms-unwind.h (DWARF_ALT_FRAME_RETURN_COLUMN):
Change use to __LIBGCC_DWARF_ALT_FRAME_RETURN_COLUMN__.
* config/cr16/unwind-cr16.c (STACK_GROWS_DOWNWARD): Change all
uses to __LIBGCC_STACK_GROWS_DOWNWARD__.
(DWARF_FRAME_REGISTERS): Change all uses to
__LIBGCC_DWARF_FRAME_REGISTERS__.
(EH_RETURN_STACKADJ_RTX): Change all uses to
__LIBGCC_EH_RETURN_STACKADJ_RTX__.
* config/cr16/unwind-dw2.h (DWARF_FRAME_REGISTERS): Change use to
__LIBGCC_DWARF_FRAME_REGISTERS__. Remove conditional definition.
* config/i386/cygming-crtbegin.c (EH_FRAME_SECTION_NAME): Change
use to __LIBGCC_EH_FRAME_SECTION_NAME__.
(JCR_SECTION_NAME): Change use to __LIBGCC_JCR_SECTION_NAME__.
* config/i386/cygming-crtend.c (EH_FRAME_SECTION_NAME): Change use
to __LIBGCC_EH_FRAME_SECTION_NAME__.
(JCR_SECTION_NAME): Change use to __LIBGCC_JCR_SECTION_NAME__
* config/mips/linux-unwind.h (STACK_POINTER_REGNUM): Change use to
__LIBGCC_STACK_POINTER_REGNUM__.
(DWARF_ALT_FRAME_RETURN_COLUMN): Change all uses to
__LIBGCC_DWARF_ALT_FRAME_RETURN_COLUMN__.
* config/nios2/linux-unwind.h (STACK_POINTER_REGNUM): Change use
to __LIBGCC_STACK_POINTER_REGNUM__.
* config/pa/hpux-unwind.h (DWARF_ALT_FRAME_RETURN_COLUMN): Change
all uses to __LIBGCC_DWARF_ALT_FRAME_RETURN_COLUMN__.
* config/pa/linux-unwind.h (DWARF_ALT_FRAME_RETURN_COLUMN): Change
all uses to __LIBGCC_DWARF_ALT_FRAME_RETURN_COLUMN__.
* config/rs6000/aix-unwind.h (DWARF_ALT_FRAME_RETURN_COLUMN):
Change all uses to __LIBGCC_DWARF_ALT_FRAME_RETURN_COLUMN__.
(STACK_POINTER_REGNUM): Change all uses to
__LIBGCC_STACK_POINTER_REGNUM__.
* config/rs6000/darwin-fallback.c (STACK_POINTER_REGNUM): Change
use to __LIBGCC_STACK_POINTER_REGNUM__.
* config/rs6000/linux-unwind.h (STACK_POINTER_REGNUM): Change all
uses to __LIBGCC_STACK_POINTER_REGNUM__.
* config/sparc/linux-unwind.h (DWARF_FRAME_REGISTERS): Change use
to __LIBGCC_DWARF_FRAME_REGISTERS__.
* config/sparc/sol2-unwind.h (DWARF_FRAME_REGISTERS): Change use
to __LIBGCC_DWARF_FRAME_REGISTERS__.
* config/tilepro/linux-unwind.h (STACK_POINTER_REGNUM): Change use
to __LIBGCC_STACK_POINTER_REGNUM__.
* config/xtensa/unwind-dw2-xtensa.h (DWARF_FRAME_REGISTERS):
Remove conditional definition.
* crtstuff.c (TEXT_SECTION_ASM_OP): Change all uses to
__LIBGCC_TEXT_SECTION_ASM_OP__.
(EH_FRAME_SECTION_NAME): Change all uses to
__LIBGCC_EH_FRAME_SECTION_NAME__.
(EH_TABLES_CAN_BE_READ_ONLY): Change all uses to
__LIBGCC_EH_TABLES_CAN_BE_READ_ONLY__.
(CTORS_SECTION_ASM_OP): Change all uses to
__LIBGCC_CTORS_SECTION_ASM_OP__.
(DTORS_SECTION_ASM_OP): Change all uses to
__LIBGCC_DTORS_SECTION_ASM_OP__.
(JCR_SECTION_NAME): Change all uses to
__LIBGCC_JCR_SECTION_NAME__.
(INIT_SECTION_ASM_OP): Change all uses to
__LIBGCC_INIT_SECTION_ASM_OP__.
(INIT_ARRAY_SECTION_ASM_OP): Change all uses to
__LIBGCC_INIT_ARRAY_SECTION_ASM_OP__.
* generic-morestack.c (STACK_GROWS_DOWNWARD): Change all uses to
__LIBGCC_STACK_GROWS_DOWNWARD__.
* libgcc2.c (INIT_SECTION_ASM_OP): Change all uses to
__LIBGCC_INIT_SECTION_ASM_OP__.
(INIT_ARRAY_SECTION_ASM_OP): Change all uses to
__LIBGCC_INIT_ARRAY_SECTION_ASM_OP__.
(EH_FRAME_SECTION_NAME): Change all uses to
__LIBGCC_EH_FRAME_SECTION_NAME__.
* libgcov-profiler.c (VTABLE_USES_DESCRIPTORS): Remove conditional
definitions. Change all uses to
__LIBGCC_VTABLE_USES_DESCRIPTORS__.
* unwind-dw2.c (STACK_GROWS_DOWNWARD): Change all uses to
__LIBGCC_STACK_GROWS_DOWNWARD__.
(DWARF_FRAME_REGISTERS): Change all uses to
__LIBGCC_DWARF_FRAME_REGISTERS__.
(EH_RETURN_STACKADJ_RTX): Change all uses to
__LIBGCC_EH_RETURN_STACKADJ_RTX__.
* unwind-dw2.h (DWARF_FRAME_REGISTERS): Remove conditional
definition. Change use to __LIBGCC_DWARF_FRAME_REGISTERS__.
* unwind-sjlj.c (DONT_USE_BUILTIN_SETJMP): Change all uses to
__LIBGCC_DONT_USE_BUILTIN_SETJMP__.
(JMP_BUF_SIZE): Change use to __LIBGCC_JMP_BUF_SIZE__.
From-SVN: r214954
2014-09-05 14:03:46 +02:00
|
|
|
fs->retaddr_column = __LIBGCC_DWARF_ALT_FRAME_RETURN_COLUMN__;
|
|
|
|
UPDATE_FS_FOR_PC (fs, __LIBGCC_DWARF_ALT_FRAME_RETURN_COLUMN__);
|
2009-12-05 18:45:59 +01:00
|
|
|
fs->signal_frame = 1;
|
2005-11-18 04:22:18 +01:00
|
|
|
|
|
|
|
return _URC_NO_REASON;
|
|
|
|
}
|
|
|
|
|
|
|
|
return _URC_END_OF_STACK;
|
|
|
|
}
|
2007-09-12 01:16:01 +02:00
|
|
|
#endif /* inhibit_libc */
|