38 #ifndef __CPU_TRACE_TRACE_CPU_HH__ 39 #define __CPU_TRACE_TRACE_CPU_HH__ 45 #include <unordered_map> 47 #include "arch/registers.hh" 50 #include "debug/TraceCPUData.hh" 51 #include "debug/TraceCPUInst.hh" 52 #include "params/TraceCPU.hh" 53 #include "proto/inst_dep_record.pb.h" 54 #include "proto/packet.pb.h" 427 const std::string& trace_file)
432 genName(
owner.
name() +
".fixedretry" + _name),
456 const std::string&
name()
const {
return genName; }
566 typedef ProtoMessage::InstDepRecord
Record;
582 static const uint8_t maxRobDep = 2;
588 typedef std::array<NodeSeqNum, TheISA::MaxInstSrcRegs>
RegDepArray;
640 bool isLoad()
const {
return (type == Record::LOAD); }
643 bool isStore()
const {
return (type == Record::STORE); }
646 bool isComp()
const {
return (type == Record::COMP); }
655 bool removeRegDep(NodeSeqNum reg_dep);
658 bool removeRobDep(NodeSeqNum rob_dep);
661 bool removeDepOnInst(NodeSeqNum done_seq_num);
671 void writeElementAsTrace()
const;
674 std::string typeToStr()
const;
717 void release(
const GraphNode* done_node);
720 void releaseStoreBuffer();
728 bool isAvailable(
const GraphNode* new_node)
const;
737 bool awaitingResponse()
const;
740 void printOccupancy();
821 const double time_multiplier);
851 const std::string& trace_file, TraceCPUParams *params)
855 trace(trace_file, 1.0 / params->freqMultiplier),
856 genName(
owner.
name() +
".elastic" + _name),
858 traceComplete(false),
861 windowSize(trace.getWindowSize()),
862 hwResource(params->sizeROB, params->sizeStoreBuffer,
863 params->sizeLoadBuffer)
865 DPRINTF(TraceCPUData,
"Window size in the trace is %d.\n",
886 const std::string&
name()
const {
return genName; }
898 bool readNextWindow();
910 template<
typename T>
void addDepsOnParent(
GraphNode *new_node,
944 void addToSortedReadyList(NodeSeqNum seq_num,
Tick exec_tick);
947 void printReadyList();
974 bool checkAndIssue(
const GraphNode* node_ptr,
bool first =
true);
1149 #endif // __CPU_TRACE_TRACE_CPU_HH__ A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
InputStream trace
Input stream used for reading the input trace file.
Struct to store a ready-to-execute node and its execution tick.
void schedDcacheNext()
This is the control flow that uses the functionality of the dcacheGen to replay the trace...
Stats::Scalar maxReadyListSize
The HardwareResource class models structures that hold the in-flight nodes.
const uint16_t sizeStoreBuffer
The size of store buffer.
std::string genName
String to store the name of the FixedRetryGen.
const uint64_t progressMsgInterval
Interval of committed instructions specified by the user at which a progress info message is printed...
bool isStore() const
Is the node a store.
Ports are used to interface objects to each other.
Addr blocksize
The size of the access for the request.
Stats::Scalar dataLastTick
Tick when ElasticDataGen completes execution.
IcachePort icachePort
Port to connect to L1 instruction cache.
TraceCPU & owner
Reference of the TraceCPU.
bool isValid() const
Check validity of this element.
NodeSeqNum seqNum
The sequence number of the ready node.
bool isTraceComplete()
Returns the traceComplete variable which is set when end of the input trace file is reached...
ProtoMessage::InstDepRecord::RecordType RecordType
void recvTimingSnoopReq(PacketPtr pkt)
Required functionally but do nothing.
EventFunctionWrapper dcacheNextEvent
Event for the control flow method schedDcacheNext()
std::list< ReadyNode > readyList
List of nodes that are ready to execute.
uint16_t numInFlightStores
Number of ready stores for which request may or may not be sent.
Request::Flags flags
Request flags if any.
RecordType type
Type of the node corresponding to the instruction modelled by it.
PacketPtr retryPkt
PacketPtr used to store the packet to retry.
Stats::Scalar numSchedIcacheEvent
void updateNumOps(uint64_t rob_num)
Request::FlagsType flags
Potential request flags to use.
Stats::Scalar numSOStores
std::map< NodeSeqNum, NodeRobNum > inFlightNodes
A map from the sequence number to the ROB number of the in- flight nodes.
void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Tick traceOffset
This stores the time offset in the trace, which is taken away from the ready times of requests...
bool isExecComplete() const
Returns the execComplete variable which is set when the last node is executed.
Port & getInstPort()
Used to get a reference to the icache port.
std::string instTraceFile
File names for input instruction and data traces.
ProtoMessage::InstDepRecord Record
uint64_t getMicroOpCount() const
Get number of micro-ops modelled in the TraceCPU replay.
void regStats()
Callback to set stat parameters.
bool recvTimingResp(PacketPtr pkt)
Receive the timing reponse and simply delete the packet since instruction fetch requests are issued a...
const uint16_t sizeROB
The size of the ROB used to throttle the max.
void checkAndSchedExitEvent()
This is called when either generator finishes executing from the trace.
bool oneTraceComplete
Set to true when one of the generators finishes replaying its trace.
Stats::Scalar numRetrySucceeded
PacketPtr retryPkt
PacketPtr used to store the packet to retry.
void schedIcacheNext()
This is the control flow that uses the functionality of the icacheGen to replay the trace...
Stats::Scalar numSchedDcacheEvent
MemCmd cmd
Specifies if the request is to be a read or a write.
bool isSnooping() const
Required functionally.
MasterPort & port
Reference of the port to be used to issue memory requests.
DcachePort(TraceCPU *_cpu)
Default constructor.
uint64_t NodeSeqNum
Node sequence number type.
Stats::Scalar maxDependents
Stats for data memory accesses replayed.
uint8_t numRegDep
Number of register dependencies.
bool execComplete
Set true when execution of trace is complete.
Stats::Scalar numSendSucceeded
Stats::Scalar numSendAttempted
Stats for instruction accesses replayed.
Declaration of Statistics objects.
bool traceComplete
Set to true when end of trace is reached.
This is a simple scalar statistic, like a counter.
const uint32_t windowSize
Window size within which to check for dependencies.
std::queue< const GraphNode * > depFreeQueue
Queue of dependency-free nodes that are pending issue because resources are not available.
IcachePort(TraceCPU *_cpu)
Default constructor.
The elastic data memory request generator to read protobuf trace containing execution trace annotated...
CountedExitEvent * execCompleteEvent
A CountedExitEvent which when serviced decrements the counter.
bool isStrictlyOrdered() const
Return true if node has a request which is strictly ordered.
The trace cpu replays traces generated using the elastic trace probe attached to the O3 CPU model...
std::vector< GraphNode * > dependents
A vector of nodes dependent (outgoing) on this node.
uint64_t progressMsgThreshold
NodeRobNum robNum
ROB occupancy number.
std::array< NodeSeqNum, maxRobDep > RobDepArray
Typedef for the array containing the ROB dependencies.
DcachePort dcachePort
Port to connect to L1 data cache.
TraceCPU(TraceCPUParams *params)
const MasterID dataMasterID
Master id for data read and write requests.
const std::string & name() const
Returns name of the FixedRetryGen instance.
uint64_t Tick
Tick count type.
const bool enableEarlyExit
Exit when any one Trace CPU completes its execution.
void wakeup(ThreadID tid=0)
int64_t delta
Stores the difference in the send ticks of the current and last packets.
EventFunctionWrapper icacheNextEvent
Event for the control flow method schedIcacheNext()
The struct GraphNode stores an instruction in the trace file.
bool nextRead
Set to true when the next window of instructions need to be read.
const MasterID masterID
MasterID used for the requests being sent.
This struct stores a line in the trace file.
Stats::Scalar instLastTick
Last simulated tick by the FixedRetryGen.
TraceCPU & owner
Reference of the TraceCPU.
void dcacheRetryRecvd()
When data cache port receives a retry, schedule event dcacheNextEvent.
FixedRetryGen icacheGen
Instance of FixedRetryGen to replay instruction read requests.
void recvReqRetry()
Handle a retry signalled by the cache if instruction read failed in the first attempt.
void clear()
Make this element invalid.
Stats::Scalar numSendFailed
std::string genName
String to store the name of the FixedRetryGen.
Generator to read protobuf trace containing memory requests at fixed timestamps, perform flow control...
TraceElement currElement
Store an element read from the trace to send as the next packet.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
uint16_t numInFlightLoads
Number of ready loads for which request may or may not be sent.
uint64_t compDelay
Computational delay.
MasterPort & port
Reference of the port to be used to issue memory requests.
static int numTraceCPUs
Number of Trace CPUs in the system used as a shared variable and passed to the CountedExitEvent event...
Stats::Formula cpi
Stat for the CPI.
int64_t Counter
Statistics counter type.
void dcacheRecvTimingResp(PacketPtr pkt)
When data cache port receives a response, this calls the dcache generator method handle to complete t...
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Tick execTick
The tick at which the ready node must be executed.
NodeRobNum oldestInFlightRobNum
The ROB number of the oldest in-flight node.
const uint16_t sizeLoadBuffer
The size of load buffer.
const MasterID instMasterID
Master id for instruction read requests.
bool isComp() const
Is the node a compute (non load/store) node.
Stats::Scalar numOps
Stat for number of simulated micro-ops.
int16_t ThreadID
Thread index/ID type.
const MasterID masterID
MasterID used for the requests being sent.
Tick tick
The time at which the request should be sent.
ElasticDataGen(TraceCPU &_owner, const std::string &_name, MasterPort &_port, MasterID master_id, const std::string &trace_file, TraceCPUParams *params)
uint8_t numRobDep
Number of order dependencies.
IcachePort class that interfaces with L1 Instruction Cache.
Stats::Scalar numSendFailed
void schedDcacheNextEvent(Tick when)
Schedule event dcacheNextEvent at the given tick.
std::string dataTraceFile
Stats::Scalar numSendAttempted
ElasticDataGen dcacheGen
Instance of ElasticDataGen to replay data read and write requests.
FixedRetryGen(TraceCPU &_owner, const std::string &_name, MasterPort &_port, MasterID master_id, const std::string &trace_file)
Addr virtAddr
The virtual address for the request if any.
uint32_t size
Size of request if any.
const std::string name() const
Return port name (for DPRINTF).
bool isLoad() const
Is the node a load.
Counter totalInsts() const
This is a pure virtual function in BaseCPU.
Tick send(AtomicResponseProtocol *peer, PacketPtr pkt)
Send an atomic request packet, where the data is moved and the state is updated in zero time...
RegDepArray regDep
Array of register dependencies (incoming) if any.
Stats::Scalar numRetrySucceeded
Addr addr
The address for the request.
Stats::Scalar numSendSucceeded
Port & getDataPort()
Used to get a reference to the dcache port.
void icacheRetryRecvd()
When instruction cache port receives a retry, schedule event icacheNextEvent.
The request is required to be strictly ordered by CPU models and is non-speculative.
std::unordered_map< NodeSeqNum, GraphNode * > depGraph
Store the depGraph of GraphNodes.
bool traceComplete
Set to true when end of trace is reached.
Addr physAddr
The address for the request if any.
std::array< NodeSeqNum, TheISA::MaxInstSrcRegs > RegDepArray
Typedef for the array containing the register dependencies.
Stats::Scalar numSplitReqs
Counter totalOps() const
Return totalOps as the number of committed micro-ops plus the speculatively issued loads that are mod...
void recvFunctionalSnoop(PacketPtr pkt)
Required functionally but do nothing.
DcachePort class that interfaces with L1 Data Cache.
RobDepArray robDep
Array of order dependencies.
const Params * params() const
void takeOverFrom(BaseCPU *oldCPU)
Load the state of a CPU from the previous CPU object, invoked on all new CPUs that are about to be sw...
Counter value() const
Return the current value of this stat as its base type.
const std::string & name() const
Returns name of the ElasticDataGen instance.
void recvTimingSnoopReq(PacketPtr pkt)
Required functionally but do nothing.
uint64_t NodeRobNum
Node ROB number type.
Declaration of a wrapper for protobuf output streams and input streams.
NodeSeqNum seqNum
Instruction sequence number.
InputStream trace
Input stream used for reading the input trace file.
HardwareResource hwResource
Hardware resources required to contain in-flight nodes and to throttle issuing of new nodes when reso...