gem5
v21.0.1.0
|
#include <tester_thread.hh>
Classes | |
class | DeadlockCheckEvent |
struct | OutstandingReq |
class | TesterThreadEvent |
Public Types | |
typedef TesterThreadParams | Params |
typedef AddressManager::Location | Location |
typedef AddressManager::Value | Value |
![]() | |
using | Params = ClockedObjectParams |
Parameters of ClockedObject. More... | |
![]() | |
typedef SimObjectParams | Params |
Public Member Functions | |
TesterThread (const Params &p) | |
virtual | ~TesterThread () |
void | wakeup () |
void | scheduleWakeup () |
void | checkDeadlock () |
void | scheduleDeadlockCheckEvent () |
void | attachTesterThreadToPorts (ProtocolTester *_tester, ProtocolTester::SeqPort *_port, ProtocolTester::GMTokenPort *_tokenPort=nullptr, ProtocolTester::SeqPort *_sqcPort=nullptr, ProtocolTester::SeqPort *_scalarPort=nullptr) |
const std::string & | getName () const |
virtual void | hitCallback (PacketPtr pkt)=0 |
int | getTesterThreadId () const |
int | getNumLanes () const |
bool | checkDRF (Location atomic_loc, Location loc, bool isStore) const |
void | printAllOutstandingReqs (std::stringstream &ss) const |
![]() | |
ClockedObject (const ClockedObjectParams &p) | |
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 &p) | |
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... | |
![]() | |
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) |
This function is not needed by the usual gem5 event loop but may be necessary in derived EventQueues which host gem5 on other schedulers. More... | |
void | setCurTick (Tick newVal) |
EventManager (EventManager &em) | |
Event manger manages events in the event queue. More... | |
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 | 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... | |
const Info * | resolveStat (std::string name) const |
Resolve a stat by its name within this group. More... | |
void | mergeStatGroup (Group *block) |
Merge the contents (stats & children) of a block to this block. More... | |
Group ()=delete | |
Group (const Group &)=delete | |
Group & | operator= (const Group &)=delete |
![]() | |
void | updateClockPeriod () |
Update the tick to the current tick. More... | |
Tick | clockEdge (Cycles cycles=Cycles(0)) const |
Determine the tick when a cycle begins, by default the current one, but the argument also enables the caller to determine a future cycle. More... | |
Cycles | curCycle () const |
Determine the current cycle, corresponding to a tick aligned to a clock edge. More... | |
Tick | nextCycle () const |
Based on the clock of the object, determine the start tick of the first cycle that is at least one cycle in the future. More... | |
uint64_t | frequency () const |
Tick | clockPeriod () const |
double | voltage () const |
Cycles | ticksToCycles (Tick t) const |
Tick | cyclesToTicks (Cycles c) const |
Protected Types | |
typedef std::vector< Episode * > | EpisodeHistory |
typedef std::vector< OutstandingReq > | OutstandingReqList |
typedef std::unordered_map< Addr, OutstandingReqList > | OutstandingReqTable |
Protected Member Functions | |
void | issueNewEpisode () |
bool | isNextActionReady () |
void | issueNextAction () |
virtual void | issueLoadOps ()=0 |
virtual void | issueStoreOps ()=0 |
virtual void | issueAtomicOps ()=0 |
virtual void | issueAcquireOp ()=0 |
virtual void | issueReleaseOp ()=0 |
void | addOutstandingReqs (OutstandingReqTable &req_table, Addr addr, int lane, Location loc, Value stored_val=AddressManager::INVALID_VALUE) |
OutstandingReq | popOutstandingReq (OutstandingReqTable &req_table, Addr address) |
void | validateAtomicResp (Location loc, int lane, Value ret_val) |
void | validateLoadResp (Location loc, int lane, Value ret_val) |
void | printOutstandingReqs (const OutstandingReqTable &table, std::stringstream &ss) const |
![]() | |
Drainable () | |
virtual | ~Drainable () |
virtual void | drainResume () |
Resume execution after a successful drain. More... | |
void | signalDrainDone () const |
Signal that an object is drained. More... | |
![]() | |
Clocked (ClockDomain &clk_domain) | |
Create a clocked object and set the clock domain based on the parameters. More... | |
Clocked (Clocked &)=delete | |
Clocked & | operator= (Clocked &)=delete |
virtual | ~Clocked () |
Virtual destructor due to inheritance. More... | |
void | resetClock () const |
Reset the object's clock using the current global tick value. More... | |
virtual void | clockPeriodUpdated () |
A hook subclasses can implement so they can do any extra work that's needed when the clock rate is changed. More... | |
Protected Attributes | |
TesterThreadEvent | threadEvent |
DeadlockCheckEvent | deadlockCheckEvent |
int | threadId |
int | numLanes |
std::string | threadName |
ProtocolTester * | tester |
AddressManager * | addrManager |
ProtocolTester::SeqPort * | port |
ProtocolTester::GMTokenPort * | tokenPort |
ProtocolTester::SeqPort * | scalarPort |
ProtocolTester::SeqPort * | sqcPort |
EpisodeHistory | episodeHistory |
Episode * | curEpisode |
const Episode::Action * | curAction |
int | pendingLdStCount |
int | pendingFenceCount |
int | pendingAtomicCount |
Cycles | lastActiveCycle |
Cycles | deadlockThreshold |
OutstandingReqTable | outstandingLoads |
OutstandingReqTable | outstandingStores |
OutstandingReqTable | outstandingAtomics |
![]() | |
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 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) |
Serializes all the SimObjects. More... | |
static void | unserializeGlobals (CheckpointIn &cp) |
![]() | |
PowerState * | powerState |
Definition at line 48 of file tester_thread.hh.
|
protected |
Definition at line 152 of file tester_thread.hh.
Definition at line 55 of file tester_thread.hh.
|
protected |
Definition at line 169 of file tester_thread.hh.
|
protected |
Definition at line 170 of file tester_thread.hh.
typedef TesterThreadParams TesterThread::Params |
Definition at line 51 of file tester_thread.hh.
Definition at line 56 of file tester_thread.hh.
TesterThread::TesterThread | ( | const Params & | p | ) |
Definition at line 40 of file tester_thread.cc.
|
virtual |
Definition at line 54 of file tester_thread.cc.
References MipsISA::ep, and episodeHistory.
|
protected |
Definition at line 290 of file tester_thread.cc.
References Clocked::curCycle().
Referenced by GpuWavefront::issueAtomicOps(), DmaThread::issueLoadOps(), GpuWavefront::issueLoadOps(), DmaThread::issueStoreOps(), and GpuWavefront::issueStoreOps().
void TesterThread::attachTesterThreadToPorts | ( | ProtocolTester * | _tester, |
ProtocolTester::SeqPort * | _port, | ||
ProtocolTester::GMTokenPort * | _tokenPort = nullptr , |
||
ProtocolTester::SeqPort * | _sqcPort = nullptr , |
||
ProtocolTester::SeqPort * | _scalarPort = nullptr |
||
) |
Definition at line 126 of file tester_thread.cc.
References addrManager, ProtocolTester::getAddressManager(), port, scalarPort, sqcPort, tester, and tokenPort.
void TesterThread::checkDeadlock | ( | ) |
Definition at line 395 of file tester_thread.cc.
References ProtocolTester::checkExit(), Clocked::clockPeriod(), Clocked::curCycle(), curTick(), deadlockCheckEvent, deadlockThreshold, ProtocolTester::dumpErrorLog(), lastActiveCycle, EventManager::schedule(), Event::scheduled(), ArmISA::ss, tester, threadName, and warn.
Referenced by TesterThread::DeadlockCheckEvent::process().
Definition at line 384 of file tester_thread.cc.
References Episode::checkDRF(), curEpisode, Episode::isEpsActive(), and numLanes.
|
inline |
Definition at line 69 of file tester_thread.hh.
References threadName.
Referenced by DmaThread::hitCallback(), GpuWavefront::hitCallback(), GpuWavefront::issueAcquireOp(), GpuWavefront::issueAtomicOps(), DmaThread::issueLoadOps(), GpuWavefront::issueLoadOps(), GpuWavefront::issueReleaseOp(), DmaThread::issueStoreOps(), and GpuWavefront::issueStoreOps().
|
inline |
Definition at line 75 of file tester_thread.hh.
References numLanes.
Referenced by Episode::Episode().
|
inline |
Definition at line 74 of file tester_thread.hh.
References threadId.
Referenced by Episode::checkDRF(), and Episode::initActions().
|
pure virtual |
Implemented in CpuThread, GpuWavefront, and DmaThread.
Referenced by ProtocolTester::SeqPort::recvTimingResp().
|
protected |
Definition at line 155 of file tester_thread.cc.
References Episode::Action::ACQUIRE, X86ISA::addr, addrManager, Episode::Action::ATOMIC, curAction, curEpisode, AddressManager::getAddress(), Episode::Action::getLocation(), Episode::Action::getType(), Episode::hasMoreActions(), TokenRequestPort::haveTokens(), AddressManager::INVALID_LOCATION, Episode::Action::LOAD, numLanes, outstandingAtomics, outstandingLoads, outstandingStores, panic, Episode::peekCurAction(), pendingAtomicCount, pendingFenceCount, pendingLdStCount, Episode::Action::RELEASE, Episode::Action::STORE, and tokenPort.
Referenced by wakeup().
|
protectedpure virtual |
Implemented in GpuWavefront, CpuThread, and DmaThread.
Referenced by issueNextAction().
|
protectedpure virtual |
Implemented in CpuThread, GpuWavefront, and DmaThread.
Referenced by issueNextAction().
|
protectedpure virtual |
Implemented in CpuThread, GpuWavefront, and DmaThread.
Referenced by issueNextAction().
|
protected |
Definition at line 144 of file tester_thread.cc.
References curEpisode, episodeHistory, ProtocolTester::getEpisodeLength(), MipsISA::random, and tester.
Referenced by wakeup().
|
protected |
Definition at line 247 of file tester_thread.cc.
References Episode::Action::ACQUIRE, TokenRequestPort::acquireTokens(), Episode::Action::ATOMIC, curAction, Clocked::curCycle(), curEpisode, Episode::Action::getType(), issueAcquireOp(), issueAtomicOps(), issueLoadOps(), issueReleaseOp(), issueStoreOps(), lastActiveCycle, Episode::Action::LOAD, numLanes, panic, Episode::popAction(), Episode::Action::RELEASE, Event::scheduled(), scheduleWakeup(), Episode::Action::STORE, threadEvent, and tokenPort.
Referenced by wakeup().
|
protectedpure virtual |
Implemented in GpuWavefront, CpuThread, and DmaThread.
Referenced by issueNextAction().
|
protectedpure virtual |
Implemented in CpuThread, GpuWavefront, and DmaThread.
Referenced by issueNextAction().
|
protected |
Definition at line 307 of file tester_thread.cc.
References X86ISA::addr.
Referenced by DmaThread::hitCallback(), and GpuWavefront::hitCallback().
void TesterThread::printAllOutstandingReqs | ( | std::stringstream & | ss | ) | const |
Definition at line 435 of file tester_thread.cc.
References outstandingAtomics, outstandingLoads, outstandingStores, pendingFenceCount, printOutstandingReqs(), and ArmISA::ss.
|
protected |
Definition at line 420 of file tester_thread.cc.
References Clocked::curCycle(), ArmISA::m, printAddress(), and ArmISA::ss.
Referenced by printAllOutstandingReqs().
void TesterThread::scheduleDeadlockCheckEvent | ( | ) |
Definition at line 118 of file tester_thread.cc.
References deadlockCheckEvent, Clocked::nextCycle(), EventManager::schedule(), and Event::scheduled().
void TesterThread::scheduleWakeup | ( | ) |
Definition at line 111 of file tester_thread.cc.
References Clocked::nextCycle(), EventManager::schedule(), Event::scheduled(), and threadEvent.
Referenced by DmaThread::hitCallback(), GpuWavefront::hitCallback(), issueNextAction(), GpuWavefront::issueReleaseOp(), and wakeup().
Definition at line 333 of file tester_thread.cc.
References X86ISA::addr, addrManager, curEpisode, ProtocolTester::dumpErrorLog(), AddressManager::getAddress(), Episode::getEpisodeId(), printAddress(), ArmISA::ss, tester, threadName, AddressManager::validateAtomicResp(), and warn.
Referenced by DmaThread::hitCallback(), and GpuWavefront::hitCallback().
Definition at line 357 of file tester_thread.cc.
References X86ISA::addr, addrManager, curEpisode, ProtocolTester::dumpErrorLog(), AddressManager::getAddress(), Episode::getEpisodeId(), AddressManager::getLoggedValue(), printAddress(), AddressManager::printLastWriter(), ArmISA::ss, tester, threadId, threadName, and warn.
Referenced by DmaThread::hitCallback(), and GpuWavefront::hitCallback().
void TesterThread::wakeup | ( | ) |
Definition at line 63 of file tester_thread.cc.
References ProtocolTester::checkExit(), Episode::completeEpisode(), curAction, curEpisode, Episode::hasMoreActions(), isNextActionReady(), issueNewEpisode(), issueNextAction(), pendingAtomicCount, pendingFenceCount, pendingLdStCount, Event::scheduled(), scheduleWakeup(), tester, and threadEvent.
Referenced by TesterThread::TesterThreadEvent::process().
|
protected |
Definition at line 143 of file tester_thread.hh.
Referenced by attachTesterThreadToPorts(), DmaThread::hitCallback(), GpuWavefront::hitCallback(), isNextActionReady(), GpuWavefront::issueAtomicOps(), DmaThread::issueLoadOps(), GpuWavefront::issueLoadOps(), DmaThread::issueStoreOps(), GpuWavefront::issueStoreOps(), validateAtomicResp(), and validateLoadResp().
|
protected |
Definition at line 157 of file tester_thread.hh.
Referenced by isNextActionReady(), DmaThread::issueAcquireOp(), CpuThread::issueAcquireOp(), GpuWavefront::issueAcquireOp(), DmaThread::issueAtomicOps(), CpuThread::issueAtomicOps(), GpuWavefront::issueAtomicOps(), DmaThread::issueLoadOps(), CpuThread::issueLoadOps(), GpuWavefront::issueLoadOps(), issueNextAction(), DmaThread::issueReleaseOp(), CpuThread::issueReleaseOp(), DmaThread::issueStoreOps(), CpuThread::issueStoreOps(), GpuWavefront::issueStoreOps(), and wakeup().
|
protected |
Definition at line 155 of file tester_thread.hh.
Referenced by checkDRF(), DmaThread::hitCallback(), GpuWavefront::hitCallback(), isNextActionReady(), GpuWavefront::issueAcquireOp(), GpuWavefront::issueAtomicOps(), DmaThread::issueLoadOps(), GpuWavefront::issueLoadOps(), issueNewEpisode(), issueNextAction(), GpuWavefront::issueReleaseOp(), DmaThread::issueStoreOps(), GpuWavefront::issueStoreOps(), validateAtomicResp(), validateLoadResp(), and wakeup().
|
protected |
Definition at line 117 of file tester_thread.hh.
Referenced by checkDeadlock(), and scheduleDeadlockCheckEvent().
|
protected |
Definition at line 166 of file tester_thread.hh.
Referenced by checkDeadlock().
|
protected |
Definition at line 153 of file tester_thread.hh.
Referenced by issueNewEpisode(), and ~TesterThread().
|
protected |
Definition at line 165 of file tester_thread.hh.
Referenced by checkDeadlock(), DmaThread::hitCallback(), GpuWavefront::hitCallback(), and issueNextAction().
|
protected |
Definition at line 137 of file tester_thread.hh.
Referenced by checkDRF(), CpuThread::CpuThread(), DmaThread::DmaThread(), getNumLanes(), isNextActionReady(), GpuWavefront::issueAtomicOps(), GpuWavefront::issueLoadOps(), issueNextAction(), and GpuWavefront::issueStoreOps().
|
protected |
Definition at line 173 of file tester_thread.hh.
Referenced by DmaThread::hitCallback(), GpuWavefront::hitCallback(), isNextActionReady(), GpuWavefront::issueAtomicOps(), and printAllOutstandingReqs().
|
protected |
Definition at line 171 of file tester_thread.hh.
Referenced by DmaThread::hitCallback(), GpuWavefront::hitCallback(), isNextActionReady(), DmaThread::issueLoadOps(), GpuWavefront::issueLoadOps(), and printAllOutstandingReqs().
|
protected |
Definition at line 172 of file tester_thread.hh.
Referenced by DmaThread::hitCallback(), GpuWavefront::hitCallback(), isNextActionReady(), DmaThread::issueStoreOps(), GpuWavefront::issueStoreOps(), and printAllOutstandingReqs().
|
protected |
Definition at line 162 of file tester_thread.hh.
Referenced by DmaThread::hitCallback(), GpuWavefront::hitCallback(), isNextActionReady(), DmaThread::issueAcquireOp(), CpuThread::issueAcquireOp(), GpuWavefront::issueAcquireOp(), DmaThread::issueAtomicOps(), CpuThread::issueAtomicOps(), GpuWavefront::issueAtomicOps(), DmaThread::issueLoadOps(), GpuWavefront::issueLoadOps(), CpuThread::issueLoadOps(), DmaThread::issueReleaseOp(), CpuThread::issueReleaseOp(), DmaThread::issueStoreOps(), CpuThread::issueStoreOps(), GpuWavefront::issueStoreOps(), and wakeup().
|
protected |
Definition at line 161 of file tester_thread.hh.
Referenced by GpuWavefront::hitCallback(), isNextActionReady(), DmaThread::issueAcquireOp(), CpuThread::issueAcquireOp(), GpuWavefront::issueAcquireOp(), DmaThread::issueAtomicOps(), CpuThread::issueAtomicOps(), GpuWavefront::issueAtomicOps(), DmaThread::issueLoadOps(), CpuThread::issueLoadOps(), GpuWavefront::issueLoadOps(), DmaThread::issueReleaseOp(), CpuThread::issueReleaseOp(), DmaThread::issueStoreOps(), CpuThread::issueStoreOps(), GpuWavefront::issueStoreOps(), printAllOutstandingReqs(), and wakeup().
|
protected |
Definition at line 160 of file tester_thread.hh.
Referenced by DmaThread::hitCallback(), GpuWavefront::hitCallback(), isNextActionReady(), DmaThread::issueAcquireOp(), CpuThread::issueAcquireOp(), GpuWavefront::issueAcquireOp(), DmaThread::issueAtomicOps(), CpuThread::issueAtomicOps(), GpuWavefront::issueAtomicOps(), DmaThread::issueLoadOps(), GpuWavefront::issueLoadOps(), DmaThread::issueReleaseOp(), CpuThread::issueReleaseOp(), DmaThread::issueStoreOps(), GpuWavefront::issueStoreOps(), and wakeup().
|
protected |
Definition at line 145 of file tester_thread.hh.
Referenced by attachTesterThreadToPorts(), GpuWavefront::issueAcquireOp(), GpuWavefront::issueAtomicOps(), DmaThread::issueLoadOps(), GpuWavefront::issueLoadOps(), DmaThread::issueStoreOps(), and GpuWavefront::issueStoreOps().
|
protected |
Definition at line 147 of file tester_thread.hh.
Referenced by attachTesterThreadToPorts().
|
protected |
Definition at line 148 of file tester_thread.hh.
Referenced by attachTesterThreadToPorts().
|
protected |
Definition at line 141 of file tester_thread.hh.
Referenced by attachTesterThreadToPorts(), checkDeadlock(), GpuWavefront::issueAcquireOp(), GpuWavefront::issueAtomicOps(), DmaThread::issueLoadOps(), GpuWavefront::issueLoadOps(), issueNewEpisode(), DmaThread::issueStoreOps(), GpuWavefront::issueStoreOps(), validateAtomicResp(), validateLoadResp(), and wakeup().
|
protected |
Definition at line 97 of file tester_thread.hh.
Referenced by CpuThread::CpuThread(), DmaThread::DmaThread(), GpuWavefront::GpuWavefront(), DmaThread::hitCallback(), GpuWavefront::hitCallback(), issueNextAction(), GpuWavefront::issueReleaseOp(), scheduleWakeup(), and wakeup().
|
protected |
Definition at line 135 of file tester_thread.hh.
Referenced by CpuThread::CpuThread(), DmaThread::DmaThread(), getTesterThreadId(), GpuWavefront::GpuWavefront(), DmaThread::hitCallback(), GpuWavefront::hitCallback(), GpuWavefront::issueAcquireOp(), GpuWavefront::issueAtomicOps(), DmaThread::issueLoadOps(), GpuWavefront::issueLoadOps(), DmaThread::issueStoreOps(), GpuWavefront::issueStoreOps(), and validateLoadResp().
|
protected |
Definition at line 139 of file tester_thread.hh.
Referenced by checkDeadlock(), CpuThread::CpuThread(), DmaThread::DmaThread(), getName(), GpuWavefront::GpuWavefront(), validateAtomicResp(), and validateLoadResp().
|
protected |
Definition at line 146 of file tester_thread.hh.
Referenced by attachTesterThreadToPorts(), isNextActionReady(), and issueNextAction().