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;
52 constexpr
static unsigned NUM_XREGS = NUM_ARCH_INTREGS - 1;
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), INTREG_SP0,
"SP(EL0)" },
108 {
INT_REG(sp_el1), INTREG_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);
279 DPRINTF(KvmContext,
" %s := 0x%x\n",
ri.name, value);
290 DPRINTF(KvmContext,
"In updateThreadContext():\n");
294 DPRINTF(KvmContext,
" %s := 0x%x\n",
"PSTATE", cpsr);
307 DPRINTF(KvmContext,
" %s := 0x%x\n",
ri.name, value);
313 DPRINTF(KvmContext,
" X%i := 0x%x\n",
i, value);
325 DPRINTF(KvmContext,
" %s := 0x%x\n",
ri.name, value);
340 DPRINTF(KvmContext,
" %s := 0x%x\n",
ri.name, value);
358 pc.nextThumb(cpsr.t);
359 DPRINTF(KvmContext,
" PC := 0x%x (t: %i, a64: %i)\n",
360 pc.instAddr(),
pc.thumb(),
pc.aarch64());
372 const uint64_t arch(
reg & KVM_REG_ARCH_MASK);
373 if (arch != KVM_REG_ARM64)
376 const uint64_t
type(
reg & KVM_REG_ARM_COPROC_MASK);
377 if (
type != KVM_REG_ARM64_SYSREG)
387 const bool writeable(
392 const bool implemented(
397 if (implemented && writeable)
virtual void setIntReg(RegIndex reg_idx, RegVal val)=0
virtual RegVal readMiscReg(RegIndex misc_reg)=0
void startup() override
startup() is the final initialization call before simulation.
static const std::vector< ArmV8KvmCPU::MiscRegInfo > miscRegMap
Mapping between gem5 misc registers and registers in kvm.
EventQueue * deviceEventQueue()
Get a pointer to the event queue owning devices.
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.
virtual Addr instAddr() const =0
bool inAArch64(ThreadContext *tc)
void getOneReg(uint64_t id, void *addr) const
virtual RegVal readCCReg(RegIndex reg_idx) const =0
std::bitset< NUM_MISCREG_INFOS > miscRegInfo[NUM_MISCREGS]
constexpr uint64_t kvmFPReg(const int num)
const IntRegMap IntReg64Map
constexpr uint64_t kvmXReg(const int num)
virtual const TheISA::VecRegContainer & readVecReg(const RegId ®) const =0
ThreadContext * tc
ThreadContext object, provides an interface for external objects to modify this thread's state.
#define FP_REGS_PER_VFP_REG
virtual void setIntRegFlat(RegIndex idx, RegVal val)=0
static const std::vector< ArmV8KvmCPU::IntRegInfo > intRegMap
Mapping between gem5 integer registers and integer registers in kvm.
virtual TheISA::VecRegContainer & getWritableVecReg(const RegId ®)=0
void setOneReg(uint64_t id, const void *addr)
Get/Set single register using the KVM_(SET|GET)_ONE_REG API.
virtual TheISA::PCState pcState() const =0
const std::vector< ArmV8KvmCPU::MiscRegInfo > & getSysRegMap() const
Get a map between system registers in kvm and gem5 registers.
void updateKvmState() override
Update the KVM state from the current thread context.
virtual RegVal readIntReg(RegIndex reg_idx) const =0
constexpr static unsigned NUM_XREGS
void dump() const override
Dump the internal state to the terminal.
ArmV8KvmCPU(const ArmV8KvmCPUParams ¶ms)
@ VecRegClass
Vector Register.
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().
virtual void setCCReg(RegIndex reg_idx, RegVal val)=0
std::vector< ArmV8KvmCPU::MiscRegInfo > sysRegMap
Cached mapping between system registers in kvm and misc regs in gem5.
#define EXTRACT_FIELD(v, name)
void startup() override
startup() is the final initialization call before simulation.
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
Generated on Wed Jul 28 2021 12:10:21 for gem5 by doxygen 1.8.17