mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 09:58:19 +08:00
sim: reg: constify store helper
These functions only read from memory, so mark the pointer as const.
This commit is contained in:
@ -203,7 +203,8 @@ int sim_fetch_register (SIM_DESC sd, int regno, unsigned char *buf, int length);
|
||||
Return a LENGTH of 0 to indicate the register was not updated
|
||||
but no error has occurred. */
|
||||
|
||||
int sim_store_register (SIM_DESC sd, int regno, unsigned char *buf, int length);
|
||||
int sim_store_register (SIM_DESC sd, int regno, const unsigned char *buf,
|
||||
int length);
|
||||
|
||||
|
||||
/* Print whatever statistics the simulator has collected.
|
||||
|
@ -257,7 +257,7 @@ aarch64_reg_get (SIM_CPU *cpu, int regno, unsigned char *buf, int length)
|
||||
}
|
||||
|
||||
static int
|
||||
aarch64_reg_set (SIM_CPU *cpu, int regno, unsigned char *buf, int length)
|
||||
aarch64_reg_set (SIM_CPU *cpu, int regno, const unsigned char *buf, int length)
|
||||
{
|
||||
size_t size;
|
||||
bfd_vma val;
|
||||
|
@ -429,7 +429,7 @@ tomem (struct ARMul_State *state,
|
||||
}
|
||||
|
||||
static int
|
||||
arm_reg_store (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
|
||||
arm_reg_store (SIM_CPU *cpu, int rn, const unsigned char *memory, int length)
|
||||
{
|
||||
init ();
|
||||
|
||||
|
@ -1600,7 +1600,7 @@ sim_read (SIM_DESC sd, SIM_ADDR addr, void *buffer, int size)
|
||||
}
|
||||
|
||||
static int
|
||||
avr_reg_store (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
|
||||
avr_reg_store (SIM_CPU *cpu, int rn, const unsigned char *memory, int length)
|
||||
{
|
||||
if (rn < 32 && length == 1)
|
||||
{
|
||||
|
@ -1881,7 +1881,7 @@ bfin_reg_fetch (SIM_CPU *cpu, int rn, unsigned char *buf, int len)
|
||||
}
|
||||
|
||||
static int
|
||||
bfin_reg_store (SIM_CPU *cpu, int rn, unsigned char *buf, int len)
|
||||
bfin_reg_store (SIM_CPU *cpu, int rn, const unsigned char *buf, int len)
|
||||
{
|
||||
bu32 value, *reg;
|
||||
|
||||
|
@ -61,7 +61,7 @@ bpfbf_fetch_register (SIM_CPU *current_cpu,
|
||||
int
|
||||
bpfbf_store_register (SIM_CPU *current_cpu,
|
||||
int rn,
|
||||
unsigned char *buf,
|
||||
const unsigned char *buf,
|
||||
int len)
|
||||
{
|
||||
if (rn == 11)
|
||||
|
@ -31,7 +31,7 @@ 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, unsigned char *, int);
|
||||
typedef int (CPUREG_STORE_FN) (sim_cpu *, int, const unsigned char *, int);
|
||||
|
||||
/* Types for PC access functions.
|
||||
Some simulators require a functional interface to access the program
|
||||
|
@ -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, unsigned char *buf, int length)
|
||||
sim_store_register (SIM_DESC sd, int rn, const unsigned char *buf, int length)
|
||||
{
|
||||
SIM_CPU *cpu = STATE_CPU (sd, 0);
|
||||
|
||||
|
@ -386,7 +386,7 @@ free_state (SIM_DESC sd)
|
||||
}
|
||||
|
||||
static int cr16_reg_fetch (SIM_CPU *, int, unsigned char *, int);
|
||||
static int cr16_reg_store (SIM_CPU *, int, unsigned char *, int);
|
||||
static int cr16_reg_store (SIM_CPU *, int, const unsigned char *, int);
|
||||
|
||||
SIM_DESC
|
||||
sim_open (SIM_OPEN_KIND kind, struct host_callback_struct *cb,
|
||||
@ -769,7 +769,7 @@ cr16_reg_fetch (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
|
||||
}
|
||||
|
||||
static int
|
||||
cr16_reg_store (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
|
||||
cr16_reg_store (SIM_CPU *cpu, int rn, const unsigned char *memory, int length)
|
||||
{
|
||||
SIM_DESC sd = CPU_STATE (cpu);
|
||||
int size;
|
||||
|
@ -90,7 +90,7 @@ MY (f_fetch_register) (SIM_CPU *current_cpu, int rn,
|
||||
|
||||
int
|
||||
MY (f_store_register) (SIM_CPU *current_cpu, int rn,
|
||||
unsigned char *buf, int len ATTRIBUTE_UNUSED)
|
||||
const unsigned char *buf, int len ATTRIBUTE_UNUSED)
|
||||
{
|
||||
XCONCAT3(crisv,BASENUM,f_h_gr_set) (current_cpu, rn, GETTSI (buf));
|
||||
return -1;
|
||||
|
@ -933,7 +933,7 @@ sim_open (SIM_OPEN_KIND kind, host_callback *callback, struct bfd *abfd,
|
||||
CPU_CRIS_MISC_PROFILE (cpu)->flags = STATE_TRACE_FLAGS (sd)[0];
|
||||
|
||||
/* Set SP to the stack we allocated above. */
|
||||
(* CPU_REG_STORE (cpu)) (cpu, H_GR_SP, (unsigned char *) sp_init, 4);
|
||||
(* CPU_REG_STORE (cpu)) (cpu, H_GR_SP, (const unsigned char *) sp_init, 4);
|
||||
|
||||
/* Set the simulator environment data. */
|
||||
cpu->highest_mmapped_page = NULL;
|
||||
|
@ -744,7 +744,7 @@ free_state (SIM_DESC sd)
|
||||
}
|
||||
|
||||
static int d10v_reg_fetch (SIM_CPU *, int, unsigned char *, int);
|
||||
static int d10v_reg_store (SIM_CPU *, int, unsigned char *, int);
|
||||
static int d10v_reg_store (SIM_CPU *, int, const unsigned char *, int);
|
||||
|
||||
SIM_DESC
|
||||
sim_open (SIM_OPEN_KIND kind, host_callback *cb,
|
||||
@ -1293,7 +1293,7 @@ d10v_reg_fetch (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
|
||||
}
|
||||
|
||||
static int
|
||||
d10v_reg_store (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
|
||||
d10v_reg_store (SIM_CPU *cpu, int rn, const unsigned char *memory, int length)
|
||||
{
|
||||
SIM_DESC sd = CPU_STATE (cpu);
|
||||
int size;
|
||||
|
@ -310,7 +310,7 @@ sim_create_inferior(SIM_DESC sd, bfd *abfd, char * const *argv,
|
||||
}
|
||||
|
||||
int
|
||||
sim_store_register(SIM_DESC sd, int regno, unsigned char *value, int length)
|
||||
sim_store_register(SIM_DESC sd, int regno, const unsigned char *value, int length)
|
||||
{
|
||||
int regval;
|
||||
|
||||
|
@ -89,7 +89,7 @@ frvbf_fetch_register (SIM_CPU *current_cpu, int rn, unsigned char *buf, int len)
|
||||
/* The contents of BUF are in target byte order. */
|
||||
|
||||
int
|
||||
frvbf_store_register (SIM_CPU *current_cpu, int rn, unsigned char *buf, int len)
|
||||
frvbf_store_register (SIM_CPU *current_cpu, int rn, const unsigned char *buf, int len)
|
||||
{
|
||||
if (SIM_FRV_GR0_REGNUM <= rn && rn <= SIM_FRV_GR63_REGNUM)
|
||||
{
|
||||
|
@ -745,7 +745,7 @@ ft32_lookup_register (SIM_CPU *cpu, int nr)
|
||||
static int
|
||||
ft32_reg_store (SIM_CPU *cpu,
|
||||
int rn,
|
||||
unsigned char *memory,
|
||||
const unsigned char *memory,
|
||||
int length)
|
||||
{
|
||||
if (0 <= rn && rn <= 32)
|
||||
|
@ -4476,7 +4476,7 @@ sim_read (SIM_DESC sd, SIM_ADDR addr, void *buffer, int size)
|
||||
}
|
||||
|
||||
static int
|
||||
h8300_reg_store (SIM_CPU *cpu, int rn, unsigned char *value, int length)
|
||||
h8300_reg_store (SIM_CPU *cpu, int rn, const unsigned char *value, int length)
|
||||
{
|
||||
int longval;
|
||||
int shortval;
|
||||
|
@ -227,7 +227,7 @@ iq2000bf_fetch_register (SIM_CPU *cpu, int nr, unsigned char *buf, int len)
|
||||
}
|
||||
|
||||
int
|
||||
iq2000bf_store_register (SIM_CPU *cpu, int nr, unsigned char *buf, int len)
|
||||
iq2000bf_store_register (SIM_CPU *cpu, int nr, const unsigned char *buf, int len)
|
||||
{
|
||||
if (nr >= GPR0_REGNUM
|
||||
&& nr < (GPR0_REGNUM + NR_GPR)
|
||||
|
@ -52,7 +52,7 @@ lm32bf_fetch_register (SIM_CPU * current_cpu, int rn, unsigned char *buf,
|
||||
/* The contents of BUF are in target byte order. */
|
||||
|
||||
int
|
||||
lm32bf_store_register (SIM_CPU * current_cpu, int rn, unsigned char *buf,
|
||||
lm32bf_store_register (SIM_CPU * current_cpu, int rn, const unsigned char *buf,
|
||||
int len)
|
||||
{
|
||||
if (rn < 32)
|
||||
|
@ -403,7 +403,7 @@ sim_fetch_register (SIM_DESC sd, int regno, unsigned char *buf, int length)
|
||||
}
|
||||
|
||||
int
|
||||
sim_store_register (SIM_DESC sd, int regno, unsigned char *buf, int length)
|
||||
sim_store_register (SIM_DESC sd, int regno, const unsigned char *buf, int length)
|
||||
{
|
||||
size_t size;
|
||||
|
||||
|
@ -98,7 +98,7 @@ m32rbf_fetch_register (SIM_CPU *current_cpu, int rn, unsigned char *buf, int len
|
||||
/* The contents of BUF are in target byte order. */
|
||||
|
||||
int
|
||||
m32rbf_store_register (SIM_CPU *current_cpu, int rn, unsigned char *buf, int len)
|
||||
m32rbf_store_register (SIM_CPU *current_cpu, int rn, const unsigned char *buf, int len)
|
||||
{
|
||||
int size = m32rbf_register_size (rn);
|
||||
if (len != size)
|
||||
|
@ -38,7 +38,7 @@ m32r2f_fetch_register (SIM_CPU *current_cpu, int rn, unsigned char *buf, int len
|
||||
/* The contents of BUF are in target byte order. */
|
||||
|
||||
int
|
||||
m32r2f_store_register (SIM_CPU *current_cpu, int rn, unsigned char *buf, int len)
|
||||
m32r2f_store_register (SIM_CPU *current_cpu, int rn, const unsigned char *buf, int len)
|
||||
{
|
||||
return m32rbf_store_register (current_cpu, rn, buf, len);
|
||||
}
|
||||
|
@ -38,7 +38,7 @@ m32rxf_fetch_register (SIM_CPU *current_cpu, int rn, unsigned char *buf, int len
|
||||
/* The contents of BUF are in target byte order. */
|
||||
|
||||
int
|
||||
m32rxf_store_register (SIM_CPU *current_cpu, int rn, unsigned char *buf, int len)
|
||||
m32rxf_store_register (SIM_CPU *current_cpu, int rn, const unsigned char *buf, int len)
|
||||
{
|
||||
return m32rbf_store_register (current_cpu, rn, buf, len);
|
||||
}
|
||||
|
@ -392,7 +392,7 @@ m68hc11_pc_set (sim_cpu *cpu, sim_cia pc)
|
||||
}
|
||||
|
||||
static int m68hc11_reg_fetch (SIM_CPU *, int, unsigned char *, int);
|
||||
static int m68hc11_reg_store (SIM_CPU *, int, unsigned char *, int);
|
||||
static int m68hc11_reg_store (SIM_CPU *, int, const unsigned char *, int);
|
||||
|
||||
SIM_DESC
|
||||
sim_open (SIM_OPEN_KIND kind, host_callback *callback,
|
||||
@ -595,7 +595,7 @@ m68hc11_reg_fetch (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
|
||||
}
|
||||
|
||||
static int
|
||||
m68hc11_reg_store (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
|
||||
m68hc11_reg_store (SIM_CPU *cpu, int rn, const unsigned char *memory, int length)
|
||||
{
|
||||
uint16_t val;
|
||||
|
||||
|
@ -1242,7 +1242,7 @@ sim_engine_run (SIM_DESC sd,
|
||||
}
|
||||
|
||||
static int
|
||||
mcore_reg_store (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
|
||||
mcore_reg_store (SIM_CPU *cpu, int rn, const unsigned char *memory, int length)
|
||||
{
|
||||
if (rn < NUM_MCORE_REGS && rn >= 0)
|
||||
{
|
||||
|
@ -321,7 +321,7 @@ sim_engine_run (SIM_DESC sd,
|
||||
}
|
||||
|
||||
static int
|
||||
microblaze_reg_store (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
|
||||
microblaze_reg_store (SIM_CPU *cpu, int rn, const unsigned char *memory, int length)
|
||||
{
|
||||
if (rn < NUM_REGS + NUM_SPECIAL && rn >= 0)
|
||||
{
|
||||
|
@ -337,7 +337,7 @@ mips_pc_set (sim_cpu *cpu, sim_cia pc)
|
||||
}
|
||||
|
||||
static int mips_reg_fetch (SIM_CPU *, int, unsigned char *, int);
|
||||
static int mips_reg_store (SIM_CPU *, int, unsigned char *, int);
|
||||
static int mips_reg_store (SIM_CPU *, int, const unsigned char *, int);
|
||||
|
||||
SIM_DESC
|
||||
sim_open (SIM_OPEN_KIND kind, host_callback *cb,
|
||||
@ -846,7 +846,7 @@ mips_sim_close (SIM_DESC sd, int quitting)
|
||||
}
|
||||
|
||||
static int
|
||||
mips_reg_store (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
|
||||
mips_reg_store (SIM_CPU *cpu, int rn, const unsigned char *memory, int length)
|
||||
{
|
||||
/* NOTE: gdb (the client) stores registers in target byte order
|
||||
while the simulator uses host byte order */
|
||||
|
@ -80,7 +80,7 @@ mn10300_pc_set (sim_cpu *cpu, sim_cia pc)
|
||||
}
|
||||
|
||||
static int mn10300_reg_fetch (SIM_CPU *, int, unsigned char *, int);
|
||||
static int mn10300_reg_store (SIM_CPU *, int, unsigned char *, int);
|
||||
static int mn10300_reg_store (SIM_CPU *, int, const unsigned char *, int);
|
||||
|
||||
/* These default values correspond to expected usage for the chip. */
|
||||
|
||||
@ -344,9 +344,9 @@ mn10300_reg_fetch (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
|
||||
}
|
||||
|
||||
static int
|
||||
mn10300_reg_store (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
|
||||
mn10300_reg_store (SIM_CPU *cpu, int rn, const unsigned char *memory, int length)
|
||||
{
|
||||
uint8_t *a = memory;
|
||||
const uint8_t *a = memory;
|
||||
State.regs[rn] = (a[3] << 24) + (a[2] << 16) + (a[1] << 8) + a[0];
|
||||
return length;
|
||||
}
|
||||
|
@ -1132,7 +1132,7 @@ sim_engine_run (SIM_DESC sd,
|
||||
}
|
||||
|
||||
static int
|
||||
moxie_reg_store (SIM_CPU *scpu, int rn, unsigned char *memory, int length)
|
||||
moxie_reg_store (SIM_CPU *scpu, int rn, const unsigned char *memory, int length)
|
||||
{
|
||||
if (rn < NUM_MOXIE_REGS && rn >= 0)
|
||||
{
|
||||
|
@ -74,7 +74,7 @@ msp430_reg_fetch (SIM_CPU *cpu, int regno, unsigned char *buf, int len)
|
||||
}
|
||||
|
||||
static int
|
||||
msp430_reg_store (SIM_CPU *cpu, int regno, unsigned char *buf, int len)
|
||||
msp430_reg_store (SIM_CPU *cpu, int regno, const unsigned char *buf, int len)
|
||||
{
|
||||
if (0 <= regno && regno < 16)
|
||||
{
|
||||
|
@ -70,8 +70,8 @@ void or1k32bf_mtspr (sim_cpu *current_cpu, USI addr, USI val);
|
||||
|
||||
int or1k32bf_fetch_register (sim_cpu *current_cpu, int rn, unsigned char *buf,
|
||||
int len);
|
||||
int or1k32bf_store_register (sim_cpu *current_cpu, int rn, unsigned char *buf,
|
||||
int len);
|
||||
int or1k32bf_store_register (sim_cpu *current_cpu, int rn,
|
||||
const unsigned char *buf, int len);
|
||||
int or1k32bf_model_or1200_u_exec (sim_cpu *current_cpu, const IDESC *idesc,
|
||||
int unit_num, int referenced);
|
||||
int or1k32bf_model_or1200nd_u_exec (sim_cpu *current_cpu, const IDESC *idesc,
|
||||
|
@ -55,7 +55,7 @@ or1k32bf_fetch_register (sim_cpu *current_cpu, int rn, unsigned char *buf,
|
||||
}
|
||||
|
||||
int
|
||||
or1k32bf_store_register (sim_cpu *current_cpu, int rn, unsigned char *buf,
|
||||
or1k32bf_store_register (sim_cpu *current_cpu, int rn, const unsigned char *buf,
|
||||
int len)
|
||||
{
|
||||
if (rn < 32)
|
||||
|
@ -1284,7 +1284,8 @@ sim_fetch_register (SIM_DESC sd, int regno, unsigned char *buf, int length)
|
||||
|
||||
|
||||
int
|
||||
sim_store_register (SIM_DESC sd, int regno, unsigned char *buf, int length)
|
||||
sim_store_register (SIM_DESC sd, int regno, const unsigned char *buf,
|
||||
int length)
|
||||
{
|
||||
const char *regname = regnum2name (regno);
|
||||
|
||||
|
@ -650,7 +650,7 @@ pru_pc_set (sim_cpu *cpu, sim_cia pc)
|
||||
|
||||
/* Implement callback for standard CPU_REG_STORE routine. */
|
||||
static int
|
||||
pru_store_register (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
|
||||
pru_store_register (SIM_CPU *cpu, int rn, const unsigned char *memory, int length)
|
||||
{
|
||||
if (rn < NUM_REGS && rn >= 0)
|
||||
{
|
||||
|
@ -1054,7 +1054,7 @@ reg_fetch (sim_cpu *cpu, int rn, unsigned char *buf, int len)
|
||||
}
|
||||
|
||||
static int
|
||||
reg_store (sim_cpu *cpu, int rn, unsigned char *buf, int len)
|
||||
reg_store (sim_cpu *cpu, int rn, const unsigned char *buf, int len)
|
||||
{
|
||||
if (len <= 0 || len > sizeof (unsigned_word))
|
||||
return -1;
|
||||
|
@ -356,7 +356,7 @@ sim_fetch_register (SIM_DESC sd, int regno, unsigned char *buf, int length)
|
||||
LENGTH must match the sim's internal notion of the register size. */
|
||||
|
||||
int
|
||||
sim_store_register (SIM_DESC sd, int regno, unsigned char *buf, int length)
|
||||
sim_store_register (SIM_DESC sd, int regno, const unsigned char *buf, int length)
|
||||
{
|
||||
size_t size;
|
||||
SI val;
|
||||
|
@ -532,7 +532,7 @@ sim_fetch_register (SIM_DESC sd, int regno, unsigned char *buf, int length)
|
||||
}
|
||||
|
||||
int
|
||||
sim_store_register (SIM_DESC sd, int regno, unsigned char *buf, int length)
|
||||
sim_store_register (SIM_DESC sd, int regno, const unsigned char *buf, int length)
|
||||
{
|
||||
size_t size;
|
||||
DI val;
|
||||
|
@ -1913,7 +1913,7 @@ enum {
|
||||
};
|
||||
|
||||
static int
|
||||
sh_reg_store (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
|
||||
sh_reg_store (SIM_CPU *cpu, int rn, const unsigned char *memory, int length)
|
||||
{
|
||||
unsigned val;
|
||||
|
||||
|
@ -185,7 +185,7 @@ v850_pc_set (sim_cpu *cpu, sim_cia pc)
|
||||
}
|
||||
|
||||
static int v850_reg_fetch (SIM_CPU *, int, unsigned char *, int);
|
||||
static int v850_reg_store (SIM_CPU *, int, unsigned char *, int);
|
||||
static int v850_reg_store (SIM_CPU *, int, const unsigned char *, int);
|
||||
|
||||
SIM_DESC
|
||||
sim_open (SIM_OPEN_KIND kind,
|
||||
@ -320,7 +320,7 @@ v850_reg_fetch (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
|
||||
}
|
||||
|
||||
static int
|
||||
v850_reg_store (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
|
||||
v850_reg_store (SIM_CPU *cpu, int rn, const unsigned char *memory, int length)
|
||||
{
|
||||
State.regs[rn] = T2H_4 (*(uint32_t *) memory);
|
||||
return length;
|
||||
|
Reference in New Issue
Block a user