mshr_queue.hh (10913:38dbdeea7f1f) mshr_queue.hh (11168:f98eb2da15a4)
1/*
2 * Copyright (c) 2012-2013, 2015 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

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

250 return readyList.front();
251 }
252
253 Tick nextMSHRReadyTime() const
254 {
255 return readyList.empty() ? MaxTick : readyList.front()->readyTime;
256 }
257
1/*
2 * Copyright (c) 2012-2013, 2015 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

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

250 return readyList.front();
251 }
252
253 Tick nextMSHRReadyTime() const
254 {
255 return readyList.empty() ? MaxTick : readyList.front()->readyTime;
256 }
257
258 DrainState drain() M5_ATTR_OVERRIDE;
258 DrainState drain() override;
259};
260
261#endif //__MEM_CACHE_MSHR_QUEUE_HH__
259};
260
261#endif //__MEM_CACHE_MSHR_QUEUE_HH__