gem5  v20.0.0.3
exec_stage.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2014-2015 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 __EXEC_STAGE_HH__
35 #define __EXEC_STAGE_HH__
36 
37 #include <string>
38 #include <utility>
39 #include <vector>
40 
41 #include "sim/stats.hh"
42 
43 class ComputeUnit;
44 class Wavefront;
45 struct ComputeUnitParams;
46 
48 {
52 };
53 
55 {
56  EMPTY = 0,
58 };
59 
60 // Execution stage.
61 // Each execution resource executes the
62 // wave which is in its dispatch list.
63 // The schedule stage is responsible for
64 // adding a wave into each execution resource's
65 // dispatch list.
66 
67 class ExecStage
68 {
69  public:
70  ExecStage(const ComputeUnitParams* params);
71  ~ExecStage() { }
72  void init(ComputeUnit *cu);
73  void exec();
74 
75  std::string name() { return _name; }
76  void regStats();
77  // number of idle cycles
79  // number of busy cycles
81  // number of cycles (per execution unit) during which at least one
82  // instruction was issued to that unit
84  // number of idle cycles (per execution unit) during which the unit issued
85  // no instruction targeting that unit, even though there is at least one
86  // Wavefront with such an instruction as the oldest
88  // SIMDs active per cycle
90 
91  private:
92  void collectStatistics(enum STAT_STATUS stage, int unitId);
93  void initStatistics();
95  uint32_t numSIMDs;
96 
97  // Number of memory execution resources;
98  // both global and local memory execution resources in CU
99  uint32_t numMemUnits;
100 
101  // List of waves which will be dispatched to
102  // each execution resource. A FILLED implies
103  // dispatch list is non-empty and
104  // execution unit has something to execute
105  // this cycle. Currently, the dispatch list of
106  // an execution resource can hold only one wave because
107  // an execution resource can execute only one wave in a cycle.
108  // dispatchList is used to communicate between schedule
109  // and exec stage
111  // flag per vector SIMD unit that is set when there is at least one
112  // WV that has a vector ALU instruction as the oldest in its
113  // Instruction Buffer
123  uint64_t idle_dur;
124  std::string _name;
125 };
126 
127 #endif // __EXEC_STAGE_HH__
uint32_t executionResourcesUsed
Definition: exec_stage.hh:122
uint32_t numSIMDs
Definition: exec_stage.hh:95
std::string _name
Definition: exec_stage.hh:124
Stats::Distribution idleDur
Definition: exec_stage.hh:121
A vector of scalar stats.
Definition: statistics.hh:2547
Stats::Vector numCyclesWithInstrTypeIssued
Definition: exec_stage.hh:83
Stats::Scalar numCyclesWithInstrIssued
Definition: exec_stage.hh:80
std::string name()
Definition: exec_stage.hh:75
Stats::Distribution spc
Definition: exec_stage.hh:89
ExecStage(const ComputeUnitParams *params)
Definition: exec_stage.cc:39
void collectStatistics(enum STAT_STATUS stage, int unitId)
Definition: exec_stage.cc:63
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
STL vector class.
Definition: stl.hh:37
ComputeUnit * computeUnit
Definition: exec_stage.hh:94
DISPATCH_STATUS
Definition: exec_stage.hh:54
uint64_t idle_dur
Definition: exec_stage.hh:123
A simple distribution stat.
Definition: statistics.hh:2589
bool lastTimeInstExecuted
Definition: exec_stage.hh:117
Stats::Scalar numCyclesWithNoIssue
Definition: exec_stage.hh:78
void exec()
Definition: exec_stage.cc:126
bool instrExecuted
Definition: exec_stage.hh:119
void init(ComputeUnit *cu)
Definition: exec_stage.cc:51
Stats::Vector numCyclesWithNoInstrTypeIssued
Definition: exec_stage.hh:87
int * glbMemInstAvail
Definition: exec_stage.hh:115
STAT_STATUS
Definition: exec_stage.hh:47
std::vector< std::pair< Wavefront *, DISPATCH_STATUS > > * dispatchList
Definition: exec_stage.hh:110
void initStatistics()
Definition: exec_stage.cc:118
Stats::Scalar numTransActiveIdle
Definition: exec_stage.hh:120
std::vector< bool > * vectorAluInstAvail
Definition: exec_stage.hh:114
int * shrMemInstAvail
Definition: exec_stage.hh:116
uint32_t numMemUnits
Definition: exec_stage.hh:99
void regStats()
Definition: exec_stage.cc:150
bool thisTimeInstExecuted
Definition: exec_stage.hh:118

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