blob: 7585d4978e22406972bc133c73d9b0571aea1960 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from m5.params import *
from m5.SimObject import SimObject
class RubyProfiler(SimObject):
type = 'RubyProfiler'
cxx_class = 'Profiler'
hot_lines = Param.Bool(False, "")
all_instructions = Param.Bool(False, "")
class CacheProfiler(SimObject):
type = 'CacheProfiler'
cxx_class = 'CacheProfiler'
description = Param.String("")
|