SConscript revision 11308
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# 294762Snate@binkert.org# Authors: Nathan Binkert 30955SN/A 315522Snate@binkert.orgimport array 326143Snate@binkert.orgimport bisect 334762Snate@binkert.orgimport imp 345522Snate@binkert.orgimport marshal 35955SN/Aimport os 365522Snate@binkert.orgimport re 37955SN/Aimport sys 385522Snate@binkert.orgimport zlib 394202Sbinkertn@umich.edu 405742Snate@binkert.orgfrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath 41955SN/A 424381Sbinkertn@umich.eduimport SCons 434381Sbinkertn@umich.edu 448334Snate@binkert.org# This file defines how to build a particular configuration of gem5 45955SN/A# based on variable settings in the 'env' build environment. 46955SN/A 474202Sbinkertn@umich.eduImport('*') 48955SN/A 494382Sbinkertn@umich.edu# Children need to see the environment 504382Sbinkertn@umich.eduExport('env') 514382Sbinkertn@umich.edu 526654Snate@binkert.orgbuild_env = [(opt, env[opt]) for opt in export_vars] 535517Snate@binkert.org 548614Sgblack@eecs.umich.edufrom m5.util import code_formatter, compareVersions 557674Snate@binkert.org 566143Snate@binkert.org######################################################################## 576143Snate@binkert.org# Code for adding source files of various types 586143Snate@binkert.org# 598233Snate@binkert.org# When specifying a source file of some type, a set of guards can be 608233Snate@binkert.org# specified for that file. When get() is used to find the files, if 618233Snate@binkert.org# get specifies a set of filters, only files that match those filters 628233Snate@binkert.org# will be accepted (unspecified filters on files are assumed to be 638233Snate@binkert.org# false). Current filters are: 648334Snate@binkert.org# main -- specifies the gem5 main() function 658334Snate@binkert.org# skip_lib -- do not put this file into the gem5 library 6610453SAndrew.Bardsley@arm.com# skip_no_python -- do not put this file into a no_python library 6710453SAndrew.Bardsley@arm.com# as it embeds compiled Python 688233Snate@binkert.org# <unittest> -- unit tests use filters based on the unit test name 698233Snate@binkert.org# 708233Snate@binkert.org# A parent can now be specified for a source file and default filter 718233Snate@binkert.org# values will be retrieved recursively from parents (children override 728233Snate@binkert.org# parents). 738233Snate@binkert.org# 746143Snate@binkert.orgclass SourceMeta(type): 758233Snate@binkert.org '''Meta class for source files that keeps track of all files of a 768233Snate@binkert.org particular type and has a get function for finding all functions 778233Snate@binkert.org of a certain type that match a set of guards''' 786143Snate@binkert.org def __init__(cls, name, bases, dict): 796143Snate@binkert.org super(SourceMeta, cls).__init__(name, bases, dict) 806143Snate@binkert.org cls.all = [] 816143Snate@binkert.org 828233Snate@binkert.org def get(cls, **guards): 838233Snate@binkert.org '''Find all files that match the specified guards. If a source 848233Snate@binkert.org file does not specify a flag, the default is False''' 856143Snate@binkert.org for src in cls.all: 868233Snate@binkert.org for flag,value in guards.iteritems(): 878233Snate@binkert.org # if the flag is found and has a different value, skip 888233Snate@binkert.org # this file 898233Snate@binkert.org if src.all_guards.get(flag, False) != value: 906143Snate@binkert.org break 916143Snate@binkert.org else: 926143Snate@binkert.org yield src 934762Snate@binkert.org 946143Snate@binkert.orgclass SourceFile(object): 958233Snate@binkert.org '''Base object that encapsulates the notion of a source file. 968233Snate@binkert.org This includes, the source node, target node, various manipulations 978233Snate@binkert.org of those. A source file also specifies a set of guards which 988233Snate@binkert.org describing which builds the source file applies to. A parent can 998233Snate@binkert.org also be specified to get default guards from''' 1006143Snate@binkert.org __metaclass__ = SourceMeta 1018233Snate@binkert.org def __init__(self, source, parent=None, **guards): 1028233Snate@binkert.org self.guards = guards 1038233Snate@binkert.org self.parent = parent 1048233Snate@binkert.org 1056143Snate@binkert.org tnode = source 1066143Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1076143Snate@binkert.org tnode = File(source) 1086143Snate@binkert.org 1096143Snate@binkert.org self.tnode = tnode 1106143Snate@binkert.org self.snode = tnode.srcnode() 1116143Snate@binkert.org 1126143Snate@binkert.org for base in type(self).__mro__: 1136143Snate@binkert.org if issubclass(base, SourceFile): 1147065Snate@binkert.org base.all.append(self) 1156143Snate@binkert.org 1168233Snate@binkert.org @property 1178233Snate@binkert.org def filename(self): 1188233Snate@binkert.org return str(self.tnode) 1198233Snate@binkert.org 1208233Snate@binkert.org @property 1218233Snate@binkert.org def dirname(self): 1228233Snate@binkert.org return dirname(self.filename) 1238233Snate@binkert.org 1248233Snate@binkert.org @property 1258233Snate@binkert.org def basename(self): 1268233Snate@binkert.org return basename(self.filename) 1278233Snate@binkert.org 1288233Snate@binkert.org @property 1298233Snate@binkert.org def extname(self): 1308233Snate@binkert.org index = self.basename.rfind('.') 1318233Snate@binkert.org if index <= 0: 1328233Snate@binkert.org # dot files aren't extensions 1338233Snate@binkert.org return self.basename, None 1348233Snate@binkert.org 1358233Snate@binkert.org return self.basename[:index], self.basename[index+1:] 1368233Snate@binkert.org 1378233Snate@binkert.org @property 1388233Snate@binkert.org def all_guards(self): 1398233Snate@binkert.org '''find all guards for this object getting default values 1408233Snate@binkert.org recursively from its parents''' 1418233Snate@binkert.org guards = {} 1428233Snate@binkert.org if self.parent: 1438233Snate@binkert.org guards.update(self.parent.guards) 1448233Snate@binkert.org guards.update(self.guards) 1458233Snate@binkert.org return guards 1468233Snate@binkert.org 1476143Snate@binkert.org def __lt__(self, other): return self.filename < other.filename 1486143Snate@binkert.org def __le__(self, other): return self.filename <= other.filename 1496143Snate@binkert.org def __gt__(self, other): return self.filename > other.filename 1506143Snate@binkert.org def __ge__(self, other): return self.filename >= other.filename 1516143Snate@binkert.org def __eq__(self, other): return self.filename == other.filename 1526143Snate@binkert.org def __ne__(self, other): return self.filename != other.filename 1539982Satgutier@umich.edu 15410196SCurtis.Dunham@arm.com @staticmethod 15510196SCurtis.Dunham@arm.com def done(): 15610196SCurtis.Dunham@arm.com def disabled(cls, name, *ignored): 15710196SCurtis.Dunham@arm.com raise RuntimeError("Additional SourceFile '%s'" % name,\ 15810196SCurtis.Dunham@arm.com "declared, but targets deps are already fixed.") 15910196SCurtis.Dunham@arm.com SourceFile.__init__ = disabled 16010196SCurtis.Dunham@arm.com 16110196SCurtis.Dunham@arm.com 1626143Snate@binkert.orgclass Source(SourceFile): 1636143Snate@binkert.org '''Add a c/c++ source file to the build''' 1648945Ssteve.reinhardt@amd.com def __init__(self, source, Werror=True, swig=False, **guards): 1658233Snate@binkert.org '''specify the source file, and any guards''' 1668233Snate@binkert.org super(Source, self).__init__(source, **guards) 1676143Snate@binkert.org 1688945Ssteve.reinhardt@amd.com self.Werror = Werror 1696143Snate@binkert.org self.swig = swig 1706143Snate@binkert.org 1716143Snate@binkert.orgclass PySource(SourceFile): 1726143Snate@binkert.org '''Add a python source file to the named package''' 1735522Snate@binkert.org invalid_sym_char = re.compile('[^A-z0-9_]') 1746143Snate@binkert.org modules = {} 1756143Snate@binkert.org tnodes = {} 1766143Snate@binkert.org symnames = {} 1779982Satgutier@umich.edu 1788233Snate@binkert.org def __init__(self, package, source, **guards): 1798233Snate@binkert.org '''specify the python package, the source file, and any guards''' 1808233Snate@binkert.org super(PySource, self).__init__(source, **guards) 1816143Snate@binkert.org 1826143Snate@binkert.org modname,ext = self.extname 1836143Snate@binkert.org assert ext == 'py' 1846143Snate@binkert.org 1855522Snate@binkert.org if package: 1865522Snate@binkert.org path = package.split('.') 1875522Snate@binkert.org else: 1885522Snate@binkert.org path = [] 1895604Snate@binkert.org 1905604Snate@binkert.org modpath = path[:] 1916143Snate@binkert.org if modname != '__init__': 1926143Snate@binkert.org modpath += [ modname ] 1934762Snate@binkert.org modpath = '.'.join(modpath) 1944762Snate@binkert.org 1956143Snate@binkert.org arcpath = path + [ self.basename ] 1966727Ssteve.reinhardt@amd.com abspath = self.snode.abspath 1976727Ssteve.reinhardt@amd.com if not exists(abspath): 1986727Ssteve.reinhardt@amd.com abspath = self.tnode.abspath 1994762Snate@binkert.org 2006143Snate@binkert.org self.package = package 2016143Snate@binkert.org self.modname = modname 2026143Snate@binkert.org self.modpath = modpath 2036143Snate@binkert.org self.arcname = joinpath(*arcpath) 2046727Ssteve.reinhardt@amd.com self.abspath = abspath 2056143Snate@binkert.org self.compiled = File(self.filename + 'c') 2067674Snate@binkert.org self.cpp = File(self.filename + '.cc') 2077674Snate@binkert.org self.symname = PySource.invalid_sym_char.sub('_', modpath) 2085604Snate@binkert.org 2096143Snate@binkert.org PySource.modules[modpath] = self 2106143Snate@binkert.org PySource.tnodes[self.tnode] = self 2116143Snate@binkert.org PySource.symnames[self.symname] = self 2124762Snate@binkert.org 2136143Snate@binkert.orgclass SimObject(PySource): 2144762Snate@binkert.org '''Add a SimObject python file as a python source object and add 2154762Snate@binkert.org it to a list of sim object modules''' 2164762Snate@binkert.org 2176143Snate@binkert.org fixed = False 2186143Snate@binkert.org modnames = [] 2194762Snate@binkert.org 2208233Snate@binkert.org def __init__(self, source, **guards): 2218233Snate@binkert.org '''Specify the source file and any guards (automatically in 2228233Snate@binkert.org the m5.objects package)''' 2238233Snate@binkert.org super(SimObject, self).__init__('m5.objects', source, **guards) 2246143Snate@binkert.org if self.fixed: 2256143Snate@binkert.org raise AttributeError, "Too late to call SimObject now." 2264762Snate@binkert.org 2276143Snate@binkert.org bisect.insort_right(SimObject.modnames, self.modname) 2284762Snate@binkert.org 2296143Snate@binkert.orgclass SwigSource(SourceFile): 2304762Snate@binkert.org '''Add a swig file to build''' 2316143Snate@binkert.org 2328233Snate@binkert.org def __init__(self, package, source, **guards): 2338233Snate@binkert.org '''Specify the python package, the source file, and any guards''' 23410453SAndrew.Bardsley@arm.com super(SwigSource, self).__init__(source, skip_no_python=True, **guards) 2356143Snate@binkert.org 2366143Snate@binkert.org modname,ext = self.extname 2376143Snate@binkert.org assert ext == 'i' 2386143Snate@binkert.org 2396143Snate@binkert.org self.module = modname 2406143Snate@binkert.org cc_file = joinpath(self.dirname, modname + '_wrap.cc') 2416143Snate@binkert.org py_file = joinpath(self.dirname, modname + '.py') 2426143Snate@binkert.org 24310453SAndrew.Bardsley@arm.com self.cc_source = Source(cc_file, swig=True, parent=self, **guards) 24410453SAndrew.Bardsley@arm.com self.py_source = PySource(package, py_file, parent=self, **guards) 245955SN/A 2469396Sandreas.hansson@arm.comclass ProtoBuf(SourceFile): 2479396Sandreas.hansson@arm.com '''Add a Protocol Buffer to build''' 2489396Sandreas.hansson@arm.com 2499396Sandreas.hansson@arm.com def __init__(self, source, **guards): 2509396Sandreas.hansson@arm.com '''Specify the source file, and any guards''' 2519396Sandreas.hansson@arm.com super(ProtoBuf, self).__init__(source, **guards) 2529396Sandreas.hansson@arm.com 2539396Sandreas.hansson@arm.com # Get the file name and the extension 2549396Sandreas.hansson@arm.com modname,ext = self.extname 2559396Sandreas.hansson@arm.com assert ext == 'proto' 2569396Sandreas.hansson@arm.com 2579396Sandreas.hansson@arm.com # Currently, we stick to generating the C++ headers, so we 2589396Sandreas.hansson@arm.com # only need to track the source and header. 2599930Sandreas.hansson@arm.com self.cc_file = File(modname + '.pb.cc') 2609930Sandreas.hansson@arm.com self.hh_file = File(modname + '.pb.h') 2619396Sandreas.hansson@arm.com 2628235Snate@binkert.orgclass UnitTest(object): 2638235Snate@binkert.org '''Create a UnitTest''' 2646143Snate@binkert.org 2658235Snate@binkert.org all = [] 2669003SAli.Saidi@ARM.com def __init__(self, target, *sources, **kwargs): 2678235Snate@binkert.org '''Specify the target name and any sources. Sources that are 2688235Snate@binkert.org not SourceFiles are evalued with Source(). All files are 2698235Snate@binkert.org guarded with a guard of the same name as the UnitTest 2708235Snate@binkert.org target.''' 2718235Snate@binkert.org 2728235Snate@binkert.org srcs = [] 2738235Snate@binkert.org for src in sources: 2748235Snate@binkert.org if not isinstance(src, SourceFile): 2758235Snate@binkert.org src = Source(src, skip_lib=True) 2768235Snate@binkert.org src.guards[target] = True 2778235Snate@binkert.org srcs.append(src) 2788235Snate@binkert.org 2798235Snate@binkert.org self.sources = srcs 2808235Snate@binkert.org self.target = target 2819003SAli.Saidi@ARM.com self.main = kwargs.get('main', False) 2828235Snate@binkert.org UnitTest.all.append(self) 2835584Snate@binkert.org 2844382Sbinkertn@umich.edu# Children should have access 2854202Sbinkertn@umich.eduExport('Source') 2864382Sbinkertn@umich.eduExport('PySource') 2874382Sbinkertn@umich.eduExport('SimObject') 2884382Sbinkertn@umich.eduExport('SwigSource') 2899396Sandreas.hansson@arm.comExport('ProtoBuf') 2905584Snate@binkert.orgExport('UnitTest') 2914382Sbinkertn@umich.edu 2924382Sbinkertn@umich.edu######################################################################## 2934382Sbinkertn@umich.edu# 2948232Snate@binkert.org# Debug Flags 2955192Ssaidi@eecs.umich.edu# 2968232Snate@binkert.orgdebug_flags = {} 2978232Snate@binkert.orgdef DebugFlag(name, desc=None): 2988232Snate@binkert.org if name in debug_flags: 2995192Ssaidi@eecs.umich.edu raise AttributeError, "Flag %s already specified" % name 3008232Snate@binkert.org debug_flags[name] = (name, (), desc) 3015192Ssaidi@eecs.umich.edu 3025799Snate@binkert.orgdef CompoundFlag(name, flags, desc=None): 3038232Snate@binkert.org if name in debug_flags: 3045192Ssaidi@eecs.umich.edu raise AttributeError, "Flag %s already specified" % name 3055192Ssaidi@eecs.umich.edu 3065192Ssaidi@eecs.umich.edu compound = tuple(flags) 3078232Snate@binkert.org debug_flags[name] = (name, compound, desc) 3085192Ssaidi@eecs.umich.edu 3098232Snate@binkert.orgExport('DebugFlag') 3105192Ssaidi@eecs.umich.eduExport('CompoundFlag') 3115192Ssaidi@eecs.umich.edu 3125192Ssaidi@eecs.umich.edu######################################################################## 3135192Ssaidi@eecs.umich.edu# 3144382Sbinkertn@umich.edu# Set some compiler variables 3154382Sbinkertn@umich.edu# 3164382Sbinkertn@umich.edu 3172667Sstever@eecs.umich.edu# Include file paths are rooted in this directory. SCons will 3182667Sstever@eecs.umich.edu# automatically expand '.' to refer to both the source directory and 3192667Sstever@eecs.umich.edu# the corresponding build directory to pick up generated include 3202667Sstever@eecs.umich.edu# files. 3212667Sstever@eecs.umich.eduenv.Append(CPPPATH=Dir('.')) 3222667Sstever@eecs.umich.edu 3235742Snate@binkert.orgfor extra_dir in extras_dir_list: 3245742Snate@binkert.org env.Append(CPPPATH=Dir(extra_dir)) 3255742Snate@binkert.org 3265793Snate@binkert.org# Workaround for bug in SCons version > 0.97d20071212 3278334Snate@binkert.org# Scons bug id: 2006 gem5 Bug id: 308 3285793Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True): 3295793Snate@binkert.org Dir(root[len(base_dir) + 1:]) 3305793Snate@binkert.org 3314382Sbinkertn@umich.edu######################################################################## 3324762Snate@binkert.org# 3335344Sstever@gmail.com# Walk the tree and execute all SConscripts in subdirectories 3344382Sbinkertn@umich.edu# 3355341Sstever@gmail.com 3365742Snate@binkert.orghere = Dir('.').srcnode().abspath 3375742Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True): 3385742Snate@binkert.org if root == here: 3395742Snate@binkert.org # we don't want to recurse back into this SConscript 3405742Snate@binkert.org continue 3414762Snate@binkert.org 3425742Snate@binkert.org if 'SConscript' in files: 3435742Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:]) 3447722Sgblack@eecs.umich.edu SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir) 3455742Snate@binkert.org 3465742Snate@binkert.orgfor extra_dir in extras_dir_list: 3475742Snate@binkert.org prefix_len = len(dirname(extra_dir)) + 1 3489930Sandreas.hansson@arm.com 3499930Sandreas.hansson@arm.com # Also add the corresponding build directory to pick up generated 3509930Sandreas.hansson@arm.com # include files. 3519930Sandreas.hansson@arm.com env.Append(CPPPATH=Dir(joinpath(env['BUILDDIR'], extra_dir[prefix_len:]))) 3529930Sandreas.hansson@arm.com 3535742Snate@binkert.org for root, dirs, files in os.walk(extra_dir, topdown=True): 3548242Sbradley.danofsky@amd.com # if build lives in the extras directory, don't walk down it 3558242Sbradley.danofsky@amd.com if 'build' in dirs: 3568242Sbradley.danofsky@amd.com dirs.remove('build') 3578242Sbradley.danofsky@amd.com 3585341Sstever@gmail.com if 'SConscript' in files: 3595742Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[prefix_len:]) 3607722Sgblack@eecs.umich.edu SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir) 3614773Snate@binkert.org 3626108Snate@binkert.orgfor opt in export_vars: 3631858SN/A env.ConfigFile(opt) 3641085SN/A 3656658Snate@binkert.orgdef makeTheISA(source, target, env): 3666658Snate@binkert.org isas = [ src.get_contents() for src in source ] 3677673Snate@binkert.org target_isa = env['TARGET_ISA'] 3686658Snate@binkert.org def define(isa): 3696658Snate@binkert.org return isa.upper() + '_ISA' 3706658Snate@binkert.org 3716658Snate@binkert.org def namespace(isa): 3726658Snate@binkert.org return isa[0].upper() + isa[1:].lower() + 'ISA' 3736658Snate@binkert.org 3746658Snate@binkert.org 3757673Snate@binkert.org code = code_formatter() 3767673Snate@binkert.org code('''\ 3777673Snate@binkert.org#ifndef __CONFIG_THE_ISA_HH__ 3787673Snate@binkert.org#define __CONFIG_THE_ISA_HH__ 3797673Snate@binkert.org 3807673Snate@binkert.org''') 3817673Snate@binkert.org 3826658Snate@binkert.org # create defines for the preprocessing and compile-time determination 3837673Snate@binkert.org for i,isa in enumerate(isas): 3847673Snate@binkert.org code('#define $0 $1', define(isa), i + 1) 3857673Snate@binkert.org code() 3867673Snate@binkert.org 3877673Snate@binkert.org # create an enum for any run-time determination of the ISA, we 3887673Snate@binkert.org # reuse the same name as the namespaces 3899048SAli.Saidi@ARM.com code('enum class Arch {') 3907673Snate@binkert.org for i,isa in enumerate(isas): 3917673Snate@binkert.org if i + 1 == len(isas): 3927673Snate@binkert.org code(' $0 = $1', namespace(isa), define(isa)) 3937673Snate@binkert.org else: 3946658Snate@binkert.org code(' $0 = $1,', namespace(isa), define(isa)) 3957756SAli.Saidi@ARM.com code('};') 3967816Ssteve.reinhardt@amd.com 3976658Snate@binkert.org code(''' 3984382Sbinkertn@umich.edu 3994382Sbinkertn@umich.edu#define THE_ISA ${{define(target_isa)}} 4004762Snate@binkert.org#define TheISA ${{namespace(target_isa)}} 4014762Snate@binkert.org#define THE_ISA_STR "${{target_isa}}" 4024762Snate@binkert.org 4036654Snate@binkert.org#endif // __CONFIG_THE_ISA_HH__''') 4046654Snate@binkert.org 4055517Snate@binkert.org code.write(str(target[0])) 4065517Snate@binkert.org 4075517Snate@binkert.orgenv.Command('config/the_isa.hh', map(Value, all_isa_list), 4085517Snate@binkert.org MakeAction(makeTheISA, Transform("CFG ISA", 0))) 4095517Snate@binkert.org 4105517Snate@binkert.orgdef makeTheGPUISA(source, target, env): 4115517Snate@binkert.org isas = [ src.get_contents() for src in source ] 4125517Snate@binkert.org target_gpu_isa = env['TARGET_GPU_ISA'] 4135517Snate@binkert.org def define(isa): 4145517Snate@binkert.org return isa.upper() + '_ISA' 4155517Snate@binkert.org 4165517Snate@binkert.org def namespace(isa): 4175517Snate@binkert.org return isa[0].upper() + isa[1:].lower() + 'ISA' 4185517Snate@binkert.org 4195517Snate@binkert.org 4205517Snate@binkert.org code = code_formatter() 4215517Snate@binkert.org code('''\ 4226654Snate@binkert.org#ifndef __CONFIG_THE_GPU_ISA_HH__ 4235517Snate@binkert.org#define __CONFIG_THE_GPU_ISA_HH__ 4245517Snate@binkert.org 4255517Snate@binkert.org''') 4265517Snate@binkert.org 4275517Snate@binkert.org # create defines for the preprocessing and compile-time determination 4285517Snate@binkert.org for i,isa in enumerate(isas): 4295517Snate@binkert.org code('#define $0 $1', define(isa), i + 1) 4305517Snate@binkert.org code() 4316143Snate@binkert.org 4326654Snate@binkert.org # create an enum for any run-time determination of the ISA, we 4335517Snate@binkert.org # reuse the same name as the namespaces 4345517Snate@binkert.org code('enum class GPUArch {') 4355517Snate@binkert.org for i,isa in enumerate(isas): 4365517Snate@binkert.org if i + 1 == len(isas): 4375517Snate@binkert.org code(' $0 = $1', namespace(isa), define(isa)) 4385517Snate@binkert.org else: 4395517Snate@binkert.org code(' $0 = $1,', namespace(isa), define(isa)) 4405517Snate@binkert.org code('};') 4415517Snate@binkert.org 4425517Snate@binkert.org code(''' 4435517Snate@binkert.org 4445517Snate@binkert.org#define THE_GPU_ISA ${{define(target_gpu_isa)}} 4455517Snate@binkert.org#define TheGpuISA ${{namespace(target_gpu_isa)}} 4465517Snate@binkert.org#define THE_GPU_ISA_STR "${{target_gpu_isa}}" 4476654Snate@binkert.org 4486654Snate@binkert.org#endif // __CONFIG_THE_GPU_ISA_HH__''') 4495517Snate@binkert.org 4505517Snate@binkert.org code.write(str(target[0])) 4516143Snate@binkert.org 4526143Snate@binkert.orgenv.Command('config/the_gpu_isa.hh', map(Value, all_gpu_isa_list), 4536143Snate@binkert.org MakeAction(makeTheGPUISA, Transform("CFG ISA", 0))) 4546727Ssteve.reinhardt@amd.com 4555517Snate@binkert.org######################################################################## 4566727Ssteve.reinhardt@amd.com# 4575517Snate@binkert.org# Prevent any SimObjects from being added after this point, they 4585517Snate@binkert.org# should all have been added in the SConscripts above 4595517Snate@binkert.org# 4606654Snate@binkert.orgSimObject.fixed = True 4616654Snate@binkert.org 4627673Snate@binkert.orgclass DictImporter(object): 4636654Snate@binkert.org '''This importer takes a dictionary of arbitrary module names that 4646654Snate@binkert.org map to arbitrary filenames.''' 4656654Snate@binkert.org def __init__(self, modules): 4666654Snate@binkert.org self.modules = modules 4675517Snate@binkert.org self.installed = set() 4685517Snate@binkert.org 4695517Snate@binkert.org def __del__(self): 4706143Snate@binkert.org self.unload() 4715517Snate@binkert.org 4724762Snate@binkert.org def unload(self): 4735517Snate@binkert.org import sys 4745517Snate@binkert.org for module in self.installed: 4756143Snate@binkert.org del sys.modules[module] 4766143Snate@binkert.org self.installed = set() 4775517Snate@binkert.org 4785517Snate@binkert.org def find_module(self, fullname, path): 4795517Snate@binkert.org if fullname == 'm5.defines': 4805517Snate@binkert.org return self 4815517Snate@binkert.org 4825517Snate@binkert.org if fullname == 'm5.objects': 4835517Snate@binkert.org return self 4845517Snate@binkert.org 4855517Snate@binkert.org if fullname.startswith('m5.internal'): 4869338SAndreas.Sandberg@arm.com return None 4879338SAndreas.Sandberg@arm.com 4889338SAndreas.Sandberg@arm.com source = self.modules.get(fullname, None) 4899338SAndreas.Sandberg@arm.com if source is not None and fullname.startswith('m5.objects'): 4909338SAndreas.Sandberg@arm.com return self 4919338SAndreas.Sandberg@arm.com 4928596Ssteve.reinhardt@amd.com return None 4938596Ssteve.reinhardt@amd.com 4948596Ssteve.reinhardt@amd.com def load_module(self, fullname): 4958596Ssteve.reinhardt@amd.com mod = imp.new_module(fullname) 4968596Ssteve.reinhardt@amd.com sys.modules[fullname] = mod 4978596Ssteve.reinhardt@amd.com self.installed.add(fullname) 4988596Ssteve.reinhardt@amd.com 4996143Snate@binkert.org mod.__loader__ = self 5005517Snate@binkert.org if fullname == 'm5.objects': 5016654Snate@binkert.org mod.__path__ = fullname.split('.') 5026654Snate@binkert.org return mod 5036654Snate@binkert.org 5046654Snate@binkert.org if fullname == 'm5.defines': 5056654Snate@binkert.org mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env) 5066654Snate@binkert.org return mod 5075517Snate@binkert.org 5085517Snate@binkert.org source = self.modules[fullname] 5095517Snate@binkert.org if source.modname == '__init__': 5108596Ssteve.reinhardt@amd.com mod.__path__ = source.modpath 5118596Ssteve.reinhardt@amd.com mod.__file__ = source.abspath 5124762Snate@binkert.org 5134762Snate@binkert.org exec file(source.abspath, 'r') in mod.__dict__ 5144762Snate@binkert.org 5154762Snate@binkert.org return mod 5164762Snate@binkert.org 5174762Snate@binkert.orgimport m5.SimObject 5187675Snate@binkert.orgimport m5.params 5194762Snate@binkert.orgfrom m5.util import code_formatter 5204762Snate@binkert.org 5214762Snate@binkert.orgm5.SimObject.clear() 5224762Snate@binkert.orgm5.params.clear() 5234382Sbinkertn@umich.edu 5244382Sbinkertn@umich.edu# install the python importer so we can grab stuff from the source 5255517Snate@binkert.org# tree itself. We can't have SimObjects added after this point or 5266654Snate@binkert.org# else we won't know about them for the rest of the stuff. 5275517Snate@binkert.orgimporter = DictImporter(PySource.modules) 5288126Sgblack@eecs.umich.edusys.meta_path[0:0] = [ importer ] 5296654Snate@binkert.org 5307673Snate@binkert.org# import all sim objects so we can populate the all_objects list 5316654Snate@binkert.org# make sure that we're working with a list, then let's sort it 5326654Snate@binkert.orgfor modname in SimObject.modnames: 5336654Snate@binkert.org exec('from m5.objects import %s' % modname) 5346654Snate@binkert.org 5356654Snate@binkert.org# we need to unload all of the currently imported modules so that they 5366654Snate@binkert.org# will be re-imported the next time the sconscript is run 5376654Snate@binkert.orgimporter.unload() 5386669Snate@binkert.orgsys.meta_path.remove(importer) 5396669Snate@binkert.org 5406669Snate@binkert.orgsim_objects = m5.SimObject.allClasses 5416669Snate@binkert.orgall_enums = m5.params.allEnums 5426669Snate@binkert.org 5436669Snate@binkert.orgif m5.SimObject.noCxxHeader: 5446654Snate@binkert.org print >> sys.stderr, \ 5457673Snate@binkert.org "warning: At least one SimObject lacks a header specification. " \ 5465517Snate@binkert.org "This can cause unexpected results in the generated SWIG " \ 5478126Sgblack@eecs.umich.edu "wrappers." 5485798Snate@binkert.org 5497756SAli.Saidi@ARM.com# Find param types that need to be explicitly wrapped with swig. 5507816Ssteve.reinhardt@amd.com# These will be recognized because the ParamDesc will have a 5515798Snate@binkert.org# swig_decl() method. Most param types are based on types that don't 5525798Snate@binkert.org# need this, either because they're based on native types (like Int) 5535517Snate@binkert.org# or because they're SimObjects (which get swigged independently). 5545517Snate@binkert.org# For now the only things handled here are VectorParam types. 5557673Snate@binkert.orgparams_to_swig = {} 5565517Snate@binkert.orgfor name,obj in sorted(sim_objects.iteritems()): 5575517Snate@binkert.org for param in obj._params.local.values(): 5587673Snate@binkert.org # load the ptype attribute now because it depends on the 5597673Snate@binkert.org # current version of SimObject.allClasses, but when scons 5605517Snate@binkert.org # actually uses the value, all versions of 5615798Snate@binkert.org # SimObject.allClasses will have been loaded 5625798Snate@binkert.org param.ptype 5638333Snate@binkert.org 5647816Ssteve.reinhardt@amd.com if not hasattr(param, 'swig_decl'): 5655798Snate@binkert.org continue 5665798Snate@binkert.org pname = param.ptype_str 5674762Snate@binkert.org if pname not in params_to_swig: 5684762Snate@binkert.org params_to_swig[pname] = param 5694762Snate@binkert.org 5704762Snate@binkert.org######################################################################## 5714762Snate@binkert.org# 5728596Ssteve.reinhardt@amd.com# calculate extra dependencies 5735517Snate@binkert.org# 5745517Snate@binkert.orgmodule_depends = ["m5", "m5.SimObject", "m5.params"] 5755517Snate@binkert.orgdepends = [ PySource.modules[dep].snode for dep in module_depends ] 5765517Snate@binkert.orgdepends.sort(key = lambda x: x.name) 5775517Snate@binkert.org 5787673Snate@binkert.org######################################################################## 5798596Ssteve.reinhardt@amd.com# 5807673Snate@binkert.org# Commands for the basic automatically generated python files 5815517Snate@binkert.org# 5828596Ssteve.reinhardt@amd.com 5835517Snate@binkert.org# Generate Python file containing a dict specifying the current 5845517Snate@binkert.org# buildEnv flags. 5855517Snate@binkert.orgdef makeDefinesPyFile(target, source, env): 5868596Ssteve.reinhardt@amd.com build_env = source[0].get_contents() 5875517Snate@binkert.org 5887673Snate@binkert.org code = code_formatter() 5897673Snate@binkert.org code(""" 5907673Snate@binkert.orgimport m5.internal 5915517Snate@binkert.orgimport m5.util 5925517Snate@binkert.org 5935517Snate@binkert.orgbuildEnv = m5.util.SmartDict($build_env) 5945517Snate@binkert.org 5955517Snate@binkert.orgcompileDate = m5.internal.core.compileDate 5965517Snate@binkert.org_globals = globals() 5975517Snate@binkert.orgfor key,val in m5.internal.core.__dict__.iteritems(): 5987673Snate@binkert.org if key.startswith('flag_'): 5997673Snate@binkert.org flag = key[5:] 6007673Snate@binkert.org _globals[flag] = val 6015517Snate@binkert.orgdel _globals 6028596Ssteve.reinhardt@amd.com""") 6035517Snate@binkert.org code.write(target[0].abspath) 6045517Snate@binkert.org 6055517Snate@binkert.orgdefines_info = Value(build_env) 6065517Snate@binkert.org# Generate a file with all of the compile options in it 6075517Snate@binkert.orgenv.Command('python/m5/defines.py', defines_info, 6087673Snate@binkert.org MakeAction(makeDefinesPyFile, Transform("DEFINES", 0))) 6097673Snate@binkert.orgPySource('m5', 'python/m5/defines.py') 6107673Snate@binkert.org 6115517Snate@binkert.org# Generate python file containing info about the M5 source code 6128596Ssteve.reinhardt@amd.comdef makeInfoPyFile(target, source, env): 6137675Snate@binkert.org code = code_formatter() 6147675Snate@binkert.org for src in source: 6157675Snate@binkert.org data = ''.join(file(src.srcnode().abspath, 'r').xreadlines()) 6167675Snate@binkert.org code('$src = ${{repr(data)}}') 6177675Snate@binkert.org code.write(str(target[0])) 6187675Snate@binkert.org 6198596Ssteve.reinhardt@amd.com# Generate a file that wraps the basic top level files 6207675Snate@binkert.orgenv.Command('python/m5/info.py', 6217675Snate@binkert.org [ '#/COPYING', '#/LICENSE', '#/README', ], 6228596Ssteve.reinhardt@amd.com MakeAction(makeInfoPyFile, Transform("INFO"))) 6238596Ssteve.reinhardt@amd.comPySource('m5', 'python/m5/info.py') 6248596Ssteve.reinhardt@amd.com 6258596Ssteve.reinhardt@amd.com######################################################################## 6268596Ssteve.reinhardt@amd.com# 6278596Ssteve.reinhardt@amd.com# Create all of the SimObject param headers and enum headers 6288596Ssteve.reinhardt@amd.com# 6298596Ssteve.reinhardt@amd.com 63010454SCurtis.Dunham@arm.comdef createSimObjectParamStruct(target, source, env): 63110454SCurtis.Dunham@arm.com assert len(target) == 1 and len(source) == 1 63210454SCurtis.Dunham@arm.com 63310454SCurtis.Dunham@arm.com name = str(source[0].get_contents()) 6348596Ssteve.reinhardt@amd.com obj = sim_objects[name] 6354762Snate@binkert.org 6366143Snate@binkert.org code = code_formatter() 6376143Snate@binkert.org obj.cxx_param_decl(code) 6386143Snate@binkert.org code.write(target[0].abspath) 6394762Snate@binkert.org 6404762Snate@binkert.orgdef createSimObjectCxxConfig(is_header): 6414762Snate@binkert.org def body(target, source, env): 6427756SAli.Saidi@ARM.com assert len(target) == 1 and len(source) == 1 6438596Ssteve.reinhardt@amd.com 6444762Snate@binkert.org name = str(source[0].get_contents()) 64510454SCurtis.Dunham@arm.com obj = sim_objects[name] 6464762Snate@binkert.org 6478596Ssteve.reinhardt@amd.com code = code_formatter() 6485463Snate@binkert.org obj.cxx_config_param_file(code, is_header) 6498596Ssteve.reinhardt@amd.com code.write(target[0].abspath) 6508596Ssteve.reinhardt@amd.com return body 6515463Snate@binkert.org 6527756SAli.Saidi@ARM.comdef createParamSwigWrapper(target, source, env): 6538596Ssteve.reinhardt@amd.com assert len(target) == 1 and len(source) == 1 6544762Snate@binkert.org 65510454SCurtis.Dunham@arm.com name = str(source[0].get_contents()) 6567677Snate@binkert.org param = params_to_swig[name] 6574762Snate@binkert.org 6584762Snate@binkert.org code = code_formatter() 6596143Snate@binkert.org param.swig_decl(code) 6606143Snate@binkert.org code.write(target[0].abspath) 6616143Snate@binkert.org 6624762Snate@binkert.orgdef createEnumStrings(target, source, env): 6634762Snate@binkert.org assert len(target) == 1 and len(source) == 1 6647756SAli.Saidi@ARM.com 6657816Ssteve.reinhardt@amd.com name = str(source[0].get_contents()) 6664762Snate@binkert.org obj = all_enums[name] 66710454SCurtis.Dunham@arm.com 6684762Snate@binkert.org code = code_formatter() 6694762Snate@binkert.org obj.cxx_def(code) 6704762Snate@binkert.org code.write(target[0].abspath) 6717756SAli.Saidi@ARM.com 6728596Ssteve.reinhardt@amd.comdef createEnumDecls(target, source, env): 6734762Snate@binkert.org assert len(target) == 1 and len(source) == 1 67410454SCurtis.Dunham@arm.com 6754762Snate@binkert.org name = str(source[0].get_contents()) 6767677Snate@binkert.org obj = all_enums[name] 6777756SAli.Saidi@ARM.com 6788596Ssteve.reinhardt@amd.com code = code_formatter() 6797675Snate@binkert.org obj.cxx_decl(code) 68010454SCurtis.Dunham@arm.com code.write(target[0].abspath) 6817677Snate@binkert.org 6825517Snate@binkert.orgdef createEnumSwigWrapper(target, source, env): 6838596Ssteve.reinhardt@amd.com assert len(target) == 1 and len(source) == 1 6849248SAndreas.Sandberg@arm.com 6859248SAndreas.Sandberg@arm.com name = str(source[0].get_contents()) 6869248SAndreas.Sandberg@arm.com obj = all_enums[name] 6879248SAndreas.Sandberg@arm.com 6888596Ssteve.reinhardt@amd.com code = code_formatter() 6898596Ssteve.reinhardt@amd.com obj.swig_decl(code) 6908596Ssteve.reinhardt@amd.com code.write(target[0].abspath) 6919248SAndreas.Sandberg@arm.com 6928596Ssteve.reinhardt@amd.comdef createSimObjectSwigWrapper(target, source, env): 6934762Snate@binkert.org name = source[0].get_contents() 6947674Snate@binkert.org obj = sim_objects[name] 6957674Snate@binkert.org 6967674Snate@binkert.org code = code_formatter() 6977674Snate@binkert.org obj.swig_decl(code) 6987674Snate@binkert.org code.write(target[0].abspath) 6997674Snate@binkert.org 7007674Snate@binkert.org# dummy target for generated code 7017674Snate@binkert.org# we start out with all the Source files so they get copied to build/*/ also. 7027674Snate@binkert.orgSWIG = env.Dummy('swig', [s.tnode for s in Source.get()]) 7037674Snate@binkert.org 7047674Snate@binkert.org# Generate all of the SimObject param C++ struct header files 7057674Snate@binkert.orgparams_hh_files = [] 7067674Snate@binkert.orgfor name,simobj in sorted(sim_objects.iteritems()): 7077674Snate@binkert.org py_source = PySource.modules[simobj.__module__] 7087674Snate@binkert.org extra_deps = [ py_source.tnode ] 7094762Snate@binkert.org 7106143Snate@binkert.org hh_file = File('params/%s.hh' % name) 7116143Snate@binkert.org params_hh_files.append(hh_file) 7127756SAli.Saidi@ARM.com env.Command(hh_file, Value(name), 7137816Ssteve.reinhardt@amd.com MakeAction(createSimObjectParamStruct, Transform("SO PARAM"))) 7148235Snate@binkert.org env.Depends(hh_file, depends + extra_deps) 7158596Ssteve.reinhardt@amd.com env.Depends(SWIG, hh_file) 7167756SAli.Saidi@ARM.com 7177816Ssteve.reinhardt@amd.com# C++ parameter description files 71810454SCurtis.Dunham@arm.comif GetOption('with_cxx_config'): 7198235Snate@binkert.org for name,simobj in sorted(sim_objects.iteritems()): 7204382Sbinkertn@umich.edu py_source = PySource.modules[simobj.__module__] 7219396Sandreas.hansson@arm.com extra_deps = [ py_source.tnode ] 7229396Sandreas.hansson@arm.com 7239396Sandreas.hansson@arm.com cxx_config_hh_file = File('cxx_config/%s.hh' % name) 7249396Sandreas.hansson@arm.com cxx_config_cc_file = File('cxx_config/%s.cc' % name) 7259396Sandreas.hansson@arm.com env.Command(cxx_config_hh_file, Value(name), 7269396Sandreas.hansson@arm.com MakeAction(createSimObjectCxxConfig(True), 7279396Sandreas.hansson@arm.com Transform("CXXCPRHH"))) 7289396Sandreas.hansson@arm.com env.Command(cxx_config_cc_file, Value(name), 7299396Sandreas.hansson@arm.com MakeAction(createSimObjectCxxConfig(False), 7309396Sandreas.hansson@arm.com Transform("CXXCPRCC"))) 7319396Sandreas.hansson@arm.com env.Depends(cxx_config_hh_file, depends + extra_deps + 7329396Sandreas.hansson@arm.com [File('params/%s.hh' % name), File('sim/cxx_config.hh')]) 73310454SCurtis.Dunham@arm.com env.Depends(cxx_config_cc_file, depends + extra_deps + 7349396Sandreas.hansson@arm.com [cxx_config_hh_file]) 7359396Sandreas.hansson@arm.com Source(cxx_config_cc_file) 7369396Sandreas.hansson@arm.com 7379396Sandreas.hansson@arm.com cxx_config_init_cc_file = File('cxx_config/init.cc') 7389396Sandreas.hansson@arm.com 7399396Sandreas.hansson@arm.com def createCxxConfigInitCC(target, source, env): 7408232Snate@binkert.org assert len(target) == 1 and len(source) == 1 7418232Snate@binkert.org 7428232Snate@binkert.org code = code_formatter() 7438232Snate@binkert.org 7448232Snate@binkert.org for name,simobj in sorted(sim_objects.iteritems()): 7456229Snate@binkert.org if not hasattr(simobj, 'abstract') or not simobj.abstract: 74610455SCurtis.Dunham@arm.com code('#include "cxx_config/${name}.hh"') 7476229Snate@binkert.org code() 74810455SCurtis.Dunham@arm.com code('void cxxConfigInit()') 74910455SCurtis.Dunham@arm.com code('{') 75010455SCurtis.Dunham@arm.com code.indent() 7515517Snate@binkert.org for name,simobj in sorted(sim_objects.iteritems()): 7525517Snate@binkert.org not_abstract = not hasattr(simobj, 'abstract') or \ 7537673Snate@binkert.org not simobj.abstract 7545517Snate@binkert.org if not_abstract and 'type' in simobj.__dict__: 75510455SCurtis.Dunham@arm.com code('cxx_config_directory["${name}"] = ' 7565517Snate@binkert.org '${name}CxxConfigParams::makeDirectoryEntry();') 7575517Snate@binkert.org code.dedent() 7588232Snate@binkert.org code('}') 75910455SCurtis.Dunham@arm.com code.write(target[0].abspath) 76010455SCurtis.Dunham@arm.com 76110455SCurtis.Dunham@arm.com py_source = PySource.modules[simobj.__module__] 7627673Snate@binkert.org extra_deps = [ py_source.tnode ] 7637673Snate@binkert.org env.Command(cxx_config_init_cc_file, Value(name), 76410455SCurtis.Dunham@arm.com MakeAction(createCxxConfigInitCC, Transform("CXXCINIT"))) 76510455SCurtis.Dunham@arm.com cxx_param_hh_files = ["cxx_config/%s.hh" % simobj 76610455SCurtis.Dunham@arm.com for name,simobj in sorted(sim_objects.iteritems()) 7675517Snate@binkert.org if not hasattr(simobj, 'abstract') or not simobj.abstract] 76810455SCurtis.Dunham@arm.com Depends(cxx_config_init_cc_file, cxx_param_hh_files + 76910455SCurtis.Dunham@arm.com [File('sim/cxx_config.hh')]) 77010455SCurtis.Dunham@arm.com Source(cxx_config_init_cc_file) 77110455SCurtis.Dunham@arm.com 77210455SCurtis.Dunham@arm.com# Generate any needed param SWIG wrapper files 77310455SCurtis.Dunham@arm.comparams_i_files = [] 77410455SCurtis.Dunham@arm.comfor name,param in sorted(params_to_swig.iteritems()): 77510455SCurtis.Dunham@arm.com i_file = File('python/m5/internal/%s.i' % (param.swig_module_name())) 77610455SCurtis.Dunham@arm.com params_i_files.append(i_file) 77710455SCurtis.Dunham@arm.com env.Command(i_file, Value(name), 77810455SCurtis.Dunham@arm.com MakeAction(createParamSwigWrapper, Transform("SW PARAM"))) 77910455SCurtis.Dunham@arm.com env.Depends(i_file, depends) 7805517Snate@binkert.org env.Depends(SWIG, i_file) 78110455SCurtis.Dunham@arm.com SwigSource('m5.internal', i_file) 7828232Snate@binkert.org 7838232Snate@binkert.org# Generate all enum header files 7845517Snate@binkert.orgfor name,enum in sorted(all_enums.iteritems()): 7857673Snate@binkert.org py_source = PySource.modules[enum.__module__] 7865517Snate@binkert.org extra_deps = [ py_source.tnode ] 7878232Snate@binkert.org 7888232Snate@binkert.org cc_file = File('enums/%s.cc' % name) 7895517Snate@binkert.org env.Command(cc_file, Value(name), 7908232Snate@binkert.org MakeAction(createEnumStrings, Transform("ENUM STR"))) 7918232Snate@binkert.org env.Depends(cc_file, depends + extra_deps) 7928232Snate@binkert.org env.Depends(SWIG, cc_file) 7937673Snate@binkert.org Source(cc_file) 7945517Snate@binkert.org 7955517Snate@binkert.org hh_file = File('enums/%s.hh' % name) 7967673Snate@binkert.org env.Command(hh_file, Value(name), 7975517Snate@binkert.org MakeAction(createEnumDecls, Transform("ENUMDECL"))) 79810455SCurtis.Dunham@arm.com env.Depends(hh_file, depends + extra_deps) 7995517Snate@binkert.org env.Depends(SWIG, hh_file) 8005517Snate@binkert.org 8018232Snate@binkert.org i_file = File('python/m5/internal/enum_%s.i' % name) 8028232Snate@binkert.org env.Command(i_file, Value(name), 8035517Snate@binkert.org MakeAction(createEnumSwigWrapper, Transform("ENUMSWIG"))) 8048232Snate@binkert.org env.Depends(i_file, depends + extra_deps) 8058232Snate@binkert.org env.Depends(SWIG, i_file) 8065517Snate@binkert.org SwigSource('m5.internal', i_file) 8078232Snate@binkert.org 8088232Snate@binkert.org# Generate SimObject SWIG wrapper files 8098232Snate@binkert.orgfor name,simobj in sorted(sim_objects.iteritems()): 8105517Snate@binkert.org py_source = PySource.modules[simobj.__module__] 8118232Snate@binkert.org extra_deps = [ py_source.tnode ] 8128232Snate@binkert.org i_file = File('python/m5/internal/param_%s.i' % name) 8138232Snate@binkert.org env.Command(i_file, Value(name), 8148232Snate@binkert.org MakeAction(createSimObjectSwigWrapper, Transform("SO SWIG"))) 8158232Snate@binkert.org env.Depends(i_file, depends + extra_deps) 8168232Snate@binkert.org SwigSource('m5.internal', i_file) 8175517Snate@binkert.org 8188232Snate@binkert.org# Generate the main swig init file 8198232Snate@binkert.orgdef makeEmbeddedSwigInit(target, source, env): 8205517Snate@binkert.org code = code_formatter() 8218232Snate@binkert.org module = source[0].get_contents() 8227673Snate@binkert.org code('''\ 8235517Snate@binkert.org#include "sim/init.hh" 8247673Snate@binkert.org 8255517Snate@binkert.orgextern "C" { 8268232Snate@binkert.org void init_${module}(); 8278232Snate@binkert.org} 8288232Snate@binkert.org 8295192Ssaidi@eecs.umich.eduEmbeddedSwig embed_swig_${module}(init_${module}); 83010454SCurtis.Dunham@arm.com''') 83110454SCurtis.Dunham@arm.com code.write(str(target[0])) 8328232Snate@binkert.org 83310455SCurtis.Dunham@arm.com# Build all swig modules 83410455SCurtis.Dunham@arm.comfor swig in SwigSource.all: 83510455SCurtis.Dunham@arm.com env.Command([swig.cc_source.tnode, swig.py_source.tnode], swig.tnode, 83610455SCurtis.Dunham@arm.com MakeAction('$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} ' 83710455SCurtis.Dunham@arm.com '-o ${TARGETS[0]} $SOURCES', Transform("SWIG"))) 83810455SCurtis.Dunham@arm.com cc_file = str(swig.tnode) 8395192Ssaidi@eecs.umich.edu init_file = '%s/%s_init.cc' % (dirname(cc_file), basename(cc_file)) 8407674Snate@binkert.org env.Command(init_file, Value(swig.module), 8415522Snate@binkert.org MakeAction(makeEmbeddedSwigInit, Transform("EMBED SW"))) 8425522Snate@binkert.org env.Depends(SWIG, init_file) 8437674Snate@binkert.org Source(init_file, **swig.guards) 8447674Snate@binkert.org 8457674Snate@binkert.org# Build all protocol buffers if we have got protoc and protobuf available 8467674Snate@binkert.orgif env['HAVE_PROTOBUF']: 8477674Snate@binkert.org for proto in ProtoBuf.all: 8487674Snate@binkert.org # Use both the source and header as the target, and the .proto 8497674Snate@binkert.org # file as the source. When executing the protoc compiler, also 8507674Snate@binkert.org # specify the proto_path to avoid having the generated files 8515522Snate@binkert.org # include the path. 8525522Snate@binkert.org env.Command([proto.cc_file, proto.hh_file], proto.tnode, 8535522Snate@binkert.org MakeAction('$PROTOC --cpp_out ${TARGET.dir} ' 8545517Snate@binkert.org '--proto_path ${SOURCE.dir} $SOURCE', 8555522Snate@binkert.org Transform("PROTOC"))) 8565517Snate@binkert.org 8576143Snate@binkert.org env.Depends(SWIG, [proto.cc_file, proto.hh_file]) 8586727Ssteve.reinhardt@amd.com # Add the C++ source file 8595522Snate@binkert.org Source(proto.cc_file, **proto.guards) 8605522Snate@binkert.orgelif ProtoBuf.all: 8615522Snate@binkert.org print 'Got protobuf to build, but lacks support!' 8627674Snate@binkert.org Exit(1) 8635517Snate@binkert.org 8647673Snate@binkert.org# 8657673Snate@binkert.org# Handle debug flags 8667674Snate@binkert.org# 8677673Snate@binkert.orgdef makeDebugFlagCC(target, source, env): 8687674Snate@binkert.org assert(len(target) == 1 and len(source) == 1) 8697674Snate@binkert.org 8708946Sandreas.hansson@arm.com code = code_formatter() 8717674Snate@binkert.org 8727674Snate@binkert.org # delay definition of CompoundFlags until after all the definition 8737674Snate@binkert.org # of all constituent SimpleFlags 8745522Snate@binkert.org comp_code = code_formatter() 8755522Snate@binkert.org 8767674Snate@binkert.org # file header 8777674Snate@binkert.org code(''' 8787674Snate@binkert.org/* 8797674Snate@binkert.org * DO NOT EDIT THIS FILE! Automatically generated by SCons. 8807673Snate@binkert.org */ 8817674Snate@binkert.org 8827674Snate@binkert.org#include "base/debug.hh" 8837674Snate@binkert.org 8847674Snate@binkert.orgnamespace Debug { 8857674Snate@binkert.org 8867674Snate@binkert.org''') 8877674Snate@binkert.org 8887674Snate@binkert.org for name, flag in sorted(source[0].read().iteritems()): 8897811Ssteve.reinhardt@amd.com n, compound, desc = flag 8907674Snate@binkert.org assert n == name 8917673Snate@binkert.org 8925522Snate@binkert.org if not compound: 8936143Snate@binkert.org code('SimpleFlag $name("$name", "$desc");') 89410453SAndrew.Bardsley@arm.com else: 8957816Ssteve.reinhardt@amd.com comp_code('CompoundFlag $name("$name", "$desc",') 89610454SCurtis.Dunham@arm.com comp_code.indent() 89710453SAndrew.Bardsley@arm.com last = len(compound) - 1 8984382Sbinkertn@umich.edu for i,flag in enumerate(compound): 8994382Sbinkertn@umich.edu if i != last: 9004382Sbinkertn@umich.edu comp_code('&$flag,') 9014382Sbinkertn@umich.edu else: 9024382Sbinkertn@umich.edu comp_code('&$flag);') 9034382Sbinkertn@umich.edu comp_code.dedent() 9044382Sbinkertn@umich.edu 9054382Sbinkertn@umich.edu code.append(comp_code) 90610196SCurtis.Dunham@arm.com code() 9074382Sbinkertn@umich.edu code('} // namespace Debug') 90810196SCurtis.Dunham@arm.com 90910196SCurtis.Dunham@arm.com code.write(str(target[0])) 91010196SCurtis.Dunham@arm.com 91110196SCurtis.Dunham@arm.comdef makeDebugFlagHH(target, source, env): 91210196SCurtis.Dunham@arm.com assert(len(target) == 1 and len(source) == 1) 91310196SCurtis.Dunham@arm.com 91410196SCurtis.Dunham@arm.com val = eval(source[0].get_contents()) 915955SN/A name, compound, desc = val 9162655Sstever@eecs.umich.edu 9172655Sstever@eecs.umich.edu code = code_formatter() 9182655Sstever@eecs.umich.edu 9192655Sstever@eecs.umich.edu # file header boilerplate 92010196SCurtis.Dunham@arm.com code('''\ 9215601Snate@binkert.org/* 9225601Snate@binkert.org * DO NOT EDIT THIS FILE! Automatically generated by SCons. 92310196SCurtis.Dunham@arm.com */ 92410196SCurtis.Dunham@arm.com 92510196SCurtis.Dunham@arm.com#ifndef __DEBUG_${name}_HH__ 9265522Snate@binkert.org#define __DEBUG_${name}_HH__ 9275863Snate@binkert.org 9285601Snate@binkert.orgnamespace Debug { 9295601Snate@binkert.org''') 9305601Snate@binkert.org 9315863Snate@binkert.org if compound: 9329556Sandreas.hansson@arm.com code('class CompoundFlag;') 9339556Sandreas.hansson@arm.com code('class SimpleFlag;') 9349556Sandreas.hansson@arm.com 9359556Sandreas.hansson@arm.com if compound: 9369556Sandreas.hansson@arm.com code('extern CompoundFlag $name;') 9379556Sandreas.hansson@arm.com for flag in compound: 9389556Sandreas.hansson@arm.com code('extern SimpleFlag $flag;') 9399556Sandreas.hansson@arm.com else: 9409556Sandreas.hansson@arm.com code('extern SimpleFlag $name;') 9415559Snate@binkert.org 9429556Sandreas.hansson@arm.com code(''' 9439618Ssteve.reinhardt@amd.com} 9449618Ssteve.reinhardt@amd.com 9459618Ssteve.reinhardt@amd.com#endif // __DEBUG_${name}_HH__ 94610238Sandreas.hansson@arm.com''') 94710238Sandreas.hansson@arm.com 9489554Sandreas.hansson@arm.com code.write(str(target[0])) 9499556Sandreas.hansson@arm.com 9509556Sandreas.hansson@arm.comfor name,flag in sorted(debug_flags.iteritems()): 9519556Sandreas.hansson@arm.com n, compound, desc = flag 9529556Sandreas.hansson@arm.com assert n == name 9539555Sandreas.hansson@arm.com 9549555Sandreas.hansson@arm.com hh_file = 'debug/%s.hh' % name 9559556Sandreas.hansson@arm.com env.Command(hh_file, Value(flag), 9568737Skoansin.tan@gmail.com MakeAction(makeDebugFlagHH, Transform("TRACING", 0))) 9579556Sandreas.hansson@arm.com env.Depends(SWIG, hh_file) 9589556Sandreas.hansson@arm.com 9599556Sandreas.hansson@arm.comenv.Command('debug/flags.cc', Value(debug_flags), 9609554Sandreas.hansson@arm.com MakeAction(makeDebugFlagCC, Transform("TRACING", 0))) 96110278SAndreas.Sandberg@ARM.comenv.Depends(SWIG, 'debug/flags.cc') 96210278SAndreas.Sandberg@ARM.comSource('debug/flags.cc') 96310278SAndreas.Sandberg@ARM.com 96410278SAndreas.Sandberg@ARM.com# version tags 96510278SAndreas.Sandberg@ARM.comenv.Command('sim/tags.cc', None, 96610278SAndreas.Sandberg@ARM.com MakeAction('util/cpt_upgrader.py --get-cc-file > $TARGET', 96710278SAndreas.Sandberg@ARM.com Transform("VER TAGS"))) 96810278SAndreas.Sandberg@ARM.com 9698945Ssteve.reinhardt@amd.com# Embed python files. All .py files that have been indicated by a 9708945Ssteve.reinhardt@amd.com# PySource() call in a SConscript need to be embedded into the M5 9718945Ssteve.reinhardt@amd.com# library. To do that, we compile the file to byte code, marshal the 9726143Snate@binkert.org# byte code, compress it, and then generate a c++ file that 9736143Snate@binkert.org# inserts the result into an array. 9746143Snate@binkert.orgdef embedPyFile(target, source, env): 9756143Snate@binkert.org def c_str(string): 9766143Snate@binkert.org if string is None: 9776143Snate@binkert.org return "0" 9786143Snate@binkert.org return '"%s"' % string 9798945Ssteve.reinhardt@amd.com 9808945Ssteve.reinhardt@amd.com '''Action function to compile a .py into a code object, marshal 9816143Snate@binkert.org it, compress it, and stick it into an asm file so the code appears 9826143Snate@binkert.org as just bytes with a label in the data section''' 9836143Snate@binkert.org 9846143Snate@binkert.org src = file(str(source[0]), 'r').read() 9856143Snate@binkert.org 9866143Snate@binkert.org pysource = PySource.tnodes[source[0]] 9876143Snate@binkert.org compiled = compile(src, pysource.abspath, 'exec') 9886143Snate@binkert.org marshalled = marshal.dumps(compiled) 9896143Snate@binkert.org compressed = zlib.compress(marshalled) 9906143Snate@binkert.org data = compressed 9916143Snate@binkert.org sym = pysource.symname 9926143Snate@binkert.org 9936143Snate@binkert.org code = code_formatter() 99410453SAndrew.Bardsley@arm.com code('''\ 99510453SAndrew.Bardsley@arm.com#include "sim/init.hh" 99610453SAndrew.Bardsley@arm.com 99710453SAndrew.Bardsley@arm.comnamespace { 99810453SAndrew.Bardsley@arm.com 99910453SAndrew.Bardsley@arm.comconst uint8_t data_${sym}[] = { 100010453SAndrew.Bardsley@arm.com''') 100110453SAndrew.Bardsley@arm.com code.indent() 100210453SAndrew.Bardsley@arm.com step = 16 10036143Snate@binkert.org for i in xrange(0, len(data), step): 10046143Snate@binkert.org x = array.array('B', data[i:i+step]) 10056143Snate@binkert.org code(''.join('%d,' % d for d in x)) 100610453SAndrew.Bardsley@arm.com code.dedent() 10076143Snate@binkert.org 10086240Snate@binkert.org code('''}; 10095554Snate@binkert.org 10105522Snate@binkert.orgEmbeddedPython embedded_${sym}( 10115522Snate@binkert.org ${{c_str(pysource.arcname)}}, 10125797Snate@binkert.org ${{c_str(pysource.abspath)}}, 10135797Snate@binkert.org ${{c_str(pysource.modpath)}}, 10145522Snate@binkert.org data_${sym}, 10155601Snate@binkert.org ${{len(data)}}, 10168233Snate@binkert.org ${{len(marshalled)}}); 10178233Snate@binkert.org 10188235Snate@binkert.org} // anonymous namespace 10198235Snate@binkert.org''') 10208235Snate@binkert.org code.write(str(target[0])) 10218235Snate@binkert.org 10229003SAli.Saidi@ARM.comfor source in PySource.all: 10239003SAli.Saidi@ARM.com env.Command(source.cpp, source.tnode, 102410196SCurtis.Dunham@arm.com MakeAction(embedPyFile, Transform("EMBED PY"))) 102510196SCurtis.Dunham@arm.com env.Depends(SWIG, source.cpp) 10268235Snate@binkert.org Source(source.cpp, skip_no_python=True) 10276143Snate@binkert.org 10282655Sstever@eecs.umich.edu######################################################################## 10296143Snate@binkert.org# 10306143Snate@binkert.org# Define binaries. Each different build type (debug, opt, etc.) gets 10318233Snate@binkert.org# a slightly different build environment. 10326143Snate@binkert.org# 10336143Snate@binkert.org 10344007Ssaidi@eecs.umich.edu# List of constructed environments to pass back to SConstruct 10354596Sbinkertn@umich.edudate_source = Source('base/date.cc', skip_lib=True) 10364007Ssaidi@eecs.umich.edu 10374596Sbinkertn@umich.edu# Capture this directory for the closure makeEnv, otherwise when it is 10387756SAli.Saidi@ARM.com# called, it won't know what directory it should use. 10397816Ssteve.reinhardt@amd.comvariant_dir = Dir('.').path 10408334Snate@binkert.orgdef variant(*path): 10418334Snate@binkert.org return os.path.join(variant_dir, *path) 10428334Snate@binkert.orgdef variantd(*path): 10438334Snate@binkert.org return variant(*path)+'/' 10445601Snate@binkert.org 104510196SCurtis.Dunham@arm.com# Function to create a new build environment as clone of current 10462655Sstever@eecs.umich.edu# environment 'env' with modified object suffix and optional stripped 10479225Sandreas.hansson@arm.com# binary. Additional keyword arguments are appended to corresponding 10489225Sandreas.hansson@arm.com# build environment vars. 10499226Sandreas.hansson@arm.comdef makeEnv(env, label, objsfx, strip = False, **kwargs): 10509226Sandreas.hansson@arm.com # SCons doesn't know to append a library suffix when there is a '.' in the 10519225Sandreas.hansson@arm.com # name. Use '_' instead. 10529226Sandreas.hansson@arm.com libname = variant('gem5_' + label) 10539226Sandreas.hansson@arm.com exename = variant('gem5.' + label) 10549226Sandreas.hansson@arm.com secondary_exename = variant('m5.' + label) 10559226Sandreas.hansson@arm.com 10569226Sandreas.hansson@arm.com new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's') 10579226Sandreas.hansson@arm.com new_env.Label = label 10589225Sandreas.hansson@arm.com new_env.Append(**kwargs) 10599227Sandreas.hansson@arm.com 10609227Sandreas.hansson@arm.com swig_env = new_env.Clone() 10619227Sandreas.hansson@arm.com 10629227Sandreas.hansson@arm.com # Both gcc and clang have issues with unused labels and values in 10638946Sandreas.hansson@arm.com # the SWIG generated code 10643918Ssaidi@eecs.umich.edu swig_env.Append(CCFLAGS=['-Wno-unused-label', '-Wno-unused-value']) 10659225Sandreas.hansson@arm.com 10663918Ssaidi@eecs.umich.edu if env['GCC']: 10679225Sandreas.hansson@arm.com # Depending on the SWIG version, we also need to supress 10689225Sandreas.hansson@arm.com # warnings about uninitialized variables and missing field 10699227Sandreas.hansson@arm.com # initializers. 10709227Sandreas.hansson@arm.com swig_env.Append(CCFLAGS=['-Wno-uninitialized', 10719227Sandreas.hansson@arm.com '-Wno-missing-field-initializers', 10729226Sandreas.hansson@arm.com '-Wno-unused-but-set-variable', 10739225Sandreas.hansson@arm.com '-Wno-maybe-uninitialized', 10749227Sandreas.hansson@arm.com '-Wno-type-limits']) 10759227Sandreas.hansson@arm.com 10769227Sandreas.hansson@arm.com # Only gcc >= 4.9 supports UBSan, so check both the version 10779227Sandreas.hansson@arm.com # and the command-line option before adding the compiler and 10788946Sandreas.hansson@arm.com # linker flags. 10799225Sandreas.hansson@arm.com if GetOption('with_ubsan') and \ 10809226Sandreas.hansson@arm.com compareVersions(env['GCC_VERSION'], '4.9') >= 0: 10819226Sandreas.hansson@arm.com new_env.Append(CCFLAGS='-fsanitize=undefined') 10829226Sandreas.hansson@arm.com new_env.Append(LINKFLAGS='-fsanitize=undefined') 10833515Ssaidi@eecs.umich.edu 10843918Ssaidi@eecs.umich.edu if env['CLANG']: 10854762Snate@binkert.org swig_env.Append(CCFLAGS=['-Wno-sometimes-uninitialized', 10863515Ssaidi@eecs.umich.edu '-Wno-deprecated-register', 10878881Smarc.orr@gmail.com '-Wno-tautological-compare']) 10888881Smarc.orr@gmail.com 10898881Smarc.orr@gmail.com # All supported clang versions have support for UBSan, so if 10908881Smarc.orr@gmail.com # asked to use it, append the compiler and linker flags. 10918881Smarc.orr@gmail.com if GetOption('with_ubsan'): 10929226Sandreas.hansson@arm.com new_env.Append(CCFLAGS='-fsanitize=undefined') 10939226Sandreas.hansson@arm.com new_env.Append(LINKFLAGS='-fsanitize=undefined') 10949226Sandreas.hansson@arm.com 10958881Smarc.orr@gmail.com werror_env = new_env.Clone() 10968881Smarc.orr@gmail.com # Treat warnings as errors but white list some warnings that we 10978881Smarc.orr@gmail.com # want to allow (e.g., deprecation warnings). 10988881Smarc.orr@gmail.com werror_env.Append(CCFLAGS=['-Werror', 10998881Smarc.orr@gmail.com '-Wno-error=deprecated-declarations', 11008881Smarc.orr@gmail.com '-Wno-error=deprecated', 11018881Smarc.orr@gmail.com ]) 11028881Smarc.orr@gmail.com 11038881Smarc.orr@gmail.com def make_obj(source, static, extra_deps = None): 11048881Smarc.orr@gmail.com '''This function adds the specified source to the correct 11058881Smarc.orr@gmail.com build environment, and returns the corresponding SCons Object 11068881Smarc.orr@gmail.com nodes''' 11078881Smarc.orr@gmail.com 11088881Smarc.orr@gmail.com if source.swig: 11098881Smarc.orr@gmail.com env = swig_env 11108881Smarc.orr@gmail.com elif source.Werror: 111110196SCurtis.Dunham@arm.com env = werror_env 111210196SCurtis.Dunham@arm.com else: 111310196SCurtis.Dunham@arm.com env = new_env 111410196SCurtis.Dunham@arm.com 1115955SN/A if static: 111610196SCurtis.Dunham@arm.com obj = env.StaticObject(source.tnode) 1117955SN/A else: 111810196SCurtis.Dunham@arm.com obj = env.SharedObject(source.tnode) 111910196SCurtis.Dunham@arm.com 112010196SCurtis.Dunham@arm.com if extra_deps: 112110196SCurtis.Dunham@arm.com env.Depends(obj, extra_deps) 112210196SCurtis.Dunham@arm.com 112310196SCurtis.Dunham@arm.com return obj 112410196SCurtis.Dunham@arm.com 1125955SN/A lib_guards = {'main': False, 'skip_lib': False} 112610196SCurtis.Dunham@arm.com 112710196SCurtis.Dunham@arm.com # Without Python, leave out all SWIG and Python content from the 112810196SCurtis.Dunham@arm.com # library builds. The option doesn't affect gem5 built as a program 112910196SCurtis.Dunham@arm.com if GetOption('without_python'): 113010196SCurtis.Dunham@arm.com lib_guards['skip_no_python'] = False 113110196SCurtis.Dunham@arm.com 113210196SCurtis.Dunham@arm.com static_objs = [ make_obj(s, True) for s in Source.get(**lib_guards) ] 11331869SN/A shared_objs = [ make_obj(s, False) for s in Source.get(**lib_guards) ] 113410196SCurtis.Dunham@arm.com 113510196SCurtis.Dunham@arm.com static_date = make_obj(date_source, static=True, extra_deps=static_objs) 113610196SCurtis.Dunham@arm.com static_objs.append(static_date) 113710196SCurtis.Dunham@arm.com 113810196SCurtis.Dunham@arm.com shared_date = make_obj(date_source, static=False, extra_deps=shared_objs) 113910196SCurtis.Dunham@arm.com shared_objs.append(shared_date) 114010196SCurtis.Dunham@arm.com 11419226Sandreas.hansson@arm.com # First make a library of everything but main() so other programs can 114210196SCurtis.Dunham@arm.com # link against m5. 114310196SCurtis.Dunham@arm.com static_lib = new_env.StaticLibrary(libname, static_objs) 114410196SCurtis.Dunham@arm.com shared_lib = new_env.SharedLibrary(libname, shared_objs) 114510196SCurtis.Dunham@arm.com 114610196SCurtis.Dunham@arm.com # Now link a stub with main() and the static library. 114710196SCurtis.Dunham@arm.com main_objs = [ make_obj(s, True) for s in Source.get(main=True) ] 114810196SCurtis.Dunham@arm.com 114910196SCurtis.Dunham@arm.com for test in UnitTest.all: 115010196SCurtis.Dunham@arm.com flags = { test.target : True } 115110196SCurtis.Dunham@arm.com test_sources = Source.get(**flags) 115210196SCurtis.Dunham@arm.com test_objs = [ make_obj(s, static=True) for s in test_sources ] 115310196SCurtis.Dunham@arm.com if test.main: 115410196SCurtis.Dunham@arm.com test_objs += main_objs 115510196SCurtis.Dunham@arm.com path = variant('unittest/%s.%s' % (test.target, label)) 115610196SCurtis.Dunham@arm.com new_env.Program(path, test_objs + static_objs) 115710196SCurtis.Dunham@arm.com 115810196SCurtis.Dunham@arm.com progname = exename 115910196SCurtis.Dunham@arm.com if strip: 116010196SCurtis.Dunham@arm.com progname += '.unstripped' 116110196SCurtis.Dunham@arm.com 116210196SCurtis.Dunham@arm.com targets = new_env.Program(progname, main_objs + static_objs) 116310196SCurtis.Dunham@arm.com 116410196SCurtis.Dunham@arm.com if strip: 116510196SCurtis.Dunham@arm.com if sys.platform == 'sunos5': 116610196SCurtis.Dunham@arm.com cmd = 'cp $SOURCE $TARGET; strip $TARGET' 116710196SCurtis.Dunham@arm.com else: 116810196SCurtis.Dunham@arm.com cmd = 'strip $SOURCE -o $TARGET' 116910196SCurtis.Dunham@arm.com targets = new_env.Command(exename, progname, 117010196SCurtis.Dunham@arm.com MakeAction(cmd, Transform("STRIP"))) 117110196SCurtis.Dunham@arm.com 117210196SCurtis.Dunham@arm.com new_env.Command(secondary_exename, exename, 117310196SCurtis.Dunham@arm.com MakeAction('ln $SOURCE $TARGET', Transform("HARDLINK"))) 117410196SCurtis.Dunham@arm.com 117510196SCurtis.Dunham@arm.com new_env.M5Binary = targets[0] 117610196SCurtis.Dunham@arm.com return new_env 117710196SCurtis.Dunham@arm.com 117810196SCurtis.Dunham@arm.com# Start out with the compiler flags common to all compilers, 117910196SCurtis.Dunham@arm.com# i.e. they all use -g for opt and -g -pg for prof 118010196SCurtis.Dunham@arm.comccflags = {'debug' : [], 'opt' : ['-g'], 'fast' : [], 'prof' : ['-g', '-pg'], 118110196SCurtis.Dunham@arm.com 'perf' : ['-g']} 118210196SCurtis.Dunham@arm.com 118310196SCurtis.Dunham@arm.com# Start out with the linker flags common to all linkers, i.e. -pg for 118410196SCurtis.Dunham@arm.com# prof, and -lprofiler for perf. The -lprofile flag is surrounded by 1185# no-as-needed and as-needed as the binutils linker is too clever and 1186# simply doesn't link to the library otherwise. 1187ldflags = {'debug' : [], 'opt' : [], 'fast' : [], 'prof' : ['-pg'], 1188 'perf' : ['-Wl,--no-as-needed', '-lprofiler', '-Wl,--as-needed']} 1189 1190# For Link Time Optimization, the optimisation flags used to compile 1191# individual files are decoupled from those used at link time 1192# (i.e. you can compile with -O3 and perform LTO with -O0), so we need 1193# to also update the linker flags based on the target. 1194if env['GCC']: 1195 if sys.platform == 'sunos5': 1196 ccflags['debug'] += ['-gstabs+'] 1197 else: 1198 ccflags['debug'] += ['-ggdb3'] 1199 ldflags['debug'] += ['-O0'] 1200 # opt, fast, prof and perf all share the same cc flags, also add 1201 # the optimization to the ldflags as LTO defers the optimization 1202 # to link time 1203 for target in ['opt', 'fast', 'prof', 'perf']: 1204 ccflags[target] += ['-O3'] 1205 ldflags[target] += ['-O3'] 1206 1207 ccflags['fast'] += env['LTO_CCFLAGS'] 1208 ldflags['fast'] += env['LTO_LDFLAGS'] 1209elif env['CLANG']: 1210 ccflags['debug'] += ['-g', '-O0'] 1211 # opt, fast, prof and perf all share the same cc flags 1212 for target in ['opt', 'fast', 'prof', 'perf']: 1213 ccflags[target] += ['-O3'] 1214else: 1215 print 'Unknown compiler, please fix compiler options' 1216 Exit(1) 1217 1218 1219# To speed things up, we only instantiate the build environments we 1220# need. We try to identify the needed environment for each target; if 1221# we can't, we fall back on instantiating all the environments just to 1222# be safe. 1223target_types = ['debug', 'opt', 'fast', 'prof', 'perf'] 1224obj2target = {'do': 'debug', 'o': 'opt', 'fo': 'fast', 'po': 'prof', 1225 'gpo' : 'perf'} 1226 1227def identifyTarget(t): 1228 ext = t.split('.')[-1] 1229 if ext in target_types: 1230 return ext 1231 if obj2target.has_key(ext): 1232 return obj2target[ext] 1233 match = re.search(r'/tests/([^/]+)/', t) 1234 if match and match.group(1) in target_types: 1235 return match.group(1) 1236 return 'all' 1237 1238needed_envs = [identifyTarget(target) for target in BUILD_TARGETS] 1239if 'all' in needed_envs: 1240 needed_envs += target_types 1241 1242gem5_root = Dir('.').up().up().abspath 1243def makeEnvirons(target, source, env): 1244 # cause any later Source() calls to be fatal, as a diagnostic. 1245 Source.done() 1246 1247 envList = [] 1248 1249 # Debug binary 1250 if 'debug' in needed_envs: 1251 envList.append( 1252 makeEnv(env, 'debug', '.do', 1253 CCFLAGS = Split(ccflags['debug']), 1254 CPPDEFINES = ['DEBUG', 'TRACING_ON=1'], 1255 LINKFLAGS = Split(ldflags['debug']))) 1256 1257 # Optimized binary 1258 if 'opt' in needed_envs: 1259 envList.append( 1260 makeEnv(env, 'opt', '.o', 1261 CCFLAGS = Split(ccflags['opt']), 1262 CPPDEFINES = ['TRACING_ON=1'], 1263 LINKFLAGS = Split(ldflags['opt']))) 1264 1265 # "Fast" binary 1266 if 'fast' in needed_envs: 1267 envList.append( 1268 makeEnv(env, 'fast', '.fo', strip = True, 1269 CCFLAGS = Split(ccflags['fast']), 1270 CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 1271 LINKFLAGS = Split(ldflags['fast']))) 1272 1273 # Profiled binary using gprof 1274 if 'prof' in needed_envs: 1275 envList.append( 1276 makeEnv(env, 'prof', '.po', 1277 CCFLAGS = Split(ccflags['prof']), 1278 CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 1279 LINKFLAGS = Split(ldflags['prof']))) 1280 1281 # Profiled binary using google-pprof 1282 if 'perf' in needed_envs: 1283 envList.append( 1284 makeEnv(env, 'perf', '.gpo', 1285 CCFLAGS = Split(ccflags['perf']), 1286 CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 1287 LINKFLAGS = Split(ldflags['perf']))) 1288 1289 # Set up the regression tests for each build. 1290 for e in envList: 1291 SConscript(os.path.join(gem5_root, 'tests', 'SConscript'), 1292 variant_dir = variantd('tests', e.Label), 1293 exports = { 'env' : e }, duplicate = False) 1294 1295# The MakeEnvirons Builder defers the full dependency collection until 1296# after processing the ISA definition (due to dynamically generated 1297# source files). Add this dependency to all targets so they will wait 1298# until the environments are completely set up. Otherwise, a second 1299# process (e.g. -j2 or higher) will try to compile the requested target, 1300# not know how, and fail. 1301env.Append(BUILDERS = {'MakeEnvirons' : 1302 Builder(action=MakeAction(makeEnvirons, 1303 Transform("ENVIRONS", 1)))}) 1304 1305isa_target = env['PHONY_BASE'] + '-deps' 1306environs = env['PHONY_BASE'] + '-environs' 1307env.Depends('#all-deps', isa_target) 1308env.Depends('#all-environs', environs) 1309env.ScanISA(isa_target, File('arch/%s/generated/inc.d' % env['TARGET_ISA'])) 1310envSetup = env.MakeEnvirons(environs, isa_target) 1311 1312# make sure no -deps targets occur before all ISAs are complete 1313env.Depends(isa_target, '#all-isas') 1314# likewise for -environs targets and all the -deps targets 1315env.Depends(environs, '#all-deps') 1316