se.py (9317:2daeea4bce1b) se.py (9384:877293183bdf)
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

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

175 system.cpu[i].workload = multiprocesses[i]
176
177 if options.fastmem:
178 system.cpu[i].fastmem = True
179
180 if options.checker:
181 system.cpu[i].addCheckerCpu()
182
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

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

175 system.cpu[i].workload = multiprocesses[i]
176
177 if options.fastmem:
178 system.cpu[i].fastmem = True
179
180 if options.checker:
181 system.cpu[i].addCheckerCpu()
182
183 system.cpu[i].createThreads()
184
183if options.ruby:
184 if not (options.cpu_type == "detailed" or options.cpu_type == "timing"):
185 print >> sys.stderr, "Ruby requires TimingSimpleCPU or O3CPU!!"
186 sys.exit(1)
187
188 options.use_map = True
189 Ruby.create_system(options, system)
190 assert(options.num_cpus == len(system.ruby._cpu_ruby_ports))

--- 25 unchanged lines hidden ---
185if options.ruby:
186 if not (options.cpu_type == "detailed" or options.cpu_type == "timing"):
187 print >> sys.stderr, "Ruby requires TimingSimpleCPU or O3CPU!!"
188 sys.exit(1)
189
190 options.use_map = True
191 Ruby.create_system(options, system)
192 assert(options.num_cpus == len(system.ruby._cpu_ruby_ports))

--- 25 unchanged lines hidden ---