gem5
v20.0.0.3
|
#include <system.hh>
Public Types | |
typedef ArmSystemParams | Params |
![]() | |
typedef SystemParams | Params |
![]() | |
typedef SimObjectParams | Params |
Public Member Functions | |
const Params * | params () const |
ArmSystem (Params *p) | |
bool | haveSecurity () const |
Returns true if this system implements the Security Extensions. More... | |
bool | haveLPAE () const |
Returns true if this system implements the Large Physical Address Extension. More... | |
bool | haveVirtualization () const |
Returns true if this system implements the virtualization Extensions. More... | |
bool | haveCrypto () const |
Returns true if this system implements the Crypto Extension. More... | |
void | setGenericTimer (GenericTimer *generic_timer) |
Sets the pointer to the Generic Timer. More... | |
void | setGIC (BaseGic *gic) |
Sets the pointer to the GIC. More... | |
void | setPowerController (FVPBasePwrCtrl *pwr_ctrl) |
Sets the pointer to the Power Controller. More... | |
GenericTimer * | getGenericTimer () const |
Get a pointer to the system's generic timer model. More... | |
BaseGic * | getGIC () const |
Get a pointer to the system's GIC. More... | |
FVPBasePwrCtrl * | getPowerController () const |
Get a pointer to the system's power controller. More... | |
bool | highestELIs64 () const |
Returns true if the register width of the highest implemented exception level is 64 bits (ARMv8) More... | |
ExceptionLevel | highestEL () const |
Returns the highest implemented exception level. More... | |
Addr | resetAddr () const |
Returns the reset address if the highest implemented exception level is 64 bits (ARMv8) More... | |
void | setResetAddr (Addr addr) |
bool | haveLargeAsid64 () const |
Returns true if ASID is 16 bits in AArch64 (ARMv8) More... | |
bool | haveSVE () const |
Returns true if SVE is implemented (ARMv8) More... | |
unsigned | sveVL () const |
Returns the SVE vector length at reset, in quadwords. More... | |
bool | haveLSE () const |
Returns true if LSE is implemented (ARMv8.1) More... | |
bool | havePAN () const |
Returns true if Priviledge Access Never is implemented. More... | |
uint8_t | physAddrRange64 () const |
Returns the supported physical address range in bits if the highest implemented exception level is 64 bits (ARMv8) More... | |
uint8_t | physAddrRange () const |
Returns the supported physical address range in bits. More... | |
Addr | physAddrMask () const |
Returns the physical address mask. More... | |
bool | haveSemihosting () const |
Is Arm Semihosting support enabled? More... | |
![]() | |
void | init () override |
init() is called after all C++ SimObjects have been created and all ports are connected. More... | |
void | startup () override |
startup() is the final initialization call before simulation. More... | |
MasterPort & | getSystemPort () |
Get a reference to the system port that can be used by non-structural simulation objects like processes or threads, or external entities like loaders and debuggers, etc, to access the memory system. More... | |
Port & | getPort (const std::string &if_name, PortID idx=InvalidPortID) override |
Additional function to return the Port of a memory object. More... | |
unsigned int | cacheLineSize () const |
Get the cache line size of the system. More... | |
ThreadContext * | findFreeContext () |
ThreadContext * | getThreadContext (ContextID tid) const |
bool | schedule (PCEvent *event) override |
bool | remove (PCEvent *event) override |
unsigned | numContexts () const |
int | numRunningContexts () |
Return number of running (non-halted) thread contexts in system. More... | |
KvmVM * | getKvmVM () |
Get a pointer to the Kernel Virtual Machine (KVM) SimObject, if present. More... | |
bool | validKvmEnvironment () const |
Verify gem5 configuration will support KVM emulation. More... | |
PhysicalMemory & | getPhysMem () |
Get a pointer to access the physical memory of the system. More... | |
Addr | freeMemSize () const |
Amount of physical memory that is still free. More... | |
Addr | memSize () const |
Amount of physical memory that exists. More... | |
bool | isMemAddr (Addr addr) const |
Check if a physical address is within a range of a memory that is part of the global address map. More... | |
Arch | getArch () const |
Get the architecture. More... | |
ByteOrder | getGuestByteOrder () const |
Get the guest byte order. More... | |
Addr | getPageBytes () const |
Get the page bytes for the ISA. More... | |
Addr | getPageShift () const |
Get the number of bits worth of in-page address for the ISA. More... | |
ThermalModel * | getThermalModel () const |
The thermal model used for this system (if any). More... | |
MasterID | getMasterId (const SimObject *master, std::string submaster=std::string()) |
Request an id used to create a request object in the system. More... | |
MasterID | getGlobalMasterId (const std::string &master_name) |
Registers a GLOBAL MasterID, which is a MasterID not related to any particular SimObject; since no SimObject is passed, the master gets registered by providing the full master name. More... | |
std::string | getMasterName (MasterID master_id) |
Get the name of an object for a given request id. More... | |
MasterID | lookupMasterId (const SimObject *obj) const |
Looks up the MasterID for a given SimObject returns an invalid MasterID (invldMasterId) if not found. More... | |
MasterID | lookupMasterId (const std::string &name) const |
Looks up the MasterID for a given object name string returns an invalid MasterID (invldMasterId) if not found. More... | |
MasterID | maxMasters () |
Get the number of masters registered in the system. More... | |
void | regStats () override |
Callback to set stat parameters. More... | |
uint64_t | incWorkItemsBegin () |
Called by pseudo_inst to track the number of work items started by this system. More... | |
uint64_t | incWorkItemsEnd () |
Called by pseudo_inst to track the number of work items completed by this system. More... | |
int | markWorkItem (int index) |
Called by pseudo_inst to mark the cpus actively executing work items. More... | |
void | workItemBegin (uint32_t tid, uint32_t workid) |
void | workItemEnd (uint32_t tid, uint32_t workid) |
bool | breakpoint () |
System (Params *p) | |
~System () | |
const Params * | params () const |
const AddrRange & | m5opRange () const |
Range used by memory-mapped m5 pseudo-ops if enabled. More... | |
Addr | allocPhysPages (int npages) |
Allocate npages contiguous unused physical pages. More... | |
ContextID | registerThreadContext (ThreadContext *tc, ContextID assigned=InvalidContextID) |
void | replaceThreadContext (ThreadContext *tc, ContextID context_id) |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
void | drainResume () override |
Resume execution after a successful drain. More... | |
bool | isAtomicMode () const |
Is the system in atomic mode? More... | |
bool | isTimingMode () const |
Is the system in timing mode? More... | |
bool | bypassCaches () const |
Should caches be bypassed? More... | |
Enums::MemoryMode | getMemoryMode () const |
Get the memory mode of the system. More... | |
void | setMemoryMode (Enums::MemoryMode mode) |
Change the memory mode of the system. More... | |
![]() | |
virtual | ~SimObject () |
virtual const std::string | name () const |
virtual void | loadState (CheckpointIn &cp) |
loadState() is called on each SimObject when restoring from a checkpoint. More... | |
virtual void | initState () |
initState() is called on each SimObject when not restoring from a checkpoint. More... | |
virtual void | regProbePoints () |
Register probe points for this object. More... | |
virtual void | regProbeListeners () |
Register probe listeners for this object. More... | |
ProbeManager * | getProbeManager () |
Get the probe manager for this object. More... | |
DrainState | drain () override |
Provide a default implementation of the drain interface for objects that don't need draining. More... | |
virtual void | memWriteback () |
Write back dirty buffers to memory using functional writes. More... | |
virtual void | memInvalidate () |
Invalidate the contents of memory buffers. More... | |
const Params * | params () const |
SimObject (const Params *_params) | |
![]() | |
EventQueue * | eventQueue () const |
void | schedule (Event &event, Tick when) |
void | deschedule (Event &event) |
void | reschedule (Event &event, Tick when, bool always=false) |
void | schedule (Event *event, Tick when) |
void | deschedule (Event *event) |
void | reschedule (Event *event, Tick when, bool always=false) |
void | wakeupEventQueue (Tick when=(Tick) -1) |
void | setCurTick (Tick newVal) |
EventManager (EventManager &em) | |
EventManager (EventManager *em) | |
EventManager (EventQueue *eq) | |
![]() | |
Serializable () | |
virtual | ~Serializable () |
void | serializeSection (CheckpointOut &cp, const char *name) const |
Serialize an object into a new section. More... | |
void | serializeSection (CheckpointOut &cp, const std::string &name) const |
void | unserializeSection (CheckpointIn &cp, const char *name) |
Unserialize an a child object. More... | |
void | unserializeSection (CheckpointIn &cp, const std::string &name) |
![]() | |
DrainState | drainState () const |
Return the current drain state of an object. More... | |
virtual void | notifyFork () |
Notify a child process of a fork. More... | |
![]() | |
Group (Group *parent, const char *name=nullptr) | |
Construct a new statistics group. More... | |
virtual | ~Group () |
virtual void | resetStats () |
Callback to reset stats. More... | |
virtual void | preDumpStats () |
Callback before stats are dumped. More... | |
void | addStat (Stats::Info *info) |
Register a stat with this group. More... | |
const std::map< std::string, Group * > & | getStatGroups () const |
Get all child groups associated with this object. More... | |
const std::vector< Info * > & | getStats () const |
Get all stats associated with this object. More... | |
void | addStatGroup (const char *name, Group *block) |
Add a stat block as a child of this block. More... | |
const Info * | resolveStat (std::string name) const |
Resolve a stat by its name within this group. More... | |
Group ()=delete | |
Group (const Group &)=delete | |
Group & | operator= (const Group &)=delete |
Static Public Member Functions | |
static ArmSystem * | getArmSystem (ThreadContext *tc) |
Returns a valid ArmSystem pointer if using ARM ISA, it fails otherwise. More... | |
static bool | haveSecurity (ThreadContext *tc) |
Returns true if the system of a specific thread context implements the Security Extensions. More... | |
static bool | haveVirtualization (ThreadContext *tc) |
Returns true if the system of a specific thread context implements the virtualization Extensions. More... | |
static bool | haveLPAE (ThreadContext *tc) |
Returns true if the system of a specific thread context implements the Large Physical Address Extension. More... | |
static bool | highestELIs64 (ThreadContext *tc) |
Returns true if the register width of the highest implemented exception level for the system of a specific thread context is 64 bits (ARMv8) More... | |
static ExceptionLevel | highestEL (ThreadContext *tc) |
Returns the highest implemented exception level for the system of a specific thread context. More... | |
static bool | haveEL (ThreadContext *tc, ExceptionLevel el) |
Return true if the system implements a specific exception level. More... | |
static Addr | resetAddr (ThreadContext *tc) |
Returns the reset address if the highest implemented exception level for the system of a specific thread context is 64 bits (ARMv8) More... | |
static uint8_t | physAddrRange (ThreadContext *tc) |
Returns the supported physical address range in bits for the system of a specific thread context. More... | |
static Addr | physAddrMask (ThreadContext *tc) |
Returns the physical address mask for the system of a specific thread context. More... | |
static bool | haveLargeAsid64 (ThreadContext *tc) |
Returns true if ASID is 16 bits for the system of a specific thread context while in AArch64 (ARMv8) More... | |
static bool | haveSemihosting (ThreadContext *tc) |
Is Arm Semihosting support enabled? More... | |
static bool | callSemihosting64 (ThreadContext *tc, bool gem5_ops=false) |
Make a Semihosting call from aarch64. More... | |
static bool | callSemihosting32 (ThreadContext *tc, bool gem5_ops=false) |
Make a Semihosting call from aarch32. More... | |
static bool | callSemihosting (ThreadContext *tc, bool gem5_ops=false) |
Make a Semihosting call from either aarch64 or aarch32. More... | |
static void | callSetStandByWfi (ThreadContext *tc) |
Make a call to notify the power controller of STANDBYWFI assertion. More... | |
static void | callClearStandByWfi (ThreadContext *tc) |
Make a call to notify the power controller of STANDBYWFI deassertion. More... | |
static bool | callSetWakeRequest (ThreadContext *tc) |
Notify the power controller of WAKEREQUEST assertion. More... | |
static void | callClearWakeRequest (ThreadContext *tc) |
Notify the power controller of WAKEREQUEST deassertion. More... | |
![]() | |
static void | printSystems () |
![]() | |
static void | serializeAll (CheckpointOut &cp) |
Serialize all SimObjects in the system. More... | |
static SimObject * | find (const char *name) |
Find the SimObject with the given name and return a pointer to it. More... | |
![]() | |
static const std::string & | currentSection () |
Gets the fully-qualified name of the active section. More... | |
static void | serializeAll (const std::string &cpt_dir) |
static void | unserializeGlobals (CheckpointIn &cp) |
Public Attributes | |
bool | multiProc |
true if this a multiprocessor system More... | |
![]() | |
std::vector< ThreadContext * > | threadContexts |
const bool | multiThread |
Addr | pagePtr |
uint64_t | init_param |
PortProxy | physProxy |
Port to physical memory used for writing object files into ram at boot. More... | |
Workload * | workload = nullptr |
OS kernel. More... | |
std::vector< BaseRemoteGDB * > | remoteGDB |
Counter | totalNumInsts |
std::map< std::pair< uint32_t, uint32_t >, Tick > | lastWorkItemStarted |
std::map< uint32_t, Stats::Histogram * > | workItemStats |
FutexMap | futexMap |
std::set< int > | PIDs |
Process set to track which PIDs have already been allocated. More... | |
std::list< BasicSignal > | signalList |
std::vector< RedirectPath * > | redirectPaths |
Protected Attributes | |
const bool | _haveSecurity |
True if this system implements the Security Extensions. More... | |
const bool | _haveLPAE |
True if this system implements the Large Physical Address Extension. More... | |
const bool | _haveVirtualization |
True if this system implements the virtualization Extensions. More... | |
const bool | _haveCrypto |
True if this system implements the Crypto Extension. More... | |
GenericTimer * | _genericTimer |
Pointer to the Generic Timer wrapper. More... | |
BaseGic * | _gic |
FVPBasePwrCtrl * | _pwrCtrl |
Pointer to the Power Controller (if any) More... | |
Addr | _resetAddr |
Reset address (ARMv8) More... | |
bool | _highestELIs64 |
True if the register width of the highest implemented exception level is 64 bits (ARMv8) More... | |
const uint8_t | _physAddrRange64 |
Supported physical address range in bits if the highest implemented exception level is 64 bits (ARMv8) More... | |
const bool | _haveLargeAsid64 |
True if ASID is 16 bits in AArch64 (ARMv8) More... | |
const bool | _haveSVE |
True if SVE is implemented (ARMv8) More... | |
const unsigned | _sveVL |
SVE vector length at reset, in quadwords. More... | |
const bool | _haveLSE |
True if LSE is implemented (ARMv8.1) More... | |
const unsigned | _havePAN |
True if Priviledge Access Never is implemented. More... | |
ArmSemihosting *const | semihosting |
True if the Semihosting interface is enabled. More... | |
![]() | |
KvmVM *const | kvmVM |
PhysicalMemory | physmem |
Enums::MemoryMode | memoryMode |
const unsigned int | _cacheLineSize |
uint64_t | workItemsBegin |
uint64_t | workItemsEnd |
uint32_t | numWorkIds |
std::vector< bool > | activeCpus |
std::vector< MasterInfo > | masters |
This array is a per-system list of all devices capable of issuing a memory system request and an associated string for each master id. More... | |
ThermalModel * | thermalModel |
Params * | _params |
const AddrRange | _m5opRange |
Range for memory-mapped m5 pseudo ops. More... | |
![]() | |
const SimObjectParams * | _params |
Cached copy of the object parameters. More... | |
![]() | |
EventQueue * | eventq |
A pointer to this object's event queue. More... | |
Additional Inherited Members | |
![]() | |
static std::vector< System * > | systemList |
static int | numSystemsRunning = 0 |
static const int | maxPID = 32768 |
![]() | |
std::string | stripSystemName (const std::string &master_name) const |
Strips off the system name from a master name. More... | |
MasterID | _getMasterId (const SimObject *master, const std::string &master_name) |
helper function for getMasterId More... | |
std::string | leafMasterName (const SimObject *master, const std::string &submaster) |
Helper function for constructing the full (sub)master name by providing the root master and the relative submaster name. More... | |
![]() | |
Drainable () | |
virtual | ~Drainable () |
void | signalDrainDone () const |
Signal that an object is drained. More... | |
typedef ArmSystemParams ArmSystem::Params |
ArmSystem::ArmSystem | ( | Params * | p | ) |
Definition at line 57 of file system.cc.
References _highestELIs64, _physAddrRange64, _resetAddr, Loader::Arm64, fatal, Workload::getArch(), Workload::getEntry(), warn, warn_if, and System::workload.
Referenced by callClearWakeRequest(), and params().
|
static |
Make a call to notify the power controller of STANDBYWFI deassertion.
Definition at line 207 of file system.cc.
References getArmSystem(), and getPowerController().
Referenced by getArmSystem(), and Gicv3::postInt().
|
static |
Notify the power controller of WAKEREQUEST deassertion.
Definition at line 223 of file system.cc.
References ArmSystem(), getArmSystem(), and getPowerController().
Referenced by Gicv3CPUInterface::deassertWakeRequest(), and getArmSystem().
|
static |
Make a Semihosting call from either aarch64 or aarch32.
Definition at line 191 of file system.cc.
References callSemihosting32(), callSemihosting64(), and ArmISA::inAArch64().
Referenced by getArmSystem(), and Iris::ThreadContext::semihostingEvent().
|
static |
Make a Semihosting call from aarch32.
Definition at line 185 of file system.cc.
References ArmSemihosting::call32(), getArmSystem(), and semihosting.
Referenced by callSemihosting(), and getArmSystem().
|
static |
Make a Semihosting call from aarch64.
Definition at line 179 of file system.cc.
References ArmSemihosting::call64(), getArmSystem(), and semihosting.
Referenced by callSemihosting(), and getArmSystem().
|
static |
Make a call to notify the power controller of STANDBYWFI assertion.
Definition at line 200 of file system.cc.
References getArmSystem(), and getPowerController().
Referenced by getArmSystem().
|
static |
Notify the power controller of WAKEREQUEST assertion.
Returns true if WAKEREQUEST is enabled as a power-on mechanism, and the core is now powered, false otherwise
Definition at line 214 of file system.cc.
References getArmSystem(), and getPowerController().
Referenced by Gicv3CPUInterface::assertWakeRequest(), and getArmSystem().
|
inlinestatic |
Returns a valid ArmSystem pointer if using ARM ISA, it fails otherwise.
Definition at line 252 of file system.hh.
References callClearStandByWfi(), callClearWakeRequest(), callSemihosting(), callSemihosting32(), callSemihosting64(), callSetStandByWfi(), callSetWakeRequest(), ArmISA::el, FullSystem, ThreadContext::getSystemPtr(), haveEL(), haveLargeAsid64(), haveLPAE(), haveSecurity(), haveSemihosting(), haveVirtualization(), highestEL(), highestELIs64(), physAddrMask(), physAddrRange(), and resetAddr().
Referenced by callClearStandByWfi(), callClearWakeRequest(), callSemihosting32(), callSemihosting64(), callSetStandByWfi(), callSetWakeRequest(), haveLargeAsid64(), haveLPAE(), haveSecurity(), haveSemihosting(), haveVirtualization(), highestEL(), highestELIs64(), physAddrMask(), physAddrRange(), and resetAddr().
|
inline |
Get a pointer to the system's generic timer model.
Definition at line 183 of file system.hh.
References _genericTimer.
Referenced by ArmISA::ISA::getGenericTimer(), and ArmISA::ISA::readMiscReg().
|
inline |
Get a pointer to the system's GIC.
Definition at line 186 of file system.hh.
References _gic.
Referenced by ArmISA::FsWorkload::initState(), and ArmISA::ISA::startup().
|
inline |
Get a pointer to the system's power controller.
Definition at line 189 of file system.hh.
References _pwrCtrl.
Referenced by callClearStandByWfi(), callClearWakeRequest(), callSetStandByWfi(), and callSetWakeRequest().
|
inline |
Returns true if this system implements the Crypto Extension.
Definition at line 164 of file system.hh.
References _haveCrypto.
Referenced by ArmISA::ISA::ISA().
|
static |
Return true if the system implements a specific exception level.
Definition at line 132 of file system.cc.
References ArmISA::EL0, ArmISA::EL1, ArmISA::EL2, ArmISA::EL3, haveSecurity(), haveVirtualization(), and warn.
Referenced by ArmISA::addPAC(), ArmISA::addPACDA(), ArmISA::addPACDB(), ArmISA::addPACGA(), ArmISA::addPACIA(), ArmISA::addPACIB(), ArmISA::authDA(), ArmISA::authDB(), ArmISA::authIA(), ArmISA::authIB(), ArmISA::badMode(), ArmISA::badMode32(), ArmISA::calculateBottomPACBit(), ArmISA::ArmStaticInst::checkForWFxTrap32(), ArmISA::ArmStaticInst::checkForWFxTrap64(), ArmISA::EL2Enabled(), ArmISA::ArmStaticInst::generalExceptionsToAArch64(), getArmSystem(), ArmISA::illegalExceptionReturn(), ArmISA::isSecureBelowEL3(), ArmISA::IsSecureEL2Enabled(), ArmISA::ArmFaultVals< FastInterrupt >::offset64(), ArmISA::readMPIDR(), ArmISA::s1TranslationRegime(), ArmISA::ArmStaticInst::softwareBreakpoint32(), ArmISA::stripPAC(), ArmISA::trapPACUse(), and ArmISA::ArmStaticInst::trapWFx().
|
inline |
Returns true if ASID is 16 bits in AArch64 (ARMv8)
Definition at line 212 of file system.hh.
References _haveLargeAsid64.
Referenced by getArmSystem(), haveLargeAsid64(), ArmISA::ISA::ISA(), and ArmISA::TableWalker::TableWalker().
|
static |
Returns true if ASID is 16 bits for the system of a specific thread context while in AArch64 (ARMv8)
Definition at line 167 of file system.cc.
References getArmSystem(), and haveLargeAsid64().
|
inline |
Returns true if this system implements the Large Physical Address Extension.
Definition at line 154 of file system.hh.
References _haveLPAE.
Referenced by getArmSystem(), haveLPAE(), ArmISA::ISA::ISA(), ArmISA::longDescFormatInUse(), and ArmISA::TableWalker::TableWalker().
|
static |
Returns true if the system of a specific thread context implements the Large Physical Address Extension.
Definition at line 108 of file system.cc.
References FullSystem, getArmSystem(), and haveLPAE().
|
inline |
Returns true if LSE is implemented (ARMv8.1)
Definition at line 221 of file system.hh.
References _haveLSE.
Referenced by ArmISA::ISA::ISA().
|
inline |
Returns true if Priviledge Access Never is implemented.
Definition at line 224 of file system.hh.
References _havePAN.
Referenced by ArmISA::ISA::ISA().
|
inline |
Returns true if this system implements the Security Extensions.
Definition at line 150 of file system.hh.
References _haveSecurity.
Referenced by ArmISA::AbortFault< DataAbort >::abortDisable(), ArmISA::Interrupt::abortDisable(), ArmISA::FastInterrupt::abortDisable(), ArmISA::canReadAArch64SysReg(), ArmISA::canWriteAArch64SysReg(), ArmISA::ArmStaticInst::checkAdvSIMDOrFPEnabled32(), ArmISA::ArmStaticInst::checkFPAdvSIMDTrap64(), ArmISA::ArmStaticInst::checkSveTrap(), ArmISA::ArmStaticInst::cpsrWriteByInstr(), ArmISA::ELUsingAArch32K(), ArmISA::FastInterrupt::fiqDisable(), getArmSystem(), ArmISA::ArmFault::getVector(), ArmISA::Reset::getVector(), ArmISA::ArmFault::getVector64(), Gicv3Distributor::Gicv3Distributor(), haveEL(), Gicv3CPUInterface::haveEL(), haveSecurity(), ArmISA::inSecureState(), Gicv3CPUInterface::inSecureState(), ArmISA::ArmFault::invoke(), ArmISA::Reset::invoke(), ArmISA::ArmFault::invoke64(), ArmISA::ISA::ISA(), ArmISA::Interrupt::routeToMonitor(), ArmISA::FastInterrupt::routeToMonitor(), ArmISA::SystemError::routeToMonitor(), ArmISA::snsBankedIndex(), ArmISA::TableWalker::TableWalker(), MiscRegOp64::trap(), ArmISA::ArmFault::update(), and GenericTimerMem::validateAccessPerm().
|
static |
Returns true if the system of a specific thread context implements the Security Extensions.
Definition at line 102 of file system.cc.
References FullSystem, getArmSystem(), and haveSecurity().
|
inline |
Is Arm Semihosting support enabled?
Definition at line 245 of file system.hh.
Referenced by getArmSystem(), and haveSemihosting().
|
static |
Is Arm Semihosting support enabled?
Definition at line 173 of file system.cc.
References FullSystem, getArmSystem(), and haveSemihosting().
|
inline |
Returns true if SVE is implemented (ARMv8)
Definition at line 215 of file system.hh.
References _haveSVE.
Referenced by ArmISA::ISA::ISA().
|
inline |
Returns true if this system implements the virtualization Extensions.
Definition at line 159 of file system.hh.
References _haveVirtualization.
Referenced by ArmISA::ArmStaticInst::checkAdvSIMDOrFPEnabled32(), ArmISA::ArmStaticInst::checkFPAdvSIMDTrap64(), ArmISA::TLB::checkPermissions64(), ArmISA::ArmStaticInst::checkSveTrap(), ArmISA::computeAddrTop(), ArmISA::ArmStaticInst::cpsrWriteByInstr(), ArmISA::ELUsingAArch32K(), ArmISA::FastInterrupt::fiqDisable(), getArmSystem(), ArmISA::ArmFault::getVector(), ArmISA::Reset::getVector(), ArmISA::ArmFault::getVector64(), haveEL(), Gicv3CPUInterface::haveEL(), haveVirtualization(), ArmISA::ArmFault::invoke(), ArmISA::Reset::invoke(), ArmISA::ArmFault::invoke64(), ArmISA::ISA::ISA(), ArmISA::SoftwareBreakpoint::routeToHyp(), ArmISA::s1TranslationRegime(), ArmISA::TableWalker::TableWalker(), MiscRegOp64::trap(), and ArmISA::ArmFault::update().
|
static |
Returns true if the system of a specific thread context implements the virtualization Extensions.
Definition at line 114 of file system.cc.
References FullSystem, getArmSystem(), and haveVirtualization().
|
inline |
Returns the highest implemented exception level.
Definition at line 197 of file system.hh.
References ArmISA::EL1, ArmISA::EL2, and ArmISA::EL3.
Referenced by ArmISA::canReadAArch64SysReg(), ArmISA::ISA::clear64(), ArmISA::ELUsingAArch32K(), getArmSystem(), ArmISA::ISA::MiscRegLUTEntryInitializer::highest(), and highestEL().
|
static |
Returns the highest implemented exception level for the system of a specific thread context.
Definition at line 126 of file system.cc.
References ArmISA::EL1, FullSystem, getArmSystem(), and highestEL().
|
inline |
Returns true if the register width of the highest implemented exception level is 64 bits (ARMv8)
Definition at line 193 of file system.hh.
References _highestELIs64.
Referenced by ArmISA::ISA::clear(), ArmISA::ELUsingAArch32K(), getArmSystem(), Trace::TarmacTracer::getInstRecord(), highestELIs64(), ArmISA::illegalExceptionReturn(), ArmISA::Reset::invoke(), ArmISA::ISA::ISA(), ArmISA::ArmFault::setSyndrome(), ArmISA::snsBankedIndex(), and ArmISA::Interrupts::takeInt().
|
static |
Returns true if the register width of the highest implemented exception level for the system of a specific thread context is 64 bits (ARMv8)
Definition at line 120 of file system.cc.
References FullSystem, getArmSystem(), and highestELIs64().
|
inline |
Definition at line 139 of file system.hh.
References System::_params, ArmSystem(), and MipsISA::p.
|
inline |
Returns the physical address mask.
Definition at line 242 of file system.hh.
References ArmISA::mask, and physAddrRange().
Referenced by getArmSystem(), and physAddrMask().
|
static |
Returns the physical address mask for the system of a specific thread context.
Definition at line 161 of file system.cc.
References getArmSystem(), and physAddrMask().
|
inline |
Returns the supported physical address range in bits.
Definition at line 232 of file system.hh.
References _physAddrRange64.
Referenced by getArmSystem(), ArmISA::ISA::ISA(), physAddrMask(), physAddrRange(), and ArmISA::TableWalker::TableWalker().
|
static |
Returns the supported physical address range in bits for the system of a specific thread context.
Definition at line 155 of file system.cc.
References getArmSystem(), and physAddrRange().
|
inline |
Returns the supported physical address range in bits if the highest implemented exception level is 64 bits (ARMv8)
Definition at line 228 of file system.hh.
References _physAddrRange64.
|
inline |
Returns the reset address if the highest implemented exception level is 64 bits (ARMv8)
Definition at line 208 of file system.hh.
References _resetAddr.
Referenced by ArmISA::ISA::clear32(), ArmISA::ISA::clear64(), getArmSystem(), ArmISA::Reset::invoke(), and resetAddr().
|
static |
Returns the reset address if the highest implemented exception level for the system of a specific thread context is 64 bits (ARMv8)
Definition at line 149 of file system.cc.
References getArmSystem(), and resetAddr().
|
inline |
Sets the pointer to the Generic Timer.
Definition at line 168 of file system.hh.
Referenced by GenericTimer::GenericTimer().
|
inline |
Sets the pointer to the GIC.
Definition at line 174 of file system.hh.
References ArmISA::gic.
Referenced by BaseGic::init(), and Gicv3::unserialize().
|
inline |
Sets the pointer to the Power Controller.
Definition at line 177 of file system.hh.
Referenced by FVPBasePwrCtrl::FVPBasePwrCtrl().
|
inline |
|
inline |
Returns the SVE vector length at reset, in quadwords.
Definition at line 218 of file system.hh.
References _sveVL.
Referenced by ArmISA::ISA::ISA().
|
protected |
Pointer to the Generic Timer wrapper.
Definition at line 85 of file system.hh.
Referenced by getGenericTimer().
|
protected |
True if this system implements the Crypto Extension.
Definition at line 80 of file system.hh.
Referenced by haveCrypto().
|
protected |
True if ASID is 16 bits in AArch64 (ARMv8)
Definition at line 113 of file system.hh.
Referenced by haveLargeAsid64().
|
protected |
True if this system implements the Large Physical Address Extension.
Definition at line 70 of file system.hh.
Referenced by haveLPAE().
|
protected |
|
protected |
|
protected |
True if this system implements the Security Extensions.
Definition at line 65 of file system.hh.
Referenced by haveSecurity().
|
protected |
|
protected |
True if this system implements the virtualization Extensions.
Definition at line 75 of file system.hh.
Referenced by haveVirtualization().
|
protected |
True if the register width of the highest implemented exception level is 64 bits (ARMv8)
Definition at line 102 of file system.hh.
Referenced by ArmSystem(), and highestELIs64().
|
protected |
Supported physical address range in bits if the highest implemented exception level is 64 bits (ARMv8)
Definition at line 108 of file system.hh.
Referenced by ArmSystem(), physAddrRange(), and physAddrRange64().
|
protected |
Pointer to the Power Controller (if any)
Definition at line 91 of file system.hh.
Referenced by getPowerController().
|
protected |
Reset address (ARMv8)
Definition at line 96 of file system.hh.
Referenced by ArmSystem(), and resetAddr().
|
protected |
bool ArmSystem::multiProc |
true if this a multiprocessor system
Definition at line 147 of file system.hh.
Referenced by ArmISA::getMPIDR().
|
protected |
True if the Semihosting interface is enabled.
Definition at line 134 of file system.hh.
Referenced by callSemihosting32(), and callSemihosting64().