lsq_impl.hh (11435:0f1b46dde3fa) lsq_impl.hh (12749:223c83ed9979)
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

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

365 DPRINTF(LSQ, "received invalidation with response for addr:%#x\n",
366 pkt->getAddr());
367
368 for (ThreadID tid = 0; tid < numThreads; tid++) {
369 thread[tid].checkSnoop(pkt);
370 }
371 }
372
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

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

365 DPRINTF(LSQ, "received invalidation with response for addr:%#x\n",
366 pkt->getAddr());
367
368 for (ThreadID tid = 0; tid < numThreads; tid++) {
369 thread[tid].checkSnoop(pkt);
370 }
371 }
372
373 delete pkt->req;
374 delete pkt;
375 return true;
376}
377
378template <class Impl>
379void
380LSQ<Impl>::recvTimingSnoopReq(PacketPtr pkt)
381{

--- 321 unchanged lines hidden ---
373 delete pkt;
374 return true;
375}
376
377template <class Impl>
378void
379LSQ<Impl>::recvTimingSnoopReq(PacketPtr pkt)
380{

--- 321 unchanged lines hidden ---