fs.py (13608:e91969b61d3d) fs.py (13684:076506a21535)
1# Copyright (c) 2010-2013, 2016, 2019 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

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

184 test_sys.iocache.mem_side = test_sys.membus.slave
185 elif not options.external_memory_system:
186 test_sys.iobridge = Bridge(delay='50ns', ranges = test_sys.mem_ranges)
187 test_sys.iobridge.slave = test_sys.iobus.master
188 test_sys.iobridge.master = test_sys.membus.slave
189
190 # Sanity check
191 if options.simpoint_profile:
1# Copyright (c) 2010-2013, 2016, 2019 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

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

184 test_sys.iocache.mem_side = test_sys.membus.slave
185 elif not options.external_memory_system:
186 test_sys.iobridge = Bridge(delay='50ns', ranges = test_sys.mem_ranges)
187 test_sys.iobridge.slave = test_sys.iobus.master
188 test_sys.iobridge.master = test_sys.membus.slave
189
190 # Sanity check
191 if options.simpoint_profile:
192 if not CpuConfig.is_atomic_cpu(TestCPUClass):
192 if not CpuConfig.is_noncaching_cpu(TestCPUClass):
193 fatal("SimPoint generation should be done with atomic cpu")
194 if np > 1:
195 fatal("SimPoint generation not supported with more than one CPUs")
196
197 for i in xrange(np):
198 if options.simpoint_profile:
199 test_sys.cpu[i].addSimPointProbe(options.simpoint_interval)
200 if options.checker:

--- 169 unchanged lines hidden ---
193 fatal("SimPoint generation should be done with atomic cpu")
194 if np > 1:
195 fatal("SimPoint generation not supported with more than one CPUs")
196
197 for i in xrange(np):
198 if options.simpoint_profile:
199 test_sys.cpu[i].addSimPointProbe(options.simpoint_interval)
200 if options.checker:

--- 169 unchanged lines hidden ---