BaseCPU.py (9544:1a075d9bc1bc) BaseCPU.py (9647:5b6b315472e7)
1# Copyright (c) 2012 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

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

182 print "Don't know what TLB to use for ISA %s" % \
183 buildEnv['TARGET_ISA']
184 sys.exit(1)
185
186 max_insts_all_threads = Param.Counter(0,
187 "terminate when all threads have reached this inst count")
188 max_insts_any_thread = Param.Counter(0,
189 "terminate when any thread reaches this inst count")
1# Copyright (c) 2012 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

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

182 print "Don't know what TLB to use for ISA %s" % \
183 buildEnv['TARGET_ISA']
184 sys.exit(1)
185
186 max_insts_all_threads = Param.Counter(0,
187 "terminate when all threads have reached this inst count")
188 max_insts_any_thread = Param.Counter(0,
189 "terminate when any thread reaches this inst count")
190 simpoint_start_insts = VectorParam.Counter([],
191 "starting instruction counts of simpoints")
190 max_loads_all_threads = Param.Counter(0,
191 "terminate when all threads have reached this load count")
192 max_loads_any_thread = Param.Counter(0,
193 "terminate when any thread reaches this load count")
194 progress_interval = Param.Frequency('0Hz',
195 "frequency to print out the progress message")
196
197 switched_out = Param.Bool(False,

--- 97 unchanged lines hidden ---
192 max_loads_all_threads = Param.Counter(0,
193 "terminate when all threads have reached this load count")
194 max_loads_any_thread = Param.Counter(0,
195 "terminate when any thread reaches this load count")
196 progress_interval = Param.Frequency('0Hz',
197 "frequency to print out the progress message")
198
199 switched_out = Param.Bool(False,

--- 97 unchanged lines hidden ---