diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-08-20 11:46:12 -0700 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-08-20 11:46:12 -0700 |
commit | d694cc13848ff030c7b62513dadef85feb1e8356 (patch) | |
tree | 2d4fca7d10c69d1370ab8c1a9e4d8331445dd728 /src/mem/slicc/ast | |
parent | 10e25cb1d05bd04e177cfa44a0c529af01acfad8 (diff) | |
download | gem5-d694cc13848ff030c7b62513dadef85feb1e8356.tar.xz |
slicc: Consolidated the protocol stats printing
Created a separate ProfileDumper that consolidates the generated stats for
each controller of a certain type.
Diffstat (limited to 'src/mem/slicc/ast')
-rw-r--r-- | src/mem/slicc/ast/MachineAST.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mem/slicc/ast/MachineAST.py b/src/mem/slicc/ast/MachineAST.py index 0fc79c710..6cefe8374 100644 --- a/src/mem/slicc/ast/MachineAST.py +++ b/src/mem/slicc/ast/MachineAST.py @@ -46,6 +46,8 @@ class MachineAST(DeclAST): '%s_Controller.py' % self.ident, '%s_Profiler.cc' % self.ident, '%s_Profiler.hh' % self.ident, + '%s_ProfileDumper.cc' % self.ident, + '%s_ProfileDumper.hh' % self.ident, '%s_Transitions.cc' % self.ident, '%s_Wakeup.cc' % self.ident)) |