gem5 v24.0.0.0
Loading...
Searching...
No Matches
gem5::RiscvISA::ISA Class Reference

#include <isa.hh>

Inheritance diagram for gem5::RiscvISA::ISA:
gem5::BaseISA gem5::SimObject gem5::EventManager gem5::Serializable gem5::Drainable gem5::statistics::Group gem5::Named

Public Types

using Params = RiscvISAParams
 
- Public Types inherited from gem5::BaseISA
typedef std::vector< const RegClass * > RegClasses
 
- Public Types inherited from gem5::SimObject
typedef SimObjectParams Params
 

Public Member Functions

void clear () override
 
PCStateBasenewPCState (Addr new_inst_addr=0) const override
 
RegVal readMiscRegNoEffect (RegIndex idx) const override
 
RegVal readMiscReg (RegIndex idx) override
 
void setMiscRegNoEffect (RegIndex idx, RegVal val) override
 
void setMiscReg (RegIndex idx, RegVal val) override
 
virtual const std::unordered_map< int, CSRMetadata > & getCSRDataMap () const
 
virtual const std::unordered_map< int, RegVal > & getCSRMaskMap () const
 
bool inUserMode () const override
 
void copyRegsFrom (ThreadContext *src) override
 
void serialize (CheckpointOut &cp) const override
 Serialize an object.
 
void unserialize (CheckpointIn &cp) override
 Unserialize an object.
 
 ISA (const Params &p)
 
void handleLockedRead (const RequestPtr &req) override
 
bool handleLockedWrite (const RequestPtr &req, Addr cacheBlockMask) override
 
void handleLockedSnoop (PacketPtr pkt, Addr cacheBlockMask) override
 
void globalClearExclusive () override
 
void resetThread () override
 
RiscvType rvType () const
 
bool getEnableRvv () const
 
void clearLoadReservation (ContextID cid)
 
unsigned getVecLenInBits ()
 Methods for getting VLEN, VLENB and ELEN values.
 
unsigned getVecLenInBytes ()
 
unsigned getVecElemLenInBits ()
 
int64_t getVectorLengthInBytes () const override
 This function returns the vector length of the Vector Length Agnostic extension of the ISA.
 
PrivilegeModeSet getPrivilegeModeSet ()
 
virtual Addr getFaultHandlerAddr (RegIndex idx, uint64_t cause, bool intr) const
 
- Public Member Functions inherited from gem5::BaseISA
virtual void takeOverFrom (ThreadContext *new_tc, ThreadContext *old_tc)
 
virtual void setThreadContext (ThreadContext *_tc)
 
virtual uint64_t getExecutingAsid () const
 
const RegClassesregClasses () const
 
const std::string getIsaName () const
 
virtual void handleLockedRead (ExecContext *xc, const RequestPtr &req)
 
virtual bool handleLockedWrite (ExecContext *xc, const RequestPtr &req, Addr cacheBlockMask)
 
virtual void handleLockedSnoop (ExecContext *xc, PacketPtr pkt, Addr cacheBlockMask)
 
virtual void handleLockedSnoopHit ()
 
virtual void handleLockedSnoopHit (ExecContext *xc)
 
virtual void globalClearExclusive (ExecContext *xc)
 
- Public Member Functions inherited from gem5::SimObject
const Paramsparams () const
 
 SimObject (const Params &p)
 
virtual ~SimObject ()
 
virtual void init ()
 init() is called after all C++ SimObjects have been created and all ports are connected.
 
virtual void loadState (CheckpointIn &cp)
 loadState() is called on each SimObject when restoring from a checkpoint.
 
virtual void initState ()
 initState() is called on each SimObject when not restoring from a checkpoint.
 
virtual void regProbePoints ()
 Register probe points for this object.
 
virtual void regProbeListeners ()
 Register probe listeners for this object.
 
ProbeManagergetProbeManager ()
 Get the probe manager for this object.
 
virtual PortgetPort (const std::string &if_name, PortID idx=InvalidPortID)
 Get a port with a given name and index.
 
