SConscript revision 1840
12139SN/A# -*- mode:python -*- 22139SN/A 32139SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan 42139SN/A# All rights reserved. 52139SN/A# 62139SN/A# Redistribution and use in source and binary forms, with or without 72139SN/A# modification, are permitted provided that the following conditions are 82139SN/A# met: redistributions of source code must retain the above copyright 92139SN/A# notice, this list of conditions and the following disclaimer; 102139SN/A# redistributions in binary form must reproduce the above copyright 112139SN/A# notice, this list of conditions and the following disclaimer in the 122139SN/A# documentation and/or other materials provided with the distribution; 132139SN/A# neither the name of the copyright holders nor the names of its 142139SN/A# contributors may be used to endorse or promote products derived from 152139SN/A# this software without specific prior written permission. 162139SN/A# 172139SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 182139SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 192139SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 202139SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 212139SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 222139SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 232139SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 242139SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 252139SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 262139SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 272139SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 282139SN/A 292139SN/Aimport os 302139SN/Aimport sys 312139SN/Afrom os.path import isdir 322139SN/A 332139SN/A# This file defines how to build a particular configuration of M5 342152SN/A# based on variable settings in the 'env' build environment. 352152SN/A 362152SN/A# Import build environment variable from SConstruct. 372152SN/AImport('env') 382139SN/A 392139SN/A################################################### 402139SN/A# 412139SN/A# Define needed sources. 422139SN/A# 432152SN/A################################################### 442152SN/A 452139SN/A# Base sources used by all configurations. 462139SN/Abase_sources = Split(''' 472139SN/A arch/alpha/decoder.cc 482439SN/A arch/alpha/alpha_o3_exec.cc 492439SN/A arch/alpha/fast_cpu_exec.cc 502439SN/A arch/alpha/simple_cpu_exec.cc 512139SN/A arch/alpha/full_cpu_exec.cc 522439SN/A arch/alpha/faults.cc 532460SN/A arch/alpha/isa_traits.cc 542439SN/A 552171SN/A base/circlebuf.cc 562439SN/A base/copyright.cc 572439SN/A base/cprintf.cc 582170SN/A base/embedfile.cc 592139SN/A base/fast_alloc.cc 602139SN/A base/fifo_buffer.cc 612139SN/A base/hostinfo.cc 622139SN/A base/hybrid_pred.cc 632139SN/A base/inifile.cc 642139SN/A base/intmath.cc 652139SN/A base/match.cc 662139SN/A base/misc.cc 672139SN/A base/output.cc 682139SN/A base/pollevent.cc 692139SN/A base/range.cc 702139SN/A base/random.cc 712139SN/A base/sat_counter.cc 722139SN/A base/socket.cc 732139SN/A base/statistics.cc 742139SN/A base/str.cc 752139SN/A base/time.cc 762139SN/A base/trace.cc 772139SN/A base/traceflags.cc 782139SN/A base/userinfo.cc 792139SN/A base/compression/lzss_compression.cc 802139SN/A base/loader/aout_object.cc 812139SN/A base/loader/ecoff_object.cc 822139SN/A base/loader/elf_object.cc 832178SN/A base/loader/object_file.cc 842139SN/A base/loader/symtab.cc 852139SN/A base/stats/events.cc 862139SN/A base/stats/statdb.cc 872139SN/A base/stats/visit.cc 882139SN/A base/stats/text.cc 892139SN/A 902139SN/A cpu/base.cc 912152SN/A cpu/base_dyn_inst.cc 922152SN/A cpu/exec_context.cc 932152SN/A cpu/exetrace.cc 942152SN/A cpu/pc_event.cc 952152SN/A cpu/static_inst.cc 962152SN/A cpu/o3/2bit_local_pred.cc 972152SN/A cpu/o3/alpha_dyn_inst.cc 982152SN/A cpu/o3/alpha_cpu.cc 992152SN/A cpu/o3/alpha_cpu_builder.cc 1002152SN/A cpu/o3/bpred_unit.cc 1012152SN/A cpu/o3/btb.cc 1022152SN/A cpu/o3/commit.cc 1032504SN/A cpu/o3/decode.cc 1042504SN/A cpu/o3/fetch.cc 1052504SN/A cpu/o3/free_list.cc 1062504SN/A cpu/o3/cpu.cc 1072152SN/A cpu/o3/iew.cc 1082504SN/A cpu/o3/inst_queue.cc 1092152SN/A cpu/o3/ldstq.cc 1102152SN/A cpu/o3/mem_dep_unit.cc 1112152SN/A cpu/o3/ras.cc 1122152SN/A cpu/o3/rename.cc 1132152SN/A cpu/o3/rename_map.cc 1142152SN/A cpu/o3/rob.cc 1152152SN/A cpu/o3/sat_counter.cc 1162152SN/A cpu/o3/store_set.cc 1172632Sstever@eecs.umich.edu cpu/o3/tournament_pred.cc 1182155SN/A cpu/fast/cpu.cc 1192155SN/A cpu/sampler/sampler.cc 1202155SN/A cpu/simple/cpu.cc 1212155SN/A cpu/trace/reader/mem_trace_reader.cc 1222155SN/A cpu/trace/reader/ibm_reader.cc 1232155SN/A cpu/trace/reader/itx_reader.cc 1242155SN/A cpu/trace/reader/m5_reader.cc 1252155SN/A cpu/trace/opt_cpu.cc 1262155SN/A cpu/trace/trace_cpu.cc 1272155SN/A 1282152SN/A encumbered/cpu/full/bpred.cc 1292152SN/A encumbered/cpu/full/commit.cc 1302152SN/A encumbered/cpu/full/cpu.cc 1312152SN/A encumbered/cpu/full/create_vector.cc 1322155SN/A encumbered/cpu/full/cv_spec_state.cc 1332152SN/A encumbered/cpu/full/dd_queue.cc 1342152SN/A encumbered/cpu/full/dep_link.cc 1352637Sstever@eecs.umich.edu encumbered/cpu/full/dispatch.cc 1362152SN/A encumbered/cpu/full/dyn_inst.cc 1372152SN/A encumbered/cpu/full/execute.cc 1382152SN/A encumbered/cpu/full/fetch.cc 1392152SN/A encumbered/cpu/full/floss_reasons.cc 1402152SN/A encumbered/cpu/full/fu_pool.cc 1412152SN/A encumbered/cpu/full/inst_fifo.cc 1422152SN/A encumbered/cpu/full/instpipe.cc 1432152SN/A encumbered/cpu/full/issue.cc 1442152SN/A encumbered/cpu/full/ls_queue.cc 1452152SN/A encumbered/cpu/full/machine_queue.cc 1462152SN/A encumbered/cpu/full/pc_sample_profile.cc 1472152SN/A encumbered/cpu/full/pipetrace.cc 1482152SN/A encumbered/cpu/full/readyq.cc 1492152SN/A encumbered/cpu/full/reg_info.cc 1502152SN/A encumbered/cpu/full/rob_station.cc 151 encumbered/cpu/full/spec_memory.cc 152 encumbered/cpu/full/spec_state.cc 153 encumbered/cpu/full/storebuffer.cc 154 encumbered/cpu/full/writeback.cc 155 encumbered/cpu/full/iq/iq_station.cc 156 encumbered/cpu/full/iq/iqueue.cc 157 encumbered/cpu/full/iq/segmented/chain_info.cc 158 encumbered/cpu/full/iq/segmented/chain_wire.cc 159 encumbered/cpu/full/iq/segmented/iq_seg.cc 160 encumbered/cpu/full/iq/segmented/iq_segmented.cc 161 encumbered/cpu/full/iq/segmented/seg_chain.cc 162 encumbered/cpu/full/iq/seznec/iq_seznec.cc 163 encumbered/cpu/full/iq/standard/iq_standard.cc 164 encumbered/mem/functional/main.cc 165 166 mem/base_hier.cc 167 mem/base_mem.cc 168 mem/hier_params.cc 169 mem/mem_cmd.cc 170 mem/mem_debug.cc 171 mem/mem_req.cc 172 mem/memory_interface.cc 173 mem/bus/base_interface.cc 174 mem/bus/bus.cc 175 mem/bus/bus_bridge.cc 176 mem/bus/bus_bridge_master.cc 177 mem/bus/bus_bridge_slave.cc 178 mem/bus/bus_interface.cc 179 mem/bus/dma_bus_interface.cc 180 mem/bus/dma_interface.cc 181 mem/bus/master_interface.cc 182 mem/bus/slave_interface.cc 183 mem/cache/base_cache.cc 184 mem/cache/cache.cc 185 mem/cache/cache_builder.cc 186 mem/cache/coherence/coherence_protocol.cc 187 mem/cache/coherence/uni_coherence.cc 188 mem/cache/miss/blocking_buffer.cc 189 mem/cache/miss/miss_queue.cc 190 mem/cache/miss/mshr.cc 191 mem/cache/miss/mshr_queue.cc 192 mem/cache/prefetch/base_prefetcher.cc 193 mem/cache/prefetch/prefetcher.cc 194 mem/cache/prefetch/tagged_prefetcher.cc 195 mem/cache/tags/base_tags.cc 196 mem/cache/tags/cache_tags.cc 197 mem/cache/tags/fa_lru.cc 198 mem/cache/tags/iic.cc 199 mem/cache/tags/lru.cc 200 mem/cache/tags/repl/gen.cc 201 mem/cache/tags/repl/repl.cc 202 mem/functional/functional.cc 203 mem/timing/base_memory.cc 204 mem/timing/memory_builder.cc 205 mem/timing/simple_mem_bank.cc 206 mem/trace/itx_writer.cc 207 mem/trace/mem_trace_writer.cc 208 mem/trace/m5_writer.cc 209 210 python/pyconfig.cc 211 python/embedded_py.cc 212 213 sim/builder.cc 214 sim/configfile.cc 215 sim/debug.cc 216 sim/eventq.cc 217 sim/main.cc 218 sim/param.cc 219 sim/profile.cc 220 sim/root.cc 221 sim/serialize.cc 222 sim/sim_events.cc 223 sim/sim_exit.cc 224 sim/sim_object.cc 225 sim/startup.cc 226 sim/stat_context.cc 227 sim/stat_control.cc 228 sim/trace_context.cc 229 ''') 230 231# MySql sources 232mysql_sources = Split(''' 233 base/mysql.cc 234 base/stats/mysql.cc 235 ''') 236 237# Full-system sources 238full_system_sources = Split(''' 239 arch/alpha/alpha_memory.cc 240 arch/alpha/arguments.cc 241 arch/alpha/ev5.cc 242 arch/alpha/osfpal.cc 243 arch/alpha/pseudo_inst.cc 244 arch/alpha/vtophys.cc 245 246 base/crc.cc 247 base/inet.cc 248 base/remote_gdb.cc 249 250 cpu/intr_control.cc 251 252 dev/alpha_console.cc 253 dev/baddev.cc 254 dev/simconsole.cc 255 dev/disk_image.cc 256 dev/etherbus.cc 257 dev/etherdump.cc 258 dev/etherint.cc 259 dev/etherlink.cc 260 dev/etherpkt.cc 261 dev/ethertap.cc 262 dev/ide_ctrl.cc 263 dev/ide_disk.cc 264 dev/io_device.cc 265 dev/ns_gige.cc 266 dev/pciconfigall.cc 267 dev/pcidev.cc 268 dev/pcifake.cc 269 dev/pktfifo.cc 270 dev/platform.cc 271 dev/sinic.cc 272 dev/simple_disk.cc 273 dev/tsunami.cc 274 dev/tsunami_cchip.cc 275 dev/tsunami_fake.cc 276 dev/tsunami_io.cc 277 dev/tsunami_pchip.cc 278 dev/uart.cc 279 dev/uart8250.cc 280 281 kern/kernel_binning.cc 282 kern/kernel_stats.cc 283 kern/system_events.cc 284 kern/freebsd/freebsd_system.cc 285 kern/freebsd/freebsd_events.cc 286 kern/linux/linux_events.cc 287 kern/linux/linux_syscalls.cc 288 kern/linux/linux_system.cc 289 kern/linux/printk.cc 290 kern/tru64/dump_mbuf.cc 291 kern/tru64/printf.cc 292 kern/tru64/tru64_events.cc 293 kern/tru64/tru64_syscalls.cc 294 kern/tru64/tru64_system.cc 295 296 mem/functional/memory_control.cc 297 mem/functional/physical.cc 298 299 sim/system.cc 300 ''') 301 302# turbolaser encumbered sources 303turbolaser_sources = Split(''' 304 encumbered/dev/dma.cc 305 encumbered/dev/etherdev.cc 306 encumbered/dev/scsi.cc 307 encumbered/dev/scsi_ctrl.cc 308 encumbered/dev/scsi_disk.cc 309 encumbered/dev/scsi_none.cc 310 encumbered/dev/tlaser_clock.cc 311 encumbered/dev/tlaser_ipi.cc 312 encumbered/dev/tlaser_mbox.cc 313 encumbered/dev/tlaser_mc146818.cc 314 encumbered/dev/tlaser_node.cc 315 encumbered/dev/tlaser_pcia.cc 316 encumbered/dev/tlaser_pcidev.cc 317 encumbered/dev/tlaser_serial.cc 318 encumbered/dev/turbolaser.cc 319 encumbered/dev/uart8530.cc 320 ''') 321 322# Syscall emulation (non-full-system) sources 323syscall_emulation_sources = Split(''' 324 arch/alpha/alpha_common_syscall_emul.cc 325 arch/alpha/alpha_linux_process.cc 326 arch/alpha/alpha_tru64_process.cc 327 cpu/memtest/memtest.cc 328 encumbered/eio/eio.cc 329 encumbered/eio/exolex.cc 330 encumbered/eio/libexo.cc 331 sim/process.cc 332 sim/syscall_emul.cc 333 ''') 334 335targetarch_files = Split(''' 336 alpha_common_syscall_emul.hh 337 alpha_linux_process.hh 338 alpha_memory.hh 339 alpha_tru64_process.hh 340 aout_machdep.h 341 arguments.hh 342 byte_swap.hh 343 ecoff_machdep.h 344 ev5.hh 345 faults.hh 346 isa_fullsys_traits.hh 347 isa_traits.hh 348 osfpal.hh 349 pseudo_inst.hh 350 vptr.hh 351 vtophys.hh 352 ''') 353 354for f in targetarch_files: 355 env.Command('targetarch/' + f, 'arch/alpha/' + f, 356 '''echo '#include "arch/alpha/%s"' > $TARGET''' % f) 357 358 359# Set up complete list of sources based on configuration. 360sources = base_sources 361 362if env['FULL_SYSTEM']: 363 sources += full_system_sources 364 if env['ALPHA_TLASER']: 365 sources += turbolaser_sources 366else: 367 sources += syscall_emulation_sources 368 369extra_libraries = [] 370env.Append(LIBS=['z']) 371if isdir('/usr/lib64/mysql') or isdir('/usr/lib/mysql') or \ 372 isdir('/usr/local/lib/mysql'): 373 print 'Compiling with MySQL support!' 374 env.Append(LIBPATH=['/usr/lib64/mysql', '/usr/local/lib/mysql/', 375 '/usr/lib/mysql']) 376 env.Append(CPPPATH=['/usr/local/include/mysql', '/usr/include/mysql']) 377 sources += mysql_sources 378 env.Append(CPPDEFINES = 'USE_MYSQL') 379 env.Append(CPPDEFINES = 'STATS_BINNING') 380 env.Append(LIBS=['mysqlclient']) 381 382################################################### 383# 384# Special build rules. 385# 386################################################### 387 388# base/traceflags.{cc,hh} are generated from base/traceflags.py. 389# $TARGET.base will expand to "<build-dir>/base/traceflags". 390env.Command(Split('base/traceflags.hh base/traceflags.cc'), 391 'base/traceflags.py', 392 'python $SOURCE $TARGET.base') 393 394# several files are generated from arch/$TARGET_ISA/isa_desc. 395env.Command(Split('''arch/alpha/decoder.cc 396 arch/alpha/decoder.hh 397 arch/alpha/alpha_o3_exec.cc 398 arch/alpha/fast_cpu_exec.cc 399 arch/alpha/simple_cpu_exec.cc 400 arch/alpha/full_cpu_exec.cc'''), 401 Split('''arch/alpha/isa_desc 402 arch/isa_parser.py'''), 403 '$SRCDIR/arch/isa_parser.py $SOURCE $TARGET.dir arch/alpha') 404 405 406# libelf build is described in its own SConscript file. 407# SConscript-local is the per-config build, which just copies some 408# header files into a place where they can be found. 409SConscript('libelf/SConscript-local', exports = 'env', duplicate=0) 410SConscript('python/SConscript', exports = ['env'], duplicate=0) 411 412# This function adds the specified sources to the given build 413# environment, and returns a list of all the corresponding SCons 414# Object nodes (including an extra one for date.cc). We explicitly 415# add the Object nodes so we can set up special dependencies for 416# date.cc. 417def make_objs(sources, env): 418 objs = [env.Object(s) for s in sources] 419 # make date.cc depend on all other objects so it always gets 420 # recompiled whenever anything else does 421 date_obj = env.Object('base/date.cc') 422 env.Depends(date_obj, objs) 423 objs.append(date_obj) 424 objs.extend(extra_libraries) 425 return objs 426 427################################################### 428# 429# Define binaries. Each different build type (debug, opt, etc.) gets 430# a slightly different build environment. 431# 432################################################### 433 434# Include file paths are rooted in this directory. SCons will 435# automatically expand '.' to refer to both the source directory and 436# the corresponding build directory to pick up generated include 437# files. 438env.Append(CPPPATH='.') 439 440# Debug binary 441debug = env.Copy(OBJSUFFIX='.do') 442debug.Append(CCFLAGS=Split('-g -gstabs+ -O0')) 443debug.Append(CPPDEFINES='DEBUG') 444debug.Program(target = 'm5.debug', source = make_objs(sources, debug)) 445 446# Optimized binary 447opt = env.Copy() 448opt.Append(CCFLAGS=Split('-g -O5')) 449opt.Program(target = 'm5.opt', source = make_objs(sources, opt)) 450 451# "Fast" binary 452fast = env.Copy(OBJSUFFIX='.fo') 453fast.Append(CCFLAGS=Split('-O5')) 454fast.Append(CPPDEFINES='NDEBUG') 455fast.Program(target = 'm5.fast.unstripped', source = make_objs(sources, fast)) 456fast.Command(target = 'm5.fast', source = 'm5.fast.unstripped', 457 action = 'strip $SOURCE -o $TARGET') 458 459# Profiled binary 460prof = env.Copy(OBJSUFFIX='.po') 461prof.Append(CCFLAGS=Split('-O5 -g -pg'), LINKFLAGS='-pg') 462prof.Program(target = 'm5.prof', source = make_objs(sources, prof)) 463