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.h | |
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.h')
-rw-r--r-- | gdb/gdbarch.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/gdbarch.h b/gdb/gdbarch.h index 9f45459..6ea86bc 100644 --- a/gdb/gdbarch.h +++ b/gdb/gdbarch.h @@ -40,6 +40,7 @@ /* Pull in function declarations refered to, indirectly, via macros. */ #include "value.h" /* For default_coerce_float_to_double which is referenced by a macro. */ #include "inferior.h" /* For unsigned_address_to_pointer(). */ +#include "sim-regno.h" /* For legacy_register_sim_regno(). */ #endif struct frame_info; @@ -811,7 +812,7 @@ extern void set_gdbarch_print_float_info (struct gdbarch *gdbarch, gdbarch_print /* Default (function) for non- multi-arch platforms. */ #if (!GDB_MULTI_ARCH) && !defined (REGISTER_SIM_REGNO) -#define REGISTER_SIM_REGNO(reg_nr) (default_register_sim_regno (reg_nr)) +#define REGISTER_SIM_REGNO(reg_nr) (legacy_register_sim_regno (reg_nr)) #endif typedef int (gdbarch_register_sim_regno_ftype) (int reg_nr); |