mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-04-01 23:07:03 +00:00
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:
parent
e3f1f25996
commit
ae94fb5992
|
@ -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"
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue