mshr_queue.hh (11377:a06a4debe272) mshr_queue.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

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

43
44/** @file
45 * Declaration of a structure to manage MSHRs.
46 */
47
48#ifndef __MEM_CACHE_MSHR_QUEUE_HH__
49#define __MEM_CACHE_MSHR_QUEUE_HH__
50
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/** @file
45 * Declaration of a structure to manage MSHRs.
46 */
47
48#ifndef __MEM_CACHE_MSHR_QUEUE_HH__
49#define __MEM_CACHE_MSHR_QUEUE_HH__
50
51#include <vector>
51#include <string>
52
52
53#include "base/types.hh"
53#include "mem/cache/mshr.hh"
54#include "mem/cache/queue.hh"
54#include "mem/cache/mshr.hh"
55#include "mem/cache/queue.hh"
56#include "mem/packet.hh"
55
56/**
57 * A Class for maintaining a list of pending and allocated memory requests.
58 */
59class MSHRQueue : public Queue<MSHR>
60{
61 private:
62

--- 88 unchanged lines hidden ---
57
58/**
59 * A Class for maintaining a list of pending and allocated memory requests.
60 */
61class MSHRQueue : public Queue<MSHR>
62{
63 private:
64

--- 88 unchanged lines hidden ---