diff options
Diffstat (limited to 'src/mem/ruby/structures/Prefetcher.cc')
-rw-r--r-- | src/mem/ruby/structures/Prefetcher.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/ruby/structures/Prefetcher.cc b/src/mem/ruby/structures/Prefetcher.cc index 5135c2bb2..47caf1cc8 100644 --- a/src/mem/ruby/structures/Prefetcher.cc +++ b/src/mem/ruby/structures/Prefetcher.cc @@ -248,7 +248,7 @@ Prefetcher::issueNextPrefetch(const Address &address, PrefetchEntry *stream) // launch next prefetch stream->m_address = line_addr; - stream->m_use_time = g_system_ptr->getTime(); + stream->m_use_time = m_controller->curCycle(); DPRINTF(RubyPrefetcher, "Requesting prefetch for %s\n", line_addr); m_controller->enqueuePrefetch(line_addr, stream->m_type); } @@ -290,7 +290,7 @@ Prefetcher::initializeStream(const Address& address, int stride, PrefetchEntry *mystream = &(m_array[index]); mystream->m_address = line_address(address); mystream->m_stride = stride; - mystream->m_use_time = g_system_ptr->getTime(); + mystream->m_use_time = m_controller->curCycle(); mystream->m_is_valid = true; mystream->m_type = type; |