Deleted Added
sdiff udiff text old ( 6374:11423b4639c0 ) new ( 6433:0f0f0fbef977 )
full compact
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;

--- 58 unchanged lines hidden (view full) ---

67#include "mem/protocol/PrefetchBit.hh"
68#include "mem/ruby/common/Address.hh"
69#include "mem/ruby/common/Set.hh"
70#include "mem/protocol/CacheRequestType.hh"
71#include "mem/protocol/GenericRequestType.hh"
72#include "mem/ruby/system/MemoryControl.hh"
73
74class CacheMsg;
75class CacheProfiler;
76class AddressProfiler;
77
78template <class KEY_TYPE, class VALUE_TYPE> class Map;
79
80struct memory_control_profiler {
81 long long int m_memReq;
82 long long int m_memBankBusy;
83 long long int m_memBusBusy;

--- 51 unchanged lines hidden (view full) ---

135
136 void profileFilterAction(int action);
137
138 void profileConflictingRequests(const Address& addr);
139 void profileOutstandingRequest(int outstanding) { m_outstanding_requests.add(outstanding); }
140 void profileOutstandingPersistentRequest(int outstanding) { m_outstanding_persistent_requests.add(outstanding); }
141 void profileAverageLatencyEstimate(int latency) { m_average_latency_estimate.add(latency); }
142
143 void countBAUnicast() { m_num_BA_unicasts++; }
144 void countBABroadcast() { m_num_BA_broadcasts++; }
145
146 void recordPrediction(bool wasGood, bool wasPredicted);
147
148 void startTransaction(int cpu);
149 void endTransaction(int cpu);
150 void profilePFWait(Time waitTime);
151
152 void controllerBusy(MachineID machID);
153 void bankBusy();
154 void missLatency(Time t, RubyRequestType type);
155 void swPrefetchLatency(Time t, CacheRequestType type, GenericMachineType respondingMach);
156 void stopTableUsageSample(int num) { m_stopTableProfile.add(num); }
157 void L1tbeUsageSample(int num) { m_L1tbeProfile.add(num); }
158 void L2tbeUsageSample(int num) { m_L2tbeProfile.add(num); }
159 void sequencerRequests(int num) { m_sequencer_requests.add(num); }
160 void storeBuffer(int size, int blocks) { m_store_buffer_size.add(size); m_store_buffer_blocks.add(blocks);}
161
162 void profileGetXMaskPrediction(const Set& pred_set);
163 void profileGetSMaskPrediction(const Set& pred_set);
164 void profileTrainingMask(const Set& pred_set);
165 void profileTransition(const string& component, NodeID version, Address addr,
166 const string& state, const string& event,
167 const string& next_state, const string& note);
168 void profileMsgDelay(int virtualNetwork, int delayCycles);
169
170 void print(ostream& out) const;
171
172 int64 getTotalInstructionsExecuted() const;
173 int64 getTotalTransactionsExecuted() const;
174
175 void rubyWatch(int proc);
176 bool watchAddress(Address addr);
177
178 // return Ruby's start time
179 Time getRubyStartTime(){
180 return m_ruby_start;

--- 23 unchanged lines hidden (view full) ---

204 //added by SS
205 vector<string> m_memory_control_names;
206
207 // Private copy constructor and assignment operator
208 Profiler(const Profiler& obj);
209 Profiler& operator=(const Profiler& obj);
210
211 // Data Members (m_ prefix)
212 CacheProfiler* m_L1D_cache_profiler_ptr;
213 CacheProfiler* m_L1I_cache_profiler_ptr;
214 CacheProfiler* m_L2_cache_profiler_ptr;
215 AddressProfiler* m_address_profiler_ptr;
216 AddressProfiler* m_inst_profiler_ptr;
217
218 Vector<int64> m_instructions_executed_at_start;
219 Vector<int64> m_cycles_executed_at_start;
220
221 ostream* m_periodic_output_file_ptr;
222 integer_t m_stats_period;
223
224 Time m_ruby_start;
225 time_t m_real_time_start_time;
226
227 int m_num_BA_unicasts;
228 int m_num_BA_broadcasts;
229
230 Vector<integer_t> m_perProcTotalMisses;
231 Vector<integer_t> m_perProcUserMisses;
232 Vector<integer_t> m_perProcSupervisorMisses;
233 Vector<integer_t> m_perProcStartTransaction;
234 Vector<integer_t> m_perProcEndTransaction;
235 Vector < Vector < integer_t > > m_busyControllerCount;
236 integer_t m_busyBankCount;
237 Histogram m_multicast_retry_histogram;
238
239 Histogram m_L1tbeProfile;
240 Histogram m_L2tbeProfile;
241 Histogram m_stopTableProfile;
242
243 Histogram m_filter_action_histogram;
244 Histogram m_tbeProfile;
245
246 Histogram m_sequencer_requests;
247 Histogram m_store_buffer_size;
248 Histogram m_store_buffer_blocks;
249 Histogram m_read_sharing_histogram;
250 Histogram m_write_sharing_histogram;
251 Histogram m_all_sharing_histogram;
252 int64 m_cache_to_cache;
253 int64 m_memory_to_cache;
254
255 Histogram m_prefetchWaitHistogram;
256
257 Vector<Histogram> m_missLatencyHistograms;
258 Vector<Histogram> m_machLatencyHistograms;
259 Histogram m_L2MissLatencyHistogram;
260 Histogram m_allMissLatencyHistogram;
261
262 Histogram m_allSWPrefetchLatencyHistogram;
263 Histogram m_SWPrefetchL2MissLatencyHistogram;
264 Vector<Histogram> m_SWPrefetchLatencyHistograms;
265 Vector<Histogram> m_SWPrefetchMachLatencyHistograms;
266
267 Histogram m_delayedCyclesHistogram;
268 Histogram m_delayedCyclesNonPFHistogram;
269 Vector<Histogram> m_delayedCyclesVCHistograms;
270
271 int m_predictions;
272 int m_predictionOpportunities;
273 int m_goodPredictions;
274
275 Histogram m_gets_mask_prediction;
276 Histogram m_getx_mask_prediction;
277 Histogram m_explicit_training_mask;
278
279 // For profiling possibly conflicting requests
280 Map<Address, Time>* m_conflicting_map_ptr;
281 Histogram m_conflicting_histogram;
282
283 Histogram m_outstanding_requests;
284 Histogram m_outstanding_persistent_requests;
285
286 Histogram m_average_latency_estimate;
287
288 Map<Address, int>* m_watch_address_list_ptr;
289 // counts all initiated cache request including PUTs
290 int m_requests;

--- 30 unchanged lines hidden ---