mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
target: Include softmmu_exec.h where forgotten
Several targets forgot to include softmmu_exec.h, which would break them with a header cleanup to follow. Reviewed-by: Aurelien Jarno <aurelien@aurel32.net> Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
701e3a5cc0
commit
b1669e5e32
5 changed files with 8 additions and 0 deletions
|
@ -6,6 +6,8 @@
|
||||||
#include "hw/lm32/lm32_pic.h"
|
#include "hw/lm32/lm32_pic.h"
|
||||||
#include "hw/char/lm32_juart.h"
|
#include "hw/char/lm32_juart.h"
|
||||||
|
|
||||||
|
#include "exec/softmmu_exec.h"
|
||||||
|
|
||||||
#if !defined(CONFIG_USER_ONLY)
|
#if !defined(CONFIG_USER_ONLY)
|
||||||
#define MMUSUFFIX _mmu
|
#define MMUSUFFIX _mmu
|
||||||
#define SHIFT 0
|
#define SHIFT 0
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
#include "cpu.h"
|
#include "cpu.h"
|
||||||
#include "mmu.h"
|
#include "mmu.h"
|
||||||
#include "exec/exec-all.h"
|
#include "exec/exec-all.h"
|
||||||
|
#include "exec/softmmu_exec.h"
|
||||||
#include "qemu/host-utils.h"
|
#include "qemu/host-utils.h"
|
||||||
#include "helper.h"
|
#include "helper.h"
|
||||||
|
|
||||||
|
|
|
@ -2871,6 +2871,8 @@ void helper_booke206_tlbflush(CPUPPCState *env, uint32_t type)
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
|
|
||||||
|
#include "exec/softmmu_exec.h"
|
||||||
|
|
||||||
#define MMUSUFFIX _mmu
|
#define MMUSUFFIX _mmu
|
||||||
|
|
||||||
#define SHIFT 0
|
#define SHIFT 0
|
||||||
|
|
|
@ -239,6 +239,8 @@ uint32_t HELPER(ror_cc)(CPUUniCore32State *env, uint32_t x, uint32_t i)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
#include "exec/softmmu_exec.h"
|
||||||
|
|
||||||
#define MMUSUFFIX _mmu
|
#define MMUSUFFIX _mmu
|
||||||
|
|
||||||
#define SHIFT 0
|
#define SHIFT 0
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
#include "cpu.h"
|
#include "cpu.h"
|
||||||
#include "helper.h"
|
#include "helper.h"
|
||||||
#include "qemu/host-utils.h"
|
#include "qemu/host-utils.h"
|
||||||
|
#include "exec/softmmu_exec.h"
|
||||||
|
|
||||||
static void do_unaligned_access(CPUXtensaState *env,
|
static void do_unaligned_access(CPUXtensaState *env,
|
||||||
target_ulong addr, int is_write, int is_user, uintptr_t retaddr);
|
target_ulong addr, int is_write, int is_user, uintptr_t retaddr);
|
||||||
|
|
Loading…
Reference in a new issue