From: Daniel R. Carvalho Date: Tue, 29 May 2018 15:42:34 +0000 (+0200) Subject: mem-cache: Create CacheComp debug flag X-Git-Tag: v19.0.0.0~880 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bba32e6df86f8cdd1e605b1637652bb13032304a;p=gem5.git mem-cache: Create CacheComp debug flag Create a debug flag for cache compression. Change-Id: Id4b8e86d658d3aa550906ee0f8da3b54f4cdab7d Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/11104 Tested-by: kokoro Reviewed-by: Jason Lowe-Power Reviewed-by: Nikos Nikoleris Maintainer: Jason Lowe-Power --- diff --git a/src/mem/cache/SConscript b/src/mem/cache/SConscript index 1b2638e83..3fb1601de 100644 --- a/src/mem/cache/SConscript +++ b/src/mem/cache/SConscript @@ -42,6 +42,7 @@ Source('write_queue.cc') Source('write_queue_entry.cc') DebugFlag('Cache') +DebugFlag('CacheComp') DebugFlag('CachePort') DebugFlag('CacheRepl') DebugFlag('CacheTags') @@ -51,6 +52,6 @@ DebugFlag('HWPrefetch') # CacheTags is so outrageously verbose, printing the cache's entire tag # array on each timing access, that you should probably have to ask for # it explicitly even above and beyond CacheAll. -CompoundFlag('CacheAll', ['Cache', 'CachePort', 'CacheRepl', 'CacheVerbose', - 'HWPrefetch']) +CompoundFlag('CacheAll', ['Cache', 'CacheComp', 'CachePort', 'CacheRepl', + 'CacheVerbose', 'HWPrefetch'])