ruby: stats: use gem5's stats for cache and memory controllers
authorNilay Vaish <nilay@cs.wisc.edu>
Sun, 9 Jun 2013 12:29:59 +0000 (07:29 -0500)
committerNilay Vaish <nilay@cs.wisc.edu>
Sun, 9 Jun 2013 12:29:59 +0000 (07:29 -0500)
commitf59a7af50a7309944abfe1997057f52591619635
tree4daa578b6ba1664152da4412786317bce26ff0ee
parent38736ce7c33d7b1bf1e982f5d8cacd13908a32f4
ruby: stats: use gem5's stats for cache and memory controllers
This moves event and transition count statistics for cache controllers to
gem5's statistics. It does the same for the statistics associated with the
memory controller in ruby.

All the cache/directory/dma controllers individually collect the event and
transition counts. A callback function, collateStats(), has been added that
is invoked on the controller version 0 of each controller class. This
function adds all the individual controller statistics to a vector
variables. All the code for registering the statistical variables and
collating them is generated by SLICC. The patch removes the files
*_Profiler.{cc,hh} and *_ProfileDumper.{cc,hh} which were earlier used for
collecting and dumping statistics respectively.
src/mem/ruby/profiler/MemCntrlProfiler.cc
src/mem/ruby/profiler/MemCntrlProfiler.hh
src/mem/ruby/slicc_interface/AbstractController.cc
src/mem/ruby/slicc_interface/AbstractController.hh
src/mem/ruby/system/MemoryControl.hh
src/mem/ruby/system/RubyMemoryControl.cc
src/mem/ruby/system/RubyMemoryControl.hh
src/mem/slicc/ast/MachineAST.py
src/mem/slicc/symbols/StateMachine.py