Re: [PATCH 24/24] target/ppc: Restrict ppc_cpu_tlb_fill to TCG

2021-05-20 Thread Bruno Piazera Larsen
On 20/05/2021 11:52, Richard Henderson wrote: On 5/20/21 8:18 AM, Bruno Piazera Larsen wrote: +#ifdef CONFIG_TCG   bool ppc_cpu_tlb_fill(CPUState *cs, vaddr eaddr, int size,     MMUAccessType access_type, int mmu_idx,     bool probe, uintptr_t retaddr) @@

Re: [PATCH 24/24] target/ppc: Restrict ppc_cpu_tlb_fill to TCG

2021-05-20 Thread Richard Henderson
On 5/20/21 8:18 AM, Bruno Piazera Larsen wrote: +#ifdef CONFIG_TCG bool ppc_cpu_tlb_fill(CPUState *cs, vaddr eaddr, int size, MMUAccessType access_type, int mmu_idx, bool probe, uintptr_t retaddr) @@ -2984,3 +2985,4 @@ bool ppc_cpu_tlb_fill(CPUSta

Re: [PATCH 24/24] target/ppc: Restrict ppc_cpu_tlb_fill to TCG

2021-05-20 Thread Bruno Piazera Larsen
On 18/05/2021 17:11, Richard Henderson wrote: This function is used by TCGCPUOps, and is thus TCG specific. Signed-off-by: Richard Henderson --- target/ppc/mmu_helper.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/target/ppc/mmu_helper.c b/target/ppc/mmu_helper.c index 2535ea1836..

[PATCH 24/24] target/ppc: Restrict ppc_cpu_tlb_fill to TCG

2021-05-18 Thread Richard Henderson
This function is used by TCGCPUOps, and is thus TCG specific. Signed-off-by: Richard Henderson --- target/ppc/mmu_helper.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/target/ppc/mmu_helper.c b/target/ppc/mmu_helper.c index 2535ea1836..78e6f7496b 100644 --- a/target/ppc/mmu_helper.c +++