mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 23:03:54 -06:00
target/mips/mips-defs: Use ISA_MIPS32R6 definition to check Release 6
Use the single ISA_MIPS32R6 definition to check if the Release 6 ISA is supported, whether the CPU support 32/64-bit. For now we keep '32' in the definition name, we will rename it as ISA_MIPS_R6 in few commits. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20210104221154.3127610-11-f4bug@amsat.org>
This commit is contained in:
parent
d913c3992d
commit
13514fc93e
5 changed files with 7 additions and 9 deletions
|
@ -385,8 +385,7 @@ void target_cpu_copy_regs(CPUArchState *env, struct target_pt_regs *regs)
|
|||
prog_req.fre &= interp_req.fre;
|
||||
|
||||
bool cpu_has_mips_r2_r6 = env->insn_flags & ISA_MIPS32R2 ||
|
||||
env->insn_flags & ISA_MIPS32R6 ||
|
||||
env->insn_flags & ISA_MIPS64R6;
|
||||
env->insn_flags & ISA_MIPS32R6;
|
||||
|
||||
if (prog_req.fre && !prog_req.frdefault && !prog_req.fr1) {
|
||||
env->CP0_Config5 |= (1 << CP0C5_FRE);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue