LRUPolicy.cc (11061:25b53a7195f7) LRUPolicy.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2013 Advanced Micro Devices, Inc
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;

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

25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Author: Derek Hower
29 */
30
31#include "mem/ruby/structures/LRUPolicy.hh"
32
1/*
2 * Copyright (c) 2013 Advanced Micro Devices, Inc
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;

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

25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Author: Derek Hower
29 */
30
31#include "mem/ruby/structures/LRUPolicy.hh"
32
33
34
35LRUPolicy::LRUPolicy(const Params * p)
36 : AbstractReplacementPolicy(p)
37{
38}
39
40
41LRUPolicy::~LRUPolicy()
42{

--- 36 unchanged lines hidden ---
33LRUPolicy::LRUPolicy(const Params * p)
34 : AbstractReplacementPolicy(p)
35{
36}
37
38
39LRUPolicy::~LRUPolicy()
40{

--- 36 unchanged lines hidden ---