mips: set significant_addr_bit to number of bits in CORE_ADDR
Commit Message
MIPS targets use signed PC values. Since commit a0de8c21
single-stepping on these targets didn't work due to the addition of
address_significant in adjust_breakpoint_address - sign bits were cut
off because of default value of significant_addr_bit. With this
commit, significant_addr_bit in gdbarch is set to the number of bits
in CORE_ADDR so breakpoint address comparison works again for MIPS
targets.
* mips-tdep.c (mips_gdbarch_init): Set significant_addr_bit
---
gdb/mips-tdep.c | 1 +
1 file changed, 1 insertion(+)
Comments
On Thu, 15 Mar 2018, Vlad Ivanov wrote:
> MIPS targets use signed PC values. Since commit a0de8c21
> single-stepping on these targets didn't work due to the addition of
> address_significant in adjust_breakpoint_address - sign bits were cut
> off because of default value of significant_addr_bit. With this
> commit, significant_addr_bit in gdbarch is set to the number of bits
> in CORE_ADDR so breakpoint address comparison works again for MIPS
> targets.
NAK. As noted in the other thread I think it's the default that has to
be fixed instead.
Maciej
@@ -8685,6 +8685,7 @@ mips_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
/* Add/remove bits from an address. The MIPS needs be careful to
ensure that all 32 bit addresses are sign extended to 64 bits. */
set_gdbarch_addr_bits_remove (gdbarch, mips_addr_bits_remove);
+ set_gdbarch_significant_addr_bit (gdbarch, sizeof (CORE_ADDR) * HOST_CHAR_BIT);
/* Unwind the frame. */
set_gdbarch_unwind_pc (gdbarch, mips_unwind_pc);