36 #include "params/FPCD.hh" 55 std::unique_ptr<BaseCacheCompressor::CompressionData>
58 std::unique_ptr<BaseCacheCompressor::CompressionData> comp_data =
77 return new FPCD(
this);
Cycles is a wrapper class for representing cycle counts, i.e.
std::unique_ptr< BaseCacheCompressor::CompressionData > compress(const uint64_t *data, Cycles &comp_lat, Cycles &decomp_lat) override
Apply the compression process to the cache line.
DictionaryCompressor< uint32_t >::DictionaryEntry DictionaryEntry
std::size_t numEntries
Number of valid entries in the dictionary.
static constexpr int previousIndex
Index of the previous dictionary entry.
const std::size_t blkSize
Uncompressed cache line size (in bytes).
std::vector< DictionaryEntry > dictionary
The dictionary.
BaseCacheCompressorParams Params
Convenience typedef.
void addToDictionary(DictionaryEntry data) override
static constexpr int penultimateIndex
Index of the penultimate dictionary entry.
std::unique_ptr< BaseCacheCompressor::CompressionData > compress(const uint64_t *data)
Apply compression.
Implementation of a dictionary based cache compressor.
Definition of the Frequent Pattern Compression with limited Dictionary support (FPC-D) cache compress...
A template version of the dictionary compressor that allows to choose the dictionary size...