target-sparc: Remove cpu_tmp64 use from softint insns
The use of "tl" functions and a tmp64 is logically incompatible. Use cpu_tmp0 instead. Signed-off-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
3886b8a320
commit
aeff993cc5
@ -3655,20 +3655,20 @@ static void disas_sparc_insn(DisasContext * dc, unsigned int insn)
|
|||||||
case 0x14: /* Softint set */
|
case 0x14: /* Softint set */
|
||||||
if (!supervisor(dc))
|
if (!supervisor(dc))
|
||||||
goto illegal_insn;
|
goto illegal_insn;
|
||||||
tcg_gen_xor_tl(cpu_tmp64, cpu_src1, cpu_src2);
|
tcg_gen_xor_tl(cpu_tmp0, cpu_src1, cpu_src2);
|
||||||
gen_helper_set_softint(cpu_env, cpu_tmp64);
|
gen_helper_set_softint(cpu_env, cpu_tmp0);
|
||||||
break;
|
break;
|
||||||
case 0x15: /* Softint clear */
|
case 0x15: /* Softint clear */
|
||||||
if (!supervisor(dc))
|
if (!supervisor(dc))
|
||||||
goto illegal_insn;
|
goto illegal_insn;
|
||||||
tcg_gen_xor_tl(cpu_tmp64, cpu_src1, cpu_src2);
|
tcg_gen_xor_tl(cpu_tmp0, cpu_src1, cpu_src2);
|
||||||
gen_helper_clear_softint(cpu_env, cpu_tmp64);
|
gen_helper_clear_softint(cpu_env, cpu_tmp0);
|
||||||
break;
|
break;
|
||||||
case 0x16: /* Softint write */
|
case 0x16: /* Softint write */
|
||||||
if (!supervisor(dc))
|
if (!supervisor(dc))
|
||||||
goto illegal_insn;
|
goto illegal_insn;
|
||||||
tcg_gen_xor_tl(cpu_tmp64, cpu_src1, cpu_src2);
|
tcg_gen_xor_tl(cpu_tmp0, cpu_src1, cpu_src2);
|
||||||
gen_helper_write_softint(cpu_env, cpu_tmp64);
|
gen_helper_write_softint(cpu_env, cpu_tmp0);
|
||||||
break;
|
break;
|
||||||
case 0x17: /* Tick compare */
|
case 0x17: /* Tick compare */
|
||||||
#if !defined(CONFIG_USER_ONLY)
|
#if !defined(CONFIG_USER_ONLY)
|
||||||
|
Loading…
Reference in New Issue
Block a user