gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
inst_queue.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2012, 2014 ARM Limited
3  * Copyright (c) 2013 Advanced Micro Devices, Inc.
4  * All rights reserved.
5  *
6  * The license below extends only to copyright in the software and shall
7  * not be construed as granting a license to any other intellectual
8  * property including but not limited to intellectual property relating
9  * to a hardware implementation of the functionality of the software
10  * licensed hereunder. You may use the software subject to the license
11  * terms below provided that you ensure that this notice is replicated
12  * unmodified and in its entirety in all distributions of the software,
13  * modified or unmodified, in source code or in binary form.
14  *
15  * Copyright (c) 2004-2006 The Regents of The University of Michigan
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41 
42 #ifndef __CPU_O3_INST_QUEUE_HH__
43 #define __CPU_O3_INST_QUEUE_HH__
44 
45 #include <list>
46 #include <map>
47 #include <queue>
48 #include <vector>
49 
50 #include "base/statistics.hh"
51 #include "base/types.hh"
52 #include "cpu/o3/dep_graph.hh"
53 #include "cpu/inst_seq.hh"
54 #include "cpu/op_class.hh"
55 #include "cpu/timebuf.hh"
56 #include "enums/SMTQueuePolicy.hh"
57 #include "sim/eventq.hh"
58 
59 struct DerivO3CPUParams;
60 class FUPool;
61 class MemInterface;
62 
80 template <class Impl>
82 {
83  public:
84  //Typedefs from the Impl.
85  typedef typename Impl::O3CPU O3CPU;
86  typedef typename Impl::DynInstPtr DynInstPtr;
87 
88  typedef typename Impl::CPUPol::IEW IEW;
89  typedef typename Impl::CPUPol::MemDepUnit MemDepUnit;
90  typedef typename Impl::CPUPol::IssueStruct IssueStruct;
91  typedef typename Impl::CPUPol::TimeStruct TimeStruct;
92 
93  // Typedef of iterator through the list of instructions.
95 
97  class FUCompletion : public Event {
98  private:
101 
103  int fuIdx;
104 
107 
111  bool freeFU;
112 
113  public:
115  FUCompletion(const DynInstPtr &_inst, int fu_idx,
116  InstructionQueue<Impl> *iq_ptr);
117 
118  virtual void process();
119  virtual const char *description() const;
120  void setFreeFU() { freeFU = true; }
121  };
122 
124  InstructionQueue(O3CPU *cpu_ptr, IEW *iew_ptr,
125  const DerivO3CPUParams &params);
126 
129 
131  std::string name() const;
132 
134  void resetState();
135 
138 
141 
144 
146  bool isDrained() const;
147 
149  void drainSanityCheck() const;
150 
152  void takeOverFrom();
153 
155  int entryAmount(ThreadID num_threads);
156 
158  void resetEntries();
159 
161  unsigned numFreeEntries();
162 
164  unsigned numFreeEntries(ThreadID tid);
165 
167  bool isFull();
168 
170  bool isFull(ThreadID tid);
171 
173  bool hasReadyInsts();
174 
176  void insert(const DynInstPtr &new_inst);
177 
179  void insertNonSpec(const DynInstPtr &new_inst);
180 
184  void insertBarrier(const DynInstPtr &barr_inst);
185 
190 
195 
200 
205  void recordProducer(const DynInstPtr &inst)
206  { addToProducers(inst); }
207 
209  void processFUCompletion(const DynInstPtr &inst, int fu_idx);
210 
215  void scheduleReadyInsts();
216 
218  void scheduleNonSpec(const InstSeqNum &inst);
219 
224  void commit(const InstSeqNum &inst, ThreadID tid = 0);
225 
227  int wakeDependents(const DynInstPtr &completed_inst);
228 
230  void addReadyMemInst(const DynInstPtr &ready_inst);
231 
236  void rescheduleMemInst(const DynInstPtr &resched_inst);
237 
239  void replayMemInst(const DynInstPtr &replay_inst);
240 
245  void deferMemInst(const DynInstPtr &deferred_inst);
246 
248  void blockMemInst(const DynInstPtr &blocked_inst);
249 
251  void cacheUnblocked();
252 
254  void violation(const DynInstPtr &store, const DynInstPtr &faulting_load);
255 
260  void squash(ThreadID tid);
261 
263  unsigned getCount(ThreadID tid) { return count[tid]; };
264 
266  void printInsts();
267 
268  private:
270  void doSquash(ThreadID tid);
271 
273  // Various pointers
275 
278 
281 
284 
288  MemDepUnit memDepUnit[Impl::MaxThreads];
289 
294 
297 
300 
303 
305  // Instruction lists, ready queues, and ordering
307 
309  std::list<DynInstPtr> instList[Impl::MaxThreads];
310 
313 
318 
321 
326 
334  struct pqCompare {
335  bool operator() (const DynInstPtr &lhs, const DynInstPtr &rhs) const
336  {
337  return lhs->seqNum > rhs->seqNum;
338  }
339  };
340 
341  typedef std::priority_queue<DynInstPtr, std::vector<DynInstPtr>, pqCompare>
343 
348 
356  std::map<InstSeqNum, DynInstPtr> nonSpecInsts;
357 
358  typedef typename std::map<InstSeqNum, DynInstPtr>::iterator NonSpecMapIt;
359 
361  struct ListOrderEntry {
362  OpClass queueType;
364  };
365 
374 
376 
379 
384 
386  void addToOrderList(OpClass op_class);
387 
392  void moveToYoungerInst(ListOrderIt age_order_it);
393 
395 
397  // Various parameters
399 
401  SMTQueuePolicy iqPolicy;
402 
405 
408 
410  unsigned count[Impl::MaxThreads];
411 
413  unsigned maxEntries[Impl::MaxThreads];
414 
416  unsigned freeEntries;
417 
419  unsigned numEntries;
420 
422  unsigned totalWidth;
423 
425  unsigned numPhysRegs;
426 
429 
434 
436  InstSeqNum squashedSeqNum[Impl::MaxThreads];
437 
445 
447  bool addToDependents(const DynInstPtr &new_inst);
448 
450  void addToProducers(const DynInstPtr &new_inst);
451 
453  void addIfReady(const DynInstPtr &inst);
454 
459  int countInsts();
460 
465  void dumpLists();
466 
470  void dumpInsts();
471 
472  struct IQStats : public Stats::Group
473  {
474  IQStats(O3CPU *cpu, const unsigned &total_width);
479 
505  // Also include number of instructions rescheduled and replayed.
506 
510  // Stats::VectorDistribution queueResDist;
516  // Stats::VectorDistribution issueDelayDist;
517 
522  // Stats::Vector dist_unissued;
525 
528 
533  } iqStats;
534 
535  public:
536  struct IQIOStats : public Stats::Group
537  {
538  IQIOStats(Stats::Group *parent);
548 
552  } iqIOStats;
553 };
554 
555 #endif //__CPU_O3_INST_QUEUE_HH__
InstructionQueue::IQStats::instsIssued
Stats::Scalar instsIssued
Definition: inst_queue.hh:480
Num_OpClasses
static const OpClass Num_OpClasses
Definition: op_class.hh:105
InstructionQueue::nonSpecInsts
std::map< InstSeqNum, DynInstPtr > nonSpecInsts
List of non-speculative instructions that will be scheduled once the IQ gets a signal from commit.
Definition: inst_queue.hh:356
InstructionQueue::IQIOStats::fpInstQueueWakeupAccesses
Stats::Scalar fpInstQueueWakeupAccesses
Definition: inst_queue.hh:544
InstructionQueue::addIfReady
void addIfReady(const DynInstPtr &inst)
Moves an instruction to the ready queue if it is ready.
Definition: inst_queue_impl.hh:1432
InstructionQueue::IQStats::issueRate
Stats::Formula issueRate
Number of instructions issued per cycle.
Definition: inst_queue.hh:527
InstructionQueue::ListOrderEntry::queueType
OpClass queueType
Definition: inst_queue.hh:362
InstructionQueue::ListOrderEntry::oldestInst
InstSeqNum oldestInst
Definition: inst_queue.hh:363
InstructionQueue::takeOverFrom
void takeOverFrom()
Takes over execution from another CPU's thread.
Definition: inst_queue_impl.hh:475
InstructionQueue::iqIOStats
InstructionQueue::IQIOStats iqIOStats
InstructionQueue::iewStage
IEW * iewStage
Pointer to IEW stage.
Definition: inst_queue.hh:283
InstructionQueue::wakeDependents
int wakeDependents(const DynInstPtr &completed_inst)
Wakes all dependents of a completed instruction.
Definition: inst_queue_impl.hh:982
InstructionQueue::commit
void commit(const InstSeqNum &inst, ThreadID tid=0)
Commits all instructions up to and including the given sequence number, for a specific thread.
Definition: inst_queue_impl.hh:964
op_class.hh
InstructionQueue::FUCompletion::setFreeFU
void setFreeFU()
Definition: inst_queue.hh:120
InstructionQueue::readyInsts
ReadyInstQueue readyInsts[Num_OpClasses]
List of ready instructions, per op class.
Definition: inst_queue.hh:347
InstructionQueue::name
std::string name() const
Returns the name of the IQ.
Definition: inst_queue_impl.hh:171
InstructionQueue::fromCommit
TimeBuffer< TimeStruct >::wire fromCommit
Wire to read information from timebuffer.
Definition: inst_queue.hh:299
InstructionQueue::getDeferredMemInstToExecute
DynInstPtr getDeferredMemInstToExecute()
Gets a memory instruction that was referred due to a delayed DTB translation if it is now ready to ex...
Definition: inst_queue_impl.hh:1151
InstructionQueue::squash
void squash(ThreadID tid)
Squashes instructions for a thread.
Definition: inst_queue_impl.hh:1188
InstructionQueue::getBlockedMemInstToExecute
DynInstPtr getBlockedMemInstToExecute()
Gets a memory instruction that was blocked on the cache.
Definition: inst_queue_impl.hh:1166
InstructionQueue::count
unsigned count[Impl::MaxThreads]
Per Thread IQ count.
Definition: inst_queue.hh:410
ThreadID
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:233
InstructionQueue::timeBuffer
TimeBuffer< TimeStruct > * timeBuffer
The backwards time buffer.
Definition: inst_queue.hh:296
InstructionQueue::FUCompletion::process
virtual void process()
Definition: inst_queue_impl.hh:70
InstructionQueue::commitToIEWDelay
Cycles commitToIEWDelay
Delay between commit stage and the IQ.
Definition: inst_queue.hh:433
InstructionQueue::iqPolicy
SMTQueuePolicy iqPolicy
IQ sharing policy for SMT.
Definition: inst_queue.hh:401
InstructionQueue::ListOrderIt
std::list< ListOrderEntry >::iterator ListOrderIt
Definition: inst_queue.hh:375
InstructionQueue::resetEntries
void resetEntries()
Resets max entries for all threads.
Definition: inst_queue_impl.hh:494
InstructionQueue::IQIOStats
Definition: inst_queue.hh:536
InstructionQueue::IQStats::memInstsIssued
Stats::Scalar memInstsIssued
Stat for number of memory instructions issued.
Definition: inst_queue.hh:488
InstructionQueue::retryMemInsts
std::list< DynInstPtr > retryMemInsts
List of instructions that were cache blocked, but a retry has been seen since, so they can now be ret...
Definition: inst_queue.hh:325
InstructionQueue::InstructionQueue
InstructionQueue(O3CPU *cpu_ptr, IEW *iew_ptr, const DerivO3CPUParams &params)
Constructs an IQ.
Definition: inst_queue_impl.hh:85
InstructionQueue::resetState
void resetState()
Resets all instruction queue state.
Definition: inst_queue_impl.hh:389
InstructionQueue::entryAmount
int entryAmount(ThreadID num_threads)
Number of entries needed for given amount of threads.
Definition: inst_queue_impl.hh:482
InstructionQueue::deferMemInst
void deferMemInst(const DynInstPtr &deferred_inst)
Defers a memory instruction when its DTB translation incurs a hw page table walk.
Definition: inst_queue_impl.hh:1126
InstructionQueue::NonSpecMapIt
std::map< InstSeqNum, DynInstPtr >::iterator NonSpecMapIt
Definition: inst_queue.hh:358
InstructionQueue::drainSanityCheck
void drainSanityCheck() const
Perform sanity checks after a drain.
Definition: inst_queue_impl.hh:465
InstructionQueue::~InstructionQueue
~InstructionQueue()
Destructs the IQ.
Definition: inst_queue_impl.hh:160
InstructionQueue::IQStats::statFuBusy
Stats::Vector statFuBusy
Distribution of the cycles it takes to issue an instruction.
Definition: inst_queue.hh:521
std::vector< bool >
InstructionQueue::countInsts
int countInsts()
Debugging function to count how many entries are in the IQ.
Definition: inst_queue_impl.hh:1472
InstructionQueue::dependGraph
DependencyGraph< DynInstPtr > dependGraph
Definition: inst_queue.hh:394
InstructionQueue::ListIt
std::list< DynInstPtr >::iterator ListIt
Definition: inst_queue.hh:94
InstructionQueue::maxEntries
unsigned maxEntries[Impl::MaxThreads]
Max IQ Entries Per Thread.
Definition: inst_queue.hh:413
InstructionQueue::FUCompletion::fuIdx
int fuIdx
Index of the FU used for executing.
Definition: inst_queue.hh:103
InstructionQueue::blockMemInst
void blockMemInst(const DynInstPtr &blocked_inst)
Defers a memory instruction when it is cache blocked.
Definition: inst_queue_impl.hh:1133
InstructionQueue::IQStats::intInstsIssued
Stats::Scalar intInstsIssued
Stat for number of integer instructions issued.
Definition: inst_queue.hh:482
InstructionQueue::moveToYoungerInst
void moveToYoungerInst(ListOrderIt age_order_it)
Called when the oldest instruction has been removed from a ready queue; this places that ready queue ...
Definition: inst_queue_impl.hh:718
InstructionQueue::cacheUnblocked
void cacheUnblocked()
Notify instruction queue that a previous blockage has resolved.
Definition: inst_queue_impl.hh:1142
FUPool
Pool of FU's, specific to the new CPU model.
Definition: fu_pool.hh:69
Stats::Vector
A vector of scalar stats.
Definition: statistics.hh:2007
InstructionQueue::IQStats::squashedInstsIssued
Stats::Scalar squashedInstsIssued
Stat for number of squashed instructions that were ready to issue.
Definition: inst_queue.hh:493
InstructionQueue::setIssueToExecuteQueue
void setIssueToExecuteQueue(TimeBuffer< IssueStruct > *i2eQueue)
Sets the timer buffer between issue and execute.
Definition: inst_queue_impl.hh:436
InstructionQueue::ReadyInstQueue
std::priority_queue< DynInstPtr, std::vector< DynInstPtr >, pqCompare > ReadyInstQueue
Definition: inst_queue.hh:342
InstructionQueue::printInsts
void printInsts()
Debug function to print all instructions.
InstructionQueue::numPhysRegs
unsigned numPhysRegs
The number of physical registers in the CPU.
Definition: inst_queue.hh:425
TimeBuffer< IssueStruct >
InstructionQueue::readyIt
ListOrderIt readyIt[Num_OpClasses]
Iterators of each ready queue.
Definition: inst_queue.hh:383
DependencyGraph
Array of linked list that maintains the dependencies between producing instructions and consuming ins...
Definition: dep_graph.hh:71
InstructionQueue::IQIOStats::intInstQueueWakeupAccesses
Stats::Scalar intInstQueueWakeupAccesses
Definition: inst_queue.hh:541
InstructionQueue::processFUCompletion
void processFUCompletion(const DynInstPtr &inst, int fu_idx)
Process FU completion event.
Definition: inst_queue_impl.hh:744
InstructionQueue::cpu
O3CPU * cpu
Pointer to the CPU.
Definition: inst_queue.hh:277
InstructionQueue::IQIOStats::vecInstQueueWakeupAccesses
Stats::Scalar vecInstQueueWakeupAccesses
Definition: inst_queue.hh:547
InstructionQueue::IQIOStats::vecInstQueueReads
Stats::Scalar vecInstQueueReads
Definition: inst_queue.hh:545
InstructionQueue::IQStats
Definition: inst_queue.hh:472
timebuf.hh
Stats::Scalar
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:1933
InstructionQueue::fuPool
FUPool * fuPool
Function unit pool.
Definition: inst_queue.hh:302
InstructionQueue::deferredMemInsts
std::list< DynInstPtr > deferredMemInsts
List of instructions waiting for their DTB translation to complete (hw page table walk in progress).
Definition: inst_queue.hh:317
InstructionQueue::IQStats::nonSpecInstsAdded
Stats::Scalar nonSpecInstsAdded
Stat for number of non-speculative instructions added.
Definition: inst_queue.hh:478
InstructionQueue::totalWidth
unsigned totalWidth
The total number of instructions that can be issued in one cycle.
Definition: inst_queue.hh:422
InstructionQueue::IQStats::floatInstsIssued
Stats::Scalar floatInstsIssued
Stat for number of floating point instructions issued.
Definition: inst_queue.hh:484
InstructionQueue::MemDepUnit
Impl::CPUPol::MemDepUnit MemDepUnit
Definition: inst_queue.hh:89
InstructionQueue::TimeStruct
Impl::CPUPol::TimeStruct TimeStruct
Definition: inst_queue.hh:91
InstructionQueue::ListOrderEntry
Entry for the list age ordering by op class.
Definition: inst_queue.hh:361
inst_seq.hh
Event
Definition: eventq.hh:248
InstructionQueue::memDepUnit
MemDepUnit memDepUnit[Impl::MaxThreads]
The memory dependence unit, which tracks/predicts memory dependences between instructions.
Definition: inst_queue.hh:288
InstructionQueue::insert
void insert(const DynInstPtr &new_inst)
Inserts a new instruction into the IQ.
Definition: inst_queue_impl.hh:572
InstructionQueue::addToProducers
void addToProducers(const DynInstPtr &new_inst)
Adds an instruction to the dependency graph, as a producer.
Definition: inst_queue_impl.hh:1396
InstructionQueue::IQStats::instsAdded
Stats::Scalar instsAdded
Stat for number of instructions added.
Definition: inst_queue.hh:476
InstructionQueue::activeThreads
std::list< ThreadID > * activeThreads
Pointer to list of active threads.
Definition: inst_queue.hh:407
InstructionQueue::isDrained
bool isDrained() const
Determine if we are drained.
Definition: inst_queue_impl.hh:452
statistics.hh
InstructionQueue::getCount
unsigned getCount(ThreadID tid)
Returns the number of used entries for a thread.
Definition: inst_queue.hh:263
InstructionQueue::dumpLists
void dumpLists()
Debugging function to dump all the list sizes, as well as print out the list of nonspeculative instru...
Definition: inst_queue_impl.hh:1479
InstructionQueue::freeEntries
unsigned freeEntries
Number of free IQ entries left.
Definition: inst_queue.hh:416
InstructionQueue::numThreads
ThreadID numThreads
Number of Total Threads.
Definition: inst_queue.hh:404
InstructionQueue::iqStats
InstructionQueue::IQStats iqStats
InstructionQueue::pqCompare
Struct for comparing entries to be added to the priority queue.
Definition: inst_queue.hh:334
InstructionQueue::IQStats::fuBusyRate
Stats::Formula fuBusyRate
Number of times the FU was busy per instruction issued.
Definition: inst_queue.hh:532
InstructionQueue::wbOutstanding
int wbOutstanding
Number of instructions currently in flight to FUs.
Definition: inst_queue.hh:428
InstructionQueue::recordProducer
void recordProducer(const DynInstPtr &inst)
Records the instruction as the producer of a register without adding it to the rest of the IQ.
Definition: inst_queue.hh:205
InstructionQueue::IQStats::squashedOperandsExamined
Stats::Scalar squashedOperandsExamined
Stat for number of squashed instruction operands examined when squashing.
Definition: inst_queue.hh:500
InstructionQueue::replayMemInst
void replayMemInst(const DynInstPtr &replay_inst)
Replays a memory instruction.
Definition: inst_queue_impl.hh:1119
InstructionQueue::IQIOStats::fpInstQueueWrites
Stats::Scalar fpInstQueueWrites
Definition: inst_queue.hh:543
InstructionQueue::dumpInsts
void dumpInsts()
Debugging function to dump out all instructions that are in the IQ.
Definition: inst_queue_impl.hh:1522
InstructionQueue::insertNonSpec
void insertNonSpec(const DynInstPtr &new_inst)
Inserts a new, non-speculative instruction into the IQ.
Definition: inst_queue_impl.hh:618
InstSeqNum
uint64_t InstSeqNum
Definition: inst_seq.hh:37
InstructionQueue::doSquash
void doSquash(ThreadID tid)
Does the actual squashing.
Definition: inst_queue_impl.hh:1205
InstructionQueue::instsToExecute
std::list< DynInstPtr > instsToExecute
List of instructions that are ready to be executed.
Definition: inst_queue.hh:312
InstructionQueue::scheduleReadyInsts
void scheduleReadyInsts()
Schedules ready instructions, adding the ready ones (oldest first) to the queue to execute.
Definition: inst_queue_impl.hh:768
Stats::Distribution
A simple distribution stat.
Definition: statistics.hh:2084
InstructionQueue::DynInstPtr
Impl::DynInstPtr DynInstPtr
Definition: inst_queue.hh:86
InstructionQueue::squashedSeqNum
InstSeqNum squashedSeqNum[Impl::MaxThreads]
The sequence number of the squashed instruction.
Definition: inst_queue.hh:436
InstructionQueue::scheduleNonSpec
void scheduleNonSpec(const InstSeqNum &inst)
Schedules a single specific non-speculative instruction.
Definition: inst_queue_impl.hh:936
InstructionQueue::violation
void violation(const DynInstPtr &store, const DynInstPtr &faulting_load)
Indicates an ordering violation between a store and a load.
Definition: inst_queue_impl.hh:1179
InstructionQueue::IEW
Impl::CPUPol::IEW IEW
Definition: inst_queue.hh:88
InstructionQueue::FUCompletion::FUCompletion
FUCompletion(const DynInstPtr &_inst, int fu_idx, InstructionQueue< Impl > *iq_ptr)
Construct a FU completion event.
Definition: inst_queue_impl.hh:61
InstructionQueue::IQStats::IQStats
IQStats(O3CPU *cpu, const unsigned &total_width)
Definition: inst_queue_impl.hh:178
InstructionQueue::IQStats::statIssuedInstType
Stats::Vector2d statIssuedInstType
Stat for total number issued for each instruction type.
Definition: inst_queue.hh:524
InstructionQueue::IQStats::miscInstsIssued
Stats::Scalar miscInstsIssued
Stat for number of miscellaneous instructions issued.
Definition: inst_queue.hh:490
InstructionQueue::queueOnList
bool queueOnList[Num_OpClasses]
Tracks if each ready queue is on the age order list.
Definition: inst_queue.hh:378
InstructionQueue::FUCompletion::iqPtr
InstructionQueue< Impl > * iqPtr
Pointer back to the instruction queue.
Definition: inst_queue.hh:106
InstructionQueue::FUCompletion::freeFU
bool freeFU
Should the FU be added to the list to be freed upon completing this event.
Definition: inst_queue.hh:111
InstructionQueue::FUCompletion::description
virtual const char * description() const
Return a C string describing the event.
Definition: inst_queue_impl.hh:79
Stats::Vector2d
A 2-Dimensional vecto of scalar stats.
Definition: statistics.hh:2058
InstructionQueue::numEntries
unsigned numEntries
The number of entries in the instruction queue.
Definition: inst_queue.hh:419
InstructionQueue::IQStats::numIssuedDist
Stats::Distribution numIssuedDist
Distribution of number of instructions in the queue.
Definition: inst_queue.hh:512
InstructionQueue::pqCompare::operator()
bool operator()(const DynInstPtr &lhs, const DynInstPtr &rhs) const
Definition: inst_queue.hh:335
InstructionQueue::IQIOStats::intInstQueueReads
Stats::Scalar intInstQueueReads
Definition: inst_queue.hh:539
InstructionQueue::getInstToExecute
DynInstPtr getInstToExecute()
Returns the oldest scheduled instruction, and removes it from the list of instructions waiting to exe...
Definition: inst_queue_impl.hh:674
InstructionQueue::dcacheInterface
MemInterface * dcacheInterface
Cache interface.
Definition: inst_queue.hh:280
types.hh
InstructionQueue::IQIOStats::fpInstQueueReads
Stats::Scalar fpInstQueueReads
Definition: inst_queue.hh:542
InstructionQueue::IQIOStats::fpAluAccesses
Stats::Scalar fpAluAccesses
Definition: inst_queue.hh:550
InstructionQueue::FUCompletion::inst
DynInstPtr inst
Executing instruction.
Definition: inst_queue.hh:100
InstructionQueue::IQStats::fuBusy
Stats::Vector fuBusy
Number of times the FU was busy.
Definition: inst_queue.hh:530
InstructionQueue::IQIOStats::intInstQueueWrites
Stats::Scalar intInstQueueWrites
Definition: inst_queue.hh:540
Stats::Formula
A formula for statistics that is calculated when printed.
Definition: statistics.hh:2538
Stats::Group
Statistics container.
Definition: group.hh:87
InstructionQueue
A standard instruction queue class.
Definition: inst_queue.hh:81
InstructionQueue::setActiveThreads
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets active threads list.
Definition: inst_queue_impl.hh:429
InstructionQueue::IQStats::squashedInstsExamined
Stats::Scalar squashedInstsExamined
Stat for number of squashed instructions examined when squashing.
Definition: inst_queue.hh:496
InstructionQueue::addToOrderList
void addToOrderList(OpClass op_class)
Add an op class to the age order list.
Definition: inst_queue_impl.hh:691
InstructionQueue::IQStats::squashedNonSpecRemoved
Stats::Scalar squashedNonSpecRemoved
Stat for number of non-speculative instructions removed due to a squash.
Definition: inst_queue.hh:504
InstructionQueue::insertBarrier
void insertBarrier(const DynInstPtr &barr_inst)
Inserts a memory or write barrier into the IQ to make sure loads and stores are ordered properly.
Definition: inst_queue_impl.hh:665
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
InstructionQueue::IQIOStats::intAluAccesses
Stats::Scalar intAluAccesses
Definition: inst_queue.hh:549
InstructionQueue::instList
std::list< DynInstPtr > instList[Impl::MaxThreads]
List of all the instructions in the IQ (some of which may be issued).
Definition: inst_queue.hh:309
InstructionQueue::regScoreboard
std::vector< bool > regScoreboard
A cache of the recently woken registers.
Definition: inst_queue.hh:444
InstructionQueue::blockedMemInsts
std::list< DynInstPtr > blockedMemInsts
List of instructions that have been cache blocked.
Definition: inst_queue.hh:320
InstructionQueue::O3CPU
Impl::O3CPU O3CPU
Definition: inst_queue.hh:85
InstructionQueue::addToDependents
bool addToDependents(const DynInstPtr &new_inst)
Adds an instruction to the dependency graph, as a consumer.
Definition: inst_queue_impl.hh:1348
InstructionQueue::numFreeEntries
unsigned numFreeEntries()
Returns total number of free entries.
Definition: inst_queue_impl.hh:517
MemDepUnit
Memory dependency unit class.
Definition: mem_dep_unit.hh:80
InstructionQueue::FUCompletion
FU completion event class.
Definition: inst_queue.hh:97
InstructionQueue::IQStats::branchInstsIssued
Stats::Scalar branchInstsIssued
Stat for number of branch instructions issued.
Definition: inst_queue.hh:486
std::list
STL list class.
Definition: stl.hh:51
InstructionQueue::rescheduleMemInst
void rescheduleMemInst(const DynInstPtr &resched_inst)
Reschedules a memory instruction.
Definition: inst_queue_impl.hh:1105
InstructionQueue::setTimeBuffer
void setTimeBuffer(TimeBuffer< TimeStruct > *tb_ptr)
Sets the global time buffer.
Definition: inst_queue_impl.hh:443
InstructionQueue::IQIOStats::IQIOStats
IQIOStats(Stats::Group *parent)
Definition: inst_queue_impl.hh:324
InstructionQueue::IQIOStats::vecAluAccesses
Stats::Scalar vecAluAccesses
Definition: inst_queue.hh:551
InstructionQueue::IssueStruct
Impl::CPUPol::IssueStruct IssueStruct
Definition: inst_queue.hh:90
dep_graph.hh
InstructionQueue::isFull
bool isFull()
Returns whether or not the IQ is full.
Definition: inst_queue_impl.hh:533
InstructionQueue::issueToExecuteQueue
TimeBuffer< IssueStruct > * issueToExecuteQueue
The queue to the execute stage.
Definition: inst_queue.hh:293
InstructionQueue::hasReadyInsts
bool hasReadyInsts()
Returns if there are any ready instructions in the IQ.
Definition: inst_queue_impl.hh:555
InstructionQueue::addReadyMemInst
void addReadyMemInst(const DynInstPtr &ready_inst)
Adds a ready memory instruction to the ready list.
Definition: inst_queue_impl.hh:1082
InstructionQueue::IQIOStats::vecInstQueueWrites
Stats::Scalar vecInstQueueWrites
Definition: inst_queue.hh:546
InstructionQueue::listOrder
std::list< ListOrderEntry > listOrder
List that contains the age order of the oldest instruction of each ready queue.
Definition: inst_queue.hh:373
eventq.hh
MemInterface
General interface to memory device Includes functions and parameters shared across media types.
Definition: mem_interface.hh:70

Generated on Tue Mar 23 2021 19:41:25 for gem5 by doxygen 1.8.17