virtual void startup ()
 startup() is the final initialization call before simulation.
 
DrainState drain () override
 Provide a default implementation of the drain interface for objects that don't need draining.
 
virtual void memWriteback ()
 Write back dirty buffers to memory using functional writes.
 
virtual void memInvalidate ()
 Invalidate the contents of memory buffers.
 
void serialize (CheckpointOut &cp) const override
 Serialize an object.
 
void unserialize (CheckpointIn &cp) override
 Unserialize an object.
 
- Public Member Functions inherited from gem5::EventManager
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)
 This function is not needed by the usual gem5 event loop but may be necessary in derived EventQueues which host gem5 on other schedulers.
 
void setCurTick (Tick newVal)
 
 EventManager (EventManager &em)
 Event manger manages events in the event queue.
 
 EventManager (EventManager *em)
 
 EventManager (EventQueue *eq)
 
- Public Member Functions inherited from gem5::Serializable
 Serializable ()
 
virtual ~Serializable ()
 
void serializeSection (CheckpointOut &cp, const char *name) const
 Serialize an object into a new section.
 
void serializeSection (CheckpointOut &cp, const std::string &name) const
 
void unserializeSection (CheckpointIn &cp, const char *name)
 Unserialize an a child object.
 
void unserializeSection (CheckpointIn &cp, const std::string &name)
 
- Public Member Functions inherited from gem5::Drainable
DrainState drainState () const
 Return the current drain state of an object.
 
virtual void notifyFork ()
 Notify a child process of a fork.
 
- Public Member Functions inherited from gem5::statistics::Group
 Group (Group *parent, const char *name=nullptr)
 Construct a new statistics group.
 
virtual ~Group ()
 
virtual void regStats ()
 Callback to set stat parameters.
 
virtual void resetStats ()
 Callback to reset stats.
 
virtual void preDumpStats ()
 Callback before stats are dumped.
 
void addStat (statistics::Info *info)
 Register a stat with this group.
 
const std::map< std::string, Group * > & getStatGroups () const
 Get all child groups associated with this object.
 
const std::vector< Info * > & getStats () const
 Get all stats associated with this object.
 
void addStatGroup (const char *name, Group *block)
 Add a stat block as a child of this block.
 
const InforesolveStat (std::string name) const
 Resolve a stat by its name within this group.
 
void mergeStatGroup (Group *block)
 Merge the contents (stats & children) of a block to this block.
 
 Group ()=delete
 
 Group (const Group &)=delete
 
Groupoperator= (const Group &)=delete
 
- Public Member Functions inherited from gem5::Named
 Named (const std::string &name_)
 
virtual ~Named ()=default
 
virtual std::string name () const
 

Protected Member Functions

bool hpmCounterEnabled (int counter) const
 
- Protected Member Functions inherited from gem5::BaseISA
 BaseISA (const SimObjectParams &p, const std::string &name)
 
- Protected Member Functions inherited from gem5::Drainable
 Drainable ()
 
virtual ~Drainable ()
 
virtual void drainResume ()
 Resume execution after a successful drain.
 
void signalDrainDone () const
 Signal that an object is drained.
 

Protected Attributes

RiscvType _rvType
 
std::vector< RegValmiscRegFile
 
bool enableRvv
 
const int WARN_FAILURE = 10000
 
const Addr INVALID_RESERVATION_ADDR = (Addr)-1
 
std::unordered_map< int, Addrload_reservation_addrs
 
unsigned vlen
 Length of each vector register in bits.
 
unsigned elen
 Length of each vector element in bits.
 
PrivilegeModeSet _privilegeModeSet
 The combination of privilege modes in Privilege Levels section of RISC-V privileged spec.
 
- Protected Attributes inherited from gem5::BaseISA
ThreadContexttc = nullptr
 
RegClasses _regClasses
 
std::string isaName
 
- Protected Attributes inherited from gem5::SimObject
const SimObjectParams & _params
 Cached copy of the object parameters.
 
