gem5  v20.0.0.3
decode.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012 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_DECODE_HH__
42 #define __CPU_O3_DECODE_HH__
43 
44 #include <queue>
45 
46 #include "base/statistics.hh"
47 #include "cpu/timebuf.hh"
48 
49 struct DerivO3CPUParams;
50 
58 template<class Impl>
60 {
61  private:
62  // Typedefs from the Impl.
63  typedef typename Impl::O3CPU O3CPU;
64  typedef typename Impl::DynInstPtr DynInstPtr;
65  typedef typename Impl::CPUPol CPUPol;
66 
67  // Typedefs from the CPU policy.
68  typedef typename CPUPol::FetchStruct FetchStruct;
69  typedef typename CPUPol::DecodeStruct DecodeStruct;
70  typedef typename CPUPol::TimeStruct TimeStruct;
71 
72  public:
76  enum DecodeStatus {
79  };
80 
82  enum ThreadStatus {
89  };
90 
91  private:
94 
96  ThreadStatus decodeStatus[Impl::MaxThreads];
97 
98  public:
100  DefaultDecode(O3CPU *_cpu, DerivO3CPUParams *params);
101 
102  void startupStage();
103 
105  void clearStates(ThreadID tid);
106 
107  void resetStage();
108 
110  std::string name() const;
111 
113  void regStats();
114 
117 
120 
123 
126 
128  void drainSanityCheck() const;
129 
131  bool isDrained() const;
132 
134  void takeOverFrom() { resetStage(); }
135 
139  void tick();
140 
146  void decode(bool &status_change, ThreadID tid);
147 
153  void decodeInsts(ThreadID tid);
154 
155  private:
159  void skidInsert(ThreadID tid);
160 
162  bool skidsEmpty();
163 
165  void updateStatus();
166 
170  void sortInsts();
171 
173  void readStallSignals(ThreadID tid);
174 
177 
179  bool checkStall(ThreadID tid) const;
180 
182  inline bool fetchInstsValid();
183 
188  bool block(ThreadID tid);
189 
194  bool unblock(ThreadID tid);
195 
199  void squash(const DynInstPtr &inst, ThreadID tid);
200 
201  public:
205  unsigned squash(ThreadID tid);
206 
207  private:
208  // Interfaces to objects outside of decode.
210  O3CPU *cpu;
211 
214 
217 
220 
223 
225  // Might not be the best name as not only fetch will read it.
227 
230 
233 
236 
239 
241  std::queue<DynInstPtr> insts[Impl::MaxThreads];
242 
244  std::queue<DynInstPtr> skidBuffer[Impl::MaxThreads];
245 
250 
252  struct Stalls {
253  bool rename;
254  };
255 
257  Stalls stalls[Impl::MaxThreads];
258 
261 
264 
267 
270 
272  unsigned decodeWidth;
273 
275  unsigned toRenameIndex;
276 
279 
282 
284  unsigned skidBufferMax;
285 
287  Addr bdelayDoneSeqNum[Impl::MaxThreads];
288 
290  DynInstPtr squashInst[Impl::MaxThreads];
291 
296  bool squashAfterDelaySlot[Impl::MaxThreads];
297 
298 
321 };
322 
323 #endif // __CPU_O3_DECODE_HH__
TimeBuffer< TimeStruct > * timeBuffer
Time buffer interface.
Definition: decode.hh:213
void resetStage()
Definition: decode_impl.hh:102
Cycles fetchToDecodeDelay
Fetch to decode delay.
Definition: decode.hh:269
void decode(bool &status_change, ThreadID tid)
Determines what to do based on decode&#39;s current status.
Definition: decode_impl.hh:600
ThreadID numThreads
number of Active Threads
Definition: decode.hh:278
unsigned toRenameIndex
Index of instructions being sent to rename.
Definition: decode.hh:275
void setDecodeQueue(TimeBuffer< DecodeStruct > *dq_ptr)
Sets pointer to time buffer used to communicate to the next stage.
Definition: decode_impl.hh:185
bool wroteToTimeBuffer
Variable that tracks if decode has written to the time buffer this cycle.
Definition: decode.hh:249
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
void sortInsts()
Separates instructions from fetch into individual lists of instructions sorted by thread...
Definition: decode_impl.hh:483
DynInstPtr squashInst[Impl::MaxThreads]
Instruction used for squashing branch (used for MIPS)
Definition: decode.hh:290
Stalls stalls[Impl::MaxThreads]
Tracks which stages are telling decode to stall.
Definition: decode.hh:257
bool squashAfterDelaySlot[Impl::MaxThreads]
Tells when their is a pending delay slot inst.
Definition: decode.hh:296
Cycles iewToDecodeDelay
IEW to decode delay.
Definition: decode.hh:263
Stats::Scalar decodeBlockedCycles
Stat for total number of blocked cycles.
Definition: decode.hh:302
void takeOverFrom()
Takes over from another CPU&#39;s thread.
Definition: decode.hh:134
DecodeStatus
Overall decode stage status.
Definition: decode.hh:76
TimeBuffer< DecodeStruct >::wire toRename
Wire used to write any information heading to rename.
Definition: decode.hh:232
void tick()
Ticks decode, processing all input signals and decoding as many instructions as possible.
Definition: decode_impl.hh:564
void startupStage()
Definition: decode_impl.hh:87
DefaultDecode(O3CPU *_cpu, DerivO3CPUParams *params)
DefaultDecode constructor.
Definition: decode_impl.hh:60
DefaultDecode class handles both single threaded and SMT decode.
Definition: decode.hh:59
bool isDrained() const
Has the stage drained?
Definition: decode_impl.hh:222
bool skidsEmpty()
Returns if all of the skid buffers are empty.
Definition: decode_impl.hh:428
void skidInsert(ThreadID tid)
Inserts a thread&#39;s instructions into the skid buffer, to be decoded once decode unblocks.
Definition: decode_impl.hh:404
unsigned decodeWidth
The width of decode, in instructions.
Definition: decode.hh:272
Declaration of Statistics objects.
TimeBuffer< TimeStruct >::wire fromIEW
Wire to get iew&#39;s information from backwards time buffer.
Definition: decode.hh:219
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
Stats::Scalar decodeUnblockCycles
Stat for total number of unblocking cycles.
Definition: decode.hh:306
void regStats()
Registers statistics.
Definition: decode_impl.hh:123
CPUPol::FetchStruct FetchStruct
Definition: decode.hh:68
ThreadStatus decodeStatus[Impl::MaxThreads]
Per-thread status.
Definition: decode.hh:96
unsigned skidBufferMax
Maximum size of the skid buffer.
Definition: decode.hh:284
TimeBuffer< TimeStruct >::wire fromRename
Wire to get rename&#39;s output from backwards time buffer.
Definition: decode.hh:216
std::list< ThreadID > * activeThreads
List of active thread ids.
Definition: decode.hh:281
Stats::Scalar decodeSquashCycles
Stat for total number of squashing cycles.
Definition: decode.hh:308
Impl::CPUPol CPUPol
Definition: decode.hh:65
void clearStates(ThreadID tid)
Clear all thread-specific states.
Definition: decode_impl.hh:94
Stats::Scalar decodeControlMispred
Stat for number of times decode detected a non-control instruction incorrectly predicted as a branch...
Definition: decode.hh:316
CPUPol::DecodeStruct DecodeStruct
Definition: decode.hh:69
void squash(const DynInstPtr &inst, ThreadID tid)
Squashes if there is a PC-relative branch that was predicted incorrectly.
Definition: decode_impl.hh:304
TimeBuffer< DecodeStruct > * decodeQueue
Decode instruction queue.
Definition: decode.hh:229
void drainSanityCheck() const
Perform sanity checks after a drain.
Definition: decode_impl.hh:212
Addr bdelayDoneSeqNum[Impl::MaxThreads]
SeqNum of Squashing Branch Delay Instruction (used for MIPS)
Definition: decode.hh:287
Stats::Scalar decodeBranchResolved
Stat for number of times a branch is resolved at decode.
Definition: decode.hh:310
void readStallSignals(ThreadID tid)
Reads all stall signals from the backwards communication timebuffer.
Definition: decode_impl.hh:493
TimeBuffer< TimeStruct >::wire fromCommit
Wire to get commit&#39;s information from backwards time buffer.
Definition: decode.hh:222
Impl::DynInstPtr DynInstPtr
Definition: decode.hh:64
Stats::Scalar decodeIdleCycles
Stat for total number of idle cycles.
Definition: decode.hh:300
O3CPU * cpu
CPU interface.
Definition: decode.hh:210
bool checkStall(ThreadID tid) const
Checks all stall signals, and returns if any are true.
Definition: decode_impl.hh:234
Stats::Scalar decodeSquashedInsts
Stat for total number of squashed instructions.
Definition: decode.hh:320
bool block(ThreadID tid)
Switches decode to blocking, and signals back that decode has become blocked.
Definition: decode_impl.hh:255
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets pointer to list of active threads.
Definition: decode_impl.hh:205
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
Source of possible stalls.
Definition: decode.hh:252
void decodeInsts(ThreadID tid)
Processes instructions from fetch and passes them on to rename.
Definition: decode_impl.hh:645
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:225
TimeBuffer< TimeStruct >::wire toFetch
Wire to write information heading to previous stages.
Definition: decode.hh:226
std::queue< DynInstPtr > insts[Impl::MaxThreads]
Queue of all instructions coming from fetch this cycle.
Definition: decode.hh:241
std::queue< DynInstPtr > skidBuffer[Impl::MaxThreads]
Skid buffer between fetch and decode.
Definition: decode.hh:244
Stats::Scalar decodeBranchMispred
Stat for number of times a branch mispredict is detected.
Definition: decode.hh:312
bool checkSignalsAndUpdate(ThreadID tid)
Checks all input signals and updates decode&#39;s status appropriately.
Definition: decode_impl.hh:507
DecodeStatus _status
Decode status.
Definition: decode.hh:93
CPUPol::TimeStruct TimeStruct
Definition: decode.hh:70
Cycles commitToDecodeDelay
Commit to decode delay.
Definition: decode.hh:266
Stats::Scalar decodeRunCycles
Stat for total number of normal running cycles.
Definition: decode.hh:304
void setFetchQueue(TimeBuffer< FetchStruct > *fq_ptr)
Sets pointer to time buffer coming from fetch.
Definition: decode_impl.hh:195
bool unblock(ThreadID tid)
Switches decode to unblocking if the skid buffer is empty, and signals back that decode has unblocked...
Definition: decode_impl.hh:285
Impl::O3CPU O3CPU
Definition: decode.hh:63
ThreadStatus
Individual thread status.
Definition: decode.hh:82
TimeBuffer< FetchStruct >::wire fromFetch
Wire to get fetch&#39;s output from fetch queue.
Definition: decode.hh:238
Stats::Scalar decodeDecodedInsts
Stat for total number of decoded instructions.
Definition: decode.hh:318
void updateStatus()
Updates overall decode status based on all of the threads&#39; statuses.
Definition: decode_impl.hh:444
TimeBuffer< FetchStruct > * fetchQueue
Fetch instruction queue interface.
Definition: decode.hh:235
std::string name() const
Returns the name of decode.
Definition: decode_impl.hh:116
Cycles renameToDecodeDelay
Rename to decode delay.
Definition: decode.hh:260
void setTimeBuffer(TimeBuffer< TimeStruct > *tb_ptr)
Sets the main backwards communication time buffer pointer.
Definition: decode_impl.hh:170
bool fetchInstsValid()
Returns if there any instructions from fetch on this cycle.
Definition: decode_impl.hh:248

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