summaryrefslogtreecommitdiff
path: root/src/mem/ruby/profiler/CacheProfiler.cc
diff options
context:
space:
mode:
authorBrad Beckmann <Brad.Beckmann@amd.com>2010-03-21 21:22:20 -0700
committerBrad Beckmann <Brad.Beckmann@amd.com>2010-03-21 21:22:20 -0700
commit391b4e64e682ffd0580b0388114620f9de43a231 (patch)
treed5bb61c6b0d00bcd2a08b6d411ba10934b7cbc7f /src/mem/ruby/profiler/CacheProfiler.cc
parent86207a69e446b51ede7c6f713f1bbec55a2fd691 (diff)
downloadgem5-391b4e64e682ffd0580b0388114620f9de43a231.tar.xz
ruby: Removed deprecated stats from the main profiler
Diffstat (limited to 'src/mem/ruby/profiler/CacheProfiler.cc')
-rw-r--r--src/mem/ruby/profiler/CacheProfiler.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mem/ruby/profiler/CacheProfiler.cc b/src/mem/ruby/profiler/CacheProfiler.cc
index 474506734..50581fcf9 100644
--- a/src/mem/ruby/profiler/CacheProfiler.cc
+++ b/src/mem/ruby/profiler/CacheProfiler.cc
@@ -67,10 +67,6 @@ void CacheProfiler::printStats(ostream& out) const
out << description << "_total_prefetches: " << m_prefetches << endl;
out << description << "_total_sw_prefetches: " << m_sw_prefetches << endl;
out << description << "_total_hw_prefetches: " << m_hw_prefetches << endl;
-
- double trans_executed = double(g_system_ptr->getProfiler()->getTotalTransactionsExecuted());
-
- out << description << "_misses_per_transaction: " << double(m_misses) / trans_executed << endl;
out << endl;
int requests = 0;