39 #ifndef __MEM_CACHE_COMPRESSORS_FPCD_HH__ 40 #define __MEM_CACHE_COMPRESSORS_FPCD_HH__ 115 static std::map<PatternNumber, std::string> pattern_names = {
131 std::unique_ptr<Pattern>
133 const int match_location)
const override 135 return PatternFactory::getPattern(bytes, dict_bytes, match_location);
140 std::unique_ptr<BaseCacheCompressor::CompressionData>
compress(
141 const uint64_t* data,
Cycles& comp_lat,
Cycles& decomp_lat)
override;
145 FPCD(
const Params *
p);
154 match_location, bytes, true)
163 : MaskedValuePattern<0xFFFFFFFF, 0xFFFFFFFF>(
FFFF, 0x1,
170 :
public LocatedMaskedPattern<0xFFFFFFFF, previousIndex>
174 const int match_location)
182 :
public LocatedMaskedPattern<0xFFFFFFFF, penultimateIndex>
186 const int match_location)
198 match_location, bytes, true)
208 match_location, bytes, true)
218 match_location, bytes, true)
224 :
public LocatedMaskedPattern<0xFFFFFF00, previousIndex>
228 const int match_location)
236 :
public LocatedMaskedPattern<0xFFFFFF00, penultimateIndex>
240 const int match_location)
252 match_location, bytes, true)
262 match_location, bytes, true)
271 : MaskedValuePattern<0xFFFFFFFF, 0xFFFF0000>(
FFXX, 0xB,
282 match_location, bytes, true)
288 :
public LocatedMaskedPattern<0xFFFF0000, previousIndex>
292 const int match_location)
300 :
public LocatedMaskedPattern<0xFFFF0000, penultimateIndex>
304 const int match_location)
321 #endif //__MEM_CACHE_COMPRESSORS_FPCD_HH__
PatternFFXX(const DictionaryEntry bytes, const int match_location)
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.
uint64_t getNumPatterns() const override
Trick function to get the number of patterns.
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
PatternXXXX(const DictionaryEntry bytes, const int match_location)
PatternMMMMPenultimate(const DictionaryEntry bytes, const int match_location)
PatternZZZX(const DictionaryEntry bytes, const int match_location)
PatternMMXXPrevious(const DictionaryEntry bytes, const int match_location)
static constexpr int previousIndex
Index of the previous dictionary entry.
PatternMMMMPrevious(const DictionaryEntry bytes, const int match_location)
PatternMMXXPenultimate(const DictionaryEntry bytes, const int match_location)
static constexpr int prefixSize
Number of bits in a FPCD pattern prefix.
PatternXXZZ(const DictionaryEntry bytes, const int match_location)
Factory< PatternZZZZ, PatternFFFF, PatternMMMMPrevious, PatternMMMMPenultimate, PatternZZZX, PatternXZZZ, PatternRRRR, PatternMMMXPrevious, PatternMMMXPenultimate, PatternZZXX, PatternZXZX, PatternFFXX, PatternXXZZ, PatternMMXXPrevious, PatternMMXXPenultimate, PatternXXXX > PatternFactory
Convenience factory declaration.
PatternRRRR(const DictionaryEntry bytes, const int match_location)
PatternNumber
The patterns proposed in the paper.
PatternZXZX(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
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
PatternFFFF(const DictionaryEntry bytes, const int match_location)
PatternZZZZ(const DictionaryEntry bytes, const int match_location)
PatternMMMXPrevious(const DictionaryEntry bytes, const int match_location)
PatternMMMXPenultimate(const DictionaryEntry bytes, const int match_location)
Definition of a dictionary based cache compressor.
void addToDictionary(DictionaryEntry data) override
static constexpr int penultimateIndex
Index of the penultimate dictionary entry.
PatternZZXX(const DictionaryEntry bytes, const int match_location)
PatternXZZZ(const DictionaryEntry bytes, const int match_location)
A template version of the dictionary compressor that allows to choose the dictionary size...