Fix for regression failure.
authorKevin Lim <ktlim@umich.edu>
Mon, 13 Nov 2006 04:30:09 +0000 (23:30 -0500)
committerKevin Lim <ktlim@umich.edu>
Mon, 13 Nov 2006 04:30:09 +0000 (23:30 -0500)
src/cpu/o3/fetch_impl.hh:
    Fetch needs to make sure it isn't waiting on an Icache access.

--HG--
extra : convert_revision : b53eb58b9e5a00bdb394134586d1f84f84d1c6e1

src/cpu/o3/fetch_impl.hh

index a5478d4f89a118921fbaf40e32613fb3bb881c09..25faa407e46c75baeaea4629196f741b61af06c9 100644 (file)
@@ -985,7 +985,9 @@ DefaultFetch<Impl>::checkSignalsAndUpdate(unsigned tid)
         }
     }
 
-    if (checkStall(tid) && fetchStatus[tid] != IcacheWaitResponse) {
+    if (checkStall(tid) &&
+        fetchStatus[tid] != IcacheWaitResponse &&
+        fetchStatus[tid] != IcacheWaitRetry) {
         DPRINTF(Fetch, "[tid:%i]: Setting to blocked\n",tid);
 
         fetchStatus[tid] = Blocked;