89 return csprintf(
"%s compressed: %d size: %llu decompression latency: %d",
97 for (
const auto& blk : blks) {
98 if (blk->isValid() && (blk != ignored_blk)) {
113 return (compressed_size <= (blkSize * 8) / blks.size());
119 assert(blkSize == 0);
void setDecompressionLatency(const Cycles lat)
Set number of cycles needed to decompress this block.
State status
The current status of this block.
Cycles is a wrapper class for representing cycle counts, i.e.
std::string print() const override
Pretty-print sector offset and other CacheBlk information.
A sector is composed of sub-blocks, and each sub-block has information regarding its sector and a poi...
Cycles getDecompressionLatency() const
Get number of cycles needed to decompress this block.
void setUncompressed()
Clear compression bit.
block holds compressed data
std::size_t _size
Set size, in bits, of this compressed block's data.
void setSizeBits(const std::size_t size)
Set size, in bits, of this compressed block's data.
std::size_t getSizeBits() const
std::string csprintf(const char *format, const Args &...args)
bool canCoAllocate(const std::size_t compressed_size) const
Checks whether a superblock can co-allocate given compressed data block.
Copyright (c) 2018 Inria All rights reserved.
A superblock is composed of sub-blocks, and each sub-block has information regarding its superblock a...
void setCompressed()
Set compression bit.
bool isCompressed() const
Check if this block holds compressed data.
Cycles _decompressionLatency
Number of cycles needed to decompress this block.
bool isCompressed(const CompressionBlk *ignored_blk=nullptr) const
Returns whether the superblock contains compressed blocks or not.
std::string print() const override
Pretty-print sector offset and other CacheBlk information.
void setBlkSize(const std::size_t blk_size)
Set block size.