cache.hh (12345:70c783a93195) cache.hh (12346:9b1144d046ca)
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

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

450 * @param blk The block to writeback.
451 * @return The writeback request for the block.
452 */
453 PacketPtr writebackBlk(CacheBlk *blk);
454
455 /**
456 * Create a writeclean request for the given block.
457 * @param blk The block to write clean
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

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

450 * @param blk The block to writeback.
451 * @return The writeback request for the block.
452 */
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
458 * @return The write clean packet for the block.
459 */
459 * @return The write clean packet for the block.
460 */
460 PacketPtr writecleanBlk(CacheBlk *blk);
461 PacketPtr writecleanBlk(CacheBlk *blk, Request::Flags dest = 0);
461
462 /**
463 * Create a CleanEvict request for the given block.
464 * @param blk The block to evict.
465 * @return The CleanEvict request for the block.
466 */
467 PacketPtr cleanEvictBlk(CacheBlk *blk);
468

--- 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 ---