SConscript revision 2410
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 333583Sbinkertn@umich.edu# 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/Abase_sources = Split(''' 47955SN/A arch/alpha/decoder.cc 482023SN/A arch/alpha/faults.cc 49955SN/A arch/alpha/isa_traits.cc 503089Ssaidi@eecs.umich.edu 51955SN/A base/circlebuf.cc 52955SN/A base/copyright.cc 53955SN/A base/cprintf.cc 54955SN/A base/embedfile.cc 55955SN/A base/fast_alloc.cc 56955SN/A base/fifo_buffer.cc 57955SN/A base/hostinfo.cc 58955SN/A base/hybrid_pred.cc 591031SN/A base/inifile.cc 60955SN/A base/intmath.cc 611388SN/A base/match.cc 62955SN/A base/misc.cc 63955SN/A base/output.cc 641296SN/A base/pollevent.cc 653960Sgblack@eecs.umich.edu base/range.cc 66955SN/A base/random.cc 67955SN/A base/sat_counter.cc 68955SN/A base/socket.cc 69955SN/A base/statistics.cc 70955SN/A base/str.cc 71955SN/A base/time.cc 72955SN/A base/trace.cc 73955SN/A base/traceflags.cc 74955SN/A base/userinfo.cc 75955SN/A base/compression/lzss_compression.cc 76955SN/A base/loader/aout_object.cc 77955SN/A base/loader/ecoff_object.cc 783584Ssaidi@eecs.umich.edu base/loader/elf_object.cc 79955SN/A base/loader/object_file.cc 80955SN/A base/loader/symtab.cc 81955SN/A base/stats/events.cc 82955SN/A base/stats/statdb.cc 83955SN/A base/stats/visit.cc 84955SN/A base/stats/text.cc 85955SN/A 862325SN/A cpu/base.cc 871717SN/A cpu/exec_context.cc 882652Ssaidi@eecs.umich.edu cpu/exetrace.cc 89955SN/A cpu/op_class.cc 902736Sktlim@umich.edu cpu/pc_event.cc 912410SN/A cpu/static_inst.cc 92955SN/A cpu/sampler/sampler.cc 932290SN/A 94955SN/A mem/memory.cc 952683Sktlim@umich.edu mem/page_table.cc 962683Sktlim@umich.edu mem/physical.cc 972669Sktlim@umich.edu mem/port.cc 982568SN/A mem/translating_port.cc 992568SN/A 1003012Ssaidi@eecs.umich.edu python/pyconfig.cc 1012462SN/A python/embedded_py.cc 1022568SN/A 1032395SN/A sim/builder.cc 1042405SN/A sim/configfile.cc 1052914Ssaidi@eecs.umich.edu sim/debug.cc 106955SN/A sim/eventq.cc 1072811Srdreslin@umich.edu sim/main.cc 1082811Srdreslin@umich.edu sim/param.cc 1092811Srdreslin@umich.edu sim/profile.cc 1102811Srdreslin@umich.edu sim/root.cc 1112811Srdreslin@umich.edu sim/serialize.cc 1123719Sstever@eecs.umich.edu sim/sim_events.cc 1132811Srdreslin@umich.edu sim/sim_exit.cc 1142811Srdreslin@umich.edu sim/sim_object.cc 1152811Srdreslin@umich.edu sim/startup.cc 1162811Srdreslin@umich.edu sim/stat_context.cc 1172811Srdreslin@umich.edu sim/stat_control.cc 1182811Srdreslin@umich.edu sim/system.cc 1192811Srdreslin@umich.edu sim/trace_context.cc 1202811Srdreslin@umich.edu ''') 1212811Srdreslin@umich.edu 1222811Srdreslin@umich.edufast_cpu_sources = Split(''' 1232811Srdreslin@umich.edu arch/alpha/fast_cpu_exec.cc 1242814Srdreslin@umich.edu cpu/fast/cpu.cc 1252811Srdreslin@umich.edu ''') 1262811Srdreslin@umich.edu 1272811Srdreslin@umich.edusimple_cpu_sources = Split(''' 1282811Srdreslin@umich.edu arch/alpha/simple_cpu_exec.cc 1292811Srdreslin@umich.edu cpu/simple/cpu.cc 1302811Srdreslin@umich.edu ''') 1312811Srdreslin@umich.edu 1322813Srdreslin@umich.edutrace_reader_sources = Split(''' 1332813Srdreslin@umich.edu cpu/trace/reader/mem_trace_reader.cc 1343645Sbinkertn@umich.edu cpu/trace/reader/ibm_reader.cc 1353624Sbinkertn@umich.edu cpu/trace/reader/itx_reader.cc 1363624Sbinkertn@umich.edu cpu/trace/reader/m5_reader.cc 137955SN/A cpu/trace/opt_cpu.cc 138955SN/A cpu/trace/trace_cpu.cc 139955SN/A ''') 1402090SN/A 141955SN/Afull_cpu_sources = Split(''' 142955SN/A arch/alpha/full_cpu_exec.cc 1431696SN/A cpu/base_dyn_inst.cc 144955SN/A encumbered/cpu/full/bpred.cc 145955SN/A encumbered/cpu/full/commit.cc 146955SN/A encumbered/cpu/full/cpu.cc 1471127SN/A encumbered/cpu/full/create_vector.cc 148955SN/A encumbered/cpu/full/cv_spec_state.cc 149955SN/A encumbered/cpu/full/dd_queue.cc 1502379SN/A encumbered/cpu/full/dep_link.cc 151955SN/A encumbered/cpu/full/dispatch.cc 152955SN/A encumbered/cpu/full/dyn_inst.cc 153955SN/A encumbered/cpu/full/execute.cc 1542422SN/A encumbered/cpu/full/fetch.cc 1552422SN/A encumbered/cpu/full/floss_reasons.cc 1562422SN/A encumbered/cpu/full/inst_fifo.cc 1572422SN/A encumbered/cpu/full/instpipe.cc 1582422SN/A encumbered/cpu/full/issue.cc 1592422SN/A encumbered/cpu/full/ls_queue.cc 1602422SN/A encumbered/cpu/full/machine_queue.cc 1612397SN/A encumbered/cpu/full/pipetrace.cc 1622397SN/A encumbered/cpu/full/readyq.cc 1632422SN/A encumbered/cpu/full/reg_info.cc 1642422SN/A encumbered/cpu/full/rob_station.cc 165955SN/A encumbered/cpu/full/spec_memory.cc 166955SN/A encumbered/cpu/full/spec_state.cc 167955SN/A encumbered/cpu/full/storebuffer.cc 168955SN/A encumbered/cpu/full/writeback.cc 169955SN/A encumbered/cpu/full/iq/iq_station.cc 170955SN/A encumbered/cpu/full/iq/iqueue.cc 171955SN/A encumbered/cpu/full/iq/segmented/chain_info.cc 172955SN/A encumbered/cpu/full/iq/segmented/chain_wire.cc 1731078SN/A encumbered/cpu/full/iq/segmented/iq_seg.cc 174955SN/A encumbered/cpu/full/iq/segmented/iq_segmented.cc 175955SN/A encumbered/cpu/full/iq/segmented/seg_chain.cc 176955SN/A encumbered/cpu/full/iq/seznec/iq_seznec.cc 1771917SN/A encumbered/cpu/full/iq/standard/iq_standard.cc 178955SN/A ''') 179955SN/A 1801730SN/Ao3_cpu_sources = Split(''' 181955SN/A arch/alpha/alpha_o3_exec.cc 1822521SN/A cpu/o3/2bit_local_pred.cc 1832521SN/A cpu/o3/alpha_dyn_inst.cc 1842507SN/A cpu/o3/alpha_cpu.cc 1852507SN/A cpu/o3/alpha_cpu_builder.cc 1862989Ssaidi@eecs.umich.edu cpu/o3/bpred_unit.cc 1873408Ssaidi@eecs.umich.edu cpu/o3/btb.cc 1882507SN/A cpu/o3/commit.cc 1892507SN/A cpu/o3/decode.cc 1902507SN/A cpu/o3/fetch.cc 191955SN/A cpu/o3/free_list.cc 192955SN/A cpu/o3/cpu.cc 193955SN/A cpu/o3/iew.cc 194955SN/A cpu/o3/inst_queue.cc 195955SN/A cpu/o3/ldstq.cc 196955SN/A cpu/o3/mem_dep_unit.cc 197955SN/A cpu/o3/ras.cc 198955SN/A cpu/o3/rename.cc 1992520SN/A cpu/o3/rename_map.cc 2002517SN/A cpu/o3/rob.cc 2012253SN/A cpu/o3/sat_counter.cc 2022253SN/A cpu/o3/store_set.cc 2032253SN/A cpu/o3/tournament_pred.cc 2042253SN/A ''') 2052553SN/A 2062553SN/A# MySql sources 2072553SN/Amysql_sources = Split(''' 2082553SN/A base/mysql.cc 2092507SN/A base/stats/mysql.cc 2102400SN/A ''') 2112400SN/A 212955SN/A# Full-system sources 213955SN/Afull_system_sources = Split(''' 2142667Sstever@eecs.umich.edu arch/alpha/alpha_memory.cc 2152667Sstever@eecs.umich.edu arch/alpha/arguments.cc 2162667Sstever@eecs.umich.edu arch/alpha/ev5.cc 2172667Sstever@eecs.umich.edu arch/alpha/osfpal.cc 2182667Sstever@eecs.umich.edu arch/alpha/pseudo_inst.cc 2192667Sstever@eecs.umich.edu arch/alpha/stacktrace.cc 2202037SN/A arch/alpha/vtophys.cc 2212037SN/A 2222037SN/A base/crc.cc 2233534Sgblack@eecs.umich.edu base/inet.cc 2242139SN/A base/remote_gdb.cc 2253534Sgblack@eecs.umich.edu 2263534Sgblack@eecs.umich.edu cpu/intr_control.cc 2273542Sgblack@eecs.umich.edu cpu/profile.cc 2283583Sbinkertn@umich.edu 2293583Sbinkertn@umich.edu dev/alpha_console.cc 2303542Sgblack@eecs.umich.edu dev/baddev.cc 2313499Ssaidi@eecs.umich.edu dev/simconsole.cc 2323583Sbinkertn@umich.edu dev/disk_image.cc 2333583Sbinkertn@umich.edu dev/etherbus.cc 2343547Sgblack@eecs.umich.edu dev/etherdump.cc 2352155SN/A dev/etherint.cc 236955SN/A dev/etherlink.cc 2372155SN/A dev/etherpkt.cc 238955SN/A dev/ethertap.cc 2393583Sbinkertn@umich.edu dev/ide_ctrl.cc 2403583Sbinkertn@umich.edu dev/ide_disk.cc 2413583Sbinkertn@umich.edu dev/io_device.cc 2423583Sbinkertn@umich.edu dev/ns_gige.cc 2433583Sbinkertn@umich.edu dev/pciconfigall.cc 244955SN/A dev/pcidev.cc 245955SN/A dev/pcifake.cc 246955SN/A dev/pktfifo.cc 247955SN/A dev/platform.cc 248955SN/A dev/sinic.cc 2491858SN/A dev/simple_disk.cc 250955SN/A dev/tsunami.cc 2511858SN/A dev/tsunami_cchip.cc 2521858SN/A dev/isa_fake.cc 2531858SN/A dev/tsunami_io.cc 2541085SN/A dev/tsunami_pchip.cc 255955SN/A dev/uart.cc 256955SN/A dev/uart8250.cc 257955SN/A 258955SN/A kern/kernel_binning.cc 259955SN/A kern/kernel_stats.cc 260955SN/A kern/system_events.cc 261955SN/A kern/freebsd/freebsd_system.cc 262955SN/A kern/linux/linux_syscalls.cc 263955SN/A kern/linux/linux_system.cc 264955SN/A kern/linux/printk.cc 265955SN/A kern/tru64/dump_mbuf.cc 266955SN/A kern/tru64/printf.cc 2672667Sstever@eecs.umich.edu kern/tru64/tru64_events.cc 2681045SN/A kern/tru64/tru64_syscalls.cc 269955SN/A kern/tru64/tru64_system.cc 270955SN/A 271955SN/A mem/functional/memory_control.cc 272955SN/A ''') 2731108SN/A 274955SN/A# turbolaser encumbered sources 275955SN/Aturbolaser_sources = Split(''' 276955SN/A encumbered/dev/dma.cc 277955SN/A encumbered/dev/etherdev.cc 278955SN/A encumbered/dev/scsi.cc 279955SN/A encumbered/dev/scsi_ctrl.cc 280955SN/A encumbered/dev/scsi_disk.cc 281955SN/A encumbered/dev/scsi_none.cc 282955SN/A encumbered/dev/tlaser_clock.cc 283955SN/A encumbered/dev/tlaser_ipi.cc 284955SN/A encumbered/dev/tlaser_mbox.cc 285955SN/A encumbered/dev/tlaser_mc146818.cc 286955SN/A encumbered/dev/tlaser_node.cc 287955SN/A encumbered/dev/tlaser_pcia.cc 288955SN/A encumbered/dev/tlaser_pcidev.cc 289955SN/A encumbered/dev/tlaser_serial.cc 2902655Sstever@eecs.umich.edu encumbered/dev/turbolaser.cc 2912655Sstever@eecs.umich.edu encumbered/dev/uart8530.cc 2922655Sstever@eecs.umich.edu ''') 2932655Sstever@eecs.umich.edu 2942655Sstever@eecs.umich.edu# Syscall emulation (non-full-system) sources 2952655Sstever@eecs.umich.edusyscall_emulation_sources = Split(''' 2962655Sstever@eecs.umich.edu arch/alpha/alpha_common_syscall_emul.cc 2972655Sstever@eecs.umich.edu arch/alpha/alpha_linux_process.cc 2982655Sstever@eecs.umich.edu arch/alpha/alpha_tru64_process.cc 2992655Sstever@eecs.umich.edu 3002655Sstever@eecs.umich.edu encumbered/eio/exolex.cc 3012655Sstever@eecs.umich.edu encumbered/eio/libexo.cc 3022655Sstever@eecs.umich.edu sim/process.cc 3032655Sstever@eecs.umich.edu sim/syscall_emul.cc 3042655Sstever@eecs.umich.edu ''') 3052655Sstever@eecs.umich.edu 3062655Sstever@eecs.umich.edueio_sources = Split(''' 3072655Sstever@eecs.umich.edu encumbered/eio/eio.cc 3082655Sstever@eecs.umich.edu ''') 3092655Sstever@eecs.umich.edu 3102655Sstever@eecs.umich.edumemtest_sources = Split(''' 3112655Sstever@eecs.umich.edu cpu/memtest/memtest.cc 312955SN/A ''') 3133515Ssaidi@eecs.umich.edu 3143515Ssaidi@eecs.umich.edutargetarch_files = Split(''' 3153515Ssaidi@eecs.umich.edu alpha_common_syscall_emul.hh 3163515Ssaidi@eecs.umich.edu alpha_linux_process.hh 3173515Ssaidi@eecs.umich.edu alpha_memory.hh 3183515Ssaidi@eecs.umich.edu alpha_tru64_process.hh 3193515Ssaidi@eecs.umich.edu aout_machdep.h 3202655Sstever@eecs.umich.edu arguments.hh 3213515Ssaidi@eecs.umich.edu byte_swap.hh 3223619Sbinkertn@umich.edu ecoff_machdep.h 323955SN/A ev5.hh 324955SN/A faults.hh 3252655Sstever@eecs.umich.edu isa_fullsys_traits.hh 3263619Sbinkertn@umich.edu isa_traits.hh 3273619Sbinkertn@umich.edu osfpal.hh 328955SN/A pseudo_inst.hh 329955SN/A stacktrace.hh 3302655Sstever@eecs.umich.edu vptr.hh 3312655Sstever@eecs.umich.edu vtophys.hh 3323619Sbinkertn@umich.edu ''') 333955SN/A 334955SN/Afor f in targetarch_files: 3352655Sstever@eecs.umich.edu env.Command('targetarch/' + f, 'arch/alpha/' + f, 3362655Sstever@eecs.umich.edu '''echo '#include "arch/alpha/%s"' > $TARGET''' % f) 3373683Sstever@eecs.umich.edu 3382655Sstever@eecs.umich.edu 3391869SN/A# Set up complete list of sources based on configuration. 3401869SN/Asources = base_sources + simple_cpu_sources 341 342if env['FULL_SYSTEM']: 343 sources += full_system_sources 344 if env['ALPHA_TLASER']: 345 sources += turbolaser_sources 346else: 347 sources += syscall_emulation_sources 348 349if env['USE_MYSQL']: 350 sources += mysql_sources 351 352for opt in env.ExportOptions: 353 env.ConfigFile(opt) 354 355################################################### 356# 357# Special build rules. 358# 359################################################### 360 361# base/traceflags.{cc,hh} are generated from base/traceflags.py. 362# $TARGET.base will expand to "<build-dir>/base/traceflags". 363env.Command(Split('base/traceflags.hh base/traceflags.cc'), 364 'base/traceflags.py', 365 'python $SOURCE $TARGET.base') 366 367# several files are generated from arch/$TARGET_ISA/isa_desc. 368env.Command(Split('''arch/alpha/decoder.cc 369 arch/alpha/decoder.hh 370 arch/alpha/alpha_o3_exec.cc 371 arch/alpha/fast_cpu_exec.cc 372 arch/alpha/simple_cpu_exec.cc'''), 373 Split('''arch/alpha/isa_desc 374 arch/isa_parser.py'''), 375 '$SRCDIR/arch/isa_parser.py $SOURCE $TARGET.dir arch/alpha') 376 377 378# libelf build is described in its own SConscript file. 379# SConscript-local is the per-config build, which just copies some 380# header files into a place where they can be found. 381SConscript('libelf/SConscript-local', exports = 'env', duplicate=0) 382SConscript('python/SConscript', exports = ['env'], duplicate=0) 383 384# This function adds the specified sources to the given build 385# environment, and returns a list of all the corresponding SCons 386# Object nodes (including an extra one for date.cc). We explicitly 387# add the Object nodes so we can set up special dependencies for 388# date.cc. 389def make_objs(sources, env): 390 objs = [env.Object(s) for s in sources] 391 # make date.cc depend on all other objects so it always gets 392 # recompiled whenever anything else does 393 date_obj = env.Object('base/date.cc') 394 env.Depends(date_obj, objs) 395 objs.append(date_obj) 396 return objs 397 398################################################### 399# 400# Define binaries. Each different build type (debug, opt, etc.) gets 401# a slightly different build environment. 402# 403################################################### 404 405# Include file paths are rooted in this directory. SCons will 406# automatically expand '.' to refer to both the source directory and 407# the corresponding build directory to pick up generated include 408# files. 409env.Append(CPPPATH='.') 410 411# Debug binary 412debugEnv = env.Copy(OBJSUFFIX='.do') 413debugEnv.Label = 'debug' 414debugEnv.Append(CCFLAGS=Split('-g -gstabs+ -O0')) 415debugEnv.Append(CPPDEFINES='DEBUG') 416tlist = debugEnv.Program(target = 'm5.debug', 417 source = make_objs(sources, debugEnv)) 418debugEnv.M5Binary = tlist[0] 419 420# Optimized binary 421optEnv = env.Copy() 422optEnv.Label = 'opt' 423optEnv.Append(CCFLAGS=Split('-g -O5')) 424tlist = optEnv.Program(target = 'm5.opt', 425 source = make_objs(sources, optEnv)) 426optEnv.M5Binary = tlist[0] 427 428# "Fast" binary 429fastEnv = env.Copy(OBJSUFFIX='.fo') 430fastEnv.Label = 'fast' 431fastEnv.Append(CCFLAGS=Split('-O5')) 432fastEnv.Append(CPPDEFINES='NDEBUG') 433fastEnv.Program(target = 'm5.fast.unstripped', 434 source = make_objs(sources, fastEnv)) 435tlist = fastEnv.Command(target = 'm5.fast', 436 source = 'm5.fast.unstripped', 437 action = 'strip $SOURCE -o $TARGET') 438fastEnv.M5Binary = tlist[0] 439 440# Profiled binary 441profEnv = env.Copy(OBJSUFFIX='.po') 442profEnv.Label = 'prof' 443profEnv.Append(CCFLAGS=Split('-O5 -g -pg'), LINKFLAGS='-pg') 444tlist = profEnv.Program(target = 'm5.prof', 445 source = make_objs(sources, profEnv)) 446profEnv.M5Binary = tlist[0] 447 448envList = [debugEnv, optEnv, fastEnv, profEnv] 449 450Return('envList') 451