Go to the documentation of this file.
40 #include <linux/kvm.h>
42 #include "debug/KvmContext.hh"
43 #include "params/ArmV8KvmCPU.hh"
48 using namespace ArmISA;
53 static_assert(
NUM_XREGS == 31,
"Unexpected number of aarch64 int. regs.");
58 static_assert(
NUM_QREGS == 32,
"Unexpected number of aarch64 vector regs.");
60 #define EXTRACT_FIELD(v, name) \
61 (((v) & name ## _MASK) >> name ## _SHIFT)
63 #define CORE_REG(name, size) \
64 (KVM_REG_ARM64 | KVM_REG_ARM_CORE | \
65 KVM_REG_SIZE_ ## size | \
66 KVM_REG_ARM_CORE_REG(name))
68 #define INT_REG(name) CORE_REG(name, U64)
69 #define SIMD_REG(name) CORE_REG(name, U128)
71 #define SYS_MPIDR_EL1 ARM64_SYS_REG(0b11, 0b000, 0b0000, 0b0000, 0b101)
104 #define FP_REGS_PER_VFP_REG 4
107 {
INT_REG(regs.sp), int_reg::Sp0,
"SP(EL0)" },
108 {
INT_REG(sp_el1), int_reg::Sp1,
"SP(EL1)" },
149 DPRINTF(KvmContext,
" %s := 0x%x\n",
ri.name, value);
157 inform(
"Integer registers:\n");
177 const uint64_t arch(
reg & KVM_REG_ARCH_MASK);
178 if (arch != KVM_REG_ARM64) {
183 const uint64_t
type(
reg & KVM_REG_ARM_COPROC_MASK);
185 case KVM_REG_ARM_CORE:
189 case KVM_REG_ARM64_SYSREG: {
198 inform(
" %s (op0: %i, op1: %i, crn: %i, crm: %i, op2: %i): %s",
203 case KVM_REG_ARM_DEMUX: {
206 if (
id == KVM_REG_ARM_DEMUX_ID_CCSIDR) {
224 DPRINTF(KvmContext,
"In updateKvmState():\n");
236 DPRINTF(KvmContext,
" %s := 0x%x\n",
"PSTATE", cpsr);
241 DPRINTF(KvmContext,
" %s := 0x%x\n",
ri.name, value);
247 DPRINTF(KvmContext,
" X%i := 0x%x\n",
i, value);
253 DPRINTF(KvmContext,
" %s := 0x%x\n",
ri.name, value);
283 DPRINTF(KvmContext,
" %s := 0x%x\n",
ri.name, value);
294 DPRINTF(KvmContext,
"In updateThreadContext():\n");
298 DPRINTF(KvmContext,
" %s := 0x%x\n",
"PSTATE", cpsr);
311 DPRINTF(KvmContext,
" %s := 0x%x\n",
ri.name, value);
317 DPRINTF(KvmContext,
" X%i := 0x%x\n",
i, value);
329 DPRINTF(KvmContext,
" %s := 0x%x\n",
ri.name, value);
346 DPRINTF(KvmContext,
" %s := 0x%x\n",
ri.name, value);
364 pc.nextThumb(cpsr.t);
365 DPRINTF(KvmContext,
" PC := 0x%x (t: %i, a64: %i)\n",
366 pc.instAddr(),
pc.thumb(),
pc.aarch64());
378 const uint64_t arch(
reg & KVM_REG_ARCH_MASK);
379 if (arch != KVM_REG_ARM64)
382 const uint64_t
type(
reg & KVM_REG_ARM_COPROC_MASK);
383 if (
type != KVM_REG_ARM64_SYSREG)
393 const bool writeable(
398 const bool implemented(
403 if (implemented && writeable)
Addr instAddr() const
Returns the memory address of the instruction this PC points to.
virtual RegVal readMiscReg(RegIndex misc_reg)=0
static const std::vector< ArmV8KvmCPU::MiscRegInfo > miscRegMap
Mapping between gem5 misc registers and registers in kvm.
virtual RegVal getReg(const RegId ®) const
EventQueue * deviceEventQueue()
Get a pointer to the event queue owning devices.
virtual const PCStateBase & pcState() const =0
void updateThreadContext() override
Update the current thread context with the KVM state.
MiscRegIndex decodeAArch64SysReg(unsigned op0, unsigned op1, unsigned crn, unsigned crm, unsigned op2)
const char *const miscRegName[]
static const std::vector< ArmV8KvmCPU::MiscRegInfo > miscRegIdMap
Mapping between gem5 ID misc registers and registers in kvm.
std::string getAndFormatOneReg(uint64_t id) const
Get and format one register for printout.
bool inAArch64(ThreadContext *tc)
void getOneReg(uint64_t id, void *addr) const
std::bitset< NUM_MISCREG_INFOS > miscRegInfo[NUM_MISCREGS]
constexpr uint64_t kvmFPReg(const int num)
constexpr uint64_t kvmXReg(const int num)
constexpr RegId Nz(CCRegClass, _NzIdx)
Vector Register Abstraction This generic class is the model in a particularization of MVC,...
VecElem * as()
View interposers.
constexpr RegId V(CCRegClass, _VIdx)
TheISA::VecRegContainer & getWritableVecReg(const RegId ®)
ThreadContext * tc
ThreadContext object, provides an interface for external objects to modify this thread's state.
#define FP_REGS_PER_VFP_REG
static const std::vector< ArmV8KvmCPU::IntRegInfo > intRegMap
Mapping between gem5 integer registers and integer registers in kvm.
void syncVecElemsToRegs(ThreadContext *tc)
void setOneReg(uint64_t id, const void *addr)
Get/Set single register using the KVM_(SET|GET)_ONE_REG API.
const std::vector< ArmV8KvmCPU::MiscRegInfo > & getSysRegMap() const
Get a map between system registers in kvm and gem5 registers.
virtual void setRegFlat(const RegId ®, RegVal val)
void updateKvmState() override
Update the KVM state from the current thread context.
constexpr static unsigned NUM_XREGS
constexpr RegId C(CCRegClass, _CIdx)
void dump() const override
Dump the internal state to the terminal.
ArmV8KvmCPU(const ArmV8KvmCPUParams ¶ms)
constexpr RegId Ge(CCRegClass, _GeIdx)
@ IntRegClass
Integer register.
void syncVecRegsToElems(ThreadContext *tc)
constexpr static unsigned NUM_QREGS
uint64_t getOneRegU64(uint64_t id) const
virtual void setMiscReg(RegIndex misc_reg, RegVal val)=0
const int NumVecV8ArchRegs
const RegIndexVector & getRegList() const
Get a list of registers supported by getOneReg() and setOneReg().
std::vector< ArmV8KvmCPU::MiscRegInfo > sysRegMap
Cached mapping between system registers in kvm and misc regs in gem5.
@ VecRegClass
Vector Register.
#define EXTRACT_FIELD(v, name)
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
static const std::set< ArmISA::MiscRegIndex > deviceRegSet
Device registers (needing "effectful" MiscReg writes)
#define CORE_REG(name, size)
Register ID: describe an architectural register with its class and index.
virtual void setMiscRegNoEffect(RegIndex misc_reg, RegVal val)=0
virtual void setReg(const RegId ®, RegVal val)
Generated on Wed Jul 13 2022 10:39:10 for gem5 by doxygen 1.8.17