Deleted Added
sdiff udiff text old ( 10713:eddb533708cb ) new ( 10820:e2a283400c43 )
full compact
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) { }
80 void recvReqRetry();
81 bool isSnooping() const { return true; }
82 };
83
84 friend class WalkerPort;
85 WalkerPort port;
86
87 // State to track each walk of the page table
88 class WalkerState
89 {

--- 132 unchanged lines hidden ---