projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3052632
)
Fix for regression failure.
author
Kevin Lim
<ktlim@umich.edu>
Mon, 13 Nov 2006 04:30:09 +0000
(23:30 -0500)
committer
Kevin 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
patch
|
blob
|
history
diff --git
a/src/cpu/o3/fetch_impl.hh
b/src/cpu/o3/fetch_impl.hh
index a5478d4f89a118921fbaf40e32613fb3bb881c09..25faa407e46c75baeaea4629196f741b61af06c9 100644
(file)
--- a/
src/cpu/o3/fetch_impl.hh
+++ b/
src/cpu/o3/fetch_impl.hh
@@
-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;