mshr_queue.cc (5337:f81512eb8bdf) mshr_queue.cc (5338:e75d02a09806)
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;

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

27 *
28 * Authors: Erik Hallnor
29 */
30
31/** @file
32 * Definition of MSHRQueue class functions.
33 */
34
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;

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

27 *
28 * Authors: Erik Hallnor
29 */
30
31/** @file
32 * Definition of MSHRQueue class functions.
33 */
34
35#include "mem/cache/miss/mshr_queue.hh"
35#include "mem/cache/mshr_queue.hh"
36
37using namespace std;
38
39MSHRQueue::MSHRQueue(const std::string &_label,
40 int num_entries, int reserve, int _index)
41 : label(_label),
42 numEntries(num_entries + reserve - 1), numReserve(reserve),
43 index(_index)

--- 204 unchanged lines hidden ---
36
37using namespace std;
38
39MSHRQueue::MSHRQueue(const std::string &_label,
40 int num_entries, int reserve, int _index)
41 : label(_label),
42 numEntries(num_entries + reserve - 1), numReserve(reserve),
43 index(_index)

--- 204 unchanged lines hidden ---