gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
sector_blk.hh
Go to the documentation of this file.
1 
34 #ifndef __MEM_CACHE_TAGS_SECTOR_BLK_HH__
35 #define __MEM_CACHE_TAGS_SECTOR_BLK_HH__
36 
37 #include <vector>
38 
39 #include "mem/cache/cache_blk.hh"
41 
42 class SectorBlk;
43 
48 class SectorSubBlk : public CacheBlk
49 {
50  protected:
55 
60 
61  public:
63  SectorSubBlk(const SectorSubBlk&) = delete;
64  SectorSubBlk& operator=(const SectorSubBlk&) = delete;
65  SectorSubBlk(SectorSubBlk&&) = delete;
74  SectorSubBlk& operator=(SectorSubBlk&& other) = default;
75  ~SectorSubBlk() = default;
76 
82  void setSectorBlock(SectorBlk* sector_blk);
83 
89  SectorBlk* getSectorBlock() const;
90 
96  void setSectorOffset(const int sector_offset);
97 
103  int getSectorOffset() const;
104 
105  Addr getTag() const override;
106 
110  void setValid() override;
111 
112  void insert(const Addr tag, const bool is_secure) override;
113 
117  void invalidate() override;
118 
124  std::string print() const override;
125 };
126 
131 class SectorBlk : public TaggedEntry
132 {
133  private:
138  uint8_t _validCounter;
139 
140  public:
141  SectorBlk();
142  SectorBlk(const SectorBlk&) = delete;
143  SectorBlk& operator=(const SectorBlk&) = delete;
145 
148 
154  bool isValid() const override;
155 
161  uint8_t getNumValid() const;
162 
166  void validateSubBlk();
167 
171  void invalidateSubBlk();
172 
179  void setPosition(const uint32_t set, const uint32_t way) override;
180 
186  std::string print() const override;
187 };
188 
189 #endif //__MEM_CACHE_TAGS_SECTOR_BLK_HH__
SectorBlk::print
std::string print() const override
Print relevant information for this sector block and its sub-blocks.
Definition: sector_blk.cc:155
SectorSubBlk::~SectorSubBlk
~SectorSubBlk()=default
TaggedEntry
Copyright (c) 2020 Inria All rights reserved.
Definition: tagged_entry.hh:43
SectorBlk::_validCounter
uint8_t _validCounter
Counter of the number of valid sub-blocks.
Definition: sector_blk.hh:138
SectorSubBlk::invalidate
void invalidate() override
Invalidate the block and inform sector block.
Definition: sector_blk.cc:98
std::vector< SectorSubBlk * >
replaceable_entry.hh
SectorSubBlk::_sectorBlk
SectorBlk * _sectorBlk
Sector block associated to this block.
Definition: sector_blk.hh:54
SectorSubBlk::insert
void insert(const Addr tag, const bool is_secure) override
Insert the block by assigning it a tag and marking it valid.
Definition: sector_blk.cc:83
SectorBlk::blks
std::vector< SectorSubBlk * > blks
List of blocks associated to this sector.
Definition: sector_blk.hh:144
SectorSubBlk::setSectorBlock
void setSectorBlock(SectorBlk *sector_blk)
Set sector block associated to this block.
Definition: sector_blk.cc:42
SectorBlk::invalidateSubBlk
void invalidateSubBlk()
Decrease the number of valid sub-blocks.
Definition: sector_blk.cc:136
SectorBlk::setPosition
void setPosition(const uint32_t set, const uint32_t way) override
Sets the position of the sub-entries, besides its own.
Definition: sector_blk.cc:146
SectorSubBlk::setValid
void setValid() override
Set valid bit and inform sector block.
Definition: sector_blk.cc:76
SectorSubBlk::SectorSubBlk
SectorSubBlk()
Definition: sector_blk.hh:62
SectorSubBlk::operator=
SectorSubBlk & operator=(const SectorSubBlk &)=delete
SectorSubBlk::getTag
Addr getTag() const override
Get tag associated to this block.
Definition: sector_blk.cc:67
SectorBlk::operator=
SectorBlk & operator=(const SectorBlk &)=delete
SectorBlk::getNumValid
uint8_t getNumValid() const
Get the number of sub-blocks that have been validated.
Definition: sector_blk.cc:124
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
SectorSubBlk::getSectorBlock
SectorBlk * getSectorBlock() const
Get sector block associated to this block.
Definition: sector_blk.cc:49
SectorSubBlk::_sectorOffset
int _sectorOffset
The offset of this sub-block in the sector.
Definition: sector_blk.hh:59
SectorBlk::validateSubBlk
void validateSubBlk()
Increase the number of valid sub-blocks.
Definition: sector_blk.cc:130
SectorSubBlk::print
std::string print() const override
Pretty-print sector offset and other CacheBlk information.
Definition: sector_blk.cc:105
cache_blk.hh
CacheBlk
A Basic Cache block.
Definition: cache_blk.hh:67
SectorSubBlk::setSectorOffset
void setSectorOffset(const int sector_offset)
Set offset of this sub-block within the sector.
Definition: sector_blk.cc:55
SectorSubBlk::getSectorOffset
int getSectorOffset() const
Get offset of this sub-block within the sector.
Definition: sector_blk.cc:61
SectorSubBlk
A sector is composed of sub-blocks, and each sub-block has information regarding its sector and a poi...
Definition: sector_blk.hh:48
SectorBlk
A Basic Sector block.
Definition: sector_blk.hh:131
SectorBlk::isValid
bool isValid() const override
Checks that a sector block is valid.
Definition: sector_blk.cc:117
SectorBlk::~SectorBlk
~SectorBlk()
Definition: sector_blk.hh:144
SectorBlk::SectorBlk
SectorBlk()
Definition: sector_blk.cc:111

Generated on Tue Mar 23 2021 19:41:27 for gem5 by doxygen 1.8.17