external_slave.cc (10559:62f5f7363197) external_slave.cc (10563:755b18321206)
1/*
2 * Copyright (c) 2012-2014 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

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

103Tick
104StubSlavePort::recvAtomic(PacketPtr packet)
105{
106 if (DTRACE(ExternalPort)) {
107 unsigned int M5_VAR_USED size = packet->getSize();
108
109 DPRINTF(ExternalPort, "StubSlavePort: recvAtomic a: 0x%x size: %d"
110 " data: ...\n", packet->getAddr(), size);
1/*
2 * Copyright (c) 2012-2014 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

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

103Tick
104StubSlavePort::recvAtomic(PacketPtr packet)
105{
106 if (DTRACE(ExternalPort)) {
107 unsigned int M5_VAR_USED size = packet->getSize();
108
109 DPRINTF(ExternalPort, "StubSlavePort: recvAtomic a: 0x%x size: %d"
110 " data: ...\n", packet->getAddr(), size);
111 DDUMP(ExternalPort, packet->getPtr(), size);
111 DDUMP(ExternalPort, packet->getConstPtr<uint8_t>(), size);
112 }
113
114 return 0;
115}
116
117void
118StubSlavePort::recvFunctional(PacketPtr packet)
119{

--- 133 unchanged lines hidden ---
112 }
113
114 return 0;
115}
116
117void
118StubSlavePort::recvFunctional(PacketPtr packet)
119{

--- 133 unchanged lines hidden ---