cpu: Define ArchCPU

For all targets, do this just before including exec/cpu-all.h.

Backports commit 2161a612b4e1d388046320bc464adefd6bba01a0 from qemu
This commit is contained in:
Richard Henderson 2019-06-12 11:08:38 -04:00 committed by Lioncash
parent e3f1f25996
commit ae94fb5992
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7
6 changed files with 6 additions and 0 deletions

View file

@ -3080,6 +3080,7 @@ static inline bool arm_cpu_data_is_big_endian(CPUARMState *env)
}
typedef CPUARMState CPUArchState;
typedef ARMCPU ArchCPU;
#include "exec/cpu-all.h"

View file

@ -1671,6 +1671,7 @@ static inline target_long lshift(target_long x, int n)
void tcg_x86_init(struct uc_struct *);
typedef CPUX86State CPUArchState;
typedef X86CPU ArchCPU;
#include "exec/cpu-all.h"
#include "svm.h"

View file

@ -532,6 +532,7 @@ void m68k_cpu_transaction_failed(CPUState *cs, hwaddr physaddr, vaddr addr,
MemTxResult response, uintptr_t retaddr);
typedef CPUM68KState CPUArchState;
typedef M68kCPU ArchCPU;
#include "exec/cpu-all.h"

View file

@ -1113,6 +1113,7 @@ static inline int cpu_mmu_index(CPUMIPSState *env, bool ifetch)
}
typedef CPUMIPSState CPUArchState;
typedef MIPSCPU ArchCPU;
#include "exec/cpu-all.h"

View file

@ -330,6 +330,7 @@ void riscv_get_csr_ops(int csrno, riscv_csr_operations *ops);
void riscv_set_csr_ops(int csrno, riscv_csr_operations *ops);
typedef CPURISCVState CPUArchState;
typedef RISCVCPU ArchCPU;
#include "exec/cpu-all.h"

View file

@ -719,6 +719,7 @@ static inline int cpu_pil_allowed(CPUSPARCState *env1, int pil)
}
typedef CPUSPARCState CPUArchState;
typedef SPARCCPU ArchCPU;
#include "exec/cpu-all.h"