summaryrefslogtreecommitdiff
path: root/src/mem/ruby/profiler/Profiler.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/ruby/profiler/Profiler.hh')
-rw-r--r--src/mem/ruby/profiler/Profiler.hh16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/mem/ruby/profiler/Profiler.hh b/src/mem/ruby/profiler/Profiler.hh
index aabe7bfaa..02c37bd60 100644
--- a/src/mem/ruby/profiler/Profiler.hh
+++ b/src/mem/ruby/profiler/Profiler.hh
@@ -104,18 +104,6 @@ class Profiler : public SimObject
void profileConflictingRequests(const Address& addr);
void
- profileOutstandingRequest(int outstanding)
- {
- m_outstanding_requests.add(outstanding);
- }
-
- void
- profileOutstandingPersistentRequest(int outstanding)
- {
- m_outstanding_persistent_requests.add(outstanding);
- }
-
- void
profileAverageLatencyEstimate(int latency)
{
m_average_latency_estimate.add(latency);
@@ -213,11 +201,7 @@ class Profiler : public SimObject
std::vector<Histogram> m_SWPrefetchLatencyHistograms;
std::vector<Histogram> m_SWPrefetchMachLatencyHistograms;
- Histogram m_outstanding_requests;
- Histogram m_outstanding_persistent_requests;
-
Histogram m_average_latency_estimate;
-
m5::hash_set<Address> m_watch_address_set;
//added by SS