BaseCPU.py (10037:5cac77888310) BaseCPU.py (10190:fb83d025d1c3)
1# Copyright (c) 2012-2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 114 unchanged lines hidden (view full) ---

123 return False
124
125 def takeOverFrom(self, old_cpu):
126 self._ccObject.takeOverFrom(old_cpu._ccObject)
127
128
129 system = Param.System(Parent.any, "system object")
130 cpu_id = Param.Int(-1, "CPU identifier")
1# Copyright (c) 2012-2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 114 unchanged lines hidden (view full) ---

123 return False
124
125 def takeOverFrom(self, old_cpu):
126 self._ccObject.takeOverFrom(old_cpu._ccObject)
127
128
129 system = Param.System(Parent.any, "system object")
130 cpu_id = Param.Int(-1, "CPU identifier")
131 socket_id = Param.Unsigned(0, "Physical Socket identifier")
131 numThreads = Param.Unsigned(1, "number of HW thread contexts")
132
133 function_trace = Param.Bool(False, "Enable function trace")
134 function_trace_start = Param.Tick(0, "Tick to start function trace")
135
136 checker = Param.BaseCPU(NULL, "checker CPU")
137
138 do_checkpoint_insts = Param.Bool(True,

--- 184 unchanged lines hidden ---
132 numThreads = Param.Unsigned(1, "number of HW thread contexts")
133
134 function_trace = Param.Bool(False, "Enable function trace")
135 function_trace_start = Param.Tick(0, "Tick to start function trace")
136
137 checker = Param.BaseCPU(NULL, "checker CPU")
138
139 do_checkpoint_insts = Param.Bool(True,

--- 184 unchanged lines hidden ---