summaryrefslogtreecommitdiff
path: root/src/cpu/o3/lsq_impl.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/o3/lsq_impl.hh')
-rw-r--r--src/cpu/o3/lsq_impl.hh23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/cpu/o3/lsq_impl.hh b/src/cpu/o3/lsq_impl.hh
index 24066cd4b..b6742070e 100644
--- a/src/cpu/o3/lsq_impl.hh
+++ b/src/cpu/o3/lsq_impl.hh
@@ -294,29 +294,6 @@ LSQ<Impl>::writebackStores()
// [mengjia]
template<class Impl>
-int
-LSQ<Impl>::exposeLoads()
-{
- list<ThreadID>::iterator threads = activeThreads->begin();
- list<ThreadID>::iterator end = activeThreads->end();
-
- int exposedLoads = 0;
- while (threads != end) {
- ThreadID tid = *threads++;
-
- if (numLoadsToVLD(tid) > 0) {
- DPRINTF(Writeback,"[tid:%i] Validate loads. %i loads "
- "available for Validate.\n", tid, numLoadsToVLD(tid));
- }
-
- exposedLoads += thread[tid].exposeLoads();
- }
- return exposedLoads;
-}
-
-
-// [mengjia]
-template<class Impl>
void
LSQ<Impl>::updateVisibleState()
{