49 instMasterID(params->
system->getMasterId(this,
"inst")),
50 dataMasterID(params->
system->getMasterId(this,
"data")),
51 instTraceFile(params->instTraceFile),
52 dataTraceFile(params->dataTraceFile),
53 icacheGen(*this,
".iside", icachePort, instMasterID, instTraceFile),
54 dcacheGen(*this,
".dside", dcachePort, dataMasterID, dataTraceFile,
70 fatal_if(
params->sizeROB > UINT16_MAX,
"ROB size set to %d exceeds the " 71 "max. value of %d.\n",
params->sizeROB, UINT16_MAX);
72 fatal_if(
params->sizeStoreBuffer > UINT16_MAX,
"ROB size set to %d " 73 "exceeds the max. value of %d.\n",
params->sizeROB,
75 fatal_if(
params->sizeLoadBuffer > UINT16_MAX,
"Load buffer size set to" 76 " %d exceeds the max. value of %d.\n",
77 params->sizeLoadBuffer, UINT16_MAX);
86 TraceCPUParams::create()
112 DPRINTF(TraceCPUInst,
"Instruction fetch request trace file is \"%s\"." 114 DPRINTF(TraceCPUData,
"Data memory request trace file is \"%s\".\n",
126 traceOffset = std::min(first_icache_tick, first_dcache_tick);
127 inform(
"%s: Time offset (tick) found as min of both traces is %lli.\n",
155 DPRINTF(TraceCPUInst,
"IcacheGen event.\n");
161 DPRINTF(TraceCPUInst,
"Scheduling next icacheGen event " 180 DPRINTF(TraceCPUData,
"DcacheGen event.\n");
219 .
name(
name() +
".numSchedDcacheEvent")
220 .
desc(
"Number of events scheduled to trigger data request generator")
224 .
name(
name() +
".numSchedIcacheEvent")
225 .
desc(
"Number of events scheduled to trigger instruction request generator")
230 .
desc(
"Number of micro-ops simulated by the Trace CPU")
235 .
desc(
"Cycles per micro-op used as a proxy for CPI")
247 using namespace Stats;
250 .name(
name() +
".maxDependents")
251 .desc(
"Max number of dependents observed on a node")
255 .name(
name() +
".maxReadyListSize")
256 .desc(
"Max size of the ready list observed")
260 .name(
name() +
".numSendAttempted")
261 .desc(
"Number of first attempts to send a request")
265 .name(
name() +
".numSendSucceeded")
266 .desc(
"Number of successful first attempts")
270 .name(
name() +
".numSendFailed")
271 .desc(
"Number of failed first attempts")
275 .name(
name() +
".numRetrySucceeded")
276 .desc(
"Number of successful retries")
280 .name(
name() +
".numSplitReqs")
281 .desc(
"Number of split requests")
285 .name(
name() +
".numSOLoads")
286 .desc(
"Number of strictly ordered loads")
290 .name(
name() +
".numSOStores")
291 .desc(
"Number of strictly ordered stores")
295 .name(
name() +
".dataLastTick")
296 .desc(
"Last tick simulated from the elastic data trace")
303 DPRINTF(TraceCPUData,
"Initializing data memory request generator " 304 "DcacheGen: elastic issue with retry.\n");
306 if (!readNextWindow())
307 panic(
"Trace has %d elements. It must have at least %d elements.\n",
308 depGraph.size(), 2 * windowSize);
309 DPRINTF(TraceCPUData,
"After 1st read, depGraph size:%d.\n",
312 if (!readNextWindow())
313 panic(
"Trace has %d elements. It must have at least %d elements.\n",
314 depGraph.size(), 2 * windowSize);
315 DPRINTF(TraceCPUData,
"After 2st read, depGraph size:%d.\n",
319 if (
DTRACE(TraceCPUData)) {
322 auto free_itr = readyList.begin();
323 DPRINTF(TraceCPUData,
"Execute tick of the first dependency free node %lli" 324 " is %d.\n", free_itr->seqNum, free_itr->execTick);
327 return (free_itr->execTick);
332 for (
auto& free_node : readyList) {
333 free_node.execTick -=
offset;
348 DPRINTF(TraceCPUData,
"Reading next window from file.\n");
356 DPRINTF(TraceCPUData,
"Start read: Size of depGraph is %d.\n",
359 uint32_t num_read = 0;
360 while (num_read != windowSize) {
368 if (!trace.read(new_node)) {
369 DPRINTF(TraceCPUData,
"\tTrace complete!\n");
370 traceComplete =
true;
382 depGraph[new_node->
seqNum] = new_node;
387 checkAndIssue(new_node);
391 DPRINTF(TraceCPUData,
"End read: Size of depGraph is %d.\n",
396 template<
typename T>
void 398 T& dep_array, uint8_t& num_dep)
400 for (
auto& a_dep : dep_array) {
408 auto parent_itr = depGraph.find(a_dep);
409 if (parent_itr != depGraph.end()) {
413 parent_itr->second->dependents.push_back(new_node);
414 auto num_depts = parent_itr->second->dependents.size();
415 maxDependents = std::max<double>(num_depts, maxDependents.value());
429 DPRINTF(TraceCPUData,
"Execute start occupancy:\n");
430 DPRINTFR(TraceCPUData,
"\tdepGraph = %d, readyList = %d, " 431 "depFreeQueue = %d ,", depGraph.size(), readyList.size(),
432 depFreeQueue.size());
433 hwResource.printOccupancy();
445 while (!depFreeQueue.empty()) {
446 if (checkAndIssue(depFreeQueue.front(),
false)) {
447 DPRINTF(TraceCPUData,
"Removing from depFreeQueue: seq. num " 448 "%lli.\n", (depFreeQueue.front())->seqNum);
455 auto graph_itr = depGraph.begin();
456 auto free_itr = readyList.begin();
459 while (free_itr->execTick <=
curTick() && free_itr != readyList.end()) {
462 graph_itr = depGraph.find(free_itr->seqNum);
463 assert(graph_itr != depGraph.end());
470 if (retryPkt->req->getReqInstSeqNum() != node_ptr->seqNum) {
471 panic(
"Retry packet's seqence number does not match " 472 "the first node in the readyList.\n");
474 if (port.sendTimingReq(retryPkt)) {
478 }
else if (node_ptr->isLoad() || node_ptr->isStore()) {
484 retryPkt = executeMemReq(node_ptr);
499 if (node_ptr->isLoad() && !node_ptr->isStrictlyOrdered()) {
501 DPRINTF(TraceCPUData,
"Node seq. num %lli sent. Waking up " 502 "dependents..\n", node_ptr->seqNum);
504 auto child_itr = (node_ptr->dependents).begin();
505 while (child_itr != (node_ptr->dependents).end()) {
508 if (!(*child_itr)->isStore() &&
509 (*child_itr)->removeRobDep(node_ptr->seqNum)) {
512 if ((*child_itr)->numRobDep == 0 &&
513 (*child_itr)->numRegDep == 0) {
517 checkAndIssue(*child_itr);
521 child_itr = node_ptr->dependents.erase(child_itr);
532 DPRINTF(TraceCPUData,
"Node seq. num %lli done. Waking" 533 " up dependents..\n", node_ptr->seqNum);
535 for (
auto child : node_ptr->dependents) {
538 if (child->removeDepOnInst(node_ptr->seqNum)) {
541 checkAndIssue(child);
547 readyList.erase(free_itr);
555 if (!node_ptr->isLoad() || node_ptr->isStrictlyOrdered()) {
557 hwResource.release(node_ptr);
559 (node_ptr->dependents).clear();
561 owner.updateNumOps(node_ptr->robNum);
565 depGraph.erase(graph_itr);
568 free_itr = readyList.begin();
572 if (
DTRACE(TraceCPUData)) {
574 DPRINTF(TraceCPUData,
"Execute end occupancy:\n");
575 DPRINTFR(TraceCPUData,
"\tdepGraph = %d, readyList = %d, " 576 "depFreeQueue = %d ,", depGraph.size(), readyList.size(),
577 depFreeQueue.size());
578 hwResource.printOccupancy();
582 DPRINTF(TraceCPUData,
"Not scheduling an event as expecting a retry" 583 "event from the cache for seq. num %lli.\n",
584 retryPkt->req->getReqInstSeqNum());
590 if (depGraph.size() < windowSize && !traceComplete)
597 if (!readyList.empty()) {
598 Tick next_event_tick = std::max(readyList.begin()->execTick,
600 DPRINTF(TraceCPUData,
"Attempting to schedule @%lli.\n",
602 owner.schedDcacheNextEvent(next_event_tick);
603 }
else if (readyList.empty() && !depFreeQueue.empty() &&
604 hwResource.isAvailable(depFreeQueue.front())) {
605 DPRINTF(TraceCPUData,
"Attempting to schedule @%lli.\n",
606 owner.clockEdge(
Cycles(1)));
607 owner.schedDcacheNextEvent(owner.clockEdge(
Cycles(1)));
612 if (depGraph.empty() && readyList.empty() && traceComplete &&
613 !hwResource.awaitingResponse()) {
614 DPRINTF(TraceCPUData,
"\tExecution Complete!\n");
624 DPRINTF(TraceCPUData,
"Executing memory request %lli (phys addr %d, " 625 "virt addr %d, pc %#x, size %d, flags %d).\n",
632 node_ptr->
isLoad() ? ++numSOLoads : ++numSOStores;
633 DPRINTF(TraceCPUData,
"Skipping strictly ordered request %lli.\n",
644 unsigned blk_size = owner.cacheLineSize();
646 if (!(blk_offset + node_ptr->
size <= blk_size)) {
647 node_ptr->
size = blk_size - blk_offset;
652 auto req = std::make_shared<Request>(
654 req->setReqInstSeqNum(node_ptr->
seqNum);
656 req->setPC(node_ptr->
pc);
661 node_ptr->
flags, masterID, node_ptr->
pc);
663 req->setReqInstSeqNum(node_ptr->
seqNum);
667 uint8_t* pkt_data =
new uint8_t[req->getSize()];
672 memset(pkt_data, 0xA, req->getSize());
677 bool success = port.sendTimingReq(pkt);
684 DPRINTF(TraceCPUData,
"Send failed. Saving packet for retry.\n");
701 DPRINTFR(TraceCPUData,
"\t\tseq. num %lli(%s) with rob num %lli is now" 707 if (hwResource.isAvailable(node_ptr)) {
709 DPRINTFR(TraceCPUData,
"\t\tResources available for seq. num %lli. Adding" 710 " to readyList, occupying resources.\n", node_ptr->
seqNum);
713 addToSortedReadyList(node_ptr->
seqNum,
714 owner.clockEdge() + node_ptr->
compDelay);
716 hwResource.occupy(node_ptr);
722 DPRINTFR(TraceCPUData,
"\t\tResources unavailable for seq. num %lli." 723 " Adding to depFreeQueue.\n", node_ptr->
seqNum);
724 depFreeQueue.push(node_ptr);
726 DPRINTFR(TraceCPUData,
"\t\tResources unavailable for seq. num %lli. " 727 "Still pending issue.\n", node_ptr->
seqNum);
739 hwResource.releaseStoreBuffer();
747 auto graph_itr = depGraph.find(pkt->
req->getReqInstSeqNum());
748 assert(graph_itr != depGraph.end());
752 hwResource.release(node_ptr);
754 DPRINTF(TraceCPUData,
"Load seq. num %lli response received. Waking up" 755 " dependents..\n", node_ptr->seqNum);
757 for (
auto child : node_ptr->dependents) {
758 if (child->removeDepOnInst(node_ptr->seqNum)) {
759 checkAndIssue(child);
764 (node_ptr->dependents).clear();
766 owner.updateNumOps(node_ptr->robNum);
770 depGraph.erase(graph_itr);
773 if (
DTRACE(TraceCPUData)) {
780 if (depGraph.size() < windowSize && !traceComplete)
792 Tick next_event_tick = readyList.empty() ? owner.clockEdge(
Cycles(1)) :
793 std::max(readyList.begin()->execTick, owner.clockEdge(
Cycles(1)));
794 DPRINTF(TraceCPUData,
"Attempting to schedule @%lli.\n",
796 owner.schedDcacheNextEvent(next_event_tick);
805 ready_node.
seqNum = seq_num;
809 auto itr = readyList.begin();
813 if (itr == readyList.end()) {
814 readyList.insert(itr, ready_node);
815 maxReadyListSize = std::max<double>(readyList.size(),
816 maxReadyListSize.value());
824 if (retryPkt->req->getReqInstSeqNum() == itr->seqNum)
830 while (!found && itr != readyList.end()) {
833 if (exec_tick < itr->execTick)
837 else if (exec_tick == itr->execTick) {
840 if (seq_num < itr->seqNum)
851 readyList.insert(itr, ready_node);
853 maxReadyListSize = std::max<double>(readyList.size(),
854 maxReadyListSize.value());
860 auto itr = readyList.begin();
861 if (itr == readyList.end()) {
862 DPRINTF(TraceCPUData,
"readyList is empty.\n");
865 DPRINTF(TraceCPUData,
"Printing readyList:\n");
866 while (itr != readyList.end()) {
867 auto graph_itr = depGraph.find(itr->seqNum);
868 GraphNode* node_ptr M5_VAR_USED = graph_itr->second;
869 DPRINTFR(TraceCPUData,
"\t%lld(%s), %lld\n", itr->seqNum,
870 node_ptr->typeToStr(), itr->execTick);
876 uint16_t max_rob, uint16_t max_stores, uint16_t max_loads)
878 sizeStoreBuffer(max_stores),
879 sizeLoadBuffer(max_loads),
880 oldestInFlightRobNum(UINT64_MAX),
897 }
else if (new_node->
isStore()) {
908 DPRINTFR(TraceCPUData,
"\tClearing done seq. num %d from inFlightNodes..\n",
924 DPRINTFR(TraceCPUData,
"\tCleared. inFlightNodes.size() = %d, " 932 if (done_node->
isLoad()) {
956 uint16_t num_in_flight_nodes;
958 num_in_flight_nodes = 0;
959 DPRINTFR(TraceCPUData,
"\t\tChecking resources to issue seq. num %lli:" 960 " #in-flight nodes = 0", new_node->
seqNum);
966 DPRINTFR(TraceCPUData,
"\t\tChecking resources to issue seq. num %lli:" 967 " #in-flight nodes = %d - %d = %d", new_node->
seqNum,
975 num_in_flight_nodes = 0;
976 DPRINTFR(TraceCPUData,
"\t\tChecking resources to issue seq. num %lli:" 977 " new oldestInFlightRobNum = %d, #in-flight nodes ignored",
980 DPRINTFR(TraceCPUData,
", LQ = %d/%d, SQ = %d/%d.\n",
984 if (num_in_flight_nodes >=
sizeROB) {
1004 DPRINTFR(TraceCPUData,
"oldestInFlightRobNum = %d, " 1005 "LQ = %d/%d, SQ = %d/%d.\n",
1014 using namespace Stats;
1017 .
name(
name() +
".numSendAttempted")
1018 .
desc(
"Number of first attempts to send a request")
1022 .
name(
name() +
".numSendSucceeded")
1023 .
desc(
"Number of successful first attempts")
1028 .
desc(
"Number of failed first attempts")
1032 .
name(
name() +
".numRetrySucceeded")
1033 .
desc(
"Number of successful retries")
1038 .
desc(
"Last tick simulated from the fixed inst trace")
1045 DPRINTF(TraceCPUInst,
"Initializing instruction fetch request generator" 1046 " IcacheGen: fixed issue with retry.\n");
1048 if (nextExecute()) {
1049 DPRINTF(TraceCPUInst,
"\tFirst tick = %d.\n", currElement.tick);
1050 return currElement.tick;
1052 panic(
"Read of first message in the trace failed.\n");
1063 DPRINTF(TraceCPUInst,
"Trying to send retry packet.\n");
1067 DPRINTF(TraceCPUInst,
"Retry packet sending failed.\n");
1073 DPRINTF(TraceCPUInst,
"Trying to send packet for currElement.\n");
1076 assert(currElement.isValid());
1080 if (!send(currElement.addr, currElement.blocksize,
1081 currElement.cmd, currElement.flags, currElement.pc)) {
1082 DPRINTF(TraceCPUInst,
"currElement sending failed.\n");
1093 DPRINTF(TraceCPUInst,
"Packet sent successfully, trying to read next " 1098 Tick last_tick = currElement.tick;
1099 if (nextExecute()) {
1100 assert(currElement.tick >= last_tick);
1101 delta = currElement.tick - last_tick;
1122 currElement.clear();
1133 DPRINTF(TraceCPUInst,
"inst fetch: %c addr %d pc %#x size %d tick %d\n",
1134 currElement.cmd.isRead() ?
'r' :
'w',
1137 currElement.blocksize,
1149 auto req = std::make_shared<Request>(
addr, size, flags,
masterID);
1158 uint8_t* pkt_data =
new uint8_t[req->getSize()];
1162 memset(pkt_data, 0xA, req->getSize());
1180 DPRINTF(TraceCPUInst,
"Icache retry received. Scheduling next IcacheGen" 1181 " event @%lli.\n",
curTick());
1190 DPRINTF(TraceCPUData,
"Dcache retry received. Scheduling next DcacheGen" 1191 " event @%lli.\n",
curTick());
1199 DPRINTF(TraceCPUData,
"Scheduling next DcacheGen event at %lli.\n",
1204 DPRINTF(TraceCPUData,
"Re-scheduling next dcache event from %lli" 1230 DPRINTF(TraceCPUData,
"Received timing response from Dcache.\n");
1254 const std::string& filename,
1255 const double time_multiplier)
1257 timeMultiplier(time_multiplier),
1261 ProtoMessage::InstDepRecordHeader header_msg;
1263 panic(
"Failed to read packet header from %s\n", filename);
1266 panic(
"Trace %s was recorded with a different tick frequency %d\n",
1267 header_msg.tick_freq());
1285 ProtoMessage::InstDepRecord pkt_msg;
1288 element->
seqNum = pkt_msg.seq_num();
1289 element->
type = pkt_msg.type();
1295 assert((pkt_msg.rob_dep()).size() <= element->
maxRobDep);
1296 for (
int i = 0;
i < (pkt_msg.rob_dep()).size();
i++) {
1304 for (
int i = 0;
i < (pkt_msg.reg_dep()).size();
i++) {
1308 bool duplicate =
false;
1310 duplicate |= (pkt_msg.reg_dep(
i) == element->
robDep[
j]);
1319 if (pkt_msg.has_p_addr())
1320 element->
physAddr = pkt_msg.p_addr();
1324 if (pkt_msg.has_v_addr())
1325 element->
virtAddr = pkt_msg.v_addr();
1329 if (pkt_msg.has_size())
1330 element->
size = pkt_msg.size();
1334 if (pkt_msg.has_flags())
1335 element->
flags = pkt_msg.flags();
1339 if (pkt_msg.has_pc())
1340 element->
pc = pkt_msg.pc();
1346 if (pkt_msg.has_weight()) {
1360 for (
auto& own_reg_dep : regDep) {
1361 if (own_reg_dep == reg_dep) {
1364 assert(numRegDep > 0);
1366 DPRINTFR(TraceCPUData,
"\tFor %lli: Marking register dependency %lli " 1367 "done.\n", seqNum, reg_dep);
1379 for (
auto& own_rob_dep : robDep) {
1380 if (own_rob_dep == rob_dep) {
1383 assert(numRobDep > 0);
1385 DPRINTFR(TraceCPUData,
"\tFor %lli: Marking ROB dependency %lli " 1386 "done.\n", seqNum, rob_dep);
1395 for (
auto& own_reg_dep : regDep) {
1403 for (
auto& own_rob_dep : robDep) {
1413 if (!removeRobDep(done_seq_num)) {
1417 bool regdep_found M5_VAR_USED = removeRegDep(done_seq_num);
1418 assert(regdep_found);
1421 return (numRobDep == 0 && numRegDep == 0);
1427 DPRINTFR(TraceCPUData,
"%lli", seqNum);
1428 DPRINTFR(TraceCPUData,
",%s", typeToStr());
1429 if (isLoad() || isStore()) {
1431 DPRINTFR(TraceCPUData,
",%i", size);
1432 DPRINTFR(TraceCPUData,
",%i", flags);
1434 DPRINTFR(TraceCPUData,
",%lli", compDelay);
1437 while (robDep[i] != 0) {
1438 DPRINTFR(TraceCPUData,
",%lli", robDep[i]);
1443 while (regDep[i] != 0) {
1444 DPRINTFR(TraceCPUData,
",%lli", regDep[i]);
1447 auto child_itr = dependents.begin();
1448 DPRINTFR(TraceCPUData,
"dependents:");
1449 while (child_itr != dependents.end()) {
1450 DPRINTFR(TraceCPUData,
":%lli", (*child_itr)->seqNum);
1460 return Record::RecordType_Name(
type);
1467 ProtoMessage::PacketHeader header_msg;
1469 panic(
"Failed to read packet header from %s\n", filename);
1472 panic(
"Trace %s was recorded with a different tick frequency %d\n",
1473 header_msg.tick_freq());
1489 element->
cmd = pkt_msg.
cmd();
1490 element->
addr = pkt_msg.addr();
1492 element->
tick = pkt_msg.tick();
1493 element->
flags = pkt_msg.has_flags() ? pkt_msg.flags() : 0;
1494 element->
pc = pkt_msg.has_pc() ? pkt_msg.pc() : 0;
InputStream trace
Input stream used for reading the input trace file.
void execute()
This is the main execute function which consumes nodes from the sorted readyList. ...
#define panic(...)
This implements a cprintf based panic() function.
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...
const uint16_t sizeStoreBuffer
The size of store buffer.
const uint64_t progressMsgInterval
Interval of committed instructions specified by the user at which a progress info message is printed...
bool send(Addr addr, unsigned size, const MemCmd &cmd, Request::FlagsType flags, Addr pc)
Creates a new request assigning the request parameters passed by the arguments.
bool isStore() const
Is the node a store.
Addr blocksize
The size of the access for the request.
TraceCPU & owner
Reference of the TraceCPU.
Cycles is a wrapper class for representing cycle counts, i.e.
NodeSeqNum seqNum
The sequence number of the ready node.
void exit()
Exit the FixedRetryGen.
void recvReqRetry()
Handle a retry signalled by the cache if data access failed in the first attempt. ...
bool isTraceComplete()
Returns the traceComplete variable which is set when end of the input trace file is reached...
EventFunctionWrapper dcacheNextEvent
Event for the control flow method schedDcacheNext()
bool removeRegDep(NodeSeqNum reg_dep)
Remove completed instruction from register dependency array.
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
bool nextExecute()
Reads a line of the trace file.
void updateNumOps(uint64_t rob_num)
HardwareResource(uint16_t max_rob, uint16_t max_stores, uint16_t max_loads)
Constructor that initializes the sizes of the structures.
PacketPtr executeMemReq(GraphNode *node_ptr)
Creates a new request for a load or store assigning the request parameters.
Request::FlagsType flags
Potential request flags to use.
void completeMemAccess(PacketPtr pkt)
When a load writeback is received, that is when the load completes, release the dependents on it...
static PacketPtr createWrite(const RequestPtr &req)
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.
void exit()
Exit the ElasticDataGen.
void regStats()
Callback to set stat parameters.
static const uint8_t maxRobDep
The maximum no.
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.
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 sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the slave port by calling its corresponding receive function...
void clearRobDep()
Initialize register dependency array to all zeroes.
uint64_t NodeSeqNum
Node sequence number type.
bool readNextWindow()
Reads a line of the trace file.
uint8_t numRegDep
Number of register dependencies.
Tick Frequency
The simulated frequency of curTick(). (In ticks per second)
void addDepsOnParent(GraphNode *new_node, T &dep_array, uint8_t &num_dep)
Iterate over the dependencies of a new node and add the new node to the list of dependents of the par...
Stats::Scalar numSendSucceeded
bool traceComplete
Set to true when end of trace is reached.
Tick init()
Called from TraceCPU init().
void clearRegDep()
Initialize register dependency array to all zeroes.
RequestPtr req
A pointer to the original request.
void regStats() override
Callback to set stat parameters.
CountedExitEvent * execCompleteEvent
A CountedExitEvent which when serviced decrements the counter.
Tick curTick()
The current simulated tick.
bool awaitingResponse() const
Check if there are any outstanding requests, i.e.
virtual Port & getInstPort()=0
Purely virtual method that returns a reference to the instruction port.
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...
uint64_t progressMsgThreshold
NodeRobNum robNum
ROB occupancy number.
TraceCPU(TraceCPUParams *params)
uint64_t Tick
Tick count type.
const bool enableEarlyExit
Exit when any one Trace CPU completes its execution.
EventFunctionWrapper icacheNextEvent
Event for the control flow method schedIcacheNext()
The struct GraphNode stores an instruction in the trace file.
This struct stores a line in the trace file.
void dcacheRetryRecvd()
When data cache port receives a retry, schedule event dcacheNextEvent.
FixedRetryGen icacheGen
Instance of FixedRetryGen to replay instruction read requests.
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
void recvReqRetry()
Handle a retry signalled by the cache if instruction read failed in the first attempt.
void schedule(Event &event, Tick when)
bool isAvailable(const GraphNode *new_node) const
Check if structures required to issue a node are free.
void reschedule(Event &event, Tick when, bool always=false)
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
void release(const GraphNode *done_node)
Release appropriate structures for a completed node.
Derived & precision(int _precision)
Set the precision and marks this stat to print at the end of simulation.
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 PacketPtr createRead(const RequestPtr &req)
Constructor-like methods that return Packets based on Request objects.
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.
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 clockEdge(Cycles cycles=Cycles(0)) const
Determine the tick when a cycle begins, by default the current one, but the argument also enables the...
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.
bool scheduled() const
Determine if the current event is scheduled.
Derived & name(const std::string &name)
Set the name and marks this stat to print at the end of simulation.
Stats::Scalar numOps
Stat for number of simulated micro-ops.
bool checkAndIssue(const GraphNode *node_ptr, bool first=true)
Attempts to issue a node once the node's source dependencies are complete.
const MasterID masterID
MasterID used for the requests being sent.
virtual const std::string name() const
Tick tick
The time at which the request should be sent.
void exitSimLoop(const std::string &message, int exit_code, Tick when, Tick repeat, bool serialize)
Schedule an event to exit the simulation loop (returning to Python) at the end of the current cycle (...
bool recvTimingResp(PacketPtr pkt)
Receive the timing reponse and call dcacheRecvTimingResp() method of the dcacheGen to handle completi...
uint8_t numRobDep
Number of order dependencies.
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.
Addr virtAddr
The virtual address for the request if any.
uint32_t size
Size of request if any.
void takeOverFrom(Port *old)
A utility function to make it easier to swap out ports.
void printReadyList()
Print readyList for debugging using debug flag TraceCPUData.
bool isLoad() const
Is the node a load.
void releaseStoreBuffer()
Release store buffer entry for a completed store.
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
void adjustInitTraceOffset(Tick &offset)
Adjust traceOffset based on what TraceCPU init() determines on comparing the offsets in the fetch req...
void occupy(const GraphNode *new_node)
Occupy appropriate structures for an issued node.
virtual Port & getDataPort()=0
Purely virtual method that returns a reference to the data port.
RegDepArray regDep
Array of register dependencies (incoming) if any.
Stats::Scalar numRetrySucceeded
void dataDynamic(T *p)
Set the data pointer to a value that should have delete [] called on it.
Addr addr
The address for the request.
Tick init()
Called from TraceCPU init().
Port & getDataPort()
Used to get a reference to the dcache port.
void icacheRetryRecvd()
When instruction cache port receives a retry, schedule event icacheNextEvent.
Addr physAddr
The address for the request if any.
Derived & desc(const std::string &_desc)
Set the description and marks this stat to print at the end of simulation.
void printOccupancy()
Print resource occupancy for debugging.
void addToSortedReadyList(NodeSeqNum seq_num, Tick exec_tick)
Add a ready node to the readyList.
void writeElementAsTrace() const
Write out element in trace-compatible format using debug flag TraceCPUData.
Tick when() const
Get the time that the event is scheduled.
RobDepArray robDep
Array of order dependencies.
const Params * params() const
std::string typeToStr() const
Return string specifying the type of the node.
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.
int ContextID
Globally unique thread context ID.
const std::string & name() const
Returns name of the ElasticDataGen instance.
NodeSeqNum seqNum
Instruction sequence number.
bool removeRobDep(NodeSeqNum rob_dep)
Remove completed instruction from order dependency array.
bool removeDepOnInst(NodeSeqNum done_seq_num)
Check for all dependencies on completed inst.
ProbePointArg< PacketInfo > Packet
Packet probe point.
bool tryNext()
This tries to send current or retry packet and returns true if successfull.