summaryrefslogtreecommitdiff
path: root/src/cpu/o3/fetch_impl.hh
diff options
context:
space:
mode:
authorRekai Gonzalez-Alberquilla <rekai.gonzalezalberquilla@arm.com>2016-09-22 10:49:10 +0100
committerRekai Gonzalez-Alberquilla <rekai.gonzalezalberquilla@arm.com>2016-09-22 10:49:10 +0100
commitad296b068cf4a0b043988be518994ac6bd7582f0 (patch)
tree584633dffa6806a93d2c2c1a94b90096e3c50d2e /src/cpu/o3/fetch_impl.hh
parentd0ffd2f9b88d6abb29ed861deec12b40bdb7419f (diff)
downloadgem5-ad296b068cf4a0b043988be518994ac6bd7582f0.tar.xz
cpu: Fix the O3 CPU Drain
The drain did not wait until stages were ready again. Therefore, as a result of messages in the TimeBuffer being drain, the state after the drain was not consistent and asserts fired in some places when the draining happened after a stage got blocked, but before the notification arrived to the previous stages. Change-Id: Ib50b3b40b7f745b62c1eba2931dec76860824c71 Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src/cpu/o3/fetch_impl.hh')
-rw-r--r--src/cpu/o3/fetch_impl.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cpu/o3/fetch_impl.hh b/src/cpu/o3/fetch_impl.hh
index 3b29d87d4..7631b4c6a 100644
--- a/src/cpu/o3/fetch_impl.hh
+++ b/src/cpu/o3/fetch_impl.hh
@@ -424,8 +424,10 @@ template <class Impl>
void
DefaultFetch<Impl>::drainResume()
{
- for (ThreadID i = 0; i < numThreads; ++i)
+ for (ThreadID i = 0; i < numThreads; ++i) {
+ stalls[i].decode = false;
stalls[i].drain = false;
+ }
}
template <class Impl>