gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
super_blk.cc
Go to the documentation of this file.
1 
36 
37 #include <climits>
38 #include <cmath>
39 
40 #include "base/bitfield.hh"
41 
43  : SectorSubBlk(), _size(0), _decompressionLatency(0), _compressed(false)
44 {
45 }
46 
47 CacheBlk&
49 {
50  operator=(std::move(static_cast<CompressionBlk&&>(other)));
51  return *this;
52 }
53 
56 {
57  // Copy internal variables; if moving, that means we had an expansion or
58  // contraction, and therefore the size is no longer valid, so it is not
59  // moved
60  setDecompressionLatency(other.getDecompressionLatency());
61  if (other.isCompressed()) {
62  setCompressed();
63  } else {
65  }
66 
67  CacheBlk::operator=(std::move(other));
68  return *this;
69 }
70 
71 bool
73 {
74  return _compressed;
75 }
76 
77 void
79 {
80  _compressed = true;
81 }
82 
83 void
85 {
86  _compressed = false;
87 }
88 
89 std::size_t
91 {
92  return _size;
93 }
94 
95 void
96 CompressionBlk::setSizeBits(const std::size_t size)
97 {
98  _size = size;
99 
100  SuperBlk* superblock = static_cast<SuperBlk*>(getSectorBlock());
101  const uint8_t compression_factor =
102  superblock->calculateCompressionFactor(size);
103  superblock->setCompressionFactor(compression_factor);
104 
105  // Either this function is called after an insertion, or an update.
106  // If somebody else is present in the block, keep the superblock's
107  // compressibility. Otherwise, check if it can co-allocate
108  const uint8_t num_valid = superblock->getNumValid();
109  assert(num_valid >= 1);
110  if (num_valid == 1) {
111  if (compression_factor != 1) {
112  setCompressed();
113  } else {
114  setUncompressed();
115  }
116  } else {
117  if (superblock->isCompressed(this)) {
118  setCompressed();
119  } else {
120  setUncompressed();
121  }
122  }
123 }
124 
125 Cycles
127 {
128  return _decompressionLatency;
129 }
130 
131 void
133 {
134  _decompressionLatency = lat;
135 }
136 
137 void
139 {
141  setUncompressed();
142 }
143 
145 CompressionBlk::checkExpansionContraction(const std::size_t size) const
146 {
147  // An expansion happens when a block passes from a compressible state
148  // to a less compressible state (e.g., blkSize/4 to (blkSize/2 or blkSize),
149  // or blkSize/2 to blkSize). A contraction happens when a block passes
150  // from a less compressible state to a more compressible state (i.e., the
151  // opposite of expansion)
152  const SuperBlk* superblock =
153  static_cast<const SuperBlk*>(getSectorBlock());
154  const uint8_t prev_cf = superblock->getCompressionFactor();
155  const uint8_t new_cf = superblock->calculateCompressionFactor(size);
156  return (new_cf < prev_cf) ? DATA_EXPANSION :
157  ((new_cf > prev_cf) ? DATA_CONTRACTION : UNCHANGED);
158 }
159 
160 std::string
162 {
163  return csprintf("%s compressed: %d size: %llu decompression latency: %d",
166 }
167 
169  : SectorBlk(), blkSize(0), compressionFactor(1)
170 {
171 }
172 
173 void
175 {
177  compressionFactor = 1;
178 }
179 
180 bool
181 SuperBlk::isCompressed(const CompressionBlk* ignored_blk) const
182 {
183  for (const auto& blk : blks) {
184  if (blk->isValid() && (blk != ignored_blk)) {
185  return static_cast<CompressionBlk*>(blk)->isCompressed();
186  }
187  }
188 
189  // An invalid block is seen as compressed
190  return true;
191 }
192 
193 bool
194 SuperBlk::canCoAllocate(const std::size_t compressed_size) const
195 {
196  // A YACC-like (Sardashti et al., 2016) co-allocation function: at most
197  // numBlocksPerSector blocks that compress at least to fit in the space
198  // allocated by its compression factor can share a superblock
199  return (getNumValid() < getCompressionFactor()) &&
200  (compressed_size <= (blkSize * CHAR_BIT) / getCompressionFactor());
201 }
202 
203 void
204 SuperBlk::setBlkSize(const std::size_t blk_size)
205 {
206  assert(blkSize == 0);
207  blkSize = blk_size;
208 }
209 
210 uint8_t
211 SuperBlk::calculateCompressionFactor(const std::size_t size) const
212 {
213  // The number of blocks per sector determines the maximum comp factor.
214  // If the compressed size is worse than the uncompressed size, we assume
215  // the size is the uncompressed size, and thus the compression factor is 1
216  const std::size_t blk_size_bits = CHAR_BIT * blkSize;
217  const std::size_t compression_factor = (size > blk_size_bits) ? 1 :
218  ((size == 0) ? blk_size_bits :
219  alignToPowerOfTwo(std::floor(double(blk_size_bits) / size)));
220  return std::min(compression_factor, blks.size());
221 }
222 
223 uint8_t
225 {
226  return compressionFactor;
227 }
228 
229 void
230 SuperBlk::setCompressionFactor(const uint8_t compression_factor)
231 {
232  // Either the block is alone, in which case the compression factor
233  // must be set, or it co-allocates with someone with a worse or
234  // equal compression factor, in which case it should not be updated
235  if (getNumValid() <= 1) {
236  compressionFactor = compression_factor;
237  }
238 }
239 
240 std::string
242 {
243  return csprintf("CF: %d %s", getCompressionFactor(), SectorBlk::print());
244 }
CompressionBlk::checkExpansionContraction
OverwriteType checkExpansionContraction(const std::size_t size) const
Determines if changing the size of the block will cause a data expansion (new size is bigger) or cont...
Definition: super_blk.cc:145
CompressionBlk::operator=
CompressionBlk & operator=(const CompressionBlk &)=delete
SuperBlk::canCoAllocate
bool canCoAllocate(const std::size_t compressed_size) const
Checks whether a superblock can co-allocate given compressed data block.
Definition: super_blk.cc:194
CompressionBlk::invalidate
void invalidate() override
Invalidate the block and inform sector block.
Definition: super_blk.cc:138
SectorBlk::print
std::string print() const override
Print relevant information for this sector block and its sub-blocks.
Definition: sector_blk.cc:155
SectorSubBlk::invalidate
void invalidate() override
Invalidate the block and inform sector block.
Definition: sector_blk.cc:98
SuperBlk::setCompressionFactor
void setCompressionFactor(const uint8_t compression_factor)
Set the compression factor of this superblock.
Definition: super_blk.cc:230
CompressionBlk::DATA_EXPANSION
@ DATA_EXPANSION
New data contents are considered larger than previous contents.
Definition: super_blk.hh:78
CompressionBlk::_size
std::size_t _size
Set size, in bits, of this compressed block's data.
Definition: super_blk.hh:54
CompressionBlk::UNCHANGED
@ UNCHANGED
New and old contents are considered of similar sizes.
Definition: super_blk.hh:76
SuperBlk::invalidate
void invalidate() override
Invalidate the block.
Definition: super_blk.cc:174
CompressionBlk::getSizeBits
std::size_t getSizeBits() const
Definition: super_blk.cc:90
SectorBlk::blks
std::vector< SectorSubBlk * > blks
List of blocks associated to this sector.
Definition: sector_blk.hh:144
bitfield.hh
SuperBlk::blkSize
std::size_t blkSize
Block size, in bytes.
Definition: super_blk.hh:171
CompressionBlk::_compressed
bool _compressed
Compression bit.
Definition: super_blk.hh:63
CompressionBlk::getDecompressionLatency
Cycles getDecompressionLatency() const
Get number of cycles needed to decompress this block.
Definition: super_blk.cc:126
SuperBlk::setBlkSize
void setBlkSize(const std::size_t blk_size)
Set block size.
Definition: super_blk.cc:204
SectorBlk::getNumValid
uint8_t getNumValid() const
Get the number of sub-blocks that have been validated.
Definition: sector_blk.cc:124
CompressionBlk::isCompressed
bool isCompressed() const
Check if this block holds compressed data.
Definition: super_blk.cc:72
SuperBlk::SuperBlk
SuperBlk()
Definition: super_blk.cc:168
CompressionBlk::setDecompressionLatency
void setDecompressionLatency(const Cycles lat)
Set number of cycles needed to decompress this block.
Definition: super_blk.cc:132
CompressionBlk::_decompressionLatency
Cycles _decompressionLatency
Number of cycles needed to decompress this block.
Definition: super_blk.hh:60
SuperBlk::getCompressionFactor
uint8_t getCompressionFactor() const
Get the compression factor of this superblock.
Definition: super_blk.cc:224
SectorSubBlk::getSectorBlock
SectorBlk * getSectorBlock() const
Get sector block associated to this block.
Definition: sector_blk.cc:49
CompressionBlk::setCompressed
void setCompressed()
Set compression bit.
Definition: super_blk.cc:78
CompressionBlk::setUncompressed
void setUncompressed()
Clear compression bit.
Definition: super_blk.cc:84
alignToPowerOfTwo
constexpr uint64_t alignToPowerOfTwo(uint64_t val)
Align to the next highest power of two.
Definition: bitfield.hh:349
super_blk.hh
Copyright (c) 2018 Inria All rights reserved.
SectorSubBlk::print
std::string print() const override
Pretty-print sector offset and other CacheBlk information.
Definition: sector_blk.cc:105
SuperBlk
A basic compression superblock.
Definition: super_blk.hh:167
CompressionBlk::setSizeBits
void setSizeBits(const std::size_t size)
Set size, in bits, of this compressed block's data.
Definition: super_blk.cc:96
TaggedEntry::invalidate
virtual void invalidate()
Invalidate the block.
Definition: tagged_entry.hh:100
CacheBlk
A Basic Cache block.
Definition: cache_blk.hh:67
SuperBlk::isCompressed
bool isCompressed(const CompressionBlk *ignored_blk=nullptr) const
Returns whether the superblock contains compressed blocks or not.
Definition: super_blk.cc:181
SuperBlk::calculateCompressionFactor
uint8_t calculateCompressionFactor(const std::size_t size) const
Calculate the compression factor (cf) given a compressed size and the maximum compression ratio.
Definition: super_blk.cc:211
CompressionBlk::OverwriteType
OverwriteType
When an overwrite happens, the data size may change an not fit in its current container any longer.
Definition: super_blk.hh:71
SuperBlk::compressionFactor
uint8_t compressionFactor
Superblock's compression factor.
Definition: super_blk.hh:178
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
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
CacheBlk::operator=
CacheBlk & operator=(const CacheBlk &)=delete
CompressionBlk::CompressionBlk
CompressionBlk()
Definition: super_blk.cc:42
SectorBlk
A Basic Sector block.
Definition: sector_blk.hh:131
SuperBlk::print
std::string print() const override
Print relevant information for this sector block and its sub-blocks.
Definition: super_blk.cc:241
CompressionBlk
A superblock is composed of sub-blocks, and each sub-block has information regarding its superblock a...
Definition: super_blk.hh:48
csprintf
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
CompressionBlk::DATA_CONTRACTION
@ DATA_CONTRACTION
New data contents are considered smaller than previous contents.
Definition: super_blk.hh:74
CompressionBlk::print
std::string print() const override
Pretty-print sector offset and other CacheBlk information.
Definition: super_blk.cc:161

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