Skip to content

Commit

Permalink
accel/tcg: Add stub for probe_access()
Browse files Browse the repository at this point in the history
The TCG helpers were added in b92e5a2 in softmmu_template.h.
probe_write() was added in there in 3b4afc9 to be moved out
to accel/tcg/cputlb.c in 3b08f0a, and was later refactored
as probe_access() in c25c283.
Since it is a TCG specific helper, add a stub to avoid failures
when building without TCG, such:

  target/arm/helper.o: In function `probe_read':
  include/exec/exec-all.h:362: undefined reference to `probe_access'

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
  • Loading branch information
philmd authored and bonzini committed Jul 10, 2020
1 parent 96df0fd commit bb321b2
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions accel/stubs/tcg-stub.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,10 @@ void tb_flush(CPUState *cpu)
void tlb_set_dirty(CPUState *cpu, target_ulong vaddr)
{
}

void *probe_access(CPUArchState *env, target_ulong addr, int size,
MMUAccessType access_type, int mmu_idx, uintptr_t retaddr)
{
/* Handled by hardware accelerator. */
g_assert_not_reached();
}

0 comments on commit bb321b2

Please sign in to comment.