gem5  v21.2.1.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  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright notice,
9  * this list of conditions and the following disclaimer.
10  *
11  * 2. Redistributions in binary form must reproduce the above copyright notice,
12  * this list of conditions and the following disclaimer in the documentation
13  * and/or other materials provided with the distribution.
14  *
15  * 3. Neither the name of the copyright holder nor the names of its
16  * contributors may be used to endorse or promote products derived from this
17  * software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
23  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #ifndef __FETCH_UNIT_HH__
33 #define __FETCH_UNIT_HH__
34 
35 #include <cassert>
36 #include <cstdint>
37 #include <deque>
38 #include <map>
39 #include <utility>
40 #include <vector>
41 
42 #include "arch/gpu_decoder.hh"
43 #include "base/types.hh"
44 #include "config/the_gpu_isa.hh"
45 #include "gpu-compute/scheduler.hh"
46 #include "mem/packet.hh"
47 
48 namespace gem5
49 {
50 
51 class ComputeUnit;
52 class Wavefront;
53 
54 class FetchUnit
55 {
56  public:
57  FetchUnit(const ComputeUnitParams &p, ComputeUnit &cu);
58  ~FetchUnit();
59  void init();
60  void exec();
62  void initiateFetch(Wavefront *wavefront);
63  void fetch(PacketPtr pkt, Wavefront *wavefront);
64  void processFetchReturn(PacketPtr pkt);
65  void flushBuf(int wfSlotId);
66  static uint32_t globalFetchUnitID;
67 
68  private:
74  {
75  public:
76  FetchBufDesc() : bufStart(nullptr), bufEnd(nullptr),
77  readPtr(nullptr), fetchDepth(0), maxIbSize(0), maxFbSize(0),
78  cacheLineSize(0), restartFromBranch(false), wavefront(nullptr),
79  _decoder(nullptr)
80  {
81  }
82 
84  {
85  delete[] bufStart;
86  }
87 
93  void allocateBuf(int fetch_depth, int cache_line_size, Wavefront *wf);
94 
95  int
97  {
98  return bufferedLines() + reservedLines();
99  }
100 
101  int bufferedLines() const { return bufferedPCs.size(); }
102  int bufferedBytes() const { return bufferedLines() * cacheLineSize; }
103  int reservedLines() const { return reservedPCs.size(); }
104  bool hasFreeSpace() const { return !freeList.empty(); }
105  void flushBuf();
107 
111  void reserveBuf(Addr vaddr);
112 
118  uint8_t*
120  {
121  auto reserved_pc = reservedPCs.find(vaddr);
122  assert(reserved_pc != reservedPCs.end());
123  assert(reserved_pc == reservedPCs.begin());
124 
125  return reserved_pc->second;
126  }
127 
132  bool
134  {
135  auto reserved_pc = reservedPCs.find(vaddr);
136  bool is_reserved = (reserved_pc != reservedPCs.end());
137  return is_reserved;
138  }
139 
140  void fetchDone(Addr vaddr);
141 
147  bool hasFetchDataToProcess() const;
148 
157  void decodeInsts();
158 
164  void checkWaveReleaseBuf();
165 
166  void
167  decoder(TheGpuISA::Decoder *dec)
168  {
169  _decoder = dec;
170  }
171 
172  bool
174  {
175  bool buffered = bufferedPCs.find(pc) != bufferedPCs.end()
176  && reservedPCs.find(pc) != reservedPCs.end();
177 
178  return buffered;
179  }
180 
185  int fetchBytesRemaining() const;
186 
187  private:
188  void decodeSplitInst();
189 
195  bool splitDecode() const;
196 
203  std::map<Addr, uint8_t*> bufferedPCs;
204  std::map<Addr, uint8_t*> reservedPCs;
205 
215 
220  uint8_t *bufStart;
221  uint8_t *bufEnd;
226  uint8_t *readPtr;
227  // how many lines the fetch unit may buffer
229  // maximum size (in number of insts) of the WF's IB
231  // maximum size (in bytes) of this fetch buffer
236  // wavefront whose IB is serviced by this fetch buffer
238  TheGpuISA::Decoder *_decoder;
239  };
240 
241  bool timingSim;
243  TheGpuISA::Decoder decoder;
244 
245  // Fetch scheduler; Selects one wave from
246  // the fetch queue for instruction fetching.
247  // The selection is made according to
248  // a scheduling policy
250 
251  // Stores the list of waves that are
252  // ready to be fetched this cycle
254 
255  // Stores the fetch status of all waves dispatched to this SIMD.
256  // TRUE implies the wave is ready to fetch and is already
257  // moved to fetchQueue
259 
260  // Pointer to list of waves dispatched on to this SIMD unit
262  // holds the fetch buffers. each wave has 1 entry.
271 };
272 
273 } // namespace gem5
274 
275 #endif // __FETCH_UNIT_HH__
gem5::FetchUnit::FetchBufDesc::_decoder
TheGpuISA::Decoder * _decoder
Definition: fetch_unit.hh:238
gem5::FetchUnit::~FetchUnit
~FetchUnit()
Definition: fetch_unit.cc:57
gem5::FetchUnit::flushBuf
void flushBuf(int wfSlotId)
Definition: fetch_unit.cc:310
gem5::FetchUnit::FetchBufDesc::maxIbSize
int maxIbSize
Definition: fetch_unit.hh:230
gem5::FetchUnit::FetchBufDesc::cacheLineSize
int cacheLineSize
Definition: fetch_unit.hh:233
gem5::FetchUnit::FetchBufDesc::decoder
void decoder(TheGpuISA::Decoder *dec)
Definition: fetch_unit.hh:167
gem5::Wavefront
Definition: wavefront.hh:60
gem5::FetchUnit::FetchBufDesc::fetchDepth
int fetchDepth
Definition: fetch_unit.hh:228
gem5::FetchUnit::FetchBufDesc::bufferedLines
int bufferedLines() const
Definition: fetch_unit.hh:101
gem5::FetchUnit::FetchBufDesc::~FetchBufDesc
~FetchBufDesc()
Definition: fetch_unit.hh:83
gem5::FetchUnit::timingSim
bool timingSim
Definition: fetch_unit.hh:241
gem5::FetchUnit::FetchBufDesc::FetchBufDesc
FetchBufDesc()
Definition: fetch_unit.hh:76
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:613
gem5::FetchUnit
Definition: fetch_unit.hh:54
gem5::FetchUnit::fetchDepth
int fetchDepth
number of cache lines we can fetch and buffer.
Definition: fetch_unit.hh:270
std::vector
STL vector class.
Definition: stl.hh:37
gem5::FetchUnit::fetchBuf
std::vector< FetchBufDesc > fetchBuf
Definition: fetch_unit.hh:263
gem5::FetchUnit::FetchBufDesc::pcBuffered
bool pcBuffered(Addr pc) const
Definition: fetch_unit.hh:173
gem5::FetchUnit::init
void init()
Definition: fetch_unit.cc:64
gem5::FetchUnit::FetchBufDesc::maxFbSize
int maxFbSize
Definition: fetch_unit.hh:232
gem5::FetchUnit::FetchBufDesc::hasFreeSpace
bool hasFreeSpace() const
Definition: fetch_unit.hh:104
packet.hh
gem5::FetchUnit::fetchQueue
std::vector< Wavefront * > fetchQueue
Definition: fetch_unit.hh:253
gem5::FetchUnit::FetchBufDesc::fetchDone
void fetchDone(Addr vaddr)
Definition: fetch_unit.cc:449
gem5::FetchUnit::FetchBufDesc::reservedBuf
uint8_t * reservedBuf(Addr vaddr) const
return a pointer to the raw fetch buffer data.
Definition: fetch_unit.hh:119
gem5::FetchUnit::FetchBufDesc::wavefront
Wavefront * wavefront
Definition: fetch_unit.hh:237
gem5::ComputeUnit
Definition: compute_unit.hh:201
gem5::FetchUnit::decoder
TheGpuISA::Decoder decoder
Definition: fetch_unit.hh:243
gem5::FetchUnit::FetchBufDesc::readPtr
uint8_t * readPtr
pointer that points to the next chunk of inst data to be decoded.
Definition: fetch_unit.hh:226
gem5::FetchUnit::FetchBufDesc::nextFetchAddr
Addr nextFetchAddr()
Definition: fetch_unit.cc:369
gem5::FetchUnit::FetchBufDesc::flushBuf
void flushBuf()
Definition: fetch_unit.cc:347
gem5::FetchUnit::FetchBufDesc::bufferedAndReservedLines
int bufferedAndReservedLines() const
Definition: fetch_unit.hh:96
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:135
gem5::FetchUnit::FetchBufDesc::decodeSplitInst
void decodeSplitInst()
Definition: fetch_unit.cc:575
gem5::FetchUnit::FetchBufDesc
fetch buffer descriptor.
Definition: fetch_unit.hh:73
gem5::FetchUnit::FetchBufDesc::bufEnd
uint8_t * bufEnd
Definition: fetch_unit.hh:221
gem5::FetchUnit::FetchUnit
FetchUnit(const ComputeUnitParams &p, ComputeUnit &cu)
Definition: fetch_unit.cc:51
gem5::FetchUnit::FetchBufDesc::fetchBytesRemaining
int fetchBytesRemaining() const
calculates the number of fetched bytes that have yet to be decoded.
Definition: fetch_unit.cc:625
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:537
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:316
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:133
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:323
gem5::FetchUnit::FetchBufDesc::bufStart
uint8_t * bufStart
raw instruction buffer.
Definition: fetch_unit.hh:220
gem5::FetchUnit::FetchBufDesc::reserveBuf
void reserveBuf(Addr vaddr)
reserve an entry in the fetch buffer for PC = vaddr,
Definition: fetch_unit.cc:424
gem5::FetchUnit::fetchScheduler
Scheduler fetchScheduler
Definition: fetch_unit.hh:249
gem5::FetchUnit::FetchBufDesc::checkWaveReleaseBuf
void checkWaveReleaseBuf()
checks if the wavefront can release any of its fetch buffer entries.
Definition: fetch_unit.cc:480
types.hh
std::deque< uint8_t * >
gem5::FetchUnit::globalFetchUnitID
static uint32_t globalFetchUnitID
Definition: fetch_unit.hh:66
gem5::MipsISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:243
gem5::FetchUnit::FetchBufDesc::cacheLineBits
int cacheLineBits
Definition: fetch_unit.hh:234
gem5::FetchUnit::waveList
std::vector< Wavefront * > * waveList
Definition: fetch_unit.hh:261
gem5::FetchUnit::FetchBufDesc::restartFromBranch
bool restartFromBranch
Definition: fetch_unit.hh:235
gem5::Scheduler
Definition: scheduler.hh:44
gem5::FetchUnit::fetchStatusQueue
std::vector< std::pair< Wavefront *, bool > > fetchStatusQueue
Definition: fetch_unit.hh:258
gem5::FetchUnit::FetchBufDesc::bufferedBytes
int bufferedBytes() const
Definition: fetch_unit.hh:102
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:203
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: tlb.cc:60
gem5::FetchUnit::computeUnit
ComputeUnit & computeUnit
Definition: fetch_unit.hh:242
gem5::FetchUnit::FetchBufDesc::reservedLines
int reservedLines() const
Definition: fetch_unit.hh:103
gem5::FetchUnit::exec
void exec()
Definition: fetch_unit.cc:83
gem5::FetchUnit::FetchBufDesc::hasFetchDataToProcess
bool hasFetchDataToProcess() const
checks if the buffer contains valid data.
Definition: fetch_unit.cc:474
gem5::FetchUnit::FetchBufDesc::reservedPCs
std::map< Addr, uint8_t * > reservedPCs
Definition: fetch_unit.hh:204
gem5::FetchUnit::FetchBufDesc::freeList
std::deque< uint8_t * > freeList
represents the fetch buffer free list.
Definition: fetch_unit.hh:214
gem5::FetchUnit::fetch
void fetch(PacketPtr pkt, Wavefront *wavefront)
Definition: fetch_unit.cc:220
gem5::FetchUnit::processFetchReturn
void processFetchReturn(PacketPtr pkt)
Definition: fetch_unit.cc:284

Generated on Wed May 4 2022 12:13:58 for gem5 by doxygen 1.8.17