diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-01-06 14:30:50 -0800 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-28 13:40:15 -0700 |
| commit | d262ae608115d2e6fc61ba6998d9813a5208b0e5 (patch) | |
| tree | dd12abaa9e1d26ed085251ac3eef4f55d227dc08 /tcg/tci.c | |
| parent | 50e40ecd7a5eb803a67d02aa586b5671968ac58b (diff) | |
| download | focaccia-qemu-d262ae608115d2e6fc61ba6998d9813a5208b0e5.tar.gz focaccia-qemu-d262ae608115d2e6fc61ba6998d9813a5208b0e5.zip | |
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>
Diffstat (limited to 'tcg/tci.c')
| -rw-r--r-- | tcg/tci.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tcg/tci.c b/tcg/tci.c index 3e361be6bd..7a926b30db 100644 --- a/tcg/tci.c +++ b/tcg/tci.c @@ -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); |