diff --git a/src/cpu/o3/lsq_unit.hh b/src/cpu/o3/lsq_unit.hh --- a/src/cpu/o3/lsq_unit.hh +++ b/src/cpu/o3/lsq_unit.hh @@ -192,9 +192,6 @@ /** Returns the number of free entries (min of free LQ and SQ entries). */ unsigned numFreeEntries(); - /** Returns the number of loads ready to execute. */ - int numLoadsReady(); - /** Returns the number of loads in the LQ. */ int numLoads() { return loads; } diff --git a/src/cpu/o3/lsq.hh b/src/cpu/o3/lsq.hh --- a/src/cpu/o3/lsq.hh +++ b/src/cpu/o3/lsq.hh @@ -198,12 +198,6 @@ int numStores(ThreadID tid) { return thread[tid].numStores(); } - /** Returns the total number of loads that are ready. */ - int numLoadsReady(); - /** Returns the number of loads that are ready for a single thread. */ - int numLoadsReady(ThreadID tid) - { return thread[tid].numLoadsReady(); } - /** Returns the number of free entries. */ unsigned numFreeEntries(); /** Returns the number of free entries for a specific thread. */ diff --git a/src/cpu/o3/lsq_impl.hh b/src/cpu/o3/lsq_impl.hh --- a/src/cpu/o3/lsq_impl.hh +++ b/src/cpu/o3/lsq_impl.hh @@ -400,24 +400,6 @@ } template -int -LSQ::numLoadsReady() -{ - unsigned total = 0; - - list::iterator threads = activeThreads->begin(); - list::iterator end = activeThreads->end(); - - while (threads != end) { - ThreadID tid = *threads++; - - total += thread[tid].numLoadsReady(); - } - - return total; -} - -template unsigned LSQ::numFreeEntries() { diff --git a/src/cpu/o3/lsq_unit_impl.hh b/src/cpu/o3/lsq_unit_impl.hh --- a/src/cpu/o3/lsq_unit_impl.hh +++ b/src/cpu/o3/lsq_unit_impl.hh @@ -420,24 +420,6 @@ } template -int -LSQUnit::numLoadsReady() -{ - int load_idx = loadHead; - int retval = 0; - - while (load_idx != loadTail) { - assert(loadQueue[load_idx]); - - if (loadQueue[load_idx]->readyToIssue()) { - ++retval; - } - } - - return retval; -} - -template void LSQUnit::checkSnoop(PacketPtr pkt) {