38 #ifndef __ARCH_ARM_KVM_ARMV8_CPU_HH__ 39 #define __ARCH_ARM_KVM_ARMV8_CPU_HH__ 48 struct ArmV8KvmCPUParams;
87 void dump()
const override;
110 bool _is_device =
false)
111 :
kvm(_kvm),
idx(_idx),
name(_name), is_device(_is_device) {}
148 #endif // __ARCH_ARM_KVM_ARMV8_CPU_HH__
bool is_device
is device register? (needs 'effectful' state update)
Mapping between misc registers in gem5 and registers in KVM.
void updateKvmState() override
Update the KVM state from the current thread context.
void updateThreadContext() override
Update the current thread context with the KVM state.
This is an implementation of a KVM-based ARMv8-compatible CPU.
const std::vector< ArmV8KvmCPU::MiscRegInfo > & getSysRegMap() const
Get a map between system registers in kvm and gem5 registers.
static const std::vector< ArmV8KvmCPU::MiscRegInfo > miscRegIdMap
Mapping between gem5 ID misc registers and registers in kvm.
void startup() override
startup() is the final initialization call before simulation.
IntRegIndex idx
Register index in gem5.
static const std::set< MiscRegIndex > deviceRegSet
Device registers (needing "effectful" MiscReg writes)
ArmV8KvmCPU(ArmV8KvmCPUParams *params)
Mapping between integer registers in gem5 and KVM.
MiscRegIndex idx
Register index in gem5.
const char * name
Name to use in debug dumps.
IntRegInfo(uint64_t _kvm, IntRegIndex _idx, const char *_name)
uint64_t kvm
Register index in KVM.
std::vector< ArmV8KvmCPU::MiscRegInfo > sysRegMap
Cached mapping between system registers in kvm and misc regs in gem5.
void dump() const override
Dump the internal state to the terminal.
const char * name
Name to use in debug dumps.
MiscRegInfo(uint64_t _kvm, MiscRegIndex _idx, const char *_name, bool _is_device=false)
uint64_t kvm
Register index in KVM.
static const std::vector< ArmV8KvmCPU::IntRegInfo > intRegMap
Mapping between gem5 integer registers and integer registers in kvm.
static const std::vector< ArmV8KvmCPU::MiscRegInfo > miscRegMap
Mapping between gem5 misc registers and registers in kvm.
const Params * params() const