gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
trace_cpu.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 - 2016 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #ifndef __CPU_TRACE_TRACE_CPU_HH__
39 #define __CPU_TRACE_TRACE_CPU_HH__
40 
41 #include <array>
42 #include <cstdint>
43 #include <queue>
44 #include <set>
45 #include <unordered_map>
46 
47 #include "arch/registers.hh"
48 #include "base/statistics.hh"
49 #include "cpu/base.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"
55 #include "proto/protoio.hh"
56 #include "sim/sim_events.hh"
57 
140 class TraceCPU : public BaseCPU
141 {
142 
143  public:
144  TraceCPU(TraceCPUParams *params);
145  ~TraceCPU();
146 
147  void init();
148 
157  {
158  return 0;
159  }
160 
168  {
169  return numOps.value();
170  }
171 
172  /*
173  * Set the no. of ops when elastic data generator completes executing a
174  * node.
175  */
176  void updateNumOps(uint64_t rob_num);
177 
178  /* Pure virtual function in BaseCPU. Do nothing. */
179  void wakeup(ThreadID tid = 0)
180  {
181  return;
182  }
183 
184  /*
185  * When resuming from checkpoint in FS mode, the TraceCPU takes over from
186  * the old cpu. This function overrides the takeOverFrom() function in the
187  * BaseCPU. It unbinds the ports of the old CPU and binds the ports of the
188  * TraceCPU.
189  */
190  void takeOverFrom(BaseCPU *oldCPU);
191 
196  void icacheRetryRecvd();
197 
202  void dcacheRetryRecvd();
203 
211 
217  void schedDcacheNextEvent(Tick when);
218 
219  protected:
220 
224  class IcachePort : public MasterPort
225  {
226  public:
229  : MasterPort(_cpu->name() + ".icache_port", _cpu),
230  owner(_cpu)
231  { }
232 
233  public:
242  bool recvTimingResp(PacketPtr pkt);
243 
250 
255  void recvReqRetry();
256 
257  private:
259  };
260 
264  class DcachePort : public MasterPort
265  {
266 
267  public:
270  : MasterPort(_cpu->name() + ".dcache_port", _cpu),
271  owner(_cpu)
272  { }
273 
274  public:
275 
283  bool recvTimingResp(PacketPtr pkt);
284 
291  { }
292 
299  { }
300 
305  void recvReqRetry();
306 
312  bool isSnooping() const { return true; }
313 
314  private:
316  };
317 
320 
323 
326 
329 
332 
340  {
341 
342  private:
343 
347  struct TraceElement {
348 
351 
354 
357 
360 
363 
366 
372  bool isValid() const {
373  return cmd != MemCmd::InvalidCmd;
374  }
375 
379  void clear() {
380  cmd = MemCmd::InvalidCmd;
381  }
382  };
383 
390  {
391 
392  private:
393 
394  // Input file stream for the protobuf trace
396 
397  public:
398 
404  InputStream(const std::string& filename);
405 
410  void reset();
411 
420  bool read(TraceElement* element);
421  };
422 
423  public:
424  /* Constructor */
425  FixedRetryGen(TraceCPU& _owner, const std::string& _name,
426  MasterPort& _port, MasterID master_id,
427  const std::string& trace_file)
428  : owner(_owner),
429  port(_port),
430  masterID(master_id),
431  trace(trace_file),
432  genName(owner.name() + ".fixedretry" + _name),
433  retryPkt(nullptr),
434  delta(0),
435  traceComplete(false)
436  {
437  }
438 
445  Tick init();
446 
453  bool tryNext();
454 
456  const std::string& name() const { return genName; }
457 
471  bool send(Addr addr, unsigned size, const MemCmd& cmd,
472  Request::FlagsType flags, Addr pc);
473 
475  void exit();
476 
484  bool nextExecute();
485 
492  bool isTraceComplete() { return traceComplete; }
493 
494  int64_t tickDelta() { return delta; }
495 
496  void regStats();
497 
498  private:
499 
502 
505 
508 
511 
513  std::string genName;
514 
517 
523  int64_t delta;
524 
529 
532 
540 
541  };
542 
555  {
556 
557  private:
558 
560  typedef uint64_t NodeSeqNum;
561 
563  typedef uint64_t NodeRobNum;
564 
565  typedef ProtoMessage::InstDepRecord::RecordType RecordType;
566  typedef ProtoMessage::InstDepRecord Record;
567 
574  class GraphNode {
575 
576  public:
582  static const uint8_t maxRobDep = 2;
583 
585  typedef std::array<NodeSeqNum, maxRobDep> RobDepArray;
586 
588  typedef std::array<NodeSeqNum, TheISA::MaxInstSrcRegs> RegDepArray;
589 
591  NodeSeqNum seqNum;
592 
594  NodeRobNum robNum;
595 
597  RecordType type;
598 
601 
604 
606  uint32_t size;
607 
610 
613 
615  RobDepArray robDep;
616 
618  uint8_t numRobDep;
619 
621  uint64_t compDelay;
622 
627  RegDepArray regDep;
628 
630  uint8_t numRegDep;
631 
638 
640  bool isLoad() const { return (type == Record::LOAD); }
641 
643  bool isStore() const { return (type == Record::STORE); }
644 
646  bool isComp() const { return (type == Record::COMP); }
647 
649  void clearRegDep();
650 
652  void clearRobDep();
653 
655  bool removeRegDep(NodeSeqNum reg_dep);
656 
658  bool removeRobDep(NodeSeqNum rob_dep);
659 
661  bool removeDepOnInst(NodeSeqNum done_seq_num);
662 
664  bool isStrictlyOrdered() const {
665  return (flags.isSet(Request::STRICT_ORDER));
666  }
671  void writeElementAsTrace() const;
672 
674  std::string typeToStr() const;
675  };
676 
678  struct ReadyNode
679  {
681  NodeSeqNum seqNum;
682 
685  };
686 
693  {
694  public:
702  HardwareResource(uint16_t max_rob, uint16_t max_stores,
703  uint16_t max_loads);
704 
710  void occupy(const GraphNode* new_node);
711 
717  void release(const GraphNode* done_node);
718 
720  void releaseStoreBuffer();
721 
728  bool isAvailable(const GraphNode* new_node) const;
729 
737  bool awaitingResponse() const;
738 
740  void printOccupancy();
741 
742  private:
747  const uint16_t sizeROB;
748 
753  const uint16_t sizeStoreBuffer;
754 
759  const uint16_t sizeLoadBuffer;
760 
771  std::map<NodeSeqNum, NodeRobNum> inFlightNodes;
772 
775 
778 
781  };
782 
789  {
790 
791  private:
792 
795 
802  const double timeMultiplier;
803 
805  uint64_t microOpCount;
806 
811  uint32_t windowSize;
812  public:
813 
820  InputStream(const std::string& filename,
821  const double time_multiplier);
822 
827  void reset();
828 
838  bool read(GraphNode* element);
839 
841  uint32_t getWindowSize() const { return windowSize; }
842 
844  uint64_t getMicroOpCount() const { return microOpCount; }
845  };
846 
847  public:
848  /* Constructor */
849  ElasticDataGen(TraceCPU& _owner, const std::string& _name,
850  MasterPort& _port, MasterID master_id,
851  const std::string& trace_file, TraceCPUParams *params)
852  : owner(_owner),
853  port(_port),
854  masterID(master_id),
855  trace(trace_file, 1.0 / params->freqMultiplier),
856  genName(owner.name() + ".elastic" + _name),
857  retryPkt(nullptr),
858  traceComplete(false),
859  nextRead(false),
860  execComplete(false),
861  windowSize(trace.getWindowSize()),
862  hwResource(params->sizeROB, params->sizeStoreBuffer,
863  params->sizeLoadBuffer)
864  {
865  DPRINTF(TraceCPUData, "Window size in the trace is %d.\n",
866  windowSize);
867  }
868 
875  Tick init();
876 
883  void adjustInitTraceOffset(Tick& offset);
884 
886  const std::string& name() const { return genName; }
887 
889  void exit();
890 
898  bool readNextWindow();
899 
910  template<typename T> void addDepsOnParent(GraphNode *new_node,
911  T& dep_array,
912  uint8_t& num_dep);
913 
923  void execute();
924 
935  PacketPtr executeMemReq(GraphNode* node_ptr);
936 
944  void addToSortedReadyList(NodeSeqNum seq_num, Tick exec_tick);
945 
947  void printReadyList();
948 
954  void completeMemAccess(PacketPtr pkt);
955 
962  bool isExecComplete() const { return execComplete; }
963 
974  bool checkAndIssue(const GraphNode* node_ptr, bool first = true);
975 
977  uint64_t getMicroOpCount() const { return trace.getMicroOpCount(); }
978 
979  void regStats();
980 
981  private:
982 
985 
988 
991 
994 
996  std::string genName;
997 
1000 
1003 
1005  bool nextRead;
1006 
1009 
1019  const uint32_t windowSize;
1020 
1026 
1028  std::unordered_map<NodeSeqNum, GraphNode*> depGraph;
1029 
1037  std::queue<const GraphNode*> depFreeQueue;
1038 
1041 
1054  };
1055 
1058 
1061 
1068  void schedIcacheNext();
1069 
1075  void schedDcacheNext();
1076 
1079 
1082 
1084  void checkAndSchedExitEvent();
1085 
1088 
1096 
1103  static int numTraceCPUs;
1104 
1111 
1116  const bool enableEarlyExit;
1117 
1122  const uint64_t progressMsgInterval;
1123 
1124  /*
1125  * The progress msg threshold is kept updated to the next multiple of the
1126  * progress msg interval. As soon as the threshold is reached, an info
1127  * message is printed.
1128  */
1130 
1133 
1138 
1139  public:
1140 
1142  Port &getInstPort() { return icachePort; }
1143 
1145  Port &getDataPort() { return dcachePort; }
1146 
1147  void regStats();
1148 };
1149 #endif // __CPU_TRACE_TRACE_CPU_HH__
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:71
InputStream trace
Input stream used for reading the input trace file.
Definition: trace_cpu.hh:993
Struct to store a ready-to-execute node and its execution tick.
Definition: trace_cpu.hh:678
void schedDcacheNext()
This is the control flow that uses the functionality of the dcacheGen to replay the trace...
Definition: trace_cpu.cc:178
#define DPRINTF(x,...)
Definition: trace.hh:225
Stats::Scalar maxReadyListSize
Definition: trace_cpu.hh:1044
The HardwareResource class models structures that hold the in-flight nodes.
Definition: trace_cpu.hh:692
const uint16_t sizeStoreBuffer
The size of store buffer.
Definition: trace_cpu.hh:753
std::string genName
String to store the name of the FixedRetryGen.
Definition: trace_cpu.hh:996
const uint64_t progressMsgInterval
Interval of committed instructions specified by the user at which a progress info message is printed...
Definition: trace_cpu.hh:1122
bool isStore() const
Is the node a store.
Definition: trace_cpu.hh:643
Ports are used to interface objects to each other.
Definition: port.hh:56
Addr blocksize
The size of the access for the request.
Definition: trace_cpu.hh:356
Stats::Scalar dataLastTick
Tick when ElasticDataGen completes execution.
Definition: trace_cpu.hh:1053
IcachePort icachePort
Port to connect to L1 instruction cache.
Definition: trace_cpu.hh:319
TraceCPU & owner
Reference of the TraceCPU.
Definition: trace_cpu.hh:984
bool isValid() const
Check validity of this element.
Definition: trace_cpu.hh:372
NodeSeqNum seqNum
The sequence number of the ready node.
Definition: trace_cpu.hh:681
Definition: packet.hh:70
uint32_t windowSize
The window size that is read from the header of the protobuf trace and used to process the dependency...
Definition: trace_cpu.hh:811
bool isTraceComplete()
Returns the traceComplete variable which is set when end of the input trace file is reached...
Definition: trace_cpu.hh:492
ProtoMessage::InstDepRecord::RecordType RecordType
Definition: trace_cpu.hh:565
void recvTimingSnoopReq(PacketPtr pkt)
Required functionally but do nothing.
Definition: trace_cpu.hh:249
EventFunctionWrapper dcacheNextEvent
Event for the control flow method schedDcacheNext()
Definition: trace_cpu.hh:1081
std::list< ReadyNode > readyList
List of nodes that are ready to execute.
Definition: trace_cpu.hh:1040
uint16_t numInFlightStores
Number of ready stores for which request may or may not be sent.
Definition: trace_cpu.hh:780
Request::Flags flags
Request flags if any.
Definition: trace_cpu.hh:609
RecordType type
Type of the node corresponding to the instruction modelled by it.
Definition: trace_cpu.hh:597
PacketPtr retryPkt
PacketPtr used to store the packet to retry.
Definition: trace_cpu.hh:999
Stats::Scalar numSchedIcacheEvent
Definition: trace_cpu.hh:1132
void updateNumOps(uint64_t rob_num)
Definition: trace_cpu.cc:92
~TraceCPU()
Definition: trace_cpu.cc:80
Bitfield< 3 > exit
Definition: misc.hh:848
Request::FlagsType flags
Potential request flags to use.
Definition: trace_cpu.hh:362
Stats::Scalar numSOStores
Definition: trace_cpu.hh:1051
bool isSet() const
Definition: flags.hh:60
ip6_addr_t addr
Definition: inet.hh:330
std::map< NodeSeqNum, NodeRobNum > inFlightNodes
A map from the sequence number to the ROB number of the in- flight nodes.
Definition: trace_cpu.hh:771
void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: trace_cpu.cc:110
Tick traceOffset
This stores the time offset in the trace, which is taken away from the ready times of requests...
Definition: trace_cpu.hh:1095
bool isExecComplete() const
Returns the execComplete variable which is set when the last node is executed.
Definition: trace_cpu.hh:962
Port & getInstPort()
Used to get a reference to the icache port.
Definition: trace_cpu.hh:1142
std::string instTraceFile
File names for input instruction and data traces.
Definition: trace_cpu.hh:331
ProtoMessage::InstDepRecord Record
Definition: trace_cpu.hh:566
uint64_t getMicroOpCount() const
Get number of micro-ops modelled in the TraceCPU replay.
Definition: trace_cpu.hh:977
void regStats()
Callback to set stat parameters.
Definition: trace_cpu.cc:213
bool recvTimingResp(PacketPtr pkt)
Receive the timing reponse and simply delete the packet since instruction fetch requests are issued a...
Definition: trace_cpu.cc:1212
const uint16_t sizeROB
The size of the ROB used to throttle the max.
Definition: trace_cpu.hh:747
void checkAndSchedExitEvent()
This is called when either generator finishes executing from the trace.
Definition: trace_cpu.cc:192
void reset()
Definition: statistics.cc:569
bool oneTraceComplete
Set to true when one of the generators finishes replaying its trace.
Definition: trace_cpu.hh:1087
Stats::Scalar numRetrySucceeded
Definition: trace_cpu.hh:537
PacketPtr retryPkt
PacketPtr used to store the packet to retry.
Definition: trace_cpu.hh:516
void schedIcacheNext()
This is the control flow that uses the functionality of the icacheGen to replay the trace...
Definition: trace_cpu.cc:153
Stats::Scalar numSchedDcacheEvent
Definition: trace_cpu.hh:1131
MemCmd cmd
Specifies if the request is to be a read or a write.
Definition: trace_cpu.hh:350
Bitfield< 23, 0 > offset
Definition: types.hh:152
bool isSnooping() const
Required functionally.
Definition: trace_cpu.hh:312
MasterPort & port
Reference of the port to be used to issue memory requests.
Definition: trace_cpu.hh:504
DcachePort(TraceCPU *_cpu)
Default constructor.
Definition: trace_cpu.hh:269
uint64_t NodeSeqNum
Node sequence number type.
Definition: trace_cpu.hh:560
Stats::Scalar maxDependents
Stats for data memory accesses replayed.
Definition: trace_cpu.hh:1043
uint8_t numRegDep
Number of register dependencies.
Definition: trace_cpu.hh:630
bool execComplete
Set true when execution of trace is complete.
Definition: trace_cpu.hh:1008
Stats::Scalar numSendSucceeded
Definition: trace_cpu.hh:1046
Stats::Scalar numSendAttempted
Stats for instruction accesses replayed.
Definition: trace_cpu.hh:534
Declaration of Statistics objects.
The InputStream encapsulates a trace file and the internal buffers and populates TraceElements based ...
Definition: trace_cpu.hh:389
bool traceComplete
Set to true when end of trace is reached.
Definition: trace_cpu.hh:1002
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
const uint32_t windowSize
Window size within which to check for dependencies.
Definition: trace_cpu.hh:1019
STL vector class.
Definition: stl.hh:37
std::queue< const GraphNode * > depFreeQueue
Queue of dependency-free nodes that are pending issue because resources are not available.
Definition: trace_cpu.hh:1037
IcachePort(TraceCPU *_cpu)
Default constructor.
Definition: trace_cpu.hh:228
The elastic data memory request generator to read protobuf trace containing execution trace annotated...
Definition: trace_cpu.hh:554
ProtoInputStream trace
Input file stream for the protobuf trace.
Definition: trace_cpu.hh:794
CountedExitEvent * execCompleteEvent
A CountedExitEvent which when serviced decrements the counter.
Definition: trace_cpu.hh:1110
const double timeMultiplier
A multiplier for the compute delays in the trace to modulate the Trace CPU frequency either up or dow...
Definition: trace_cpu.hh:802
Bitfield< 4 > pc
bool isStrictlyOrdered() const
Return true if node has a request which is strictly ordered.
Definition: trace_cpu.hh:664
The trace cpu replays traces generated using the elastic trace probe attached to the O3 CPU model...
Definition: trace_cpu.hh:140
std::vector< GraphNode * > dependents
A vector of nodes dependent (outgoing) on this node.
Definition: trace_cpu.hh:637
uint64_t progressMsgThreshold
Definition: trace_cpu.hh:1129
NodeRobNum robNum
ROB occupancy number.
Definition: trace_cpu.hh:594
std::array< NodeSeqNum, maxRobDep > RobDepArray
Typedef for the array containing the ROB dependencies.
Definition: trace_cpu.hh:585
DcachePort dcachePort
Port to connect to L1 data cache.
Definition: trace_cpu.hh:322
TraceCPU(TraceCPUParams *params)
Definition: trace_cpu.cc:45
const MasterID dataMasterID
Master id for data read and write requests.
Definition: trace_cpu.hh:328
const std::string & name() const
Returns name of the FixedRetryGen instance.
Definition: trace_cpu.hh:456
uint64_t Tick
Tick count type.
Definition: types.hh:61
A ProtoInputStream wraps a coded stream, potentially with decompression, based on looking at the file...
Definition: protoio.hh:140
const bool enableEarlyExit
Exit when any one Trace CPU completes its execution.
Definition: trace_cpu.hh:1116
void wakeup(ThreadID tid=0)
Definition: trace_cpu.hh:179
int64_t delta
Stores the difference in the send ticks of the current and last packets.
Definition: trace_cpu.hh:523
EventFunctionWrapper icacheNextEvent
Event for the control flow method schedIcacheNext()
Definition: trace_cpu.hh:1078
The struct GraphNode stores an instruction in the trace file.
Definition: trace_cpu.hh:574
bool nextRead
Set to true when the next window of instructions need to be read.
Definition: trace_cpu.hh:1005
const MasterID masterID
MasterID used for the requests being sent.
Definition: trace_cpu.hh:507
This struct stores a line in the trace file.
Definition: trace_cpu.hh:347
The InputStream encapsulates a trace file and the internal buffers and populates GraphNodes based on ...
Definition: trace_cpu.hh:788
Stats::Scalar instLastTick
Last simulated tick by the FixedRetryGen.
Definition: trace_cpu.hh:539
TraceCPU & owner
Reference of the TraceCPU.
Definition: trace_cpu.hh:501
void dcacheRetryRecvd()
When data cache port receives a retry, schedule event dcacheNextEvent.
Definition: trace_cpu.cc:1186
FixedRetryGen icacheGen
Instance of FixedRetryGen to replay instruction read requests.
Definition: trace_cpu.hh:1057
void recvReqRetry()
Handle a retry signalled by the cache if instruction read failed in the first attempt.
Definition: trace_cpu.cc:1222
uint64_t getMicroOpCount() const
Get number of micro-ops modelled in the TraceCPU replay.
Definition: trace_cpu.hh:844
STL list class.
Definition: stl.hh:51
void clear()
Make this element invalid.
Definition: trace_cpu.hh:379
Stats::Scalar numSendFailed
Definition: trace_cpu.hh:536
std::string genName
String to store the name of the FixedRetryGen.
Definition: trace_cpu.hh:513
Generator to read protobuf trace containing memory requests at fixed timestamps, perform flow control...
Definition: trace_cpu.hh:339
TraceElement currElement
Store an element read from the trace to send as the next packet.
Definition: trace_cpu.hh:531
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
uint16_t MasterID
Definition: request.hh:84
uint16_t numInFlightLoads
Number of ready loads for which request may or may not be sent.
Definition: trace_cpu.hh:777
uint64_t compDelay
Computational delay.
Definition: trace_cpu.hh:621
MasterPort & port
Reference of the port to be used to issue memory requests.
Definition: trace_cpu.hh:987
static int numTraceCPUs
Number of Trace CPUs in the system used as a shared variable and passed to the CountedExitEvent event...
Definition: trace_cpu.hh:1103
Stats::Formula cpi
Stat for the CPI.
Definition: trace_cpu.hh:1137
int64_t Counter
Statistics counter type.
Definition: types.hh:56
void dcacheRecvTimingResp(PacketPtr pkt)
When data cache port receives a response, this calls the dcache generator method handle to complete t...
Definition: trace_cpu.cc:1228
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
Tick execTick
The tick at which the ready node must be executed.
Definition: trace_cpu.hh:684
NodeRobNum oldestInFlightRobNum
The ROB number of the oldest in-flight node.
Definition: trace_cpu.hh:774
const uint16_t sizeLoadBuffer
The size of load buffer.
Definition: trace_cpu.hh:759
const MasterID instMasterID
Master id for instruction read requests.
Definition: trace_cpu.hh:325
A formula for statistics that is calculated when printed.
Definition: statistics.hh:3009
bool isComp() const
Is the node a compute (non load/store) node.
Definition: trace_cpu.hh:646
Stats::Scalar numOps
Stat for number of simulated micro-ops.
Definition: trace_cpu.hh:1135
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:225
const MasterID masterID
MasterID used for the requests being sent.
Definition: trace_cpu.hh:990
Tick tick
The time at which the request should be sent.
Definition: trace_cpu.hh:359
ElasticDataGen(TraceCPU &_owner, const std::string &_name, MasterPort &_port, MasterID master_id, const std::string &trace_file, TraceCPUParams *params)
Definition: trace_cpu.hh:849
uint8_t numRobDep
Number of order dependencies.
Definition: trace_cpu.hh:618
IcachePort class that interfaces with L1 Instruction Cache.
Definition: trace_cpu.hh:224
Stats::Scalar numSendFailed
Definition: trace_cpu.hh:1047
void schedDcacheNextEvent(Tick when)
Schedule event dcacheNextEvent at the given tick.
Definition: trace_cpu.cc:1196
std::string dataTraceFile
Definition: trace_cpu.hh:331
Stats::Scalar numSendAttempted
Definition: trace_cpu.hh:1045
ElasticDataGen dcacheGen
Instance of ElasticDataGen to replay data read and write requests.
Definition: trace_cpu.hh:1060
uint32_t getWindowSize() const
Get window size from trace.
Definition: trace_cpu.hh:841
FixedRetryGen(TraceCPU &_owner, const std::string &_name, MasterPort &_port, MasterID master_id, const std::string &trace_file)
Definition: trace_cpu.hh:425
Addr virtAddr
The virtual address for the request if any.
Definition: trace_cpu.hh:603
uint32_t size
Size of request if any.
Definition: trace_cpu.hh:606
const std::string name() const
Return port name (for DPRINTF).
Definition: port.hh:102
bool isLoad() const
Is the node a load.
Definition: trace_cpu.hh:640
Counter totalInsts() const
This is a pure virtual function in BaseCPU.
Definition: trace_cpu.hh:156
Tick send(AtomicResponseProtocol *peer, PacketPtr pkt)
Send an atomic request packet, where the data is moved and the state is updated in zero time...
Definition: atomic.cc:48
RegDepArray regDep
Array of register dependencies (incoming) if any.
Definition: trace_cpu.hh:627
Stats::Scalar numRetrySucceeded
Definition: trace_cpu.hh:1048
Addr addr
The address for the request.
Definition: trace_cpu.hh:353
Stats::Scalar numSendSucceeded
Definition: trace_cpu.hh:535
Port & getDataPort()
Used to get a reference to the dcache port.
Definition: trace_cpu.hh:1145
void icacheRetryRecvd()
When instruction cache port receives a retry, schedule event icacheNextEvent.
Definition: trace_cpu.cc:1176
The request is required to be strictly ordered by CPU models and is non-speculative.
Definition: request.hh:123
std::unordered_map< NodeSeqNum, GraphNode * > depGraph
Store the depGraph of GraphNodes.
Definition: trace_cpu.hh:1028
bool traceComplete
Set to true when end of trace is reached.
Definition: trace_cpu.hh:528
Addr physAddr
The address for the request if any.
Definition: trace_cpu.hh:600
std::array< NodeSeqNum, TheISA::MaxInstSrcRegs > RegDepArray
Typedef for the array containing the register dependencies.
Definition: trace_cpu.hh:588
Stats::Scalar numSplitReqs
Definition: trace_cpu.hh:1049
Counter totalOps() const
Return totalOps as the number of committed micro-ops plus the speculatively issued loads that are mod...
Definition: trace_cpu.hh:167
void recvFunctionalSnoop(PacketPtr pkt)
Required functionally but do nothing.
Definition: trace_cpu.hh:298
uint64_t FlagsType
Definition: request.hh:89
DcachePort class that interfaces with L1 Data Cache.
Definition: trace_cpu.hh:264
RobDepArray robDep
Array of order dependencies.
Definition: trace_cpu.hh:615
const Params * params() const
Definition: base.hh:307
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...
Definition: trace_cpu.cc:102
Counter value() const
Return the current value of this stat as its base type.
Definition: statistics.hh:700
const std::string & name() const
Returns name of the ElasticDataGen instance.
Definition: trace_cpu.hh:886
void recvTimingSnoopReq(PacketPtr pkt)
Required functionally but do nothing.
Definition: trace_cpu.hh:290
uint64_t NodeRobNum
Node ROB number type.
Definition: trace_cpu.hh:563
Declaration of a wrapper for protobuf output streams and input streams.
uint64_t microOpCount
Count of committed ops read from trace plus the filtered ops.
Definition: trace_cpu.hh:805
NodeSeqNum seqNum
Instruction sequence number.
Definition: trace_cpu.hh:591
Stats::Scalar numSOLoads
Definition: trace_cpu.hh:1050
InputStream trace
Input stream used for reading the input trace file.
Definition: trace_cpu.hh:510
HardwareResource hwResource
Hardware resources required to contain in-flight nodes and to throttle issuing of new nodes when reso...
Definition: trace_cpu.hh:1025

Generated on Thu May 28 2020 16:21:31 for gem5 by doxygen 1.8.13