cache.cc (12725:3dcb96899659) cache.cc (12729:9870d6f73e04)
1/*
2 * Copyright (c) 2010-2018 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

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

882
883 PacketPtr pkt = new Packet(req, MemCmd::CleanEvict);
884 pkt->allocate();
885 DPRINTF(Cache, "Create CleanEvict %s\n", pkt->print());
886
887 return pkt;
888}
889
1/*
2 * Copyright (c) 2010-2018 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

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

882
883 PacketPtr pkt = new Packet(req, MemCmd::CleanEvict);
884 pkt->allocate();
885 DPRINTF(Cache, "Create CleanEvict %s\n", pkt->print());
886
887 return pkt;
888}
889
890
891/////////////////////////////////////////////////////
892//
893// Snoop path: requests coming in from the memory side
894//
895/////////////////////////////////////////////////////
896
897void
898Cache::doTimingSupplyResponse(PacketPtr req_pkt, const uint8_t *blk_data,

--- 518 unchanged lines hidden ---
890/////////////////////////////////////////////////////
891//
892// Snoop path: requests coming in from the memory side
893//
894/////////////////////////////////////////////////////
895
896void
897Cache::doTimingSupplyResponse(PacketPtr req_pkt, const uint8_t *blk_data,

--- 518 unchanged lines hidden ---