gem5  v20.0.0.3
iew.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2012, 2014 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  * Copyright (c) 2004-2006 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #ifndef __CPU_O3_IEW_HH__
42 #define __CPU_O3_IEW_HH__
43 
44 #include <queue>
45 #include <set>
46 
47 #include "base/statistics.hh"
48 #include "cpu/o3/comm.hh"
49 #include "cpu/o3/lsq.hh"
50 #include "cpu/o3/scoreboard.hh"
51 #include "cpu/timebuf.hh"
52 #include "debug/IEW.hh"
53 #include "sim/probe/probe.hh"
54 
55 struct DerivO3CPUParams;
56 class FUPool;
57 
77 template<class Impl>
79 {
80  private:
81  //Typedefs from Impl
82  typedef typename Impl::CPUPol CPUPol;
83  typedef typename Impl::DynInstPtr DynInstPtr;
84  typedef typename Impl::O3CPU O3CPU;
85 
86  typedef typename CPUPol::IQ IQ;
87  typedef typename CPUPol::RenameMap RenameMap;
88  typedef typename CPUPol::LSQ LSQ;
89 
90  typedef typename CPUPol::TimeStruct TimeStruct;
91  typedef typename CPUPol::IEWStruct IEWStruct;
92  typedef typename CPUPol::RenameStruct RenameStruct;
93  typedef typename CPUPol::IssueStruct IssueStruct;
94 
95  public:
99  enum Status {
102  };
103 
105  enum StageStatus {
112  };
113 
114  private:
118  StageStatus dispatchStatus[Impl::MaxThreads];
123 
131 
132  public:
134  DefaultIEW(O3CPU *_cpu, DerivO3CPUParams *params);
135 
137  std::string name() const;
138 
140  void regStats();
141 
143  void regProbePoints();
144 
146  void startupStage();
147 
149  void clearStates(ThreadID tid);
150 
153 
156 
158  void setIEWQueue(TimeBuffer<IEWStruct> *iq_ptr);
159 
162 
164  void setScoreboard(Scoreboard *sb_ptr);
165 
167  void drainSanityCheck() const;
168 
170  bool isDrained() const;
171 
173  void takeOverFrom();
174 
176  void squash(ThreadID tid);
177 
179  void wakeDependents(const DynInstPtr &inst);
180 
184  void rescheduleMemInst(const DynInstPtr &inst);
185 
187  void replayMemInst(const DynInstPtr &inst);
188 
190  void blockMemInst(const DynInstPtr &inst);
191 
193  void cacheUnblocked();
194 
196  void instToCommit(const DynInstPtr &inst);
197 
199  void skidInsert(ThreadID tid);
200 
202  int skidCount();
203 
205  bool skidsEmpty();
206 
208  void updateStatus();
209 
211  void resetEntries();
212 
216  void wakeCPU();
217 
219  void activityThisCycle();
220 
222  inline void activateStage();
223 
225  inline void deactivateStage();
226 
228  bool hasStoresToWB() { return ldstQueue.hasStoresToWB(); }
229 
231  bool hasStoresToWB(ThreadID tid) { return ldstQueue.hasStoresToWB(tid); }
232 
234  void checkMisprediction(const DynInstPtr &inst);
235 
236  private:
240  void squashDueToBranch(const DynInstPtr &inst, ThreadID tid);
241 
245  void squashDueToMemOrder(const DynInstPtr &inst, ThreadID tid);
246 
248  void block(ThreadID tid);
249 
253  void unblock(ThreadID tid);
254 
256  void dispatch(ThreadID tid);
257 
259  void dispatchInsts(ThreadID tid);
260 
265  void executeInsts();
266 
272  void writebackInsts();
273 
277  unsigned validInstsFromRename();
278 
280  bool checkStall(ThreadID tid);
281 
284 
286  void emptyRenameInsts(ThreadID tid);
287 
289  void sortInsts();
290 
291  public:
295  void tick();
296 
297  private:
299  void updateExeInstStats(const DynInstPtr &inst);
300 
303 
306 
309 
312 
315 
318 
321 
324 
330 
333 
335  std::queue<DynInstPtr> insts[Impl::MaxThreads];
336 
338  std::queue<DynInstPtr> skidBuffer[Impl::MaxThreads];
339 
342 
343  private:
345  O3CPU *cpu;
346 
351 
353  void printAvailableInsts();
354 
355  public:
358 
361 
368 
369  private:
371  bool fetchRedirect[Impl::MaxThreads];
372 
377 
380 
383 
390 
392  unsigned dispatchWidth;
393 
395  unsigned issueWidth;
396 
398  unsigned wbNumInst;
399 
405  unsigned wbCycle;
406 
408  unsigned wbWidth;
409 
412 
415 
417  unsigned skidBufferMax;
418 
449 
455 // Stats::Scalar iewExecStoreInsts;
470 
483 };
484 
485 #endif // __CPU_O3_IEW_HH__
Cycles renameToIEWDelay
Rename to IEW delay.
Definition: iew.hh:382
Stats::Vector iewExecutedBranches
Number of executed branches.
Definition: iew.hh:465
void setTimeBuffer(TimeBuffer< TimeStruct > *tb_ptr)
Sets main time buffer used for backwards communication.
Definition: iew_impl.hh:339
unsigned issueWidth
Width of issue, in instructions.
Definition: iew.hh:395
Scoreboard * scoreboard
Scoreboard pointer.
Definition: iew.hh:341
bool fetchRedirect[Impl::MaxThreads]
Records if there is a fetch redirect on this cycle for each thread.
Definition: iew.hh:371
StageStatus exeStatus
Execute status.
Definition: iew.hh:120
Stats::Scalar iewDispStoreInsts
Stat for total number of dispatched store instructions.
Definition: iew.hh:434
Stats::Scalar iewExecutedInsts
Stat for total number of executed instructions.
Definition: iew.hh:451
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
bool hasStoresToWB(ThreadID tid)
Returns if the LSQ has any stores to writeback.
Definition: iew.hh:231
void setIEWQueue(TimeBuffer< IEWStruct > *iq_ptr)
Sets time buffer to pass on instructions to commit.
Definition: iew_impl.hh:367
CPUPol::LSQ LSQ
Definition: iew.hh:88
Status
Overall IEW stage status.
Definition: iew.hh:99
void rescheduleMemInst(const DynInstPtr &inst)
Tells memory dependence unit that a memory instruction needs to be rescheduled.
Definition: iew_impl.hh:593
Stats::Scalar iewIdleCycles
Stat for total number of idle cycles.
Definition: iew.hh:420
bool updatedQueues
Records if the queues have been changed (inserted or issued insts), so that IEW knows to broadcast th...
Definition: iew.hh:376
void setRenameQueue(TimeBuffer< RenameStruct > *rq_ptr)
Sets time buffer for getting instructions coming from rename.
Definition: iew_impl.hh:357
Stats::Scalar iewUnblockCycles
Stat for total number of unblocking cycles.
Definition: iew.hh:426
Stats::Scalar iewSquashCycles
Stat for total number of squashing cycles.
Definition: iew.hh:422
void startupStage()
Initializes stage; sends back the number of free IQ and LSQ entries.
Definition: iew_impl.hh:304
Stats::Formula iewExecRate
Number of instructions executed per cycle.
Definition: iew.hh:469
void unblock(ThreadID tid)
Unblocks Dispatch if the skid buffer is empty, and signals back to other stages to unblock...
Definition: iew_impl.hh:569
Stats::Scalar iewLSQFullEvents
Stat for number of times the LSQ becomes full.
Definition: iew.hh:440
DefaultIEW handles both single threaded and SMT IEW (issue/execute/writeback).
Definition: iew.hh:78
Stats::Scalar iewIQFullEvents
Stat for number of times the IQ becomes full.
Definition: iew.hh:438
ThreadID numThreads
Number of active threads.
Definition: iew.hh:411
void printAvailableInsts()
Debug function to print instructions that are issued this cycle.
Definition: iew_impl.hh:1182
O3CPU * cpu
CPU pointer.
Definition: iew.hh:345
Cycles issueToExecuteDelay
Issue to execute delay.
Definition: iew.hh:389
TimeBuffer< TimeStruct > * timeBuffer
Pointer to main time buffer used for backwards communication.
Definition: iew.hh:302
Stats::Vector iewExecutedRefs
Number of executed meomory references.
Definition: iew.hh:463
DefaultIEW(O3CPU *_cpu, DerivO3CPUParams *params)
Constructs a DefaultIEW with the given parameters.
Definition: iew_impl.hh:66
bool hasStoresToWB()
Returns whether or not there are any stores to write back to memory.
Definition: lsq_impl.hh:638
void squash(ThreadID tid)
Squashes instructions in IEW for a specific thread.
Definition: iew_impl.hh:461
std::queue< DynInstPtr > insts[Impl::MaxThreads]
Queue of all instructions coming from rename this cycle.
Definition: iew.hh:335
A vector of scalar stats.
Definition: statistics.hh:2547
bool checkStall(ThreadID tid)
Checks if any of the stall conditions are currently true.
Definition: iew_impl.hh:763
std::list< ThreadID > * activeThreads
Pointer to list of active threads.
Definition: iew.hh:414
unsigned wbNumInst
Index into queue of instructions being written back.
Definition: iew.hh:398
unsigned dispatchWidth
Width of dispatch, in instructions.
Definition: iew.hh:392
TimeBuffer< TimeStruct >::wire toFetch
Wire to write information heading to previous stages.
Definition: iew.hh:305
Declaration of Statistics objects.
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
StageStatus wbStatus
Writeback status.
Definition: iew.hh:122
void instToCommit(const DynInstPtr &inst)
Sends an instruction to commit through the time buffer.
Definition: iew_impl.hh:621
unsigned validInstsFromRename()
Returns the number of valid, non-squashed instructions coming from rename to dispatch.
Definition: iew_impl.hh:650
TimeBuffer< IEWStruct > * iewQueue
IEW stage time buffer.
Definition: iew.hh:329
Stats::Vector iewExecutedSwp
Number of executed software prefetches.
Definition: iew.hh:459
ProbePointArg< DynInstPtr > * ppToCommit
To probe when instruction execution is complete.
Definition: iew.hh:130
Stats::Vector writebackCount
Number of instructions that writeback.
Definition: iew.hh:474
Stats::Scalar iewDispNonSpecInsts
Stat for total number of dispatched non speculative instructions.
Definition: iew.hh:436
Impl::CPUPol CPUPol
Definition: iew.hh:82
Implements a simple scoreboard to track which registers are ready.
Definition: scoreboard.hh:48
void cacheUnblocked()
Notifies that the cache has become unblocked.
Definition: iew_impl.hh:614
bool hasStoresToWB()
Returns if the LSQ has any stores to writeback.
Definition: iew.hh:228
IQ instQueue
Instruction queue.
Definition: iew.hh:357
TimeBuffer< IssueStruct >::wire fromIssue
Wire to read information from the issue stage time queue.
Definition: iew.hh:323
CPUPol::IssueStruct IssueStruct
Definition: iew.hh:93
void activateStage()
Tells CPU that the IEW stage is active and running.
Definition: iew_impl.hh:895
Pool of FU&#39;s, specific to the new CPU model.
Definition: fu_pool.hh:69
void dispatchInsts(ThreadID tid)
Dispatches instructions to IQ and LSQ.
Definition: iew_impl.hh:959
std::queue< DynInstPtr > skidBuffer[Impl::MaxThreads]
Skid buffer between rename and IEW.
Definition: iew.hh:338
Status _status
Overall stage status.
Definition: iew.hh:116
TimeBuffer< IssueStruct > issueToExecQueue
Issue stage queue.
Definition: iew.hh:320
ProbePointArg< DynInstPtr > * ppDispatch
Definition: iew.hh:126
Stats::Scalar iewExecSquashedInsts
Stat for total number of executed store instructions.
Definition: iew.hh:457
TimeBuffer< TimeStruct >::wire fromCommit
Wire to get commit&#39;s output from backwards time buffer.
Definition: iew.hh:308
Stats::Scalar iewDispLoadInsts
Stat for total number of dispatched load instructions.
Definition: iew.hh:432
void takeOverFrom()
Takes over from another CPU&#39;s thread.
Definition: iew_impl.hh:433
Stats::Formula wbRate
Number of instructions per cycle written back.
Definition: iew.hh:480
Stats::Scalar iewDispatchedInsts
Stat for total number of instructions dispatched.
Definition: iew.hh:428
void tick()
Ticks IEW stage, causing Dispatch, the IQ, the LSQ, Execute, and Writeback to run for one cycle...
Definition: iew_impl.hh:1502
void emptyRenameInsts(ThreadID tid)
Removes instructions from rename from a thread&#39;s instruction list.
Definition: iew_impl.hh:858
void checkSignalsAndUpdate(ThreadID tid)
Processes inputs and changes state accordingly.
Definition: iew_impl.hh:780
unsigned wbWidth
Writeback width.
Definition: iew.hh:408
void replayMemInst(const DynInstPtr &inst)
Re-executes all rescheduled memory instructions.
Definition: iew_impl.hh:600
CPUPol::TimeStruct TimeStruct
Definition: iew.hh:90
void wakeCPU()
Tells the CPU to wakeup if it has descheduled itself due to no activity.
Definition: iew_impl.hh:880
unsigned wbCycle
Cycle number within the queue of instructions being written back.
Definition: iew.hh:405
Stats::Vector iewExecutedNop
Number of executed nops.
Definition: iew.hh:461
CPUPol::IQ IQ
Definition: iew.hh:86
Cycles commitToIEWDelay
Commit to IEW delay.
Definition: iew.hh:379
Stats::Scalar iewDispSquashedInsts
Stat for total number of squashed instructions dispatch skips.
Definition: iew.hh:430
bool updateLSQNextCycle
Records if the LSQ needs to be updated on the next cycle, so that IEW knows if there will be activity...
Definition: iew.hh:367
Stats::Vector producerInst
Number of instructions that wake consumers.
Definition: iew.hh:476
bool isDrained() const
Has the stage drained?
Definition: iew_impl.hh:394
A formula for statistics that is calculated when printed.
Definition: statistics.hh:3009
Stats::Scalar predictedTakenIncorrect
Stat for total number of incorrect predicted taken branches.
Definition: iew.hh:444
void activityThisCycle()
Reports to the CPU that there is activity this cycle.
Definition: iew_impl.hh:887
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:225
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets pointer to list of active threads.
Definition: iew_impl.hh:377
Stats::Scalar memOrderViolationEvents
Stat for total number of memory ordering violation events.
Definition: iew.hh:442
void regStats()
Registers statistics.
Definition: iew_impl.hh:144
void updateExeInstStats(const DynInstPtr &inst)
Updates execution stats based on the instruction.
Definition: iew_impl.hh:1632
int skidCount()
Returns the max of the number of entries in all of the skid buffers.
Definition: iew_impl.hh:686
void setScoreboard(Scoreboard *sb_ptr)
Sets pointer to the scoreboard.
Definition: iew_impl.hh:387
bool wroteToTimeBuffer
Records if IEW has written to the time buffer this cycle, so that the CPU can deschedule itself if th...
Definition: iew.hh:350
StageStatus
Status for Issue, Execute, and Writeback stages.
Definition: iew.hh:105
Stats::Formula iewExecStoreInsts
Number of executed store instructions.
Definition: iew.hh:467
void squashDueToBranch(const DynInstPtr &inst, ThreadID tid)
Sends commit proper information for a squash due to a branch mispredict.
Definition: iew_impl.hh:497
void executeInsts()
Executes instructions.
Definition: iew_impl.hh:1205
TimeBuffer< RenameStruct > * renameQueue
Rename instruction queue interface.
Definition: iew.hh:314
void writebackInsts()
Writebacks instructions.
Definition: iew_impl.hh:1452
void blockMemInst(const DynInstPtr &inst)
Moves memory instruction onto the list of cache blocked instructions.
Definition: iew_impl.hh:607
void wakeDependents(const DynInstPtr &inst)
Wakes all dependents of a completed instruction.
Definition: iew_impl.hh:586
std::string name() const
Returns the name of the DefaultIEW stage.
Definition: iew_impl.hh:117
void sortInsts()
Sorts instructions coming from rename into lists separated by thread.
Definition: iew_impl.hh:844
void checkMisprediction(const DynInstPtr &inst)
Check misprediction.
Definition: iew_impl.hh:1664
Stats::Vector iewInstsToCommit
Number of instructions sent to commit.
Definition: iew.hh:472
void dispatch(ThreadID tid)
Determines proper actions to take given Dispatch&#39;s status.
Definition: iew_impl.hh:911
void skidInsert(ThreadID tid)
Inserts unused instructions of a thread into the skid buffer.
Definition: iew_impl.hh:664
TimeBuffer< RenameStruct >::wire fromRename
Wire to get rename&#39;s output from rename queue.
Definition: iew.hh:317
LSQ ldstQueue
Load / store queue.
Definition: iew.hh:360
TimeBuffer< IEWStruct >::wire toCommit
Wire to write infromation heading to commit.
Definition: iew.hh:332
CPUPol::RenameStruct RenameStruct
Definition: iew.hh:92
Stats::Formula branchMispredicts
Stat for total number of mispredicted branches detected at execute.
Definition: iew.hh:448
void deactivateStage()
Tells CPU that the IEW stage is inactive and idle.
Definition: iew_impl.hh:903
bool skidsEmpty()
Returns if all of the skid buffers are empty.
Definition: iew_impl.hh:705
unsigned skidBufferMax
Maximum size of the skid buffer.
Definition: iew.hh:417
Impl::DynInstPtr DynInstPtr
Definition: iew.hh:83
ProbePointArg< DynInstPtr > * ppExecute
To probe when instruction execution begins.
Definition: iew.hh:128
void squashDueToMemOrder(const DynInstPtr &inst, ThreadID tid)
Sends commit proper information for a squash due to a memory order violation.
Definition: iew_impl.hh:523
void resetEntries()
Resets entries of the IQ and the LSQ.
TimeBuffer< TimeStruct >::wire toRename
Wire to write information heading to previous stages.
Definition: iew.hh:311
StageStatus dispatchStatus[Impl::MaxThreads]
Dispatch status.
Definition: iew.hh:118
ProbePointArg< DynInstPtr > * ppMispredict
Probe points.
Definition: iew.hh:125
void clearStates(ThreadID tid)
Clear all thread-specific states.
Definition: iew_impl.hh:326
void block(ThreadID tid)
Sets Dispatch to blocked, and signals back to other stages to block.
Definition: iew_impl.hh:550
Stats::Scalar predictedNotTakenIncorrect
Stat for total number of incorrect predicted not taken branches.
Definition: iew.hh:446
Impl::O3CPU O3CPU
Definition: iew.hh:84
Stats::Vector iewExecLoadInsts
Stat for total number of executed load instructions.
Definition: iew.hh:453
Stats::Vector consumerInst
Number of instructions that wake up from producers.
Definition: iew.hh:478
void regProbePoints()
Registers probes.
Definition: iew_impl.hh:124
CPUPol::IEWStruct IEWStruct
Definition: iew.hh:91
CPUPol::RenameMap RenameMap
Definition: iew.hh:87
Stats::Scalar iewBlockCycles
Stat for total number of blocking cycles.
Definition: iew.hh:424
void updateStatus()
Updates overall IEW status based on all of the stages&#39; statuses.
Definition: iew_impl.hh:722
FUPool * fuPool
Pointer to the functional unit pool.
Definition: iew.hh:363
Stats::Formula wbFanout
Average number of woken instructions per writeback.
Definition: iew.hh:482
void drainSanityCheck() const
Perform sanity checks after a drain.
Definition: iew_impl.hh:423

Generated on Fri Jul 3 2020 15:53:00 for gem5 by doxygen 1.8.13