From: Philippe Mathieu-Daudé Date: Fri, 10 Oct 2025 03:23:57 +0000 (+0200) Subject: target/tricore: Replace target_ulong -> vaddr with tlb_fill() callees X-Git-Tag: v10.2.0-rc1~61^2~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0d5f95425614ba5281177f76ab438756d8213317;p=thirdparty%2Fqemu.git target/tricore: Replace target_ulong -> vaddr with tlb_fill() callees tlb_fill() provides a vaddr type since commit 68d6eee73c ("target/tricore: Convert to CPUClass::tlb_fill"). Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Message-Id: <20251010052141.42460-3-philmd@linaro.org> --- diff --git a/target/tricore/helper.c b/target/tricore/helper.c index e4c53d453d..7574111c87 100644 --- a/target/tricore/helper.c +++ b/target/tricore/helper.c @@ -35,7 +35,7 @@ enum { }; static int get_physical_address(CPUTriCoreState *env, hwaddr *physical, - int *prot, target_ulong address, + int *prot, vaddr address, MMUAccessType access_type, int mmu_idx) { int ret = TLBRET_MATCH; @@ -61,7 +61,7 @@ hwaddr tricore_cpu_get_phys_page_debug(CPUState *cs, vaddr addr) } /* TODO: Add exception support */ -static void raise_mmu_exception(CPUTriCoreState *env, target_ulong address, +static void raise_mmu_exception(CPUTriCoreState *env, vaddr address, int rw, int tlb_error) { }