- Protected Attributes inherited from gem5::EventManager
EventQueueeventq
 A pointer to this object's event queue.
 

Additional Inherited Members

- Static Public Member Functions inherited from gem5::SimObject
static void serializeAll (const std::string &cpt_dir)
 Create a checkpoint by serializing all SimObjects in the system.
 
static SimObjectfind (const char *name)
 Find the SimObject with the given name and return a pointer to it.
 
static void setSimObjectResolver (SimObjectResolver *resolver)
 There is a single object name resolver, and it is only set when simulation is restoring from checkpoints.
 
static SimObjectResolvergetSimObjectResolver ()
 There is a single object name resolver, and it is only set when simulation is restoring from checkpoints.
 
- Static Public Member Functions inherited from gem5::Serializable
static const std::string & currentSection ()
 Gets the fully-qualified name of the active section.
 
static void generateCheckpointOut (const std::string &cpt_dir, std::ofstream &outstream)
 Generate a checkpoint file so that the serialization can be routed to it.
 

Detailed Description

Definition at line 72 of file isa.hh.

Member Typedef Documentation

◆ Params

using gem5::RiscvISA::ISA::Params = RiscvISAParams

Definition at line 102 of file isa.hh.

Constructor & Destructor Documentation

◆ ISA()

Member Function Documentation

◆ clear()

◆ clearLoadReservation()

void gem5::RiscvISA::ISA::clearLoadReservation ( ContextID cid)
inline

Definition at line 158 of file isa.hh.

References INVALID_RESERVATION_ADDR, and load_reservation_addrs.

Referenced by gem5::RiscvISA::RiscvFault::invoke().

◆ copyRegsFrom()

◆ getCSRDataMap()

virtual const std::unordered_map< int, CSRMetadata > & gem5::RiscvISA::ISA::getCSRDataMap ( ) const
inlinevirtual

Definition at line 124 of file isa.hh.

References gem5::RiscvISA::CSRData.

◆ getCSRMaskMap()

virtual const std::unordered_map< int, RegVal > & gem5::RiscvISA::ISA::getCSRMaskMap ( ) const
inlinevirtual

Definition at line 129 of file isa.hh.

References _privilegeModeSet, _rvType, and gem5::RiscvISA::CSRMasks.

◆ getEnableRvv()

bool gem5::RiscvISA::ISA::getEnableRvv ( ) const
inline

Definition at line 155 of file isa.hh.

References enableRvv.

Referenced by clear(), and setMiscReg().

◆ getFaultHandlerAddr()

Addr gem5::RiscvISA::ISA::getFaultHandlerAddr ( RegIndex idx,
uint64_t cause,
bool intr ) const
virtual

◆ getPrivilegeModeSet()

PrivilegeModeSet gem5::RiscvISA::ISA::getPrivilegeModeSet ( )
inline

Definition at line 171 of file isa.hh.

References _privilegeModeSet.

Referenced by clear(), readMiscReg(), and setMiscReg().

◆ getVecElemLenInBits()

unsigned gem5::RiscvISA::ISA::getVecElemLenInBits ( )
inline

Definition at line 167 of file isa.hh.

References elen.

Referenced by gem5::RiscvISA::Decoder::Decoder().

◆ getVecLenInBits()

unsigned gem5::RiscvISA::ISA::getVecLenInBits ( )
inline

Methods for getting VLEN, VLENB and ELEN values.

Definition at line 165 of file isa.hh.

References vlen.

Referenced by gem5::RiscvISA::Decoder::Decoder().

◆ getVecLenInBytes()

unsigned gem5::RiscvISA::ISA::getVecLenInBytes ( )
inline

Definition at line 166 of file isa.hh.

References vlen.

◆ getVectorLengthInBytes()

int64_t gem5::RiscvISA::ISA::getVectorLengthInBytes ( ) const
inlineoverridevirtual

This function returns the vector length of the Vector Length Agnostic extension of the ISA.

For ARM ISA, this function returns the SVE/SVE2 vector length. For RISC-V ISA, this function returns the RVV vector length. For other ISAs, this function returns -1.

