aboutsummaryrefslogtreecommitdiff
path: root/sim/common
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-10-31 21:43:10 +0545
committerMike Frysinger <vapier@gentoo.org>2022-11-02 20:31:10 +0545
commitee1cffd3883c1d846ad58c1fb86559bb2f930361 (patch)
tree650a83e14dc8dcb5e061093643102eca8163b461 /sim/common
parent26f228db710f54b54aea4d9a05214add0cf9f541 (diff)
downloadgdb-ee1cffd3883c1d846ad58c1fb86559bb2f930361.zip
gdb-ee1cffd3883c1d846ad58c1fb86559bb2f930361.tar.gz
gdb-ee1cffd3883c1d846ad58c1fb86559bb2f930361.tar.bz2
sim: common: change sim_{fetch,store}_register helpers to use void* buffers
When reading/writing arbitrary data to the system's memory, the unsigned char pointer type doesn't make that much sense. Switch it to void so we align a bit with standard C library read/write functions, and to avoid having to sprinkle casts everywhere.
Diffstat (limited to 'sim/common')
-rw-r--r--sim/common/sim-cpu.h4
-rw-r--r--sim/common/sim-reg.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sim/common/sim-cpu.h b/sim/common/sim-cpu.h
index 2ad5667..4f5972b 100644
--- a/sim/common/sim-cpu.h
+++ b/sim/common/sim-cpu.h
@@ -30,8 +30,8 @@ typedef const char * (CPU_INSN_NAME_FN) (sim_cpu *, int);
/* Types for register access functions.
These routines implement the sim_{fetch,store}_register interface. */
-typedef int (CPUREG_FETCH_FN) (sim_cpu *, int, unsigned char *, int);
-typedef int (CPUREG_STORE_FN) (sim_cpu *, int, const unsigned char *, int);
+typedef int (CPUREG_FETCH_FN) (sim_cpu *, int, void *, int);
+typedef int (CPUREG_STORE_FN) (sim_cpu *, int, const void *, int);
/* Types for PC access functions.
Some simulators require a functional interface to access the program
diff --git a/sim/common/sim-reg.c b/sim/common/sim-reg.c
index 54ce562..ca242de 100644
--- a/sim/common/sim-reg.c
+++ b/sim/common/sim-reg.c
@@ -30,7 +30,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
cpus. */
int
-sim_fetch_register (SIM_DESC sd, int rn, unsigned char *buf, int length)
+sim_fetch_register (SIM_DESC sd, int rn, void *buf, int length)
{
SIM_CPU *cpu = STATE_CPU (sd, 0);
@@ -45,7 +45,7 @@ sim_fetch_register (SIM_DESC sd, int rn, unsigned char *buf, int length)
cpus. */
int
-sim_store_register (SIM_DESC sd, int rn, const unsigned char *buf, int length)
+sim_store_register (SIM_DESC sd, int rn, const void *buf, int length)
{
SIM_CPU *cpu = STATE_CPU (sd, 0);