diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2007-06-09 13:49:20 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2007-06-09 13:49:20 +0000 |
commit | bf6ae4641c04121071734f45fd22b2ee2533d3b1 (patch) | |
tree | f6862b215882e0410306eb5e626c366836ea1c2f /gdb/gdbarch.h | |
parent | c9f4d5725ddd4daae3866469aaa6293f1b58a404 (diff) | |
download | gdb-bf6ae4641c04121071734f45fd22b2ee2533d3b1.zip gdb-bf6ae4641c04121071734f45fd22b2ee2533d3b1.tar.gz gdb-bf6ae4641c04121071734f45fd22b2ee2533d3b1.tar.bz2 |
2007-06-09 Markus Deuling <deuling@de.ibm.com>
* gdbarch.sh (ADDR_BITS_REMOVE): Replace by gdbarch_addr_bits_remove.
* value.c (value_as_address): Likewise (comment).
* remote-mips.c (common_breakpoint): Likewise.
* regcache.c (read_pc_pid): Likewise.
* printcmd.c (do_one_display): Likewise.
* monitor.c (monitor_write_memory, monitor_read_memory)
(monitor_insert_breakpoint): Likewise.
* mips-tdep.c (heuristic_proc_start): Likewise.
* infrun.c (insert_step_resume_breakpoint_at_frame)
(insert_step_resume_breakpoint_at_caller): Likewise.
* buildsym.c (record_line): Likewise.
* arm-tdep.c (arm_scan_prologue, thumb_get_next_pc)
(arm_get_next_pc): Likewise.
* armnbsd-nat.c (arm_supply_gregset, fetch_register, store_register)
(store_regs): Likewise.
* arm-linux-tdep.c (arm_linux_supply_gregset): Likewise.
* arm-linux-nat.c (fetch_register, fetch_regs): Likewise.
* gdbarch.c, gdbarch.h: Regenerate.
Diffstat (limited to 'gdb/gdbarch.h')
-rw-r--r-- | gdb/gdbarch.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gdb/gdbarch.h b/gdb/gdbarch.h index 4d60ade..37b72e4 100644 --- a/gdb/gdbarch.h +++ b/gdb/gdbarch.h @@ -877,7 +877,7 @@ extern void set_gdbarch_convert_from_func_ptr_addr (struct gdbarch *gdbarch, gdb /* On some machines there are bits in addresses which are not really part of the address, but are used by the kernel, the hardware, etc. - for special purposes. ADDR_BITS_REMOVE takes out any such bits so + for special purposes. gdbarch_addr_bits_remove takes out any such bits so we get a "real" address such as one would find in a symbol table. This is used only for addresses of instructions, and even then I'm not sure it's used in all contexts. It exists to deal with there @@ -888,15 +888,9 @@ extern void set_gdbarch_convert_from_func_ptr_addr (struct gdbarch *gdbarch, gdb typedef CORE_ADDR (gdbarch_addr_bits_remove_ftype) (CORE_ADDR addr); extern CORE_ADDR gdbarch_addr_bits_remove (struct gdbarch *gdbarch, CORE_ADDR addr); extern void set_gdbarch_addr_bits_remove (struct gdbarch *gdbarch, gdbarch_addr_bits_remove_ftype *addr_bits_remove); -#if !defined (GDB_TM_FILE) && defined (ADDR_BITS_REMOVE) -#error "Non multi-arch definition of ADDR_BITS_REMOVE" -#endif -#if !defined (ADDR_BITS_REMOVE) -#define ADDR_BITS_REMOVE(addr) (gdbarch_addr_bits_remove (current_gdbarch, addr)) -#endif /* It is not at all clear why SMASH_TEXT_ADDRESS is not folded into - ADDR_BITS_REMOVE. */ + gdbarch_addr_bits_remove. */ typedef CORE_ADDR (gdbarch_smash_text_address_ftype) (CORE_ADDR addr); extern CORE_ADDR gdbarch_smash_text_address (struct gdbarch *gdbarch, CORE_ADDR addr); |