34 #ifndef __MEM_CACHE_COMPRESSORS_PERFECT_COMPRESSOR_HH__ 35 #define __MEM_CACHE_COMPRESSORS_PERFECT_COMPRESSOR_HH__ 44 struct PerfectCompressorParams;
60 std::unique_ptr<CompressionData>
compress(
const uint64_t* cache_line,
66 typedef PerfectCompressorParams
Params;
87 #endif //__MEM_CACHE_COMPRESSORS_PERFECT_COMPRESSOR_HH__ Cycles is a wrapper class for representing cycle counts, i.e.
CompData(const uint64_t *data, std::size_t num_entries)
Default constructor that creates a copy of the original data.
PerfectCompressorParams Params
std::unique_ptr< CompressionData > compress(const uint64_t *cache_line, Cycles &comp_lat, Cycles &decomp_lat) override
Apply the compression process to the cache line.
Definition of a basic cache compressor.
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
Base cache compressor interface.
PerfectCompressor(const Params *p)
const Cycles compressionLatency
Number of cycles needed to perform compression.
void decompress(const CompressionData *comp_data, uint64_t *data) override
Apply the decompression process to the compressed data.
const Cycles decompressionLatency
Number of cycles needed to perform decompression.
std::vector< uint64_t > entries
The original data is simply copied over to this vector.
const int compressedSize
Size to which this compressor always compresses.