gem5  [DEVELOP-FOR-23.0]
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ship_rp.hh
Go to the documentation of this file.
1 
36 #ifndef __MEM_CACHE_REPLACEMENT_POLICIES_SHIP_RP_HH__
37 #define __MEM_CACHE_REPLACEMENT_POLICIES_SHIP_RP_HH__
38 
39 #include <cstddef>
40 #include <vector>
41 
42 #include "base/compiler.hh"
43 #include "base/sat_counter.hh"
45 #include "mem/packet.hh"
46 
47 namespace gem5
48 {
49 
50 struct SHiPRPParams;
51 struct SHiPMemRPParams;
52 struct SHiPPCRPParams;
53 
54 namespace replacement_policy
55 {
56 
57 class SHiP : public BRRIP
58 {
59  protected:
60  typedef std::size_t SignatureType;
61 
63  class SHiPReplData : public BRRIPReplData
64  {
65  private:
68 
70  bool outcome;
71 
72  public:
73  SHiPReplData(int num_bits);
74 
77 
84 
86  void setReReferenced();
87 
93  bool wasReReferenced() const;
94  };
95 
100  const double insertionThreshold;
101 
108 
115  virtual SignatureType getSignature(const PacketPtr pkt) const = 0;
116 
117  public:
118  typedef SHiPRPParams Params;
119  SHiP(const Params &p);
120  ~SHiP() = default;
121 
128  void invalidate(const std::shared_ptr<ReplacementData>& replacement_data)
129  override;
130 
138  void touch(const std::shared_ptr<ReplacementData>& replacement_data,
139  const PacketPtr pkt) override;
140  void touch(const std::shared_ptr<ReplacementData>& replacement_data) const
141  override;
142 
150  void reset(const std::shared_ptr<ReplacementData>& replacement_data,
151  const PacketPtr pkt) override;
152  void reset(const std::shared_ptr<ReplacementData>& replacement_data) const
153  override;
154 
160  std::shared_ptr<ReplacementData> instantiateEntry() override;
161 };
162 
164 class SHiPMem : public SHiP
165 {
166  protected:
167  SignatureType getSignature(const PacketPtr pkt) const override;
168 
169  public:
170  SHiPMem(const SHiPMemRPParams &p);
171  ~SHiPMem() = default;
172 };
173 
175 class SHiPPC : public SHiP
176 {
177  private:
180 
181  protected:
182  SignatureType getSignature(const PacketPtr pkt) const override;
183 
184  public:
185  SHiPPC(const SHiPPCRPParams &p);
186  ~SHiPPC() = default;
187 };
188 
189 } // namespace replacement_policy
190 } // namespace gem5
191 
192 #endif // __MEM_CACHE_REPLACEMENT_POLICIES_SHIP_RP_HH__
gem5::replacement_policy::BRRIP
Definition: brrip_rp.hh:66
gem5::replacement_policy::SHiP
Definition: ship_rp.hh:57
gem5::replacement_policy::SHiPMem
SHiP that Uses memory addresses as signatures.
Definition: ship_rp.hh:164
gem5::replacement_policy::SHiP::instantiateEntry
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.
Definition: ship_rp.cc:145
gem5::replacement_policy::SHiP::SHiPReplData::SHiPReplData
SHiPReplData(int num_bits)
Definition: ship_rp.cc:42
gem5::replacement_policy::Base::Params
BaseReplacementPolicyParams Params
Definition: base.hh:57
gem5::replacement_policy::SHiPPC::NO_PC_SIGNATURE
const SignatureType NO_PC_SIGNATURE
Signature to be used when no PC is provided in an access.
Definition: ship_rp.hh:179
std::vector
STL vector class.
Definition: stl.hh:37
gem5::replacement_policy::SHiP::touch
void touch(const std::shared_ptr< ReplacementData > &replacement_data, const PacketPtr pkt) override
Touch an entry to update its replacement data.
Definition: ship_rp.cc:94
gem5::replacement_policy::SHiPPC::SHiPPC
SHiPPC(const SHiPPCRPParams &p)
Definition: ship_rp.cc:158
gem5::replacement_policy::SHiP::SignatureType
std::size_t SignatureType
Definition: ship_rp.hh:60
sat_counter.hh
gem5::replacement_policy::SHiP::SHiPReplData::signature
SignatureType signature
Signature that caused the insertion of this entry.
Definition: ship_rp.hh:67
packet.hh
gem5::replacement_policy::SHiPMem::getSignature
SignatureType getSignature(const PacketPtr pkt) const override
Extract signature from packet.
Definition: ship_rp.cc:153
gem5::replacement_policy::SHiP::~SHiP
~SHiP()=default
gem5::replacement_policy::BRRIP::BRRIPReplData
BRRIP-specific implementation of replacement data.
Definition: brrip_rp.hh:70
gem5::replacement_policy::SHiP::reset
void reset(const std::shared_ptr< ReplacementData > &replacement_data, const PacketPtr pkt) override
Reset replacement data.
Definition: ship_rp.cc:117
gem5::replacement_policy::SHiP::invalidate
void invalidate(const std::shared_ptr< ReplacementData > &replacement_data) override
Invalidate replacement data to set it as the next probable victim.
Definition: ship_rp.cc:79
gem5::replacement_policy::SHiP::SHiPReplData::wasReReferenced
bool wasReReferenced() const
Get whether entry has been re-referenced since insertion.
Definition: ship_rp.cc:67
gem5::VegaISA::p
Bitfield< 54 > p
Definition: pagetable.hh:70
gem5::Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:294
gem5::replacement_policy::SHiP::getSignature
virtual SignatureType getSignature(const PacketPtr pkt) const =0
Extract signature from packet.
gem5::replacement_policy::SHiP::Params
SHiPRPParams Params
Definition: ship_rp.hh:118
compiler.hh
gem5::replacement_policy::SHiPPC::~SHiPPC
~SHiPPC()=default
gem5::replacement_policy::SHiPPC::getSignature
SignatureType getSignature(const PacketPtr pkt) const override
Extract signature from packet.
Definition: ship_rp.cc:161
brrip_rp.hh
Copyright (c) 2018-2020 Inria All rights reserved.
gem5::replacement_policy::SHiP::insertionThreshold
const double insertionThreshold
Saturation percentage at which an entry starts being inserted as intermediate re-reference.
Definition: ship_rp.hh:100
gem5::replacement_policy::SHiP::SHiP
SHiP(const Params &p)
Definition: ship_rp.cc:72
gem5::replacement_policy::SHiP::SHiPReplData::getSignature
SignatureType getSignature() const
Get entry's signature.
Definition: ship_rp.cc:48
gem5::replacement_policy::SHiP::SHiPReplData::setReReferenced
void setReReferenced()
Set that this entry has been re-referenced.
Definition: ship_rp.cc:61
gem5::replacement_policy::SHiPMem::SHiPMem
SHiPMem(const SHiPMemRPParams &p)
Definition: ship_rp.cc:150
gem5::replacement_policy::SHiP::SHiPReplData::outcome
bool outcome
Outcome of insertion; set to one if entry is re-referenced.
Definition: ship_rp.hh:70
gem5::replacement_policy::SHiP::SHCT
std::vector< SatCounter8 > SHCT
Signature History Counter Table; learns the re-reference behavior of a signature.
Definition: ship_rp.hh:107
gem5::replacement_policy::SHiP::SHiPReplData::setSignature
void setSignature(SignatureType signature)
Set this entry's signature and reset outcome.
Definition: ship_rp.cc:54
gem5::replacement_policy::SHiP::SHiPReplData
SHiP-specific implementation of replacement data.
Definition: ship_rp.hh:63
gem5::replacement_policy::SHiPPC
SHiP that Uses PCs as signatures.
Definition: ship_rp.hh:175
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::replacement_policy::SHiPMem::~SHiPMem
~SHiPMem()=default

Generated on Sun Jul 30 2023 01:56:57 for gem5 by doxygen 1.8.17