summaryrefslogtreecommitdiff
path: root/src/mem/ruby/system/Sequencer.cc
diff options
context:
space:
mode:
authorNilay Vaish <nilay@cs.wisc.edu>2012-02-10 11:29:02 -0600
committerNilay Vaish <nilay@cs.wisc.edu>2012-02-10 11:29:02 -0600
commitaa513a4a99cb8dfc6b605797acbbb64a5601ab6e (patch)
treeb0a7d8175aaffd5e3a58d5d88db8ad8bedd676c7 /src/mem/ruby/system/Sequencer.cc
parent69d8600bf80ce065feccbac6d55e45db62f1654f (diff)
downloadgem5-aa513a4a99cb8dfc6b605797acbbb64a5601ab6e.tar.xz
Ruby: Remove isTagPresent() calls from Sequencer.cc
This patch removes the calls to isTagPresent() from Sequencer.cc. These calls are made just for setting the cache block to have been most recently used. The calls have been folded in to the function setMRU().
Diffstat (limited to 'src/mem/ruby/system/Sequencer.cc')
-rw-r--r--src/mem/ruby/system/Sequencer.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mem/ruby/system/Sequencer.cc b/src/mem/ruby/system/Sequencer.cc
index 1cd54d45c..5f64a1ba4 100644
--- a/src/mem/ruby/system/Sequencer.cc
+++ b/src/mem/ruby/system/Sequencer.cc
@@ -482,11 +482,9 @@ Sequencer::hitCallback(SequencerRequest* srequest,
// Set this cache entry to the most recently used
if (type == RubyRequestType_IFETCH) {
- if (m_instCache_ptr->isTagPresent(request_line_address))
- m_instCache_ptr->setMRU(request_line_address);
+ m_instCache_ptr->setMRU(request_line_address);
} else {
- if (m_dataCache_ptr->isTagPresent(request_line_address))
- m_dataCache_ptr->setMRU(request_line_address);
+ m_dataCache_ptr->setMRU(request_line_address);
}
assert(g_eventQueue_ptr->getTime() >= issued_time);