34 #ifndef __MEM_CACHE_COMPRESSORS_CPACK_HH__ 35 #define __MEM_CACHE_COMPRESSORS_CPACK_HH__ 81 static std::map<int, std::string> patternNames = {
86 return patternNames[number];
92 const int match_location)
const override 94 return PatternFactory::getPattern(bytes, dict_bytes, match_location);
107 std::unique_ptr<BaseCacheCompressor::CompressionData>
compress(
108 const uint64_t* data,
Cycles& comp_lat,
Cycles& decomp_lat)
override;
129 : MaskedValuePattern<0, 0xFFFFFFFF>(
ZZZZ, 0x0, 2, match_location,
139 : UncompressedPattern(
XXXX, 0x1, 2, match_location, bytes)
148 : MaskedPattern<0xFFFFFFFF>(
MMMM, 0x2, 6, match_location, bytes, true)
157 : MaskedPattern<0xFFFF0000>(
MMXX, 0xC, 8, match_location, bytes, true)
166 : MaskedValuePattern<0, 0xFFFFFF00>(
ZZZX, 0xD, 4, match_location,
176 : MaskedPattern<0xFFFFFF00>(
MMMX, 0xE, 8, match_location, bytes, true)
181 #endif //__MEM_CACHE_COMPRESSORS_CPACK_HH__ CPack(const Params *p)
Default constructor.
Cycles is a wrapper class for representing cycle counts, i.e.
PatternMMMM(const DictionaryEntry bytes, const int match_location)
std::unique_ptr< Pattern > getPattern(const DictionaryEntry &bytes, const DictionaryEntry &dict_bytes, const int match_location) const override
CPackParams Params
Convenience typedef.
PatternXXXX(const DictionaryEntry bytes, const int match_location)
uint64_t getNumPatterns() const override
Trick function to get the number of patterns.
PatternZZZX(const DictionaryEntry bytes, const int match_location)
void addToDictionary(DictionaryEntry data) override
PatternMMMX(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 compression.
PatternZZZZ(const DictionaryEntry bytes, const int match_location)
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
std::string getName(int number) const override
Get meta-name assigned to the given pattern.
Definition of a dictionary based cache compressor.
PatternMMXX(const DictionaryEntry bytes, const int match_location)
PatternNumber
The patterns proposed in the paper.
DictionaryCompressor< uint32_t >::DictionaryEntry DictionaryEntry
Factory< PatternZZZZ, PatternMMMM, PatternZZZX, PatternMMMX, PatternMMXX, PatternXXXX > PatternFactory
Convenience factory declaration.
~CPack()
Default destructor.
A template version of the dictionary compressor that allows to choose the dictionary size...