SConscript revision 3960
1955SN/A# -*- mode:python -*- 2955SN/A 31762SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan 4955SN/A# All rights reserved. 5955SN/A# 6955SN/A# Redistribution and use in source and binary forms, with or without 7955SN/A# modification, are permitted provided that the following conditions are 8955SN/A# met: redistributions of source code must retain the above copyright 9955SN/A# notice, this list of conditions and the following disclaimer; 10955SN/A# redistributions in binary form must reproduce the above copyright 11955SN/A# notice, this list of conditions and the following disclaimer in the 12955SN/A# documentation and/or other materials provided with the distribution; 13955SN/A# neither the name of the copyright holders nor the names of its 14955SN/A# contributors may be used to endorse or promote products derived from 15955SN/A# this software without specific prior written permission. 16955SN/A# 17955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 282665Ssaidi@eecs.umich.edu# 292665Ssaidi@eecs.umich.edu# Authors: Steve Reinhardt 30955SN/A 31955SN/Aimport os 32955SN/Aimport sys 331608SN/Afrom os.path import isfile, join as joinpath 34955SN/A 35955SN/A# This file defines how to build a particular configuration of M5 36955SN/A# based on variable settings in the 'env' build environment. 37955SN/A 38955SN/A# Import build environment variable from SConstruct. 39955SN/AImport('env') 40955SN/A 41955SN/A################################################### 42955SN/A# 43955SN/A# Define needed sources. 44955SN/A# 45955SN/A################################################### 46955SN/A 47955SN/A# Base sources used by all configurations. 482023SN/A 49955SN/Abase_sources = Split(''' 50955SN/A base/annotate.cc 51955SN/A base/circlebuf.cc 52955SN/A base/cprintf.cc 53955SN/A base/fast_alloc.cc 54955SN/A base/fifo_buffer.cc 55955SN/A base/hostinfo.cc 56955SN/A base/hybrid_pred.cc 57955SN/A base/inifile.cc 581031SN/A base/intmath.cc 59955SN/A base/match.cc 601388SN/A base/misc.cc 61955SN/A base/output.cc 62955SN/A base/pollevent.cc 631296SN/A base/range.cc 64955SN/A base/random.cc 65955SN/A base/remote_gdb.cc 66955SN/A base/sat_counter.cc 67955SN/A base/socket.cc 68955SN/A base/statistics.cc 69955SN/A base/str.cc 70955SN/A base/time.cc 71955SN/A base/trace.cc 72955SN/A base/traceflags.cc 73955SN/A base/userinfo.cc 74955SN/A base/compression/lzss_compression.cc 75955SN/A base/loader/aout_object.cc 76955SN/A base/loader/ecoff_object.cc 77955SN/A base/loader/elf_object.cc 78955SN/A base/loader/raw_object.cc 79955SN/A base/loader/object_file.cc 80955SN/A base/loader/symtab.cc 81955SN/A base/stats/events.cc 82955SN/A base/stats/statdb.cc 832325SN/A base/stats/visit.cc 841717SN/A base/stats/text.cc 852652Ssaidi@eecs.umich.edu 86955SN/A cpu/activity.cc 872736Sktlim@umich.edu cpu/base.cc 882410SN/A cpu/cpuevent.cc 89955SN/A cpu/exetrace.cc 902290SN/A cpu/func_unit.cc 91955SN/A cpu/op_class.cc 922683Sktlim@umich.edu cpu/pc_event.cc 932683Sktlim@umich.edu cpu/quiesce_event.cc 942669Sktlim@umich.edu cpu/static_inst.cc 952568SN/A cpu/simple_thread.cc 962568SN/A cpu/thread_state.cc 973012Ssaidi@eecs.umich.edu 982462SN/A mem/bridge.cc 992568SN/A mem/bus.cc 1002395SN/A mem/dram.cc 1012405SN/A mem/mem_object.cc 1022914Ssaidi@eecs.umich.edu mem/packet.cc 103955SN/A mem/physical.cc 1042811Srdreslin@umich.edu mem/port.cc 1052811Srdreslin@umich.edu mem/tport.cc 1062811Srdreslin@umich.edu 1072811Srdreslin@umich.edu mem/cache/base_cache.cc 1082811Srdreslin@umich.edu mem/cache/cache.cc 1092811Srdreslin@umich.edu mem/cache/coherence/coherence_protocol.cc 1102811Srdreslin@umich.edu mem/cache/coherence/uni_coherence.cc 1112811Srdreslin@umich.edu mem/cache/miss/blocking_buffer.cc 1122811Srdreslin@umich.edu mem/cache/miss/miss_buffer.cc 1132811Srdreslin@umich.edu mem/cache/miss/miss_queue.cc 1142811Srdreslin@umich.edu mem/cache/miss/mshr.cc 1152811Srdreslin@umich.edu mem/cache/miss/mshr_queue.cc 1162811Srdreslin@umich.edu mem/cache/prefetch/base_prefetcher.cc 1172811Srdreslin@umich.edu mem/cache/prefetch/ghb_prefetcher.cc 1182811Srdreslin@umich.edu mem/cache/prefetch/prefetcher.cc 1192811Srdreslin@umich.edu mem/cache/prefetch/stride_prefetcher.cc 1202814Srdreslin@umich.edu mem/cache/prefetch/tagged_prefetcher.cc 1212811Srdreslin@umich.edu mem/cache/tags/base_tags.cc 1222811Srdreslin@umich.edu mem/cache/tags/cache_tags.cc 1232811Srdreslin@umich.edu mem/cache/tags/fa_lru.cc 1242811Srdreslin@umich.edu mem/cache/tags/iic.cc 1252811Srdreslin@umich.edu mem/cache/tags/lru.cc 1262811Srdreslin@umich.edu mem/cache/tags/repl/gen.cc 1272811Srdreslin@umich.edu mem/cache/tags/repl/repl.cc 1282813Srdreslin@umich.edu mem/cache/tags/split.cc 1292813Srdreslin@umich.edu mem/cache/tags/split_lifo.cc 130955SN/A mem/cache/tags/split_lru.cc 131955SN/A 132955SN/A mem/cache/cache_builder.cc 1332090SN/A 134955SN/A python/swig/debug_wrap.cc 1352763Sstever@eecs.umich.edu python/swig/main_wrap.cc 136955SN/A 1371696SN/A sim/builder.cc 138955SN/A sim/debug.cc 139955SN/A sim/eventq.cc 140955SN/A sim/faults.cc 1411127SN/A sim/main.cc 142955SN/A sim/param.cc 143955SN/A sim/root.cc 1442379SN/A sim/serialize.cc 145955SN/A sim/sim_events.cc 146955SN/A sim/sim_object.cc 147955SN/A sim/startup.cc 1482155SN/A sim/stat_context.cc 1492155SN/A sim/stat_control.cc 1502155SN/A sim/system.cc 1512155SN/A sim/trace_context.cc 1522155SN/A ''') 1532155SN/A 1542155SN/Atrace_reader_sources = Split(''' 1552155SN/A cpu/trace/reader/mem_trace_reader.cc 1562155SN/A cpu/trace/reader/ibm_reader.cc 1572155SN/A cpu/trace/reader/itx_reader.cc 1582155SN/A cpu/trace/reader/m5_reader.cc 1592155SN/A cpu/trace/opt_cpu.cc 1602155SN/A cpu/trace/trace_cpu.cc 1612155SN/A ''') 1622155SN/A 1632155SN/A 1642155SN/A 1652155SN/A# MySql sources 1662155SN/Amysql_sources = Split(''' 1672155SN/A base/mysql.cc 1682155SN/A base/stats/mysql.cc 1692155SN/A ''') 1702155SN/A 1712155SN/A# Full-system sources 1722155SN/Afull_system_sources = Split(''' 1732155SN/A base/crc.cc 1742155SN/A base/inet.cc 1752155SN/A 1762155SN/A cpu/intr_control.cc 1772155SN/A cpu/profile.cc 1782155SN/A 1792155SN/A dev/uart.cc 1802155SN/A dev/uart8250.cc 1812155SN/A 1822155SN/A mem/vport.cc 1832155SN/A 1842155SN/A sim/pseudo_inst.cc 1852155SN/A ''') 1862155SN/A #dev/sinic.cc 1872422SN/A #dev/i8254xGBe.cc 1882422SN/A 1892422SN/Aif env['TARGET_ISA'] == 'alpha': 1902422SN/A full_system_sources += Split(''' 1912422SN/A kern/tru64/dump_mbuf.cc 1922422SN/A kern/tru64/printf.cc 1932422SN/A kern/tru64/tru64_events.cc 1942397SN/A kern/tru64/tru64_syscalls.cc 1952397SN/A ''') 1962422SN/A 1972422SN/A# Syscall emulation (non-full-system) sources 198955SN/Asyscall_emulation_sources = Split(''' 199955SN/A mem/translating_port.cc 200955SN/A mem/page_table.cc 201955SN/A sim/process.cc 202955SN/A sim/syscall_emul.cc 203955SN/A ''') 204955SN/A 205955SN/A#if env['TARGET_ISA'] == 'alpha': 2061078SN/A# syscall_emulation_sources += Split(''' 207955SN/A# kern/tru64/tru64.cc 208955SN/A# ''') 209955SN/A 210955SN/Amemtest_sources = Split(''' 2111917SN/A cpu/memtest/memtest.cc 212955SN/A ''') 213955SN/A 214955SN/A# Include file paths are rooted in this directory. SCons will 215955SN/A# automatically expand '.' to refer to both the source directory and 216974SN/A# the corresponding build directory to pick up generated include 217955SN/A# files. 218955SN/Aenv.Append(CPPPATH=Dir('.')) 219955SN/A 220955SN/A# Add a flag defining what THE_ISA should be for all compilation 2212566SN/Aenv.Append(CPPDEFINES=[('THE_ISA','%s_ISA' % env['TARGET_ISA'].upper())]) 2222566SN/A 223955SN/Aarch_sources = SConscript(os.path.join('arch', 'SConscript'), exports = 'env') 224955SN/A 2252539SN/Acpu_sources = SConscript(os.path.join('cpu', 'SConscript'), exports = 'env') 226955SN/A 227955SN/Aif env['FULL_SYSTEM']: 228955SN/A dev_sources = SConscript(os.path.join('dev', 'SConscript'), 2291817SN/A exports = 'env') 2301154SN/A full_system_sources += dev_sources 2311840SN/A 2322522SN/A kern_sources = SConscript(os.path.join('kern', 'SConscript'), 2332522SN/A exports = 'env') 234955SN/A full_system_sources += kern_sources 235955SN/A 236955SN/A# Set up complete list of sources based on configuration. 2372539SN/Asources = base_sources + arch_sources + cpu_sources 238955SN/A 2392539SN/A# encumbered should be last because we're adding to some of the other groups 240955SN/Aif isfile(joinpath(env['SRCDIR'], 'encumbered/SConscript')): 2411730SN/A sources += SConscript('encumbered/SConscript', exports = 'env') 242955SN/A 243955SN/A 244955SN/Aif env['FULL_SYSTEM']: 2452212SN/A sources += full_system_sources 246955SN/Aelse: 2471040SN/A sources += syscall_emulation_sources 2482507SN/A 2492521SN/Aif env['USE_MYSQL']: 2502521SN/A sources += mysql_sources 2512507SN/A 2522507SN/Afor opt in env.ExportOptions: 2532989Ssaidi@eecs.umich.edu env.ConfigFile(opt) 2542507SN/A 2552521SN/A################################################### 2562507SN/A# 2572507SN/A# Special build rules. 258955SN/A# 259955SN/A################################################### 260955SN/A 261955SN/A# base/traceflags.{cc,hh} are generated from base/traceflags.py. 262955SN/A# $TARGET.base will expand to "<build-dir>/base/traceflags". 263955SN/Aenv.Command(Split('base/traceflags.hh base/traceflags.cc'), 2641742SN/A 'base/traceflags.py', 2651742SN/A 'python $SOURCE $TARGET.base') 2661742SN/A 2671742SN/ASConscript('python/SConscript', exports = ['env']) 2681742SN/A 2691742SN/A# This function adds the specified sources to the given build 2701742SN/A# environment, and returns a list of all the corresponding SCons 2711742SN/A# Object nodes (including an extra one for date.cc). We explicitly 2721742SN/A# add the Object nodes so we can set up special dependencies for 2731742SN/A# date.cc. 2741742SN/Adef make_objs(sources, env): 2751742SN/A objs = [env.Object(s) for s in sources] 2761742SN/A # make date.cc depend on all other objects so it always gets 2771742SN/A # recompiled whenever anything else does 2781742SN/A date_obj = env.Object('base/date.cc') 2791742SN/A env.Depends(date_obj, objs) 2801742SN/A objs.append(date_obj) 2811742SN/A return objs 2821742SN/A 2831742SN/A################################################### 284955SN/A# 285955SN/A# Define binaries. Each different build type (debug, opt, etc.) gets 2862520SN/A# a slightly different build environment. 2872517SN/A# 2882253SN/A################################################### 2892253SN/A 2902253SN/A# List of constructed environments to pass back to SConstruct 2912253SN/AenvList = [] 2922553SN/A 2932553SN/A# Function to create a new build environment as clone of current 2942553SN/A# environment 'env' with modified object suffix and optional stripped 2952553SN/A# binary. Additional keyword arguments are appended to corresponding 2962507SN/A# build environment vars. 2972470SN/Adef makeEnv(label, objsfx, strip = False, **kwargs): 2981744SN/A newEnv = env.Copy(OBJSUFFIX=objsfx) 2991744SN/A newEnv.Label = label 3002470SN/A newEnv.Append(**kwargs) 3012470SN/A exe = 'm5.' + label # final executable 3022470SN/A bin = exe + '.bin' # executable w/o appended Python zip archive 3032919Sktlim@umich.edu newEnv.Program(bin, make_objs(sources, newEnv)) 3042470SN/A if strip: 3052470SN/A stripped_bin = bin + '.stripped' 3062400SN/A newEnv.Command(stripped_bin, bin, 'strip $SOURCE -o $TARGET') 3072400SN/A bin = stripped_bin 308955SN/A targets = newEnv.Concat(exe, [bin, 'python/m5py.zip']) 309955SN/A newEnv.M5Binary = targets[0] 3102667Sstever@eecs.umich.edu envList.append(newEnv) 3112667Sstever@eecs.umich.edu 3122667Sstever@eecs.umich.edu# Debug binary 3132667Sstever@eecs.umich.edu# Solaris seems to have some issue with DWARF2 debugging information, it's ok 3142667Sstever@eecs.umich.edu# with stabs though 3152667Sstever@eecs.umich.eduif sys.platform == 'sunos5': 3162037SN/A debug_flag = '-gstabs+' 3172037SN/Aelse: 3182037SN/A debug_flag = '-ggdb3' 3192667Sstever@eecs.umich.edu 3202139SN/AmakeEnv('debug', '.do', 3212667Sstever@eecs.umich.edu CCFLAGS = Split('%s -O0' % debug_flag), 3222155SN/A CPPDEFINES = ['DEBUG', 'TRACING_ON=1']) 3232155SN/A 3242155SN/A# Optimized binary 3252155SN/AmakeEnv('opt', '.o', 3262155SN/A CCFLAGS = Split('-g -O3'), 3272155SN/A CPPDEFINES = ['TRACING_ON=1']) 328955SN/A 3292155SN/A# "Fast" binary 330955SN/AmakeEnv('fast', '.fo', strip = True, 331955SN/A CCFLAGS = Split('-O3'), 332955SN/A CPPDEFINES = ['NDEBUG', 'TRACING_ON=0']) 3331742SN/A 3341742SN/A# Profiled binary 335955SN/AmakeEnv('prof', '.po', 336955SN/A CCFLAGS = Split('-O3 -g -pg'), 337955SN/A CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 3381858SN/A LINKFLAGS = '-pg') 339955SN/A 3401858SN/AReturn('envList') 3411858SN/A