diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2009-05-05 13:24:49 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2009-05-05 13:24:49 +0000 |
commit | fb14de7bbddf9dc2f97af953b95b5aa5ea9889c4 (patch) | |
tree | 8c3aed3cae160e56394d2cdd183b3427f5e92dd0 /gdb/m32r-rom.c | |
parent | 738a79f66913b32e392c15c1373c1ea39f808914 (diff) | |
download | gdb-fb14de7bbddf9dc2f97af953b95b5aa5ea9889c4.zip gdb-fb14de7bbddf9dc2f97af953b95b5aa5ea9889c4.tar.gz gdb-fb14de7bbddf9dc2f97af953b95b5aa5ea9889c4.tar.bz2 |
* inferior.h (read_pc, write_pc): Remove.
* regcache.c (read_pc, write_pc): Remove.
* infrun.c (displaced_step_fixup): Use regcache_read_pc instead
of read_pc.
(handle_inferior_event): Use regcache_read_pc instead of read_pc
when determining value of stop_pc. Replace subsequent uses of
read_pc by inspecting already-retrieved stop_pc value.
(keep_going): Use regcache_read_pc instead of read_pc.
* breakpoint.c (watchpoint_check): Use current frame architecture
and PC instead of current_gdbarch and read_pc ().
* tracepoint.c (set_traceframe_context): Replace PC argument
with FRAME argument.
(trace_start_command, finish_tfind_command): Update calls.
(finish_tfind_command): Compare frame IDs to identify transitions
between frames.
(trace_find_pc_command): Use regcache_read_pc instead of read_pc.
* rs6000-nat.c (exec_one_dummy_insn): Pass in regcache instead
of gdbarch. Use regcache_read_pc and regcache_write_pc instead
of read_pc and write_pc.
(store_register): Make regcache argument non-const. Update call
to exec_one_dummy_insn.
* thread.c (switch_to_thread): Use regcache_read_pc instead of read_pc.
* infcmd.c (post_create_inferior): Likewise.
* solib-darwin.c (darwin_solib_create_inferior_hook): Likewise.
* solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
* solib-sunos.c (sunos_solib_create_inferior_hook): Likewise.
* solib-svr4.c (enable_break, svr4_relocate_main_executable): Likewise.
* linux-fork.c (fork_load_infrun_state): Likewise.
* hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Likewise.
* record.c (record_wait): Likewise.
* procfs.c (procfs_wait): Likewise.
* remote-mips.c (common_open, mips_wait): Likewise.
* remote-m32r-sdi.c (m32r_resume): Likewise.
* symfile.c (generic_load): Use regcache_write_pc instead of write_pc.
* monitor.c (monitor_create_inferior, monitor_load): Likewise.
* m32r-rom.c (m32r_load, m32r_upload_command): Likewise.
* remote-m32r-sdi.c (m32r_create_inferior, m32r_load): Likewise.
* remote-mips.c (mips_create_inferior, mips_load): Likewise.
* solib-darwin.c: Include "regcache.h".
* solib-pa64.c: Include "regcache.h".
* solib-svr4.c: Include "regcache.h.".
* symfile.c: Do not mention read_pc or write_pc in comments.
* dink32-rom.c: Likewise.
* m32r-rom.c: Likewise.
* mips-tdep.c: Likewise.
Diffstat (limited to 'gdb/m32r-rom.c')
-rw-r--r-- | gdb/m32r-rom.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gdb/m32r-rom.c b/gdb/m32r-rom.c index a078be6..1491f22 100644 --- a/gdb/m32r-rom.c +++ b/gdb/m32r-rom.c @@ -37,7 +37,7 @@ #include <time.h> /* for time_t */ #include "gdb_string.h" #include "objfiles.h" /* for ALL_OBJFILES etc. */ -#include "inferior.h" /* for write_pc() */ +#include "inferior.h" #include <ctype.h> #include "regcache.h" @@ -175,7 +175,8 @@ m32r_load (char *filename, int from_tty) /* Finally, make the PC point at the start address */ if (exec_bfd) - write_pc (bfd_get_start_address (exec_bfd)); + regcache_write_pc (get_current_regcache (), + bfd_get_start_address (exec_bfd)); inferior_ptid = null_ptid; /* No process now */ @@ -532,7 +533,8 @@ m32r_upload_command (char *args, int from_tty) gdb_flush (gdb_stdout); } /* Finally, make the PC point at the start address */ - write_pc (bfd_get_start_address (abfd)); + regcache_write_pc (get_current_regcache (), + bfd_get_start_address (abfd)); printf_filtered ("Start address 0x%lx\n", (unsigned long) bfd_get_start_address (abfd)); print_transfer_performance (gdb_stdout, data_count, 0, &start_time, |