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