1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
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

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

65 WalkerPort(const std::string &_name, Walker * _walker) :
66 MasterPort(_name, _walker), walker(_walker)
67 {}
68
69 protected:
70 Walker *walker;
71
72 bool recvTimingResp(PacketPtr pkt);
73
74 /**
75 * Snooping a coherence request, do nothing.
76 */
77 void recvTimingSnoopReq(PacketPtr pkt) { }
78 Tick recvAtomicSnoop(PacketPtr pkt) { return 0; }
79 void recvFunctionalSnoop(PacketPtr pkt) { }
73 void recvReqRetry();
81 bool isSnooping() const { return true; }
74 };
75
76 friend class WalkerPort;
77 WalkerPort port;
78
79 // State to track each walk of the page table
80 class WalkerState
81 {

--- 132 unchanged lines hidden ---