Deleted Added
sdiff udiff text old ( 12726:850e9965525b ) new ( 13017:a620da03ab10 )
full compact
1/*
2 * Copyright (c) 2012-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

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

93 void recvTimingSnoopReq(PacketPtr pkt) override {
94 panic("Unexpected timing snoop request %s", pkt->print());
95 }
96
97 void recvTimingSnoopResp(PacketPtr pkt) override {
98 panic("Unexpected timing snoop response %s", pkt->print());
99 }
100
101 Cycles handleAtomicReqMiss(PacketPtr pkt, CacheBlk *&blk,
102 PacketList &writebacks) override;
103
104 Tick recvAtomic(PacketPtr pkt) override;
105
106 Tick recvAtomicSnoop(PacketPtr pkt) override {
107 panic("Unexpected atomic snoop request %s", pkt->print());
108 }
109

--- 24 unchanged lines hidden ---