write_queue_entry.cc (12637:bfc3cb9c7e6c) write_queue_entry.cc (12724:4f6fac3191d2)
1/*
2 * Copyright (c) 2012-2013, 2015-2017 ARM Limited
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

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

134 pkt->checkFunctional(this, blkAddr, isSecure, blkSize, nullptr);
135 return false;
136 } else {
137 return targets.checkFunctional(pkt);
138 }
139}
140
141bool
1/*
2 * Copyright (c) 2012-2013, 2015-2017 ARM Limited
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

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

134 pkt->checkFunctional(this, blkAddr, isSecure, blkSize, nullptr);
135 return false;
136 } else {
137 return targets.checkFunctional(pkt);
138 }
139}
140
141bool
142WriteQueueEntry::sendPacket(Cache &cache)
142WriteQueueEntry::sendPacket(BaseCache &cache)
143{
144 return cache.sendWriteQueuePacket(this);
145}
146
147void
148WriteQueueEntry::print(std::ostream &os, int verbosity,
149 const std::string &prefix) const
150{

--- 17 unchanged lines hidden ---
143{
144 return cache.sendWriteQueuePacket(this);
145}
146
147void
148WriteQueueEntry::print(std::ostream &os, int verbosity,
149 const std::string &prefix) const
150{

--- 17 unchanged lines hidden ---