gem5  v21.1.0.2
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
weighted_lru_rp.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013-2015 Advanced Micro Devices, Inc.
3  * All rights reserved.
4  *
5  * For use for simulation and test purposes only
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright notice,
11  * this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright notice,
14  * this list of conditions and the following disclaimer in the documentation
15  * and/or other materials provided with the distribution.
16  *
17  * 3. Neither the name of the copyright holder nor the names of its
18  * contributors may be used to endorse or promote products derived from this
19  * software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
25  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  */
33 
35 
36 #include <cassert>
37 
38 #include "params/WeightedLRURP.hh"
39 #include "sim/cur_tick.hh"
40 
41 namespace gem5
42 {
43 
44 GEM5_DEPRECATED_NAMESPACE(ReplacementPolicy, replacement_policy);
45 namespace replacement_policy
46 {
47 
49  : LRU(p)
50 {
51 }
52 
53 void
54 WeightedLRU::touch(const std::shared_ptr<ReplacementData>& replacement_data,
55  int occupancy) const
56 {
57  LRU::touch(replacement_data);
58  std::static_pointer_cast<WeightedLRUReplData>(replacement_data)->
59  last_occ_ptr = occupancy;
60 }
61 
64 {
65  assert(candidates.size() > 0);
66 
67  ReplaceableEntry* victim = candidates[0];
68  // Use weight (last_occ_ptr) to find victim.
69  // Evict the block that has the smallest weight.
70  // If two blocks have the same weight, evict the oldest one.
71  for (const auto& candidate : candidates) {
72  // candidate's replacement_data
73  std::shared_ptr<WeightedLRUReplData> candidate_replacement_data =
74  std::static_pointer_cast<WeightedLRUReplData>(
75  candidate->replacementData);
76  // victim's replacement_data
77  std::shared_ptr<WeightedLRUReplData> victim_replacement_data =
78  std::static_pointer_cast<WeightedLRUReplData>(
79  victim->replacementData);
80 
81  if (candidate_replacement_data->last_occ_ptr <
82  victim_replacement_data->last_occ_ptr) {
83  victim = candidate;
84  } else if (candidate_replacement_data->last_occ_ptr ==
85  victim_replacement_data->last_occ_ptr) {
86  // Evict the block with a smaller tick.
87  Tick time = candidate_replacement_data->lastTouchTick;
88  if (time < victim_replacement_data->lastTouchTick) {
89  victim = candidate;
90  }
91  }
92  }
93  return victim;
94 }
95 
96 std::shared_ptr<ReplacementData>
98 {
99  return std::shared_ptr<ReplacementData>(new WeightedLRUReplData);
100 }
101 
102 } // namespace replacement_policy
103 } // namespace gem5
weighted_lru_rp.hh
gem5::replacement_policy::Base::Params
BaseReplacementPolicyParams Params
Definition: base.hh:58
gem5::replacement_policy::WeightedLRU::getVictim
ReplaceableEntry * getVictim(const ReplacementCandidates &candidates) const override
Find replacement victim using weight.
Definition: weighted_lru_rp.cc:63
cur_tick.hh
gem5::replacement_policy::WeightedLRU::instantiateEntry
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.
Definition: weighted_lru_rp.cc:97
std::vector
STL vector class.
Definition: stl.hh:37
gem5::MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:326
gem5::Tick
uint64_t Tick
Tick count type.
Definition: types.hh:58
gem5::replacement_policy::WeightedLRU::touch
void touch(const std::shared_ptr< ReplacementData > &replacement_data, int occupancy) const
Definition: weighted_lru_rp.cc:54
gem5::GEM5_DEPRECATED_NAMESPACE
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
gem5::replacement_policy::WeightedLRU::WeightedLRUReplData
Weighted LRU implementation of replacement data.
Definition: weighted_lru_rp.hh:55
gem5::replacement_policy::LRU::touch
void touch(const std::shared_ptr< ReplacementData > &replacement_data) const override
Touch an entry to update its replacement data.
Definition: lru_rp.cc:58
gem5::ReplaceableEntry
A replaceable entry is a basic entry in a 2d table-like structure that needs to have replacement func...
Definition: replaceable_entry.hh:63
gem5::replacement_policy::LRU
Definition: lru_rp.hh:49
gem5::ReplaceableEntry::replacementData
std::shared_ptr< replacement_policy::ReplacementData > replacementData
Replacement data associated to this entry.
Definition: replaceable_entry.hh:84
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: decoder.cc:40
gem5::replacement_policy::WeightedLRU::WeightedLRU
WeightedLRU(const Params &p)
Definition: weighted_lru_rp.cc:48

Generated on Tue Sep 21 2021 12:25:30 for gem5 by doxygen 1.8.17