[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 16/23] target/i386: give CC_OP_POPCNT low bits corresponding to MO
From: |
Paolo Bonzini |
Subject: |
[PULL 16/23] target/i386: give CC_OP_POPCNT low bits corresponding to MO_TL |
Date: |
Fri, 28 Jun 2024 19:28:48 +0200 |
Handle it like the other arithmetic cc_ops. This simplifies a
bit the implementation of bit test instructions.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
target/i386/cpu.h | 13 +++++++++++--
target/i386/tcg/translate.c | 3 +--
2 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/target/i386/cpu.h b/target/i386/cpu.h
index 1b4edbe0580..29daf370485 100644
--- a/target/i386/cpu.h
+++ b/target/i386/cpu.h
@@ -1275,6 +1275,7 @@ typedef enum {
CC_OP_ADCX, /* CC_DST = C, CC_SRC = rest. */
CC_OP_ADOX, /* CC_SRC2 = O, CC_SRC = rest. */
CC_OP_ADCOX, /* CC_DST = C, CC_SRC2 = O, CC_SRC = rest. */
+ CC_OP_CLR, /* Z and P set, all other flags clear. */
CC_OP_MULB, /* modify all flags, C, O = (CC_SRC != 0) */
CC_OP_MULW,
@@ -1331,8 +1332,16 @@ typedef enum {
CC_OP_BMILGL,
CC_OP_BMILGQ,
- CC_OP_CLR, /* Z set, all other flags clear. */
- CC_OP_POPCNT, /* Z via CC_DST, all other flags clear. */
+ /*
+ * Note that only CC_OP_POPCNT (i.e. the one with MO_TL size)
+ * is used or implemented, because the translation needs
+ * to zero-extend CC_DST anyway.
+ */
+ CC_OP_POPCNTB__, /* Z via CC_DST, all other flags clear. */
+ CC_OP_POPCNTW__,
+ CC_OP_POPCNTL__,
+ CC_OP_POPCNTQ__,
+ CC_OP_POPCNT = sizeof(target_ulong) == 8 ? CC_OP_POPCNTQ__ :
CC_OP_POPCNTL__,
CC_OP_NB,
} CCOp;
diff --git a/target/i386/tcg/translate.c b/target/i386/tcg/translate.c
index eb353dc3c9f..934c514e64f 100644
--- a/target/i386/tcg/translate.c
+++ b/target/i386/tcg/translate.c
@@ -1019,8 +1019,6 @@ static CCPrepare gen_prepare_eflags_z(DisasContext *s,
TCGv reg)
.imm = CC_Z };
case CC_OP_CLR:
return (CCPrepare) { .cond = TCG_COND_ALWAYS };
- case CC_OP_POPCNT:
- return (CCPrepare) { .cond = TCG_COND_EQ, .reg = cpu_cc_dst };
default:
{
MemOp size = (s->cc_op - CC_OP_ADDB) & 3;
@@ -3177,6 +3175,7 @@ static void disas_insn_old(DisasContext *s, CPUState
*cpu, int b)
case CC_OP_SHLB ... CC_OP_SHLQ:
case CC_OP_SARB ... CC_OP_SARQ:
case CC_OP_BMILGB ... CC_OP_BMILGQ:
+ case CC_OP_POPCNT:
/* Z was going to be computed from the non-zero status of CC_DST.
We can get that same Z value (and the new C value) by leaving
CC_DST alone, setting CC_SRC, and using a CC_OP_SAR of the
--
2.45.2
- [PULL 07/23] block: make assertion more generic, (continued)
- [PULL 07/23] block: make assertion more generic, Paolo Bonzini, 2024/06/28
- [PULL 06/23] meson: remove dead optimization option, Paolo Bonzini, 2024/06/28
- [PULL 08/23] block: do not check bdrv_file_open, Paolo Bonzini, 2024/06/28
- [PULL 09/23] block: remove separate bdrv_file_open callback, Paolo Bonzini, 2024/06/28
- [PULL 10/23] block: rename former bdrv_file_open callbacks, Paolo Bonzini, 2024/06/28
- [PULL 11/23] exec: avoid using C++ keywords in function parameters, Paolo Bonzini, 2024/06/28
- [PULL 13/23] include: move typeof_strip_qual to compiler.h, use it in QAPI_LIST_LENGTH(), Paolo Bonzini, 2024/06/28
- [PULL 14/23] target/i386: fix CC_OP dump, Paolo Bonzini, 2024/06/28
- [PULL 15/23] target/i386: use cpu_cc_dst for CC_OP_POPCNT, Paolo Bonzini, 2024/06/28
- [PULL 12/23] exec: don't use void* in pointer arithmetic in headers, Paolo Bonzini, 2024/06/28
- [PULL 16/23] target/i386: give CC_OP_POPCNT low bits corresponding to MO_TL,
Paolo Bonzini <=
- [PULL 17/23] target/i386: remove unused enum, Paolo Bonzini, 2024/06/28
- [PULL 18/23] target/i386: SEV: rename sev_snp_guest->id_block, Paolo Bonzini, 2024/06/28
- [PULL 19/23] target/i386: SEV: store pointer to decoded id_block in SevSnpGuest, Paolo Bonzini, 2024/06/28
- [PULL 20/23] target/i386: SEV: rename sev_snp_guest->id_auth, Paolo Bonzini, 2024/06/28
- [PULL 21/23] target/i386: SEV: store pointer to decoded id_auth in SevSnpGuest, Paolo Bonzini, 2024/06/28
- [PULL 22/23] target/i386/sev: Use size_t for object sizes, Paolo Bonzini, 2024/06/28
- [PULL 23/23] target/i386/sev: Fix printf formats, Paolo Bonzini, 2024/06/28
- Re: [PULL v3 00/23] Misc changes for 2024-06-28, Richard Henderson, 2024/06/29