ruby: Added the cache profiler to the new config system
[gem5.git] / src / mem / ruby / profiler / Profiler.py
1 from m5.params import *
2 from m5.SimObject import SimObject
3
4 class RubyProfiler(SimObject):
5 type = 'RubyProfiler'
6 cxx_class = 'Profiler'
7 hot_lines = Param.Bool(False, "")
8 all_instructions = Param.Bool(False, "")
9
10 class CacheProfiler(SimObject):
11 type = 'CacheProfiler'
12 cxx_class = 'CacheProfiler'
13 description = Param.String("")