diff options
author | Richard Strong <rstrong@hp.com> | 2008-08-18 10:50:58 -0700 |
---|---|---|
committer | Richard Strong <rstrong@hp.com> | 2008-08-18 10:50:58 -0700 |
commit | 8d018aef0f9de7129a77172a4164f36b2b093be6 (patch) | |
tree | ff3d46df0e6c495ab95454e69607993ff45fe14f /src/cpu/ozone | |
parent | 6248e12704275bf4cc88f1743bb3a4bff7adcf9f (diff) | |
download | gem5-8d018aef0f9de7129a77172a4164f36b2b093be6.tar.xz |
Changed BaseCPU::ProfileEvent's interval member to be of type Tick. This was done to be consistent with its
python type of a latency. In addition, the multiple definitions of profile in the different cpu models caused
problems for intialization of the interval value. If a child class's profile value was defined, the parent
BaseCPU::ProfileEvent interval field would be initialized with a garbage value. The fix was to remove the
multiple redifitions of profile in the child CPU classes.
Diffstat (limited to 'src/cpu/ozone')
-rw-r--r-- | src/cpu/ozone/OzoneCPU.py | 2 | ||||
-rw-r--r-- | src/cpu/ozone/OzoneChecker.py | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/cpu/ozone/OzoneCPU.py b/src/cpu/ozone/OzoneCPU.py index b9cfb448f..37386898d 100644 --- a/src/cpu/ozone/OzoneCPU.py +++ b/src/cpu/ozone/OzoneCPU.py @@ -40,8 +40,6 @@ class DerivOzoneCPU(BaseCPU): if build_env['USE_CHECKER']: checker = Param.BaseCPU("Checker CPU") - if build_env['FULL_SYSTEM']: - profile = Param.Latency('0ns', "trace the kernel stack") icache_port = Port("Instruction Port") dcache_port = Port("Data Port") diff --git a/src/cpu/ozone/OzoneChecker.py b/src/cpu/ozone/OzoneChecker.py index f20b8770e..bfa39ead9 100644 --- a/src/cpu/ozone/OzoneChecker.py +++ b/src/cpu/ozone/OzoneChecker.py @@ -39,5 +39,3 @@ class OzoneChecker(BaseCPU): "If a load result is incorrect, only print a warning and do not exit") function_trace = Param.Bool(False, "Enable function trace") function_trace_start = Param.Tick(0, "Cycle to start function trace") - if build_env['FULL_SYSTEM']: - profile = Param.Latency('0ns', "trace the kernel stack") |