gem5
v19.0.0.0
|
Semihosting for AArch32 and AArch64. More...
#include <semihosting.hh>
Classes | |
class | File |
class | FileBase |
Internal state for open files. More... | |
class | FileFeatures |
Implementation of the ':semihosting-features' magic file. More... | |
struct | SemiCall |
Semihosting call information structure. More... | |
Public Member Functions | |
ArmSemihosting (const ArmSemihostingParams *p) | |
uint64_t | call64 (ThreadContext *tc, uint32_t op, uint64_t param) |
Perform an Arm Semihosting call from aarch64 code. More... | |
uint32_t | call32 (ThreadContext *tc, uint32_t op, uint32_t param) |
Perform an Arm Semihosting call from aarch32 code. More... | |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
![]() | |
const Params * | params () const |
SimObject (const Params *_params) | |
virtual | ~SimObject () |
virtual const std::string | name () const |
virtual void | init () |
init() is called after all C++ SimObjects have been created and all ports are connected. More... | |
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... | |
virtual Port & | getPort (const std::string &if_name, PortID idx=InvalidPortID) |
Get a port with a given name and index. More... | |
virtual void | startup () |
startup() is the final initialization call before simulation. 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... | |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
![]() | |
EventManager (EventManager &em) | |
EventManager (EventManager *em) | |
EventManager (EventQueue *eq) | |
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) |
![]() | |
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 ()=delete | |
Group (const Group &)=delete | |
Group & | operator= (const Group &)=delete |
Group (Group *parent, const char *name=nullptr) | |
Construct a new statistics group. More... | |
virtual | ~Group () |
virtual void | regStats () |
Callback to set stat parameters. More... | |
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... | |
Protected Types | |
typedef uint64_t | SemiErrno |
Protected Member Functions | |
unsigned | calcTickShift () const |
uint64_t | semiTick (Tick tick) const |
void | semiExit (uint64_t code, uint64_t subcode) |
PortProxy & | physProxy (ThreadContext *tc) |
std::string | readString (ThreadContext *tc, Addr ptr, size_t len) |
![]() | |
Drainable () | |
virtual | ~Drainable () |
virtual void | drainResume () |
Resume execution after a successful drain. More... | |
void | signalDrainDone () const |
Signal that an object is drained. More... | |
Protected Attributes | |
const std::string | cmdLine |
const Addr | memReserve |
const Addr | stackSize |
const time_t | timeBase |
Base time when the simulation started. More... | |
const unsigned | tickShift |
Number of bits to right shift gem5 ticks to fit in a uint32_t. More... | |
SemiErrno | semiErrno |
std::string | filesRootDir |
std::vector< std::unique_ptr< FileBase > > | files |
FILE * | stdin |
FILE * | stdout |
FILE * | stderr |
std::unique_ptr< PortProxy > | physProxyS |
![]() | |
const SimObjectParams * | _params |
Cached copy of the object parameters. More... | |
![]() | |
EventQueue * | eventq |
A pointer to this object's event queue. More... | |
Private Types | |
typedef std::pair< uint64_t, SemiErrno > | RetErrno |
Private Member Functions | |
SEMI_CALL (Open) | |
SEMI_CALL (Close) | |
SEMI_CALL (WriteC) | |
SEMI_CALL (Write0) | |
SEMI_CALL (Write) | |
SEMI_CALL (Read) | |
SEMI_CALL (ReadC) | |
SEMI_CALL (IsError) | |
SEMI_CALL (IsTTY) | |
SEMI_CALL (Seek) | |
SEMI_CALL (FLen) | |
SEMI_CALL (TmpNam) | |
SEMI_CALL (Remove) | |
SEMI_CALL (Rename) | |
SEMI_CALL (Clock) | |
SEMI_CALL (Time) | |
SEMI_CALL (System) | |
SEMI_CALL (Errno) | |
SEMI_CALL (GetCmdLine) | |
SEMI_CALL (HeapInfo) | |
SEMI_CALL (Exit) | |
SEMI_CALL (ExitExtended) | |
SEMI_CALL (Elapsed) | |
SEMI_CALL (TickFreq) | |
Static Private Member Functions | |
static RetErrno | retError (SemiErrno e) |
static RetErrno | retOK (uint64_t r) |
static const SemiCall * | getCall (uint32_t op, bool aarch64) |
static FILE * | getSTDIO (const char *stream_name, const std::string &name, const char *mode) |
Static Private Attributes | |
static const std::map< uint32_t, SemiCall > | calls |
static const std::vector< const char * > | fmodes |
static const std::map< uint64_t, const char * > | exitCodes |
static const std::vector< uint8_t > | features |
static const std::map< const std::string, FILE * > | stdioMap |
Additional Inherited Members | |
![]() | |
typedef SimObjectParams | Params |
![]() | |
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 () |
Get the fully-qualified name of the active section. More... | |
static void | serializeAll (const std::string &cpt_dir) |
static void | unserializeGlobals (CheckpointIn &cp) |
![]() | |
static int | ckptCount = 0 |
static int | ckptMaxCount = 0 |
static int | ckptPrevCount = -1 |
Semihosting for AArch32 and AArch64.
This class implements the Arm semihosting interface. This interface allows baremetal code access service, such as IO, from the simulator. It is conceptually a simplified version of gem5's more general syscall emulation mode.
Exits calls (SYS_EXIT, SYS_EXIT_EXTENDED) from the guest get translated into simualtion exits. Well-known exit codes are translated to messages on the form 'semi:ADP_.*' while unknown codes are returned in hex ('semi:0x..'). The subcode is reported in the gem5 exit event.
Definition at line 69 of file semihosting.hh.
|
private |
Definition at line 267 of file semihosting.hh.
|
protected |
Definition at line 98 of file semihosting.hh.
ArmSemihosting::ArmSemihosting | ( | const ArmSemihostingParams * | p | ) |
Definition at line 133 of file semihosting.cc.
References calcTickShift(), files, filesRootDir, getSTDIO(), inform, mkutctime(), MipsISA::p, semiErrno, stderr, stdin, stdout, and tickShift.
Referenced by ArmSemihosting::File::unserialize().
|
inlineprotected |
Definition at line 253 of file semihosting.hh.
References findMsbSet(), and SimClock::Frequency.
Referenced by ArmSemihosting().
uint32_t ArmSemihosting::call32 | ( | ThreadContext * | tc, |
uint32_t | op, | ||
uint32_t | param | ||
) |
Perform an Arm Semihosting call from aarch32 code.
Definition at line 194 of file semihosting.cc.
References ArmSemihosting::SemiCall::argc32, ArmISA::byteOrder(), ArmSemihosting::SemiCall::call, DPRINTF, getCall(), ArmISA::i, ArmSemihosting::SemiCall::implemented32(), ArmSemihosting::SemiCall::name, physProxy(), PortProxy::read(), semiErrno, and warn.
Referenced by ArmSystem::callSemihosting32().
uint64_t ArmSemihosting::call64 | ( | ThreadContext * | tc, |
uint32_t | op, | ||
uint64_t | param | ||
) |
Perform an Arm Semihosting call from aarch64 code.
Definition at line 159 of file semihosting.cc.
References ArmSemihosting::SemiCall::argc64, ArmISA::byteOrder(), ArmSemihosting::SemiCall::call, DPRINTF, getCall(), ArmISA::i, ArmSemihosting::SemiCall::implemented64(), ArmSemihosting::SemiCall::name, physProxy(), PortProxy::read(), semiErrno, and warn.
Referenced by ArmSystem::callSemihosting64().
|
staticprivate |
Definition at line 689 of file semihosting.cc.
References calls.
|
staticprivate |
Definition at line 700 of file semihosting.cc.
References ArmISA::f, fatal, ArmISA::mode, and stdioMap.
Referenced by ArmSemihosting().
|
protected |
Definition at line 256 of file semihosting.cc.
References System::cacheLineSize(), ThreadContext::getPhysProxy(), System::getSystemPort(), ThreadContext::getSystemPtr(), ArmISA::inSecureState(), and physProxyS.
Referenced by call32(), call64(), readString(), semiExit(), and semiTick().
|
protected |
Definition at line 273 of file semihosting.cc.
References ArmISA::aarch64, addr, X86ISA::base, ArmISA::byteOrder(), ArmISA::c, cmdLine, ArmSemihosting::FileBase::create(), curTick(), data, DPRINTF, fatal_if, files, filesRootDir, fmodes, PhysicalMemory::getConfAddrRanges(), System::getPhysMem(), ThreadContext::getSystemPtr(), inform, ArmISA::len, memReserve, ArmISA::mode, panic_if, Serializable::path, physProxy(), PortProxy::read(), PortProxy::readBlob(), retError(), retOK(), SimClock::Float::s, SimClock::Int::s, semiErrno, semiExit(), stackSize, ArmISA::status, timeBase, ULL, warn, warn_if, PortProxy::write(), and PortProxy::writeBlob().
Referenced by semiTick().
Definition at line 268 of file semihosting.hh.
Referenced by readString().
|
inlinestaticprivate |
Definition at line 272 of file semihosting.hh.
Referenced by readString(), and semiExit().
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
protected |
Definition at line 651 of file semihosting.cc.
References ArmISA::aarch64, ArmISA::byteOrder(), csprintf(), curTick(), exitCodes, exitSimLoop(), SimClock::Frequency, physProxy(), retOK(), semiTick(), and PortProxy::write().
Referenced by readString(), and semiTick().
|
inlineprotected |
Definition at line 257 of file semihosting.hh.
References ArmISA::len, physProxy(), readString(), semiExit(), and tickShift.
Referenced by semiExit().
|
overridevirtual |
Serialize an object.
Output an object's state into the current checkpoint section.
cp | Checkpoint state |
Implements Serializable.
Definition at line 229 of file semihosting.cc.
References csprintf(), files, ArmISA::i, paramOut(), semiErrno, and SERIALIZE_SCALAR.
|
overridevirtual |
Unserialize an object.
Read an object's state from the current checkpoint section.
cp | Checkpoint state |
Implements Serializable.
Definition at line 244 of file semihosting.cc.
References ArmSemihosting::FileBase::create(), csprintf(), files, ArmISA::i, paramIn(), semiErrno, and UNSERIALIZE_SCALAR.
|
staticprivate |
Definition at line 352 of file semihosting.hh.
Referenced by getCall().
|
protected |
Definition at line 84 of file semihosting.hh.
Referenced by readString().
|
staticprivate |
Definition at line 354 of file semihosting.hh.
Referenced by semiExit().
|
staticprivate |
Definition at line 355 of file semihosting.hh.
Referenced by ArmSemihosting::FileFeatures::read(), and ArmSemihosting::FileFeatures::seek().
|
protected |
Definition at line 247 of file semihosting.hh.
Referenced by ArmSemihosting(), readString(), serialize(), and unserialize().
|
protected |
Definition at line 246 of file semihosting.hh.
Referenced by ArmSemihosting(), and readString().
|
staticprivate |
Definition at line 353 of file semihosting.hh.
Referenced by readString().
|
protected |
Definition at line 85 of file semihosting.hh.
Referenced by readString().
|
protected |
Definition at line 264 of file semihosting.hh.
Referenced by physProxy().
|
protected |
Definition at line 99 of file semihosting.hh.
Referenced by ArmSemihosting(), call32(), call64(), readString(), serialize(), and unserialize().
|
protected |
Definition at line 86 of file semihosting.hh.
Referenced by readString().
|
protected |
Definition at line 250 of file semihosting.hh.
Referenced by ArmSemihosting(), ArmSemihosting::File::isTTY(), and ArmSemihosting::File::openImpl().
|
protected |
Definition at line 248 of file semihosting.hh.
Referenced by ArmSemihosting(), ArmSemihosting::File::isTTY(), and ArmSemihosting::File::openImpl().
|
staticprivate |
Definition at line 356 of file semihosting.hh.
Referenced by getSTDIO().
|
protected |
Definition at line 249 of file semihosting.hh.
Referenced by ArmSemihosting(), ArmSemihosting::File::isTTY(), and ArmSemihosting::File::openImpl().
|
protected |
Number of bits to right shift gem5 ticks to fit in a uint32_t.
Definition at line 95 of file semihosting.hh.
Referenced by ArmSemihosting(), and semiTick().
|
protected |
Base time when the simulation started.
This is used to calculate the time of date when the guest call SYS_TIME.
Definition at line 92 of file semihosting.hh.
Referenced by readString().