SConscript revision 11997
1955SN/A# -*- mode:python -*- 2955SN/A 313576Sciro.santilli@arm.com# Copyright (c) 2004-2005 The Regents of The University of Michigan 413576Sciro.santilli@arm.com# All rights reserved. 513576Sciro.santilli@arm.com# 613576Sciro.santilli@arm.com# Redistribution and use in source and binary forms, with or without 713576Sciro.santilli@arm.com# modification, are permitted provided that the following conditions are 813576Sciro.santilli@arm.com# met: redistributions of source code must retain the above copyright 913576Sciro.santilli@arm.com# notice, this list of conditions and the following disclaimer; 1013576Sciro.santilli@arm.com# redistributions in binary form must reproduce the above copyright 1113576Sciro.santilli@arm.com# notice, this list of conditions and the following disclaimer in the 1213576Sciro.santilli@arm.com# documentation and/or other materials provided with the distribution; 1313576Sciro.santilli@arm.com# neither the name of the copyright holders nor the names of its 141762SN/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. 28955SN/A# 29955SN/A# Authors: Nathan Binkert 30955SN/A 31955SN/Aimport array 32955SN/Aimport bisect 33955SN/Aimport imp 34955SN/Aimport marshal 35955SN/Aimport os 36955SN/Aimport re 37955SN/Aimport subprocess 38955SN/Aimport sys 392665Ssaidi@eecs.umich.eduimport zlib 404762Snate@binkert.org 41955SN/Afrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath 4212563Sgabeblack@google.com 4312563Sgabeblack@google.comimport SCons 445522Snate@binkert.org 456143Snate@binkert.org# This file defines how to build a particular configuration of gem5 4612371Sgabeblack@google.com# based on variable settings in the 'env' build environment. 474762Snate@binkert.org 485522Snate@binkert.orgImport('*') 49955SN/A 505522Snate@binkert.org# Children need to see the environment 5111974Sgabeblack@google.comExport('env') 52955SN/A 535522Snate@binkert.orgbuild_env = [(opt, env[opt]) for opt in export_vars] 544202Sbinkertn@umich.edu 555742Snate@binkert.orgfrom m5.util import code_formatter, compareVersions 56955SN/A 574381Sbinkertn@umich.edu######################################################################## 584381Sbinkertn@umich.edu# Code for adding source files of various types 5912246Sgabeblack@google.com# 6012246Sgabeblack@google.com# When specifying a source file of some type, a set of guards can be 618334Snate@binkert.org# specified for that file. When get() is used to find the files, if 62955SN/A# get specifies a set of filters, only files that match those filters 63955SN/A# will be accepted (unspecified filters on files are assumed to be 644202Sbinkertn@umich.edu# false). Current filters are: 65955SN/A# main -- specifies the gem5 main() function 664382Sbinkertn@umich.edu# skip_lib -- do not put this file into the gem5 library 674382Sbinkertn@umich.edu# skip_no_python -- do not put this file into a no_python library 684382Sbinkertn@umich.edu# as it embeds compiled Python 696654Snate@binkert.org# <unittest> -- unit tests use filters based on the unit test name 705517Snate@binkert.org# 718614Sgblack@eecs.umich.edu# A parent can now be specified for a source file and default filter 727674Snate@binkert.org# values will be retrieved recursively from parents (children override 736143Snate@binkert.org# parents). 746143Snate@binkert.org# 756143Snate@binkert.orgdef guarded_source_iterator(sources, **guards): 7612302Sgabeblack@google.com '''Iterate over a set of sources, gated by a set of guards.''' 7712302Sgabeblack@google.com for src in sources: 7812302Sgabeblack@google.com for flag,value in guards.iteritems(): 7912371Sgabeblack@google.com # if the flag is found and has a different value, skip 8012371Sgabeblack@google.com # this file 8112371Sgabeblack@google.com if src.all_guards.get(flag, False) != value: 8212371Sgabeblack@google.com break 8312371Sgabeblack@google.com else: 8412371Sgabeblack@google.com yield src 8512371Sgabeblack@google.com 8612371Sgabeblack@google.comclass SourceMeta(type): 8712371Sgabeblack@google.com '''Meta class for source files that keeps track of all files of a 8812371Sgabeblack@google.com particular type and has a get function for finding all functions 8912371Sgabeblack@google.com of a certain type that match a set of guards''' 9012371Sgabeblack@google.com def __init__(cls, name, bases, dict): 9112371Sgabeblack@google.com super(SourceMeta, cls).__init__(name, bases, dict) 9212371Sgabeblack@google.com cls.all = [] 9312371Sgabeblack@google.com 9412371Sgabeblack@google.com def get(cls, **guards): 9512371Sgabeblack@google.com '''Find all files that match the specified guards. If a source 9612371Sgabeblack@google.com file does not specify a flag, the default is False''' 9712371Sgabeblack@google.com for s in guarded_source_iterator(cls.all, **guards): 9812371Sgabeblack@google.com yield s 9912371Sgabeblack@google.com 10012371Sgabeblack@google.comclass SourceFile(object): 10112371Sgabeblack@google.com '''Base object that encapsulates the notion of a source file. 10212371Sgabeblack@google.com This includes, the source node, target node, various manipulations 10312371Sgabeblack@google.com of those. A source file also specifies a set of guards which 10412371Sgabeblack@google.com describing which builds the source file applies to. A parent can 10512371Sgabeblack@google.com also be specified to get default guards from''' 10612371Sgabeblack@google.com __metaclass__ = SourceMeta 10712371Sgabeblack@google.com def __init__(self, source, parent=None, **guards): 10812371Sgabeblack@google.com self.guards = guards 10912371Sgabeblack@google.com self.parent = parent 11012371Sgabeblack@google.com 11112371Sgabeblack@google.com tnode = source 11212371Sgabeblack@google.com if not isinstance(source, SCons.Node.FS.File): 11312371Sgabeblack@google.com tnode = File(source) 11412371Sgabeblack@google.com 11512371Sgabeblack@google.com self.tnode = tnode 11612371Sgabeblack@google.com self.snode = tnode.srcnode() 11712371Sgabeblack@google.com 11812371Sgabeblack@google.com for base in type(self).__mro__: 11912371Sgabeblack@google.com if issubclass(base, SourceFile): 12012371Sgabeblack@google.com base.all.append(self) 12112371Sgabeblack@google.com 12212371Sgabeblack@google.com @property 12312371Sgabeblack@google.com def filename(self): 12412371Sgabeblack@google.com return str(self.tnode) 12512371Sgabeblack@google.com 12612302Sgabeblack@google.com @property 12712371Sgabeblack@google.com def dirname(self): 12812302Sgabeblack@google.com return dirname(self.filename) 12912371Sgabeblack@google.com 13012302Sgabeblack@google.com @property 13112302Sgabeblack@google.com def basename(self): 13212371Sgabeblack@google.com return basename(self.filename) 13312371Sgabeblack@google.com 13412371Sgabeblack@google.com @property 13512371Sgabeblack@google.com def extname(self): 13612302Sgabeblack@google.com index = self.basename.rfind('.') 13712371Sgabeblack@google.com if index <= 0: 13812371Sgabeblack@google.com # dot files aren't extensions 13912371Sgabeblack@google.com return self.basename, None 14012371Sgabeblack@google.com 14111983Sgabeblack@google.com return self.basename[:index], self.basename[index+1:] 1426143Snate@binkert.org 1438233Snate@binkert.org @property 14412302Sgabeblack@google.com def all_guards(self): 1456143Snate@binkert.org '''find all guards for this object getting default values 1466143Snate@binkert.org recursively from its parents''' 14712302Sgabeblack@google.com guards = {} 1484762Snate@binkert.org if self.parent: 1496143Snate@binkert.org guards.update(self.parent.guards) 1508233Snate@binkert.org guards.update(self.guards) 1518233Snate@binkert.org return guards 15212302Sgabeblack@google.com 15312302Sgabeblack@google.com def __lt__(self, other): return self.filename < other.filename 1546143Snate@binkert.org def __le__(self, other): return self.filename <= other.filename 15512362Sgabeblack@google.com def __gt__(self, other): return self.filename > other.filename 15612362Sgabeblack@google.com def __ge__(self, other): return self.filename >= other.filename 15712362Sgabeblack@google.com def __eq__(self, other): return self.filename == other.filename 15812362Sgabeblack@google.com def __ne__(self, other): return self.filename != other.filename 15912302Sgabeblack@google.com 16012302Sgabeblack@google.com @staticmethod 16112302Sgabeblack@google.com def done(): 16212302Sgabeblack@google.com def disabled(cls, name, *ignored): 16312302Sgabeblack@google.com raise RuntimeError("Additional SourceFile '%s'" % name,\ 16412363Sgabeblack@google.com "declared, but targets deps are already fixed.") 16512363Sgabeblack@google.com SourceFile.__init__ = disabled 16612363Sgabeblack@google.com 16712363Sgabeblack@google.com 16812302Sgabeblack@google.comclass Source(SourceFile): 16912363Sgabeblack@google.com current_group = None 17012363Sgabeblack@google.com source_groups = { None : [] } 17112363Sgabeblack@google.com 17212363Sgabeblack@google.com @classmethod 17312363Sgabeblack@google.com def set_group(cls, group): 1748233Snate@binkert.org if not group in Source.source_groups: 1756143Snate@binkert.org Source.source_groups[group] = [] 1766143Snate@binkert.org Source.current_group = group 1776143Snate@binkert.org 1786143Snate@binkert.org '''Add a c/c++ source file to the build''' 1796143Snate@binkert.org def __init__(self, source, Werror=True, **guards): 1806143Snate@binkert.org '''specify the source file, and any guards''' 1816143Snate@binkert.org super(Source, self).__init__(source, **guards) 1826143Snate@binkert.org 1836143Snate@binkert.org self.Werror = Werror 1847065Snate@binkert.org 1856143Snate@binkert.org Source.source_groups[Source.current_group].append(self) 18612362Sgabeblack@google.com 18712362Sgabeblack@google.comclass PySource(SourceFile): 18812362Sgabeblack@google.com '''Add a python source file to the named package''' 18912362Sgabeblack@google.com invalid_sym_char = re.compile('[^A-z0-9_]') 19012362Sgabeblack@google.com modules = {} 19112362Sgabeblack@google.com tnodes = {} 19212362Sgabeblack@google.com symnames = {} 19312362Sgabeblack@google.com 19412362Sgabeblack@google.com def __init__(self, package, source, **guards): 19512362Sgabeblack@google.com '''specify the python package, the source file, and any guards''' 19612362Sgabeblack@google.com super(PySource, self).__init__(source, **guards) 19712362Sgabeblack@google.com 1988233Snate@binkert.org modname,ext = self.extname 1998233Snate@binkert.org assert ext == 'py' 2008233Snate@binkert.org 2018233Snate@binkert.org if package: 2028233Snate@binkert.org path = package.split('.') 2038233Snate@binkert.org else: 2048233Snate@binkert.org path = [] 2058233Snate@binkert.org 2068233Snate@binkert.org modpath = path[:] 2078233Snate@binkert.org if modname != '__init__': 2088233Snate@binkert.org modpath += [ modname ] 2098233Snate@binkert.org modpath = '.'.join(modpath) 2108233Snate@binkert.org 2118233Snate@binkert.org arcpath = path + [ self.basename ] 2128233Snate@binkert.org abspath = self.snode.abspath 2138233Snate@binkert.org if not exists(abspath): 2148233Snate@binkert.org abspath = self.tnode.abspath 2158233Snate@binkert.org 2168233Snate@binkert.org self.package = package 2178233Snate@binkert.org self.modname = modname 2188233Snate@binkert.org self.modpath = modpath 2196143Snate@binkert.org self.arcname = joinpath(*arcpath) 2206143Snate@binkert.org self.abspath = abspath 2216143Snate@binkert.org self.compiled = File(self.filename + 'c') 2226143Snate@binkert.org self.cpp = File(self.filename + '.cc') 2236143Snate@binkert.org self.symname = PySource.invalid_sym_char.sub('_', modpath) 2246143Snate@binkert.org 2259982Satgutier@umich.edu PySource.modules[modpath] = self 22613576Sciro.santilli@arm.com PySource.tnodes[self.tnode] = self 22713576Sciro.santilli@arm.com PySource.symnames[self.symname] = self 22813576Sciro.santilli@arm.com 22913576Sciro.santilli@arm.comclass SimObject(PySource): 23013576Sciro.santilli@arm.com '''Add a SimObject python file as a python source object and add 23113576Sciro.santilli@arm.com it to a list of sim object modules''' 23213576Sciro.santilli@arm.com 23313576Sciro.santilli@arm.com fixed = False 23413576Sciro.santilli@arm.com modnames = [] 23513576Sciro.santilli@arm.com 23613576Sciro.santilli@arm.com def __init__(self, source, **guards): 23713576Sciro.santilli@arm.com '''Specify the source file and any guards (automatically in 23813576Sciro.santilli@arm.com the m5.objects package)''' 23913576Sciro.santilli@arm.com super(SimObject, self).__init__('m5.objects', source, **guards) 24013576Sciro.santilli@arm.com if self.fixed: 24113576Sciro.santilli@arm.com raise AttributeError, "Too late to call SimObject now." 24213576Sciro.santilli@arm.com 24313576Sciro.santilli@arm.com bisect.insort_right(SimObject.modnames, self.modname) 24413576Sciro.santilli@arm.com 24513576Sciro.santilli@arm.comclass ProtoBuf(SourceFile): 24613576Sciro.santilli@arm.com '''Add a Protocol Buffer to build''' 24713576Sciro.santilli@arm.com 24813576Sciro.santilli@arm.com def __init__(self, source, **guards): 24913576Sciro.santilli@arm.com '''Specify the source file, and any guards''' 25013576Sciro.santilli@arm.com super(ProtoBuf, self).__init__(source, **guards) 25113576Sciro.santilli@arm.com 25213576Sciro.santilli@arm.com # Get the file name and the extension 25313576Sciro.santilli@arm.com modname,ext = self.extname 25413576Sciro.santilli@arm.com assert ext == 'proto' 25513576Sciro.santilli@arm.com 25613576Sciro.santilli@arm.com # Currently, we stick to generating the C++ headers, so we 25713576Sciro.santilli@arm.com # only need to track the source and header. 25813576Sciro.santilli@arm.com self.cc_file = File(modname + '.pb.cc') 25913576Sciro.santilli@arm.com self.hh_file = File(modname + '.pb.h') 26013576Sciro.santilli@arm.com 26113576Sciro.santilli@arm.comclass UnitTest(object): 26213576Sciro.santilli@arm.com '''Create a UnitTest''' 26313576Sciro.santilli@arm.com 26413576Sciro.santilli@arm.com all = [] 26513576Sciro.santilli@arm.com def __init__(self, target, *sources, **kwargs): 26613576Sciro.santilli@arm.com '''Specify the target name and any sources. Sources that are 26713576Sciro.santilli@arm.com not SourceFiles are evalued with Source(). All files are 26813576Sciro.santilli@arm.com guarded with a guard of the same name as the UnitTest 26913576Sciro.santilli@arm.com target.''' 27013576Sciro.santilli@arm.com 27113576Sciro.santilli@arm.com srcs = [] 27213576Sciro.santilli@arm.com for src in sources: 27313576Sciro.santilli@arm.com if not isinstance(src, SourceFile): 27413576Sciro.santilli@arm.com src = Source(src, skip_lib=True) 27513576Sciro.santilli@arm.com src.guards[target] = True 27613576Sciro.santilli@arm.com srcs.append(src) 27713576Sciro.santilli@arm.com 27813576Sciro.santilli@arm.com self.sources = srcs 27913576Sciro.santilli@arm.com self.target = target 28013576Sciro.santilli@arm.com self.main = kwargs.get('main', False) 28113576Sciro.santilli@arm.com UnitTest.all.append(self) 28213576Sciro.santilli@arm.com 28313576Sciro.santilli@arm.com# Children should have access 28413576Sciro.santilli@arm.comExport('Source') 28513576Sciro.santilli@arm.comExport('PySource') 28613576Sciro.santilli@arm.comExport('SimObject') 28713576Sciro.santilli@arm.comExport('ProtoBuf') 28813576Sciro.santilli@arm.comExport('UnitTest') 28913576Sciro.santilli@arm.com 29013576Sciro.santilli@arm.com######################################################################## 29113576Sciro.santilli@arm.com# 29213576Sciro.santilli@arm.com# Debug Flags 29313576Sciro.santilli@arm.com# 29413576Sciro.santilli@arm.comdebug_flags = {} 29513576Sciro.santilli@arm.comdef DebugFlag(name, desc=None): 2966143Snate@binkert.org if name in debug_flags: 29712302Sgabeblack@google.com raise AttributeError, "Flag %s already specified" % name 29812302Sgabeblack@google.com debug_flags[name] = (name, (), desc) 29912302Sgabeblack@google.com 30012302Sgabeblack@google.comdef CompoundFlag(name, flags, desc=None): 30112302Sgabeblack@google.com if name in debug_flags: 30212302Sgabeblack@google.com raise AttributeError, "Flag %s already specified" % name 30312302Sgabeblack@google.com 30412302Sgabeblack@google.com compound = tuple(flags) 30511983Sgabeblack@google.com debug_flags[name] = (name, compound, desc) 30611983Sgabeblack@google.com 30711983Sgabeblack@google.comExport('DebugFlag') 30812302Sgabeblack@google.comExport('CompoundFlag') 30912302Sgabeblack@google.com 31012302Sgabeblack@google.com######################################################################## 31112302Sgabeblack@google.com# 31212302Sgabeblack@google.com# Set some compiler variables 31312302Sgabeblack@google.com# 31411983Sgabeblack@google.com 3156143Snate@binkert.org# Include file paths are rooted in this directory. SCons will 31612305Sgabeblack@google.com# automatically expand '.' to refer to both the source directory and 31712302Sgabeblack@google.com# the corresponding build directory to pick up generated include 31812302Sgabeblack@google.com# files. 31912302Sgabeblack@google.comenv.Append(CPPPATH=Dir('.')) 3206143Snate@binkert.org 3216143Snate@binkert.orgfor extra_dir in extras_dir_list: 3226143Snate@binkert.org env.Append(CPPPATH=Dir(extra_dir)) 3235522Snate@binkert.org 3246143Snate@binkert.org# Workaround for bug in SCons version > 0.97d20071212 3256143Snate@binkert.org# Scons bug id: 2006 gem5 Bug id: 308 3266143Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True): 3279982Satgutier@umich.edu Dir(root[len(base_dir) + 1:]) 32812302Sgabeblack@google.com 32912302Sgabeblack@google.com######################################################################## 33012302Sgabeblack@google.com# 3316143Snate@binkert.org# Walk the tree and execute all SConscripts in subdirectories 3326143Snate@binkert.org# 3336143Snate@binkert.org 3346143Snate@binkert.orghere = Dir('.').srcnode().abspath 3355522Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True): 3365522Snate@binkert.org if root == here: 3375522Snate@binkert.org # we don't want to recurse back into this SConscript 3385522Snate@binkert.org continue 3395604Snate@binkert.org 3405604Snate@binkert.org if 'SConscript' in files: 3416143Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:]) 3426143Snate@binkert.org Source.set_group(build_dir) 3434762Snate@binkert.org SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir) 3444762Snate@binkert.org 3456143Snate@binkert.orgfor extra_dir in extras_dir_list: 3466727Ssteve.reinhardt@amd.com prefix_len = len(dirname(extra_dir)) + 1 3476727Ssteve.reinhardt@amd.com 3486727Ssteve.reinhardt@amd.com # Also add the corresponding build directory to pick up generated 3494762Snate@binkert.org # include files. 3506143Snate@binkert.org env.Append(CPPPATH=Dir(joinpath(env['BUILDDIR'], extra_dir[prefix_len:]))) 3516143Snate@binkert.org 3526143Snate@binkert.org for root, dirs, files in os.walk(extra_dir, topdown=True): 3536143Snate@binkert.org # if build lives in the extras directory, don't walk down it 3546727Ssteve.reinhardt@amd.com if 'build' in dirs: 3556143Snate@binkert.org dirs.remove('build') 3567674Snate@binkert.org 3577674Snate@binkert.org if 'SConscript' in files: 3585604Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[prefix_len:]) 3596143Snate@binkert.org SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir) 3606143Snate@binkert.org 3616143Snate@binkert.orgfor opt in export_vars: 3624762Snate@binkert.org env.ConfigFile(opt) 3636143Snate@binkert.org 3644762Snate@binkert.orgdef makeTheISA(source, target, env): 3654762Snate@binkert.org isas = [ src.get_contents() for src in source ] 3664762Snate@binkert.org target_isa = env['TARGET_ISA'] 3676143Snate@binkert.org def define(isa): 3686143Snate@binkert.org return isa.upper() + '_ISA' 3694762Snate@binkert.org 37012302Sgabeblack@google.com def namespace(isa): 37112302Sgabeblack@google.com return isa[0].upper() + isa[1:].lower() + 'ISA' 3728233Snate@binkert.org 37312302Sgabeblack@google.com 3746143Snate@binkert.org code = code_formatter() 3756143Snate@binkert.org code('''\ 3764762Snate@binkert.org#ifndef __CONFIG_THE_ISA_HH__ 3776143Snate@binkert.org#define __CONFIG_THE_ISA_HH__ 3784762Snate@binkert.org 3799396Sandreas.hansson@arm.com''') 3809396Sandreas.hansson@arm.com 3819396Sandreas.hansson@arm.com # create defines for the preprocessing and compile-time determination 38212302Sgabeblack@google.com for i,isa in enumerate(isas): 38312302Sgabeblack@google.com code('#define $0 $1', define(isa), i + 1) 38412302Sgabeblack@google.com code() 3859396Sandreas.hansson@arm.com 3869396Sandreas.hansson@arm.com # create an enum for any run-time determination of the ISA, we 3879396Sandreas.hansson@arm.com # reuse the same name as the namespaces 3889396Sandreas.hansson@arm.com code('enum class Arch {') 3899396Sandreas.hansson@arm.com for i,isa in enumerate(isas): 3909396Sandreas.hansson@arm.com if i + 1 == len(isas): 3919396Sandreas.hansson@arm.com code(' $0 = $1', namespace(isa), define(isa)) 3929930Sandreas.hansson@arm.com else: 3939930Sandreas.hansson@arm.com code(' $0 = $1,', namespace(isa), define(isa)) 3949396Sandreas.hansson@arm.com code('};') 3956143Snate@binkert.org 39612797Sgabeblack@google.com code(''' 39712797Sgabeblack@google.com 39812797Sgabeblack@google.com#define THE_ISA ${{define(target_isa)}} 3998235Snate@binkert.org#define TheISA ${{namespace(target_isa)}} 40012797Sgabeblack@google.com#define THE_ISA_STR "${{target_isa}}" 40112797Sgabeblack@google.com 40212797Sgabeblack@google.com#endif // __CONFIG_THE_ISA_HH__''') 40312797Sgabeblack@google.com 40412797Sgabeblack@google.com code.write(str(target[0])) 40512797Sgabeblack@google.com 40612797Sgabeblack@google.comenv.Command('config/the_isa.hh', map(Value, all_isa_list), 40712797Sgabeblack@google.com MakeAction(makeTheISA, Transform("CFG ISA", 0))) 40812797Sgabeblack@google.com 40912797Sgabeblack@google.comdef makeTheGPUISA(source, target, env): 41012797Sgabeblack@google.com isas = [ src.get_contents() for src in source ] 41112797Sgabeblack@google.com target_gpu_isa = env['TARGET_GPU_ISA'] 41212797Sgabeblack@google.com def define(isa): 41312797Sgabeblack@google.com return isa.upper() + '_ISA' 41412797Sgabeblack@google.com 41512757Sgabeblack@google.com def namespace(isa): 41612757Sgabeblack@google.com return isa[0].upper() + isa[1:].lower() + 'ISA' 41712797Sgabeblack@google.com 41812797Sgabeblack@google.com 41912797Sgabeblack@google.com code = code_formatter() 42012757Sgabeblack@google.com code('''\ 42112757Sgabeblack@google.com#ifndef __CONFIG_THE_GPU_ISA_HH__ 42212757Sgabeblack@google.com#define __CONFIG_THE_GPU_ISA_HH__ 42312757Sgabeblack@google.com 4248235Snate@binkert.org''') 42512302Sgabeblack@google.com 4268235Snate@binkert.org # create defines for the preprocessing and compile-time determination 4278235Snate@binkert.org for i,isa in enumerate(isas): 42812757Sgabeblack@google.com code('#define $0 $1', define(isa), i + 1) 4298235Snate@binkert.org code() 4308235Snate@binkert.org 4318235Snate@binkert.org # create an enum for any run-time determination of the ISA, we 43212757Sgabeblack@google.com # reuse the same name as the namespaces 43312313Sgabeblack@google.com code('enum class GPUArch {') 43412797Sgabeblack@google.com for i,isa in enumerate(isas): 43512797Sgabeblack@google.com if i + 1 == len(isas): 43612797Sgabeblack@google.com code(' $0 = $1', namespace(isa), define(isa)) 43712797Sgabeblack@google.com else: 43812797Sgabeblack@google.com code(' $0 = $1,', namespace(isa), define(isa)) 43912797Sgabeblack@google.com code('};') 44012797Sgabeblack@google.com 44112797Sgabeblack@google.com code(''' 44212797Sgabeblack@google.com 44312797Sgabeblack@google.com#define THE_GPU_ISA ${{define(target_gpu_isa)}} 44412797Sgabeblack@google.com#define TheGpuISA ${{namespace(target_gpu_isa)}} 44512797Sgabeblack@google.com#define THE_GPU_ISA_STR "${{target_gpu_isa}}" 44612797Sgabeblack@google.com 44712797Sgabeblack@google.com#endif // __CONFIG_THE_GPU_ISA_HH__''') 44812797Sgabeblack@google.com 44912797Sgabeblack@google.com code.write(str(target[0])) 45012797Sgabeblack@google.com 45112797Sgabeblack@google.comenv.Command('config/the_gpu_isa.hh', map(Value, all_gpu_isa_list), 45212797Sgabeblack@google.com MakeAction(makeTheGPUISA, Transform("CFG ISA", 0))) 45312797Sgabeblack@google.com 45412797Sgabeblack@google.com######################################################################## 45512797Sgabeblack@google.com# 45612797Sgabeblack@google.com# Prevent any SimObjects from being added after this point, they 45712797Sgabeblack@google.com# should all have been added in the SConscripts above 45812797Sgabeblack@google.com# 45912797Sgabeblack@google.comSimObject.fixed = True 46012797Sgabeblack@google.com 46112797Sgabeblack@google.comclass DictImporter(object): 46212797Sgabeblack@google.com '''This importer takes a dictionary of arbitrary module names that 46312797Sgabeblack@google.com map to arbitrary filenames.''' 46412797Sgabeblack@google.com def __init__(self, modules): 46512797Sgabeblack@google.com self.modules = modules 46612797Sgabeblack@google.com self.installed = set() 46712797Sgabeblack@google.com 46812797Sgabeblack@google.com def __del__(self): 46912797Sgabeblack@google.com self.unload() 47012797Sgabeblack@google.com 47112797Sgabeblack@google.com def unload(self): 47212797Sgabeblack@google.com import sys 47312797Sgabeblack@google.com for module in self.installed: 47412797Sgabeblack@google.com del sys.modules[module] 47512797Sgabeblack@google.com self.installed = set() 47612797Sgabeblack@google.com 47712797Sgabeblack@google.com def find_module(self, fullname, path): 47812313Sgabeblack@google.com if fullname == 'm5.defines': 47912313Sgabeblack@google.com return self 48012797Sgabeblack@google.com 48112797Sgabeblack@google.com if fullname == 'm5.objects': 48212797Sgabeblack@google.com return self 48312371Sgabeblack@google.com 4845584Snate@binkert.org if fullname.startswith('_m5'): 48512797Sgabeblack@google.com return None 48612797Sgabeblack@google.com 48712797Sgabeblack@google.com source = self.modules.get(fullname, None) 48812797Sgabeblack@google.com if source is not None and fullname.startswith('m5.objects'): 48912797Sgabeblack@google.com return self 49012797Sgabeblack@google.com 49112797Sgabeblack@google.com return None 49212797Sgabeblack@google.com 49312797Sgabeblack@google.com def load_module(self, fullname): 49412797Sgabeblack@google.com mod = imp.new_module(fullname) 49512797Sgabeblack@google.com sys.modules[fullname] = mod 49612797Sgabeblack@google.com self.installed.add(fullname) 49712797Sgabeblack@google.com 49812797Sgabeblack@google.com mod.__loader__ = self 49912797Sgabeblack@google.com if fullname == 'm5.objects': 50012797Sgabeblack@google.com mod.__path__ = fullname.split('.') 50112797Sgabeblack@google.com return mod 50212797Sgabeblack@google.com 50312797Sgabeblack@google.com if fullname == 'm5.defines': 50412797Sgabeblack@google.com mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env) 50512797Sgabeblack@google.com return mod 50612797Sgabeblack@google.com 50712797Sgabeblack@google.com source = self.modules[fullname] 50812797Sgabeblack@google.com if source.modname == '__init__': 50912797Sgabeblack@google.com mod.__path__ = source.modpath 51012797Sgabeblack@google.com mod.__file__ = source.abspath 51112797Sgabeblack@google.com 51212797Sgabeblack@google.com exec file(source.abspath, 'r') in mod.__dict__ 51312797Sgabeblack@google.com 51412797Sgabeblack@google.com return mod 51512797Sgabeblack@google.com 51612797Sgabeblack@google.comimport m5.SimObject 51712797Sgabeblack@google.comimport m5.params 51812797Sgabeblack@google.comfrom m5.util import code_formatter 51912797Sgabeblack@google.com 52012797Sgabeblack@google.comm5.SimObject.clear() 52112797Sgabeblack@google.comm5.params.clear() 52212797Sgabeblack@google.com 5234382Sbinkertn@umich.edu# install the python importer so we can grab stuff from the source 52413576Sciro.santilli@arm.com# tree itself. We can't have SimObjects added after this point or 5254202Sbinkertn@umich.edu# else we won't know about them for the rest of the stuff. 5264382Sbinkertn@umich.eduimporter = DictImporter(PySource.modules) 5274382Sbinkertn@umich.edusys.meta_path[0:0] = [ importer ] 5289396Sandreas.hansson@arm.com 52912797Sgabeblack@google.com# import all sim objects so we can populate the all_objects list 5305584Snate@binkert.org# make sure that we're working with a list, then let's sort it 53112313Sgabeblack@google.comfor modname in SimObject.modnames: 5324382Sbinkertn@umich.edu exec('from m5.objects import %s' % modname) 5334382Sbinkertn@umich.edu 5344382Sbinkertn@umich.edu# we need to unload all of the currently imported modules so that they 5358232Snate@binkert.org# will be re-imported the next time the sconscript is run 5365192Ssaidi@eecs.umich.eduimporter.unload() 5378232Snate@binkert.orgsys.meta_path.remove(importer) 5388232Snate@binkert.org 5398232Snate@binkert.orgsim_objects = m5.SimObject.allClasses 5405192Ssaidi@eecs.umich.eduall_enums = m5.params.allEnums 5418232Snate@binkert.org 5425192Ssaidi@eecs.umich.edufor name,obj in sorted(sim_objects.iteritems()): 5435799Snate@binkert.org for param in obj._params.local.values(): 5448232Snate@binkert.org # load the ptype attribute now because it depends on the 5455192Ssaidi@eecs.umich.edu # current version of SimObject.allClasses, but when scons 5465192Ssaidi@eecs.umich.edu # actually uses the value, all versions of 5475192Ssaidi@eecs.umich.edu # SimObject.allClasses will have been loaded 5488232Snate@binkert.org param.ptype 5495192Ssaidi@eecs.umich.edu 5508232Snate@binkert.org######################################################################## 5515192Ssaidi@eecs.umich.edu# 5525192Ssaidi@eecs.umich.edu# calculate extra dependencies 5535192Ssaidi@eecs.umich.edu# 5545192Ssaidi@eecs.umich.edumodule_depends = ["m5", "m5.SimObject", "m5.params"] 5554382Sbinkertn@umich.edudepends = [ PySource.modules[dep].snode for dep in module_depends ] 5564382Sbinkertn@umich.edudepends.sort(key = lambda x: x.name) 5574382Sbinkertn@umich.edu 5582667Sstever@eecs.umich.edu######################################################################## 5592667Sstever@eecs.umich.edu# 5602667Sstever@eecs.umich.edu# Commands for the basic automatically generated python files 5612667Sstever@eecs.umich.edu# 5622667Sstever@eecs.umich.edu 5632667Sstever@eecs.umich.edu# Generate Python file containing a dict specifying the current 5645742Snate@binkert.org# buildEnv flags. 5655742Snate@binkert.orgdef makeDefinesPyFile(target, source, env): 5665742Snate@binkert.org build_env = source[0].get_contents() 5675793Snate@binkert.org 5688334Snate@binkert.org code = code_formatter() 5695793Snate@binkert.org code(""" 5705793Snate@binkert.orgimport _m5.core 5715793Snate@binkert.orgimport m5.util 5724382Sbinkertn@umich.edu 5734762Snate@binkert.orgbuildEnv = m5.util.SmartDict($build_env) 5745344Sstever@gmail.com 5754382Sbinkertn@umich.educompileDate = _m5.core.compileDate 5765341Sstever@gmail.com_globals = globals() 5775742Snate@binkert.orgfor key,val in _m5.core.__dict__.iteritems(): 5785742Snate@binkert.org if key.startswith('flag_'): 5795742Snate@binkert.org flag = key[5:] 5805742Snate@binkert.org _globals[flag] = val 5815742Snate@binkert.orgdel _globals 5824762Snate@binkert.org""") 5835742Snate@binkert.org code.write(target[0].abspath) 5845742Snate@binkert.org 58511984Sgabeblack@google.comdefines_info = Value(build_env) 5867722Sgblack@eecs.umich.edu# Generate a file with all of the compile options in it 5875742Snate@binkert.orgenv.Command('python/m5/defines.py', defines_info, 5885742Snate@binkert.org MakeAction(makeDefinesPyFile, Transform("DEFINES", 0))) 5895742Snate@binkert.orgPySource('m5', 'python/m5/defines.py') 5909930Sandreas.hansson@arm.com 5919930Sandreas.hansson@arm.com# Generate python file containing info about the M5 source code 5929930Sandreas.hansson@arm.comdef makeInfoPyFile(target, source, env): 5939930Sandreas.hansson@arm.com code = code_formatter() 5949930Sandreas.hansson@arm.com for src in source: 5955742Snate@binkert.org data = ''.join(file(src.srcnode().abspath, 'r').xreadlines()) 5968242Sbradley.danofsky@amd.com code('$src = ${{repr(data)}}') 5978242Sbradley.danofsky@amd.com code.write(str(target[0])) 5988242Sbradley.danofsky@amd.com 5998242Sbradley.danofsky@amd.com# Generate a file that wraps the basic top level files 6005341Sstever@gmail.comenv.Command('python/m5/info.py', 6015742Snate@binkert.org [ '#/COPYING', '#/LICENSE', '#/README', ], 6027722Sgblack@eecs.umich.edu MakeAction(makeInfoPyFile, Transform("INFO"))) 6034773Snate@binkert.orgPySource('m5', 'python/m5/info.py') 6046108Snate@binkert.org 6051858SN/A######################################################################## 6061085SN/A# 6076658Snate@binkert.org# Create all of the SimObject param headers and enum headers 6086658Snate@binkert.org# 6097673Snate@binkert.org 6106658Snate@binkert.orgdef createSimObjectParamStruct(target, source, env): 6116658Snate@binkert.org assert len(target) == 1 and len(source) == 1 61211308Santhony.gutierrez@amd.com 6136658Snate@binkert.org name = source[0].get_text_contents() 61411308Santhony.gutierrez@amd.com obj = sim_objects[name] 6156658Snate@binkert.org 6166658Snate@binkert.org code = code_formatter() 6177673Snate@binkert.org obj.cxx_param_decl(code) 6187673Snate@binkert.org code.write(target[0].abspath) 6197673Snate@binkert.org 6207673Snate@binkert.orgdef createSimObjectCxxConfig(is_header): 6217673Snate@binkert.org def body(target, source, env): 6227673Snate@binkert.org assert len(target) == 1 and len(source) == 1 6237673Snate@binkert.org 62410467Sandreas.hansson@arm.com name = str(source[0].get_contents()) 6256658Snate@binkert.org obj = sim_objects[name] 6267673Snate@binkert.org 62710467Sandreas.hansson@arm.com code = code_formatter() 62810467Sandreas.hansson@arm.com obj.cxx_config_param_file(code, is_header) 62910467Sandreas.hansson@arm.com code.write(target[0].abspath) 63010467Sandreas.hansson@arm.com return body 63110467Sandreas.hansson@arm.com 63210467Sandreas.hansson@arm.comdef createEnumStrings(target, source, env): 63310467Sandreas.hansson@arm.com assert len(target) == 1 and len(source) == 2 63410467Sandreas.hansson@arm.com 63510467Sandreas.hansson@arm.com name = source[0].get_text_contents() 63610467Sandreas.hansson@arm.com use_python = source[1].read() 63710467Sandreas.hansson@arm.com obj = all_enums[name] 6387673Snate@binkert.org 6397673Snate@binkert.org code = code_formatter() 6407673Snate@binkert.org obj.cxx_def(code) 6417673Snate@binkert.org if use_python: 6427673Snate@binkert.org obj.pybind_def(code) 6439048SAli.Saidi@ARM.com code.write(target[0].abspath) 6447673Snate@binkert.org 6457673Snate@binkert.orgdef createEnumDecls(target, source, env): 6467673Snate@binkert.org assert len(target) == 1 and len(source) == 1 6477673Snate@binkert.org 6486658Snate@binkert.org name = source[0].get_text_contents() 6497756SAli.Saidi@ARM.com obj = all_enums[name] 6507816Ssteve.reinhardt@amd.com 6516658Snate@binkert.org code = code_formatter() 65211308Santhony.gutierrez@amd.com obj.cxx_decl(code) 65311308Santhony.gutierrez@amd.com code.write(target[0].abspath) 65411308Santhony.gutierrez@amd.com 65511308Santhony.gutierrez@amd.comdef createSimObjectPyBindWrapper(target, source, env): 65611308Santhony.gutierrez@amd.com name = source[0].get_text_contents() 65711308Santhony.gutierrez@amd.com obj = sim_objects[name] 65811308Santhony.gutierrez@amd.com 65911308Santhony.gutierrez@amd.com code = code_formatter() 66011308Santhony.gutierrez@amd.com obj.pybind_decl(code) 66111308Santhony.gutierrez@amd.com code.write(target[0].abspath) 66211308Santhony.gutierrez@amd.com 66311308Santhony.gutierrez@amd.com# Generate all of the SimObject param C++ struct header files 66411308Santhony.gutierrez@amd.comparams_hh_files = [] 66511308Santhony.gutierrez@amd.comfor name,simobj in sorted(sim_objects.iteritems()): 66611308Santhony.gutierrez@amd.com py_source = PySource.modules[simobj.__module__] 66711308Santhony.gutierrez@amd.com extra_deps = [ py_source.tnode ] 66811308Santhony.gutierrez@amd.com 66911308Santhony.gutierrez@amd.com hh_file = File('params/%s.hh' % name) 67011308Santhony.gutierrez@amd.com params_hh_files.append(hh_file) 67111308Santhony.gutierrez@amd.com env.Command(hh_file, Value(name), 67211308Santhony.gutierrez@amd.com MakeAction(createSimObjectParamStruct, Transform("SO PARAM"))) 67311308Santhony.gutierrez@amd.com env.Depends(hh_file, depends + extra_deps) 67411308Santhony.gutierrez@amd.com 67511308Santhony.gutierrez@amd.com# C++ parameter description files 67611308Santhony.gutierrez@amd.comif GetOption('with_cxx_config'): 67711308Santhony.gutierrez@amd.com for name,simobj in sorted(sim_objects.iteritems()): 67811308Santhony.gutierrez@amd.com py_source = PySource.modules[simobj.__module__] 67911308Santhony.gutierrez@amd.com extra_deps = [ py_source.tnode ] 68011308Santhony.gutierrez@amd.com 68111308Santhony.gutierrez@amd.com cxx_config_hh_file = File('cxx_config/%s.hh' % name) 68211308Santhony.gutierrez@amd.com cxx_config_cc_file = File('cxx_config/%s.cc' % name) 68311308Santhony.gutierrez@amd.com env.Command(cxx_config_hh_file, Value(name), 68411308Santhony.gutierrez@amd.com MakeAction(createSimObjectCxxConfig(True), 68511308Santhony.gutierrez@amd.com Transform("CXXCPRHH"))) 68611308Santhony.gutierrez@amd.com env.Command(cxx_config_cc_file, Value(name), 68711308Santhony.gutierrez@amd.com MakeAction(createSimObjectCxxConfig(False), 68811308Santhony.gutierrez@amd.com Transform("CXXCPRCC"))) 68911308Santhony.gutierrez@amd.com env.Depends(cxx_config_hh_file, depends + extra_deps + 69011308Santhony.gutierrez@amd.com [File('params/%s.hh' % name), File('sim/cxx_config.hh')]) 69111308Santhony.gutierrez@amd.com env.Depends(cxx_config_cc_file, depends + extra_deps + 69211308Santhony.gutierrez@amd.com [cxx_config_hh_file]) 69311308Santhony.gutierrez@amd.com Source(cxx_config_cc_file) 69411308Santhony.gutierrez@amd.com 69511308Santhony.gutierrez@amd.com cxx_config_init_cc_file = File('cxx_config/init.cc') 69611308Santhony.gutierrez@amd.com 6974382Sbinkertn@umich.edu def createCxxConfigInitCC(target, source, env): 6984382Sbinkertn@umich.edu assert len(target) == 1 and len(source) == 1 6994762Snate@binkert.org 7004762Snate@binkert.org code = code_formatter() 7014762Snate@binkert.org 7026654Snate@binkert.org for name,simobj in sorted(sim_objects.iteritems()): 7036654Snate@binkert.org if not hasattr(simobj, 'abstract') or not simobj.abstract: 7045517Snate@binkert.org code('#include "cxx_config/${name}.hh"') 7055517Snate@binkert.org code() 7065517Snate@binkert.org code('void cxxConfigInit()') 7075517Snate@binkert.org code('{') 7085517Snate@binkert.org code.indent() 7095517Snate@binkert.org for name,simobj in sorted(sim_objects.iteritems()): 7105517Snate@binkert.org not_abstract = not hasattr(simobj, 'abstract') or \ 7115517Snate@binkert.org not simobj.abstract 7125517Snate@binkert.org if not_abstract and 'type' in simobj.__dict__: 7135517Snate@binkert.org code('cxx_config_directory["${name}"] = ' 7145517Snate@binkert.org '${name}CxxConfigParams::makeDirectoryEntry();') 7155517Snate@binkert.org code.dedent() 7165517Snate@binkert.org code('}') 7175517Snate@binkert.org code.write(target[0].abspath) 7185517Snate@binkert.org 7195517Snate@binkert.org py_source = PySource.modules[simobj.__module__] 7205517Snate@binkert.org extra_deps = [ py_source.tnode ] 7216654Snate@binkert.org env.Command(cxx_config_init_cc_file, Value(name), 7225517Snate@binkert.org MakeAction(createCxxConfigInitCC, Transform("CXXCINIT"))) 7235517Snate@binkert.org cxx_param_hh_files = ["cxx_config/%s.hh" % simobj 7245517Snate@binkert.org for name,simobj in sorted(sim_objects.iteritems()) 7255517Snate@binkert.org if not hasattr(simobj, 'abstract') or not simobj.abstract] 7265517Snate@binkert.org Depends(cxx_config_init_cc_file, cxx_param_hh_files + 72711802Sandreas.sandberg@arm.com [File('sim/cxx_config.hh')]) 7285517Snate@binkert.org Source(cxx_config_init_cc_file) 7295517Snate@binkert.org 7306143Snate@binkert.org# Generate all enum header files 7316654Snate@binkert.orgfor name,enum in sorted(all_enums.iteritems()): 7325517Snate@binkert.org py_source = PySource.modules[enum.__module__] 7335517Snate@binkert.org extra_deps = [ py_source.tnode ] 7345517Snate@binkert.org 7355517Snate@binkert.org cc_file = File('enums/%s.cc' % name) 7365517Snate@binkert.org env.Command(cc_file, [Value(name), Value(env['USE_PYTHON'])], 7375517Snate@binkert.org MakeAction(createEnumStrings, Transform("ENUM STR"))) 7385517Snate@binkert.org env.Depends(cc_file, depends + extra_deps) 7395517Snate@binkert.org Source(cc_file) 7405517Snate@binkert.org 7415517Snate@binkert.org hh_file = File('enums/%s.hh' % name) 7425517Snate@binkert.org env.Command(hh_file, Value(name), 7435517Snate@binkert.org MakeAction(createEnumDecls, Transform("ENUMDECL"))) 7445517Snate@binkert.org env.Depends(hh_file, depends + extra_deps) 7455517Snate@binkert.org 7466654Snate@binkert.org# Generate SimObject Python bindings wrapper files 7476654Snate@binkert.orgif env['USE_PYTHON']: 7485517Snate@binkert.org for name,simobj in sorted(sim_objects.iteritems()): 7495517Snate@binkert.org py_source = PySource.modules[simobj.__module__] 7506143Snate@binkert.org extra_deps = [ py_source.tnode ] 7516143Snate@binkert.org cc_file = File('python/_m5/param_%s.cc' % name) 7526143Snate@binkert.org env.Command(cc_file, Value(name), 7536727Ssteve.reinhardt@amd.com MakeAction(createSimObjectPyBindWrapper, 7545517Snate@binkert.org Transform("SO PyBind"))) 7556727Ssteve.reinhardt@amd.com env.Depends(cc_file, depends + extra_deps) 7565517Snate@binkert.org Source(cc_file) 7575517Snate@binkert.org 7585517Snate@binkert.org# Build all protocol buffers if we have got protoc and protobuf available 7596654Snate@binkert.orgif env['HAVE_PROTOBUF']: 7606654Snate@binkert.org for proto in ProtoBuf.all: 7617673Snate@binkert.org # Use both the source and header as the target, and the .proto 7626654Snate@binkert.org # file as the source. When executing the protoc compiler, also 7636654Snate@binkert.org # specify the proto_path to avoid having the generated files 7646654Snate@binkert.org # include the path. 7656654Snate@binkert.org env.Command([proto.cc_file, proto.hh_file], proto.tnode, 7665517Snate@binkert.org MakeAction('$PROTOC --cpp_out ${TARGET.dir} ' 7675517Snate@binkert.org '--proto_path ${SOURCE.dir} $SOURCE', 7685517Snate@binkert.org Transform("PROTOC"))) 7696143Snate@binkert.org 7705517Snate@binkert.org # Add the C++ source file 7714762Snate@binkert.org Source(proto.cc_file, **proto.guards) 7725517Snate@binkert.orgelif ProtoBuf.all: 7735517Snate@binkert.org print 'Got protobuf to build, but lacks support!' 7746143Snate@binkert.org Exit(1) 7756143Snate@binkert.org 7765517Snate@binkert.org# 7775517Snate@binkert.org# Handle debug flags 7785517Snate@binkert.org# 7795517Snate@binkert.orgdef makeDebugFlagCC(target, source, env): 7805517Snate@binkert.org assert(len(target) == 1 and len(source) == 1) 7815517Snate@binkert.org 7825517Snate@binkert.org code = code_formatter() 7835517Snate@binkert.org 7845517Snate@binkert.org # delay definition of CompoundFlags until after all the definition 7856143Snate@binkert.org # of all constituent SimpleFlags 7865517Snate@binkert.org comp_code = code_formatter() 7876654Snate@binkert.org 7886654Snate@binkert.org # file header 7896654Snate@binkert.org code(''' 7906654Snate@binkert.org/* 7916654Snate@binkert.org * DO NOT EDIT THIS FILE! Automatically generated by SCons. 7926654Snate@binkert.org */ 7934762Snate@binkert.org 7944762Snate@binkert.org#include "base/debug.hh" 7954762Snate@binkert.org 7964762Snate@binkert.orgnamespace Debug { 7974762Snate@binkert.org 7987675Snate@binkert.org''') 79910584Sandreas.hansson@arm.com 8004762Snate@binkert.org for name, flag in sorted(source[0].read().iteritems()): 8014762Snate@binkert.org n, compound, desc = flag 8024762Snate@binkert.org assert n == name 8034762Snate@binkert.org 8044382Sbinkertn@umich.edu if not compound: 8054382Sbinkertn@umich.edu code('SimpleFlag $name("$name", "$desc");') 8065517Snate@binkert.org else: 8076654Snate@binkert.org comp_code('CompoundFlag $name("$name", "$desc",') 8085517Snate@binkert.org comp_code.indent() 8098126Sgblack@eecs.umich.edu last = len(compound) - 1 8106654Snate@binkert.org for i,flag in enumerate(compound): 8117673Snate@binkert.org if i != last: 8126654Snate@binkert.org comp_code('&$flag,') 81311802Sandreas.sandberg@arm.com else: 8146654Snate@binkert.org comp_code('&$flag);') 8156654Snate@binkert.org comp_code.dedent() 8166654Snate@binkert.org 8176654Snate@binkert.org code.append(comp_code) 81811802Sandreas.sandberg@arm.com code() 8196669Snate@binkert.org code('} // namespace Debug') 82011802Sandreas.sandberg@arm.com 8216669Snate@binkert.org code.write(str(target[0])) 8226669Snate@binkert.org 8236669Snate@binkert.orgdef makeDebugFlagHH(target, source, env): 8246669Snate@binkert.org assert(len(target) == 1 and len(source) == 1) 8256654Snate@binkert.org 8267673Snate@binkert.org val = eval(source[0].get_contents()) 8275517Snate@binkert.org name, compound, desc = val 8288126Sgblack@eecs.umich.edu 8295798Snate@binkert.org code = code_formatter() 8307756SAli.Saidi@ARM.com 8317816Ssteve.reinhardt@amd.com # file header boilerplate 8325798Snate@binkert.org code('''\ 8335798Snate@binkert.org/* 8345517Snate@binkert.org * DO NOT EDIT THIS FILE! Automatically generated by SCons. 8355517Snate@binkert.org */ 8367673Snate@binkert.org 8375517Snate@binkert.org#ifndef __DEBUG_${name}_HH__ 8385517Snate@binkert.org#define __DEBUG_${name}_HH__ 8397673Snate@binkert.org 8407673Snate@binkert.orgnamespace Debug { 8415517Snate@binkert.org''') 8425798Snate@binkert.org 8435798Snate@binkert.org if compound: 8448333Snate@binkert.org code('class CompoundFlag;') 8457816Ssteve.reinhardt@amd.com code('class SimpleFlag;') 8465798Snate@binkert.org 8475798Snate@binkert.org if compound: 8484762Snate@binkert.org code('extern CompoundFlag $name;') 8494762Snate@binkert.org for flag in compound: 8504762Snate@binkert.org code('extern SimpleFlag $flag;') 8514762Snate@binkert.org else: 8524762Snate@binkert.org code('extern SimpleFlag $name;') 8538596Ssteve.reinhardt@amd.com 8545517Snate@binkert.org code(''' 8555517Snate@binkert.org} 85611997Sgabeblack@google.com 8575517Snate@binkert.org#endif // __DEBUG_${name}_HH__ 8585517Snate@binkert.org''') 8597673Snate@binkert.org 8608596Ssteve.reinhardt@amd.com code.write(str(target[0])) 8617673Snate@binkert.org 8625517Snate@binkert.orgfor name,flag in sorted(debug_flags.iteritems()): 86310458Sandreas.hansson@arm.com n, compound, desc = flag 86410458Sandreas.hansson@arm.com assert n == name 86510458Sandreas.hansson@arm.com 86610458Sandreas.hansson@arm.com hh_file = 'debug/%s.hh' % name 86710458Sandreas.hansson@arm.com env.Command(hh_file, Value(flag), 86810458Sandreas.hansson@arm.com MakeAction(makeDebugFlagHH, Transform("TRACING", 0))) 86910458Sandreas.hansson@arm.com 87010458Sandreas.hansson@arm.comenv.Command('debug/flags.cc', Value(debug_flags), 87110458Sandreas.hansson@arm.com MakeAction(makeDebugFlagCC, Transform("TRACING", 0))) 87210458Sandreas.hansson@arm.comSource('debug/flags.cc') 87310458Sandreas.hansson@arm.com 87410458Sandreas.hansson@arm.com# version tags 8755517Snate@binkert.orgtags = \ 87611996Sgabeblack@google.comenv.Command('sim/tags.cc', None, 8775517Snate@binkert.org MakeAction('util/cpt_upgrader.py --get-cc-file > $TARGET', 87811997Sgabeblack@google.com Transform("VER TAGS"))) 87911996Sgabeblack@google.comenv.AlwaysBuild(tags) 8805517Snate@binkert.org 8815517Snate@binkert.org# Embed python files. All .py files that have been indicated by a 8827673Snate@binkert.org# PySource() call in a SConscript need to be embedded into the M5 8837673Snate@binkert.org# library. To do that, we compile the file to byte code, marshal the 88411996Sgabeblack@google.com# byte code, compress it, and then generate a c++ file that 88511988Sandreas.sandberg@arm.com# inserts the result into an array. 8867673Snate@binkert.orgdef embedPyFile(target, source, env): 8875517Snate@binkert.org def c_str(string): 8888596Ssteve.reinhardt@amd.com if string is None: 8895517Snate@binkert.org return "0" 8905517Snate@binkert.org return '"%s"' % string 89111997Sgabeblack@google.com 8925517Snate@binkert.org '''Action function to compile a .py into a code object, marshal 8935517Snate@binkert.org it, compress it, and stick it into an asm file so the code appears 8947673Snate@binkert.org as just bytes with a label in the data section''' 8957673Snate@binkert.org 8967673Snate@binkert.org src = file(str(source[0]), 'r').read() 8975517Snate@binkert.org 89811988Sandreas.sandberg@arm.com pysource = PySource.tnodes[source[0]] 89911997Sgabeblack@google.com compiled = compile(src, pysource.abspath, 'exec') 9008596Ssteve.reinhardt@amd.com marshalled = marshal.dumps(compiled) 9018596Ssteve.reinhardt@amd.com compressed = zlib.compress(marshalled) 9028596Ssteve.reinhardt@amd.com data = compressed 90311988Sandreas.sandberg@arm.com sym = pysource.symname 9048596Ssteve.reinhardt@amd.com 9058596Ssteve.reinhardt@amd.com code = code_formatter() 9068596Ssteve.reinhardt@amd.com code('''\ 9074762Snate@binkert.org#include "sim/init.hh" 9086143Snate@binkert.org 9096143Snate@binkert.orgnamespace { 9106143Snate@binkert.org 9114762Snate@binkert.orgconst uint8_t data_${sym}[] = { 9124762Snate@binkert.org''') 9134762Snate@binkert.org code.indent() 9147756SAli.Saidi@ARM.com step = 16 9158596Ssteve.reinhardt@amd.com for i in xrange(0, len(data), step): 9164762Snate@binkert.org x = array.array('B', data[i:i+step]) 9174762Snate@binkert.org code(''.join('%d,' % d for d in x)) 91810458Sandreas.hansson@arm.com code.dedent() 91910458Sandreas.hansson@arm.com 92010458Sandreas.hansson@arm.com code('''}; 92110458Sandreas.hansson@arm.com 92210458Sandreas.hansson@arm.comEmbeddedPython embedded_${sym}( 92310458Sandreas.hansson@arm.com ${{c_str(pysource.arcname)}}, 92410458Sandreas.hansson@arm.com ${{c_str(pysource.abspath)}}, 92510458Sandreas.hansson@arm.com ${{c_str(pysource.modpath)}}, 92610458Sandreas.hansson@arm.com data_${sym}, 92710458Sandreas.hansson@arm.com ${{len(data)}}, 92810458Sandreas.hansson@arm.com ${{len(marshalled)}}); 92910458Sandreas.hansson@arm.com 93010458Sandreas.hansson@arm.com} // anonymous namespace 93110458Sandreas.hansson@arm.com''') 93210458Sandreas.hansson@arm.com code.write(str(target[0])) 93310458Sandreas.hansson@arm.com 93410458Sandreas.hansson@arm.comfor source in PySource.all: 93510458Sandreas.hansson@arm.com env.Command(source.cpp, source.tnode, 93610458Sandreas.hansson@arm.com MakeAction(embedPyFile, Transform("EMBED PY"))) 93710458Sandreas.hansson@arm.com Source(source.cpp, skip_no_python=True) 93810458Sandreas.hansson@arm.com 93910458Sandreas.hansson@arm.com######################################################################## 94010458Sandreas.hansson@arm.com# 94110458Sandreas.hansson@arm.com# Define binaries. Each different build type (debug, opt, etc.) gets 94210458Sandreas.hansson@arm.com# a slightly different build environment. 94310458Sandreas.hansson@arm.com# 94410458Sandreas.hansson@arm.com 94510458Sandreas.hansson@arm.com# List of constructed environments to pass back to SConstruct 94610458Sandreas.hansson@arm.comdate_source = Source('base/date.cc', skip_lib=True) 94710458Sandreas.hansson@arm.com 94810458Sandreas.hansson@arm.com# Capture this directory for the closure makeEnv, otherwise when it is 94910458Sandreas.hansson@arm.com# called, it won't know what directory it should use. 95010458Sandreas.hansson@arm.comvariant_dir = Dir('.').path 95110458Sandreas.hansson@arm.comdef variant(*path): 95210458Sandreas.hansson@arm.com return os.path.join(variant_dir, *path) 95310458Sandreas.hansson@arm.comdef variantd(*path): 95410458Sandreas.hansson@arm.com return variant(*path)+'/' 95510458Sandreas.hansson@arm.com 95610458Sandreas.hansson@arm.com# Function to create a new build environment as clone of current 95710458Sandreas.hansson@arm.com# environment 'env' with modified object suffix and optional stripped 95810458Sandreas.hansson@arm.com# binary. Additional keyword arguments are appended to corresponding 95910458Sandreas.hansson@arm.com# build environment vars. 96010458Sandreas.hansson@arm.comdef makeEnv(env, label, objsfx, strip = False, **kwargs): 96110458Sandreas.hansson@arm.com # SCons doesn't know to append a library suffix when there is a '.' in the 96210458Sandreas.hansson@arm.com # name. Use '_' instead. 96310458Sandreas.hansson@arm.com libname = variant('gem5_' + label) 96410458Sandreas.hansson@arm.com exename = variant('gem5.' + label) 96510458Sandreas.hansson@arm.com secondary_exename = variant('m5.' + label) 96610458Sandreas.hansson@arm.com 96710584Sandreas.hansson@arm.com new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's') 96810458Sandreas.hansson@arm.com new_env.Label = label 96910458Sandreas.hansson@arm.com new_env.Append(**kwargs) 97010458Sandreas.hansson@arm.com 97110458Sandreas.hansson@arm.com if env['GCC']: 97210458Sandreas.hansson@arm.com # The address sanitizer is available for gcc >= 4.8 9734762Snate@binkert.org if GetOption('with_asan'): 9746143Snate@binkert.org if GetOption('with_ubsan') and \ 9756143Snate@binkert.org compareVersions(env['GCC_VERSION'], '4.9') >= 0: 9766143Snate@binkert.org new_env.Append(CCFLAGS=['-fsanitize=address,undefined', 9774762Snate@binkert.org '-fno-omit-frame-pointer']) 9784762Snate@binkert.org new_env.Append(LINKFLAGS='-fsanitize=address,undefined') 97911996Sgabeblack@google.com else: 9807816Ssteve.reinhardt@amd.com new_env.Append(CCFLAGS=['-fsanitize=address', 9814762Snate@binkert.org '-fno-omit-frame-pointer']) 9824762Snate@binkert.org new_env.Append(LINKFLAGS='-fsanitize=address') 9834762Snate@binkert.org # Only gcc >= 4.9 supports UBSan, so check both the version 9844762Snate@binkert.org # and the command-line option before adding the compiler and 9857756SAli.Saidi@ARM.com # linker flags. 9868596Ssteve.reinhardt@amd.com elif GetOption('with_ubsan') and \ 9874762Snate@binkert.org compareVersions(env['GCC_VERSION'], '4.9') >= 0: 9884762Snate@binkert.org new_env.Append(CCFLAGS='-fsanitize=undefined') 98911988Sandreas.sandberg@arm.com new_env.Append(LINKFLAGS='-fsanitize=undefined') 99011988Sandreas.sandberg@arm.com 99111988Sandreas.sandberg@arm.com 99211988Sandreas.sandberg@arm.com if env['CLANG']: 99311988Sandreas.sandberg@arm.com # We require clang >= 3.1, so there is no need to check any 99411988Sandreas.sandberg@arm.com # versions here. 99511988Sandreas.sandberg@arm.com if GetOption('with_ubsan'): 99611988Sandreas.sandberg@arm.com if GetOption('with_asan'): 99711988Sandreas.sandberg@arm.com new_env.Append(CCFLAGS=['-fsanitize=address,undefined', 99811988Sandreas.sandberg@arm.com '-fno-omit-frame-pointer']) 99911988Sandreas.sandberg@arm.com new_env.Append(LINKFLAGS='-fsanitize=address,undefined') 10004382Sbinkertn@umich.edu else: 10019396Sandreas.hansson@arm.com new_env.Append(CCFLAGS='-fsanitize=undefined') 10029396Sandreas.hansson@arm.com new_env.Append(LINKFLAGS='-fsanitize=undefined') 10039396Sandreas.hansson@arm.com 10049396Sandreas.hansson@arm.com elif GetOption('with_asan'): 10059396Sandreas.hansson@arm.com new_env.Append(CCFLAGS=['-fsanitize=address', 10069396Sandreas.hansson@arm.com '-fno-omit-frame-pointer']) 10079396Sandreas.hansson@arm.com new_env.Append(LINKFLAGS='-fsanitize=address') 10089396Sandreas.hansson@arm.com 10099396Sandreas.hansson@arm.com werror_env = new_env.Clone() 10109396Sandreas.hansson@arm.com # Treat warnings as errors but white list some warnings that we 10119396Sandreas.hansson@arm.com # want to allow (e.g., deprecation warnings). 10129396Sandreas.hansson@arm.com werror_env.Append(CCFLAGS=['-Werror', 10139396Sandreas.hansson@arm.com '-Wno-error=deprecated-declarations', 101412302Sgabeblack@google.com '-Wno-error=deprecated', 10159396Sandreas.hansson@arm.com ]) 101612563Sgabeblack@google.com 10179396Sandreas.hansson@arm.com def make_obj(source, static, extra_deps = None): 10189396Sandreas.hansson@arm.com '''This function adds the specified source to the correct 10198232Snate@binkert.org build environment, and returns the corresponding SCons Object 10208232Snate@binkert.org nodes''' 10218232Snate@binkert.org 10228232Snate@binkert.org if source.Werror: 10238232Snate@binkert.org env = werror_env 10246229Snate@binkert.org else: 102510455SCurtis.Dunham@arm.com env = new_env 10266229Snate@binkert.org 102710455SCurtis.Dunham@arm.com if static: 102810455SCurtis.Dunham@arm.com obj = env.StaticObject(source.tnode) 102910455SCurtis.Dunham@arm.com else: 10305517Snate@binkert.org obj = env.SharedObject(source.tnode) 10315517Snate@binkert.org 10327673Snate@binkert.org if extra_deps: 10335517Snate@binkert.org env.Depends(obj, extra_deps) 103410455SCurtis.Dunham@arm.com 10355517Snate@binkert.org return obj 10365517Snate@binkert.org 10378232Snate@binkert.org lib_guards = {'main': False, 'skip_lib': False} 103810455SCurtis.Dunham@arm.com 103910455SCurtis.Dunham@arm.com # Without Python, leave out all Python content from the library 104010455SCurtis.Dunham@arm.com # builds. The option doesn't affect gem5 built as a program 10417673Snate@binkert.org if GetOption('without_python'): 10427673Snate@binkert.org lib_guards['skip_no_python'] = False 104310455SCurtis.Dunham@arm.com 104410455SCurtis.Dunham@arm.com static_objs = [] 104510455SCurtis.Dunham@arm.com shared_objs = [] 10465517Snate@binkert.org for s in guarded_source_iterator(Source.source_groups[None], **lib_guards): 104710455SCurtis.Dunham@arm.com static_objs.append(make_obj(s, True)) 104810455SCurtis.Dunham@arm.com shared_objs.append(make_obj(s, False)) 104910455SCurtis.Dunham@arm.com 105010455SCurtis.Dunham@arm.com partial_objs = [] 105110455SCurtis.Dunham@arm.com for group, all_srcs in Source.source_groups.iteritems(): 105210455SCurtis.Dunham@arm.com # If these are the ungrouped source files, skip them. 105310455SCurtis.Dunham@arm.com if not group: 105410455SCurtis.Dunham@arm.com continue 105510685Sandreas.hansson@arm.com 105610455SCurtis.Dunham@arm.com # Get a list of the source files compatible with the current guards. 105710685Sandreas.hansson@arm.com srcs = [ s for s in guarded_source_iterator(all_srcs, **lib_guards) ] 105810455SCurtis.Dunham@arm.com # If there aren't any left, skip this group. 10595517Snate@binkert.org if not srcs: 106010455SCurtis.Dunham@arm.com continue 10618232Snate@binkert.org 10628232Snate@binkert.org # Set up the static partially linked objects. 10635517Snate@binkert.org source_objs = [ make_obj(s, True) for s in srcs ] 10647673Snate@binkert.org file_name = new_env.subst("${OBJPREFIX}lib${OBJSUFFIX}.partial") 10655517Snate@binkert.org target = File(joinpath(group, file_name)) 10668232Snate@binkert.org partial = env.PartialStatic(target=target, source=source_objs) 10678232Snate@binkert.org static_objs.append(partial) 10685517Snate@binkert.org 10698232Snate@binkert.org # Set up the shared partially linked objects. 10708232Snate@binkert.org source_objs = [ make_obj(s, False) for s in srcs ] 10718232Snate@binkert.org file_name = new_env.subst("${SHOBJPREFIX}lib${SHOBJSUFFIX}.partial") 10727673Snate@binkert.org target = File(joinpath(group, file_name)) 10735517Snate@binkert.org partial = env.PartialShared(target=target, source=source_objs) 10745517Snate@binkert.org shared_objs.append(partial) 10757673Snate@binkert.org 10765517Snate@binkert.org static_date = make_obj(date_source, static=True, extra_deps=static_objs) 107710455SCurtis.Dunham@arm.com static_objs.append(static_date) 10785517Snate@binkert.org 10795517Snate@binkert.org shared_date = make_obj(date_source, static=False, extra_deps=shared_objs) 10808232Snate@binkert.org shared_objs.append(shared_date) 10818232Snate@binkert.org 10825517Snate@binkert.org # First make a library of everything but main() so other programs can 10838232Snate@binkert.org # link against m5. 10848232Snate@binkert.org static_lib = new_env.StaticLibrary(libname, static_objs) 10855517Snate@binkert.org shared_lib = new_env.SharedLibrary(libname, shared_objs) 10868232Snate@binkert.org 10878232Snate@binkert.org # Now link a stub with main() and the static library. 10888232Snate@binkert.org main_objs = [ make_obj(s, True) for s in Source.get(main=True) ] 10895517Snate@binkert.org 10908232Snate@binkert.org for test in UnitTest.all: 10918232Snate@binkert.org flags = { test.target : True } 10928232Snate@binkert.org test_sources = Source.get(**flags) 10938232Snate@binkert.org test_objs = [ make_obj(s, static=True) for s in test_sources ] 10948232Snate@binkert.org if test.main: 10958232Snate@binkert.org test_objs += main_objs 10965517Snate@binkert.org path = variant('unittest/%s.%s' % (test.target, label)) 10978232Snate@binkert.org new_env.Program(path, test_objs + static_objs) 10988232Snate@binkert.org 10995517Snate@binkert.org progname = exename 11008232Snate@binkert.org if strip: 11017673Snate@binkert.org progname += '.unstripped' 11025517Snate@binkert.org 11037673Snate@binkert.org targets = new_env.Program(progname, main_objs + static_objs) 11045517Snate@binkert.org 11058232Snate@binkert.org if strip: 11068232Snate@binkert.org if sys.platform == 'sunos5': 11078232Snate@binkert.org cmd = 'cp $SOURCE $TARGET; strip $TARGET' 11085192Ssaidi@eecs.umich.edu else: 110910454SCurtis.Dunham@arm.com cmd = 'strip $SOURCE -o $TARGET' 111010454SCurtis.Dunham@arm.com targets = new_env.Command(exename, progname, 11118232Snate@binkert.org MakeAction(cmd, Transform("STRIP"))) 111210455SCurtis.Dunham@arm.com 111310455SCurtis.Dunham@arm.com new_env.Command(secondary_exename, exename, 111410455SCurtis.Dunham@arm.com MakeAction('ln $SOURCE $TARGET', Transform("HARDLINK"))) 111510455SCurtis.Dunham@arm.com 11165192Ssaidi@eecs.umich.edu new_env.M5Binary = targets[0] 111711077SCurtis.Dunham@arm.com 111811330SCurtis.Dunham@arm.com # Set up regression tests. 111911077SCurtis.Dunham@arm.com SConscript(os.path.join(env.root.abspath, 'tests', 'SConscript'), 112011077SCurtis.Dunham@arm.com variant_dir=variantd('tests', new_env.Label), 112111077SCurtis.Dunham@arm.com exports={ 'env' : new_env }, duplicate=False) 112211330SCurtis.Dunham@arm.com 112311077SCurtis.Dunham@arm.com# Start out with the compiler flags common to all compilers, 11247674Snate@binkert.org# i.e. they all use -g for opt and -g -pg for prof 11255522Snate@binkert.orgccflags = {'debug' : [], 'opt' : ['-g'], 'fast' : [], 'prof' : ['-g', '-pg'], 11265522Snate@binkert.org 'perf' : ['-g']} 11277674Snate@binkert.org 11287674Snate@binkert.org# Start out with the linker flags common to all linkers, i.e. -pg for 11297674Snate@binkert.org# prof, and -lprofiler for perf. The -lprofile flag is surrounded by 11307674Snate@binkert.org# no-as-needed and as-needed as the binutils linker is too clever and 11317674Snate@binkert.org# simply doesn't link to the library otherwise. 11327674Snate@binkert.orgldflags = {'debug' : [], 'opt' : [], 'fast' : [], 'prof' : ['-pg'], 11337674Snate@binkert.org 'perf' : ['-Wl,--no-as-needed', '-lprofiler', '-Wl,--as-needed']} 11347674Snate@binkert.org 11355522Snate@binkert.org# For Link Time Optimization, the optimisation flags used to compile 11365522Snate@binkert.org# individual files are decoupled from those used at link time 11375522Snate@binkert.org# (i.e. you can compile with -O3 and perform LTO with -O0), so we need 11385517Snate@binkert.org# to also update the linker flags based on the target. 11395522Snate@binkert.orgif env['GCC']: 11405517Snate@binkert.org if sys.platform == 'sunos5': 11416143Snate@binkert.org ccflags['debug'] += ['-gstabs+'] 11426727Ssteve.reinhardt@amd.com else: 11435522Snate@binkert.org ccflags['debug'] += ['-ggdb3'] 11445522Snate@binkert.org ldflags['debug'] += ['-O0'] 11455522Snate@binkert.org # opt, fast, prof and perf all share the same cc flags, also add 11467674Snate@binkert.org # the optimization to the ldflags as LTO defers the optimization 11475517Snate@binkert.org # to link time 11487673Snate@binkert.org for target in ['opt', 'fast', 'prof', 'perf']: 11497673Snate@binkert.org ccflags[target] += ['-O3'] 11507674Snate@binkert.org ldflags[target] += ['-O3'] 11517673Snate@binkert.org 11527674Snate@binkert.org ccflags['fast'] += env['LTO_CCFLAGS'] 11537674Snate@binkert.org ldflags['fast'] += env['LTO_LDFLAGS'] 11547674Snate@binkert.orgelif env['CLANG']: 115513576Sciro.santilli@arm.com ccflags['debug'] += ['-g', '-O0'] 115613576Sciro.santilli@arm.com # opt, fast, prof and perf all share the same cc flags 115711308Santhony.gutierrez@amd.com for target in ['opt', 'fast', 'prof', 'perf']: 11587673Snate@binkert.org ccflags[target] += ['-O3'] 11597674Snate@binkert.orgelse: 11607674Snate@binkert.org print 'Unknown compiler, please fix compiler options' 11617674Snate@binkert.org Exit(1) 11627674Snate@binkert.org 11637674Snate@binkert.org 11647674Snate@binkert.org# To speed things up, we only instantiate the build environments we 11657674Snate@binkert.org# need. We try to identify the needed environment for each target; if 11667674Snate@binkert.org# we can't, we fall back on instantiating all the environments just to 11677811Ssteve.reinhardt@amd.com# be safe. 11687674Snate@binkert.orgtarget_types = ['debug', 'opt', 'fast', 'prof', 'perf'] 11697673Snate@binkert.orgobj2target = {'do': 'debug', 'o': 'opt', 'fo': 'fast', 'po': 'prof', 11705522Snate@binkert.org 'gpo' : 'perf'} 11716143Snate@binkert.org 117210453SAndrew.Bardsley@arm.comdef identifyTarget(t): 11737816Ssteve.reinhardt@amd.com ext = t.split('.')[-1] 117412302Sgabeblack@google.com if ext in target_types: 11754382Sbinkertn@umich.edu return ext 11764382Sbinkertn@umich.edu if obj2target.has_key(ext): 11774382Sbinkertn@umich.edu return obj2target[ext] 11784382Sbinkertn@umich.edu match = re.search(r'/tests/([^/]+)/', t) 11794382Sbinkertn@umich.edu if match and match.group(1) in target_types: 11804382Sbinkertn@umich.edu return match.group(1) 11814382Sbinkertn@umich.edu return 'all' 11824382Sbinkertn@umich.edu 118312302Sgabeblack@google.comneeded_envs = [identifyTarget(target) for target in BUILD_TARGETS] 11844382Sbinkertn@umich.eduif 'all' in needed_envs: 118512797Sgabeblack@google.com needed_envs += target_types 118612797Sgabeblack@google.com 11872655Sstever@eecs.umich.edudef makeEnvirons(target, source, env): 11882655Sstever@eecs.umich.edu # cause any later Source() calls to be fatal, as a diagnostic. 11892655Sstever@eecs.umich.edu Source.done() 11902655Sstever@eecs.umich.edu 119112063Sgabeblack@google.com # Debug binary 11925601Snate@binkert.org if 'debug' in needed_envs: 11935601Snate@binkert.org makeEnv(env, 'debug', '.do', 119412222Sgabeblack@google.com CCFLAGS = Split(ccflags['debug']), 119512222Sgabeblack@google.com CPPDEFINES = ['DEBUG', 'TRACING_ON=1'], 11965522Snate@binkert.org LINKFLAGS = Split(ldflags['debug'])) 11975863Snate@binkert.org 11985601Snate@binkert.org # Optimized binary 11995601Snate@binkert.org if 'opt' in needed_envs: 12005601Snate@binkert.org makeEnv(env, 'opt', '.o', 120112302Sgabeblack@google.com CCFLAGS = Split(ccflags['opt']), 120210453SAndrew.Bardsley@arm.com CPPDEFINES = ['TRACING_ON=1'], 120311988Sandreas.sandberg@arm.com LINKFLAGS = Split(ldflags['opt'])) 120411988Sandreas.sandberg@arm.com 120510453SAndrew.Bardsley@arm.com # "Fast" binary 120612302Sgabeblack@google.com if 'fast' in needed_envs: 120710453SAndrew.Bardsley@arm.com makeEnv(env, 'fast', '.fo', strip = True, 120811983Sgabeblack@google.com CCFLAGS = Split(ccflags['fast']), 120911983Sgabeblack@google.com CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 121012302Sgabeblack@google.com LINKFLAGS = Split(ldflags['fast'])) 121112302Sgabeblack@google.com 121212362Sgabeblack@google.com # Profiled binary using gprof 121312362Sgabeblack@google.com if 'prof' in needed_envs: 121411983Sgabeblack@google.com makeEnv(env, 'prof', '.po', 121512302Sgabeblack@google.com CCFLAGS = Split(ccflags['prof']), 121612302Sgabeblack@google.com CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 121711983Sgabeblack@google.com LINKFLAGS = Split(ldflags['prof'])) 121811983Sgabeblack@google.com 121911983Sgabeblack@google.com # Profiled binary using google-pprof 122012362Sgabeblack@google.com if 'perf' in needed_envs: 122112362Sgabeblack@google.com makeEnv(env, 'perf', '.gpo', 122212310Sgabeblack@google.com CCFLAGS = Split(ccflags['perf']), 122312063Sgabeblack@google.com CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 122412063Sgabeblack@google.com LINKFLAGS = Split(ldflags['perf'])) 122512063Sgabeblack@google.com 122612310Sgabeblack@google.com# The MakeEnvirons Builder defers the full dependency collection until 122712310Sgabeblack@google.com# after processing the ISA definition (due to dynamically generated 122812063Sgabeblack@google.com# source files). Add this dependency to all targets so they will wait 122912063Sgabeblack@google.com# until the environments are completely set up. Otherwise, a second 123011983Sgabeblack@google.com# process (e.g. -j2 or higher) will try to compile the requested target, 123111983Sgabeblack@google.com# not know how, and fail. 123211983Sgabeblack@google.comenv.Append(BUILDERS = {'MakeEnvirons' : 123312310Sgabeblack@google.com Builder(action=MakeAction(makeEnvirons, 123412310Sgabeblack@google.com Transform("ENVIRONS", 1)))}) 123511983Sgabeblack@google.com 123611983Sgabeblack@google.comisa_target = env['PHONY_BASE'] + '-deps' 123711983Sgabeblack@google.comenvirons = env['PHONY_BASE'] + '-environs' 123811983Sgabeblack@google.comenv.Depends('#all-deps', isa_target) 123912310Sgabeblack@google.comenv.Depends('#all-environs', environs) 124012310Sgabeblack@google.comenv.ScanISA(isa_target, File('arch/%s/generated/inc.d' % env['TARGET_ISA'])) 12416143Snate@binkert.orgenvSetup = env.MakeEnvirons(environs, isa_target) 124212362Sgabeblack@google.com 124312306Sgabeblack@google.com# make sure no -deps targets occur before all ISAs are complete 124412310Sgabeblack@google.comenv.Depends(isa_target, '#all-isas') 124510453SAndrew.Bardsley@arm.com# likewise for -environs targets and all the -deps targets 124612362Sgabeblack@google.comenv.Depends(environs, '#all-deps') 124712306Sgabeblack@google.com