cache.hh (12346:9b1144d046ca) cache.hh (12351:17eaa27bef22)
1/*
2 * Copyright (c) 2012-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

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

453 PacketPtr writebackBlk(CacheBlk *blk);
454
455 /**
456 * Create a writeclean request for the given block.
457 * @param blk The block to write clean
458 * @param dest The destination of this clean operation
459 * @return The write clean packet for the block.
460 */
1/*
2 * Copyright (c) 2012-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

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

453 PacketPtr writebackBlk(CacheBlk *blk);
454
455 /**
456 * Create a writeclean request for the given block.
457 * @param blk The block to write clean
458 * @param dest The destination of this clean operation
459 * @return The write clean packet for the block.
460 */
461 PacketPtr writecleanBlk(CacheBlk *blk, Request::Flags dest = 0);
461 PacketPtr writecleanBlk(CacheBlk *blk, Request::Flags dest, PacketId id);
462
463 /**
464 * Create a CleanEvict request for the given block.
465 * @param blk The block to evict.
466 * @return The CleanEvict request for the block.
467 */
468 PacketPtr cleanEvictBlk(CacheBlk *blk);
469

--- 169 unchanged lines hidden ---
462
463 /**
464 * Create a CleanEvict request for the given block.
465 * @param blk The block to evict.
466 * @return The CleanEvict request for the block.
467 */
468 PacketPtr cleanEvictBlk(CacheBlk *blk);
469

--- 169 unchanged lines hidden ---