Deleted Added
sdiff udiff text old ( 12637:bfc3cb9c7e6c ) new ( 12727:56c23b54bcb1 )
full compact
1/*
2 * Copyright (c) 2012-2013, 2015-2016 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

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

43 */
44
45/** @file
46 * Definition of WriteQueue class functions.
47 */
48
49#include "mem/cache/write_queue.hh"
50
51#include <cassert>
52
53#include "mem/cache/write_queue_entry.hh"
54
55WriteQueue::WriteQueue(const std::string &_label,
56 int num_entries, int reserve)
57 : Queue<WriteQueueEntry>(_label, num_entries, reserve)
58{}
59
60WriteQueueEntry *
61WriteQueue::allocate(Addr blk_addr, unsigned blk_size, PacketPtr pkt,
62 Tick when_ready, Counter order)

--- 24 unchanged lines hidden ---