Profiler.hh revision 9746:7d235b709425
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 <iostream>
49#include <map>
50#include <string>
51#include <vector>
52
53#include "base/hashmap.hh"
54#include "mem/protocol/AccessType.hh"
55#include "mem/protocol/GenericMachineType.hh"
56#include "mem/protocol/PrefetchBit.hh"
57#include "mem/protocol/RubyAccessMode.hh"
58#include "mem/protocol/RubyRequestType.hh"
59#include "mem/ruby/common/Address.hh"
60#include "mem/ruby/common/Global.hh"
61#include "mem/ruby/common/Histogram.hh"
62#include "mem/ruby/common/Set.hh"
63#include "mem/ruby/system/MachineID.hh"
64#include "mem/ruby/system/MemoryControl.hh"
65#include "params/RubyProfiler.hh"
66#include "sim/sim_object.hh"
67
68class RubyRequest;
69class AddressProfiler;
70
71class Profiler : public SimObject
72{
73  public:
74    typedef RubyProfilerParams Params;
75    Profiler(const Params *);
76    ~Profiler();
77
78    void wakeup();
79
80    void setPeriodicStatsFile(const std::string& filename);
81    void setPeriodicStatsInterval(int64_t period);
82
83    void printStats(std::ostream& out, bool short_stats=false);
84    void printShortStats(std::ostream& out) { printStats(out, true); }
85    void printTraceStats(std::ostream& out) const;
86    void clearStats();
87    void printResourceUsage(std::ostream& out) const;
88
89    AddressProfiler* getAddressProfiler() { return m_address_profiler_ptr; }
90    AddressProfiler* getInstructionProfiler() { return m_inst_profiler_ptr; }
91
92    void addAddressTraceSample(const RubyRequest& msg, NodeID id);
93
94    void profileRequest(const std::string& requestStr);
95    void profileSharing(const Address& addr, AccessType type,
96                        NodeID requestor, const Set& sharers,
97                        const Set& owner);
98
99    void profileMulticastRetry(const Address& addr, int count);
100
101    void profileFilterAction(int action);
102
103    void profileConflictingRequests(const Address& addr);
104
105    void
106    profileAverageLatencyEstimate(int latency)
107    {
108        m_average_latency_estimate.add(latency);
109    }
110
111    void recordPrediction(bool wasGood, bool wasPredicted);
112
113    void startTransaction(int cpu);
114    void endTransaction(int cpu);
115    void profilePFWait(Cycles waitTime);
116
117    void controllerBusy(MachineID machID);
118    void bankBusy();
119
120    void missLatency(Cycles t, RubyRequestType type,
121                     const GenericMachineType respondingMach);
122
123    void missLatencyWcc(Cycles issuedTime, Cycles initialRequestTime,
124                        Cycles forwardRequestTime, Cycles firstResponseTime,
125                        Cycles completionTime);
126
127    void missLatencyDir(Cycles issuedTime, Cycles initialRequestTime,
128                        Cycles forwardRequestTime, Cycles firstResponseTime,
129                        Cycles completionTime);
130
131    void swPrefetchLatency(Cycles t, RubyRequestType type,
132                           const GenericMachineType respondingMach);
133
134    void print(std::ostream& out) const;
135
136    void rubyWatch(int proc);
137    bool watchAddress(Address addr);
138
139    // return Ruby's start time
140    Cycles getRubyStartTime() { return m_ruby_start; }
141
142    // added by SS
143    bool getHotLines() { return m_hot_lines; }
144    bool getAllInstructions() { return m_all_instructions; }
145
146  private:
147    void printRequestProfile(std::ostream &out) const;
148    void printDelayProfile(std::ostream &out) const;
149    void printOutstandingReqProfile(std::ostream &out) const;
150
151  private:
152    // Private copy constructor and assignment operator
153    Profiler(const Profiler& obj);
154    Profiler& operator=(const Profiler& obj);
155
156    AddressProfiler* m_address_profiler_ptr;
157    AddressProfiler* m_inst_profiler_ptr;
158
159    std::vector<int64> m_instructions_executed_at_start;
160    std::vector<int64> m_cycles_executed_at_start;
161
162    Cycles m_ruby_start;
163    time_t m_real_time_start_time;
164
165    int64_t m_busyBankCount;
166    Histogram m_multicast_retry_histogram;
167
168    Histogram m_filter_action_histogram;
169    Histogram m_tbeProfile;
170
171    Histogram m_read_sharing_histogram;
172    Histogram m_write_sharing_histogram;
173    Histogram m_all_sharing_histogram;
174    int64 m_cache_to_cache;
175    int64 m_memory_to_cache;
176
177    Histogram m_prefetchWaitHistogram;
178
179    std::vector<Histogram> m_missLatencyHistograms;
180    std::vector<Histogram> m_machLatencyHistograms;
181    std::vector< std::vector<Histogram> > m_missMachLatencyHistograms;
182    Histogram m_wCCIssueToInitialRequestHistogram;
183    Histogram m_wCCInitialRequestToForwardRequestHistogram;
184    Histogram m_wCCForwardRequestToFirstResponseHistogram;
185    Histogram m_wCCFirstResponseToCompleteHistogram;
186    int64 m_wCCIncompleteTimes;
187    Histogram m_dirIssueToInitialRequestHistogram;
188    Histogram m_dirInitialRequestToForwardRequestHistogram;
189    Histogram m_dirForwardRequestToFirstResponseHistogram;
190    Histogram m_dirFirstResponseToCompleteHistogram;
191    int64 m_dirIncompleteTimes;
192
193    Histogram m_allMissLatencyHistogram;
194
195    Histogram m_allSWPrefetchLatencyHistogram;
196    Histogram m_SWPrefetchL2MissLatencyHistogram;
197    std::vector<Histogram> m_SWPrefetchLatencyHistograms;
198    std::vector<Histogram> m_SWPrefetchMachLatencyHistograms;
199
200    Histogram m_average_latency_estimate;
201    m5::hash_set<Address> m_watch_address_set;
202
203    //added by SS
204    bool m_hot_lines;
205    bool m_all_instructions;
206
207    int m_num_of_sequencers;
208};
209
210inline std::ostream&
211operator<<(std::ostream& out, const Profiler& obj)
212{
213    obj.print(out);
214    out << std::flush;
215    return out;
216}
217
218#endif // __MEM_RUBY_PROFILER_PROFILER_HH__
219