mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
tcg: Merge INDEX_op_nor_{i32,i64}
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
3f6b223012
commit
3a8c4e9e53
7 changed files with 15 additions and 17 deletions
|
@ -563,7 +563,7 @@ 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;
|
||||
CASE_32_64(nor)
|
||||
case INDEX_op_nor:
|
||||
tci_args_rrr(insn, &r0, &r1, &r2);
|
||||
regs[r0] = ~(regs[r1] | regs[r2]);
|
||||
break;
|
||||
|
@ -1077,6 +1077,7 @@ int print_insn_tci(bfd_vma addr, disassemble_info *info)
|
|||
case INDEX_op_andc:
|
||||
case INDEX_op_eqv:
|
||||
case INDEX_op_nand:
|
||||
case INDEX_op_nor:
|
||||
case INDEX_op_or:
|
||||
case INDEX_op_orc:
|
||||
case INDEX_op_xor:
|
||||
|
@ -1084,8 +1085,6 @@ int print_insn_tci(bfd_vma addr, disassemble_info *info)
|
|||
case INDEX_op_sub_i64:
|
||||
case INDEX_op_mul_i32:
|
||||
case INDEX_op_mul_i64:
|
||||
case INDEX_op_nor_i32:
|
||||
case INDEX_op_nor_i64:
|
||||
case INDEX_op_div_i32:
|
||||
case INDEX_op_div_i64:
|
||||
case INDEX_op_rem_i32:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue