traffic_gen.cc (12680:91f4d6668b4f) traffic_gen.cc (12749:223c83ed9979)
1/*
2 * Copyright (c) 2012-2013, 2016-2017 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 199 unchanged lines hidden (view full) ---

208 DPRINTF(TrafficGen, "Suppressed packet %s 0x%x\n",
209 pkt->cmdString(), pkt->getAddr());
210
211 ++numSuppressed;
212 if (numSuppressed % 10000)
213 warn("%s suppressed %d packets with non-memory addresses\n",
214 name(), numSuppressed);
215
1/*
2 * Copyright (c) 2012-2013, 2016-2017 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 199 unchanged lines hidden (view full) ---

208 DPRINTF(TrafficGen, "Suppressed packet %s 0x%x\n",
209 pkt->cmdString(), pkt->getAddr());
210
211 ++numSuppressed;
212 if (numSuppressed % 10000)
213 warn("%s suppressed %d packets with non-memory addresses\n",
214 name(), numSuppressed);
215
216 delete pkt->req;
217 delete pkt;
218 pkt = nullptr;
219 }
220 }
221
222 // if we are waiting for a retry, do not schedule any further
223 // events, in the case of a transition or a successful send, go
224 // ahead and determine when the next update should take place

--- 345 unchanged lines hidden (view full) ---

570 retryTicks
571 .name(name() + ".retryTicks")
572 .desc("Time spent waiting due to back-pressure (ticks)");
573}
574
575bool
576TrafficGen::TrafficGenPort::recvTimingResp(PacketPtr pkt)
577{
216 delete pkt;
217 pkt = nullptr;
218 }
219 }
220
221 // if we are waiting for a retry, do not schedule any further
222 // events, in the case of a transition or a successful send, go
223 // ahead and determine when the next update should take place

--- 345 unchanged lines hidden (view full) ---

569 retryTicks
570 .name(name() + ".retryTicks")
571 .desc("Time spent waiting due to back-pressure (ticks)");
572}
573
574bool
575TrafficGen::TrafficGenPort::recvTimingResp(PacketPtr pkt)
576{
578 delete pkt->req;
579 delete pkt;
580
581 return true;
582}
577 delete pkt;
578
579 return true;
580}