diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-01-29 20:29:19 -0800 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-01-29 20:29:19 -0800 |
commit | 3b290a35aca3f6aba8226dde8387f38a9de39093 (patch) | |
tree | edd4db2cc0223715b34ea677233cd0579aba026b /src/mem/ruby/profiler/Profiler.py | |
parent | 4e5f4b5074a5f76c73e9ca94954b43cd1686866c (diff) | |
download | gem5-3b290a35aca3f6aba8226dde8387f38a9de39093.tar.xz |
ruby: Added the cache profiler to the new config system
Diffstat (limited to 'src/mem/ruby/profiler/Profiler.py')
-rw-r--r-- | src/mem/ruby/profiler/Profiler.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mem/ruby/profiler/Profiler.py b/src/mem/ruby/profiler/Profiler.py index 7923f28f1..7585d4978 100644 --- a/src/mem/ruby/profiler/Profiler.py +++ b/src/mem/ruby/profiler/Profiler.py @@ -6,3 +6,8 @@ class RubyProfiler(SimObject): cxx_class = 'Profiler' hot_lines = Param.Bool(False, "") all_instructions = Param.Bool(False, "") + +class CacheProfiler(SimObject): + type = 'CacheProfiler' + cxx_class = 'CacheProfiler' + description = Param.String("") |