gem5 v24.1.0.1
|
#include <looppoint_analysis.hh>
Public Types | |
typedef ProbeListenerArg< LooppointAnalysis, std::pair< SimpleThread *, StaticInstPtr > > | looppointAnalysisListener |
![]() | |
typedef SimObjectParams | Params |
Public Member Functions | |
LooppointAnalysis (const LooppointAnalysisParams ¶ms) | |
virtual void | regProbeListeners () |
Register probe listeners for this object. | |
void | checkPc (const std::pair< SimpleThread *, StaticInstPtr > &inst_pair) |
This function is called when a the probe point notifies the LoopPointAnalysis probe listener. | |
void | startListening () |
When this function is called, it sets the class variable ifListening to true, then calls the regProbeListeners() function to register the probe listeners to the probe points,. | |
void | stopListening () |
When this function is called, it sets the class variable ifListening to false, then removes the probe listeners from the probe points. | |
std::unordered_map< Addr, uint64_t > | getLocalBBV () const |
void | clearLocalBBV () |
![]() | |
ProbeListenerObject (const ProbeListenerObjectParams ¶ms) | |
virtual | ~ProbeListenerObject () |
ProbeManager * | getProbeManager () |
![]() | |
const Params & | params () 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. | |
ProbeManager * | getProbeManager () |
Get the probe manager for this object. | |
virtual Port & | getPort (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. | |
![]() | |
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. | |
void | setCurTick (Tick newVal) |
EventManager (EventManager &em) | |
Event manger manages events in the event queue. | |
EventManager (EventManager *em) | |
EventManager (EventQueue *eq) | |
![]() | |
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) |
![]() | |
DrainState | drainState () const |
Return the current drain state of an object. | |
virtual void | notifyFork () |
Notify a child process of a fork. | |
![]() | |
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 Info * | resolveStat (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 (const Group &)=delete | |
Group & | operator= (const Group &)=delete |
![]() | |
Named (const std::string &name_) | |
virtual | ~Named ()=default |
virtual std::string | name () const |
Private Member Functions | |
void | updateLocalBBV (const Addr pc) |
This function updates the localBBV for the input PC's basic block. | |
Private Attributes | |
LooppointAnalysisManager * | lpaManager |
This is the pointer to the LooppointAnalysisManager SimObject that is managing all the LooppointAnalysis ProbeListenerObjects. | |
AddrRange | bbValidAddrRange |
This is the valid address range for the basic block that the LooppointAnalysis considers analyzing. | |
AddrRange | markerValidAddrRange |
We only consider the loops within this address range as candidates for marking the execution points. | |
std::vector< AddrRange > | bbExcludedAddrRanges |
Any basic block that is in this range will not be analyzed. | |
bool | ifListening |
Only when this is set to true, the LooppointAnalysis will listen to the probe points. | |
uint64_t | bbInstCounter |
The counter for the number of instructions within the current basic block. | |
std::unordered_map< Addr, uint64_t > | localBBV |
The basic block vector for the current core that the LooppointAnalysis is attached to. | |
Additional Inherited Members | |
![]() | |
static void | serializeAll (const std::string &cpt_dir) |
Create a checkpoint by serializing all SimObjects in the system. | |
static SimObject * | find (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 SimObjectResolver * | getSimObjectResolver () |
There is a single object name resolver, and it is only set when simulation is restoring from checkpoints. | |
![]() | |
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. | |
![]() | |
Drainable () | |
virtual | ~Drainable () |
virtual void | drainResume () |
Resume execution after a successful drain. | |
void | signalDrainDone () const |
Signal that an object is drained. | |
![]() | |
ProbeManager * | manager |
std::vector< ProbeListener * > | listeners |
![]() | |
const SimObjectParams & | _params |
Cached copy of the object parameters. | |
![]() | |
EventQueue * | eventq |
A pointer to this object's event queue. | |
Definition at line 51 of file looppoint_analysis.hh.
typedef ProbeListenerArg<LooppointAnalysis, std::pair<SimpleThread*, StaticInstPtr> > gem5::LooppointAnalysis::looppointAnalysisListener |
Definition at line 81 of file looppoint_analysis.hh.
gem5::LooppointAnalysis::LooppointAnalysis | ( | const LooppointAnalysisParams & | params | ) |
Definition at line 34 of file looppoint_analysis.cc.
References bbExcludedAddrRanges, bbValidAddrRange, DPRINTF, gem5::AddrRange::end(), gem5::ArmISA::i, ifListening, markerValidAddrRange, gem5::SimObject::params(), and gem5::AddrRange::start().
void gem5::LooppointAnalysis::checkPc | ( | const std::pair< SimpleThread *, StaticInstPtr > & | inst_pair | ) |
This function is called when a the probe point notifies the LoopPointAnalysis probe listener.
inst_pair | A pair that contains the SimpleThread pointer and the StaticInstPtr of the commited instruction from the atomic CPU. |
Definition at line 75 of file looppoint_analysis.cc.
References gem5::PCStateBase::as(), bbExcludedAddrRanges, bbInstCounter, bbValidAddrRange, gem5::AddrRange::contains(), gem5::LooppointAnalysisManager::countBackwardBranch(), gem5::AddrRange::end(), gem5::SimpleThread::getIsaPtr(), gem5::SimpleThread::getTC(), gem5::ArmISA::i, gem5::LooppointAnalysisManager::ifBackwardBranch(), gem5::LooppointAnalysisManager::ifEncountered(), gem5::LooppointAnalysisManager::ifValidControl(), gem5::LooppointAnalysisManager::ifValidNotControl(), gem5::LooppointAnalysisManager::incrementGlobalInstCounter(), gem5::BaseISA::inUserMode(), gem5::StaticInst::isControl(), gem5::StaticInst::isDirectCtrl(), gem5::StaticInst::isLastMicroop(), gem5::StaticInst::isMicroop(), lpaManager, markerValidAddrRange, gem5::GenericISA::PCStateWithNext::pc(), gem5::MipsISA::pc, gem5::ThreadContext::pcState(), gem5::LooppointAnalysisManager::updateBBInstMap(), gem5::LooppointAnalysisManager::updateEncountered(), gem5::LooppointAnalysisManager::updateGlobalBBV(), updateLocalBBV(), gem5::LooppointAnalysisManager::updateValidControl(), and gem5::LooppointAnalysisManager::updateValidNotControl().
Referenced by regProbeListeners().
|
inline |
Definition at line 142 of file looppoint_analysis.hh.
References localBBV.
|
inline |
Definition at line 136 of file looppoint_analysis.hh.
References localBBV.
|
virtual |
Register probe listeners for this object.
No probe listeners by default, so do nothing in base.
Reimplemented from gem5::SimObject.
Definition at line 172 of file looppoint_analysis.cc.
References checkPc(), DPRINTF, ifListening, and gem5::ProbeListenerObject::listeners.
Referenced by startListening().
void gem5::LooppointAnalysis::startListening | ( | ) |
When this function is called, it sets the class variable ifListening to true, then calls the regProbeListeners() function to register the probe listeners to the probe points,.
Definition at line 186 of file looppoint_analysis.cc.
References ifListening, and regProbeListeners().
void gem5::LooppointAnalysis::stopListening | ( | ) |
When this function is called, it sets the class variable ifListening to false, then removes the probe listeners from the probe points.
Definition at line 193 of file looppoint_analysis.cc.
References DPRINTF, gem5::ProbeListenerObject::getProbeManager(), ifListening, gem5::ProbeListenerObject::listeners, panic_if, and gem5::ProbeManager::removeListener().
|
private |
This function updates the localBBV for the input PC's basic block.
Specifically, it increments the count of the input PC's basic block in the localBBV.
Definition at line 65 of file looppoint_analysis.cc.
References localBBV, and gem5::MipsISA::pc.
Referenced by checkPc().
|
private |
Any basic block that is in this range will not be analyzed.
Definition at line 107 of file looppoint_analysis.hh.
Referenced by checkPc(), and LooppointAnalysis().
|
private |
The counter for the number of instructions within the current basic block.
Definition at line 119 of file looppoint_analysis.hh.
Referenced by checkPc().
|
private |
This is the valid address range for the basic block that the LooppointAnalysis considers analyzing.
Any basic block that is not in this range will not be analyzed, i.e. counting.
Definition at line 96 of file looppoint_analysis.hh.
Referenced by checkPc(), and LooppointAnalysis().
|
private |
Only when this is set to true, the LooppointAnalysis will listen to the probe points.
Definition at line 113 of file looppoint_analysis.hh.
Referenced by LooppointAnalysis(), regProbeListeners(), startListening(), and stopListening().
|
private |
The basic block vector for the current core that the LooppointAnalysis is attached to.
Definition at line 125 of file looppoint_analysis.hh.
Referenced by clearLocalBBV(), getLocalBBV(), and updateLocalBBV().
|
private |
This is the pointer to the LooppointAnalysisManager SimObject that is managing all the LooppointAnalysis ProbeListenerObjects.
Definition at line 89 of file looppoint_analysis.hh.
Referenced by checkPc().
|
private |
We only consider the loops within this address range as candidates for marking the execution points.
Definition at line 102 of file looppoint_analysis.hh.
Referenced by checkPc(), and LooppointAnalysis().