Reimplemented from gem5::BaseISA.

Definition at line 169 of file isa.hh.

References vlen.

◆ globalClearExclusive()

void gem5::RiscvISA::ISA::globalClearExclusive ( )
overridevirtual

◆ handleLockedRead()

void gem5::RiscvISA::ISA::handleLockedRead ( const RequestPtr & req)
overridevirtual

Reimplemented from gem5::BaseISA.

Definition at line 916 of file isa.cc.

References gem5::ThreadContext::contextId(), DPRINTF, load_reservation_addrs, and gem5::BaseISA::tc.

◆ handleLockedSnoop()

void gem5::RiscvISA::ISA::handleLockedSnoop ( PacketPtr pkt,
Addr cacheBlockMask )
overridevirtual

◆ handleLockedWrite()

bool gem5::RiscvISA::ISA::handleLockedWrite ( const RequestPtr & req,
Addr cacheBlockMask )
overridevirtual

◆ hpmCounterEnabled()

◆ inUserMode()

bool gem5::RiscvISA::ISA::inUserMode ( ) const
overridevirtual

Implements gem5::BaseISA.

Definition at line 284 of file isa.cc.

References gem5::RiscvISA::MISCREG_PRV, miscRegFile, and gem5::RiscvISA::PRV_U.

◆ newPCState()

PCStateBase * gem5::RiscvISA::ISA::newPCState ( Addr new_inst_addr = 0) const
inlineoverridevirtual

Implements gem5::BaseISA.

Definition at line 107 of file isa.hh.

References _rvType, and vlen.

◆ readMiscReg()

RegVal gem5::RiscvISA::ISA::readMiscReg ( RegIndex idx)
overridevirtual

Implements gem5::BaseISA.

Definition at line 420 of file isa.cc.

References _rvType, gem5::PCStateBase::as(), gem5::bits(), gem5::ThreadContext::contextId(), gem5::Clocked::curCycle(), DPRINTF, gem5::RiscvISA::FFLAGS_MASK, gem5::RiscvISA::FRM_OFFSET, gem5::ThreadContext::getCpuPtr(), gem5::BaseCPU::getInterruptController(), getPrivilegeModeSet(), hpmCounterEnabled(), gem5::mbits(), gem5::RiscvISA::MISCREG_CYCLE, gem5::RiscvISA::MISCREG_CYCLEH, gem5::RiscvISA::MISCREG_FCSR, gem5::RiscvISA::MISCREG_FFLAGS, gem5::RiscvISA::MISCREG_FFLAGS_EXE, gem5::RiscvISA::MISCREG_FRM, gem5::RiscvISA::MISCREG_HARTID, gem5::RiscvISA::MISCREG_HPMCOUNTER03, gem5::RiscvISA::MISCREG_HPMCOUNTER03H, gem5::RiscvISA::MISCREG_HPMCOUNTER31, gem5::RiscvISA::MISCREG_HPMCOUNTER31H, gem5::RiscvISA::MISCREG_IE, gem5::RiscvISA::MISCREG_INSTRET, gem5::RiscvISA::MISCREG_INSTRETH, gem5::RiscvISA::MISCREG_IP, gem5::RiscvISA::MISCREG_ISA, gem5::RiscvISA::MISCREG_MEPC, gem5::RiscvISA::MISCREG_SEPC, gem5::RiscvISA::MISCREG_SIE, gem5::RiscvISA::MISCREG_SIP, gem5::RiscvISA::MISCREG_SSTATUS, gem5::RiscvISA::MISCREG_STATUS, gem5::RiscvISA::MISCREG_TIME, gem5::RiscvISA::MISCREG_TIMEH, gem5::RiscvISA::MISCREG_UIE, gem5::RiscvISA::MISCREG_UIP, gem5::RiscvISA::MISCREG_USTATUS, gem5::RiscvISA::MISCREG_VCSR, gem5::RiscvISA::MISCREG_VL, gem5::RiscvISA::MISCREG_VLENB, gem5::RiscvISA::MISCREG_VTYPE, gem5::RiscvISA::MISCREG_VXRM, gem5::RiscvISA::MISCREG_VXSAT, gem5::Named::name(), panic, gem5::ThreadContext::pcState(), gem5::RiscvISA::PRV_M, gem5::RiscvISA::PRV_S, gem5::RiscvISA::PRV_U, readMiscReg(), readMiscRegNoEffect(), gem5::RiscvISA::RV32, gem5::RiscvISA::RV64, rvType(), setMiscRegNoEffect(), gem5::RiscvISA::SI_MASK, gem5::RiscvISA::SSTATUS_MASKS, gem5::ArmISA::status, gem5::BaseISA::tc, gem5::ThreadContext::threadId(), gem5::BaseCPU::totalInsts(), gem5::RiscvISA::UI_MASK, gem5::RiscvISA::USTATUS_MASKS, gem5::X86ISA::val, gem5::RiscvISA::PCState::vl(), gem5::RiscvISA::PCState::vlenb(), gem5::RiscvISA::PCState::vtype(), and warn.

