* 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.
This commit is contained in:
parent
5808f4a685
commit
8defab1af7
21 changed files with 136 additions and 116 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue