From eb899407c5f3bf5995f9f0bb9621e74d5ed98f29 Mon Sep 17 00:00:00 2001 From: Nathanael Premillieu Date: Thu, 6 Dec 2012 04:36:51 -0600 Subject: o3 cpu: remove some unused buggy functions in the lsq Committed by: Nilay Vaish --- src/cpu/o3/lsq_unit_impl.hh | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'src/cpu/o3/lsq_unit_impl.hh') diff --git a/src/cpu/o3/lsq_unit_impl.hh b/src/cpu/o3/lsq_unit_impl.hh index 7c98b99fb..8e12e990b 100644 --- a/src/cpu/o3/lsq_unit_impl.hh +++ b/src/cpu/o3/lsq_unit_impl.hh @@ -419,24 +419,6 @@ LSQUnit::numFreeEntries() } } -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) -- cgit v1.2.3