gem5
v20.0.0.0
|
#include <eventq.hh>
Public Member Functions | |
Event (Priority p=Default_Pri, Flags f=0) | |
virtual void | process ()=0 |
bool | scheduled () const |
Determine if the current event is scheduled. More... | |
void | squash () |
Squash the current event. More... | |
bool | squashed () const |
Check whether the event is squashed. More... | |
bool | isExitEvent () const |
See if this is a SimExitEvent (without resorting to RTTI) More... | |
bool | isManaged () const |
Check whether this event will auto-delete. More... | |
bool | isAutoDelete () const |
Tick | when () const |
Get the time that the event is scheduled. More... | |
Priority | priority () const |
Get the event priority. More... | |
virtual BaseGlobalEvent * | globalEvent () |
If this is part of a GlobalEvent, return the pointer to the Global Event. More... | |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
virtual | ~Event () |
virtual const std::string | name () const |
virtual const char * | description () const |
Return a C string describing the event. More... | |
void | dump () const |
Dump the current event data. More... | |
![]() | |
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) |
Protected Member Functions | |
Flags | getFlags () const |
bool | isFlagSet (Flags _flags) const |
void | setFlags (Flags _flags) |
void | clearFlags (Flags _flags) |
void | clearFlags () |
virtual void | trace (const char *action) |
This function isn't really useful if TRACING_ON is not defined. More... | |
const std::string | instanceString () const |
Return the instance number as a string. More... | |
void | acquire () |
Memory management hooks for events that have the Managed flag set. More... | |
void | release () |
Managed event removed from the event queue. More... | |
virtual void | acquireImpl () |
virtual void | releaseImpl () |
Private Member Functions | |
void | setWhen (Tick when, EventQueue *q) |
bool | initialized () const |
Static Private Member Functions | |
static Event * | insertBefore (Event *event, Event *curr) |
static Event * | removeItem (Event *event, Event *last) |
Private Attributes | |
Event * | nextBin |
Event * | nextInBin |
Tick | _when |
timestamp when event should be processed More... | |
Priority | _priority |
event priority More... | |
Flags | flags |
Counter | instance |
This event's unique ID. More... | |
EventQueue * | queue |
queue to which this event belongs (though it may or may not be scheduled on this queue yet) More... | |
Static Private Attributes | |
static Counter | instanceCounter = 0 |
Global counter to generate unique IDs for Event instances. More... | |
Friends | |
class | EventQueue |
Additional Inherited Members | |
![]() | |
typedef int8_t | Priority |
![]() | |
static const std::string & | currentSection () |
Gets the fully-qualified name of the active section. More... | |
static void | serializeAll (const std::string &cpt_dir) |
static void | unserializeGlobals (CheckpointIn &cp) |
![]() | |
static const Priority | Minimum_Pri = SCHAR_MIN |
Event priorities, to provide tie-breakers for events scheduled at the same cycle. More... | |
static const Priority | Debug_Enable_Pri = -101 |
If we enable tracing on a particular cycle, do that as the very first thing so we don't miss any of the events on that cycle (even if we enter the debugger). More... | |
static const Priority | Debug_Break_Pri = -100 |
Breakpoints should happen before anything else (except enabling trace output), so we don't miss any action when debugging. More... | |
static const Priority | CPU_Switch_Pri = -31 |
CPU switches schedule the new CPU's tick event for the same cycle (after unscheduling the old CPU's tick event). More... | |
static const Priority | Delayed_Writeback_Pri = -1 |
For some reason "delayed" inter-cluster writebacks are scheduled before regular writebacks (which have default priority). More... | |
static const Priority | Default_Pri = 0 |
Default is zero for historical reasons. More... | |
static const Priority | DVFS_Update_Pri = 31 |
DVFS update event leads to stats dump therefore given a lower priority to ensure all relevant states have been updated. More... | |
static const Priority | Serialize_Pri = 32 |
Serailization needs to occur before tick events also, so that a serialize/unserialize is identical to an on-line CPU switch. More... | |
static const Priority | CPU_Tick_Pri = 50 |
CPU ticks must come after other associated CPU events (such as writebacks). More... | |
static const Priority | CPU_Exit_Pri = 64 |
If we want to exit a thread in a CPU, it comes after CPU_Tick_Pri. More... | |
static const Priority | Stat_Event_Pri = 90 |
Statistics events (dump, reset, etc.) come after everything else, but before exit. More... | |
static const Priority | Progress_Event_Pri = 95 |
Progress events come at the end. More... | |
static const Priority | Sim_Exit_Pri = 100 |
If we want to exit on this cycle, it's the very last thing we do. More... | |
static const Priority | Maximum_Pri = SCHAR_MAX |
Maximum priority. More... | |
![]() | |
typedef unsigned short | FlagsType |
typedef ::Flags< FlagsType > | Flags |
![]() | |
static const FlagsType | PublicRead = 0x003f |
static const FlagsType | PublicWrite = 0x001d |
static const FlagsType | Squashed = 0x0001 |
static const FlagsType | Scheduled = 0x0002 |
static const FlagsType | Managed = 0x0004 |
static const FlagsType | AutoDelete = Managed |
static const FlagsType | Reserved0 = 0x0008 |
This used to be AutoSerialize. More... | |
static const FlagsType | IsExitEvent = 0x0010 |
static const FlagsType | IsMainQueue = 0x0020 |
static const FlagsType | Initialized = 0x7a40 |
static const FlagsType | InitMask = 0xffc0 |
|
inline |
Definition at line 408 of file eventq.hh.
References curTick(), Stats::dump(), ArmISA::f, name(), and EventBase::PublicWrite.
Referenced by TapListener::listen().
|
inlineprotected |
Memory management hooks for events that have the Managed flag set.
Events can use automatic memory management by setting the Managed flag. The default implementation automatically deletes events once they have been removed from the event queue. This typically happens when events are descheduled or have been triggered and not rescheduled.
The methods below may be overridden by events that need custom memory management. For example, events exported to Python need to impement reference counting to ensure that the Python implementation of the event is kept alive while it lives in the event queue.
Definition at line 377 of file eventq.hh.
References Flags< T >::isSet(), and EventBase::Managed.
|
inlineprotectedvirtual |
|
inlineprotected |
Definition at line 329 of file eventq.hh.
References Flags< T >::clear(), Flags< T >::noneSet(), and EventBase::PublicWrite.
|
inlineprotected |
Definition at line 336 of file eventq.hh.
References Flags< T >::clear(), and EventBase::PublicWrite.
|
inlineprotected |
Definition at line 309 of file eventq.hh.
References EventBase::PublicRead.
|
inlinevirtual |
If this is part of a GlobalEvent, return the pointer to the Global Event.
By default, there is no GlobalEvent, so return NULL. (Overridden in GlobalEvent::BarrierEvent.)
Reimplemented in BaseGlobalEvent::BarrierEvent.
Definition at line 511 of file eventq.hh.
References serialize(), and unserialize().
Referenced by simulate().
|
inlineprivate |
Definition at line 302 of file eventq.hh.
References EventBase::Initialized, and EventBase::InitMask.
Referenced by EventQueue::deschedule(), EventQueue::reschedule(), and EventQueue::schedule().
Definition at line 89 of file eventq.cc.
References MipsISA::event, nextBin, and nextInBin.
Referenced by EventQueue::insert().
|
protected |
Return the instance number as a string.
Definition at line 393 of file eventq.cc.
References csprintf().
|
inlineprotected |
Definition at line 315 of file eventq.hh.
References Flags< T >::isSet(), Flags< T >::noneSet(), and EventBase::PublicRead.
|
pure virtual |
Implemented in EventFunctionWrapper, EventWrapper< T, F >, EventWrapper< A9GlobalTimer::Timer, &Timer::counterAtCmpVal >, EventWrapper< SMMUv3SlaveInterface, &SMMUv3SlaveInterface::atsSendDeviceRetry >, EventWrapper< sc_gem5::Scheduler, &Scheduler::timeAdvances >, EventWrapper< sc_gem5::Kernel, &Kernel::t0Handler >, EventWrapper< sc_gem5::Scheduler, &Scheduler::stop >, EventWrapper< PowerDomain, &PowerDomain::setFollowerPowerStates >, EventWrapper< BaseRemoteGDB, &BaseRemoteGDB::singleStep >, EventWrapper< sc_gem5::Scheduler, &Scheduler::maxTickFunc >, EventWrapper< sc_gem5::Scheduler, &Scheduler::pause >, EventWrapper< sc_gem5::Scheduler, &Scheduler::runReady >, EventWrapper< SMMUv3, &SMMUv3::processCommands >, EventWrapper< QoS::MemSinkCtrl, &MemSinkCtrl::processNextReqEvent >, DmaReadFifo::DmaDoneEvent, LSQUnit< Impl >::WritebackEvent, X86ISA::GpuTLB::TLBEvent, HSAPacketProcessor::CmdQueueCmdDmaEvent, TimingSimpleCPU::IprEvent, HSAPacketProcessor::UpdateReadDispIdDmaEvent, HSAPacketProcessor::DepSignalsReadDmaEvent, BasePixelPump::PixelEvent, DVFSHandler::UpdateEvent, HSAPacketProcessor::QueueProcessEvent, GlobalSyncEvent::BarrierEvent, BaseRemoteGDB::TrapEvent, TimingSimpleCPU::IcachePort::ITickEvent, GlobalEvent::BarrierEvent, DefaultFetch< Impl >::FinishTranslationEvent, sc_gem5::Scheduler::TimeSlot, LdsState::TickEvent, InstructionQueue< Impl >::FUCompletion, CountedExitEvent, Trace::TarmacParserRecord::TarmacParserRecordEvent, CPUProgressEvent, Intel8254Timer::Counter::CounterEvent, LocalSimLoopExitEvent, CpuEventWrapper< T, F >, MC146818::RTCTickEvent, PyEvent, HWScheduler::SchedulerWakeupEvent, MC146818::RTCEvent, SMMUDeviceRetryEvent, and EndQuiesceEvent.
Referenced by GlobalEvent::GlobalEvent(), and GlobalSyncEvent::GlobalSyncEvent().
|
inlineprotected |
Managed event removed from the event queue.
Definition at line 386 of file eventq.hh.
References Flags< T >::isSet(), and EventBase::Managed.
Referenced by BaseGlobalEvent::BarrierEvent::globalBarrier().
|
inlineprotectedvirtual |
|
overridevirtual |
Serialize an object.
Output an object's state into the current checkpoint section.
cp | Checkpoint state |
Implements Serializable.
Reimplemented in LocalSimLoopExitEvent.
Definition at line 237 of file eventq.cc.
References SERIALIZE_SCALAR.
Referenced by Intel8254Timer::outputHigh(), LocalSimLoopExitEvent::serialize(), and BasePixelPump::PixelEvent::serialize().
|
inlineprotected |
Definition at line 322 of file eventq.hh.
References Flags< T >::noneSet(), EventBase::PublicWrite, and Flags< T >::set().
Referenced by HSAPacketProcessor::CmdQueueCmdDmaEvent::CmdQueueCmdDmaEvent(), DmaReadFifo::DmaDoneEvent::kill(), and HSAPacketProcessor::UpdateReadDispIdDmaEvent::UpdateReadDispIdDmaEvent().
|
inlineprivate |
|
overridevirtual |
Unserialize an object.
Read an object's state from the current checkpoint section.
cp | Checkpoint state |
Implements Serializable.
Reimplemented in LocalSimLoopExitEvent.
Definition at line 246 of file eventq.cc.
References DPRINTF, name(), and UNSERIALIZE_SCALAR.
Referenced by Intel8254Timer::outputHigh(), LocalSimLoopExitEvent::unserialize(), and BasePixelPump::PixelEvent::unserialize().
|
friend |
|
private |
|
private |
Definition at line 267 of file eventq.hh.
Referenced by EventQueue::checkpointReschedule(), X86ISA::GpuTLB::pagingProtectionChecks(), and EventQueue::serviceOne().
|
private |
|
staticprivate |
Global counter to generate unique IDs for Event instances.
Definition at line 271 of file eventq.hh.
Referenced by getEventQueue().
|
private |
Definition at line 259 of file eventq.hh.
Referenced by EventQueue::debugVerify(), EventQueue::dump(), EventQueue::insert(), insertBefore(), EventQueue::remove(), removeItem(), and EventQueue::serviceOne().
|
private |
Definition at line 260 of file eventq.hh.
Referenced by EventQueue::debugVerify(), EventQueue::dump(), insertBefore(), removeItem(), and EventQueue::serviceOne().
|
private |
queue to which this event belongs (though it may or may not be scheduled on this queue yet)
Definition at line 281 of file eventq.hh.
Referenced by EventQueue::remove(), and HSAPacketProcessor::schedAQLProcessing().