gem5  v21.1.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
fifo_rp.hh
Go to the documentation of this file.
1 
36 #ifndef __MEM_CACHE_REPLACEMENT_POLICIES_FIFO_RP_HH__
37 #define __MEM_CACHE_REPLACEMENT_POLICIES_FIFO_RP_HH__
38 
39 #include "base/types.hh"
41 
42 namespace gem5
43 {
44 
45 struct FIFORPParams;
46 
47 GEM5_DEPRECATED_NAMESPACE(ReplacementPolicy, replacement_policy);
48 namespace replacement_policy
49 {
50 
51 class FIFO : public Base
52 {
53  protected:
56  {
59 
64  };
65 
66  public:
67  typedef FIFORPParams Params;
68  FIFO(const Params &p);
69  ~FIFO() = default;
70 
77  void invalidate(const std::shared_ptr<ReplacementData>& replacement_data)
78  override;
79 
86  void touch(const std::shared_ptr<ReplacementData>& replacement_data) const
87  override;
88 
95  void reset(const std::shared_ptr<ReplacementData>& replacement_data) const
96  override;
97 
104  ReplaceableEntry* getVictim(const ReplacementCandidates& candidates) const
105  override;
106 
112  std::shared_ptr<ReplacementData> instantiateEntry() override;
113 };
114 
115 } // namespace replacement_policy
116 } // namespace gem5
117 
118 #endif // __MEM_CACHE_REPLACEMENT_POLICIES_FIFO_RP_HH__
gem5::replacement_policy::FIFO::getVictim
ReplaceableEntry * getVictim(const ReplacementCandidates &candidates) const override
Find replacement victim using insertion timestamps.
Definition: fifo_rp.cc:72
gem5::replacement_policy::Base::Params
BaseReplacementPolicyParams Params
Definition: base.hh:58
gem5::replacement_policy::FIFO::FIFOReplData::FIFOReplData
FIFOReplData()
Default constructor.
Definition: fifo_rp.hh:63
gem5::replacement_policy::FIFO::Params
FIFORPParams Params
Definition: fifo_rp.hh:67
gem5::replacement_policy::FIFO::invalidate
void invalidate(const std::shared_ptr< ReplacementData > &replacement_data) override
Invalidate replacement data to set it as the next probable victim.
Definition: fifo_rp.cc:50
std::vector
STL vector class.
Definition: stl.hh:37
gem5::replacement_policy::FIFO::reset
void reset(const std::shared_ptr< ReplacementData > &replacement_data) const override
Reset replacement data.
Definition: fifo_rp.cc:64
gem5::replacement_policy::FIFO::~FIFO
~FIFO()=default
gem5::replacement_policy::ReplacementData
The replacement data needed by replacement policies.
Definition: replaceable_entry.hh:49
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::FIFO::FIFOReplData::tickInserted
Tick tickInserted
Tick on which the entry was inserted.
Definition: fifo_rp.hh:58
gem5::replacement_policy::Base
A common base class of cache replacement policy objects.
Definition: base.hh:55
base.hh
gem5::replacement_policy::FIFO::touch
void touch(const std::shared_ptr< ReplacementData > &replacement_data) const override
Touch an entry to update its replacement data.
Definition: fifo_rp.cc:58
gem5::GEM5_DEPRECATED_NAMESPACE
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
gem5::replacement_policy::FIFO
Definition: fifo_rp.hh:51
types.hh
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::FIFO::instantiateEntry
std::shared_ptr< ReplacementData > instantiateEntry() override
Instantiate a replacement data entry.
Definition: fifo_rp.cc:93
gem5::replacement_policy::FIFO::FIFOReplData
FIFO-specific implementation of replacement data.
Definition: fifo_rp.hh:55
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: decoder.cc:40
gem5::replacement_policy::FIFO::FIFO
FIFO(const Params &p)
Definition: fifo_rp.cc:44

Generated on Wed Jul 28 2021 12:10:28 for gem5 by doxygen 1.8.17