59 ccprintf(ss,
", #%d, #%d", imm1, imm2);
92 if (el <=
EL1 && checkEL1Trap(tc, misc_reg, el, ec, immediate)) {
93 return std::make_shared<SupervisorTrap>(
machInst, immediate,
ec);
98 checkEL2Trap(tc, misc_reg, el, ec, immediate)) {
99 return std::make_shared<HypervisorTrap>(
machInst, immediate,
ec);
104 checkEL3Trap(tc, misc_reg, el, ec, immediate)) {
105 return std::make_shared<SecureMonitorTrap>(
machInst, immediate,
ec);
114 uint32_t &immediate)
const 118 bool trap_to_sup =
false;
123 if ((el ==
EL0 && cpacr.fpen != 0x3) ||
124 (el ==
EL1 && !(cpacr.fpen & 0x1))) {
127 immediate = 0x1E00000;
132 trap_to_sup = el ==
EL0 &&
144 uint32_t &immediate)
const 151 bool trap_to_hyp =
false;
159 trap_to_hyp = cptr.tfp;
161 immediate = 0x1E00000;
165 trap_to_hyp = cptr.tcpac && el ==
EL1;
180 ((hcr.trvm && miscRead) || (hcr.tvm && !miscRead)) &&
196 trap_to_hyp = hcr.ttlb && el ==
EL1;
203 trap_to_hyp = hcr.tpu && el <=
EL1;
210 trap_to_hyp = hcr.tpc && el <=
EL1;
216 trap_to_hyp = hcr.tsw && el ==
EL1;
220 trap_to_hyp = hcr.tacr && el ==
EL1;
233 trap_to_hyp = el==
EL1 && hcr.apk == 0;
268 trap_to_hyp = hcr.tid3 && el ==
EL1;
275 trap_to_hyp = hcr.tid2 && el <=
EL1;
281 trap_to_hyp = hcr.tid1 && el ==
EL1;
284 trap_to_hyp = hcr.tidcp && el ==
EL1;
290 if (isa->haveGICv3CpuIfc())
291 trap_to_hyp = hcr.fmo && el ==
EL1;
298 if (isa->haveGICv3CpuIfc())
299 trap_to_hyp = hcr.imo && el ==
EL1;
304 trap_to_hyp = el <=
EL1 &&
317 uint32_t &immediate)
const 321 bool trap_to_mon =
false;
328 trap_to_mon = cptr.tfp;
330 immediate = 0x1E00000;
334 if (el ==
EL1 || el ==
EL2) {
335 trap_to_mon = cptr.tcpac;
340 trap_to_mon = cptr.tcpac;
357 trap_to_mon = el ==
EL1 &&
372 return (
imm & 0x1) << 22;
374 panic(
"Not a valid PSTATE field register\n");
382 std::stringstream
ss;
394 std::stringstream
ss;
406 std::stringstream
ss;
422 Fault fault = trap(tc, miscReg, el,
imm);
427 }
else if (warning) {
428 warn_once(
"\tinstruction '%s' unimplemented\n", fullMnemonic.c_str());
432 return std::make_shared<UndefinedInstruction>(
machInst,
false,
441 return csprintf(
"%-10s (implementation defined)", fullMnemonic.c_str());
#define panic(...)
This implements a cprintf based panic() function.
void ccprintf(cp::Print &print)
void printMnemonic(std::ostream &os, const std::string &suffix="", bool withPred=true, bool withCond64=false, ConditionCode cond64=COND_UC) const
decltype(nullptr) constexpr NoFault
std::string generateDisassembly(Addr pc, const Loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
bool haveSecurity() const
Returns true if this system implements the Security Extensions.
std::string generateDisassembly(Addr pc, const Loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
std::string generateDisassembly(Addr pc, const Loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Fault trap(ThreadContext *tc, MiscRegIndex misc_reg, ExceptionLevel el, uint32_t immediate) const
RegVal miscRegImm() const
Returns the "register view" of the immediate field.
const char * mnemonic
Base mnemonic (e.g., "add").
bool checkEL1Trap(ThreadContext *tc, const MiscRegIndex misc_reg, ExceptionLevel el, ExceptionClass &ec, uint32_t &immediate) const
ThreadContext is the external interface to all thread state for anything outside of the CPU...
bool isGenericTimerSystemAccessTrapEL1(const MiscRegIndex miscReg, ThreadContext *tc)
bool checkEL3Trap(ThreadContext *tc, const MiscRegIndex misc_reg, ExceptionLevel el, ExceptionClass &ec, uint32_t &immediate) const
bool ELIs64(ThreadContext *tc, ExceptionLevel el)
const ExtMachInst machInst
The binary machine instruction.
std::string generateDisassembly(Addr pc, const Loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
The ExecContext is an abstract base class the provides the interface used by the ISA to manipulate th...
std::string csprintf(const char *format, const Args &...args)
std::string generateDisassembly(Addr pc, const Loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
void printIntReg(std::ostream &os, RegIndex reg_idx, uint8_t opWidth=0) const
Print a register name for disassembly given the unique dependence tag number (FP or int)...
std::string generateDisassembly(Addr pc, const Loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Fault execute(ExecContext *xc, Trace::InstRecord *traceData) const override
virtual ThreadContext * tcBase() const =0
Returns a pointer to the ThreadContext.
bool haveVirtualization() const
Returns true if this system implements the virtualization Extensions.
virtual BaseISA * getIsaPtr()=0
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
std::string generateDisassembly(Addr pc, const Loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
void printMiscReg(std::ostream &os, RegIndex reg_idx) const
bool inSecureState(ThreadContext *tc)
virtual RegVal readMiscReg(RegIndex misc_reg)=0
std::shared_ptr< FaultBase > Fault
std::string generateDisassembly(Addr pc, const Loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
bool isGenericTimerSystemAccessTrapEL3(const MiscRegIndex miscReg, ThreadContext *tc)
bool isGenericTimerSystemAccessTrapEL2(const MiscRegIndex miscReg, ThreadContext *tc)
MachInst encoding() const
Returns the real encoding of the instruction: the machInst field is in fact always 64 bit wide and co...
bool checkEL2Trap(ThreadContext *tc, const MiscRegIndex misc_reg, ExceptionLevel el, ExceptionClass &ec, uint32_t &immediate) const