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