write_queue_entry.hh (12724:4f6fac3191d2) write_queue_entry.hh (12727:56c23b54bcb1)
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

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

44/**
45 * @file
46 * Write queue entry
47 */
48
49#ifndef __MEM_CACHE_WRITE_QUEUE_ENTRY_HH__
50#define __MEM_CACHE_WRITE_QUEUE_ENTRY_HH__
51
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

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

44/**
45 * @file
46 * Write queue entry
47 */
48
49#ifndef __MEM_CACHE_WRITE_QUEUE_ENTRY_HH__
50#define __MEM_CACHE_WRITE_QUEUE_ENTRY_HH__
51
52#include <cassert>
53#include <iosfwd>
52#include <list>
54#include <list>
55#include <string>
53
54#include "base/printable.hh"
56
57#include "base/printable.hh"
58#include "base/types.hh"
55#include "mem/cache/queue_entry.hh"
59#include "mem/cache/queue_entry.hh"
60#include "mem/packet.hh"
61#include "sim/core.hh"
56
57class BaseCache;
58
59/**
60 * Write queue entry
61 */
62class WriteQueueEntry : public QueueEntry, public Printable
63{

--- 130 unchanged lines hidden ---
62
63class BaseCache;
64
65/**
66 * Write queue entry
67 */
68class WriteQueueEntry : public QueueEntry, public Printable
69{

--- 130 unchanged lines hidden ---