From: Gabor Dozsa Date: Thu, 15 Nov 2018 17:21:57 +0000 (+0000) Subject: cpu-o3: Fix too strict assert condition in writeback() X-Git-Tag: v19.0.0.0~708 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5a9fb5a2bffe37bbfc525137946e6bc0809f6578;p=gem5.git cpu-o3: Fix too strict assert condition in writeback() The assert() in the LSQ writeback() only allowed ReExec faults. However, a SplitRequest which completed the translation in PartialFault state (i.e. any but the very first cacheline translation failed) may end up here. The assert() condition is extended accordingly. The patch also removes the superfluous/unused Complete/Squashed states from the LSQ request. (The completion of the request is recorded in the flags still.) Change-Id: Ie575f4d3b4d5295585828ad8c7d3f4c7c1fe15d0 Signed-off-by: Gabor Dozsa Reviewed-by: Giacomo Gabrielli Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/19174 Tested-by: kokoro Reviewed-by: Jason Lowe-Power Reviewed-by: Anthony Gutierrez Maintainer: Jason Lowe-Power --- diff --git a/src/cpu/o3/lsq.hh b/src/cpu/o3/lsq.hh index 6f7820113..4701a8c9a 100644 --- a/src/cpu/o3/lsq.hh +++ b/src/cpu/o3/lsq.hh @@ -223,8 +223,6 @@ class LSQ NotIssued, Translation, Request, - Complete, - Squashed, Fault, PartialFault, }; diff --git a/src/cpu/o3/lsq_impl.hh b/src/cpu/o3/lsq_impl.hh index 27a563071..a028424b0 100644 --- a/src/cpu/o3/lsq_impl.hh +++ b/src/cpu/o3/lsq_impl.hh @@ -985,7 +985,6 @@ LSQ::SingleDataRequest::recvTimingResp(PacketPtr pkt) { assert(_numOutstandingPackets == 1); auto state = dynamic_cast(pkt->senderState); - setState(State::Complete); flags.set(Flag::Complete); state->outstanding--; assert(pkt == _packets.front()); @@ -1005,7 +1004,6 @@ LSQ::SplitDataRequest::recvTimingResp(PacketPtr pkt) numReceivedPackets++; state->outstanding--; if (numReceivedPackets == _packets.size()) { - setState(State::Complete); flags.set(Flag::Complete); /* Assemble packets. */ PacketPtr resp = isLoad() diff --git a/src/cpu/o3/lsq_unit_impl.hh b/src/cpu/o3/lsq_unit_impl.hh index b71ed7f78..c2483d567 100644 --- a/src/cpu/o3/lsq_unit_impl.hh +++ b/src/cpu/o3/lsq_unit_impl.hh @@ -968,8 +968,10 @@ LSQUnit::writeback(const DynInstPtr &inst, PacketPtr pkt) // the access as this discards the current fault. // If we have an outstanding fault, the fault should only be of - // type ReExec. - assert(dynamic_cast(inst->fault.get()) != nullptr); + // type ReExec or - in case of a SplitRequest - a partial + // translation fault + assert(dynamic_cast(inst->fault.get()) != nullptr || + inst->savedReq->isPartialFault()); DPRINTF(LSQUnit, "Not completing instruction [sn:%lli] access " "due to pending fault.\n", inst->seqNum);