diff options
author | Daniel Jacobowitz <drow@false.org> | 2008-05-01 18:30:51 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2008-05-01 18:30:51 +0000 |
commit | b39cc96258b1a5fb23014fb3712f24a7578e1070 (patch) | |
tree | 09535e8c6262da6fd31dd630d09e72c8aeacbf94 /gdb/arm-linux-tdep.h | |
parent | 36d520f5f660dd788e0bcc5471439af7e5aca7bc (diff) | |
download | gdb-b39cc96258b1a5fb23014fb3712f24a7578e1070.zip gdb-b39cc96258b1a5fb23014fb3712f24a7578e1070.tar.gz gdb-b39cc96258b1a5fb23014fb3712f24a7578e1070.tar.bz2 |
* arm-linux-tdep.h (ARM_CPSR_REGNUM): Delete definition.
* arm-tdep.c (arm_frame_is_thumb): New.
(arm_pc_is_thumb): Clarify comment.
(thumb_analyze_prologue): Remove PC special case.
(thumb_scan_prologue): Take a block_addr argument. Use it for
find_pc_partial_function. Remove unused variables.
(arm_scan_prologue): Use arm_frame_is_thumb. Use the block address
for find_pc_partial_function. Remove PC special case.
(arm_prologue_prev_register): Add special handling for PC and CPSR.
(arm_dwarf2_prev_register, arm_dwarf2_frame_init_reg): New.
(arm_get_next_pc): Use arm_frame_is_thumb.
(arm_write_pc): Use CPSR_T instead of 0x20.
(arm_gdbarch_init): Call dwarf2_frame_set_init_reg.
* arm-tdep.h (enum gdb_regnum): Add ARM_CPSR_REGNUM.
(CPSR_T): Define.
* dwarf2-frame.c (dwarf2_frame_prev_register): Handle
DWARF2_FRAME_REG_FN.
* dwarf2-frame.h (enum dwarf2_frame_reg_rule): Add
DWARF2_FRAME_REG_FN.
(struct dwarf2_frame_state_reg): Add FN to loc union.
* gdb.arch/thumb-prologue.exp: Do not expect a saved PC.
Diffstat (limited to 'gdb/arm-linux-tdep.h')
-rw-r--r-- | gdb/arm-linux-tdep.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/arm-linux-tdep.h b/gdb/arm-linux-tdep.h index b8ebf65..5b94314 100644 --- a/gdb/arm-linux-tdep.h +++ b/gdb/arm-linux-tdep.h @@ -20,8 +20,6 @@ struct regset; struct regcache; -#define ARM_CPSR_REGNUM 16 - #define ARM_LINUX_SIZEOF_NWFPE (8 * FP_REGISTER_SIZE \ + 2 * INT_REGISTER_SIZE \ + 8 + INT_REGISTER_SIZE) |