SConscript revision 2379
112855Sgabeblack@google.com# -*- mode:python -*- 212855Sgabeblack@google.com 312855Sgabeblack@google.com# Copyright (c) 2004-2005 The Regents of The University of Michigan 412855Sgabeblack@google.com# All rights reserved. 512855Sgabeblack@google.com# 612855Sgabeblack@google.com# Redistribution and use in source and binary forms, with or without 712855Sgabeblack@google.com# modification, are permitted provided that the following conditions are 812855Sgabeblack@google.com# met: redistributions of source code must retain the above copyright 912855Sgabeblack@google.com# notice, this list of conditions and the following disclaimer; 1012855Sgabeblack@google.com# redistributions in binary form must reproduce the above copyright 1112855Sgabeblack@google.com# notice, this list of conditions and the following disclaimer in the 1212855Sgabeblack@google.com# documentation and/or other materials provided with the distribution; 1312855Sgabeblack@google.com# neither the name of the copyright holders nor the names of its 1412855Sgabeblack@google.com# contributors may be used to endorse or promote products derived from 1512855Sgabeblack@google.com# this software without specific prior written permission. 1612855Sgabeblack@google.com# 1712855Sgabeblack@google.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 1812855Sgabeblack@google.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 1912855Sgabeblack@google.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 2012855Sgabeblack@google.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 2112855Sgabeblack@google.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 2212855Sgabeblack@google.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 2312855Sgabeblack@google.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 2412855Sgabeblack@google.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 2512855Sgabeblack@google.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 2612855Sgabeblack@google.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 2712855Sgabeblack@google.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 2812855Sgabeblack@google.com 2912855Sgabeblack@google.comimport os 3012855Sgabeblack@google.comimport sys 3112855Sgabeblack@google.comfrom os.path import isdir 3212855Sgabeblack@google.com 3312855Sgabeblack@google.com# This file defines how to build a particular configuration of M5 3412855Sgabeblack@google.com# based on variable settings in the 'env' build environment. 3512855Sgabeblack@google.com 3612855Sgabeblack@google.com# Import build environment variable from SConstruct. 3712855Sgabeblack@google.comImport('env') 3812855Sgabeblack@google.com 3912855Sgabeblack@google.com################################################### 4012855Sgabeblack@google.com# 4112855Sgabeblack@google.com# Define needed sources. 4212855Sgabeblack@google.com# 4312855Sgabeblack@google.com################################################### 4412855Sgabeblack@google.com 4512855Sgabeblack@google.com# Base sources used by all configurations. 4612855Sgabeblack@google.combase_sources = Split(''' 4712855Sgabeblack@google.com arch/alpha/decoder.cc 4812855Sgabeblack@google.com arch/alpha/alpha_o3_exec.cc 4912855Sgabeblack@google.com arch/alpha/fast_cpu_exec.cc 5012855Sgabeblack@google.com arch/alpha/simple_cpu_exec.cc 5112855Sgabeblack@google.com arch/alpha/full_cpu_exec.cc 5212855Sgabeblack@google.com arch/alpha/faults.cc 5312855Sgabeblack@google.com arch/alpha/isa_traits.cc 5412855Sgabeblack@google.com 5512855Sgabeblack@google.com base/circlebuf.cc 5612855Sgabeblack@google.com base/copyright.cc 5712855Sgabeblack@google.com base/cprintf.cc 5812855Sgabeblack@google.com base/embedfile.cc 5912855Sgabeblack@google.com base/fast_alloc.cc 6012855Sgabeblack@google.com base/fifo_buffer.cc 6112855Sgabeblack@google.com base/hostinfo.cc 6212855Sgabeblack@google.com base/hybrid_pred.cc 6312855Sgabeblack@google.com base/inifile.cc 6412855Sgabeblack@google.com base/intmath.cc 6512855Sgabeblack@google.com base/match.cc 6612855Sgabeblack@google.com base/misc.cc 6712855Sgabeblack@google.com base/output.cc 6812855Sgabeblack@google.com base/pollevent.cc 6912855Sgabeblack@google.com base/range.cc 7012855Sgabeblack@google.com base/random.cc 7112855Sgabeblack@google.com base/sat_counter.cc 7212855Sgabeblack@google.com base/socket.cc 7312855Sgabeblack@google.com base/statistics.cc 7412855Sgabeblack@google.com base/str.cc 7512855Sgabeblack@google.com base/time.cc 7612855Sgabeblack@google.com base/trace.cc 7712855Sgabeblack@google.com base/traceflags.cc 7812855Sgabeblack@google.com base/userinfo.cc 7912855Sgabeblack@google.com base/compression/lzss_compression.cc 8012855Sgabeblack@google.com base/loader/aout_object.cc 8112855Sgabeblack@google.com base/loader/ecoff_object.cc 8212855Sgabeblack@google.com base/loader/elf_object.cc 8312855Sgabeblack@google.com base/loader/object_file.cc 8412855Sgabeblack@google.com base/loader/symtab.cc 8512855Sgabeblack@google.com base/stats/events.cc 8612855Sgabeblack@google.com base/stats/statdb.cc 8712855Sgabeblack@google.com base/stats/visit.cc 8812855Sgabeblack@google.com base/stats/text.cc 8912855Sgabeblack@google.com 9012855Sgabeblack@google.com cpu/base.cc 9112855Sgabeblack@google.com cpu/base_dyn_inst.cc 9212855Sgabeblack@google.com cpu/exec_context.cc 9312855Sgabeblack@google.com cpu/exetrace.cc 9412855Sgabeblack@google.com cpu/pc_event.cc 9512855Sgabeblack@google.com cpu/static_inst.cc 9612855Sgabeblack@google.com cpu/o3/2bit_local_pred.cc 9712855Sgabeblack@google.com cpu/o3/alpha_dyn_inst.cc 9812855Sgabeblack@google.com cpu/o3/alpha_cpu.cc 9912855Sgabeblack@google.com cpu/o3/alpha_cpu_builder.cc 10012855Sgabeblack@google.com cpu/o3/bpred_unit.cc 10112855Sgabeblack@google.com cpu/o3/btb.cc 10212855Sgabeblack@google.com cpu/o3/commit.cc 10312855Sgabeblack@google.com cpu/o3/decode.cc 10412855Sgabeblack@google.com cpu/o3/fetch.cc 10512855Sgabeblack@google.com cpu/o3/free_list.cc 10612855Sgabeblack@google.com cpu/o3/cpu.cc 10712855Sgabeblack@google.com cpu/o3/iew.cc 10812855Sgabeblack@google.com cpu/o3/inst_queue.cc 10912855Sgabeblack@google.com cpu/o3/ldstq.cc 11012855Sgabeblack@google.com cpu/o3/mem_dep_unit.cc 11112855Sgabeblack@google.com cpu/o3/ras.cc 11212855Sgabeblack@google.com cpu/o3/rename.cc 11312855Sgabeblack@google.com cpu/o3/rename_map.cc 11412855Sgabeblack@google.com cpu/o3/rob.cc 11512855Sgabeblack@google.com cpu/o3/sat_counter.cc 11612855Sgabeblack@google.com cpu/o3/store_set.cc 11712855Sgabeblack@google.com cpu/o3/tournament_pred.cc 11812855Sgabeblack@google.com cpu/fast/cpu.cc 11912855Sgabeblack@google.com cpu/sampler/sampler.cc 12012855Sgabeblack@google.com cpu/simple/cpu.cc 12112855Sgabeblack@google.com cpu/trace/reader/mem_trace_reader.cc 12212855Sgabeblack@google.com cpu/trace/reader/ibm_reader.cc 12312855Sgabeblack@google.com cpu/trace/reader/itx_reader.cc 12412855Sgabeblack@google.com cpu/trace/reader/m5_reader.cc 12512855Sgabeblack@google.com cpu/trace/opt_cpu.cc 12612855Sgabeblack@google.com cpu/trace/trace_cpu.cc 12712855Sgabeblack@google.com 12812855Sgabeblack@google.com encumbered/cpu/full/bpred.cc 12912855Sgabeblack@google.com encumbered/cpu/full/commit.cc 13012855Sgabeblack@google.com encumbered/cpu/full/cpu.cc 13112855Sgabeblack@google.com encumbered/cpu/full/create_vector.cc 13212855Sgabeblack@google.com encumbered/cpu/full/cv_spec_state.cc 13312855Sgabeblack@google.com encumbered/cpu/full/dd_queue.cc 13412855Sgabeblack@google.com encumbered/cpu/full/dep_link.cc 13512855Sgabeblack@google.com encumbered/cpu/full/dispatch.cc 13612855Sgabeblack@google.com encumbered/cpu/full/dyn_inst.cc 13712855Sgabeblack@google.com encumbered/cpu/full/execute.cc 13812855Sgabeblack@google.com encumbered/cpu/full/fetch.cc 13912855Sgabeblack@google.com encumbered/cpu/full/floss_reasons.cc 14012855Sgabeblack@google.com encumbered/cpu/full/fu_pool.cc 14112855Sgabeblack@google.com encumbered/cpu/full/inst_fifo.cc 14212855Sgabeblack@google.com encumbered/cpu/full/instpipe.cc 14312855Sgabeblack@google.com encumbered/cpu/full/issue.cc 14412855Sgabeblack@google.com encumbered/cpu/full/ls_queue.cc 14512855Sgabeblack@google.com encumbered/cpu/full/machine_queue.cc 14612855Sgabeblack@google.com encumbered/cpu/full/pipetrace.cc 14712855Sgabeblack@google.com encumbered/cpu/full/readyq.cc 14812855Sgabeblack@google.com encumbered/cpu/full/reg_info.cc 14912855Sgabeblack@google.com encumbered/cpu/full/rob_station.cc 15012855Sgabeblack@google.com encumbered/cpu/full/spec_memory.cc 15112855Sgabeblack@google.com encumbered/cpu/full/spec_state.cc 15212855Sgabeblack@google.com encumbered/cpu/full/storebuffer.cc 15312855Sgabeblack@google.com encumbered/cpu/full/writeback.cc 15412855Sgabeblack@google.com encumbered/cpu/full/iq/iq_station.cc 15512855Sgabeblack@google.com encumbered/cpu/full/iq/iqueue.cc 15612855Sgabeblack@google.com encumbered/cpu/full/iq/segmented/chain_info.cc 15712855Sgabeblack@google.com encumbered/cpu/full/iq/segmented/chain_wire.cc 15812855Sgabeblack@google.com encumbered/cpu/full/iq/segmented/iq_seg.cc 15912855Sgabeblack@google.com encumbered/cpu/full/iq/segmented/iq_segmented.cc 16012855Sgabeblack@google.com encumbered/cpu/full/iq/segmented/seg_chain.cc 16112855Sgabeblack@google.com encumbered/cpu/full/iq/seznec/iq_seznec.cc 16212855Sgabeblack@google.com encumbered/cpu/full/iq/standard/iq_standard.cc 16312855Sgabeblack@google.com encumbered/mem/functional/main.cc 16412855Sgabeblack@google.com 16512855Sgabeblack@google.com mem/base_hier.cc 16612855Sgabeblack@google.com mem/base_mem.cc 16712855Sgabeblack@google.com mem/hier_params.cc 16812855Sgabeblack@google.com mem/mem_cmd.cc 16912855Sgabeblack@google.com mem/mem_debug.cc 17012855Sgabeblack@google.com mem/mem_req.cc 17112855Sgabeblack@google.com mem/memory_interface.cc 17212855Sgabeblack@google.com mem/page_table.cc 17312855Sgabeblack@google.com mem/bus/base_interface.cc 17412855Sgabeblack@google.com mem/bus/bus.cc 17512855Sgabeblack@google.com mem/bus/bus_bridge.cc 17612855Sgabeblack@google.com mem/bus/bus_bridge_master.cc 17712855Sgabeblack@google.com mem/bus/bus_bridge_slave.cc 17812855Sgabeblack@google.com mem/bus/bus_interface.cc 17912855Sgabeblack@google.com mem/bus/dma_bus_interface.cc 18012855Sgabeblack@google.com mem/bus/dma_interface.cc 18112855Sgabeblack@google.com mem/bus/master_interface.cc 18212855Sgabeblack@google.com mem/bus/slave_interface.cc 18312855Sgabeblack@google.com mem/cache/base_cache.cc 18412855Sgabeblack@google.com mem/cache/cache.cc 18512855Sgabeblack@google.com mem/cache/cache_builder.cc 18612855Sgabeblack@google.com mem/cache/coherence/coherence_protocol.cc 18712855Sgabeblack@google.com mem/cache/coherence/uni_coherence.cc 18812855Sgabeblack@google.com mem/cache/miss/blocking_buffer.cc 18912855Sgabeblack@google.com mem/cache/miss/miss_queue.cc 19012855Sgabeblack@google.com mem/cache/miss/mshr.cc 19112855Sgabeblack@google.com mem/cache/miss/mshr_queue.cc 19212855Sgabeblack@google.com mem/cache/prefetch/base_prefetcher.cc 19312855Sgabeblack@google.com mem/cache/prefetch/prefetcher.cc 19412855Sgabeblack@google.com mem/cache/prefetch/tagged_prefetcher.cc 19512855Sgabeblack@google.com mem/cache/tags/base_tags.cc 19612855Sgabeblack@google.com mem/cache/tags/cache_tags.cc 19712855Sgabeblack@google.com mem/cache/tags/fa_lru.cc 19812855Sgabeblack@google.com mem/cache/tags/iic.cc 19912855Sgabeblack@google.com mem/cache/tags/lru.cc 20012855Sgabeblack@google.com mem/cache/tags/repl/gen.cc 20112855Sgabeblack@google.com mem/cache/tags/repl/repl.cc 20212855Sgabeblack@google.com mem/cache/tags/split.cc 20312855Sgabeblack@google.com mem/cache/tags/split_lru.cc 20412855Sgabeblack@google.com mem/cache/tags/split_lifo.cc 20512855Sgabeblack@google.com mem/functional/functional.cc 20612855Sgabeblack@google.com mem/functional/physical.cc 20712855Sgabeblack@google.com mem/functional/proxy.cc 208 mem/timing/base_memory.cc 209 mem/timing/memory_builder.cc 210 mem/timing/simple_mem_bank.cc 211 mem/trace/itx_writer.cc 212 mem/trace/mem_trace_writer.cc 213 mem/trace/m5_writer.cc 214 215 python/pyconfig.cc 216 python/embedded_py.cc 217 218 sim/builder.cc 219 sim/configfile.cc 220 sim/debug.cc 221 sim/eventq.cc 222 sim/main.cc 223 sim/param.cc 224 sim/profile.cc 225 sim/root.cc 226 sim/serialize.cc 227 sim/sim_events.cc 228 sim/sim_exit.cc 229 sim/sim_object.cc 230 sim/startup.cc 231 sim/stat_context.cc 232 sim/stat_control.cc 233 sim/system.cc 234 sim/trace_context.cc 235 ''') 236 237# MySql sources 238mysql_sources = Split(''' 239 base/mysql.cc 240 base/stats/mysql.cc 241 ''') 242 243# Full-system sources 244full_system_sources = Split(''' 245 arch/alpha/alpha_memory.cc 246 arch/alpha/arguments.cc 247 arch/alpha/ev5.cc 248 arch/alpha/osfpal.cc 249 arch/alpha/pseudo_inst.cc 250 arch/alpha/stacktrace.cc 251 arch/alpha/vtophys.cc 252 253 base/crc.cc 254 base/inet.cc 255 base/remote_gdb.cc 256 257 cpu/intr_control.cc 258 cpu/profile.cc 259 260 dev/alpha_console.cc 261 dev/baddev.cc 262 dev/simconsole.cc 263 dev/disk_image.cc 264 dev/etherbus.cc 265 dev/etherdump.cc 266 dev/etherint.cc 267 dev/etherlink.cc 268 dev/etherpkt.cc 269 dev/ethertap.cc 270 dev/ide_ctrl.cc 271 dev/ide_disk.cc 272 dev/io_device.cc 273 dev/ns_gige.cc 274 dev/pciconfigall.cc 275 dev/pcidev.cc 276 dev/pcifake.cc 277 dev/pktfifo.cc 278 dev/platform.cc 279 dev/sinic.cc 280 dev/simple_disk.cc 281 dev/tsunami.cc 282 dev/tsunami_cchip.cc 283 dev/isa_fake.cc 284 dev/tsunami_io.cc 285 dev/tsunami_pchip.cc 286 dev/uart.cc 287 dev/uart8250.cc 288 289 kern/kernel_binning.cc 290 kern/kernel_stats.cc 291 kern/system_events.cc 292 kern/freebsd/freebsd_system.cc 293 kern/linux/linux_syscalls.cc 294 kern/linux/linux_system.cc 295 kern/linux/printk.cc 296 kern/tru64/dump_mbuf.cc 297 kern/tru64/printf.cc 298 kern/tru64/tru64_events.cc 299 kern/tru64/tru64_syscalls.cc 300 kern/tru64/tru64_system.cc 301 302 mem/functional/memory_control.cc 303 ''') 304 305# turbolaser encumbered sources 306turbolaser_sources = Split(''' 307 encumbered/dev/dma.cc 308 encumbered/dev/etherdev.cc 309 encumbered/dev/scsi.cc 310 encumbered/dev/scsi_ctrl.cc 311 encumbered/dev/scsi_disk.cc 312 encumbered/dev/scsi_none.cc 313 encumbered/dev/tlaser_clock.cc 314 encumbered/dev/tlaser_ipi.cc 315 encumbered/dev/tlaser_mbox.cc 316 encumbered/dev/tlaser_mc146818.cc 317 encumbered/dev/tlaser_node.cc 318 encumbered/dev/tlaser_pcia.cc 319 encumbered/dev/tlaser_pcidev.cc 320 encumbered/dev/tlaser_serial.cc 321 encumbered/dev/turbolaser.cc 322 encumbered/dev/uart8530.cc 323 ''') 324 325# Syscall emulation (non-full-system) sources 326syscall_emulation_sources = Split(''' 327 arch/alpha/alpha_common_syscall_emul.cc 328 arch/alpha/alpha_linux_process.cc 329 arch/alpha/alpha_tru64_process.cc 330 cpu/memtest/memtest.cc 331 encumbered/eio/eio.cc 332 encumbered/eio/exolex.cc 333 encumbered/eio/libexo.cc 334 sim/process.cc 335 sim/syscall_emul.cc 336 ''') 337 338targetarch_files = Split(''' 339 alpha_common_syscall_emul.hh 340 alpha_linux_process.hh 341 alpha_memory.hh 342 alpha_tru64_process.hh 343 aout_machdep.h 344 arguments.hh 345 byte_swap.hh 346 ecoff_machdep.h 347 ev5.hh 348 faults.hh 349 isa_fullsys_traits.hh 350 isa_traits.hh 351 osfpal.hh 352 pseudo_inst.hh 353 stacktrace.hh 354 vptr.hh 355 vtophys.hh 356 ''') 357 358for f in targetarch_files: 359 env.Command('targetarch/' + f, 'arch/alpha/' + f, 360 '''echo '#include "arch/alpha/%s"' > $TARGET''' % f) 361 362 363# Set up complete list of sources based on configuration. 364sources = base_sources 365 366if env['FULL_SYSTEM']: 367 sources += full_system_sources 368 if env['ALPHA_TLASER']: 369 sources += turbolaser_sources 370else: 371 sources += syscall_emulation_sources 372 373if env['USE_MYSQL']: 374 sources += mysql_sources 375 376for opt in env.ExportOptions: 377 env.ConfigFile(opt) 378 379################################################### 380# 381# Special build rules. 382# 383################################################### 384 385# base/traceflags.{cc,hh} are generated from base/traceflags.py. 386# $TARGET.base will expand to "<build-dir>/base/traceflags". 387env.Command(Split('base/traceflags.hh base/traceflags.cc'), 388 'base/traceflags.py', 389 'python $SOURCE $TARGET.base') 390 391# several files are generated from arch/$TARGET_ISA/isa_desc. 392env.Command(Split('''arch/alpha/decoder.cc 393 arch/alpha/decoder.hh 394 arch/alpha/alpha_o3_exec.cc 395 arch/alpha/fast_cpu_exec.cc 396 arch/alpha/simple_cpu_exec.cc 397 arch/alpha/full_cpu_exec.cc'''), 398 Split('''arch/alpha/isa_desc 399 arch/isa_parser.py'''), 400 '$SRCDIR/arch/isa_parser.py $SOURCE $TARGET.dir arch/alpha') 401 402 403# libelf build is described in its own SConscript file. 404# SConscript-local is the per-config build, which just copies some 405# header files into a place where they can be found. 406SConscript('libelf/SConscript-local', exports = 'env', duplicate=0) 407SConscript('python/SConscript', exports = ['env'], duplicate=0) 408 409# This function adds the specified sources to the given build 410# environment, and returns a list of all the corresponding SCons 411# Object nodes (including an extra one for date.cc). We explicitly 412# add the Object nodes so we can set up special dependencies for 413# date.cc. 414def make_objs(sources, env): 415 objs = [env.Object(s) for s in sources] 416 # make date.cc depend on all other objects so it always gets 417 # recompiled whenever anything else does 418 date_obj = env.Object('base/date.cc') 419 env.Depends(date_obj, objs) 420 objs.append(date_obj) 421 return objs 422 423################################################### 424# 425# Define binaries. Each different build type (debug, opt, etc.) gets 426# a slightly different build environment. 427# 428################################################### 429 430# Include file paths are rooted in this directory. SCons will 431# automatically expand '.' to refer to both the source directory and 432# the corresponding build directory to pick up generated include 433# files. 434env.Append(CPPPATH='.') 435 436# Debug binary 437debugEnv = env.Copy(OBJSUFFIX='.do') 438debugEnv.Label = 'debug' 439debugEnv.Append(CCFLAGS=Split('-g -gstabs+ -O0')) 440debugEnv.Append(CPPDEFINES='DEBUG') 441tlist = debugEnv.Program(target = 'm5.debug', 442 source = make_objs(sources, debugEnv)) 443debugEnv.M5Binary = tlist[0] 444 445# Optimized binary 446optEnv = env.Copy() 447optEnv.Label = 'opt' 448optEnv.Append(CCFLAGS=Split('-g -O5')) 449tlist = optEnv.Program(target = 'm5.opt', 450 source = make_objs(sources, optEnv)) 451optEnv.M5Binary = tlist[0] 452 453# "Fast" binary 454fastEnv = env.Copy(OBJSUFFIX='.fo') 455fastEnv.Label = 'fast' 456fastEnv.Append(CCFLAGS=Split('-O5')) 457fastEnv.Append(CPPDEFINES='NDEBUG') 458fastEnv.Program(target = 'm5.fast.unstripped', 459 source = make_objs(sources, fastEnv)) 460tlist = fastEnv.Command(target = 'm5.fast', 461 source = 'm5.fast.unstripped', 462 action = 'strip $SOURCE -o $TARGET') 463fastEnv.M5Binary = tlist[0] 464 465# Profiled binary 466profEnv = env.Copy(OBJSUFFIX='.po') 467profEnv.Label = 'prof' 468profEnv.Append(CCFLAGS=Split('-O5 -g -pg'), LINKFLAGS='-pg') 469tlist = profEnv.Program(target = 'm5.prof', 470 source = make_objs(sources, profEnv)) 471profEnv.M5Binary = tlist[0] 472 473envList = [debugEnv, optEnv, fastEnv, profEnv] 474 475Return('envList') 476