mshr_queue.hh (7823:dac01f14f20f) mshr_queue.hh (8229:78bf55f23338)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

32 * Declaration of a structure to manage MSHRs.
33 */
34
35#ifndef __MEM__CACHE__MISS__MSHR_QUEUE_HH__
36#define __MEM__CACHE__MISS__MSHR_QUEUE_HH__
37
38#include <vector>
39
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

32 * Declaration of a structure to manage MSHRs.
33 */
34
35#ifndef __MEM__CACHE__MISS__MSHR_QUEUE_HH__
36#define __MEM__CACHE__MISS__MSHR_QUEUE_HH__
37
38#include <vector>
39
40#include "mem/packet.hh"
41#include "mem/cache/mshr.hh"
40#include "mem/cache/mshr.hh"
41#include "mem/packet.hh"
42
43/**
44 * A Class for maintaining a list of pending and allocated memory requests.
45 */
46class MSHRQueue
47{
48 private:
49 /** Local label (for functional print requests) */

--- 165 unchanged lines hidden ---
42
43/**
44 * A Class for maintaining a list of pending and allocated memory requests.
45 */
46class MSHRQueue
47{
48 private:
49 /** Local label (for functional print requests) */

--- 165 unchanged lines hidden ---