gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Classes | Public Member Functions | Protected Types | Protected Member Functions | Protected Attributes | Private Types | Private Member Functions | Static Private Member Functions | Static Private Attributes | List of all members
ArmSemihosting Class Reference

Semihosting for AArch32 and AArch64. More...

#include <semihosting.hh>

Inheritance diagram for ArmSemihosting:
SimObject EventManager Serializable Drainable Stats::Group

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...
 
- Public Member Functions inherited from SimObject
const Paramsparams () 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...
 
ProbeManagergetProbeManager ()
 Get the probe manager for this object. More...
 
virtual PortgetPort (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...
 
- Public Member Functions inherited from EventManager
 EventManager (EventManager &em)
 
 EventManager (EventManager *em)
 
 EventManager (EventQueue *eq)
 
EventQueueeventQueue () 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)
 
- Public Member Functions inherited from Serializable
 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)
 
- Public Member Functions inherited from Drainable
DrainState drainState () const
 Return the current drain state of an object. More...
 
virtual void notifyFork ()
 Notify a child process of a fork. More...
 
- Public Member Functions inherited from Stats::Group
 Group ()=delete
 
 Group (const Group &)=delete
 
Groupoperator= (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)
 
PortProxyphysProxy (ThreadContext *tc)
 
std::string readString (ThreadContext *tc, Addr ptr, size_t len)
 
- Protected Member Functions inherited from Drainable
 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< PortProxyphysProxyS
 
- Protected Attributes inherited from SimObject
const SimObjectParams * _params
 Cached copy of the object parameters. More...
 
- Protected Attributes inherited from EventManager
EventQueueeventq
 A pointer to this object's event queue. More...
 

Private Types

