76c76
< bool only_data;
---
> bool onlyData;
77a78,79
> std::string _name;
>
92a95
>
96a100,101
> const std::string name() const { return _name; }
>
99c104,109
< void handleMiss(PacketPtr &pkt, Tick time);
---
> /**
> * Notify prefetcher of cache access (may be any access or just
> * misses, depending on cache parameters.)
> * @retval Time of next prefetch availability, or 0 if none.
> */
> Tick notify(PacketPtr &pkt, Tick time);
111a122,126
> Tick nextPrefetchReadyTime()
> {
> return pf.empty() ? MaxTick : pf.front()->time;
> }
>
116a132,136
>
> /**
> * Utility function: are addresses a and b on the same VM page?
> */
> bool samePage(Addr a, Addr b);