gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Profiler.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
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
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 /*
30  This file has been modified by Kevin Moore and Dan Nussbaum of the
31  Scalable Systems Research Group at Sun Microsystems Laboratories
32  (http://research.sun.com/scalable/) to support the Adaptive
33  Transactional Memory Test Platform (ATMTP).
34 
35  Please send email to atmtp-interest@sun.com with feedback, questions, or
36  to request future announcements about ATMTP.
37 
38  ----------------------------------------------------------------------
39 
40  File modification date: 2008-02-23
41 
42  ----------------------------------------------------------------------
43 */
44 
45 #ifndef __MEM_RUBY_PROFILER_PROFILER_HH__
46 #define __MEM_RUBY_PROFILER_PROFILER_HH__
47 
48 #include <map>
49 #include <memory>
50 #include <string>
51 #include <vector>
52 
53 #include "base/callback.hh"
54 #include "base/statistics.hh"
56 #include "mem/ruby/protocol/AccessType.hh"
57 #include "mem/ruby/protocol/PrefetchBit.hh"
58 #include "mem/ruby/protocol/RubyAccessMode.hh"
59 #include "mem/ruby/protocol/RubyRequestType.hh"
60 #include "params/RubySystem.hh"
61 
62 class RubyRequest;
63 class AddressProfiler;
64 
65 class Profiler
66 {
67  public:
68  Profiler(const RubySystemParams &params, RubySystem *rs);
69  ~Profiler();
70 
72 
73  void wakeup();
74  void regStats();
75  void collateStats();
76 
79 
80  void addAddressTraceSample(const RubyRequest& msg, NodeID id);
81 
82  // added by SS
83  bool getHotLines() const { return m_hot_lines; }
84  bool getAllInstructions() const { return m_all_instructions; }
85 
86  private:
87  // Private copy constructor and assignment operator
88  Profiler(const Profiler& obj);
89  Profiler& operator=(const Profiler& obj);
90 
93 
94  struct ProfilerStats : public Stats::Group
95  {
96  ProfilerStats(Stats::Group *parent, Profiler *profiler);
97 
99  {
101 
102  // Histogram of the latency of each request type
105 
106  // Histogram of the latency of requests that hit in the controller
107  // connected to this sequencer for each type of request
109 
110  // Histogram of the latency of requests that miss in the controller
111  // connected to this sequencer for each type of request
115 
117  {
119 
123 
128 
144 
146  {
148 
153 
161 
164 
168 
172 
176 
181  };
182 
183  //added by SS
184  const bool m_hot_lines;
185  const bool m_all_instructions;
186  const uint32_t m_num_vnets;
187 
188 
189  public:
191 };
192 
193 #endif // __MEM_RUBY_PROFILER_PROFILER_HH__
MachineID.hh
Profiler::ProfilerStats::PerMachineTypeStats::m_IncompleteTimesSeqr
std::vector< Stats::Scalar * > m_IncompleteTimesSeqr
Definition: Profiler.hh:136
Profiler::ProfilerStats::m_missLatencyHistSeqr
Stats::Histogram m_missLatencyHistSeqr
Histogram for holding latency profile of all requests that miss in the controller connected to this s...
Definition: Profiler.hh:179
Profiler::getAddressProfiler
AddressProfiler * getAddressProfiler()
Definition: Profiler.hh:77
AddressProfiler
Definition: AddressProfiler.hh:44
Profiler::ProfilerStats::PerMachineTypeStats::m_IssueToInitialDelayHistCoalsr
std::vector< Stats::Histogram * > m_IssueToInitialDelayHistCoalsr
Definition: Profiler.hh:137
Profiler::getInstructionProfiler
AddressProfiler * getInstructionProfiler()
Definition: Profiler.hh:78
Profiler::rubyProfilerStats
ProfilerStats rubyProfilerStats
Definition: Profiler.hh:190
Profiler::ProfilerStats::delayHistogram
Stats::Histogram delayHistogram
Definition: Profiler.hh:162
Profiler::ProfilerStats::PerRequestTypeStats
Definition: Profiler.hh:98
std::vector< Stats::Histogram * >
Profiler::ProfilerStats::PerRequestTypeMachineTypeStats::m_missTypeMachLatencyHistCoalsr
std::vector< std::vector< Stats::Histogram * > > m_missTypeMachLatencyHistCoalsr
Definition: Profiler.hh:159
Profiler::ProfilerStats
Definition: Profiler.hh:94
Profiler::ProfilerStats::PerRequestTypeStats::m_typeLatencyHistCoalsr
std::vector< Stats::Histogram * > m_typeLatencyHistCoalsr
Definition: Profiler.hh:104
Profiler::ProfilerStats::PerRequestTypeStats::m_missTypeLatencyHistSeqr
std::vector< Stats::Histogram * > m_missTypeLatencyHistSeqr
Definition: Profiler.hh:112
Profiler::ProfilerStats::delayVCHistogram
std::vector< Stats::Histogram * > delayVCHistogram
Definition: Profiler.hh:163
Profiler::ProfilerStats::PerMachineTypeStats::m_missMachLatencyHistCoalsr
std::vector< Stats::Histogram * > m_missMachLatencyHistCoalsr
Definition: Profiler.hh:127
Profiler::ProfilerStats::PerRequestTypeMachineTypeStats::m_missTypeMachLatencyHistSeqr
std::vector< std::vector< Stats::Histogram * > > m_missTypeMachLatencyHistSeqr
Histograms for profiling the latencies for requests that required external messages.
Definition: Profiler.hh:157
Stats::Histogram
A simple histogram stat.
Definition: statistics.hh:2126
Profiler::ProfilerStats::m_hitLatencyHistSeqr
Stats::Histogram m_hitLatencyHistSeqr
Histogram for holding latency profile of all requests that hit in the controller connected to this se...
Definition: Profiler.hh:175
Profiler::ProfilerStats::m_outstandReqHistCoalsr
Stats::Histogram m_outstandReqHistCoalsr
Definition: Profiler.hh:167
Profiler::ProfilerStats::PerMachineTypeStats
Definition: Profiler.hh:116
Profiler::ProfilerStats::PerMachineTypeStats::m_ForwardToFirstResponseDelayHistCoalsr
std::vector< Stats::Histogram * > m_ForwardToFirstResponseDelayHistCoalsr
Definition: Profiler.hh:140
Profiler::ProfilerStats::perRequestTypeStats
Profiler::ProfilerStats::PerRequestTypeStats perRequestTypeStats
Profiler::regStats
void regStats()
Profiler
Definition: Profiler.hh:65
RubySystem
Definition: RubySystem.hh:52
Profiler::ProfilerStats::PerMachineTypeStats::m_FirstResponseToCompletionDelayHistSeqr
std::vector< Stats::Histogram * > m_FirstResponseToCompletionDelayHistSeqr
Definition: Profiler.hh:135
Profiler::m_inst_profiler_ptr
AddressProfiler * m_inst_profiler_ptr
Definition: Profiler.hh:92
statistics.hh
Profiler::ProfilerStats::perMachineTypeStats
Profiler::ProfilerStats::PerMachineTypeStats perMachineTypeStats
Profiler::ProfilerStats::PerRequestTypeMachineTypeStats::m_hitTypeMachLatencyHistSeqr
std::vector< std::vector< Stats::Histogram * > > m_hitTypeMachLatencyHistSeqr
Histograms for profiling the latencies for requests that did not required external messages.
Definition: Profiler.hh:152
Profiler::ProfilerStats::PerRequestTypeMachineTypeStats::PerRequestTypeMachineTypeStats
PerRequestTypeMachineTypeStats(Stats::Group *parent)
Definition: Profiler.cc:315
Profiler::ProfilerStats::PerMachineTypeStats::m_missMachLatencyHistSeqr
std::vector< Stats::Histogram * > m_missMachLatencyHistSeqr
Histograms for profiling the latencies for requests that required external messages.
Definition: Profiler.hh:126
Profiler::ProfilerStats::PerMachineTypeStats::m_InitialToForwardDelayHistCoalsr
std::vector< Stats::Histogram * > m_InitialToForwardDelayHistCoalsr
Definition: Profiler.hh:138
Profiler::ProfilerStats::perRequestTypeMachineTypeStats
Profiler::ProfilerStats::PerRequestTypeMachineTypeStats perRequestTypeMachineTypeStats
RubyRequest
Definition: RubyRequest.hh:55
Profiler::addAddressTraceSample
void addAddressTraceSample(const RubyRequest &msg, NodeID id)
Definition: Profiler.cc:559
Profiler::getAllInstructions
bool getAllInstructions() const
Definition: Profiler.hh:84
Profiler::ProfilerStats::PerRequestTypeStats::m_typeLatencyHistSeqr
std::vector< Stats::Histogram * > m_typeLatencyHistSeqr
Definition: Profiler.hh:103
Profiler::ProfilerStats::PerMachineTypeStats::PerMachineTypeStats
PerMachineTypeStats(Stats::Group *parent)
Definition: Profiler.cc:203
Profiler::Profiler
Profiler(const RubySystemParams &params, RubySystem *rs)
Definition: Profiler.cc:82
Profiler::m_address_profiler_ptr
AddressProfiler * m_address_profiler_ptr
Definition: Profiler.hh:91
Profiler::ProfilerStats::PerMachineTypeStats::m_InitialToForwardDelayHistSeqr
std::vector< Stats::Histogram * > m_InitialToForwardDelayHistSeqr
Definition: Profiler.hh:131
Profiler::m_num_vnets
const uint32_t m_num_vnets
Definition: Profiler.hh:186
Profiler::ProfilerStats::PerRequestTypeStats::m_hitTypeLatencyHistSeqr
std::vector< Stats::Histogram * > m_hitTypeLatencyHistSeqr
Definition: Profiler.hh:108
Profiler::m_all_instructions
const bool m_all_instructions
Definition: Profiler.hh:185
Profiler::ProfilerStats::ProfilerStats
ProfilerStats(Stats::Group *parent, Profiler *profiler)
Definition: Profiler.cc:104
Profiler::~Profiler
~Profiler()
Definition: Profiler.cc:99
Profiler::ProfilerStats::PerMachineTypeStats::m_IssueToInitialDelayHistSeqr
std::vector< Stats::Histogram * > m_IssueToInitialDelayHistSeqr
Histograms for recording the breakdown of miss latency.
Definition: Profiler.hh:130
Profiler::ProfilerStats::PerMachineTypeStats::m_hitMachLatencyHistSeqr
std::vector< Stats::Histogram * > m_hitMachLatencyHistSeqr
Histograms for profiling the latencies for requests that did not required external messages.
Definition: Profiler.hh:122
Profiler::m_hot_lines
const bool m_hot_lines
Definition: Profiler.hh:184
Profiler::wakeup
void wakeup()
Profiler::ProfilerStats::m_latencyHistSeqr
Stats::Histogram m_latencyHistSeqr
Histogram for holding latency profile of all requests.
Definition: Profiler.hh:170
Profiler::ProfilerStats::PerRequestTypeStats::m_missTypeLatencyHistCoalsr
std::vector< Stats::Histogram * > m_missTypeLatencyHistCoalsr
Definition: Profiler.hh:113
Profiler::ProfilerStats::PerMachineTypeStats::m_ForwardToFirstResponseDelayHistSeqr
std::vector< Stats::Histogram * > m_ForwardToFirstResponseDelayHistSeqr
Definition: Profiler.hh:133
Stats::Group
Statistics container.
Definition: group.hh:87
Profiler::m_ruby_system
RubySystem * m_ruby_system
Definition: Profiler.hh:71
ArmISA::rs
Bitfield< 9, 8 > rs
Definition: miscregs_types.hh:372
Profiler::ProfilerStats::PerRequestTypeStats::PerRequestTypeStats
PerRequestTypeStats(Stats::Group *parent)
Definition: Profiler.cc:161
Profiler::ProfilerStats::m_latencyHistCoalsr
Stats::Histogram m_latencyHistCoalsr
Definition: Profiler.hh:171
NodeID
unsigned int NodeID
Definition: TypeDefines.hh:34
Profiler::ProfilerStats::PerMachineTypeStats::m_FirstResponseToCompletionDelayHistCoalsr
std::vector< Stats::Histogram * > m_FirstResponseToCompletionDelayHistCoalsr
Definition: Profiler.hh:142
Profiler::operator=
Profiler & operator=(const Profiler &obj)
Profiler::getHotLines
bool getHotLines() const
Definition: Profiler.hh:83
Profiler::ProfilerStats::m_outstandReqHistSeqr
Stats::Histogram m_outstandReqHistSeqr
Histogram for number of outstanding requests per cycle.
Definition: Profiler.hh:166
Profiler::ProfilerStats::PerRequestTypeMachineTypeStats
Definition: Profiler.hh:145
Profiler::collateStats
void collateStats()
Definition: Profiler.cc:358
callback.hh
Profiler::ProfilerStats::m_missLatencyHistCoalsr
Stats::Histogram m_missLatencyHistCoalsr
Definition: Profiler.hh:180

Generated on Tue Jun 22 2021 15:28:30 for gem5 by doxygen 1.8.17