gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
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 <unordered_map>
39 #include <utility>
40 #include <vector>
41 
42 #include "base/statistics.hh"
43 #include "base/stats/group.hh"
44 
45 class ComputeUnit;
46 class ScheduleToExecute;
47 class Wavefront;
48 
49 struct ComputeUnitParams;
50 
52 {
56 };
57 
59 {
60  EMPTY = 0, // no wave present in dispatchList slot
61  EXREADY, // wave ready for execution
62  SKIP, // extra memory resource needed, Shared Mem. only
63 };
64 
65 // Execution stage.
66 // Each execution resource executes the
67 // wave which is in its dispatch list.
68 // The schedule stage is responsible for
69 // adding a wave into each execution resource's
70 // dispatch list.
71 
72 class ExecStage
73 {
74  public:
75  ExecStage(const ComputeUnitParams &p, ComputeUnit &cu,
76  ScheduleToExecute &from_schedule);
77  ~ExecStage() { }
78  void init();
79  void exec();
80 
81  std::string dispStatusToStr(int j);
82  void dumpDispList();
83 
84  const std::string& name() const { return _name; }
85 
86  private:
87  void collectStatistics(enum STAT_STATUS stage, int unitId);
88  void initStatistics();
91 
96  uint64_t idle_dur;
97  const std::string _name;
98 
99  protected:
100  struct ExecStageStats : public Stats::Group
101  {
102  ExecStageStats(Stats::Group *parent);
103 
104  // number of transitions from active to idle
106  // number of idle cycles
108  // number of busy cycles
110  // SIMDs active per cycle
112  // duration of idle periods in cycles
114  // number of cycles during which at least one
115  // instruction was issued to an execution resource type
117  // number of idle cycles during which the scheduler
118  // issued no instructions targeting a specific
119  // execution resource type
121  } stats;
122 };
123 
124 #endif // __EXEC_STAGE_HH__
ExecStage::~ExecStage
~ExecStage()
Definition: exec_stage.hh:77
ExecStage
Definition: exec_stage.hh:72
STAT_STATUS
STAT_STATUS
Definition: exec_stage.hh:51
ExecStage::thisTimeInstExecuted
bool thisTimeInstExecuted
Definition: exec_stage.hh:93
ExecStage::collectStatistics
void collectStatistics(enum STAT_STATUS stage, int unitId)
Definition: exec_stage.cc:64
EMPTY
@ EMPTY
Definition: exec_stage.hh:60
group.hh
ExecStage::idle_dur
uint64_t idle_dur
Definition: exec_stage.hh:96
ExecStage::dispStatusToStr
std::string dispStatusToStr(int j)
Definition: exec_stage.cc:110
ExecStage::init
void init()
Definition: exec_stage.cc:58
ExecStage::exec
void exec()
Definition: exec_stage.cc:151
ExecStage::initStatistics
void initStatistics()
Definition: exec_stage.cc:102
ExecStage::ExecStageStats::spc
Stats::Distribution spc
Definition: exec_stage.hh:111
Stats::Vector
A vector of scalar stats.
Definition: statistics.hh:2007
ExecStage::lastTimeInstExecuted
bool lastTimeInstExecuted
Definition: exec_stage.hh:92
SKIP
@ SKIP
Definition: exec_stage.hh:62
Stats::Scalar
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:1933
ComputeUnit
Definition: compute_unit.hh:200
ArmISA::j
Bitfield< 24 > j
Definition: miscregs_types.hh:54
ScheduleToExecute
Communication interface between Schedule and Execute stages.
Definition: comm.hh:97
ExecStage::ExecStageStats
Definition: exec_stage.hh:100
statistics.hh
ExecStage::ExecStageStats::numCyclesWithNoIssue
Stats::Scalar numCyclesWithNoIssue
Definition: exec_stage.hh:107
ExecStage::ExecStageStats::ExecStageStats
ExecStageStats(Stats::Group *parent)
Definition: exec_stage.cc:200
ExecStage::ExecStageStats::numCyclesWithInstrIssued
Stats::Scalar numCyclesWithInstrIssued
Definition: exec_stage.hh:109
BusyExec
@ BusyExec
Definition: exec_stage.hh:54
ExecStage::_name
const std::string _name
Definition: exec_stage.hh:97
ExecStage::fromSchedule
ScheduleToExecute & fromSchedule
Definition: exec_stage.hh:90
Stats::Distribution
A simple distribution stat.
Definition: statistics.hh:2084
EXREADY
@ EXREADY
Definition: exec_stage.hh:61
ExecStage::executionResourcesUsed
int executionResourcesUsed
Definition: exec_stage.hh:95
IdleExec
@ IdleExec
Definition: exec_stage.hh:53
Wavefront
Definition: wavefront.hh:59
Stats::Group
Statistics container.
Definition: group.hh:87
PostExec
@ PostExec
Definition: exec_stage.hh:55
ExecStage::ExecStageStats::numCyclesWithInstrTypeIssued
Stats::Vector numCyclesWithInstrTypeIssued
Definition: exec_stage.hh:116
ExecStage::ExecStageStats::numCyclesWithNoInstrTypeIssued
Stats::Vector numCyclesWithNoInstrTypeIssued
Definition: exec_stage.hh:120
ExecStage::ExecStageStats::numTransActiveIdle
Stats::Scalar numTransActiveIdle
Definition: exec_stage.hh:105
ExecStage::ExecStage
ExecStage(const ComputeUnitParams &p, ComputeUnit &cu, ScheduleToExecute &from_schedule)
Definition: exec_stage.cc:44
ExecStage::name
const std::string & name() const
Definition: exec_stage.hh:84
ExecStage::instrExecuted
bool instrExecuted
Definition: exec_stage.hh:94
ExecStage::dumpDispList
void dumpDispList()
Definition: exec_stage.cc:128
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
DISPATCH_STATUS
DISPATCH_STATUS
Definition: exec_stage.hh:58
ExecStage::stats
ExecStage::ExecStageStats stats
ExecStage::computeUnit
ComputeUnit & computeUnit
Definition: exec_stage.hh:89
ExecStage::ExecStageStats::idleDur
Stats::Distribution idleDur
Definition: exec_stage.hh:113

Generated on Tue Mar 23 2021 19:41:27 for gem5 by doxygen 1.8.17