lru_rp.cc (12684:44ebd2bc020f) lru_rp.cc (12727:56c23b54bcb1)
1/**
2 * Copyright (c) 2018 Inria
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 * Authors: Daniel Carvalho
29 */
30
31#include "mem/cache/replacement_policies/lru_rp.hh"
32
1/**
2 * Copyright (c) 2018 Inria
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 * Authors: Daniel Carvalho
29 */
30
31#include "mem/cache/replacement_policies/lru_rp.hh"
32
33#include <cassert>
33#include <memory>
34
34#include <memory>
35
36#include "params/LRURP.hh"
37
35LRURP::LRURP(const Params *p)
36 : BaseReplacementPolicy(p)
37{
38}
39
40void
41LRURP::invalidate(const std::shared_ptr<ReplacementData>& replacement_data)
42const

--- 54 unchanged lines hidden ---
38LRURP::LRURP(const Params *p)
39 : BaseReplacementPolicy(p)
40{
41}
42
43void
44LRURP::invalidate(const std::shared_ptr<ReplacementData>& replacement_data)
45const

--- 54 unchanged lines hidden ---