target-mips: Remove unused gen_load_ACX, gen_store_ACX and cpu_ACX
Remove the functions gen_load_ACX and gen_store_ACX, which appear to have been unused since they were first introduced many years ago. These functions were the only places using the cpu_ACX[] array of TCG globals, so remove that and its accompanying regnames_ACX[] as well. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
This commit is contained in:
parent
31efecccce
commit
340fff722d
@ -1104,7 +1104,7 @@ enum {
|
|||||||
/* global register indices */
|
/* global register indices */
|
||||||
static TCGv_ptr cpu_env;
|
static TCGv_ptr cpu_env;
|
||||||
static TCGv cpu_gpr[32], cpu_PC;
|
static TCGv cpu_gpr[32], cpu_PC;
|
||||||
static TCGv cpu_HI[MIPS_DSP_ACC], cpu_LO[MIPS_DSP_ACC], cpu_ACX[MIPS_DSP_ACC];
|
static TCGv cpu_HI[MIPS_DSP_ACC], cpu_LO[MIPS_DSP_ACC];
|
||||||
static TCGv cpu_dspctrl, btarget, bcond;
|
static TCGv cpu_dspctrl, btarget, bcond;
|
||||||
static TCGv_i32 hflags;
|
static TCGv_i32 hflags;
|
||||||
static TCGv_i32 fpu_fcr0, fpu_fcr31;
|
static TCGv_i32 fpu_fcr0, fpu_fcr31;
|
||||||
@ -1195,10 +1195,6 @@ static const char * const regnames_LO[] = {
|
|||||||
"LO0", "LO1", "LO2", "LO3",
|
"LO0", "LO1", "LO2", "LO3",
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char * const regnames_ACX[] = {
|
|
||||||
"ACX0", "ACX1", "ACX2", "ACX3",
|
|
||||||
};
|
|
||||||
|
|
||||||
static const char * const fregnames[] = {
|
static const char * const fregnames[] = {
|
||||||
"f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
|
"f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
|
||||||
"f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
|
"f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
|
||||||
@ -1241,17 +1237,6 @@ static inline void gen_store_gpr (TCGv t, int reg)
|
|||||||
tcg_gen_mov_tl(cpu_gpr[reg], t);
|
tcg_gen_mov_tl(cpu_gpr[reg], t);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Moves to/from ACX register. */
|
|
||||||
static inline void gen_load_ACX (TCGv t, int reg)
|
|
||||||
{
|
|
||||||
tcg_gen_mov_tl(t, cpu_ACX[reg]);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void gen_store_ACX (TCGv t, int reg)
|
|
||||||
{
|
|
||||||
tcg_gen_mov_tl(cpu_ACX[reg], t);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Moves to/from shadow registers. */
|
/* Moves to/from shadow registers. */
|
||||||
static inline void gen_load_srsgpr (int from, int to)
|
static inline void gen_load_srsgpr (int from, int to)
|
||||||
{
|
{
|
||||||
@ -17716,9 +17701,6 @@ void mips_tcg_init(void)
|
|||||||
cpu_LO[i] = tcg_global_mem_new(TCG_AREG0,
|
cpu_LO[i] = tcg_global_mem_new(TCG_AREG0,
|
||||||
offsetof(CPUMIPSState, active_tc.LO[i]),
|
offsetof(CPUMIPSState, active_tc.LO[i]),
|
||||||
regnames_LO[i]);
|
regnames_LO[i]);
|
||||||
cpu_ACX[i] = tcg_global_mem_new(TCG_AREG0,
|
|
||||||
offsetof(CPUMIPSState, active_tc.ACX[i]),
|
|
||||||
regnames_ACX[i]);
|
|
||||||
}
|
}
|
||||||
cpu_dspctrl = tcg_global_mem_new(TCG_AREG0,
|
cpu_dspctrl = tcg_global_mem_new(TCG_AREG0,
|
||||||
offsetof(CPUMIPSState, active_tc.DSPControl),
|
offsetof(CPUMIPSState, active_tc.DSPControl),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user