Go to the documentation of this file.
75 #ifndef __DEV_DIST_IFACE_HH__
76 #define __DEV_DIST_IFACE_HH__
130 std::condition_variable
cv;
177 virtual bool run(
bool same_tick) = 0;
225 bool run(
bool same_tick)
override;
230 ReqType do_stop_sync)
override;
264 bool run(
bool same_tick)
override;
269 ReqType do_stop_sync)
override;
272 panic(
"Switch requested checkpoint");
275 panic(
"Switch requested exit");
278 panic(
"Switch requested stop sync");
403 Tick prev_recv_tick);
647 #endif // __DEV_DIST_IFACE_HH__
A special global event that synchronizes all threads and forces them to process asynchronously enqueu...
static bool readyToExit(Tick delay)
Initiate the exit from the simulation.
virtual void initTransport()=0
Init hook for the underlaying transport.
std::condition_variable cv
Condition variable for the simulation thread to wait on until all receiver threads completes the curr...
bool doCkpt
Flag is set if taking a ckpt is permitted upon sync completion.
void pushPacket(EthPacketPtr new_packet, Tick send_tick, Tick send_delay)
Push a newly arrived packet into the desc queue.
std::queue< Desc > descQueue
The queue to store the receive descriptors.
unsigned numCkptReq
Counter for recording ckpt requests.
ReqType needExit
Exit requested.
unsigned rank
The rank of this process among the gem5 peers.
bool progress(Tick max_req_tick, Tick next_repeat, ReqType do_ckpt, ReqType do_exit, ReqType do_stop_sync) override
Callback when the receiver thread gets a sync ack message.
DistHeaderPkt::Header Header
Class to encapsulate information about data packets received.
void serialize(CheckpointOut &cp) const override
Serialize an object.
void init(Tick start, Tick repeat)
Initialize periodic sync params.
Event * recvDone
The receive done event for the simulated Ethernet link.
Tick calcReceiveTick(Tick send_tick, Tick send_delay, Tick prev_recv_tick)
Calculate the tick to schedule the next receive done event.
EthPacketPtr packetIn()
Fetch the packet scheduled to be received next by the simulated network link.
ReqType needStopSync
Sync stop requested.
unsigned numExitReq
Counter for recording exit requests.
bool doStopSync
Flag is set if sync is to stop upon sync completion.
void serialize(CheckpointOut &cp) const override
Serialize an object.
Received packet descriptor.
void packetOut(EthPacketPtr pkt, Tick send_delay)
Send out an Ethernet packet.
bool _draining
Flag to set when the system is draining.
EthPacketPtr popPacket()
Fetch the next packet that is to be received by the simulated network link.
unsigned size
The number of gem5 processes comprising this dist simulation.
unsigned waitNum
Number of receiver threads that not yet completed the current global synchronisation.
virtual void requestStopSync(ReqType req)=0
void unserialize(CheckpointIn &cp) override
Unserialize an object.
unsigned numNodes
Number of connected simulated nodes.
void requestStopSync(ReqType) override
void recvThreadFunc(Event *recv_done, Tick link_delay)
The function executed by a receiver thread.
void resumeRecvTicks()
Adjust receive ticks for pending packets when restoring from a checkpoint.
virtual bool progress(Tick send_tick, Tick next_repeat, ReqType do_ckpt, ReqType do_exit, ReqType do_stop_sync)=0
Callback when the receiver thread gets a sync ack message.
Desc(EthPacketPtr p, Tick s, Tick d)
Tick syncRepeat
Frequency of dist sync events in ticks.
static unsigned recvThreadsNum
Number of receiver threads (in this gem5 process)
SyncEvent()
Only the firstly instantiated DistIface object will call this constructor.
void serialize(CheckpointOut &cp) const override
Serialize an object.
virtual void serialize(CheckpointOut &cp) const override=0
Serialize an object.
Basic support for object serialization.
DrainState
Object drain/handover states.
unsigned distIfaceId
Unique id for the dist link.
bool syncStartOnPseudoOp
Use pseudoOp to start synchronization.
ThreadContext is the external interface to all thread state for anything outside of the CPU.
void requestStopSync(ReqType req) override
std::shared_ptr< EthPacketData > EthPacketPtr
static bool isSwitch
Is this node a switch?
void unserialize(CheckpointIn &cp) override
Unserialize an object.
static Sync * sync
The singleton Sync object to perform dist synchronisation.
virtual bool run(bool same_tick)=0
Core method to perform a full dist sync.
uint64_t Tick
Tick count type.
void spawnRecvThread(const Event *recv_done, Tick link_delay)
spawn the receiver thread.
void requestExit(ReqType req) override
void requestCkpt(ReqType req) override
std::thread * recvThread
Receiver thread pointer.
void drainResume() override
Resume execution after a successful drain.
static unsigned distIfaceNum
Number of DistIface objects (i.e.
DistHeaderPkt::MsgType MsgType
DistHeaderPkt::ReqType ReqType
void init(const Event *e, Tick link_delay)
The global event to schedule periodic dist sync.
Tick nextAt
Tick for the next periodic sync (if the event is not scheduled yet)
void requestExit(ReqType) override
void init(Event *recv_done, Tick link_delay)
Initialize network link parameters.
bool progress(Tick max_req_tick, Tick next_repeat, ReqType do_ckpt, ReqType do_exit, ReqType do_stop_sync) override
Callback when the receiver thread gets a sync ack message.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
DrainState drain() override
Draining is the process of clearing out the states of SimObjects.These are the SimObjects that are pa...
Tick linkDelay
The link delay in ticks for the simulated Ethernet link.
std::mutex lock
The lock to protect access to the Sync object.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
virtual void requestCkpt(ReqType req)=0
virtual void unserialize(CheckpointIn &cp) override=0
Unserialize an object.
bool run(bool same_tick) override
Core method to perform a full dist sync.
virtual void sendCmd(const Header &header)=0
Send out a control command to the remote end.
void start()
Schedule the first periodic sync event.
DistIface(unsigned dist_rank, unsigned dist_size, Tick sync_start, Tick sync_repeat, EventManager *em, bool use_pseudo_op, bool is_switch, int num_nodes)
ctor
virtual bool recvHeader(Header &header)=0
Receive a header (i.e.
virtual void recvPacket(const Header &header, EthPacketPtr &packet)=0
Receive a packet from the remote end.
bool ckptRestore
Flag to set if receive ticks for pending packets need to be recalculated due to changed link latencie...
bool isAbort
Flag is set if the sync is aborted (e.g.
The interface class to talk to peer gem5 processes.
void process() override
This is a global event so process() will only be called by exactly one simulation thread.
static uint64_t sizeParam()
Getter for the dist size param.
void serialize(CheckpointOut &cp) const override
Serialize an object.
void abort()
Abort processing an on-going sync event (in case of an error, e.g.
static DistIface * primary
The very first DistIface object created becomes the primary interface.
static bool readyToCkpt(Tick delay, Tick period)
Initiate taking a checkpoint.
Tick nextRepeat
The repeat value for the next periodic sync.
Interface for objects that might require draining before checkpointing.
SyncSwitch(int num_nodes)
virtual void requestExit(ReqType req)=0
RecvScheduler(EventManager *em)
Scheduler for the incoming data packets.
void requestCkpt(ReqType) override
std::ostream CheckpointOut
bool doExit
Flag is set if exit is permitted upon sync completion.
static void toggleSync(ThreadContext *tc)
Trigger the primary to start/stop synchronization.
Tick syncStart
Tick to schedule the first dist sync event.
static uint64_t rankParam()
Getter for the dist rank param.
Tick prevRecvTick
The tick when the most recent receive event was processed.
bool run(bool same_tick) override
Core method to perform a full dist sync.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
static SyncEvent * syncEvent
The singleton SyncEvent object to schedule periodic dist sync.
EventManager * eventManager
The event manager associated with the simulated Ethernet link.
static System * sys
System pointer used to wakeup sleeping threads when stopping sync.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
RecvScheduler recvScheduler
Meta information about data packets received.
ReqType needCkpt
Ckpt requested.
unsigned numStopSyncReq
Counter for recording stop sync requests.
static const Priority Sim_Exit_Pri
If we want to exit on this cycle, it's the very last thing we do.
#define panic(...)
This implements a cprintf based panic() function.
void serialize(CheckpointOut &cp) const override
Serialize an object.
virtual void sendPacket(const Header &header, const EthPacketPtr &packet)=0
Send out a data packet to the remote end.
Generated on Tue Sep 7 2021 14:53:46 for gem5 by doxygen 1.8.17