lsq_impl.hh (10333:6be8945d226b) lsq_impl.hh (10573:3b405d11d6dc)
1/*
2 * Copyright (c) 2011-2012, 2014 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

342template <class Impl>
343bool
344LSQ<Impl>::recvTimingResp(PacketPtr pkt)
345{
346 if (pkt->isError())
347 DPRINTF(LSQ, "Got error packet back for address: %#X\n",
348 pkt->getAddr());
349 thread[pkt->req->threadId()].completeDataAccess(pkt);
1/*
2 * Copyright (c) 2011-2012, 2014 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

342template <class Impl>
343bool
344LSQ<Impl>::recvTimingResp(PacketPtr pkt)
345{
346 if (pkt->isError())
347 DPRINTF(LSQ, "Got error packet back for address: %#X\n",
348 pkt->getAddr());
349 thread[pkt->req->threadId()].completeDataAccess(pkt);
350 delete pkt->req;
351 delete pkt;
350 return true;
351}
352
353template <class Impl>
354void
355LSQ<Impl>::recvTimingSnoopReq(PacketPtr pkt)
356{
357 DPRINTF(LSQ, "received pkt for addr:%#x %s\n", pkt->getAddr(),

--- 320 unchanged lines hidden ---
352 return true;
353}
354
355template <class Impl>
356void
357LSQ<Impl>::recvTimingSnoopReq(PacketPtr pkt)
358{
359 DPRINTF(LSQ, "received pkt for addr:%#x %s\n", pkt->getAddr(),

--- 320 unchanged lines hidden ---