diff options
author | Daniel Jacobowitz <drow@false.org> | 2008-03-13 12:22:14 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2008-03-13 12:22:14 +0000 |
commit | 8defab1af704e456ddf7da74f3e7617bdb70ca3b (patch) | |
tree | 6d35cf1fda2ae3e74d708c8438bfa87416570091 /gdb/hppa-tdep.c | |
parent | 5808f4a685c011dca2ea8046508af6c39b91b8da (diff) | |
download | gdb-8defab1af704e456ddf7da74f3e7617bdb70ca3b.zip gdb-8defab1af704e456ddf7da74f3e7617bdb70ca3b.tar.gz gdb-8defab1af704e456ddf7da74f3e7617bdb70ca3b.tar.bz2 |
* breakpoint.h (breakpoint_restore_shadows): New
declaration.
* breakpoint.c (breakpoint_restore_shadows): New.
(read_memory_nobpt): Delete.
* gdbcore.h (read_memory_nobpt): Delete declaration.
* target.c (memory_xfer_partial): Call
breakpoint_restore_shadows.
(restore_show_memory_breakpoints)
(make_show_memory_beakpoints_cleanup): New.
(show_memory_breakpoints): New.
* target.h (make_show_memory_beakpoints_cleanup): Declare.
* ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint):
Make sure we see memory breakpoints when checking if
breakpoint is still there.
* alpha-tdep.c, alphanbsd-tdep.c, frame.c, frv-tdep.c,
hppa-linux-tdep.c, hppa-tdep.c, i386-linux-nat.c, i386-tdep.c,
m68klinux-tdep.c, mips-tdep.c, mn10300-tdep.c, s390-tdep.c,
sparc-tdep.c: Use target_read_memory instead of read_memory_nobpt.
Diffstat (limited to 'gdb/hppa-tdep.c')
-rw-r--r-- | gdb/hppa-tdep.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index 35ede18..d91ed95 100644 --- a/gdb/hppa-tdep.c +++ b/gdb/hppa-tdep.c @@ -545,7 +545,7 @@ hppa_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc) char buf[4]; int off; - status = read_memory_nobpt (pc, buf, 4); + status = target_read_memory (pc, buf, 4); if (status != 0) return 0; @@ -1552,7 +1552,7 @@ restart: old_save_sp = save_sp; old_stack_remaining = stack_remaining; - status = read_memory_nobpt (pc, buf, 4); + status = target_read_memory (pc, buf, 4); inst = extract_unsigned_integer (buf, 4); /* Yow! */ @@ -1603,7 +1603,7 @@ restart: && reg_num <= 26) { pc += 4; - status = read_memory_nobpt (pc, buf, 4); + status = target_read_memory (pc, buf, 4); inst = extract_unsigned_integer (buf, 4); if (status != 0) return pc; @@ -1616,7 +1616,7 @@ restart: reg_num = inst_saves_fr (inst); save_fr &= ~(1 << reg_num); - status = read_memory_nobpt (pc + 4, buf, 4); + status = target_read_memory (pc + 4, buf, 4); next_inst = extract_unsigned_integer (buf, 4); /* Yow! */ @@ -1647,13 +1647,13 @@ restart: <= (gdbarch_ptr_bit (gdbarch) == 64 ? 11 : 7)) { pc += 8; - status = read_memory_nobpt (pc, buf, 4); + status = target_read_memory (pc, buf, 4); inst = extract_unsigned_integer (buf, 4); if (status != 0) return pc; if ((inst & 0xfc000000) != 0x34000000) break; - status = read_memory_nobpt (pc + 4, buf, 4); + status = target_read_memory (pc + 4, buf, 4); next_inst = extract_unsigned_integer (buf, 4); if (status != 0) return pc; @@ -2857,7 +2857,7 @@ hppa_match_insns (CORE_ADDR pc, struct insn_pattern *pattern, { gdb_byte buf[HPPA_INSN_SIZE]; - read_memory_nobpt (npc, buf, HPPA_INSN_SIZE); + target_read_memory (npc, buf, HPPA_INSN_SIZE); insn[i] = extract_unsigned_integer (buf, HPPA_INSN_SIZE); if ((insn[i] & pattern[i].mask) == pattern[i].data) npc += 4; |