From: Matheus Tavares Bernardino <matheus.bernard...@oss.qualcomm.com>
Signed-off-by: Matheus Tavares Bernardino <matheus.bernard...@oss.qualcomm.com> --- target/hexagon/cpu.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/target/hexagon/cpu.c b/target/hexagon/cpu.c index 85ccf9893a..0445146f2b 100644 --- a/target/hexagon/cpu.c +++ b/target/hexagon/cpu.c @@ -511,6 +511,12 @@ static bool hexagon_cpu_exec_interrupt(CPUState *cs, int interrupt_request) return false; } +static vaddr hexagon_pointer_wrap(CPUState *cs, int mmu_idx, + vaddr result, vaddr base) +{ + return result; +} + #endif static const TCGCPUOps hexagon_tcg_ops = { @@ -525,6 +531,8 @@ static const TCGCPUOps hexagon_tcg_ops = { .mmu_index = hexagon_cpu_mmu_index, #if !defined(CONFIG_USER_ONLY) .cpu_exec_interrupt = hexagon_cpu_exec_interrupt, + .pointer_wrap = hexagon_pointer_wrap, + .cpu_exec_reset = cpu_reset, #endif /* !CONFIG_USER_ONLY */ }; -- 2.34.1