mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
tcg: Convert orc to TCGOutOpBinary
At the same time, drop all backend support for immediate operands, as we now transform orc to or during optimize. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
50e40ecd7a
commit
d262ae6081
26 changed files with 104 additions and 118 deletions
|
@ -551,12 +551,10 @@ uintptr_t QEMU_DISABLE_CFI tcg_qemu_tb_exec(CPUArchState *env,
|
|||
tci_args_rrr(insn, &r0, &r1, &r2);
|
||||
regs[r0] = regs[r1] & ~regs[r2];
|
||||
break;
|
||||
#if TCG_TARGET_HAS_orc_i32 || TCG_TARGET_HAS_orc_i64
|
||||
CASE_32_64(orc)
|
||||
tci_args_rrr(insn, &r0, &r1, &r2);
|
||||
regs[r0] = regs[r1] | ~regs[r2];
|
||||
break;
|
||||
#endif
|
||||
#if TCG_TARGET_HAS_eqv_i32 || TCG_TARGET_HAS_eqv_i64
|
||||
CASE_32_64(eqv)
|
||||
tci_args_rrr(insn, &r0, &r1, &r2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue