qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 12/18] target-riscv: Add system instructions


From: Richard Henderson
Subject: Re: [Qemu-devel] [PATCH 12/18] target-riscv: Add system instructions
Date: Mon, 26 Sep 2016 14:41:11 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0

On 09/26/2016 03:56 AM, Sagar Karandikar wrote:
+void helper_fence_i(CPURISCVState *env)
+{
+    RISCVCPU *cpu = riscv_env_get_cpu(env);
+    CPUState *cs = CPU(cpu);
+    /* Flush QEMU's TLB */
+    tlb_flush(cs, 1);
+    /* ARM port seems to not know if this is okay inside a TB
+       But we need to do it */
+    tb_flush(cs);
+}

You should not need to tb_flush for fence_i. QEMU's internals auto-detect when a memory write invalidates a TB.


r~



reply via email to

[Prev in Thread] Current Thread [Next in Thread]