se.py (8896:6df06e5975c6) se.py (8920:99083b5b7ed4)
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
9# terms below provided that you ensure that this notice is replicated
10# unmodified and in its entirety in all distributions of the software,
11# modified or unmodified, in source code or in binary form.
12#
13# Copyright (c) 2006-2008 The Regents of The University of Michigan
14# All rights reserved.
15#
16# Redistribution and use in source and binary forms, with or without
17# modification, are permitted provided that the following conditions are
18# met: redistributions of source code must retain the above copyright
19# notice, this list of conditions and the following disclaimer;
20# redistributions in binary form must reproduce the above copyright
21# notice, this list of conditions and the following disclaimer in the
22# documentation and/or other materials provided with the distribution;
23# neither the name of the copyright holders nor the names of its
24# contributors may be used to endorse or promote products derived from
25# this software without specific prior written permission.
26#
27# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38#
39# Authors: Steve Reinhardt
40
41# Simple test script
42#
43# "m5 test.py"
44
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
9# terms below provided that you ensure that this notice is replicated
10# unmodified and in its entirety in all distributions of the software,
11# modified or unmodified, in source code or in binary form.
12#
13# Copyright (c) 2006-2008 The Regents of The University of Michigan
14# All rights reserved.
15#
16# Redistribution and use in source and binary forms, with or without
17# modification, are permitted provided that the following conditions are
18# met: redistributions of source code must retain the above copyright
19# notice, this list of conditions and the following disclaimer;
20# redistributions in binary form must reproduce the above copyright
21# notice, this list of conditions and the following disclaimer in the
22# documentation and/or other materials provided with the distribution;
23# neither the name of the copyright holders nor the names of its
24# contributors may be used to endorse or promote products derived from
25# this software without specific prior written permission.
26#
27# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38#
39# Authors: Steve Reinhardt
40
41# Simple test script
42#
43# "m5 test.py"
44
45import os
46import optparse
47import sys
45import optparse
46import sys
48from os.path import join as joinpath
49
50import m5
51from m5.defines import buildEnv
52from m5.objects import *
53from m5.util import addToPath, fatal
54
55addToPath('../common')
56addToPath('../ruby')
57
47
48import m5
49from m5.defines import buildEnv
50from m5.objects import *
51from m5.util import addToPath, fatal
52
53addToPath('../common')
54addToPath('../ruby')
55
56import Options
58import Ruby
57import Ruby
59
60import Simulation
61import CacheConfig
62from Caches import *
63from cpu2000 import *
64
58import Simulation
59import CacheConfig
60from Caches import *
61from cpu2000 import *
62
65# Get paths we might need. It's expected this file is in m5/configs/example.
66config_path = os.path.dirname(os.path.abspath(__file__))
67config_root = os.path.dirname(config_path)
68m5_root = os.path.dirname(config_root)
69
70parser = optparse.OptionParser()
63parser = optparse.OptionParser()
64Options.addCommonOptions(parser)
65Options.addSEOptions(parser)
71
66
72# Benchmark options
73parser.add_option("-c", "--cmd",
74 default=joinpath(m5_root, "tests/test-progs/hello/bin/%s/linux/hello" % \
75 buildEnv['TARGET_ISA']),
76 help="The binary to run in syscall emulation mode.")
77parser.add_option("-o", "--options", default="",
78 help='The options to pass to the binary, use " " around the entire string')
79parser.add_option("-i", "--input", default="", help="Read stdin from a file.")
80parser.add_option("--output", default="", help="Redirect stdout to a file.")
81parser.add_option("--errout", default="", help="Redirect stderr to a file.")
82
83execfile(os.path.join(config_root, "common", "Options.py"))
84
85if '--ruby' in sys.argv:
86 Ruby.define_options(parser)
87
88(options, args) = parser.parse_args()
89
90if args:
91 print "Error: script doesn't take any positional arguments"
92 sys.exit(1)
93
94multiprocesses = []
95apps = []
96
97if options.bench:
98 apps = options.bench.split("-")
99 if len(apps) != options.num_cpus:
100 print "number of benchmarks not equal to set num_cpus!"
101 sys.exit(1)
102
103 for app in apps:
104 try:
105 if buildEnv['TARGET_ISA'] == 'alpha':
106 exec("workload = %s('alpha', 'tru64', 'ref')" % app)
107 else:
108 exec("workload = %s(buildEnv['TARGET_ISA'], 'linux', 'ref')" % app)
109 multiprocesses.append(workload.makeLiveProcess())
110 except:
111 print >>sys.stderr, "Unable to find workload for %s: %s" % (buildEnv['TARGET_ISA'], app)
112 sys.exit(1)
67if '--ruby' in sys.argv:
68 Ruby.define_options(parser)
69
70(options, args) = parser.parse_args()
71
72if args:
73 print "Error: script doesn't take any positional arguments"
74 sys.exit(1)
75
76multiprocesses = []
77apps = []
78
79if options.bench:
80 apps = options.bench.split("-")
81 if len(apps) != options.num_cpus:
82 print "number of benchmarks not equal to set num_cpus!"
83 sys.exit(1)
84
85 for app in apps:
86 try:
87 if buildEnv['TARGET_ISA'] == 'alpha':
88 exec("workload = %s('alpha', 'tru64', 'ref')" % app)
89 else:
90 exec("workload = %s(buildEnv['TARGET_ISA'], 'linux', 'ref')" % app)
91 multiprocesses.append(workload.makeLiveProcess())
92 except:
93 print >>sys.stderr, "Unable to find workload for %s: %s" % (buildEnv['TARGET_ISA'], app)
94 sys.exit(1)
113else:
95elif options.cmd:
114 process = LiveProcess()
115 process.executable = options.cmd
116 process.cmd = [options.cmd] + options.options.split()
117 multiprocesses.append(process)
96 process = LiveProcess()
97 process.executable = options.cmd
98 process.cmd = [options.cmd] + options.options.split()
99 multiprocesses.append(process)
100else:
101 print >> sys.stderr, "No workload specified. Exiting!\n"
102 sys.exit(1)
118
119
120if options.input != "":
121 process.input = options.input
122if options.output != "":
123 process.output = options.output
124if options.errout != "":
125 process.errout = options.errout
126
127
128# By default, set workload to path of user-specified binary
129workloads = options.cmd
130numThreads = 1
131
132if options.cpu_type == "detailed" or options.cpu_type == "inorder":
133 #check for SMT workload
134 workloads = options.cmd.split(';')
135 if len(workloads) > 1:
136 process = []
137 smt_idx = 0
138 inputs = []
139 outputs = []
140 errouts = []
141
142 if options.input != "":
143 inputs = options.input.split(';')
144 if options.output != "":
145 outputs = options.output.split(';')
146 if options.errout != "":
147 errouts = options.errout.split(';')
148
149 for wrkld in workloads:
150 smt_process = LiveProcess()
151 smt_process.executable = wrkld
152 smt_process.cmd = wrkld + " " + options.options
153 if inputs and inputs[smt_idx]:
154 smt_process.input = inputs[smt_idx]
155 if outputs and outputs[smt_idx]:
156 smt_process.output = outputs[smt_idx]
157 if errouts and errouts[smt_idx]:
158 smt_process.errout = errouts[smt_idx]
159 process += [smt_process, ]
160 smt_idx += 1
161 numThreads = len(workloads)
162
163(CPUClass, test_mem_mode, FutureClass) = Simulation.setCPUClass(options)
164CPUClass.clock = '2GHz'
165CPUClass.numThreads = numThreads;
166
167np = options.num_cpus
168
169system = System(cpu = [CPUClass(cpu_id=i) for i in xrange(np)],
170 physmem = PhysicalMemory(range=AddrRange("512MB")),
171 membus = Bus(), mem_mode = test_mem_mode)
172
173for i in xrange(np):
174 system.cpu[i].workload = multiprocesses[i]
175
176 if options.fastmem:
177 system.cpu[0].physmem_port = system.physmem.port
178
179 if options.checker:
180 system.cpu[i].addCheckerCpu()
181
182if options.ruby:
183 if not (options.cpu_type == "detailed" or options.cpu_type == "timing"):
184 print >> sys.stderr, "Ruby requires TimingSimpleCPU or O3CPU!!"
185 sys.exit(1)
186
187 options.use_map = True
188 Ruby.create_system(options, system)
189 assert(options.num_cpus == len(system.ruby._cpu_ruby_ports))
190
191 for i in xrange(np):
192 ruby_port = system.ruby._cpu_ruby_ports[i]
193
194 # Create the interrupt controller and connect its ports to Ruby
195 system.cpu[i].createInterruptController()
196 system.cpu[i].interrupts.pio = ruby_port.master
197 system.cpu[i].interrupts.int_master = ruby_port.slave
198 system.cpu[i].interrupts.int_slave = ruby_port.master
199
200 # Connect the cpu's cache ports to Ruby
201 system.cpu[i].icache_port = ruby_port.slave
202 system.cpu[i].dcache_port = ruby_port.slave
203else:
204 system.system_port = system.membus.slave
205 system.physmem.port = system.membus.master
206 CacheConfig.config_cache(options, system)
207
208root = Root(full_system = False, system = system)
209Simulation.run(options, root, system, FutureClass)
103
104
105if options.input != "":
106 process.input = options.input
107if options.output != "":
108 process.output = options.output
109if options.errout != "":
110 process.errout = options.errout
111
112
113# By default, set workload to path of user-specified binary
114workloads = options.cmd
115numThreads = 1
116
117if options.cpu_type == "detailed" or options.cpu_type == "inorder":
118 #check for SMT workload
119 workloads = options.cmd.split(';')
120 if len(workloads) > 1:
121 process = []
122 smt_idx = 0
123 inputs = []
124 outputs = []
125 errouts = []
126
127 if options.input != "":
128 inputs = options.input.split(';')
129 if options.output != "":
130 outputs = options.output.split(';')
131 if options.errout != "":
132 errouts = options.errout.split(';')
133
134 for wrkld in workloads:
135 smt_process = LiveProcess()
136 smt_process.executable = wrkld
137 smt_process.cmd = wrkld + " " + options.options
138 if inputs and inputs[smt_idx]:
139 smt_process.input = inputs[smt_idx]
140 if outputs and outputs[smt_idx]:
141 smt_process.output = outputs[smt_idx]
142 if errouts and errouts[smt_idx]:
143 smt_process.errout = errouts[smt_idx]
144 process += [smt_process, ]
145 smt_idx += 1
146 numThreads = len(workloads)
147
148(CPUClass, test_mem_mode, FutureClass) = Simulation.setCPUClass(options)
149CPUClass.clock = '2GHz'
150CPUClass.numThreads = numThreads;
151
152np = options.num_cpus
153
154system = System(cpu = [CPUClass(cpu_id=i) for i in xrange(np)],
155 physmem = PhysicalMemory(range=AddrRange("512MB")),
156 membus = Bus(), mem_mode = test_mem_mode)
157
158for i in xrange(np):
159 system.cpu[i].workload = multiprocesses[i]
160
161 if options.fastmem:
162 system.cpu[0].physmem_port = system.physmem.port
163
164 if options.checker:
165 system.cpu[i].addCheckerCpu()
166
167if options.ruby:
168 if not (options.cpu_type == "detailed" or options.cpu_type == "timing"):
169 print >> sys.stderr, "Ruby requires TimingSimpleCPU or O3CPU!!"
170 sys.exit(1)
171
172 options.use_map = True
173 Ruby.create_system(options, system)
174 assert(options.num_cpus == len(system.ruby._cpu_ruby_ports))
175
176 for i in xrange(np):
177 ruby_port = system.ruby._cpu_ruby_ports[i]
178
179 # Create the interrupt controller and connect its ports to Ruby
180 system.cpu[i].createInterruptController()
181 system.cpu[i].interrupts.pio = ruby_port.master
182 system.cpu[i].interrupts.int_master = ruby_port.slave
183 system.cpu[i].interrupts.int_slave = ruby_port.master
184
185 # Connect the cpu's cache ports to Ruby
186 system.cpu[i].icache_port = ruby_port.slave
187 system.cpu[i].dcache_port = ruby_port.slave
188else:
189 system.system_port = system.membus.slave
190 system.physmem.port = system.membus.master
191 CacheConfig.config_cache(options, system)
192
193root = Root(full_system = False, system = system)
194Simulation.run(options, root, system, FutureClass)