diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-05-29 01:51:17 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-05-29 01:51:17 +0000 |
commit | 8238d0bfe4d770d195cd52f15454835570a53b78 (patch) | |
tree | 84436dd91e32b8f32be8e0ea70fa3b6fe04d513f /gdb/gdbarch.c | |
parent | 4c7aad1c75fd97eaf8b4ea952f59b56b38b133aa (diff) | |
download | gdb-8238d0bfe4d770d195cd52f15454835570a53b78.zip gdb-8238d0bfe4d770d195cd52f15454835570a53b78.tar.gz gdb-8238d0bfe4d770d195cd52f15454835570a53b78.tar.bz2 |
* sim-regno.h: New file.
* Makefile.in (sim_regno_h): Define.
(d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
* remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
(legacy_register_sim_regno): New function.
(one2one_register_sim_regno): New function.
(gdbsim_fetch_register): Rewrite.
(gdbsim_store_register): Only store a register when
REGISTER_SIM_REGNO is valid.
* d10v-tdep.c: Include "sim-regno.h".
(d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
(d10v_ts3_register_sim_regno): Ditto.
* gdbarch.sh: Include "sim-regno.h".
(REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
* gdbarch.h, gdbarch.c: Regenerate.
* arch-utils.h (default_register_sim_regno): Delete declaration.
* arch-utils.c (default_register_sim_regno): Delete function.
Diffstat (limited to 'gdb/gdbarch.c')
-rw-r--r-- | gdb/gdbarch.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/gdbarch.c b/gdb/gdbarch.c index 6990953..baeea9f 100644 --- a/gdb/gdbarch.c +++ b/gdb/gdbarch.c @@ -39,6 +39,7 @@ #if GDB_MULTI_ARCH #include "gdbcmd.h" #include "inferior.h" /* enum CALL_DUMMY_LOCATION et.al. */ +#include "sim-regno.h" /* For legacy_register_sim_regno(). */ #else /* Just include everything in sight so that the every old definition of macro is visible. */ @@ -488,7 +489,7 @@ gdbarch_alloc (const struct gdbarch_info *info, current_gdbarch->max_register_virtual_size = -1; current_gdbarch->do_registers_info = do_registers_info; current_gdbarch->print_float_info = default_print_float_info; - current_gdbarch->register_sim_regno = default_register_sim_regno; + current_gdbarch->register_sim_regno = legacy_register_sim_regno; current_gdbarch->cannot_fetch_register = cannot_register_not; current_gdbarch->cannot_store_register = cannot_register_not; current_gdbarch->use_generic_dummy_frames = -1; |