SConscript revision 2520
1955SN/A# -*- mode:python -*-
2955SN/A
31762SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan
4955SN/A# All rights reserved.
5955SN/A#
6955SN/A# Redistribution and use in source and binary forms, with or without
7955SN/A# modification, are permitted provided that the following conditions are
8955SN/A# met: redistributions of source code must retain the above copyright
9955SN/A# notice, this list of conditions and the following disclaimer;
10955SN/A# redistributions in binary form must reproduce the above copyright
11955SN/A# notice, this list of conditions and the following disclaimer in the
12955SN/A# documentation and/or other materials provided with the distribution;
13955SN/A# neither the name of the copyright holders nor the names of its
14955SN/A# contributors may be used to endorse or promote products derived from
15955SN/A# this software without specific prior written permission.
16955SN/A#
17955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282665Ssaidi@eecs.umich.edu
292665Ssaidi@eecs.umich.eduimport os
30955SN/Aimport sys
31955SN/Afrom os.path import isdir
32955SN/A
331608SN/A# This file defines how to build a particular configuration of M5
34955SN/A# based on variable settings in the 'env' build environment.
35955SN/A
36955SN/A# Import build environment variable from SConstruct.
37955SN/AImport('env')
38955SN/A
39955SN/A###################################################
40955SN/A#
41955SN/A# Define needed sources.
42955SN/A#
43955SN/A###################################################
44955SN/A
45955SN/A# Base sources used by all configurations.
46955SN/A
47955SN/Abase_sources = Split('''
482023SN/A	base/circlebuf.cc
49955SN/A	base/copyright.cc
50955SN/A	base/cprintf.cc
51955SN/A        base/embedfile.cc
52955SN/A	base/fast_alloc.cc
53955SN/A	base/fifo_buffer.cc
54955SN/A	base/hostinfo.cc
55955SN/A	base/hybrid_pred.cc
56955SN/A	base/inifile.cc
57955SN/A	base/intmath.cc
581031SN/A	base/match.cc
59955SN/A	base/misc.cc
601388SN/A	base/output.cc
61955SN/A	base/pollevent.cc
62955SN/A	base/range.cc
631296SN/A	base/random.cc
64955SN/A	base/sat_counter.cc
652609SN/A	base/socket.cc
66955SN/A	base/statistics.cc
67955SN/A	base/str.cc
68955SN/A	base/time.cc
69955SN/A	base/trace.cc
70955SN/A	base/traceflags.cc
71955SN/A	base/userinfo.cc
72955SN/A	base/compression/lzss_compression.cc
73955SN/A	base/loader/aout_object.cc
74955SN/A	base/loader/ecoff_object.cc
75955SN/A	base/loader/elf_object.cc
76955SN/A	base/loader/object_file.cc
77955SN/A	base/loader/symtab.cc
78955SN/A	base/stats/events.cc
79955SN/A	base/stats/statdb.cc
80955SN/A	base/stats/visit.cc
81955SN/A	base/stats/text.cc
82955SN/A
83955SN/A	cpu/base.cc
842325SN/A	cpu/cpu_exec_context.cc
851717SN/A	cpu/exetrace.cc
862652Ssaidi@eecs.umich.edu        cpu/op_class.cc
87955SN/A	cpu/pc_event.cc
882736Sktlim@umich.edu	cpu/static_inst.cc
892410SN/A        cpu/sampler/sampler.cc
90955SN/A
912290SN/A        mem/connector.cc
92955SN/A        mem/mem_object.cc
931717SN/A        mem/physical.cc
942683Sktlim@umich.edu        mem/port.cc
952683Sktlim@umich.edu        mem/bus.cc
962669Sktlim@umich.edu
972568SN/A        python/pyconfig.cc
982568SN/A        python/embedded_py.cc
992462SN/A
1002568SN/A	sim/builder.cc
1012395SN/A	sim/configfile.cc
1022405SN/A	sim/debug.cc
103955SN/A	sim/eventq.cc
1042811Srdreslin@umich.edu	sim/faults.cc
1052811Srdreslin@umich.edu	sim/main.cc
1062811Srdreslin@umich.edu	sim/param.cc
1072811Srdreslin@umich.edu	sim/profile.cc
1082811Srdreslin@umich.edu	sim/root.cc
1092811Srdreslin@umich.edu	sim/serialize.cc
1102811Srdreslin@umich.edu	sim/sim_events.cc
1112811Srdreslin@umich.edu	sim/sim_exit.cc
1122811Srdreslin@umich.edu	sim/sim_object.cc
1132811Srdreslin@umich.edu	sim/startup.cc
1142811Srdreslin@umich.edu	sim/stat_context.cc
1152811Srdreslin@umich.edu	sim/stat_control.cc
1162811Srdreslin@umich.edu	sim/system.cc
1172811Srdreslin@umich.edu	sim/trace_context.cc
1182811Srdreslin@umich.edu        ''')
1192811Srdreslin@umich.edu
1202811Srdreslin@umich.edu# Old FullCPU sources
1212811Srdreslin@umich.edufull_cpu_sources = Split('''
1222811Srdreslin@umich.edu	encumbered/cpu/full/bpred.cc
1232811Srdreslin@umich.edu	encumbered/cpu/full/commit.cc
1242811Srdreslin@umich.edu	encumbered/cpu/full/cpu.cc
1252811Srdreslin@umich.edu	encumbered/cpu/full/create_vector.cc
1262811Srdreslin@umich.edu	encumbered/cpu/full/cv_spec_state.cc
1272811Srdreslin@umich.edu	encumbered/cpu/full/dd_queue.cc
1282813Srdreslin@umich.edu	encumbered/cpu/full/dep_link.cc
1292813Srdreslin@umich.edu	encumbered/cpu/full/dispatch.cc
130955SN/A	encumbered/cpu/full/dyn_inst.cc
131955SN/A	encumbered/cpu/full/execute.cc
132955SN/A	encumbered/cpu/full/fetch.cc
1332090SN/A	encumbered/cpu/full/floss_reasons.cc
134955SN/A	encumbered/cpu/full/fu_pool.cc
1352763Sstever@eecs.umich.edu	encumbered/cpu/full/inst_fifo.cc
136955SN/A	encumbered/cpu/full/instpipe.cc
1371696SN/A	encumbered/cpu/full/issue.cc
138955SN/A	encumbered/cpu/full/ls_queue.cc
139955SN/A	encumbered/cpu/full/machine_queue.cc
140955SN/A        encumbered/cpu/full/pipetrace.cc
1411127SN/A        encumbered/cpu/full/readyq.cc
142955SN/A        encumbered/cpu/full/reg_info.cc
143955SN/A        encumbered/cpu/full/rob_station.cc
1442379SN/A        encumbered/cpu/full/spec_memory.cc
145955SN/A        encumbered/cpu/full/spec_state.cc
146955SN/A        encumbered/cpu/full/storebuffer.cc
147955SN/A        encumbered/cpu/full/writeback.cc
1482155SN/A        encumbered/cpu/full/iq/iq_station.cc
1492155SN/A        encumbered/cpu/full/iq/iqueue.cc
1502155SN/A        encumbered/cpu/full/iq/segmented/chain_info.cc
1512155SN/A        encumbered/cpu/full/iq/segmented/chain_wire.cc
1522155SN/A        encumbered/cpu/full/iq/segmented/iq_seg.cc
1532155SN/A        encumbered/cpu/full/iq/segmented/iq_segmented.cc
1542155SN/A        encumbered/cpu/full/iq/segmented/seg_chain.cc
1552155SN/A        encumbered/cpu/full/iq/seznec/iq_seznec.cc
1562155SN/A        encumbered/cpu/full/iq/standard/iq_standard.cc
1572155SN/A        ''')
1582155SN/A
1592155SN/Atrace_reader_sources = Split('''
1602155SN/A        cpu/trace/reader/mem_trace_reader.cc
1612155SN/A        cpu/trace/reader/ibm_reader.cc
1622155SN/A        cpu/trace/reader/itx_reader.cc
1632155SN/A        cpu/trace/reader/m5_reader.cc
1642155SN/A        cpu/trace/opt_cpu.cc
1652155SN/A        cpu/trace/trace_cpu.cc
1662155SN/A        ''')
1672155SN/A
1682155SN/A
1692155SN/A
1702155SN/A# MySql sources
1712155SN/Amysql_sources = Split('''
1722155SN/A	base/mysql.cc
1732155SN/A	base/stats/mysql.cc
1742155SN/A        ''')
1752155SN/A
1762155SN/A# Full-system sources
1772155SN/Afull_system_sources = Split('''
1782155SN/A	base/crc.cc
1792155SN/A	base/inet.cc
1802155SN/A	base/remote_gdb.cc
1812155SN/A
1822155SN/A	cpu/intr_control.cc
1832155SN/A        cpu/profile.cc
1842155SN/A
1852155SN/A	dev/alpha_console.cc
1862155SN/A	dev/baddev.cc
1872422SN/A        dev/simconsole.cc
1882422SN/A	dev/disk_image.cc
1892422SN/A	dev/etherbus.cc
1902422SN/A	dev/etherdump.cc
1912422SN/A	dev/etherint.cc
1922422SN/A	dev/etherlink.cc
1932422SN/A	dev/etherpkt.cc
1942397SN/A	dev/ethertap.cc
1952397SN/A	dev/ide_ctrl.cc
1962422SN/A	dev/ide_disk.cc
1972422SN/A	dev/io_device.cc
198955SN/A	dev/ns_gige.cc
199955SN/A	dev/pciconfigall.cc
200955SN/A	dev/pcidev.cc
201955SN/A	dev/pcifake.cc
202955SN/A	dev/pktfifo.cc
203955SN/A	dev/platform.cc
204955SN/A	dev/sinic.cc
205955SN/A	dev/simple_disk.cc
2061078SN/A	dev/tsunami.cc
207955SN/A	dev/tsunami_cchip.cc
208955SN/A	dev/isa_fake.cc
209955SN/A	dev/tsunami_io.cc
210955SN/A	dev/tsunami_pchip.cc
2111917SN/A	dev/uart.cc
212955SN/A	dev/uart8250.cc
213955SN/A
214955SN/A	kern/kernel_binning.cc
215955SN/A	kern/kernel_stats.cc
216974SN/A	kern/system_events.cc
217955SN/A	kern/linux/events.cc
218955SN/A	kern/linux/linux_syscalls.cc
219955SN/A	kern/linux/printk.cc
220955SN/A
2212566SN/A	mem/functional/memory_control.cc
2222566SN/A	sim/pseudo_inst.cc
223955SN/A        ''')
224955SN/A
2252539SN/Aif env['TARGET_ISA'] == 'alpha':
226955SN/A    full_system_sources += Split('''
227955SN/A	kern/tru64/dump_mbuf.cc
228955SN/A	kern/tru64/printf.cc
2291817SN/A	kern/tru64/tru64_events.cc
2301154SN/A	kern/tru64/tru64_syscalls.cc
2311840SN/A        ''')
2322522SN/A
2332522SN/A# turbolaser encumbered sources
2342629SN/Aturbolaser_sources = Split('''
235955SN/A	encumbered/dev/dma.cc
236955SN/A	encumbered/dev/etherdev.cc
237955SN/A	encumbered/dev/scsi.cc
2382539SN/A	encumbered/dev/scsi_ctrl.cc
239955SN/A	encumbered/dev/scsi_disk.cc
2402539SN/A	encumbered/dev/scsi_none.cc
241955SN/A	encumbered/dev/tlaser_clock.cc
2421730SN/A	encumbered/dev/tlaser_ipi.cc
243955SN/A	encumbered/dev/tlaser_mbox.cc
244955SN/A	encumbered/dev/tlaser_mc146818.cc
245955SN/A	encumbered/dev/tlaser_node.cc
2462212SN/A	encumbered/dev/tlaser_pcia.cc
247955SN/A	encumbered/dev/tlaser_pcidev.cc
2481040SN/A	encumbered/dev/tlaser_serial.cc
2492507SN/A	encumbered/dev/turbolaser.cc
2502521SN/A	encumbered/dev/uart8530.cc
2512521SN/A        ''')
2522507SN/A
2532507SN/A# Syscall emulation (non-full-system) sources
2542507SN/Asyscall_emulation_sources = Split('''
2552521SN/A        kern/linux/linux.cc
2562507SN/A        mem/translating_port.cc
2572507SN/A        mem/page_table.cc
258955SN/A	sim/process.cc
259955SN/A	sim/syscall_emul.cc
260955SN/A        ''')
261955SN/A
262955SN/Aif env['TARGET_ISA'] == 'alpha':
263955SN/A    syscall_emulation_sources += Split('''
2641742SN/A        kern/tru64/tru64.cc
2651742SN/A        ''')
2661742SN/A
2671742SN/Aalpha_eio_sources = Split('''
2681742SN/A	encumbered/eio/exolex.cc
2691742SN/A	encumbered/eio/libexo.cc
2701742SN/A	encumbered/eio/eio.cc
2711742SN/A        ''')
2721742SN/A
2731742SN/Aif env['TARGET_ISA'] == 'ALPHA_ISA':
2741742SN/A    syscall_emulation_sources += alpha_eio_sources
2751742SN/A    
2761742SN/Amemtest_sources = Split('''
2771742SN/A	cpu/memtest/memtest.cc
2781742SN/A        ''')
2791742SN/A
2801742SN/A# Add a flag defining what THE_ISA should be for all compilation
2811742SN/Aenv.Append(CPPDEFINES=[('THE_ISA','%s_ISA' % env['TARGET_ISA'].upper())])
2821742SN/A
2831742SN/Aarch_sources = SConscript('arch/SConscript',
284955SN/A                          exports = 'env', duplicate = False)
285955SN/A
2862520SN/Acpu_sources = SConscript('cpu/SConscript',
2872517SN/A                         exports = 'env', duplicate = False)
2882253SN/A
2892253SN/A# This is outside of cpu/SConscript since the source directory isn't
2902253SN/A# underneath 'cpu'.
2912253SN/Aif 'FullCPU' in env['CPU_MODELS']:
2922553SN/A    cpu_sources += full_cpu_sources
2932553SN/A
2942553SN/A# Set up complete list of sources based on configuration.
2952553SN/Asources = base_sources + arch_sources + cpu_sources
2962507SN/A
2972470SN/Aif env['FULL_SYSTEM']:
2981744SN/A    sources += full_system_sources
2991744SN/A    if env['ALPHA_TLASER']:
3002470SN/A        sources += turbolaser_sources
3012470SN/Aelse:
3022470SN/A    sources += syscall_emulation_sources
3032470SN/A
3042470SN/Aif env['USE_MYSQL']:
3052470SN/A    sources += mysql_sources
3062400SN/A
3072400SN/Afor opt in env.ExportOptions:
308955SN/A    env.ConfigFile(opt)
309955SN/A
3102667Sstever@eecs.umich.edu###################################################
3112667Sstever@eecs.umich.edu#
3122667Sstever@eecs.umich.edu# Special build rules.
3132667Sstever@eecs.umich.edu#
3142667Sstever@eecs.umich.edu###################################################
3152667Sstever@eecs.umich.edu
3162037SN/A# base/traceflags.{cc,hh} are generated from base/traceflags.py.
3172037SN/A# $TARGET.base will expand to "<build-dir>/base/traceflags".
3182037SN/Aenv.Command(Split('base/traceflags.hh base/traceflags.cc'),
3192667Sstever@eecs.umich.edu            'base/traceflags.py',
3202139SN/A            'python $SOURCE $TARGET.base')
3212667Sstever@eecs.umich.edu
3222155SN/A# libelf build is described in its own SConscript file.
3232155SN/A# SConscript-local is the per-config build, which just copies some
3242155SN/A# header files into a place where they can be found.
3252155SN/ASConscript('libelf/SConscript-local', exports = 'env', duplicate=0)
3262155SN/ASConscript('python/SConscript', exports = ['env'], duplicate=0)
3272155SN/A
328955SN/A# This function adds the specified sources to the given build
3292155SN/A# environment, and returns a list of all the corresponding SCons
330955SN/A# Object nodes (including an extra one for date.cc).  We explicitly
331955SN/A# add the Object nodes so we can set up special dependencies for
332955SN/A# date.cc.
3331742SN/Adef make_objs(sources, env):
3341742SN/A    objs = [env.Object(s) for s in sources]
335955SN/A    # make date.cc depend on all other objects so it always gets
336955SN/A    # recompiled whenever anything else does
337955SN/A    date_obj = env.Object('base/date.cc')
3381858SN/A    env.Depends(date_obj, objs)
339955SN/A    objs.append(date_obj)
3401858SN/A    return objs
3411858SN/A
3421858SN/A###################################################
3431085SN/A#
344955SN/A# Define binaries.  Each different build type (debug, opt, etc.) gets
345955SN/A# a slightly different build environment.
346955SN/A#
347955SN/A###################################################
348955SN/A
349955SN/A# Include file paths are rooted in this directory.  SCons will
350955SN/A# automatically expand '.' to refer to both the source directory and
351955SN/A# the corresponding build directory to pick up generated include
352955SN/A# files.
353955SN/Aenv.Append(CPPPATH='.')
354955SN/Aenv.Append(CPPPATH='./libelf')
355955SN/A
3562667Sstever@eecs.umich.edu# Debug binary
3571045SN/AdebugEnv = env.Copy(OBJSUFFIX='.do')
358955SN/AdebugEnv.Label = 'debug'
359955SN/AdebugEnv.Append(CCFLAGS=Split('-g -gstabs+ -O0'))
360955SN/AdebugEnv.Append(CPPDEFINES='DEBUG')
361955SN/Atlist = debugEnv.Program(target = 'm5.debug',
3621108SN/A                         source = make_objs(sources, debugEnv))
363955SN/AdebugEnv.M5Binary = tlist[0]
364955SN/A
365955SN/A# Optimized binary
366955SN/AoptEnv = env.Copy()
367955SN/AoptEnv.Label = 'opt'
368955SN/AoptEnv.Append(CCFLAGS=Split('-g -O5'))
369955SN/Atlist = optEnv.Program(target = 'm5.opt',
370955SN/A                       source = make_objs(sources, optEnv))
371955SN/AoptEnv.M5Binary = tlist[0]
372955SN/A
373955SN/A# "Fast" binary
374955SN/AfastEnv = env.Copy(OBJSUFFIX='.fo')
375955SN/AfastEnv.Label = 'fast'
376955SN/AfastEnv.Append(CCFLAGS=Split('-O5'))
377955SN/AfastEnv.Append(CPPDEFINES='NDEBUG')
378955SN/AfastEnv.Program(target = 'm5.fast.unstripped',
3792655Sstever@eecs.umich.edu                source = make_objs(sources, fastEnv))
3802655Sstever@eecs.umich.edutlist = fastEnv.Command(target = 'm5.fast',
3812655Sstever@eecs.umich.edu                        source = 'm5.fast.unstripped',
3822655Sstever@eecs.umich.edu                        action = 'strip $SOURCE -o $TARGET')
3832655Sstever@eecs.umich.edufastEnv.M5Binary = tlist[0]
3842655Sstever@eecs.umich.edu
3852655Sstever@eecs.umich.edu# Profiled binary
3862655Sstever@eecs.umich.eduprofEnv = env.Copy(OBJSUFFIX='.po')
3872655Sstever@eecs.umich.eduprofEnv.Label = 'prof'
3882655Sstever@eecs.umich.eduprofEnv.Append(CCFLAGS=Split('-O5 -g -pg'), LINKFLAGS='-pg')
3892655Sstever@eecs.umich.edutlist = profEnv.Program(target = 'm5.prof',
3902655Sstever@eecs.umich.edu                        source = make_objs(sources, profEnv))
3912655Sstever@eecs.umich.eduprofEnv.M5Binary = tlist[0]
3922655Sstever@eecs.umich.edu
3932655Sstever@eecs.umich.eduenvList = [debugEnv, optEnv, fastEnv, profEnv]
3942655Sstever@eecs.umich.edu
3952655Sstever@eecs.umich.eduReturn('envList')
3962655Sstever@eecs.umich.edu