diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2013-04-22 13:20:33 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2013-04-22 13:20:33 -0400 |
commit | 9929e884b6fe6567c3bd2fe2dd3bba85d4e9bbd1 (patch) | |
tree | 3acd72561781f7854f7eee2c47fcbfd6e3828f6a | |
parent | d69f904a18593f75efcb0555b2bd092574181160 (diff) | |
download | gem5-9929e884b6fe6567c3bd2fe2dd3bba85d4e9bbd1.tar.xz |
mem: Replace check with panic where inhibited should not happen
This patch changes the SimpleTimingPort and RubyPort to panic on
inhibited requests as this should never happen in either of the
cases. The SimpleTimingPort is only used for the I/O devices PIO port
and the DMA devices config port and should thus never see an inhibited
request. Similarly, the SimpleTimingPort is also used for the
MessagePort in x86, and there should also not be any cases where the
port sees an inhibited request.
-rw-r--r-- | src/mem/ruby/system/RubyPort.cc | 14 | ||||
-rw-r--r-- | src/mem/tport.cc | 10 |
2 files changed, 6 insertions, 18 deletions
diff --git a/src/mem/ruby/system/RubyPort.cc b/src/mem/ruby/system/RubyPort.cc index 1ebc1b0f6..72dc1447a 100644 --- a/src/mem/ruby/system/RubyPort.cc +++ b/src/mem/ruby/system/RubyPort.cc @@ -168,18 +168,8 @@ RubyPort::M5Port::recvTimingReq(PacketPtr pkt) //dsm: based on SimpleTimingPort::recvTimingReq(pkt); - // The received packets should only be M5 requests, which should never - // get nacked. There used to be code to hanldle nacks here, but - // I'm pretty sure it didn't work correctly with the drain code, - // so that would need to be fixed if we ever added it back. - - if (pkt->memInhibitAsserted()) { - warn("memInhibitAsserted???"); - // snooper will supply based on copy of packet - // still target's responsibility to delete packet - delete pkt; - return true; - } + if (pkt->memInhibitAsserted()) + panic("RubyPort should never see an inhibited request\n"); // Save the port in the sender state object to be used later to // route the response diff --git a/src/mem/tport.cc b/src/mem/tport.cc index 7a0dd7cd9..4408b59ba 100644 --- a/src/mem/tport.cc +++ b/src/mem/tport.cc @@ -68,12 +68,10 @@ SimpleTimingPort::recvTimingReq(PacketPtr pkt) delete pendingDelete[x]; pendingDelete.clear(); - if (pkt->memInhibitAsserted()) { - // snooper will supply based on copy of packet - // still target's responsibility to delete packet - delete pkt; - return true; - } + // the SimpleTimingPort should not be used anywhere where there is + // a need to deal with inhibited packets + if (pkt->memInhibitAsserted()) + panic("SimpleTimingPort should never see an inhibited request\n"); bool needsResponse = pkt->needsResponse(); Tick latency = recvAtomic(pkt); |