gem5  v20.0.0.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 <string>
38 #include <utility>
39 #include <vector>
40 
41 #include "arch/gpu_decoder.hh"
42 #include "base/statistics.hh"
43 #include "config/the_gpu_isa.hh"
44 #include "gpu-compute/scheduler.hh"
45 #include "mem/packet.hh"
46 
47 class ComputeUnit;
48 class Wavefront;
49 
50 class FetchUnit
51 {
52  public:
53  FetchUnit(const ComputeUnitParams* params);
54  ~FetchUnit();
55  void init(ComputeUnit *cu);
56  void exec();
58  void initiateFetch(Wavefront *wavefront);
59  void fetch(PacketPtr pkt, Wavefront *wavefront);
60  void processFetchReturn(PacketPtr pkt);
61  static uint32_t globalFetchUnitID;
62 
63  private:
64  bool timingSim;
66  TheGpuISA::Decoder decoder;
67 
68  // Fetch scheduler; Selects one wave from
69  // the fetch queue for instruction fetching.
70  // The selection is made according to
71  // a scheduling policy
73 
74  // Stores the list of waves that are
75  // ready to be fetched this cycle
77 
78  // Stores the fetch status of all waves dispatched to this SIMD.
79  // TRUE implies the wave is ready to fetch and is already
80  // moved to fetchQueue
82 
83  // Pointer to list of waves dispatched on to this SIMD unit
85 };
86 
87 #endif // __FETCH_UNIT_HH__
void init(ComputeUnit *cu)
Definition: fetch_unit.cc:63
static uint32_t globalFetchUnitID
Definition: fetch_unit.hh:61
ComputeUnit * computeUnit
Definition: fetch_unit.hh:65
void processFetchReturn(PacketPtr pkt)
Definition: fetch_unit.cc:252
TheGpuISA::Decoder decoder
Definition: fetch_unit.hh:66
Declaration of Statistics objects.
std::vector< std::pair< Wavefront *, bool > > fetchStatusQueue
Definition: fetch_unit.hh:81
FetchUnit(const ComputeUnitParams *params)
Definition: fetch_unit.cc:48
STL vector class.
Definition: stl.hh:37
void bindWaveList(std::vector< Wavefront *> *list)
Definition: fetch_unit.cc:310
void initiateFetch(Wavefront *wavefront)
Definition: fetch_unit.cc:112
void exec()
Definition: fetch_unit.cc:78
static scfx_rep_node * list
Definition: scfx_rep.cc:336
std::vector< Wavefront * > * waveList
Definition: fetch_unit.hh:84
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
bool timingSim
Definition: fetch_unit.hh:64
Declaration of the Packet class.
Scheduler fetchScheduler
Definition: fetch_unit.hh:72
void fetch(PacketPtr pkt, Wavefront *wavefront)
Definition: fetch_unit.cc:204
std::vector< Wavefront * > fetchQueue
Definition: fetch_unit.hh:76

Generated on Thu May 28 2020 16:21:33 for gem5 by doxygen 1.8.13