Lines Matching refs:system
43 #include "arch/arm/system.hh"
56 #include "sim/system.hh"
63 system(NULL),
82 system = dynamic_cast<ArmSystem *>(p->system);
84 // Cache system-level properties
85 if (FullSystem && system) {
86 highestELIs64 = system->highestELIs64();
87 haveSecurity = system->haveSecurity();
88 haveLPAE = system->haveLPAE();
89 haveCrypto = system->haveCrypto();
90 haveVirtualization = system->haveVirtualization();
91 haveLargeAsid64 = system->haveLargeAsid64();
92 physAddrRange = system->physAddrRange();
93 haveSVE = system->haveSVE();
94 havePAN = system->havePAN();
95 sveVL = system->sveVL();
96 haveLSE = system->haveLSE();
204 if (FullSystem && system->highestELIs64()) {
221 miscRegs[MISCREG_MVBAR] = system->resetAddr();
250 // Enforce consistency with system-level settings
270 Addr rvbar = system->resetAddr();
271 switch (system->highestEL()) {
372 // Enforce consistency with system-level settings...
413 if (system) {
414 Gicv3 *gicv3 = dynamic_cast<Gicv3 *>(system->getGIC());
469 warn("Unimplemented system register %s read.\n",
472 panic("Unimplemented system register %s read.\n",
514 return readMPIDR(system, tc);
714 bool haveTimer = (system->getGenericTimer() != NULL);
819 warn("Unimplemented system register %s write with %#x.\n",
822 panic("Unimplemented system register %s write with %#x.\n",
2101 assert(system);
2102 GenericTimer *generic_timer(system->getGenericTimer());
2104 panic("Trying to get a generic timer from a system that hasn't "
2130 "in full-system mode");