SConscript revision 1310
17008Snate@binkert.org# -*- mode:python -*- 27008Snate@binkert.org 37008Snate@binkert.org# Copyright (c) 2004 The Regents of The University of Michigan 47008Snate@binkert.org# All rights reserved. 57008Snate@binkert.org# 67008Snate@binkert.org# Redistribution and use in source and binary forms, with or without 77008Snate@binkert.org# modification, are permitted provided that the following conditions are 87008Snate@binkert.org# met: redistributions of source code must retain the above copyright 97008Snate@binkert.org# notice, this list of conditions and the following disclaimer; 107008Snate@binkert.org# redistributions in binary form must reproduce the above copyright 117008Snate@binkert.org# notice, this list of conditions and the following disclaimer in the 127008Snate@binkert.org# documentation and/or other materials provided with the distribution; 137008Snate@binkert.org# neither the name of the copyright holders nor the names of its 147008Snate@binkert.org# contributors may be used to endorse or promote products derived from 157008Snate@binkert.org# this software without specific prior written permission. 167008Snate@binkert.org# 177008Snate@binkert.org# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 187008Snate@binkert.org# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 197008Snate@binkert.org# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 207008Snate@binkert.org# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 217008Snate@binkert.org# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 227008Snate@binkert.org# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 237008Snate@binkert.org# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 247008Snate@binkert.org# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 257008Snate@binkert.org# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 267008Snate@binkert.org# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 277008Snate@binkert.org# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 286285Snate@binkert.org 297039Snate@binkert.orgimport os 307039Snate@binkert.orgimport sys 316285Snate@binkert.org 327055Snate@binkert.org# This file defines how to build a particular configuration of M5 337055Snate@binkert.org# based on variable settings in the 'env' build environment. 346876Ssteve.reinhardt@amd.com 359745Snilay@cs.wisc.edu# Import build environment variable from SConstruct. 368341Snilay@cs.wisc.eduImport('env') 379596Snilay@cs.wisc.edu 386506Spdudnik@gmail.com################################################### 397055Snate@binkert.org# 408436SBrad.Beckmann@amd.com# Define needed sources. 419497Snilay@cs.wisc.edu# 426881SBrad.Beckmann@amd.com################################################### 438683Snilay@cs.wisc.edu 449364Snilay@cs.wisc.edu# Base sources used by all configurations. 459364Snilay@cs.wisc.edubase_sources = Split(''' 467055Snate@binkert.org arch/alpha/decoder.cc 479465Snilay@cs.wisc.edu arch/alpha/fast_cpu_exec.cc 486285Snate@binkert.org arch/alpha/simple_cpu_exec.cc 496285Snate@binkert.org arch/alpha/inorder_cpu_exec.cc 506285Snate@binkert.org arch/alpha/full_cpu_exec.cc 519465Snilay@cs.wisc.edu arch/alpha/faults.cc 527039Snate@binkert.org arch/alpha/isa_traits.cc 537039Snate@binkert.org 546876Ssteve.reinhardt@amd.com base/circlebuf.cc 558436SBrad.Beckmann@amd.com base/copyright.cc 569496Snilay@cs.wisc.edu base/cprintf.cc 578257SBrad.Beckmann@amd.com base/embedfile.cc 589745Snilay@cs.wisc.edu base/fast_alloc.cc 599819Snilay@cs.wisc.edu base/fifo_buffer.cc 609819Snilay@cs.wisc.edu base/hostinfo.cc 619819Snilay@cs.wisc.edu base/hybrid_pred.cc 629819Snilay@cs.wisc.edu base/inifile.cc 639819Snilay@cs.wisc.edu base/intmath.cc 649819Snilay@cs.wisc.edu base/match.cc 659819Snilay@cs.wisc.edu base/misc.cc 669819Snilay@cs.wisc.edu base/pollevent.cc 677039Snate@binkert.org base/python.cc 687055Snate@binkert.org base/range.cc 697055Snate@binkert.org base/random.cc 708531Snilay@cs.wisc.edu base/sat_counter.cc 718531Snilay@cs.wisc.edu base/socket.cc 726285Snate@binkert.org base/statistics.cc 737055Snate@binkert.org base/str.cc 747055Snate@binkert.org base/time.cc 757039Snate@binkert.org base/trace.cc 767039Snate@binkert.org base/traceflags.cc 779745Snilay@cs.wisc.edu base/userinfo.cc 789745Snilay@cs.wisc.edu base/compression/lzss_compression.cc 798683Snilay@cs.wisc.edu base/loader/aout_object.cc 808683Snilay@cs.wisc.edu base/loader/ecoff_object.cc 819302Snilay@cs.wisc.edu base/loader/elf_object.cc 829302Snilay@cs.wisc.edu base/loader/object_file.cc 839302Snilay@cs.wisc.edu base/loader/symtab.cc 849302Snilay@cs.wisc.edu base/stats/events.cc 859302Snilay@cs.wisc.edu base/stats/python.cc 869302Snilay@cs.wisc.edu base/stats/statdb.cc 879302Snilay@cs.wisc.edu base/stats/visit.cc 889302Snilay@cs.wisc.edu base/stats/text.cc 899302Snilay@cs.wisc.edu 909363Snilay@cs.wisc.edu cpu/base_cpu.cc 919363Snilay@cs.wisc.edu cpu/exec_context.cc 929363Snilay@cs.wisc.edu cpu/exetrace.cc 939363Snilay@cs.wisc.edu cpu/pc_event.cc 949364Snilay@cs.wisc.edu cpu/static_inst.cc 959745Snilay@cs.wisc.edu cpu/fast_cpu/fast_cpu.cc 969745Snilay@cs.wisc.edu cpu/full_cpu/bpred.cc 979745Snilay@cs.wisc.edu cpu/full_cpu/commit.cc 989745Snilay@cs.wisc.edu cpu/full_cpu/create_vector.cc 999745Snilay@cs.wisc.edu cpu/full_cpu/cv_spec_state.cc 1009745Snilay@cs.wisc.edu cpu/full_cpu/dd_queue.cc 1019496Snilay@cs.wisc.edu cpu/full_cpu/dep_link.cc 1029496Snilay@cs.wisc.edu cpu/full_cpu/dispatch.cc 1039496Snilay@cs.wisc.edu cpu/full_cpu/dyn_inst.cc 1049496Snilay@cs.wisc.edu cpu/full_cpu/execute.cc 1059496Snilay@cs.wisc.edu cpu/full_cpu/fetch.cc 1069496Snilay@cs.wisc.edu cpu/full_cpu/floss_reasons.cc 1079496Snilay@cs.wisc.edu cpu/full_cpu/fu_pool.cc 1089497Snilay@cs.wisc.edu cpu/full_cpu/full_cpu.cc 1099497Snilay@cs.wisc.edu cpu/full_cpu/inst_fifo.cc 1109497Snilay@cs.wisc.edu cpu/full_cpu/instpipe.cc 1119497Snilay@cs.wisc.edu cpu/full_cpu/issue.cc 1129595Snilay@cs.wisc.edu cpu/full_cpu/ls_queue.cc 1139595Snilay@cs.wisc.edu cpu/full_cpu/machine_queue.cc 1149595Snilay@cs.wisc.edu cpu/full_cpu/pc_sample_profile.cc 1159595Snilay@cs.wisc.edu cpu/full_cpu/pipetrace.cc 1169595Snilay@cs.wisc.edu cpu/full_cpu/readyq.cc 1179595Snilay@cs.wisc.edu cpu/full_cpu/reg_info.cc 1189595Snilay@cs.wisc.edu cpu/full_cpu/rob_station.cc 1199595Snilay@cs.wisc.edu cpu/full_cpu/spec_memory.cc 1209496Snilay@cs.wisc.edu cpu/full_cpu/spec_state.cc 1219496Snilay@cs.wisc.edu cpu/full_cpu/storebuffer.cc 1229496Snilay@cs.wisc.edu cpu/full_cpu/writeback.cc 1239497Snilay@cs.wisc.edu cpu/full_cpu/iq/iq_station.cc 1249507Snilay@cs.wisc.edu cpu/full_cpu/iq/iqueue.cc 1259496Snilay@cs.wisc.edu cpu/full_cpu/iq/segmented/chain_info.cc 1269595Snilay@cs.wisc.edu cpu/full_cpu/iq/segmented/chain_wire.cc 1279595Snilay@cs.wisc.edu cpu/full_cpu/iq/segmented/iq_seg.cc 1289595Snilay@cs.wisc.edu cpu/full_cpu/iq/segmented/iq_segmented.cc 1299595Snilay@cs.wisc.edu cpu/full_cpu/iq/segmented/seg_chain.cc 1309595Snilay@cs.wisc.edu cpu/full_cpu/iq/seznec/iq_seznec.cc 1319596Snilay@cs.wisc.edu cpu/full_cpu/iq/standard/iq_standard.cc 1329596Snilay@cs.wisc.edu cpu/sampling_cpu/sampling_cpu.cc 1339596Snilay@cs.wisc.edu cpu/simple_cpu/simple_cpu.cc 1349596Snilay@cs.wisc.edu cpu/inorder_cpu/inorder_cpu.cc 1359596Snilay@cs.wisc.edu cpu/trace/reader/mem_trace_reader.cc 1369364Snilay@cs.wisc.edu cpu/trace/reader/ibm_reader.cc 1379364Snilay@cs.wisc.edu cpu/trace/reader/itx_reader.cc 1389364Snilay@cs.wisc.edu cpu/trace/reader/m5_reader.cc 1399499Snilay@cs.wisc.edu 1409364Snilay@cs.wisc.edu mem/base_hier.cc 1419364Snilay@cs.wisc.edu mem/base_mem.cc 1429364Snilay@cs.wisc.edu mem/hier_params.cc 1439364Snilay@cs.wisc.edu mem/mem_cmd.cc 1449364Snilay@cs.wisc.edu mem/mem_debug.cc 1459364Snilay@cs.wisc.edu mem/mem_req.cc 1469364Snilay@cs.wisc.edu mem/memory_interface.cc 1479364Snilay@cs.wisc.edu mem/bus/base_interface.cc 1489364Snilay@cs.wisc.edu mem/bus/bus.cc 1499364Snilay@cs.wisc.edu mem/bus/bus_bridge.cc 1509364Snilay@cs.wisc.edu mem/bus/bus_bridge_master.cc 1519364Snilay@cs.wisc.edu mem/bus/bus_bridge_slave.cc 1529496Snilay@cs.wisc.edu mem/bus/bus_interface.cc 1539595Snilay@cs.wisc.edu mem/bus/dma_bus_interface.cc 1549595Snilay@cs.wisc.edu mem/bus/dma_interface.cc 1559595Snilay@cs.wisc.edu mem/bus/master_interface.cc 1569496Snilay@cs.wisc.edu mem/bus/slave_interface.cc 1579496Snilay@cs.wisc.edu mem/cache/base_cache.cc 1589496Snilay@cs.wisc.edu mem/cache/cache.cc 1599496Snilay@cs.wisc.edu mem/cache/cache_builder.cc 1609496Snilay@cs.wisc.edu mem/cache/coherence/coherence_protocol.cc 1619496Snilay@cs.wisc.edu mem/cache/coherence/uni_coherence.cc 1629496Snilay@cs.wisc.edu mem/cache/miss/blocking_buffer.cc 1639496Snilay@cs.wisc.edu mem/cache/miss/miss_queue.cc 1649497Snilay@cs.wisc.edu mem/cache/miss/mshr.cc 1659497Snilay@cs.wisc.edu mem/cache/miss/mshr_queue.cc 1669497Snilay@cs.wisc.edu mem/cache/tags/base_tags.cc 1679497Snilay@cs.wisc.edu mem/cache/tags/cache_tags.cc 1689497Snilay@cs.wisc.edu mem/cache/tags/fa_lru.cc 1699745Snilay@cs.wisc.edu mem/cache/tags/iic.cc 1709745Snilay@cs.wisc.edu mem/cache/tags/lru.cc 1719745Snilay@cs.wisc.edu mem/cache/tags/split.cc 1729745Snilay@cs.wisc.edu mem/cache/tags/split_lifo.cc 1739745Snilay@cs.wisc.edu mem/cache/tags/split_lru.cc 1749745Snilay@cs.wisc.edu mem/cache/tags/repl/gen.cc 1759745Snilay@cs.wisc.edu mem/cache/tags/repl/repl.cc 1769745Snilay@cs.wisc.edu mem/functional_mem/functional_memory.cc 1779745Snilay@cs.wisc.edu mem/functional_mem/main_memory.cc 1789745Snilay@cs.wisc.edu mem/timing_mem/base_memory.cc 1799745Snilay@cs.wisc.edu mem/timing_mem/memory_builder.cc 1809745Snilay@cs.wisc.edu mem/timing_mem/simple_mem_bank.cc 1819745Snilay@cs.wisc.edu mem/trace/itx_writer.cc 1829745Snilay@cs.wisc.edu mem/trace/mem_trace_writer.cc 1839745Snilay@cs.wisc.edu mem/trace/m5_writer.cc 1849745Snilay@cs.wisc.edu 1859745Snilay@cs.wisc.edu sim/builder.cc 1869745Snilay@cs.wisc.edu sim/configfile.cc 1876285Snate@binkert.org sim/debug.cc 1886285Snate@binkert.org sim/eventq.cc 1897039Snate@binkert.org sim/main.cc 190 sim/param.cc 191 sim/profile.cc 192 sim/serialize.cc 193 sim/sim_events.cc 194 sim/sim_exit.cc 195 sim/sim_object.cc 196 sim/startup.cc 197 sim/stat_context.cc 198 sim/stat_control.cc 199 sim/trace_context.cc 200 sim/universe.cc 201 sim/pyconfig/pyconfig.cc 202 sim/pyconfig/embedded_py.cc 203 ''') 204 205# MySql sources 206mysql_sources = Split(''' 207 base/mysql.cc 208 base/stats/mysql.cc 209 ''') 210 211# Full-system sources 212full_system_sources = Split(''' 213 arch/alpha/alpha_memory.cc 214 arch/alpha/arguments.cc 215 arch/alpha/ev5.cc 216 arch/alpha/osfpal.cc 217 arch/alpha/pseudo_inst.cc 218 arch/alpha/vtophys.cc 219 220 base/crc.cc 221 base/inet.cc 222 base/remote_gdb.cc 223 224 cpu/intr_control.cc 225 226 dev/alpha_console.cc 227 dev/baddev.cc 228 dev/simconsole.cc 229 dev/disk_image.cc 230 dev/dma.cc 231 dev/etherbus.cc 232 dev/etherdump.cc 233 dev/etherint.cc 234 dev/etherlink.cc 235 dev/etherpkt.cc 236 dev/ethertap.cc 237 dev/ide_ctrl.cc 238 dev/ide_disk.cc 239 dev/io_device.cc 240 dev/ns_gige.cc 241 dev/etherdev.cc 242 dev/pciconfigall.cc 243 dev/pcidev.cc 244 dev/pktfifo.cc 245 dev/scsi.cc 246 dev/scsi_ctrl.cc 247 dev/scsi_disk.cc 248 dev/scsi_none.cc 249 dev/sinic.cc 250 dev/simple_disk.cc 251 dev/tlaser_clock.cc 252 dev/tlaser_ipi.cc 253 dev/tlaser_mbox.cc 254 dev/tlaser_mc146818.cc 255 dev/tlaser_node.cc 256 dev/tlaser_pcia.cc 257 dev/tlaser_pcidev.cc 258 dev/tlaser_serial.cc 259 dev/turbolaser.cc 260 dev/tsunami.cc 261 dev/tsunami_cchip.cc 262 dev/tsunami_fake.cc 263 dev/tsunami_io.cc 264 dev/tsunami_pchip.cc 265 dev/uart.cc 266 267 kern/kernel_binning.cc 268 kern/kernel_stats.cc 269 kern/system_events.cc 270 kern/linux/linux_events.cc 271 kern/linux/linux_syscalls.cc 272 kern/linux/linux_system.cc 273 kern/linux/printk.cc 274 kern/tru64/dump_mbuf.cc 275 kern/tru64/printf.cc 276 kern/tru64/tru64_events.cc 277 kern/tru64/tru64_syscalls.cc 278 kern/tru64/tru64_system.cc 279 280 mem/functional_mem/memory_control.cc 281 mem/functional_mem/physical_memory.cc 282 dev/platform.cc 283 284 sim/system.cc 285 ''') 286 287# Syscall emulation (non-full-system) sources 288syscall_emulation_sources = Split(''' 289 arch/alpha/alpha_common_syscall_emul.cc 290 arch/alpha/alpha_linux_process.cc 291 arch/alpha/alpha_tru64_process.cc 292 cpu/memtest/memtest.cc 293 cpu/trace/opt_cpu.cc 294 cpu/trace/trace_cpu.cc 295 eio/eio.cc 296 eio/exolex.cc 297 eio/libexo.cc 298 sim/process.cc 299 sim/syscall_emul.cc 300 ''') 301 302targetarch_files = Split(''' 303 alpha_common_syscall_emul.hh 304 alpha_linux_process.hh 305 alpha_memory.hh 306 alpha_tru64_process.hh 307 aout_machdep.h 308 arguments.hh 309 byte_swap.hh 310 ecoff_machdep.h 311 elf_machdep.h 312 ev5.hh 313 faults.hh 314 isa_fullsys_traits.hh 315 isa_traits.hh 316 machine_exo.h 317 osfpal.hh 318 pseudo_inst.hh 319 vptr.hh 320 vtophys.hh 321 ''') 322 323for f in targetarch_files: 324 env.Command('targetarch/' + f, 'arch/alpha/' + f, 325 '''echo '#include "arch/alpha/%s"' > $TARGET''' % f) 326 327 328# Set up complete list of sources based on configuration. 329sources = base_sources 330 331if env['FULL_SYSTEM']: 332 sources += full_system_sources 333else: 334 sources += syscall_emulation_sources 335 336extra_libraries = [] 337env.Append(LIBS=['z']) 338if env['USE_MYSQL']: 339 sources += mysql_sources 340 env.Append(CPPDEFINES = 'USE_MYSQL') 341 env.Append(CPPDEFINES = 'STATS_BINNING') 342 env.Append(CPPPATH=['/usr/local/include/mysql', '/usr/include/mysql']) 343 if os.path.isdir('/usr/lib64'): 344 env.Append(LIBPATH=['/usr/lib64/mysql']) 345 else: 346 env.Append(LIBPATH=['/usr/lib/mysql/']) 347 env.Append(LIBS=['mysqlclient']) 348 349 350################################################### 351# 352# Special build rules. 353# 354################################################### 355 356# base/traceflags.{cc,hh} are generated from base/traceflags.py. 357# $TARGET.base will expand to "<build-dir>/base/traceflags". 358env.Command(Split('base/traceflags.hh base/traceflags.cc'), 359 'base/traceflags.py', 360 'python $SOURCE $TARGET.base') 361 362# several files are generated from arch/$TARGET_ISA/isa_desc. 363env.Command(Split('''arch/alpha/decoder.cc 364 arch/alpha/decoder.hh 365 arch/alpha/fast_cpu_exec.cc 366 arch/alpha/simple_cpu_exec.cc 367 arch/alpha/inorder_cpu_exec.cc 368 arch/alpha/full_cpu_exec.cc'''), 369 Split('''arch/alpha/isa_desc 370 arch/isa_parser.py'''), 371 '$SRCDIR/arch/isa_parser.py $SOURCE $TARGET.dir arch/alpha') 372 373 374# libelf build is described in its own SConscript file. 375# SConscript-local is the per-config build, which just copies some 376# header files into a place where they can be found. 377SConscript('libelf/SConscript-local', exports = 'env', duplicate=0) 378SConscript('sim/pyconfig/SConscript', exports = ['env'], duplicate=0) 379 380 381# This function adds the specified sources to the given build 382# environment, and returns a list of all the corresponding SCons 383# Object nodes (including an extra one for date.cc). We explicitly 384# add the Object nodes so we can set up special dependencies for 385# date.cc. 386def make_objs(sources, env): 387 objs = [env.Object(s) for s in sources] 388 # make date.cc depend on all other objects so it always gets 389 # recompiled whenever anything else does 390 date_obj = env.Object('base/date.cc') 391 env.Depends(date_obj, objs) 392 objs.append(date_obj) 393 objs.extend(extra_libraries) 394 return objs 395 396################################################### 397# 398# Define binaries. Each different build type (debug, opt, etc.) gets 399# a slightly different build environment. 400# 401################################################### 402 403# Include file paths are rooted in this directory. SCons will 404# automatically expand '.' to refer to both the source directory and 405# the corresponding build directory to pick up generated include 406# files. 407env.Append(CPPPATH='.') 408 409# Debug binary 410debug = env.Copy(OBJSUFFIX='.do') 411debug.Append(CCFLAGS=Split('-g -gstabs+ -O0')) 412debug.Append(CPPDEFINES='DEBUG') 413debug.Program(target = 'm5.debug', source = make_objs(sources, debug)) 414 415# Optimized binary 416opt = env.Copy() 417opt.Append(CCFLAGS=Split('-g -O5')) 418opt.Program(target = 'm5.opt', source = make_objs(sources, opt)) 419 420# "Fast" binary 421fast = env.Copy(OBJSUFFIX='.fo') 422fast.Append(CCFLAGS=Split('-O5')) 423fast.Append(CPPDEFINES='NDEBUG') 424fast.Program(target = 'm5.fast.unstripped', source = make_objs(sources, fast)) 425fast.Command(target = 'm5.fast', source = 'm5.fast.unstripped', 426 action = 'strip $SOURCE -o $TARGET') 427 428# Profiled binary 429prof = env.Copy(OBJSUFFIX='.po') 430prof.Append(CCFLAGS=Split('-O5 -g -pg'), LINKFLAGS='-pg') 431prof.Program(target = 'm5.prof', source = make_objs(sources, prof)) 432