3c3,4
< * All rights reserved
---
> * Copyright (c) 2016 Google Inc.
> * All rights reserved.
38a40
> * Rahul Thakur
359a362,367
> /** Address mask for sources of read accesses to be captured */
> const Addr readAddrMask;
>
> /** Address mask for sources of write accesses to be captured */
> const Addr writeAddrMask;
>
388c396,398
< disableAddrDists(params->disable_addr_dists)
---
> disableAddrDists(params->disable_addr_dists),
> readAddrMask(params->read_addr_mask),
> writeAddrMask(params->write_addr_mask)
390a401,404
> void updateReqStats(const ProbePoints::PacketInfo& pkt, bool is_atomic,
> bool expects_response);
> void updateRespStats(const ProbePoints::PacketInfo& pkt, Tick latency,
> bool is_atomic);
409,414d422
< /** Address mask for sources of read accesses to be captured */
< const Addr readAddrMask;
<
< /** Address mask for sources of write accesses to be captured */
< const Addr writeAddrMask;
<