 2068cabd3f
			
		
	
	
		2068cabd3f
		
	
	
	
	
		
			
			Stop including cpu.h in files that don't need it. Signed-off-by: Thomas Huth <thuth@redhat.com> Message-Id: <20210416171314.2074665-4-thuth@redhat.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
		
			
				
	
	
		
			40 lines
		
	
	
		
			812 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			812 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 "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();
 | |
| }
 | |
| 
 | |
| void QEMU_NORETURN cpu_loop_exit(CPUState *cpu)
 | |
| {
 | |
|     g_assert_not_reached();
 | |
| }
 | |
| 
 | |
| void QEMU_NORETURN cpu_loop_exit_restore(CPUState *cpu, uintptr_t pc)
 | |
| {
 | |
|     g_assert_not_reached();
 | |
| }
 |