Add support for dedicated 1GHz Simple CPU
[gem5.git] / SConscript
1 # -*- mode:python -*-
2
3 # Copyright (c) 2004 The Regents of The University of Michigan
4 # All rights reserved.
5 #
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions are
8 # met: redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer;
10 # redistributions in binary form must reproduce the above copyright
11 # notice, this list of conditions and the following disclaimer in the
12 # documentation and/or other materials provided with the distribution;
13 # neither the name of the copyright holders nor the names of its
14 # contributors may be used to endorse or promote products derived from
15 # this software without specific prior written permission.
16 #
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29 import os
30 import sys
31 from os.path import isdir
32
33 # This file defines how to build a particular configuration of M5
34 # based on variable settings in the 'env' build environment.
35
36 # Import build environment variable from SConstruct.
37 Import('env')
38
39 ###################################################
40 #
41 # Define needed sources.
42 #
43 ###################################################
44
45 # Base sources used by all configurations.
46 base_sources = Split('''
47 arch/alpha/decoder.cc
48 arch/alpha/fast_cpu_exec.cc
49 arch/alpha/simple_cpu_exec.cc
50 arch/alpha/inorder_cpu_exec.cc
51 arch/alpha/full_cpu_exec.cc
52 arch/alpha/faults.cc
53 arch/alpha/isa_traits.cc
54
55 base/circlebuf.cc
56 base/copyright.cc
57 base/cprintf.cc
58 base/embedfile.cc
59 base/fast_alloc.cc
60 base/fifo_buffer.cc
61 base/hostinfo.cc
62 base/hybrid_pred.cc
63 base/inifile.cc
64 base/intmath.cc
65 base/match.cc
66 base/misc.cc
67 base/output.cc
68 base/pollevent.cc
69 base/python.cc
70 base/range.cc
71 base/random.cc
72 base/sat_counter.cc
73 base/socket.cc
74 base/statistics.cc
75 base/str.cc
76 base/time.cc
77 base/trace.cc
78 base/traceflags.cc
79 base/userinfo.cc
80 base/compression/lzss_compression.cc
81 base/loader/aout_object.cc
82 base/loader/ecoff_object.cc
83 base/loader/elf_object.cc
84 base/loader/object_file.cc
85 base/loader/symtab.cc
86 base/stats/events.cc
87 base/stats/python.cc
88 base/stats/statdb.cc
89 base/stats/visit.cc
90 base/stats/text.cc
91
92 cpu/base_cpu.cc
93 cpu/exec_context.cc
94 cpu/exetrace.cc
95 cpu/pc_event.cc
96 cpu/static_inst.cc
97 cpu/fast_cpu/fast_cpu.cc
98 cpu/full_cpu/bpred.cc
99 cpu/full_cpu/commit.cc
100 cpu/full_cpu/create_vector.cc
101 cpu/full_cpu/cv_spec_state.cc
102 cpu/full_cpu/dd_queue.cc
103 cpu/full_cpu/dep_link.cc
104 cpu/full_cpu/dispatch.cc
105 cpu/full_cpu/dyn_inst.cc
106 cpu/full_cpu/execute.cc
107 cpu/full_cpu/fetch.cc
108 cpu/full_cpu/floss_reasons.cc
109 cpu/full_cpu/fu_pool.cc
110 cpu/full_cpu/full_cpu.cc
111 cpu/full_cpu/inst_fifo.cc
112 cpu/full_cpu/instpipe.cc
113 cpu/full_cpu/issue.cc
114 cpu/full_cpu/ls_queue.cc
115 cpu/full_cpu/machine_queue.cc
116 cpu/full_cpu/pc_sample_profile.cc
117 cpu/full_cpu/pipetrace.cc
118 cpu/full_cpu/readyq.cc
119 cpu/full_cpu/reg_info.cc
120 cpu/full_cpu/rob_station.cc
121 cpu/full_cpu/spec_memory.cc
122 cpu/full_cpu/spec_state.cc
123 cpu/full_cpu/storebuffer.cc
124 cpu/full_cpu/writeback.cc
125 cpu/full_cpu/iq/iq_station.cc
126 cpu/full_cpu/iq/iqueue.cc
127 cpu/full_cpu/iq/segmented/chain_info.cc
128 cpu/full_cpu/iq/segmented/chain_wire.cc
129 cpu/full_cpu/iq/segmented/iq_seg.cc
130 cpu/full_cpu/iq/segmented/iq_segmented.cc
131 cpu/full_cpu/iq/segmented/seg_chain.cc
132 cpu/full_cpu/iq/seznec/iq_seznec.cc
133 cpu/full_cpu/iq/standard/iq_standard.cc
134 cpu/sampling_cpu/sampling_cpu.cc
135 cpu/simple_cpu/simple_cpu.cc
136 cpu/inorder_cpu/inorder_cpu.cc
137 cpu/trace/reader/mem_trace_reader.cc
138 cpu/trace/reader/ibm_reader.cc
139 cpu/trace/reader/itx_reader.cc
140 cpu/trace/reader/m5_reader.cc
141
142 mem/base_hier.cc
143 mem/base_mem.cc
144 mem/hier_params.cc
145 mem/mem_cmd.cc
146 mem/mem_debug.cc
147 mem/mem_req.cc
148 mem/memory_interface.cc
149 mem/bus/base_interface.cc
150 mem/bus/bus.cc
151 mem/bus/bus_bridge.cc
152 mem/bus/bus_bridge_master.cc
153 mem/bus/bus_bridge_slave.cc
154 mem/bus/bus_interface.cc
155 mem/bus/dma_bus_interface.cc
156 mem/bus/dma_interface.cc
157 mem/bus/master_interface.cc
158 mem/bus/slave_interface.cc
159 mem/cache/base_cache.cc
160 mem/cache/cache.cc
161 mem/cache/cache_builder.cc
162 mem/cache/coherence/coherence_protocol.cc
163 mem/cache/coherence/uni_coherence.cc
164 mem/cache/miss/blocking_buffer.cc
165 mem/cache/miss/miss_queue.cc
166 mem/cache/miss/mshr.cc
167 mem/cache/miss/mshr_queue.cc
168 mem/cache/prefetch/base_prefetcher.cc
169 mem/cache/prefetch/ghb_prefetcher.cc
170 mem/cache/prefetch/prefetcher.cc
171 mem/cache/prefetch/stride_prefetcher.cc
172 mem/cache/prefetch/tagged_prefetcher.cc
173 mem/cache/tags/base_tags.cc
174 mem/cache/tags/cache_tags.cc
175 mem/cache/tags/fa_lru.cc
176 mem/cache/tags/iic.cc
177 mem/cache/tags/lru.cc
178 mem/cache/tags/split.cc
179 mem/cache/tags/split_lifo.cc
180 mem/cache/tags/split_lru.cc
181 mem/cache/tags/repl/gen.cc
182 mem/cache/tags/repl/repl.cc
183 mem/functional_mem/functional_memory.cc
184 mem/functional_mem/main_memory.cc
185 mem/timing_mem/base_memory.cc
186 mem/timing_mem/memory_builder.cc
187 mem/timing_mem/simple_mem_bank.cc
188 mem/trace/itx_writer.cc
189 mem/trace/mem_trace_writer.cc
190 mem/trace/m5_writer.cc
191
192 python/pyconfig.cc
193 python/embedded_py.cc
194
195 sim/builder.cc
196 sim/configfile.cc
197 sim/debug.cc
198 sim/eventq.cc
199 sim/main.cc
200 sim/param.cc
201 sim/profile.cc
202 sim/serialize.cc
203 sim/sim_events.cc
204 sim/sim_exit.cc
205 sim/sim_object.cc
206 sim/startup.cc
207 sim/stat_context.cc
208 sim/stat_control.cc
209 sim/trace_context.cc
210 sim/universe.cc
211 ''')
212
213 # MySql sources
214 mysql_sources = Split('''
215 base/mysql.cc
216 base/stats/mysql.cc
217 ''')
218
219 # Full-system sources
220 full_system_sources = Split('''
221 arch/alpha/alpha_memory.cc
222 arch/alpha/arguments.cc
223 arch/alpha/ev5.cc
224 arch/alpha/osfpal.cc
225 arch/alpha/pseudo_inst.cc
226 arch/alpha/vtophys.cc
227
228 base/crc.cc
229 base/inet.cc
230 base/remote_gdb.cc
231
232 cpu/intr_control.cc
233
234 dev/alpha_console.cc
235 dev/baddev.cc
236 dev/simconsole.cc
237 dev/disk_image.cc
238 dev/dma.cc
239 dev/etherbus.cc
240 dev/etherdump.cc
241 dev/etherint.cc
242 dev/etherlink.cc
243 dev/etherpkt.cc
244 dev/ethertap.cc
245 dev/ide_ctrl.cc
246 dev/ide_disk.cc
247 dev/io_device.cc
248 dev/ns_gige.cc
249 dev/etherdev.cc
250 dev/pciconfigall.cc
251 dev/pcidev.cc
252 dev/pktfifo.cc
253 dev/scsi.cc
254 dev/scsi_ctrl.cc
255 dev/scsi_disk.cc
256 dev/scsi_none.cc
257 dev/sinic.cc
258 dev/simple_disk.cc
259 dev/tlaser_clock.cc
260 dev/tlaser_ipi.cc
261 dev/tlaser_mbox.cc
262 dev/tlaser_mc146818.cc
263 dev/tlaser_node.cc
264 dev/tlaser_pcia.cc
265 dev/tlaser_pcidev.cc
266 dev/tlaser_serial.cc
267 dev/turbolaser.cc
268 dev/tsunami.cc
269 dev/tsunami_cchip.cc
270 dev/tsunami_fake.cc
271 dev/tsunami_io.cc
272 dev/tsunami_pchip.cc
273 dev/uart.cc
274
275 kern/kernel_binning.cc
276 kern/kernel_stats.cc
277 kern/system_events.cc
278 kern/linux/linux_events.cc
279 kern/linux/linux_syscalls.cc
280 kern/linux/linux_system.cc
281 kern/linux/printk.cc
282 kern/tru64/dump_mbuf.cc
283 kern/tru64/printf.cc
284 kern/tru64/tru64_events.cc
285 kern/tru64/tru64_syscalls.cc
286 kern/tru64/tru64_system.cc
287
288 mem/functional_mem/memory_control.cc
289 mem/functional_mem/physical_memory.cc
290 dev/platform.cc
291
292 sim/system.cc
293 ''')
294
295 # Syscall emulation (non-full-system) sources
296 syscall_emulation_sources = Split('''
297 arch/alpha/alpha_common_syscall_emul.cc
298 arch/alpha/alpha_linux_process.cc
299 arch/alpha/alpha_tru64_process.cc
300 cpu/memtest/memtest.cc
301 cpu/trace/opt_cpu.cc
302 cpu/trace/trace_cpu.cc
303 eio/eio.cc
304 eio/exolex.cc
305 eio/libexo.cc
306 sim/process.cc
307 sim/syscall_emul.cc
308 ''')
309
310 targetarch_files = Split('''
311 alpha_common_syscall_emul.hh
312 alpha_linux_process.hh
313 alpha_memory.hh
314 alpha_tru64_process.hh
315 aout_machdep.h
316 arguments.hh
317 byte_swap.hh
318 ecoff_machdep.h
319 elf_machdep.h
320 ev5.hh
321 faults.hh
322 isa_fullsys_traits.hh
323 isa_traits.hh
324 machine_exo.h
325 osfpal.hh
326 pseudo_inst.hh
327 vptr.hh
328 vtophys.hh
329 ''')
330
331 for f in targetarch_files:
332 env.Command('targetarch/' + f, 'arch/alpha/' + f,
333 '''echo '#include "arch/alpha/%s"' > $TARGET''' % f)
334
335
336 # Set up complete list of sources based on configuration.
337 sources = base_sources
338
339 if env['FULL_SYSTEM']:
340 sources += full_system_sources
341 else:
342 sources += syscall_emulation_sources
343
344 extra_libraries = []
345 env.Append(LIBS=['z'])
346 if isdir('/usr/lib64/mysql') or isdir('/usr/lib/mysql') or \
347 isdir('/usr/local/lib/mysql'):
348 print 'Compiling with MySQL support!'
349 env.Append(LIBPATH=['/usr/lib64/mysql', '/usr/local/lib/mysql/',
350 '/usr/lib/mysql'])
351 env.Append(CPPPATH=['/usr/local/include/mysql', '/usr/include/mysql'])
352 sources += mysql_sources
353 env.Append(CPPDEFINES = 'USE_MYSQL')
354 env.Append(CPPDEFINES = 'STATS_BINNING')
355 env.Append(LIBS=['mysqlclient'])
356
357 ###################################################
358 #
359 # Special build rules.
360 #
361 ###################################################
362
363 # base/traceflags.{cc,hh} are generated from base/traceflags.py.
364 # $TARGET.base will expand to "<build-dir>/base/traceflags".
365 env.Command(Split('base/traceflags.hh base/traceflags.cc'),
366 'base/traceflags.py',
367 'python $SOURCE $TARGET.base')
368
369 # several files are generated from arch/$TARGET_ISA/isa_desc.
370 env.Command(Split('''arch/alpha/decoder.cc
371 arch/alpha/decoder.hh
372 arch/alpha/fast_cpu_exec.cc
373 arch/alpha/simple_cpu_exec.cc
374 arch/alpha/inorder_cpu_exec.cc
375 arch/alpha/full_cpu_exec.cc'''),
376 Split('''arch/alpha/isa_desc
377 arch/isa_parser.py'''),
378 '$SRCDIR/arch/isa_parser.py $SOURCE $TARGET.dir arch/alpha')
379
380
381 # libelf build is described in its own SConscript file.
382 # SConscript-local is the per-config build, which just copies some
383 # header files into a place where they can be found.
384 SConscript('libelf/SConscript-local', exports = 'env', duplicate=0)
385 SConscript('python/SConscript', exports = ['env'], duplicate=0)
386 SConscript('simobj/SConscript', exports = 'env', duplicate=0)
387
388 # This function adds the specified sources to the given build
389 # environment, and returns a list of all the corresponding SCons
390 # Object nodes (including an extra one for date.cc). We explicitly
391 # add the Object nodes so we can set up special dependencies for
392 # date.cc.
393 def make_objs(sources, env):
394 objs = [env.Object(s) for s in sources]
395 # make date.cc depend on all other objects so it always gets
396 # recompiled whenever anything else does
397 date_obj = env.Object('base/date.cc')
398 env.Depends(date_obj, objs)
399 objs.append(date_obj)
400 objs.extend(extra_libraries)
401 return objs
402
403 ###################################################
404 #
405 # Define binaries. Each different build type (debug, opt, etc.) gets
406 # a slightly different build environment.
407 #
408 ###################################################
409
410 # Include file paths are rooted in this directory. SCons will
411 # automatically expand '.' to refer to both the source directory and
412 # the corresponding build directory to pick up generated include
413 # files.
414 env.Append(CPPPATH='.')
415
416 # Debug binary
417 debug = env.Copy(OBJSUFFIX='.do')
418 debug.Append(CCFLAGS=Split('-g -gstabs+ -O0'))
419 debug.Append(CPPDEFINES='DEBUG')
420 debug.Program(target = 'm5.debug', source = make_objs(sources, debug))
421
422 # Optimized binary
423 opt = env.Copy()
424 opt.Append(CCFLAGS=Split('-g -O5'))
425 opt.Program(target = 'm5.opt', source = make_objs(sources, opt))
426
427 # "Fast" binary
428 fast = env.Copy(OBJSUFFIX='.fo')
429 fast.Append(CCFLAGS=Split('-O5'))
430 fast.Append(CPPDEFINES='NDEBUG')
431 fast.Program(target = 'm5.fast.unstripped', source = make_objs(sources, fast))
432 fast.Command(target = 'm5.fast', source = 'm5.fast.unstripped',
433 action = 'strip $SOURCE -o $TARGET')
434
435 # Profiled binary
436 prof = env.Copy(OBJSUFFIX='.po')
437 prof.Append(CCFLAGS=Split('-O5 -g -pg'), LINKFLAGS='-pg')
438 prof.Program(target = 'm5.prof', source = make_objs(sources, prof))