gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
fetch_unit.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2014-2017 Advanced Micro Devices, Inc.
3  * All rights reserved.
4  *
5  * For use for simulation and test purposes only
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright notice,
11  * this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright notice,
14  * this list of conditions and the following disclaimer in the documentation
15  * and/or other materials provided with the distribution.
16  *
17  * 3. Neither the name of the copyright holder nor the names of its
18  * contributors may be used to endorse or promote products derived from this
19  * software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
25  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 #ifndef __FETCH_UNIT_HH__
35 #define __FETCH_UNIT_HH__
36 
37 #include <cassert>
38 #include <cstdint>
39 #include <deque>
40 #include <map>
41 #include <utility>
42 #include <vector>
43 
44 #include "arch/gpu_decoder.hh"
45 #include "base/types.hh"
46 #include "config/the_gpu_isa.hh"
47 #include "gpu-compute/scheduler.hh"
48 #include "mem/packet.hh"
49 
50 class ComputeUnit;
51 class Wavefront;
52 
53 class FetchUnit
54 {
55  public:
56  FetchUnit(const ComputeUnitParams &p, ComputeUnit &cu);
57  ~FetchUnit();
58  void init();
59  void exec();
61  void initiateFetch(Wavefront *wavefront);
62  void fetch(PacketPtr pkt, Wavefront *wavefront);
63  void processFetchReturn(PacketPtr pkt);
64  void flushBuf(int wfSlotId);
65  static uint32_t globalFetchUnitID;
66 
67  private:
73  {
74  public:
75  FetchBufDesc() : bufStart(nullptr), bufEnd(nullptr),
76  readPtr(nullptr), fetchDepth(0), maxIbSize(0), maxFbSize(0),
77  cacheLineSize(0), restartFromBranch(false), wavefront(nullptr),
78  _decoder(nullptr)
79  {
80  }
81 
83  {
84  delete[] bufStart;
85  }
86 
92  void allocateBuf(int fetch_depth, int cache_line_size, Wavefront *wf);
93 
94  int
96  {
97  return bufferedLines() + reservedLines();
98  }
99 
100  int bufferedLines() const { return bufferedPCs.size(); }
101  int bufferedBytes() const { return bufferedLines() * cacheLineSize; }
102  int reservedLines() const { return reservedPCs.size(); }
103  bool hasFreeSpace() const { return !freeList.empty(); }
104  void flushBuf();
106 
110  void reserveBuf(Addr vaddr);
111 
117  uint8_t*
119  {
120  auto reserved_pc = reservedPCs.find(vaddr);
121  assert(reserved_pc != reservedPCs.end());
122  assert(reserved_pc == reservedPCs.begin());
123 
124  return reserved_pc->second;
125  }
126 
131  bool
133  {
134  auto reserved_pc = reservedPCs.find(vaddr);
135  bool is_reserved = (reserved_pc != reservedPCs.end());
136  return is_reserved;
137  }
138 
139  void fetchDone(Addr vaddr);
140 
146  bool hasFetchDataToProcess() const;
147 
156  void decodeInsts();
157 
163  void checkWaveReleaseBuf();
164 
165  void
166  decoder(TheGpuISA::Decoder *dec)
167  {
168  _decoder = dec;
169  }
170 
171  bool
173  {
174  bool buffered = bufferedPCs.find(pc) != bufferedPCs.end()
175  && reservedPCs.find(pc) != reservedPCs.end();
176 
177  return buffered;
178  }
179 
184  int fetchBytesRemaining() const;
185 
186  private:
187  void decodeSplitInst();
188 
194  bool splitDecode() const;
195 
202  std::map<Addr, uint8_t*> bufferedPCs;
203  std::map<Addr, uint8_t*> reservedPCs;
204 
214 
219  uint8_t *bufStart;
220  uint8_t *bufEnd;
225  uint8_t *readPtr;
226  // how many lines the fetch unit may buffer
228  // maximum size (in number of insts) of the WF's IB
230  // maximum size (in bytes) of this fetch buffer
235  // wavefront whose IB is serviced by this fetch buffer
237  TheGpuISA::Decoder *_decoder;
238  };
239 
240  bool timingSim;
242  TheGpuISA::Decoder decoder;
243 
244  // Fetch scheduler; Selects one wave from
245  // the fetch queue for instruction fetching.
246  // The selection is made according to
247  // a scheduling policy
249 
250  // Stores the list of waves that are
251  // ready to be fetched this cycle
253 
254  // Stores the fetch status of all waves dispatched to this SIMD.
255  // TRUE implies the wave is ready to fetch and is already
256  // moved to fetchQueue
258 
259  // Pointer to list of waves dispatched on to this SIMD unit
261  // holds the fetch buffers. each wave has 1 entry.
270 };
271 
272 #endif // __FETCH_UNIT_HH__
FetchUnit::FetchBufDesc::reservedPCs
std::map< Addr, uint8_t * > reservedPCs
Definition: fetch_unit.hh:203
Scheduler
Definition: scheduler.hh:43
FetchUnit::computeUnit
ComputeUnit & computeUnit
Definition: fetch_unit.hh:241
FetchUnit::FetchBufDesc::bufferedAndReservedLines
int bufferedAndReservedLines() const
Definition: fetch_unit.hh:95
FetchUnit::FetchBufDesc::fetchBytesRemaining
int fetchBytesRemaining() const
calculates the number of fetched bytes that have yet to be decoded.
Definition: fetch_unit.cc:623
FetchUnit::FetchBufDesc::bufferedBytes
int bufferedBytes() const
Definition: fetch_unit.hh:101
FetchUnit::FetchBufDesc::bufferedPCs
std::map< Addr, uint8_t * > bufferedPCs
the set of PCs (fetch addresses) that are currently buffered.
Definition: fetch_unit.hh:202
FetchUnit::FetchBufDesc::isReserved
bool isReserved(Addr vaddr) const
returns true if there is an entry reserved for this address, and false otherwise
Definition: fetch_unit.hh:132
FetchUnit::initiateFetch
void initiateFetch(Wavefront *wavefront)
Definition: fetch_unit.cc:133
FetchUnit::FetchBufDesc::decoder
void decoder(TheGpuISA::Decoder *dec)
Definition: fetch_unit.hh:166
FetchUnit::fetchBuf
std::vector< FetchBufDesc > fetchBuf
Definition: fetch_unit.hh:262
FetchUnit::FetchBufDesc::~FetchBufDesc
~FetchBufDesc()
Definition: fetch_unit.hh:82
FetchUnit::fetchScheduler
Scheduler fetchScheduler
Definition: fetch_unit.hh:248
FetchUnit::bindWaveList
void bindWaveList(std::vector< Wavefront * > *list)
Definition: fetch_unit.cc:314
FetchUnit::FetchBufDesc::_decoder
TheGpuISA::Decoder * _decoder
Definition: fetch_unit.hh:237
sc_dt::list
static scfx_rep_node * list
Definition: scfx_rep.cc:368
FetchUnit::FetchBufDesc::bufferedLines
int bufferedLines() const
Definition: fetch_unit.hh:100
FetchUnit::fetchDepth
int fetchDepth
number of cache lines we can fetch and buffer.
Definition: fetch_unit.hh:269
std::vector< Wavefront * >
FetchUnit::FetchBufDesc::cacheLineBits
int cacheLineBits
Definition: fetch_unit.hh:233
FetchUnit::~FetchUnit
~FetchUnit()
Definition: fetch_unit.cc:55
packet.hh
FetchUnit::FetchBufDesc::readPtr
uint8_t * readPtr
pointer that points to the next chunk of inst data to be decoded.
Definition: fetch_unit.hh:225
FetchUnit::FetchBufDesc::maxFbSize
int maxFbSize
Definition: fetch_unit.hh:231
FetchUnit::FetchBufDesc::nextFetchAddr
Addr nextFetchAddr()
Definition: fetch_unit.cc:367
ComputeUnit
Definition: compute_unit.hh:200
FetchUnit::flushBuf
void flushBuf(int wfSlotId)
Definition: fetch_unit.cc:308
FetchUnit::FetchBufDesc::wavefront
Wavefront * wavefront
Definition: fetch_unit.hh:236
FetchUnit::FetchBufDesc::cacheLineSize
int cacheLineSize
Definition: fetch_unit.hh:232
FetchUnit::FetchBufDesc::bufEnd
uint8_t * bufEnd
Definition: fetch_unit.hh:220
MipsISA::vaddr
vaddr
Definition: pra_constants.hh:275
MipsISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:240
FetchUnit::FetchBufDesc::freeList
std::deque< uint8_t * > freeList
represents the fetch buffer free list.
Definition: fetch_unit.hh:213
FetchUnit
Definition: fetch_unit.hh:53
FetchUnit::FetchBufDesc::reserveBuf
void reserveBuf(Addr vaddr)
reserve an entry in the fetch buffer for PC = vaddr,
Definition: fetch_unit.cc:422
FetchUnit::FetchBufDesc::hasFreeSpace
bool hasFreeSpace() const
Definition: fetch_unit.hh:103
FetchUnit::FetchBufDesc::FetchBufDesc
FetchBufDesc()
Definition: fetch_unit.hh:75
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
FetchUnit::FetchBufDesc::maxIbSize
int maxIbSize
Definition: fetch_unit.hh:229
scheduler.hh
FetchUnit::init
void init()
Definition: fetch_unit.cc:62
FetchUnit::exec
void exec()
Definition: fetch_unit.cc:81
FetchUnit::FetchBufDesc::flushBuf
void flushBuf()
Definition: fetch_unit.cc:345
FetchUnit::fetch
void fetch(PacketPtr pkt, Wavefront *wavefront)
Definition: fetch_unit.cc:218
FetchUnit::FetchBufDesc::fetchDepth
int fetchDepth
Definition: fetch_unit.hh:227
FetchUnit::FetchBufDesc::decodeSplitInst
void decodeSplitInst()
Definition: fetch_unit.cc:573
FetchUnit::FetchBufDesc::pcBuffered
bool pcBuffered(Addr pc) const
Definition: fetch_unit.hh:172
FetchUnit::FetchBufDesc::reservedBuf
uint8_t * reservedBuf(Addr vaddr) const
return a pointer to the raw fetch buffer data.
Definition: fetch_unit.hh:118
types.hh
Wavefront
Definition: wavefront.hh:59
FetchUnit::FetchBufDesc::decodeInsts
void decodeInsts()
each time the fetch stage is ticked, we check if there are any data in the fetch buffer that may be d...
Definition: fetch_unit.cc:535
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
std::deque< uint8_t * >
FetchUnit::FetchBufDesc::bufStart
uint8_t * bufStart
raw instruction buffer.
Definition: fetch_unit.hh:219
FetchUnit::FetchBufDesc::hasFetchDataToProcess
bool hasFetchDataToProcess() const
checks if the buffer contains valid data.
Definition: fetch_unit.cc:472
FetchUnit::fetchQueue
std::vector< Wavefront * > fetchQueue
Definition: fetch_unit.hh:252
FetchUnit::decoder
TheGpuISA::Decoder decoder
Definition: fetch_unit.hh:242
FetchUnit::FetchBufDesc::fetchDone
void fetchDone(Addr vaddr)
Definition: fetch_unit.cc:447
FetchUnit::FetchBufDesc::restartFromBranch
bool restartFromBranch
Definition: fetch_unit.hh:234
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
FetchUnit::processFetchReturn
void processFetchReturn(PacketPtr pkt)
Definition: fetch_unit.cc:282
FetchUnit::FetchBufDesc
fetch buffer descriptor.
Definition: fetch_unit.hh:72
FetchUnit::FetchBufDesc::splitDecode
bool splitDecode() const
check if the next instruction to be processed out of the fetch buffer is split across the end/beginni...
Definition: fetch_unit.cc:611
FetchUnit::FetchBufDesc::allocateBuf
void allocateBuf(int fetch_depth, int cache_line_size, Wavefront *wf)
allocate the fetch buffer space, and set the fetch depth (number of lines that may be buffered),...
Definition: fetch_unit.cc:321
FetchUnit::fetchStatusQueue
std::vector< std::pair< Wavefront *, bool > > fetchStatusQueue
Definition: fetch_unit.hh:257
FetchUnit::waveList
std::vector< Wavefront * > * waveList
Definition: fetch_unit.hh:260
FetchUnit::timingSim
bool timingSim
Definition: fetch_unit.hh:240
FetchUnit::FetchBufDesc::reservedLines
int reservedLines() const
Definition: fetch_unit.hh:102
FetchUnit::globalFetchUnitID
static uint32_t globalFetchUnitID
Definition: fetch_unit.hh:65
FetchUnit::FetchBufDesc::checkWaveReleaseBuf
void checkWaveReleaseBuf()
checks if the wavefront can release any of its fetch buffer entries.
Definition: fetch_unit.cc:478
FetchUnit::FetchUnit
FetchUnit(const ComputeUnitParams &p, ComputeUnit &cu)
Definition: fetch_unit.cc:49

Generated on Tue Jun 22 2021 15:28:28 for gem5 by doxygen 1.8.17