typedef std::pair< uint64_t, SemiErrnoRetErrno
 

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 SemiCallgetCall (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, SemiCallcalls
 
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

- Public Types inherited from SimObject
typedef SimObjectParams Params
 
- Static Public Member Functions inherited from SimObject
static void serializeAll (CheckpointOut &cp)
 Serialize all SimObjects in the system. More...
 
static SimObjectfind (const char *name)
 Find the SimObject with the given name and return a pointer to it. More...
 
- Static Public Member Functions inherited from Serializable
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 Public Attributes inherited from Serializable
static int ckptCount = 0
 
static int ckptMaxCount = 0
 
static int ckptPrevCount = -1
 

Detailed Description

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.

Member Typedef Documentation

◆ RetErrno

typedef std::pair<uint64_t, SemiErrno> ArmSemihosting::RetErrno
private

Definition at line 267 of file semihosting.hh.

◆ SemiErrno

typedef uint64_t ArmSemihosting::SemiErrno
protected

Definition at line 98 of file semihosting.hh.

Constructor & Destructor Documentation

◆ ArmSemihosting()

ArmSemihosting::ArmSemihosting ( const ArmSemihostingParams *  p)

Member Function Documentation

◆ calcTickShift()

unsigned ArmSemihosting::calcTickShift ( ) const
inlineprotected

Definition at line 253 of file semihosting.hh.

References findMsbSet(), and SimClock::Frequency.

Referenced by ArmSemihosting().

◆ call32()

uint32_t ArmSemihosting::call32 ( ThreadContext tc,
uint32_t  op,
uint32_t  param 
)

◆ call64()

uint64_t ArmSemihosting::call64 ( ThreadContext tc,
uint32_t  op,
uint64_t  param 
)

◆ getCall()

const ArmSemihosting::SemiCall * ArmSemihosting::getCall ( uint32_t  op,
bool  aarch64 
)
staticprivate

Definition at line 689 of file semihosting.cc.

References calls.

Referenced by call32(), and call64().

◆ getSTDIO()

FILE * ArmSemihosting::getSTDIO ( const char *  stream_name,
const std::string &  name,
const char *  mode 
)
staticprivate

Definition at line 700 of file semihosting.cc.

References ArmISA::f, fatal, ArmISA::mode, and stdioMap.

Referenced by ArmSemihosting().

◆ physProxy()

PortProxy & ArmSemihosting::physProxy ( ThreadContext tc)
protected

◆ readString()

std::string ArmSemihosting::readString ( ThreadContext tc,
Addr  ptr,
size_t  len 
)
protected

◆ retError()

static RetErrno ArmSemihosting::retError ( SemiErrno  e)
inlinestaticprivate

Definition at line 268 of file semihosting.hh.

Referenced by readString().

◆ retOK()

static RetErrno ArmSemihosting::retOK ( uint64_t  r)
inlinestaticprivate

Definition at line 272 of file semihosting.hh.

Referenced by readString(), and semiExit().

◆ SEMI_CALL() [1/24]

ArmSemihosting::SEMI_CALL ( Open  )
private

◆ SEMI_CALL() [2/24]

ArmSemihosting::SEMI_CALL ( Close  )
private

◆ SEMI_CALL() [3/24]

ArmSemihosting::SEMI_CALL ( WriteC  )
private

◆ SEMI_CALL() [4/24]

ArmSemihosting::SEMI_CALL ( Write0  )
private

◆ SEMI_CALL() [5/24]

ArmSemihosting::SEMI_CALL ( Write  )
private

◆ SEMI_CALL() [6/24]

ArmSemihosting::SEMI_CALL ( Read  )
private

◆ SEMI_CALL() [7/24]

ArmSemihosting::SEMI_CALL ( ReadC  )
private

◆ SEMI_CALL() [8/24]

ArmSemihosting::SEMI_CALL ( IsError  )
private

◆ SEMI_CALL() [9/24]

ArmSemihosting::SEMI_CALL ( IsTTY  )
private

◆ SEMI_CALL() [10/24]

ArmSemihosting::SEMI_CALL ( Seek  )
private

◆ SEMI_CALL() [11/24]

ArmSemihosting::SEMI_CALL ( FLen  )
private

◆ SEMI_CALL() [12/24]

ArmSemihosting::SEMI_CALL ( TmpNam  )
private

◆ SEMI_CALL() [13/24]

ArmSemihosting::SEMI_CALL ( Remove  )
private

◆ SEMI_CALL() [14/24]

ArmSemihosting::SEMI_CALL ( Rename  )
private

◆ SEMI_CALL() [15/24]

ArmSemihosting::SEMI_CALL ( Clock  )
private

◆ SEMI_CALL() [16/24]

ArmSemihosting::SEMI_CALL ( Time  )
private

◆ SEMI_CALL() [17/24]

ArmSemihosting::SEMI_CALL ( System  )
private

◆ SEMI_CALL() [18/24]

ArmSemihosting::SEMI_CALL ( Errno  )
private

◆ SEMI_CALL() [19/24]

ArmSemihosting::SEMI_CALL ( GetCmdLine  )
private

◆ SEMI_CALL() [20/24]

ArmSemihosting::SEMI_CALL ( HeapInfo  )
private

◆ SEMI_CALL() [21/24]

ArmSemihosting::SEMI_CALL ( Exit  )
private

◆ SEMI_CALL() [22/24]

ArmSemihosting::SEMI_CALL ( ExitExtended  )
private

◆ SEMI_CALL() [23/24]

ArmSemihosting::SEMI_CALL ( Elapsed  )
private

◆ SEMI_CALL() [24/24]

ArmSemihosting::SEMI_CALL ( TickFreq  )
private

◆ semiExit()

void ArmSemihosting::semiExit ( uint64_t  code,
uint64_t  subcode 
)
protected

◆ semiTick()

uint64_t ArmSemihosting::semiTick ( Tick  tick) const
inlineprotected

Definition at line 257 of file semihosting.hh.

References ArmISA::len, physProxy(), readString(), semiExit(), and tickShift.

Referenced by semiExit().

◆ serialize()

void ArmSemihosting::serialize ( CheckpointOut cp) const
overridevirtual

Serialize an object.

Output an object's state into the current checkpoint section.

Parameters
cpCheckpoint state

Implements Serializable.

Definition at line 229 of file semihosting.cc.

References csprintf(), files, ArmISA::i, paramOut(), semiErrno, and SERIALIZE_SCALAR.

◆ unserialize()

void ArmSemihosting::unserialize ( CheckpointIn cp)
overridevirtual

Unserialize an object.

Read an object's state from the current checkpoint section.

Parameters
cpCheckpoint state

Implements Serializable.

Definition at line 244 of file semihosting.cc.

References ArmSemihosting::FileBase::create(), csprintf(), files, ArmISA::i, paramIn(), semiErrno, and UNSERIALIZE_SCALAR.

Member Data Documentation

◆ calls

const std::map< uint32_t, ArmSemihosting::SemiCall > ArmSemihosting::calls
staticprivate

Definition at line 352 of file semihosting.hh.

Referenced by getCall().

◆ cmdLine

const std::string ArmSemihosting::cmdLine
protected

Definition at line 84 of file semihosting.hh.

Referenced by readString().

◆ exitCodes

const std::map< uint64_t, const char * > ArmSemihosting::exitCodes
staticprivate
Initial value:
{
{ 0x20000, "semi:ADP_Stopped_BranchThroughZero" },
{ 0x20001, "semi:ADP_Stopped_UndefinedInstr" },
{ 0x20002, "semi:ADP_Stopped_SoftwareInterrupt" },
{ 0x20003, "semi:ADP_Stopped_PrefetchAbort" },
{ 0x20004, "semi:ADP_Stopped_DataAbort" },
{ 0x20005, "semi:ADP_Stopped_AddressException" },
{ 0x20006, "semi:ADP_Stopped_IRQ" },
{ 0x20007, "semi:ADP_Stopped_FIQ" },
{ 0x20020, "semi:ADP_Stopped_BreakPoint" },
{ 0x20021, "semi:ADP_Stopped_WatchPoint" },
{ 0x20022, "semi:ADP_Stopped_StepComplete" },
{ 0x20023, "semi:ADP_Stopped_RunTimeErrorUnknown" },
{ 0x20024, "semi:ADP_Stopped_InternalError" },
{ 0x20025, "semi:ADP_Stopped_UserInterruption" },
{ 0x20026, "semi:ADP_Stopped_ApplicationExit" },
{ 0x20027, "semi:ADP_Stopped_StackOverflow" },
{ 0x20028, "semi:ADP_Stopped_DivisionByZero" },
{ 0x20029, "semi:ADP_Stopped_DivisionByZero" },
}

Definition at line 354 of file semihosting.hh.

Referenced by semiExit().

◆ features

const std::vector< uint8_t > ArmSemihosting::features
staticprivate
Initial value:
{
0x53, 0x48, 0x46, 0x42,
0x3,
}

Definition at line 355 of file semihosting.hh.

Referenced by ArmSemihosting::FileFeatures::read(), and ArmSemihosting::FileFeatures::seek().

◆ files

std::vector<std::unique_ptr<FileBase> > ArmSemihosting::files
protected

Definition at line 247 of file semihosting.hh.

Referenced by ArmSemihosting(), readString(), serialize(), and unserialize().

◆ filesRootDir

std::string ArmSemihosting::filesRootDir
protected

Definition at line 246 of file semihosting.hh.

Referenced by ArmSemihosting(), and readString().

◆ fmodes

const std::vector< const char * > ArmSemihosting::fmodes
staticprivate
Initial value:
{
"r", "rb", "r+", "r+b",
"w", "wb", "w+", "w+b",
"a", "ab", "a+", "a+b",
}

Definition at line 353 of file semihosting.hh.

Referenced by readString().

◆ memReserve

const Addr ArmSemihosting::memReserve
protected

Definition at line 85 of file semihosting.hh.

Referenced by readString().

◆ physProxyS

std::unique_ptr<PortProxy> ArmSemihosting::physProxyS
protected

Definition at line 264 of file semihosting.hh.

Referenced by physProxy().

◆ semiErrno

SemiErrno ArmSemihosting::semiErrno
protected

Definition at line 99 of file semihosting.hh.

Referenced by ArmSemihosting(), call32(), call64(), readString(), serialize(), and unserialize().

◆ stackSize

const Addr ArmSemihosting::stackSize
protected

Definition at line 86 of file semihosting.hh.

Referenced by readString().

◆ stderr

FILE* ArmSemihosting::stderr
protected

◆ stdin

FILE* ArmSemihosting::stdin
protected

◆ stdioMap

const std::map< const std::string, FILE * > ArmSemihosting::stdioMap
staticprivate
Initial value:
{
{"cin", ::stdin},
{"stdin", ::stdin},
{"cout", ::stdout},
{"stdout", ::stdout},
{"cerr", ::stderr},
{"stderr", ::stderr},
}

Definition at line 356 of file semihosting.hh.

Referenced by getSTDIO().

◆ stdout

FILE* ArmSemihosting::stdout
protected

◆ tickShift

const unsigned ArmSemihosting::tickShift
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().

◆ timeBase

const time_t ArmSemihosting::timeBase
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().


The documentation for this class was generated from the following files:

Generated on Fri Feb 28 2020 16:27:07 for gem5 by doxygen 1.8.13