[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 6/9] target/i386: Introduce cpu_compute_eflags_ccop
From: |
Richard Henderson |
Subject: |
[PATCH v2 6/9] target/i386: Introduce cpu_compute_eflags_ccop |
Date: |
Wed, 5 Jun 2024 20:29:23 -0700 |
This is a generalization of cpu_compute_eflags, with a dynamic
value of cc_op, and is thus tcg specific.
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/i386/cpu.h | 2 ++
target/i386/tcg/cc_helper.c | 10 ++++++++++
2 files changed, 12 insertions(+)
diff --git a/target/i386/cpu.h b/target/i386/cpu.h
index c64ef0c1a2..48ad6f495b 100644
--- a/target/i386/cpu.h
+++ b/target/i386/cpu.h
@@ -2431,6 +2431,8 @@ void cpu_x86_inject_mce(Monitor *mon, X86CPU *cpu, int
bank,
uint32_t cpu_cc_compute_all(CPUX86State *env1);
+uint32_t cpu_compute_eflags_ccop(CPUX86State *env, CCOp op);
+
static inline uint32_t cpu_compute_eflags(CPUX86State *env)
{
uint32_t eflags = env->eflags;
diff --git a/target/i386/tcg/cc_helper.c b/target/i386/tcg/cc_helper.c
index f76e9cb8cf..8203682ca8 100644
--- a/target/i386/tcg/cc_helper.c
+++ b/target/i386/tcg/cc_helper.c
@@ -225,6 +225,16 @@ uint32_t cpu_cc_compute_all(CPUX86State *env)
return helper_cc_compute_all(CC_DST, CC_SRC, CC_SRC2, CC_OP);
}
+uint32_t cpu_compute_eflags_ccop(CPUX86State *env, CCOp op)
+{
+ uint32_t eflags;
+
+ eflags = helper_cc_compute_all(CC_DST, CC_SRC, CC_SRC2, op);
+ eflags |= env->df & DF_MASK;
+ eflags |= env->eflags & ~(VM_MASK | RF_MASK);
+ return eflags;
+}
+
target_ulong helper_cc_compute_c(target_ulong dst, target_ulong src1,
target_ulong src2, int op)
{
--
2.34.1
- Re: [PATCH v2 2/9] accel/tcg: Set CPUState.plugin_ra before all plugin callbacks, (continued)
- [PATCH v2 7/9] target/i386: Implement TCGCPUOps for plugin register reads, Richard Henderson, 2024/06/05
- [PATCH v2 6/9] target/i386: Introduce cpu_compute_eflags_ccop,
Richard Henderson <=
- [PATCH v2 9/9] target/arm: Implement TCGCPUOps for plugin register reads, Richard Henderson, 2024/06/05
- Re: [PATCH v2 0/9] plugins: Use unwind info for special gdb registers, Philippe Mathieu-Daudé, 2024/06/06
- Re: [PATCH v2 0/9] plugins: Use unwind info for special gdb registers, Alex Bennée, 2024/06/12