The TCG helpers were added inb92e5a22ecin softmmu_template.h. probe_write() was added in there in3b4afc9e75to be moved out to accel/tcg/cputlb.c in3b08f0a925, and was later refactored as probe_access() inc25c283df0. 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>
		
			
				
	
	
		
			32 lines
		
	
	
		
			666 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			666 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * QEMU TCG accelerator stub
 | |
|  *
 | |
|  * Copyright Red Hat, Inc. 2013
 | |
|  *
 | |
|  * Author: Paolo Bonzini     <pbonzini@redhat.com>
 | |
|  *
 | |
|  * This work is licensed under the terms of the GNU GPL, version 2 or later.
 | |
|  * See the COPYING file in the top-level directory.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #include "qemu/osdep.h"
 | |
| #include "cpu.h"
 | |
| #include "tcg/tcg.h"
 | |
| #include "exec/exec-all.h"
 | |
| 
 | |
| 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();
 | |
| }
 |