103,104c103
< const std::string &_label,
< std::vector<Range<Addr> > filter_ranges);
---
> const std::string &_label);
132,134d130
< /** filter ranges */
< std::vector<Range<Addr> > filterRanges;
<
197,198c193,194
< /** Increasing order number assigned to each incoming request. */
< uint64_t order;
---
> /** Do we forward snoops from mem side port through to cpu side port? */
> bool forwardSnoops;
205a202,204
> /** Increasing order number assigned to each incoming request. */
> uint64_t order;
>
217a217,221
> /**
> * The address range to which the cache responds on the CPU side.
> * Normally this is all possible memory addresses. */
> Range<Addr> addrRange;
>
379a384,385
> const Range<Addr> &getAddrRange() const { return addrRange; }
>