gem5  v21.1.0.1
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 namespace gem5
51 {
52 
53 class ComputeUnit;
54 class Wavefront;
55 
56 class FetchUnit
57 {
58  public:
59  FetchUnit(const ComputeUnitParams &p, ComputeUnit &cu);
60  ~FetchUnit();
61  void init();
62  void exec();
64  void initiateFetch(Wavefront *wavefront);
65  void fetch(PacketPtr pkt, Wavefront *wavefront);
66  void processFetchReturn(PacketPtr pkt);
67  void flushBuf(int wfSlotId);
68  static uint32_t globalFetchUnitID;
69 
70  private:
76  {
77  public:
78  FetchBufDesc() : bufStart(nullptr), bufEnd(nullptr),
79  readPtr(nullptr), fetchDepth(0), maxIbSize(0), maxFbSize(0),
80  cacheLineSize(0), restartFromBranch(false), wavefront(nullptr),
81  _decoder(nullptr)
82  {
83  }
84 
86  {
87  delete[] bufStart;
88  }
89 
95  void allocateBuf(int fetch_depth, int cache_line_size, Wavefront *wf);
96 
97  int
99  {
100  return bufferedLines() + reservedLines();
101  }
102 
103  int bufferedLines() const { return bufferedPCs.size(); }
104  int bufferedBytes() const { return bufferedLines() * cacheLineSize; }
105  int reservedLines() const { return reservedPCs.size(); }
106  bool hasFreeSpace() const { return !freeList.empty(); }
107  void flushBuf();
109 
113  void reserveBuf(Addr vaddr);
114 
120  uint8_t*
122  {
123  auto reserved_pc = reservedPCs.find(vaddr);
124  assert(reserved_pc != reservedPCs.end());
125  assert(reserved_pc == reservedPCs.begin());
126 
127  return reserved_pc->second;
128  }
129 
134  bool
136  {
137  auto reserved_pc = reservedPCs.find(vaddr);
138  bool is_reserved = (reserved_pc != reservedPCs.end());
139  return is_reserved;
140  }
141 
142  void fetchDone(Addr vaddr);
143 
149  bool hasFetchDataToProcess() const;
150 
159  void decodeInsts();
160 
166  void checkWaveReleaseBuf();
167 
168  void
169  decoder(TheGpuISA::Decoder *dec)
170  {
171  _decoder = dec;
172  }
173 
174  bool
176  {
177  bool buffered = bufferedPCs.find(pc) != bufferedPCs.end()
178  && reservedPCs.find(pc) != reservedPCs.end();
179 
180  return buffered;
181  }
182 
187  int fetchBytesRemaining() const;
188 
189  private:
190  void decodeSplitInst();
191 
197  bool splitDecode() const;
198 
205  std::map<Addr, uint8_t*> bufferedPCs;
206  std::map<Addr, uint8_t*> reservedPCs;
207 
217 
222  uint8_t *bufStart;
223  uint8_t *bufEnd;
228  uint8_t *readPtr;
229  // how many lines the fetch unit may buffer
231  // maximum size (in number of insts) of the WF's IB
233  // maximum size (in bytes) of this fetch buffer
238  // wavefront whose IB is serviced by this fetch buffer
240  TheGpuISA::Decoder *_decoder;
241  };
242 
243  bool timingSim;
245  TheGpuISA::Decoder decoder;
246 
247  // Fetch scheduler; Selects one wave from
248  // the fetch queue for instruction fetching.
249  // The selection is made according to
250  // a scheduling policy
252 
253  // Stores the list of waves that are
254  // ready to be fetched this cycle
256 
257  // Stores the fetch status of all waves dispatched to this SIMD.
258  // TRUE implies the wave is ready to fetch and is already
259  // moved to fetchQueue
261 
262  // Pointer to list of waves dispatched on to this SIMD unit
264  // holds the fetch buffers. each wave has 1 entry.
273 };
274 
275 } // namespace gem5
276 
277 #endif // __FETCH_UNIT_HH__
gem5::FetchUnit::FetchBufDesc::_decoder
TheGpuISA::Decoder * _decoder
Definition: fetch_unit.hh:240
gem5::FetchUnit::~FetchUnit
~FetchUnit()
Definition: fetch_unit.cc:58
gem5::FetchUnit::flushBuf
void flushBuf(int wfSlotId)
Definition: fetch_unit.cc:311
gem5::FetchUnit::FetchBufDesc::maxIbSize
int maxIbSize
Definition: fetch_unit.hh:232
gem5::FetchUnit::FetchBufDesc::cacheLineSize
int cacheLineSize
Definition: fetch_unit.hh:235
gem5::FetchUnit::FetchBufDesc::decoder
void decoder(TheGpuISA::Decoder *dec)
Definition: fetch_unit.hh:169
gem5::Wavefront
Definition: wavefront.hh:62
gem5::FetchUnit::FetchBufDesc::fetchDepth
int fetchDepth
Definition: fetch_unit.hh:230
gem5::FetchUnit::FetchBufDesc::bufferedLines
int bufferedLines() const
Definition: fetch_unit.hh:103
gem5::FetchUnit::FetchBufDesc::~FetchBufDesc
~FetchBufDesc()
Definition: fetch_unit.hh:85
gem5::FetchUnit::timingSim
bool timingSim
Definition: fetch_unit.hh:243
gem5::FetchUnit::FetchBufDesc::FetchBufDesc
FetchBufDesc()
Definition: fetch_unit.hh:78
sc_dt::list
static scfx_rep_node * list
Definition: scfx_rep.cc:368
gem5::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:614
gem5::FetchUnit
Definition: fetch_unit.hh:56
gem5::FetchUnit::fetchDepth
int fetchDepth
number of cache lines we can fetch and buffer.
Definition: fetch_unit.hh:272
std::vector
STL vector class.
Definition: stl.hh:37
gem5::FetchUnit::fetchBuf
std::vector< FetchBufDesc > fetchBuf
Definition: fetch_unit.hh:265
gem5::FetchUnit::FetchBufDesc::pcBuffered
bool pcBuffered(Addr pc) const
Definition: fetch_unit.hh:175
gem5::FetchUnit::init
void init()
Definition: fetch_unit.cc:65
gem5::FetchUnit::FetchBufDesc::maxFbSize
int maxFbSize
Definition: fetch_unit.hh:234
gem5::FetchUnit::FetchBufDesc::hasFreeSpace
bool hasFreeSpace() const
Definition: fetch_unit.hh:106
packet.hh
gem5::FetchUnit::fetchQueue
std::vector< Wavefront * > fetchQueue
Definition: fetch_unit.hh:255
gem5::FetchUnit::FetchBufDesc::fetchDone
void fetchDone(Addr vaddr)
Definition: fetch_unit.cc:450
gem5::FetchUnit::FetchBufDesc::reservedBuf
uint8_t * reservedBuf(Addr vaddr) const
return a pointer to the raw fetch buffer data.
Definition: fetch_unit.hh:121
gem5::FetchUnit::FetchBufDesc::wavefront
Wavefront * wavefront
Definition: fetch_unit.hh:239
gem5::ComputeUnit
Definition: compute_unit.hh:203
gem5::FetchUnit::decoder
TheGpuISA::Decoder decoder
Definition: fetch_unit.hh:245
gem5::FetchUnit::FetchBufDesc::readPtr
uint8_t * readPtr
pointer that points to the next chunk of inst data to be decoded.
Definition: fetch_unit.hh:228
gem5::FetchUnit::FetchBufDesc::nextFetchAddr
Addr nextFetchAddr()
Definition: fetch_unit.cc:370
gem5::FetchUnit::FetchBufDesc::flushBuf
void flushBuf()
Definition: fetch_unit.cc:348
gem5::FetchUnit::FetchBufDesc::bufferedAndReservedLines
int bufferedAndReservedLines() const
Definition: fetch_unit.hh:98
gem5::Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:283
gem5::MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:326
gem5::FetchUnit::initiateFetch
void initiateFetch(Wavefront *wavefront)
Definition: fetch_unit.cc:136
gem5::FetchUnit::FetchBufDesc::decodeSplitInst
void decodeSplitInst()
Definition: fetch_unit.cc:576
gem5::FetchUnit::FetchBufDesc
fetch buffer descriptor.
Definition: fetch_unit.hh:75
gem5::FetchUnit::FetchBufDesc::bufEnd
uint8_t * bufEnd
Definition: fetch_unit.hh:223
gem5::FetchUnit::FetchUnit
FetchUnit(const ComputeUnitParams &p, ComputeUnit &cu)
Definition: fetch_unit.cc:52
gem5::FetchUnit::FetchBufDesc::fetchBytesRemaining
int fetchBytesRemaining() const
calculates the number of fetched bytes that have yet to be decoded.
Definition: fetch_unit.cc:626
gem5::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:538
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
scheduler.hh
gem5::FetchUnit::bindWaveList
void bindWaveList(std::vector< Wavefront * > *list)
Definition: fetch_unit.cc:317
gem5::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:135
gem5::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:324
gem5::FetchUnit::FetchBufDesc::bufStart
uint8_t * bufStart
raw instruction buffer.
Definition: fetch_unit.hh:222
gem5::FetchUnit::FetchBufDesc::reserveBuf
void reserveBuf(Addr vaddr)
reserve an entry in the fetch buffer for PC = vaddr,
Definition: fetch_unit.cc:425
gem5::FetchUnit::fetchScheduler
Scheduler fetchScheduler
Definition: fetch_unit.hh:251
gem5::FetchUnit::FetchBufDesc::checkWaveReleaseBuf
void checkWaveReleaseBuf()
checks if the wavefront can release any of its fetch buffer entries.
Definition: fetch_unit.cc:481
types.hh
std::deque< uint8_t * >
gem5::FetchUnit::globalFetchUnitID
static uint32_t globalFetchUnitID
Definition: fetch_unit.hh:68
gem5::MipsISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:243
gem5::FetchUnit::FetchBufDesc::cacheLineBits
int cacheLineBits
Definition: fetch_unit.hh:236
gem5::FetchUnit::waveList
std::vector< Wavefront * > * waveList
Definition: fetch_unit.hh:263
gem5::FetchUnit::FetchBufDesc::restartFromBranch
bool restartFromBranch
Definition: fetch_unit.hh:237
gem5::Scheduler
Definition: scheduler.hh:46
gem5::FetchUnit::fetchStatusQueue
std::vector< std::pair< Wavefront *, bool > > fetchStatusQueue
Definition: fetch_unit.hh:260
gem5::FetchUnit::FetchBufDesc::bufferedBytes
int bufferedBytes() const
Definition: fetch_unit.hh:104
gem5::MipsISA::vaddr
vaddr
Definition: pra_constants.hh:278
gem5::FetchUnit::FetchBufDesc::bufferedPCs
std::map< Addr, uint8_t * > bufferedPCs
the set of PCs (fetch addresses) that are currently buffered.
Definition: fetch_unit.hh:205
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: decoder.cc:40
gem5::FetchUnit::computeUnit
ComputeUnit & computeUnit
Definition: fetch_unit.hh:244
gem5::FetchUnit::FetchBufDesc::reservedLines
int reservedLines() const
Definition: fetch_unit.hh:105
gem5::FetchUnit::exec
void exec()
Definition: fetch_unit.cc:84
gem5::FetchUnit::FetchBufDesc::hasFetchDataToProcess
bool hasFetchDataToProcess() const
checks if the buffer contains valid data.
Definition: fetch_unit.cc:475
gem5::FetchUnit::FetchBufDesc::reservedPCs
std::map< Addr, uint8_t * > reservedPCs
Definition: fetch_unit.hh:206
gem5::FetchUnit::FetchBufDesc::freeList
std::deque< uint8_t * > freeList
represents the fetch buffer free list.
Definition: fetch_unit.hh:216
gem5::FetchUnit::fetch
void fetch(PacketPtr pkt, Wavefront *wavefront)
Definition: fetch_unit.cc:221
gem5::FetchUnit::processFetchReturn
void processFetchReturn(PacketPtr pkt)
Definition: fetch_unit.cc:285

Generated on Tue Sep 7 2021 14:53:47 for gem5 by doxygen 1.8.17