[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH v3 3/6] target/ppc: Generate fence operations
From: |
Nikunj A Dadhania |
Subject: |
[Qemu-ppc] [PATCH v3 3/6] target/ppc: Generate fence operations |
Date: |
Thu, 27 Apr 2017 10:48:21 +0530 |
Signed-off-by: Nikunj A Dadhania <address@hidden>
Reviewed-by: Richard Henderson <address@hidden>
---
target/ppc/translate.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/target/ppc/translate.c b/target/ppc/translate.c
index 50b6d4d..4a1f24a 100644
--- a/target/ppc/translate.c
+++ b/target/ppc/translate.c
@@ -2971,6 +2971,7 @@ static void gen_stswx(DisasContext *ctx)
/* eieio */
static void gen_eieio(DisasContext *ctx)
{
+ tcg_gen_mb(TCG_MO_LD_ST | TCG_BAR_SC);
}
#if !defined(CONFIG_USER_ONLY)
@@ -3008,6 +3009,7 @@ static void gen_isync(DisasContext *ctx)
if (!ctx->pr) {
gen_check_tlb_flush(ctx, false);
}
+ tcg_gen_mb(TCG_MO_ALL | TCG_BAR_SC);
gen_stop_exception(ctx);
}
@@ -3028,6 +3030,7 @@ static void gen_##name(DisasContext *ctx)
\
tcg_gen_qemu_ld_tl(gpr, t0, ctx->mem_idx, memop); \
tcg_gen_mov_tl(cpu_reserve, t0); \
tcg_gen_mov_tl(cpu_reserve_val, gpr); \
+ tcg_gen_mb(TCG_MO_ALL | TCG_BAR_LDAQ); \
tcg_temp_free(t0); \
}
@@ -3177,6 +3180,10 @@ static void gen_conditional_store(DisasContext *ctx,
TCGv EA,
tcg_gen_br(l2);
gen_set_label(l1);
+
+ /* Address mismatch implies failure. But we still need to provide the
+ memory barrier semantics of the instruction. */
+ tcg_gen_mb(TCG_MO_ALL | TCG_BAR_STRL);
tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_so);
gen_set_label(l2);
@@ -3308,6 +3315,7 @@ static void gen_sync(DisasContext *ctx)
if (((l == 2) || !(ctx->insns_flags & PPC_64B)) && !ctx->pr) {
gen_check_tlb_flush(ctx, true);
}
+ tcg_gen_mb(TCG_MO_ALL | TCG_BAR_SC);
}
/* wait */
--
2.9.3
- [Qemu-ppc] [PATCH v3 0/6] The series enables Multi-Threaded TCG on PPC64, Nikunj A Dadhania, 2017/04/27
- [Qemu-ppc] [PATCH v3 1/6] target/ppc: Emulate LL/SC using cmpxchg helpers, Nikunj A Dadhania, 2017/04/27
- [Qemu-ppc] [PATCH v3 2/6] cputlb: handle first atomic write to the page, Nikunj A Dadhania, 2017/04/27
- [Qemu-ppc] [PATCH v3 3/6] target/ppc: Generate fence operations,
Nikunj A Dadhania <=
- [Qemu-ppc] [PATCH v3 4/6] cpus: Fix CPU unplug for MTTCG, Nikunj A Dadhania, 2017/04/27
- [Qemu-ppc] [PATCH v3 5/6] tcg: enable MTTCG by default for PPC64 on x86, Nikunj A Dadhania, 2017/04/27
- [Qemu-ppc] [PATCH v3 6/6] target/ppc: do not reset reserve_addr in exec_enter, Nikunj A Dadhania, 2017/04/27