2c2
< * Copyright (c) 2012 ARM Limited
---
> * Copyright (c) 2012-2013 ARM Limited
66,74d65
< /** MSHR storage. */
< MSHR *registers;
< /** Holds pointers to all allocated entries. */
< MSHR::List allocatedList;
< /** Holds pointers to entries that haven't been sent to the bus. */
< MSHR::List readyList;
< /** Holds non allocated entries. */
< MSHR::List freeList;
<
88a80,88
> /** MSHR storage. */
> std::vector<MSHR> registers;
> /** Holds pointers to all allocated entries. */
> MSHR::List allocatedList;
> /** Holds pointers to entries that haven't been sent to the bus. */
> MSHR::List readyList;
> /** Holds non allocated entries. */
> MSHR::List freeList;
>
113,115d112
< /** Destructor */
< ~MSHRQueue();
<