BaseCPU.py (9161:e353c178fb36) BaseCPU.py (9180:ee8d7a51651d)
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

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

134 max_insts_all_threads = Param.Counter(0,
135 "terminate when all threads have reached this inst count")
136 max_insts_any_thread = Param.Counter(0,
137 "terminate when any thread reaches this inst count")
138 max_loads_all_threads = Param.Counter(0,
139 "terminate when all threads have reached this load count")
140 max_loads_any_thread = Param.Counter(0,
141 "terminate when any thread reaches this load 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

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

134 max_insts_all_threads = Param.Counter(0,
135 "terminate when all threads have reached this inst count")
136 max_insts_any_thread = Param.Counter(0,
137 "terminate when any thread reaches this inst count")
138 max_loads_all_threads = Param.Counter(0,
139 "terminate when all threads have reached this load count")
140 max_loads_any_thread = Param.Counter(0,
141 "terminate when any thread reaches this load count")
142 progress_interval = Param.Tick(0,
143 "interval to print out the progress message")
142 progress_interval = Param.Frequency('0Hz',
143 "frequency to print out the progress message")
144
145 defer_registration = Param.Bool(False,
146 "defer registration with system (for sampling)")
147
148 tracer = Param.InstTracer(default_tracer, "Instruction tracer")
149
150 icache_port = MasterPort("Instruction Port")
151 dcache_port = MasterPort("Data Port")

--- 79 unchanged lines hidden ---
144
145 defer_registration = Param.Bool(False,
146 "defer registration with system (for sampling)")
147
148 tracer = Param.InstTracer(default_tracer, "Instruction tracer")
149
150 icache_port = MasterPort("Instruction Port")
151 dcache_port = MasterPort("Data Port")

--- 79 unchanged lines hidden ---