diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2007-07-14 11:48:30 -0700 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2007-07-14 11:48:30 -0700 |
commit | 7cd6c7ee05b45b578fe20077bce53dd95dd5e7b4 (patch) | |
tree | 43fb8d802b8146b41e6878bb65a879be733664d1 /src/dev/io_device.cc | |
parent | 92bb9242fb14db7ce3f78572ea428c8b3c06798a (diff) | |
download | gem5-7cd6c7ee05b45b578fe20077bce53dd95dd5e7b4.tar.xz |
Fix & tweak DPRINTFs for tracediff w/new cache code.
Note that we should *not* print pointer values in DPRINTFs as
these needlessly clutter tracediff output.
--HG--
extra : convert_revision : 25a448f1b3ac8d453a717a104ad6dc0112fb30bb
Diffstat (limited to 'src/dev/io_device.cc')
-rw-r--r-- | src/dev/io_device.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/dev/io_device.cc b/src/dev/io_device.cc index ecbb391ef..be5756ab7 100644 --- a/src/dev/io_device.cc +++ b/src/dev/io_device.cc @@ -103,8 +103,8 @@ DmaPort::recvTiming(PacketPtr pkt) if (pkt->result == Packet::Nacked) { - DPRINTF(DMA, "Received nacked Pkt %#x with State: %#x Addr: %#x\n", - pkt, pkt->senderState, pkt->getAddr()); + DPRINTF(DMA, "Received nacked %s addr %#x\n", + pkt->cmdString(), pkt->getAddr()); if (backoffTime < device->minBackoffDelay) backoffTime = device->minBackoffDelay; @@ -121,8 +121,8 @@ DmaPort::recvTiming(PacketPtr pkt) DmaReqState *state; backoffTime >>= 2; - DPRINTF(DMA, "Received response Pkt %#x with State: %#x Addr: %#x size: %#x\n", - pkt, pkt->senderState, pkt->getAddr(), pkt->req->getSize()); + DPRINTF(DMA, "Received response %s addr %#x size %#x\n", + pkt->cmdString(), pkt->getAddr(), pkt->req->getSize()); state = dynamic_cast<DmaReqState*>(pkt->senderState); pendingCount--; @@ -184,8 +184,8 @@ DmaPort::recvRetry() PacketPtr pkt = transmitList.front(); bool result = true; do { - DPRINTF(DMA, "Retry on Packet %#x with senderState: %#x\n", - pkt, pkt->senderState); + DPRINTF(DMA, "Retry on %s addr %#x\n", + pkt->cmdString(), pkt->getAddr()); result = sendTiming(pkt); if (result) { DPRINTF(DMA, "-- Done\n"); @@ -269,8 +269,8 @@ DmaPort::sendDma() return; } - DPRINTF(DMA, "Attempting to send Packet %#x with addr: %#x\n", - pkt, pkt->getAddr()); + DPRINTF(DMA, "Attempting to send %s addr %#x\n", + pkt->cmdString(), pkt->getAddr()); bool result; do { |