Referenced by readMiscReg(), and setMiscReg().

◆ readMiscRegNoEffect()

RegVal gem5::RiscvISA::ISA::readMiscRegNoEffect ( RegIndex idx) const
overridevirtual

◆ resetThread()

void gem5::RiscvISA::ISA::resetThread ( )
overridevirtual

Reimplemented from gem5::BaseISA.

Definition at line 982 of file isa.cc.

References gem5::RiscvISA::Reset::invoke(), and gem5::BaseISA::tc.

◆ rvType()

RiscvType gem5::RiscvISA::ISA::rvType ( ) const
inline

Definition at line 153 of file isa.hh.

References _rvType.

Referenced by readMiscReg(), and setMiscReg().

◆ serialize()

void gem5::RiscvISA::ISA::serialize ( CheckpointOut & cp) const
overridevirtual

Serialize an object.

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

Parameters
cpCheckpoint state

Reimplemented from gem5::BaseISA.

Definition at line 886 of file isa.cc.

References DPRINTF, miscRegFile, gem5::BaseISA::serialize(), and SERIALIZE_CONTAINER.

◆ setMiscReg()

void gem5::RiscvISA::ISA::setMiscReg ( RegIndex idx,
RegVal val )
overridevirtual

Implements gem5::BaseISA.

Definition at line 649 of file isa.cc.

References _rvType, gem5::PCStateBase::as(), gem5::bits(), gem5::RiscvISA::FFLAGS_MASK, gem5::RiscvISA::FRM_MASK, gem5::ThreadContext::getCpuPtr(), getEnableRvv(), gem5::BaseCPU::getInterruptController(), gem5::ThreadContext::getMMUPtr(), getPrivilegeModeSet(), gem5::RiscvISA::i, gem5::RiscvISA::mask, gem5::RiscvISA::MI_MASK, gem5::RiscvISA::MISCREG_CYCLE, gem5::RiscvISA::MISCREG_FCSR, gem5::RiscvISA::MISCREG_FFLAGS, gem5::RiscvISA::MISCREG_FFLAGS_EXE, gem5::RiscvISA::MISCREG_FRM, gem5::RiscvISA::MISCREG_HPMCOUNTER31, gem5::RiscvISA::MISCREG_IE, gem5::RiscvISA::MISCREG_IP, gem5::RiscvISA::MISCREG_ISA, gem5::RiscvISA::MISCREG_PMPADDR00, gem5::RiscvISA::MISCREG_PMPADDR15, gem5::RiscvISA::MISCREG_PMPCFG0, gem5::RiscvISA::MISCREG_PMPCFG1, gem5::RiscvISA::MISCREG_PMPCFG2, gem5::RiscvISA::MISCREG_PMPCFG3, gem5::RiscvISA::MISCREG_PRV, gem5::RiscvISA::MISCREG_SATP, gem5::RiscvISA::MISCREG_SIE, gem5::RiscvISA::MISCREG_SIP, gem5::RiscvISA::MISCREG_SSTATUS, gem5::RiscvISA::MISCREG_STATUS, gem5::RiscvISA::MISCREG_TSELECT, gem5::RiscvISA::MISCREG_UIE, gem5::RiscvISA::MISCREG_UIP, gem5::RiscvISA::MISCREG_USTATUS, gem5::RiscvISA::MISCREG_VCSR, gem5::RiscvISA::MISCREG_VXRM, gem5::RiscvISA::MISCREG_VXSAT, gem5::RiscvISA::MiscRegNames, gem5::RiscvISA::MSTATUS_MASKS, gem5::Named::name(), panic, gem5::ThreadContext::pcState(), gem5::RiscvISA::PRV_M, readMiscReg(), readMiscRegNoEffect(), gem5::RiscvISA::RV32, gem5::RiscvISA::RV64, rvType(), setMiscReg(), setMiscRegNoEffect(), gem5::RiscvISA::SI_MASK, gem5::RiscvISA::SSTATUS_MASKS, gem5::RiscvISA::STATUS_SXL_MASK, gem5::RiscvISA::STATUS_UXL_MASK, gem5::BaseISA::tc, gem5::ThreadContext::threadId(), gem5::RiscvISA::UI_MASK, gem5::RiscvISA::USTATUS_MASKS, gem5::X86ISA::val, and warn.

