SConscript revision 2209
112837Sgabeblack@google.com# -*- mode:python -*- 212837Sgabeblack@google.com 312837Sgabeblack@google.com# Copyright (c) 2004-2005 The Regents of The University of Michigan 412837Sgabeblack@google.com# All rights reserved. 512837Sgabeblack@google.com# 612837Sgabeblack@google.com# Redistribution and use in source and binary forms, with or without 712837Sgabeblack@google.com# modification, are permitted provided that the following conditions are 812837Sgabeblack@google.com# met: redistributions of source code must retain the above copyright 912837Sgabeblack@google.com# notice, this list of conditions and the following disclaimer; 1012837Sgabeblack@google.com# redistributions in binary form must reproduce the above copyright 1112837Sgabeblack@google.com# notice, this list of conditions and the following disclaimer in the 1212837Sgabeblack@google.com# documentation and/or other materials provided with the distribution; 1312837Sgabeblack@google.com# neither the name of the copyright holders nor the names of its 1412837Sgabeblack@google.com# contributors may be used to endorse or promote products derived from 1512837Sgabeblack@google.com# this software without specific prior written permission. 1612837Sgabeblack@google.com# 1712837Sgabeblack@google.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 1812837Sgabeblack@google.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 1912837Sgabeblack@google.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 2012837Sgabeblack@google.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 2112837Sgabeblack@google.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 2212837Sgabeblack@google.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 2312837Sgabeblack@google.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 2412837Sgabeblack@google.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 2512837Sgabeblack@google.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 2612837Sgabeblack@google.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 2712837Sgabeblack@google.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 2812837Sgabeblack@google.com 2912837Sgabeblack@google.comimport os 3012837Sgabeblack@google.comimport sys 3112837Sgabeblack@google.comfrom os.path import isdir 3212837Sgabeblack@google.com 3312954Sgabeblack@google.com# This file defines how to build a particular configuration of M5 3412955Sgabeblack@google.com# based on variable settings in the 'env' build environment. 3512837Sgabeblack@google.com 3612863Sgabeblack@google.com# Import build environment variable from SConstruct. 3712950Sgabeblack@google.comImport('env') 3812952Sgabeblack@google.com 3912953Sgabeblack@google.com################################################### 4013038Sgabeblack@google.com# 4112953Sgabeblack@google.com# Define needed sources. 4212837Sgabeblack@google.com# 4312837Sgabeblack@google.com################################################### 4412837Sgabeblack@google.com 4512837Sgabeblack@google.com# Base sources used by all configurations. 4612837Sgabeblack@google.com 4712943Sgabeblack@google.combase_sources = Split(''' 4812837Sgabeblack@google.com base/circlebuf.cc 4912837Sgabeblack@google.com base/copyright.cc 5012837Sgabeblack@google.com base/cprintf.cc 5112837Sgabeblack@google.com base/embedfile.cc 5212837Sgabeblack@google.com base/fast_alloc.cc 5312838Sgabeblack@google.com base/fifo_buffer.cc 5412837Sgabeblack@google.com base/hostinfo.cc 5512837Sgabeblack@google.com base/hybrid_pred.cc 5612940Sgabeblack@google.com base/inifile.cc 5712839Sgabeblack@google.com base/intmath.cc 5812837Sgabeblack@google.com base/match.cc 59 base/misc.cc 60 base/output.cc 61 base/pollevent.cc 62 base/range.cc 63 base/random.cc 64 base/sat_counter.cc 65 base/socket.cc 66 base/statistics.cc 67 base/str.cc 68 base/time.cc 69 base/trace.cc 70 base/traceflags.cc 71 base/userinfo.cc 72 base/compression/lzss_compression.cc 73 base/loader/aout_object.cc 74 base/loader/ecoff_object.cc 75 base/loader/elf_object.cc 76 base/loader/object_file.cc 77 base/loader/symtab.cc 78 base/stats/events.cc 79 base/stats/statdb.cc 80 base/stats/visit.cc 81 base/stats/text.cc 82 83 cpu/base.cc 84 cpu/base_dyn_inst.cc 85 cpu/exec_context.cc 86 cpu/exetrace.cc 87 cpu/pc_event.cc 88 cpu/static_inst.cc 89 cpu/sampler/sampler.cc 90 cpu/trace/reader/mem_trace_reader.cc 91 cpu/trace/reader/ibm_reader.cc 92 cpu/trace/reader/itx_reader.cc 93 cpu/trace/reader/m5_reader.cc 94 cpu/trace/opt_cpu.cc 95 cpu/trace/trace_cpu.cc 96 97 encumbered/mem/functional/main.cc 98 99 mem/base_hier.cc 100 mem/base_mem.cc 101 mem/hier_params.cc 102 mem/mem_cmd.cc 103 mem/mem_debug.cc 104 mem/mem_req.cc 105 mem/memory_interface.cc 106 mem/bus/base_interface.cc 107 mem/bus/bus.cc 108 mem/bus/bus_bridge.cc 109 mem/bus/bus_bridge_master.cc 110 mem/bus/bus_bridge_slave.cc 111 mem/bus/bus_interface.cc 112 mem/bus/dma_bus_interface.cc 113 mem/bus/dma_interface.cc 114 mem/bus/master_interface.cc 115 mem/bus/slave_interface.cc 116 mem/cache/base_cache.cc 117 mem/cache/cache.cc 118 mem/cache/cache_builder.cc 119 mem/cache/coherence/coherence_protocol.cc 120 mem/cache/coherence/uni_coherence.cc 121 mem/cache/miss/blocking_buffer.cc 122 mem/cache/miss/miss_queue.cc 123 mem/cache/miss/mshr.cc 124 mem/cache/miss/mshr_queue.cc 125 mem/cache/prefetch/base_prefetcher.cc 126 mem/cache/prefetch/prefetcher.cc 127 mem/cache/prefetch/tagged_prefetcher.cc 128 mem/cache/tags/base_tags.cc 129 mem/cache/tags/cache_tags.cc 130 mem/cache/tags/fa_lru.cc 131 mem/cache/tags/iic.cc 132 mem/cache/tags/lru.cc 133 mem/cache/tags/repl/gen.cc 134 mem/cache/tags/repl/repl.cc 135 mem/cache/tags/split.cc 136 mem/cache/tags/split_lru.cc 137 mem/cache/tags/split_lifo.cc 138 mem/functional/functional.cc 139 mem/timing/base_memory.cc 140 mem/timing/memory_builder.cc 141 mem/timing/simple_mem_bank.cc 142 mem/trace/itx_writer.cc 143 mem/trace/mem_trace_writer.cc 144 mem/trace/m5_writer.cc 145 146 python/pyconfig.cc 147 python/embedded_py.cc 148 149 sim/builder.cc 150 sim/configfile.cc 151 sim/debug.cc 152 sim/eventq.cc 153 sim/faults.cc 154 sim/main.cc 155 sim/param.cc 156 sim/profile.cc 157 sim/root.cc 158 sim/serialize.cc 159 sim/sim_events.cc 160 sim/sim_exit.cc 161 sim/sim_object.cc 162 sim/startup.cc 163 sim/stat_context.cc 164 sim/stat_control.cc 165 sim/trace_context.cc 166 ''') 167 168# Old FullCPU sources 169full_cpu_sources = Split(''' 170 encumbered/cpu/full/bpred.cc 171 encumbered/cpu/full/commit.cc 172 encumbered/cpu/full/cpu.cc 173 encumbered/cpu/full/create_vector.cc 174 encumbered/cpu/full/cv_spec_state.cc 175 encumbered/cpu/full/dd_queue.cc 176 encumbered/cpu/full/dep_link.cc 177 encumbered/cpu/full/dispatch.cc 178 encumbered/cpu/full/dyn_inst.cc 179 encumbered/cpu/full/execute.cc 180 encumbered/cpu/full/fetch.cc 181 encumbered/cpu/full/floss_reasons.cc 182 encumbered/cpu/full/fu_pool.cc 183 encumbered/cpu/full/inst_fifo.cc 184 encumbered/cpu/full/instpipe.cc 185 encumbered/cpu/full/issue.cc 186 encumbered/cpu/full/ls_queue.cc 187 encumbered/cpu/full/machine_queue.cc 188 encumbered/cpu/full/pipetrace.cc 189 encumbered/cpu/full/readyq.cc 190 encumbered/cpu/full/reg_info.cc 191 encumbered/cpu/full/rob_station.cc 192 encumbered/cpu/full/spec_memory.cc 193 encumbered/cpu/full/spec_state.cc 194 encumbered/cpu/full/storebuffer.cc 195 encumbered/cpu/full/writeback.cc 196 encumbered/cpu/full/iq/iq_station.cc 197 encumbered/cpu/full/iq/iqueue.cc 198 encumbered/cpu/full/iq/segmented/chain_info.cc 199 encumbered/cpu/full/iq/segmented/chain_wire.cc 200 encumbered/cpu/full/iq/segmented/iq_seg.cc 201 encumbered/cpu/full/iq/segmented/iq_segmented.cc 202 encumbered/cpu/full/iq/segmented/seg_chain.cc 203 encumbered/cpu/full/iq/seznec/iq_seznec.cc 204 encumbered/cpu/full/iq/standard/iq_standard.cc 205 ''') 206 207# MySql sources 208mysql_sources = Split(''' 209 base/mysql.cc 210 base/stats/mysql.cc 211 ''') 212 213# Full-system sources 214full_system_sources = Split(''' 215 base/crc.cc 216 base/inet.cc 217 base/remote_gdb.cc 218 219 cpu/intr_control.cc 220 cpu/profile.cc 221 222 dev/alpha_console.cc 223 dev/baddev.cc 224 dev/simconsole.cc 225 dev/disk_image.cc 226 dev/etherbus.cc 227 dev/etherdump.cc 228 dev/etherint.cc 229 dev/etherlink.cc 230 dev/etherpkt.cc 231 dev/ethertap.cc 232 dev/ide_ctrl.cc 233 dev/ide_disk.cc 234 dev/io_device.cc 235 dev/ns_gige.cc 236 dev/pciconfigall.cc 237 dev/pcidev.cc 238 dev/pcifake.cc 239 dev/pktfifo.cc 240 dev/platform.cc 241 dev/sinic.cc 242 dev/simple_disk.cc 243 dev/tsunami.cc 244 dev/tsunami_cchip.cc 245 dev/isa_fake.cc 246 dev/tsunami_io.cc 247 dev/tsunami_pchip.cc 248 dev/uart.cc 249 dev/uart8250.cc 250 251 kern/kernel_binning.cc 252 kern/kernel_stats.cc 253 kern/system_events.cc 254 kern/freebsd/freebsd_system.cc 255 kern/linux/linux_syscalls.cc 256 kern/linux/linux_system.cc 257 kern/linux/printk.cc 258 kern/tru64/dump_mbuf.cc 259 kern/tru64/printf.cc 260 kern/tru64/tru64_events.cc 261 kern/tru64/tru64_syscalls.cc 262 kern/tru64/tru64_system.cc 263 264 mem/functional/memory_control.cc 265 mem/functional/physical.cc 266 267 sim/system.cc 268 sim/pseudo_inst.cc 269 ''') 270 271# turbolaser encumbered sources 272turbolaser_sources = Split(''' 273 encumbered/dev/dma.cc 274 encumbered/dev/etherdev.cc 275 encumbered/dev/scsi.cc 276 encumbered/dev/scsi_ctrl.cc 277 encumbered/dev/scsi_disk.cc 278 encumbered/dev/scsi_none.cc 279 encumbered/dev/tlaser_clock.cc 280 encumbered/dev/tlaser_ipi.cc 281 encumbered/dev/tlaser_mbox.cc 282 encumbered/dev/tlaser_mc146818.cc 283 encumbered/dev/tlaser_node.cc 284 encumbered/dev/tlaser_pcia.cc 285 encumbered/dev/tlaser_pcidev.cc 286 encumbered/dev/tlaser_serial.cc 287 encumbered/dev/turbolaser.cc 288 encumbered/dev/uart8530.cc 289 ''') 290 291# Syscall emulation (non-full-system) sources 292syscall_emulation_sources = Split(''' 293 cpu/memtest/memtest.cc 294 encumbered/eio/eio.cc 295 encumbered/eio/exolex.cc 296 encumbered/eio/libexo.cc 297 kern/linux/linux.cc 298 kern/tru64/tru64.cc 299 sim/process.cc 300 sim/syscall_emul.cc 301 ''') 302 303# Add a flag defining what THE_ISA should be for all compilation 304env.Append(CPPDEFINES=[('THE_ISA','%s_ISA' % env['TARGET_ISA'].upper())]) 305 306arch_sources = SConscript('arch/SConscript', 307 exports = 'env', duplicate = False) 308 309cpu_sources = SConscript('cpu/SConscript', 310 exports = 'env', duplicate = False) 311 312# This is outside of cpu/SConscript since the source directory isn't 313# underneath 'cpu'. 314if 'FullCPU' in env['CPU_MODELS']: 315 cpu_sources += full_cpu_sources 316 317# Set up complete list of sources based on configuration. 318sources = base_sources + arch_sources + cpu_sources 319 320if env['FULL_SYSTEM']: 321 sources += full_system_sources 322 if env['ALPHA_TLASER']: 323 sources += turbolaser_sources 324else: 325 sources += syscall_emulation_sources 326 327if env['USE_MYSQL']: 328 sources += mysql_sources 329 330for opt in env.ExportOptions: 331 env.ConfigFile(opt) 332 333################################################### 334# 335# Special build rules. 336# 337################################################### 338 339# base/traceflags.{cc,hh} are generated from base/traceflags.py. 340# $TARGET.base will expand to "<build-dir>/base/traceflags". 341env.Command(Split('base/traceflags.hh base/traceflags.cc'), 342 'base/traceflags.py', 343 'python $SOURCE $TARGET.base') 344 345# libelf build is described in its own SConscript file. 346# SConscript-local is the per-config build, which just copies some 347# header files into a place where they can be found. 348SConscript('libelf/SConscript-local', exports = 'env', duplicate=0) 349SConscript('python/SConscript', exports = ['env'], duplicate=0) 350 351# This function adds the specified sources to the given build 352# environment, and returns a list of all the corresponding SCons 353# Object nodes (including an extra one for date.cc). We explicitly 354# add the Object nodes so we can set up special dependencies for 355# date.cc. 356def make_objs(sources, env): 357 objs = [env.Object(s) for s in sources] 358 # make date.cc depend on all other objects so it always gets 359 # recompiled whenever anything else does 360 date_obj = env.Object('base/date.cc') 361 env.Depends(date_obj, objs) 362 objs.append(date_obj) 363 return objs 364 365################################################### 366# 367# Define binaries. Each different build type (debug, opt, etc.) gets 368# a slightly different build environment. 369# 370################################################### 371 372# Include file paths are rooted in this directory. SCons will 373# automatically expand '.' to refer to both the source directory and 374# the corresponding build directory to pick up generated include 375# files. 376env.Append(CPPPATH='.') 377env.Append(CPPPATH='./libelf') 378 379# Debug binary 380debugEnv = env.Copy(OBJSUFFIX='.do') 381debugEnv.Label = 'debug' 382debugEnv.Append(CCFLAGS=Split('-g -gstabs+ -O0')) 383debugEnv.Append(CPPDEFINES='DEBUG') 384tlist = debugEnv.Program(target = 'm5.debug', 385 source = make_objs(sources, debugEnv)) 386debugEnv.M5Binary = tlist[0] 387 388# Optimized binary 389optEnv = env.Copy() 390optEnv.Label = 'opt' 391optEnv.Append(CCFLAGS=Split('-g -O5')) 392tlist = optEnv.Program(target = 'm5.opt', 393 source = make_objs(sources, optEnv)) 394optEnv.M5Binary = tlist[0] 395 396# "Fast" binary 397fastEnv = env.Copy(OBJSUFFIX='.fo') 398fastEnv.Label = 'fast' 399fastEnv.Append(CCFLAGS=Split('-O5')) 400fastEnv.Append(CPPDEFINES='NDEBUG') 401fastEnv.Program(target = 'm5.fast.unstripped', 402 source = make_objs(sources, fastEnv)) 403tlist = fastEnv.Command(target = 'm5.fast', 404 source = 'm5.fast.unstripped', 405 action = 'strip $SOURCE -o $TARGET') 406fastEnv.M5Binary = tlist[0] 407 408# Profiled binary 409profEnv = env.Copy(OBJSUFFIX='.po') 410profEnv.Label = 'prof' 411profEnv.Append(CCFLAGS=Split('-O5 -g -pg'), LINKFLAGS='-pg') 412tlist = profEnv.Program(target = 'm5.prof', 413 source = make_objs(sources, profEnv)) 414profEnv.M5Binary = tlist[0] 415 416envList = [debugEnv, optEnv, fastEnv, profEnv] 417 418Return('envList') 419