mem-cache: Implement FPC-D cache compression
authorDaniel R. Carvalho <odanrc@yahoo.com.br>
Fri, 12 Jul 2019 09:40:16 +0000 (11:40 +0200)
committerDaniel Carvalho <odanrc@yahoo.com.br>
Mon, 4 Nov 2019 21:32:22 +0000 (21:32 +0000)
commit93b4845ed20d9d36c4564429e998f1184a47a8e3
tree4258de666c919c80ca5fe8b3bc5d23798c2d4045
parent8549ee4a6dfc86a941cee0a478c01f6f2c146c3c
mem-cache: Implement FPC-D cache compression

Implementation of Frequent Pattern Compression with limited Dictionary
support (FPC-D) cache compressor, as described in "Opportunistic
Compression for Direct-Mapped DRAM Caches", by Alameldeen et al.

Change-Id: I26cc1646f95400b6a006f89754f6b2952f5b4aeb
Signed-off-by: Daniel R. Carvalho <odanrc@yahoo.com.br>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/21154
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Bobby R. Bruce <bbruce@ucdavis.edu>
Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu>
src/mem/cache/compressors/Compressors.py
src/mem/cache/compressors/SConscript
src/mem/cache/compressors/dictionary_compressor.hh
src/mem/cache/compressors/fpcd.cc [new file with mode: 0644]
src/mem/cache/compressors/fpcd.hh [new file with mode: 0644]