34 #ifndef __MEM_CACHE_COMPRESSORS_ZERO_HH__ 35 #define __MEM_CACHE_COMPRESSORS_ZERO_HH__ 44 struct ZeroCompressorParams;
76 static std::map<int, std::string> pattern_names = {
80 return pattern_names[number];
83 std::unique_ptr<Pattern>
85 const int match_location)
const override 87 return PatternFactory::getPattern(bytes, dict_bytes, match_location);
92 std::unique_ptr<BaseCacheCompressor::CompressionData>
compress(
93 const uint64_t* data,
Cycles& comp_lat,
Cycles& decomp_lat)
override;
118 Z, 1, 1, match_location, bytes)
123 #endif //__MEM_CACHE_COMPRESSORS_ZERO_HH__ ZeroCompressor(const Params *p)
Cycles is a wrapper class for representing cycle counts, i.e.
std::string getName(int number) const override
Get meta-name assigned to the given pattern.
ZeroCompressorParams Params
A pattern that compares masked values to a masked portion of a fixed value.
Factory< PatternZ, PatternX > PatternFactory
Convenience factory declaration.
PatternZ(const DictionaryEntry bytes, const int match_location)
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< uint64_t >::DictionaryEntry DictionaryEntry
UncompressedPattern(const int number, const uint64_t code, const uint64_t metadata_length, const int match_location, const DictionaryEntry bytes)
Definition of a dictionary based cache compressor.
A pattern containing the original uncompressed data.
PatternNumber
The patterns proposed in the paper.
uint64_t getNumPatterns() const override
Trick function to get the number of patterns.
PatternX(const DictionaryEntry bytes, const int match_location)
~ZeroCompressor()=default
std::unique_ptr< Pattern > getPattern(const DictionaryEntry &bytes, const DictionaryEntry &dict_bytes, const int match_location) const override
void addToDictionary(DictionaryEntry data) override
A template version of the dictionary compressor that allows to choose the dictionary size...