port.cc (11793:ef606668d247) port.cc (12342:53a3828f2468)
1/*
1/*
2 * Copyright (c) 2012,2015 ARM Limited
2 * Copyright (c) 2012,2015,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
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated

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

179bool
180MasterPort::sendTimingReq(PacketPtr pkt)
181{
182 assert(pkt->isRequest());
183 return _slavePort->recvTimingReq(pkt);
184}
185
186bool
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
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated

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

179bool
180MasterPort::sendTimingReq(PacketPtr pkt)
181{
182 assert(pkt->isRequest());
183 return _slavePort->recvTimingReq(pkt);
184}
185
186bool
187MasterPort::tryTiming(PacketPtr pkt) const
188{
189 assert(pkt->isRequest());
190 return _slavePort->tryTiming(pkt);
191}
192
193bool
187MasterPort::sendTimingSnoopResp(PacketPtr pkt)
188{
189 assert(pkt->isResponse());
190 return _slavePort->recvTimingSnoopResp(pkt);
191}
192
193void
194MasterPort::sendRetryResp()

--- 80 unchanged lines hidden ---
194MasterPort::sendTimingSnoopResp(PacketPtr pkt)
195{
196 assert(pkt->isResponse());
197 return _slavePort->recvTimingSnoopResp(pkt);
198}
199
200void
201MasterPort::sendRetryResp()

--- 80 unchanged lines hidden ---