Referenced by setMiscReg().

◆ setMiscRegNoEffect()

void gem5::RiscvISA::ISA::setMiscRegNoEffect ( RegIndex idx,
RegVal val )
overridevirtual

◆ unserialize()

void gem5::RiscvISA::ISA::unserialize ( CheckpointIn & cp)
overridevirtual

Unserialize an object.

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

Parameters
cpCheckpoint state

Implements gem5::Serializable.

Definition at line 895 of file isa.cc.

References DPRINTF, miscRegFile, and UNSERIALIZE_CONTAINER.

Member Data Documentation

◆ _privilegeModeSet

PrivilegeModeSet gem5::RiscvISA::ISA::_privilegeModeSet
protected

The combination of privilege modes in Privilege Levels section of RISC-V privileged spec.

Definition at line 99 of file isa.hh.

Referenced by getCSRMaskMap(), and getPrivilegeModeSet().

◆ _rvType

RiscvType gem5::RiscvISA::ISA::_rvType
protected

Definition at line 75 of file isa.hh.

Referenced by clear(), getCSRMaskMap(), newPCState(), readMiscReg(), rvType(), and setMiscReg().

◆ elen

unsigned gem5::RiscvISA::ISA::elen
protected

Length of each vector element in bits.

ELEN in Ch. 2 of RISC-V vector spec

Definition at line 94 of file isa.hh.

Referenced by getVecElemLenInBits().

◆ enableRvv

bool gem5::RiscvISA::ISA::enableRvv
protected

Definition at line 77 of file isa.hh.

Referenced by getEnableRvv().

◆ INVALID_RESERVATION_ADDR

const Addr gem5::RiscvISA::ISA::INVALID_RESERVATION_ADDR = (Addr)-1
protected

◆ load_reservation_addrs

std::unordered_map<int, Addr> gem5::RiscvISA::ISA::load_reservation_addrs
protected

◆ miscRegFile

std::vector<RegVal> gem5::RiscvISA::ISA::miscRegFile
protected

◆ vlen

unsigned gem5::RiscvISA::ISA::vlen
protected

Length of each vector register in bits.

VLEN in Ch. 2 of RISC-V vector spec

Definition at line 89 of file isa.hh.

Referenced by getVecLenInBits(), getVecLenInBytes(), getVectorLengthInBytes(), and newPCState().

◆ WARN_FAILURE

const int gem5::RiscvISA::ISA::WARN_FAILURE = 10000
protected

Definition at line 82 of file isa.hh.

Referenced by handleLockedWrite().


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

Generated on Tue Jun 18 2024 16:24:21 for gem5 by doxygen 1.11.0