[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH v7 09/73] ppc: convert to helper_cpu_halted_set
From: |
Emilio G. Cota |
Subject: |
[Qemu-ppc] [PATCH v7 09/73] ppc: convert to helper_cpu_halted_set |
Date: |
Mon, 4 Mar 2019 13:17:09 -0500 |
Cc: David Gibson <address@hidden>
Cc: address@hidden
Reviewed-by: Richard Henderson <address@hidden>
Reviewed-by: Alex Bennée <address@hidden>
Acked-by: David Gibson <address@hidden>
Signed-off-by: Emilio G. Cota <address@hidden>
---
target/ppc/translate.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/target/ppc/translate.c b/target/ppc/translate.c
index 819221f246..5835e85a2f 100644
--- a/target/ppc/translate.c
+++ b/target/ppc/translate.c
@@ -1572,8 +1572,7 @@ GEN_LOGICAL2(nor, tcg_gen_nor_tl, 0x03, PPC_INTEGER);
static void gen_pause(DisasContext *ctx)
{
TCGv_i32 t0 = tcg_const_i32(0);
- tcg_gen_st_i32(t0, cpu_env,
- -offsetof(PowerPCCPU, env) + offsetof(CPUState, halted));
+ gen_helper_cpu_halted_set(cpu_env, t0);
tcg_temp_free_i32(t0);
/* Stop translation, this gives other CPUs a chance to run */
@@ -3547,8 +3546,7 @@ static void gen_sync(DisasContext *ctx)
static void gen_wait(DisasContext *ctx)
{
TCGv_i32 t0 = tcg_const_i32(1);
- tcg_gen_st_i32(t0, cpu_env,
- -offsetof(PowerPCCPU, env) + offsetof(CPUState, halted));
+ gen_helper_cpu_halted_set(cpu_env, t0);
tcg_temp_free_i32(t0);
/* Stop translation, as the CPU is supposed to sleep from now */
gen_exception_nip(ctx, EXCP_HLT, ctx->base.pc_next);
--
2.17.1
- [Qemu-ppc] [PATCH v7 00/73] per-CPU locks, Emilio G. Cota, 2019/03/04
- [Qemu-ppc] [PATCH v7 09/73] ppc: convert to helper_cpu_halted_set,
Emilio G. Cota <=
- [Qemu-ppc] [PATCH v7 18/73] ppc: convert to cpu_halted, Emilio G. Cota, 2019/03/04
- [Qemu-ppc] [PATCH v7 33/73] ppc: use cpu_reset_interrupt, Emilio G. Cota, 2019/03/04
- [Qemu-ppc] [PATCH v7 63/73] ppc: convert to cpu_has_work_with_iothread_lock, Emilio G. Cota, 2019/03/04
- [Qemu-ppc] [PATCH v7 44/73] ppc: convert to cpu_interrupt_request, Emilio G. Cota, 2019/03/04
- Re: [Qemu-ppc] [PATCH v7 00/73] per-CPU locks, Alex Bennée, 2019/03/05
- Re: [Qemu-ppc] [PATCH v7 00/73] per-CPU locks, Richard Henderson, 2019/03/06