SConscript revision 9048
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 sys 38955SN/Aimport zlib 392665Ssaidi@eecs.umich.edu 404762Snate@binkert.orgfrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath 41955SN/A 4212563Sgabeblack@google.comimport SCons 4312563Sgabeblack@google.com 445522Snate@binkert.org# This file defines how to build a particular configuration of gem5 456143Snate@binkert.org# based on variable settings in the 'env' build environment. 4612371Sgabeblack@google.com 474762Snate@binkert.orgImport('*') 485522Snate@binkert.org 49955SN/A# Children need to see the environment 505522Snate@binkert.orgExport('env') 5111974Sgabeblack@google.com 52955SN/Abuild_env = [(opt, env[opt]) for opt in export_vars] 535522Snate@binkert.org 544202Sbinkertn@umich.edufrom m5.util import code_formatter, compareVersions 555742Snate@binkert.org 56955SN/A######################################################################## 574381Sbinkertn@umich.edu# Code for adding source files of various types 584381Sbinkertn@umich.edu# 5912246Sgabeblack@google.com# When specifying a source file of some type, a set of guards can be 6012246Sgabeblack@google.com# specified for that file. When get() is used to find the files, if 618334Snate@binkert.org# get specifies a set of filters, only files that match those filters 62955SN/A# will be accepted (unspecified filters on files are assumed to be 63955SN/A# false). Current filters are: 644202Sbinkertn@umich.edu# main -- specifies the gem5 main() function 65955SN/A# skip_lib -- do not put this file into the gem5 library 664382Sbinkertn@umich.edu# <unittest> -- unit tests use filters based on the unit test name 674382Sbinkertn@umich.edu# 684382Sbinkertn@umich.edu# A parent can now be specified for a source file and default filter 696654Snate@binkert.org# values will be retrieved recursively from parents (children override 705517Snate@binkert.org# parents). 718614Sgblack@eecs.umich.edu# 727674Snate@binkert.orgclass SourceMeta(type): 736143Snate@binkert.org '''Meta class for source files that keeps track of all files of a 746143Snate@binkert.org particular type and has a get function for finding all functions 756143Snate@binkert.org of a certain type that match a set of guards''' 7612302Sgabeblack@google.com def __init__(cls, name, bases, dict): 7712302Sgabeblack@google.com super(SourceMeta, cls).__init__(name, bases, dict) 7812302Sgabeblack@google.com cls.all = [] 7912371Sgabeblack@google.com 8012371Sgabeblack@google.com def get(cls, **guards): 8112371Sgabeblack@google.com '''Find all files that match the specified guards. If a source 8212371Sgabeblack@google.com file does not specify a flag, the default is False''' 8312371Sgabeblack@google.com for src in cls.all: 8412371Sgabeblack@google.com for flag,value in guards.iteritems(): 8512371Sgabeblack@google.com # if the flag is found and has a different value, skip 8612371Sgabeblack@google.com # this file 8712371Sgabeblack@google.com if src.all_guards.get(flag, False) != value: 8812371Sgabeblack@google.com break 8912371Sgabeblack@google.com else: 9012371Sgabeblack@google.com yield src 9112371Sgabeblack@google.com 9212371Sgabeblack@google.comclass SourceFile(object): 9312371Sgabeblack@google.com '''Base object that encapsulates the notion of a source file. 9412371Sgabeblack@google.com This includes, the source node, target node, various manipulations 9512371Sgabeblack@google.com of those. A source file also specifies a set of guards which 9612371Sgabeblack@google.com describing which builds the source file applies to. A parent can 9712371Sgabeblack@google.com also be specified to get default guards from''' 9812371Sgabeblack@google.com __metaclass__ = SourceMeta 9912371Sgabeblack@google.com def __init__(self, source, parent=None, **guards): 10012371Sgabeblack@google.com self.guards = guards 10112371Sgabeblack@google.com self.parent = parent 10212371Sgabeblack@google.com 10312371Sgabeblack@google.com tnode = source 10412371Sgabeblack@google.com if not isinstance(source, SCons.Node.FS.File): 10512371Sgabeblack@google.com tnode = File(source) 10612371Sgabeblack@google.com 10712371Sgabeblack@google.com self.tnode = tnode 10812371Sgabeblack@google.com self.snode = tnode.srcnode() 10912371Sgabeblack@google.com 11012371Sgabeblack@google.com for base in type(self).__mro__: 11112371Sgabeblack@google.com if issubclass(base, SourceFile): 11212371Sgabeblack@google.com base.all.append(self) 11312371Sgabeblack@google.com 11412371Sgabeblack@google.com @property 11512371Sgabeblack@google.com def filename(self): 11612371Sgabeblack@google.com return str(self.tnode) 11712371Sgabeblack@google.com 11812371Sgabeblack@google.com @property 11912371Sgabeblack@google.com def dirname(self): 12012371Sgabeblack@google.com return dirname(self.filename) 12112371Sgabeblack@google.com 12212371Sgabeblack@google.com @property 12312371Sgabeblack@google.com def basename(self): 12412371Sgabeblack@google.com return basename(self.filename) 12512371Sgabeblack@google.com 12612302Sgabeblack@google.com @property 12712371Sgabeblack@google.com def extname(self): 12812302Sgabeblack@google.com index = self.basename.rfind('.') 12912371Sgabeblack@google.com if index <= 0: 13012302Sgabeblack@google.com # dot files aren't extensions 13112302Sgabeblack@google.com return self.basename, None 13212371Sgabeblack@google.com 13312371Sgabeblack@google.com return self.basename[:index], self.basename[index+1:] 13412371Sgabeblack@google.com 13512371Sgabeblack@google.com @property 13612302Sgabeblack@google.com def all_guards(self): 13712371Sgabeblack@google.com '''find all guards for this object getting default values 13812371Sgabeblack@google.com recursively from its parents''' 13912371Sgabeblack@google.com guards = {} 14012371Sgabeblack@google.com if self.parent: 14111983Sgabeblack@google.com guards.update(self.parent.guards) 1426143Snate@binkert.org guards.update(self.guards) 1438233Snate@binkert.org return guards 14412302Sgabeblack@google.com 1456143Snate@binkert.org def __lt__(self, other): return self.filename < other.filename 1466143Snate@binkert.org def __le__(self, other): return self.filename <= other.filename 14712302Sgabeblack@google.com def __gt__(self, other): return self.filename > other.filename 1484762Snate@binkert.org def __ge__(self, other): return self.filename >= other.filename 1496143Snate@binkert.org def __eq__(self, other): return self.filename == other.filename 1508233Snate@binkert.org def __ne__(self, other): return self.filename != other.filename 1518233Snate@binkert.org 15212302Sgabeblack@google.comclass Source(SourceFile): 15312302Sgabeblack@google.com '''Add a c/c++ source file to the build''' 1546143Snate@binkert.org def __init__(self, source, Werror=True, swig=False, **guards): 15512362Sgabeblack@google.com '''specify the source file, and any guards''' 15612362Sgabeblack@google.com super(Source, self).__init__(source, **guards) 15712362Sgabeblack@google.com 15812362Sgabeblack@google.com self.Werror = Werror 15912302Sgabeblack@google.com self.swig = swig 16012302Sgabeblack@google.com 16112302Sgabeblack@google.comclass PySource(SourceFile): 16212302Sgabeblack@google.com '''Add a python source file to the named package''' 16312302Sgabeblack@google.com invalid_sym_char = re.compile('[^A-z0-9_]') 16412363Sgabeblack@google.com modules = {} 16512363Sgabeblack@google.com tnodes = {} 16612363Sgabeblack@google.com symnames = {} 16712363Sgabeblack@google.com 16812302Sgabeblack@google.com def __init__(self, package, source, **guards): 16912363Sgabeblack@google.com '''specify the python package, the source file, and any guards''' 17012363Sgabeblack@google.com super(PySource, self).__init__(source, **guards) 17112363Sgabeblack@google.com 17212363Sgabeblack@google.com modname,ext = self.extname 17312363Sgabeblack@google.com assert ext == 'py' 1748233Snate@binkert.org 1756143Snate@binkert.org if package: 1766143Snate@binkert.org path = package.split('.') 1776143Snate@binkert.org else: 1786143Snate@binkert.org path = [] 1796143Snate@binkert.org 1806143Snate@binkert.org modpath = path[:] 1816143Snate@binkert.org if modname != '__init__': 1826143Snate@binkert.org modpath += [ modname ] 1836143Snate@binkert.org modpath = '.'.join(modpath) 1847065Snate@binkert.org 1856143Snate@binkert.org arcpath = path + [ self.basename ] 18612362Sgabeblack@google.com abspath = self.snode.abspath 18712362Sgabeblack@google.com if not exists(abspath): 18812362Sgabeblack@google.com abspath = self.tnode.abspath 18912362Sgabeblack@google.com 19012362Sgabeblack@google.com self.package = package 19112362Sgabeblack@google.com self.modname = modname 19212362Sgabeblack@google.com self.modpath = modpath 19312362Sgabeblack@google.com self.arcname = joinpath(*arcpath) 19412362Sgabeblack@google.com self.abspath = abspath 19512362Sgabeblack@google.com self.compiled = File(self.filename + 'c') 19612362Sgabeblack@google.com self.cpp = File(self.filename + '.cc') 19712362Sgabeblack@google.com self.symname = PySource.invalid_sym_char.sub('_', modpath) 1988233Snate@binkert.org 1998233Snate@binkert.org PySource.modules[modpath] = self 2008233Snate@binkert.org PySource.tnodes[self.tnode] = self 2018233Snate@binkert.org PySource.symnames[self.symname] = self 2028233Snate@binkert.org 2038233Snate@binkert.orgclass SimObject(PySource): 2048233Snate@binkert.org '''Add a SimObject python file as a python source object and add 2058233Snate@binkert.org it to a list of sim object modules''' 2068233Snate@binkert.org 2078233Snate@binkert.org fixed = False 2088233Snate@binkert.org modnames = [] 2098233Snate@binkert.org 2108233Snate@binkert.org def __init__(self, source, **guards): 2118233Snate@binkert.org '''Specify the source file and any guards (automatically in 2128233Snate@binkert.org the m5.objects package)''' 2138233Snate@binkert.org super(SimObject, self).__init__('m5.objects', source, **guards) 2148233Snate@binkert.org if self.fixed: 2158233Snate@binkert.org raise AttributeError, "Too late to call SimObject now." 2168233Snate@binkert.org 2178233Snate@binkert.org bisect.insort_right(SimObject.modnames, self.modname) 2188233Snate@binkert.org 2196143Snate@binkert.orgclass SwigSource(SourceFile): 2206143Snate@binkert.org '''Add a swig file to build''' 2216143Snate@binkert.org 2226143Snate@binkert.org def __init__(self, package, source, **guards): 2236143Snate@binkert.org '''Specify the python package, the source file, and any guards''' 2246143Snate@binkert.org super(SwigSource, self).__init__(source, **guards) 2259982Satgutier@umich.edu 22613576Sciro.santilli@arm.com modname,ext = self.extname 22713576Sciro.santilli@arm.com assert ext == 'i' 22813576Sciro.santilli@arm.com 22913576Sciro.santilli@arm.com self.module = modname 23013576Sciro.santilli@arm.com cc_file = joinpath(self.dirname, modname + '_wrap.cc') 23113576Sciro.santilli@arm.com py_file = joinpath(self.dirname, modname + '.py') 23213576Sciro.santilli@arm.com 23313576Sciro.santilli@arm.com self.cc_source = Source(cc_file, swig=True, parent=self) 23413576Sciro.santilli@arm.com self.py_source = PySource(package, py_file, parent=self) 23513576Sciro.santilli@arm.com 23613576Sciro.santilli@arm.comclass UnitTest(object): 23713576Sciro.santilli@arm.com '''Create a UnitTest''' 23813576Sciro.santilli@arm.com 23913576Sciro.santilli@arm.com all = [] 24013576Sciro.santilli@arm.com def __init__(self, target, *sources, **kwargs): 24113576Sciro.santilli@arm.com '''Specify the target name and any sources. Sources that are 24213576Sciro.santilli@arm.com not SourceFiles are evalued with Source(). All files are 24313576Sciro.santilli@arm.com guarded with a guard of the same name as the UnitTest 24413576Sciro.santilli@arm.com target.''' 24513576Sciro.santilli@arm.com 24613576Sciro.santilli@arm.com srcs = [] 24713576Sciro.santilli@arm.com for src in sources: 24813576Sciro.santilli@arm.com if not isinstance(src, SourceFile): 24913576Sciro.santilli@arm.com src = Source(src, skip_lib=True) 25013576Sciro.santilli@arm.com src.guards[target] = True 25113576Sciro.santilli@arm.com srcs.append(src) 25213576Sciro.santilli@arm.com 25313576Sciro.santilli@arm.com self.sources = srcs 25413576Sciro.santilli@arm.com self.target = target 25513576Sciro.santilli@arm.com self.main = kwargs.get('main', False) 25613576Sciro.santilli@arm.com UnitTest.all.append(self) 25713576Sciro.santilli@arm.com 25813630Sciro.santilli@arm.com# Children should have access 25913630Sciro.santilli@arm.comExport('Source') 26013576Sciro.santilli@arm.comExport('PySource') 26113576Sciro.santilli@arm.comExport('SimObject') 26213576Sciro.santilli@arm.comExport('SwigSource') 26313576Sciro.santilli@arm.comExport('UnitTest') 26413576Sciro.santilli@arm.com 26513576Sciro.santilli@arm.com######################################################################## 26613576Sciro.santilli@arm.com# 26713576Sciro.santilli@arm.com# Debug Flags 26813576Sciro.santilli@arm.com# 26913576Sciro.santilli@arm.comdebug_flags = {} 27013576Sciro.santilli@arm.comdef DebugFlag(name, desc=None): 27113576Sciro.santilli@arm.com if name in debug_flags: 27213576Sciro.santilli@arm.com raise AttributeError, "Flag %s already specified" % name 27313576Sciro.santilli@arm.com debug_flags[name] = (name, (), desc) 27413576Sciro.santilli@arm.com 27513576Sciro.santilli@arm.comdef CompoundFlag(name, flags, desc=None): 27613576Sciro.santilli@arm.com if name in debug_flags: 27713576Sciro.santilli@arm.com raise AttributeError, "Flag %s already specified" % name 27813576Sciro.santilli@arm.com 27913576Sciro.santilli@arm.com compound = tuple(flags) 28013576Sciro.santilli@arm.com debug_flags[name] = (name, compound, desc) 28113576Sciro.santilli@arm.com 28213576Sciro.santilli@arm.comExport('DebugFlag') 28313576Sciro.santilli@arm.comExport('CompoundFlag') 28413576Sciro.santilli@arm.com 28513576Sciro.santilli@arm.com######################################################################## 28613576Sciro.santilli@arm.com# 28713576Sciro.santilli@arm.com# Set some compiler variables 28813576Sciro.santilli@arm.com# 28913576Sciro.santilli@arm.com 29013576Sciro.santilli@arm.com# Include file paths are rooted in this directory. SCons will 29113576Sciro.santilli@arm.com# automatically expand '.' to refer to both the source directory and 29213576Sciro.santilli@arm.com# the corresponding build directory to pick up generated include 29313576Sciro.santilli@arm.com# files. 29413576Sciro.santilli@arm.comenv.Append(CPPPATH=Dir('.')) 29513576Sciro.santilli@arm.com 29613576Sciro.santilli@arm.comfor extra_dir in extras_dir_list: 29713577Sciro.santilli@arm.com env.Append(CPPPATH=Dir(extra_dir)) 29813577Sciro.santilli@arm.com 29913577Sciro.santilli@arm.com# Workaround for bug in SCons version > 0.97d20071212 3006143Snate@binkert.org# Scons bug id: 2006 gem5 Bug id: 308 30112302Sgabeblack@google.comfor root, dirs, files in os.walk(base_dir, topdown=True): 30212302Sgabeblack@google.com Dir(root[len(base_dir) + 1:]) 30312302Sgabeblack@google.com 30412302Sgabeblack@google.com######################################################################## 30512302Sgabeblack@google.com# 30612302Sgabeblack@google.com# Walk the tree and execute all SConscripts in subdirectories 30712302Sgabeblack@google.com# 30812302Sgabeblack@google.com 30911983Sgabeblack@google.comhere = Dir('.').srcnode().abspath 31011983Sgabeblack@google.comfor root, dirs, files in os.walk(base_dir, topdown=True): 31111983Sgabeblack@google.com if root == here: 31212302Sgabeblack@google.com # we don't want to recurse back into this SConscript 31312302Sgabeblack@google.com continue 31412302Sgabeblack@google.com 31512302Sgabeblack@google.com if 'SConscript' in files: 31612302Sgabeblack@google.com build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:]) 31712302Sgabeblack@google.com SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir) 31811983Sgabeblack@google.com 3196143Snate@binkert.orgfor extra_dir in extras_dir_list: 32012305Sgabeblack@google.com prefix_len = len(dirname(extra_dir)) + 1 32112302Sgabeblack@google.com for root, dirs, files in os.walk(extra_dir, topdown=True): 32212302Sgabeblack@google.com # if build lives in the extras directory, don't walk down it 32312302Sgabeblack@google.com if 'build' in dirs: 3246143Snate@binkert.org dirs.remove('build') 3256143Snate@binkert.org 3266143Snate@binkert.org if 'SConscript' in files: 3275522Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[prefix_len:]) 3286143Snate@binkert.org SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir) 3296143Snate@binkert.org 3306143Snate@binkert.orgfor opt in export_vars: 3319982Satgutier@umich.edu env.ConfigFile(opt) 33212302Sgabeblack@google.com 33312302Sgabeblack@google.comdef makeTheISA(source, target, env): 33412302Sgabeblack@google.com isas = [ src.get_contents() for src in source ] 3356143Snate@binkert.org target_isa = env['TARGET_ISA'] 3366143Snate@binkert.org def define(isa): 3376143Snate@binkert.org return isa.upper() + '_ISA' 3386143Snate@binkert.org 3395522Snate@binkert.org def namespace(isa): 3405522Snate@binkert.org return isa[0].upper() + isa[1:].lower() + 'ISA' 3415522Snate@binkert.org 3425522Snate@binkert.org 3435604Snate@binkert.org code = code_formatter() 3445604Snate@binkert.org code('''\ 3456143Snate@binkert.org#ifndef __CONFIG_THE_ISA_HH__ 3466143Snate@binkert.org#define __CONFIG_THE_ISA_HH__ 3474762Snate@binkert.org 3484762Snate@binkert.org''') 3496143Snate@binkert.org 3506727Ssteve.reinhardt@amd.com for i,isa in enumerate(isas): 3516727Ssteve.reinhardt@amd.com code('#define $0 $1', define(isa), i + 1) 3526727Ssteve.reinhardt@amd.com 3534762Snate@binkert.org code(''' 3546143Snate@binkert.org 3556143Snate@binkert.org#define THE_ISA ${{define(target_isa)}} 3566143Snate@binkert.org#define TheISA ${{namespace(target_isa)}} 3576143Snate@binkert.org#define THE_ISA_STR "${{target_isa}}" 3586727Ssteve.reinhardt@amd.com 3596143Snate@binkert.org#endif // __CONFIG_THE_ISA_HH__''') 3607674Snate@binkert.org 3617674Snate@binkert.org code.write(str(target[0])) 3625604Snate@binkert.org 3636143Snate@binkert.orgenv.Command('config/the_isa.hh', map(Value, all_isa_list), 3646143Snate@binkert.org MakeAction(makeTheISA, Transform("CFG ISA", 0))) 3656143Snate@binkert.org 3664762Snate@binkert.org######################################################################## 3676143Snate@binkert.org# 3684762Snate@binkert.org# Prevent any SimObjects from being added after this point, they 3694762Snate@binkert.org# should all have been added in the SConscripts above 3704762Snate@binkert.org# 3716143Snate@binkert.orgSimObject.fixed = True 3726143Snate@binkert.org 3734762Snate@binkert.orgclass DictImporter(object): 37412302Sgabeblack@google.com '''This importer takes a dictionary of arbitrary module names that 37512302Sgabeblack@google.com map to arbitrary filenames.''' 3768233Snate@binkert.org def __init__(self, modules): 37712302Sgabeblack@google.com self.modules = modules 3786143Snate@binkert.org self.installed = set() 3796143Snate@binkert.org 3804762Snate@binkert.org def __del__(self): 3816143Snate@binkert.org self.unload() 3824762Snate@binkert.org 3839396Sandreas.hansson@arm.com def unload(self): 3849396Sandreas.hansson@arm.com import sys 3859396Sandreas.hansson@arm.com for module in self.installed: 38612302Sgabeblack@google.com del sys.modules[module] 38712302Sgabeblack@google.com self.installed = set() 38812302Sgabeblack@google.com 3899396Sandreas.hansson@arm.com def find_module(self, fullname, path): 3909396Sandreas.hansson@arm.com if fullname == 'm5.defines': 3919396Sandreas.hansson@arm.com return self 3929396Sandreas.hansson@arm.com 3939396Sandreas.hansson@arm.com if fullname == 'm5.objects': 3949396Sandreas.hansson@arm.com return self 3959396Sandreas.hansson@arm.com 3969930Sandreas.hansson@arm.com if fullname.startswith('m5.internal'): 3979930Sandreas.hansson@arm.com return None 3989396Sandreas.hansson@arm.com 3996143Snate@binkert.org source = self.modules.get(fullname, None) 40012797Sgabeblack@google.com if source is not None and fullname.startswith('m5.objects'): 40112797Sgabeblack@google.com return self 40212797Sgabeblack@google.com 4038235Snate@binkert.org return None 40412797Sgabeblack@google.com 40512797Sgabeblack@google.com def load_module(self, fullname): 40612797Sgabeblack@google.com mod = imp.new_module(fullname) 40712797Sgabeblack@google.com sys.modules[fullname] = mod 40812797Sgabeblack@google.com self.installed.add(fullname) 40912797Sgabeblack@google.com 41012797Sgabeblack@google.com mod.__loader__ = self 41112797Sgabeblack@google.com if fullname == 'm5.objects': 41212797Sgabeblack@google.com mod.__path__ = fullname.split('.') 41312797Sgabeblack@google.com return mod 41412797Sgabeblack@google.com 41512797Sgabeblack@google.com if fullname == 'm5.defines': 41612797Sgabeblack@google.com mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env) 41712797Sgabeblack@google.com return mod 41812797Sgabeblack@google.com 41912757Sgabeblack@google.com source = self.modules[fullname] 42012757Sgabeblack@google.com if source.modname == '__init__': 42112797Sgabeblack@google.com mod.__path__ = source.modpath 42212797Sgabeblack@google.com mod.__file__ = source.abspath 42312797Sgabeblack@google.com 42412757Sgabeblack@google.com exec file(source.abspath, 'r') in mod.__dict__ 42512757Sgabeblack@google.com 42612757Sgabeblack@google.com return mod 42712757Sgabeblack@google.com 4288235Snate@binkert.orgimport m5.SimObject 42912302Sgabeblack@google.comimport m5.params 4308235Snate@binkert.orgfrom m5.util import code_formatter 4318235Snate@binkert.org 43212757Sgabeblack@google.comm5.SimObject.clear() 4338235Snate@binkert.orgm5.params.clear() 4348235Snate@binkert.org 4358235Snate@binkert.org# install the python importer so we can grab stuff from the source 43612757Sgabeblack@google.com# tree itself. We can't have SimObjects added after this point or 43712313Sgabeblack@google.com# else we won't know about them for the rest of the stuff. 43812797Sgabeblack@google.comimporter = DictImporter(PySource.modules) 43912797Sgabeblack@google.comsys.meta_path[0:0] = [ importer ] 44012797Sgabeblack@google.com 44112797Sgabeblack@google.com# import all sim objects so we can populate the all_objects list 44212797Sgabeblack@google.com# make sure that we're working with a list, then let's sort it 44312797Sgabeblack@google.comfor modname in SimObject.modnames: 44412797Sgabeblack@google.com exec('from m5.objects import %s' % modname) 44512797Sgabeblack@google.com 44612797Sgabeblack@google.com# we need to unload all of the currently imported modules so that they 44712797Sgabeblack@google.com# will be re-imported the next time the sconscript is run 44812797Sgabeblack@google.comimporter.unload() 44912797Sgabeblack@google.comsys.meta_path.remove(importer) 45012797Sgabeblack@google.com 45112797Sgabeblack@google.comsim_objects = m5.SimObject.allClasses 45212797Sgabeblack@google.comall_enums = m5.params.allEnums 45312797Sgabeblack@google.com 45412797Sgabeblack@google.com# Find param types that need to be explicitly wrapped with swig. 45512797Sgabeblack@google.com# These will be recognized because the ParamDesc will have a 45612797Sgabeblack@google.com# swig_decl() method. Most param types are based on types that don't 45712797Sgabeblack@google.com# need this, either because they're based on native types (like Int) 45812797Sgabeblack@google.com# or because they're SimObjects (which get swigged independently). 45912797Sgabeblack@google.com# For now the only things handled here are VectorParam types. 46012797Sgabeblack@google.comparams_to_swig = {} 46112797Sgabeblack@google.comfor name,obj in sorted(sim_objects.iteritems()): 46212797Sgabeblack@google.com for param in obj._params.local.values(): 46312797Sgabeblack@google.com # load the ptype attribute now because it depends on the 46412797Sgabeblack@google.com # current version of SimObject.allClasses, but when scons 46512797Sgabeblack@google.com # actually uses the value, all versions of 46612797Sgabeblack@google.com # SimObject.allClasses will have been loaded 46712797Sgabeblack@google.com param.ptype 46812797Sgabeblack@google.com 46912797Sgabeblack@google.com if not hasattr(param, 'swig_decl'): 47012797Sgabeblack@google.com continue 47112797Sgabeblack@google.com pname = param.ptype_str 47212797Sgabeblack@google.com if pname not in params_to_swig: 47312797Sgabeblack@google.com params_to_swig[pname] = param 47412797Sgabeblack@google.com 47512797Sgabeblack@google.com######################################################################## 47612797Sgabeblack@google.com# 47712797Sgabeblack@google.com# calculate extra dependencies 47812797Sgabeblack@google.com# 47912797Sgabeblack@google.commodule_depends = ["m5", "m5.SimObject", "m5.params"] 48012797Sgabeblack@google.comdepends = [ PySource.modules[dep].snode for dep in module_depends ] 48112797Sgabeblack@google.com 48212313Sgabeblack@google.com######################################################################## 48312313Sgabeblack@google.com# 48412797Sgabeblack@google.com# Commands for the basic automatically generated python files 48512797Sgabeblack@google.com# 48612797Sgabeblack@google.com 48712371Sgabeblack@google.com# Generate Python file containing a dict specifying the current 4885584Snate@binkert.org# buildEnv flags. 48912797Sgabeblack@google.comdef makeDefinesPyFile(target, source, env): 49012797Sgabeblack@google.com build_env = source[0].get_contents() 49112797Sgabeblack@google.com 49212797Sgabeblack@google.com code = code_formatter() 49312797Sgabeblack@google.com code(""" 49412797Sgabeblack@google.comimport m5.internal 49512797Sgabeblack@google.comimport m5.util 49612797Sgabeblack@google.com 49712797Sgabeblack@google.combuildEnv = m5.util.SmartDict($build_env) 49812797Sgabeblack@google.com 49912797Sgabeblack@google.comcompileDate = m5.internal.core.compileDate 50012797Sgabeblack@google.com_globals = globals() 50112797Sgabeblack@google.comfor key,val in m5.internal.core.__dict__.iteritems(): 50212797Sgabeblack@google.com if key.startswith('flag_'): 50312797Sgabeblack@google.com flag = key[5:] 50412797Sgabeblack@google.com _globals[flag] = val 50512797Sgabeblack@google.comdel _globals 50612797Sgabeblack@google.com""") 50712797Sgabeblack@google.com code.write(target[0].abspath) 50812797Sgabeblack@google.com 50912797Sgabeblack@google.comdefines_info = Value(build_env) 51012797Sgabeblack@google.com# Generate a file with all of the compile options in it 51112797Sgabeblack@google.comenv.Command('python/m5/defines.py', defines_info, 51212797Sgabeblack@google.com MakeAction(makeDefinesPyFile, Transform("DEFINES", 0))) 51312797Sgabeblack@google.comPySource('m5', 'python/m5/defines.py') 51412797Sgabeblack@google.com 51512797Sgabeblack@google.com# Generate python file containing info about the M5 source code 51612797Sgabeblack@google.comdef makeInfoPyFile(target, source, env): 51712797Sgabeblack@google.com code = code_formatter() 51812797Sgabeblack@google.com for src in source: 51912797Sgabeblack@google.com data = ''.join(file(src.srcnode().abspath, 'r').xreadlines()) 52012797Sgabeblack@google.com code('$src = ${{repr(data)}}') 52112797Sgabeblack@google.com code.write(str(target[0])) 52212797Sgabeblack@google.com 52312797Sgabeblack@google.com# Generate a file that wraps the basic top level files 52412797Sgabeblack@google.comenv.Command('python/m5/info.py', 52512797Sgabeblack@google.com [ '#/COPYING', '#/LICENSE', '#/README', ], 52612797Sgabeblack@google.com MakeAction(makeInfoPyFile, Transform("INFO"))) 5274382Sbinkertn@umich.eduPySource('m5', 'python/m5/info.py') 52813576Sciro.santilli@arm.com 52913577Sciro.santilli@arm.com######################################################################## 5304202Sbinkertn@umich.edu# 5314382Sbinkertn@umich.edu# Create all of the SimObject param headers and enum headers 5324382Sbinkertn@umich.edu# 5339396Sandreas.hansson@arm.com 53412797Sgabeblack@google.comdef createSimObjectParamStruct(target, source, env): 5355584Snate@binkert.org assert len(target) == 1 and len(source) == 1 53612313Sgabeblack@google.com 5374382Sbinkertn@umich.edu name = str(source[0].get_contents()) 5384382Sbinkertn@umich.edu obj = sim_objects[name] 5394382Sbinkertn@umich.edu 5408232Snate@binkert.org code = code_formatter() 5415192Ssaidi@eecs.umich.edu obj.cxx_param_decl(code) 5428232Snate@binkert.org code.write(target[0].abspath) 5438232Snate@binkert.org 5448232Snate@binkert.orgdef createParamSwigWrapper(target, source, env): 5455192Ssaidi@eecs.umich.edu assert len(target) == 1 and len(source) == 1 5468232Snate@binkert.org 5475192Ssaidi@eecs.umich.edu name = str(source[0].get_contents()) 5485799Snate@binkert.org param = params_to_swig[name] 5498232Snate@binkert.org 5505192Ssaidi@eecs.umich.edu code = code_formatter() 5515192Ssaidi@eecs.umich.edu param.swig_decl(code) 5525192Ssaidi@eecs.umich.edu code.write(target[0].abspath) 5538232Snate@binkert.org 5545192Ssaidi@eecs.umich.edudef createEnumStrings(target, source, env): 5558232Snate@binkert.org assert len(target) == 1 and len(source) == 1 5565192Ssaidi@eecs.umich.edu 5575192Ssaidi@eecs.umich.edu name = str(source[0].get_contents()) 5585192Ssaidi@eecs.umich.edu obj = all_enums[name] 5595192Ssaidi@eecs.umich.edu 5604382Sbinkertn@umich.edu code = code_formatter() 5614382Sbinkertn@umich.edu obj.cxx_def(code) 5624382Sbinkertn@umich.edu code.write(target[0].abspath) 5632667Sstever@eecs.umich.edu 5642667Sstever@eecs.umich.edudef createEnumDecls(target, source, env): 5652667Sstever@eecs.umich.edu assert len(target) == 1 and len(source) == 1 5662667Sstever@eecs.umich.edu 5672667Sstever@eecs.umich.edu name = str(source[0].get_contents()) 5682667Sstever@eecs.umich.edu obj = all_enums[name] 5695742Snate@binkert.org 5705742Snate@binkert.org code = code_formatter() 5715742Snate@binkert.org obj.cxx_decl(code) 5725793Snate@binkert.org code.write(target[0].abspath) 5738334Snate@binkert.org 5745793Snate@binkert.orgdef createEnumSwigWrapper(target, source, env): 5755793Snate@binkert.org assert len(target) == 1 and len(source) == 1 5765793Snate@binkert.org 5774382Sbinkertn@umich.edu name = str(source[0].get_contents()) 5784762Snate@binkert.org obj = all_enums[name] 5795344Sstever@gmail.com 5804382Sbinkertn@umich.edu code = code_formatter() 5815341Sstever@gmail.com obj.swig_decl(code) 5825742Snate@binkert.org code.write(target[0].abspath) 5835742Snate@binkert.org 5845742Snate@binkert.orgdef createSimObjectSwigWrapper(target, source, env): 5855742Snate@binkert.org name = source[0].get_contents() 5865742Snate@binkert.org obj = sim_objects[name] 5874762Snate@binkert.org 5885742Snate@binkert.org code = code_formatter() 5895742Snate@binkert.org obj.swig_decl(code) 59011984Sgabeblack@google.com code.write(target[0].abspath) 5917722Sgblack@eecs.umich.edu 5925742Snate@binkert.org# Generate all of the SimObject param C++ struct header files 5935742Snate@binkert.orgparams_hh_files = [] 5945742Snate@binkert.orgfor name,simobj in sorted(sim_objects.iteritems()): 5959930Sandreas.hansson@arm.com py_source = PySource.modules[simobj.__module__] 5969930Sandreas.hansson@arm.com extra_deps = [ py_source.tnode ] 5979930Sandreas.hansson@arm.com 5989930Sandreas.hansson@arm.com hh_file = File('params/%s.hh' % name) 5999930Sandreas.hansson@arm.com params_hh_files.append(hh_file) 6005742Snate@binkert.org env.Command(hh_file, Value(name), 6018242Sbradley.danofsky@amd.com MakeAction(createSimObjectParamStruct, Transform("SO PARAM"))) 6028242Sbradley.danofsky@amd.com env.Depends(hh_file, depends + extra_deps) 6038242Sbradley.danofsky@amd.com 6048242Sbradley.danofsky@amd.com# Generate any needed param SWIG wrapper files 6055341Sstever@gmail.comparams_i_files = [] 6065742Snate@binkert.orgfor name,param in params_to_swig.iteritems(): 6077722Sgblack@eecs.umich.edu i_file = File('python/m5/internal/%s.i' % (param.swig_module_name())) 6084773Snate@binkert.org params_i_files.append(i_file) 6096108Snate@binkert.org env.Command(i_file, Value(name), 6101858SN/A MakeAction(createParamSwigWrapper, Transform("SW PARAM"))) 6111085SN/A env.Depends(i_file, depends) 6126658Snate@binkert.org SwigSource('m5.internal', i_file) 6136658Snate@binkert.org 6147673Snate@binkert.org# Generate all enum header files 6156658Snate@binkert.orgfor name,enum in sorted(all_enums.iteritems()): 6166658Snate@binkert.org py_source = PySource.modules[enum.__module__] 61711308Santhony.gutierrez@amd.com extra_deps = [ py_source.tnode ] 6186658Snate@binkert.org 61911308Santhony.gutierrez@amd.com cc_file = File('enums/%s.cc' % name) 6206658Snate@binkert.org env.Command(cc_file, Value(name), 6216658Snate@binkert.org MakeAction(createEnumStrings, Transform("ENUM STR"))) 6227673Snate@binkert.org env.Depends(cc_file, depends + extra_deps) 6237673Snate@binkert.org Source(cc_file) 6247673Snate@binkert.org 6257673Snate@binkert.org hh_file = File('enums/%s.hh' % name) 6267673Snate@binkert.org env.Command(hh_file, Value(name), 6277673Snate@binkert.org MakeAction(createEnumDecls, Transform("ENUMDECL"))) 6287673Snate@binkert.org env.Depends(hh_file, depends + extra_deps) 62910467Sandreas.hansson@arm.com 6306658Snate@binkert.org i_file = File('python/m5/internal/enum_%s.i' % name) 6317673Snate@binkert.org env.Command(i_file, Value(name), 63210467Sandreas.hansson@arm.com MakeAction(createEnumSwigWrapper, Transform("ENUMSWIG"))) 63310467Sandreas.hansson@arm.com env.Depends(i_file, depends + extra_deps) 63410467Sandreas.hansson@arm.com SwigSource('m5.internal', i_file) 63510467Sandreas.hansson@arm.com 63610467Sandreas.hansson@arm.com# Generate SimObject SWIG wrapper files 63710467Sandreas.hansson@arm.comfor name in sim_objects.iterkeys(): 63810467Sandreas.hansson@arm.com i_file = File('python/m5/internal/param_%s.i' % name) 63910467Sandreas.hansson@arm.com env.Command(i_file, Value(name), 64010467Sandreas.hansson@arm.com MakeAction(createSimObjectSwigWrapper, Transform("SO SWIG"))) 64110467Sandreas.hansson@arm.com env.Depends(i_file, depends) 64210467Sandreas.hansson@arm.com SwigSource('m5.internal', i_file) 6437673Snate@binkert.org 6447673Snate@binkert.org# Generate the main swig init file 6457673Snate@binkert.orgdef makeEmbeddedSwigInit(target, source, env): 6467673Snate@binkert.org code = code_formatter() 6477673Snate@binkert.org module = source[0].get_contents() 6489048SAli.Saidi@ARM.com code('''\ 6497673Snate@binkert.org#include "sim/init.hh" 6507673Snate@binkert.org 6517673Snate@binkert.orgextern "C" { 6527673Snate@binkert.org void init_${module}(); 6536658Snate@binkert.org} 6547756SAli.Saidi@ARM.com 6557816Ssteve.reinhardt@amd.comEmbeddedSwig embed_swig_${module}(init_${module}); 6566658Snate@binkert.org''') 65711308Santhony.gutierrez@amd.com code.write(str(target[0])) 65811308Santhony.gutierrez@amd.com 65911308Santhony.gutierrez@amd.com# Build all swig modules 66011308Santhony.gutierrez@amd.comfor swig in SwigSource.all: 66111308Santhony.gutierrez@amd.com env.Command([swig.cc_source.tnode, swig.py_source.tnode], swig.tnode, 66211308Santhony.gutierrez@amd.com MakeAction('$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} ' 66311308Santhony.gutierrez@amd.com '-o ${TARGETS[0]} $SOURCES', Transform("SWIG"))) 66411308Santhony.gutierrez@amd.com cc_file = str(swig.tnode) 66511308Santhony.gutierrez@amd.com init_file = '%s/%s_init.cc' % (dirname(cc_file), basename(cc_file)) 66611308Santhony.gutierrez@amd.com env.Command(init_file, Value(swig.module), 66711308Santhony.gutierrez@amd.com MakeAction(makeEmbeddedSwigInit, Transform("EMBED SW"))) 66811308Santhony.gutierrez@amd.com Source(init_file, **swig.guards) 66911308Santhony.gutierrez@amd.com 67011308Santhony.gutierrez@amd.com# 67111308Santhony.gutierrez@amd.com# Handle debug flags 67211308Santhony.gutierrez@amd.com# 67311308Santhony.gutierrez@amd.comdef makeDebugFlagCC(target, source, env): 67411308Santhony.gutierrez@amd.com assert(len(target) == 1 and len(source) == 1) 67511308Santhony.gutierrez@amd.com 67611308Santhony.gutierrez@amd.com val = eval(source[0].get_contents()) 67711308Santhony.gutierrez@amd.com name, compound, desc = val 67811308Santhony.gutierrez@amd.com compound = list(sorted(compound)) 67911308Santhony.gutierrez@amd.com 68011308Santhony.gutierrez@amd.com code = code_formatter() 68111308Santhony.gutierrez@amd.com 68211308Santhony.gutierrez@amd.com # file header 68311308Santhony.gutierrez@amd.com code(''' 68411308Santhony.gutierrez@amd.com/* 68511308Santhony.gutierrez@amd.com * DO NOT EDIT THIS FILE! Automatically generated 68611308Santhony.gutierrez@amd.com */ 68711308Santhony.gutierrez@amd.com 68811308Santhony.gutierrez@amd.com#include "base/debug.hh" 68911308Santhony.gutierrez@amd.com''') 69011308Santhony.gutierrez@amd.com 69111308Santhony.gutierrez@amd.com for flag in compound: 69211308Santhony.gutierrez@amd.com code('#include "debug/$flag.hh"') 69311308Santhony.gutierrez@amd.com code() 69411308Santhony.gutierrez@amd.com code('namespace Debug {') 69511308Santhony.gutierrez@amd.com code() 69611308Santhony.gutierrez@amd.com 69711308Santhony.gutierrez@amd.com if not compound: 69811308Santhony.gutierrez@amd.com code('SimpleFlag $name("$name", "$desc");') 69911308Santhony.gutierrez@amd.com else: 70011308Santhony.gutierrez@amd.com code('CompoundFlag $name("$name", "$desc",') 70111308Santhony.gutierrez@amd.com code.indent() 7024382Sbinkertn@umich.edu last = len(compound) - 1 7034382Sbinkertn@umich.edu for i,flag in enumerate(compound): 7044762Snate@binkert.org if i != last: 7054762Snate@binkert.org code('$flag,') 7064762Snate@binkert.org else: 7076654Snate@binkert.org code('$flag);') 7086654Snate@binkert.org code.dedent() 7095517Snate@binkert.org 7105517Snate@binkert.org code() 7115517Snate@binkert.org code('} // namespace Debug') 7125517Snate@binkert.org 7135517Snate@binkert.org code.write(str(target[0])) 7145517Snate@binkert.org 7155517Snate@binkert.orgdef makeDebugFlagHH(target, source, env): 7165517Snate@binkert.org assert(len(target) == 1 and len(source) == 1) 7175517Snate@binkert.org 7185517Snate@binkert.org val = eval(source[0].get_contents()) 7195517Snate@binkert.org name, compound, desc = val 7205517Snate@binkert.org 7215517Snate@binkert.org code = code_formatter() 7225517Snate@binkert.org 7235517Snate@binkert.org # file header boilerplate 7245517Snate@binkert.org code('''\ 7255517Snate@binkert.org/* 7266654Snate@binkert.org * DO NOT EDIT THIS FILE! 7275517Snate@binkert.org * 7285517Snate@binkert.org * Automatically generated by SCons 7295517Snate@binkert.org */ 7305517Snate@binkert.org 7315517Snate@binkert.org#ifndef __DEBUG_${name}_HH__ 73211802Sandreas.sandberg@arm.com#define __DEBUG_${name}_HH__ 7335517Snate@binkert.org 7345517Snate@binkert.orgnamespace Debug { 7356143Snate@binkert.org''') 7366654Snate@binkert.org 7375517Snate@binkert.org if compound: 7385517Snate@binkert.org code('class CompoundFlag;') 7395517Snate@binkert.org code('class SimpleFlag;') 7405517Snate@binkert.org 7415517Snate@binkert.org if compound: 7425517Snate@binkert.org code('extern CompoundFlag $name;') 7435517Snate@binkert.org for flag in compound: 7445517Snate@binkert.org code('extern SimpleFlag $flag;') 7455517Snate@binkert.org else: 7465517Snate@binkert.org code('extern SimpleFlag $name;') 7475517Snate@binkert.org 7485517Snate@binkert.org code(''' 7495517Snate@binkert.org} 7505517Snate@binkert.org 7516654Snate@binkert.org#endif // __DEBUG_${name}_HH__ 7526654Snate@binkert.org''') 7535517Snate@binkert.org 7545517Snate@binkert.org code.write(str(target[0])) 7556143Snate@binkert.org 7566143Snate@binkert.orgfor name,flag in sorted(debug_flags.iteritems()): 7576143Snate@binkert.org n, compound, desc = flag 7586727Ssteve.reinhardt@amd.com assert n == name 7595517Snate@binkert.org 7606727Ssteve.reinhardt@amd.com env.Command('debug/%s.hh' % name, Value(flag), 7615517Snate@binkert.org MakeAction(makeDebugFlagHH, Transform("TRACING", 0))) 7625517Snate@binkert.org env.Command('debug/%s.cc' % name, Value(flag), 7635517Snate@binkert.org MakeAction(makeDebugFlagCC, Transform("TRACING", 0))) 7646654Snate@binkert.org Source('debug/%s.cc' % name) 7656654Snate@binkert.org 7667673Snate@binkert.org# Embed python files. All .py files that have been indicated by a 7676654Snate@binkert.org# PySource() call in a SConscript need to be embedded into the M5 7686654Snate@binkert.org# library. To do that, we compile the file to byte code, marshal the 7696654Snate@binkert.org# byte code, compress it, and then generate a c++ file that 7706654Snate@binkert.org# inserts the result into an array. 7715517Snate@binkert.orgdef embedPyFile(target, source, env): 7725517Snate@binkert.org def c_str(string): 7735517Snate@binkert.org if string is None: 7746143Snate@binkert.org return "0" 7755517Snate@binkert.org return '"%s"' % string 7764762Snate@binkert.org 7775517Snate@binkert.org '''Action function to compile a .py into a code object, marshal 7785517Snate@binkert.org it, compress it, and stick it into an asm file so the code appears 7796143Snate@binkert.org as just bytes with a label in the data section''' 7806143Snate@binkert.org 7815517Snate@binkert.org src = file(str(source[0]), 'r').read() 7825517Snate@binkert.org 7835517Snate@binkert.org pysource = PySource.tnodes[source[0]] 7845517Snate@binkert.org compiled = compile(src, pysource.abspath, 'exec') 7855517Snate@binkert.org marshalled = marshal.dumps(compiled) 7865517Snate@binkert.org compressed = zlib.compress(marshalled) 7875517Snate@binkert.org data = compressed 7885517Snate@binkert.org sym = pysource.symname 7895517Snate@binkert.org 7906143Snate@binkert.org code = code_formatter() 7915517Snate@binkert.org code('''\ 7926654Snate@binkert.org#include "sim/init.hh" 7936654Snate@binkert.org 7946654Snate@binkert.orgnamespace { 7956654Snate@binkert.org 7966654Snate@binkert.orgconst uint8_t data_${sym}[] = { 7976654Snate@binkert.org''') 7984762Snate@binkert.org code.indent() 7994762Snate@binkert.org step = 16 8004762Snate@binkert.org for i in xrange(0, len(data), step): 8014762Snate@binkert.org x = array.array('B', data[i:i+step]) 8024762Snate@binkert.org code(''.join('%d,' % d for d in x)) 8037675Snate@binkert.org code.dedent() 80410584Sandreas.hansson@arm.com 8054762Snate@binkert.org code('''}; 8064762Snate@binkert.org 8074762Snate@binkert.orgEmbeddedPython embedded_${sym}( 8084762Snate@binkert.org ${{c_str(pysource.arcname)}}, 8094382Sbinkertn@umich.edu ${{c_str(pysource.abspath)}}, 8104382Sbinkertn@umich.edu ${{c_str(pysource.modpath)}}, 8115517Snate@binkert.org data_${sym}, 8126654Snate@binkert.org ${{len(data)}}, 8135517Snate@binkert.org ${{len(marshalled)}}); 8148126Sgblack@eecs.umich.edu 8156654Snate@binkert.org} // anonymous namespace 8167673Snate@binkert.org''') 8176654Snate@binkert.org code.write(str(target[0])) 81811802Sandreas.sandberg@arm.com 8196654Snate@binkert.orgfor source in PySource.all: 8206654Snate@binkert.org env.Command(source.cpp, source.tnode, 8216654Snate@binkert.org MakeAction(embedPyFile, Transform("EMBED PY"))) 8226654Snate@binkert.org Source(source.cpp) 82311802Sandreas.sandberg@arm.com 8246669Snate@binkert.org######################################################################## 82511802Sandreas.sandberg@arm.com# 8266669Snate@binkert.org# Define binaries. Each different build type (debug, opt, etc.) gets 8276669Snate@binkert.org# a slightly different build environment. 8286669Snate@binkert.org# 8296669Snate@binkert.org 8306654Snate@binkert.org# List of constructed environments to pass back to SConstruct 8317673Snate@binkert.orgenvList = [] 8325517Snate@binkert.org 8338126Sgblack@eecs.umich.edudate_source = Source('base/date.cc', skip_lib=True) 8345798Snate@binkert.org 8357756SAli.Saidi@ARM.com# Function to create a new build environment as clone of current 8367816Ssteve.reinhardt@amd.com# environment 'env' with modified object suffix and optional stripped 8375798Snate@binkert.org# binary. Additional keyword arguments are appended to corresponding 8385798Snate@binkert.org# build environment vars. 8395517Snate@binkert.orgdef makeEnv(label, objsfx, strip = False, **kwargs): 8405517Snate@binkert.org # SCons doesn't know to append a library suffix when there is a '.' in the 8417673Snate@binkert.org # name. Use '_' instead. 8425517Snate@binkert.org libname = 'gem5_' + label 8435517Snate@binkert.org exename = 'gem5.' + label 8447673Snate@binkert.org secondary_exename = 'm5.' + label 8457673Snate@binkert.org 8465517Snate@binkert.org new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's') 8475798Snate@binkert.org new_env.Label = label 8485798Snate@binkert.org new_env.Append(**kwargs) 8498333Snate@binkert.org 8507816Ssteve.reinhardt@amd.com swig_env = new_env.Clone() 8515798Snate@binkert.org swig_env.Append(CCFLAGS='-Werror') 8525798Snate@binkert.org if env['GCC']: 8534762Snate@binkert.org swig_env.Append(CCFLAGS='-Wno-uninitialized') 8544762Snate@binkert.org swig_env.Append(CCFLAGS='-Wno-sign-compare') 8554762Snate@binkert.org swig_env.Append(CCFLAGS='-Wno-parentheses') 8564762Snate@binkert.org swig_env.Append(CCFLAGS='-Wno-unused-label') 8574762Snate@binkert.org if compareVersions(env['GCC_VERSION'], '4.6') >= 0: 8588596Ssteve.reinhardt@amd.com swig_env.Append(CCFLAGS='-Wno-unused-but-set-variable') 8595517Snate@binkert.org if env['CLANG']: 8605517Snate@binkert.org swig_env.Append(CCFLAGS=['-Wno-unused-label']) 86111997Sgabeblack@google.com 8625517Snate@binkert.org 8635517Snate@binkert.org werror_env = new_env.Clone() 8647673Snate@binkert.org werror_env.Append(CCFLAGS='-Werror') 8658596Ssteve.reinhardt@amd.com 8667673Snate@binkert.org def make_obj(source, static, extra_deps = None): 8675517Snate@binkert.org '''This function adds the specified source to the correct 86810458Sandreas.hansson@arm.com build environment, and returns the corresponding SCons Object 86910458Sandreas.hansson@arm.com nodes''' 87010458Sandreas.hansson@arm.com 87110458Sandreas.hansson@arm.com if source.swig: 87210458Sandreas.hansson@arm.com env = swig_env 87310458Sandreas.hansson@arm.com elif source.Werror: 87410458Sandreas.hansson@arm.com env = werror_env 87510458Sandreas.hansson@arm.com else: 87610458Sandreas.hansson@arm.com env = new_env 87710458Sandreas.hansson@arm.com 87810458Sandreas.hansson@arm.com if static: 87910458Sandreas.hansson@arm.com obj = env.StaticObject(source.tnode) 8805517Snate@binkert.org else: 88111996Sgabeblack@google.com obj = env.SharedObject(source.tnode) 8825517Snate@binkert.org 88311997Sgabeblack@google.com if extra_deps: 88411996Sgabeblack@google.com env.Depends(obj, extra_deps) 8855517Snate@binkert.org 8865517Snate@binkert.org return obj 8877673Snate@binkert.org 8887673Snate@binkert.org static_objs = \ 88911996Sgabeblack@google.com [ make_obj(s, True) for s in Source.get(main=False, skip_lib=False) ] 89011988Sandreas.sandberg@arm.com shared_objs = \ 8917673Snate@binkert.org [ make_obj(s, False) for s in Source.get(main=False, skip_lib=False) ] 8925517Snate@binkert.org 8938596Ssteve.reinhardt@amd.com static_date = make_obj(date_source, static=True, extra_deps=static_objs) 8945517Snate@binkert.org static_objs.append(static_date) 8955517Snate@binkert.org 89611997Sgabeblack@google.com shared_date = make_obj(date_source, static=False, extra_deps=shared_objs) 8975517Snate@binkert.org shared_objs.append(shared_date) 8985517Snate@binkert.org 8997673Snate@binkert.org # First make a library of everything but main() so other programs can 9007673Snate@binkert.org # link against m5. 9017673Snate@binkert.org static_lib = new_env.StaticLibrary(libname, static_objs) 9025517Snate@binkert.org shared_lib = new_env.SharedLibrary(libname, shared_objs) 90311988Sandreas.sandberg@arm.com 90411997Sgabeblack@google.com # Now link a stub with main() and the static library. 9058596Ssteve.reinhardt@amd.com main_objs = [ make_obj(s, True) for s in Source.get(main=True) ] 9068596Ssteve.reinhardt@amd.com 9078596Ssteve.reinhardt@amd.com for test in UnitTest.all: 90811988Sandreas.sandberg@arm.com flags = { test.target : True } 9098596Ssteve.reinhardt@amd.com test_sources = Source.get(**flags) 9108596Ssteve.reinhardt@amd.com test_objs = [ make_obj(s, static=True) for s in test_sources ] 9118596Ssteve.reinhardt@amd.com if test.main: 9124762Snate@binkert.org test_objs += main_objs 9136143Snate@binkert.org testname = "unittest/%s.%s" % (test.target, label) 9146143Snate@binkert.org new_env.Program(testname, test_objs + static_objs) 9156143Snate@binkert.org 9164762Snate@binkert.org progname = exename 9174762Snate@binkert.org if strip: 9184762Snate@binkert.org progname += '.unstripped' 9197756SAli.Saidi@ARM.com 9208596Ssteve.reinhardt@amd.com targets = new_env.Program(progname, main_objs + static_objs) 9214762Snate@binkert.org 9224762Snate@binkert.org if strip: 92310458Sandreas.hansson@arm.com if sys.platform == 'sunos5': 92410458Sandreas.hansson@arm.com cmd = 'cp $SOURCE $TARGET; strip $TARGET' 92510458Sandreas.hansson@arm.com else: 92610458Sandreas.hansson@arm.com cmd = 'strip $SOURCE -o $TARGET' 92710458Sandreas.hansson@arm.com targets = new_env.Command(exename, progname, 92810458Sandreas.hansson@arm.com MakeAction(cmd, Transform("STRIP"))) 92910458Sandreas.hansson@arm.com 93010458Sandreas.hansson@arm.com new_env.Command(secondary_exename, exename, 93110458Sandreas.hansson@arm.com MakeAction('ln $SOURCE $TARGET', Transform("HARDLINK"))) 93210458Sandreas.hansson@arm.com 93310458Sandreas.hansson@arm.com new_env.M5Binary = targets[0] 93410458Sandreas.hansson@arm.com envList.append(new_env) 93510458Sandreas.hansson@arm.com 93610458Sandreas.hansson@arm.com# Debug binary 93710458Sandreas.hansson@arm.comccflags = {} 93810458Sandreas.hansson@arm.comif env['GCC']: 93910458Sandreas.hansson@arm.com if sys.platform == 'sunos5': 94010458Sandreas.hansson@arm.com ccflags['debug'] = '-gstabs+' 94110458Sandreas.hansson@arm.com else: 94210458Sandreas.hansson@arm.com ccflags['debug'] = '-ggdb3' 94310458Sandreas.hansson@arm.com ccflags['opt'] = '-g -O3' 94410458Sandreas.hansson@arm.com ccflags['fast'] = '-O3' 94510458Sandreas.hansson@arm.com ccflags['prof'] = '-O3 -g -pg' 94610458Sandreas.hansson@arm.comelif env['SUNCC']: 94710458Sandreas.hansson@arm.com ccflags['debug'] = '-g0' 94810458Sandreas.hansson@arm.com ccflags['opt'] = '-g -O' 94910458Sandreas.hansson@arm.com ccflags['fast'] = '-fast' 95010458Sandreas.hansson@arm.com ccflags['prof'] = '-fast -g -pg' 95110458Sandreas.hansson@arm.comelif env['ICC']: 95210458Sandreas.hansson@arm.com ccflags['debug'] = '-g -O0' 95310458Sandreas.hansson@arm.com ccflags['opt'] = '-g -O' 95410458Sandreas.hansson@arm.com ccflags['fast'] = '-fast' 95510458Sandreas.hansson@arm.com ccflags['prof'] = '-fast -g -pg' 95610458Sandreas.hansson@arm.comelif env['CLANG']: 95710458Sandreas.hansson@arm.com ccflags['debug'] = '-g -O0' 95810458Sandreas.hansson@arm.com ccflags['opt'] = '-g -O3' 95910458Sandreas.hansson@arm.com ccflags['fast'] = '-O3' 96010458Sandreas.hansson@arm.com ccflags['prof'] = '-O3 -g -pg' 96110458Sandreas.hansson@arm.comelse: 96210458Sandreas.hansson@arm.com print 'Unknown compiler, please fix compiler options' 96310458Sandreas.hansson@arm.com Exit(1) 96410458Sandreas.hansson@arm.com 96510458Sandreas.hansson@arm.com 96610458Sandreas.hansson@arm.com# To speed things up, we only instantiate the build environments we 96710458Sandreas.hansson@arm.com# need. We try to identify the needed environment for each target; if 96810458Sandreas.hansson@arm.com# we can't, we fall back on instantiating all the environments just to 96910458Sandreas.hansson@arm.com# be safe. 97010458Sandreas.hansson@arm.comtarget_types = ['debug', 'opt', 'fast', 'prof'] 97110458Sandreas.hansson@arm.comobj2target = {'do': 'debug', 'o': 'opt', 'fo': 'fast', 'po': 'prof'} 97210584Sandreas.hansson@arm.com 97310458Sandreas.hansson@arm.comdef identifyTarget(t): 97410458Sandreas.hansson@arm.com ext = t.split('.')[-1] 97510458Sandreas.hansson@arm.com if ext in target_types: 97610458Sandreas.hansson@arm.com return ext 97710458Sandreas.hansson@arm.com if obj2target.has_key(ext): 9784762Snate@binkert.org return obj2target[ext] 9796143Snate@binkert.org match = re.search(r'/tests/([^/]+)/', t) 9806143Snate@binkert.org if match and match.group(1) in target_types: 9816143Snate@binkert.org return match.group(1) 9824762Snate@binkert.org return 'all' 9834762Snate@binkert.org 98411996Sgabeblack@google.comneeded_envs = [identifyTarget(target) for target in BUILD_TARGETS] 9857816Ssteve.reinhardt@amd.comif 'all' in needed_envs: 9864762Snate@binkert.org needed_envs += target_types 9874762Snate@binkert.org 9884762Snate@binkert.org# Debug binary 9894762Snate@binkert.orgif 'debug' in needed_envs: 9907756SAli.Saidi@ARM.com makeEnv('debug', '.do', 9918596Ssteve.reinhardt@amd.com CCFLAGS = Split(ccflags['debug']), 9924762Snate@binkert.org CPPDEFINES = ['DEBUG', 'TRACING_ON=1']) 9934762Snate@binkert.org 99411988Sandreas.sandberg@arm.com# Optimized binary 99511988Sandreas.sandberg@arm.comif 'opt' in needed_envs: 99611988Sandreas.sandberg@arm.com makeEnv('opt', '.o', 99711988Sandreas.sandberg@arm.com CCFLAGS = Split(ccflags['opt']), 99811988Sandreas.sandberg@arm.com CPPDEFINES = ['TRACING_ON=1']) 99911988Sandreas.sandberg@arm.com 100011988Sandreas.sandberg@arm.com# "Fast" binary 100111988Sandreas.sandberg@arm.comif 'fast' in needed_envs: 100211988Sandreas.sandberg@arm.com makeEnv('fast', '.fo', strip = True, 100311988Sandreas.sandberg@arm.com CCFLAGS = Split(ccflags['fast']), 100411988Sandreas.sandberg@arm.com CPPDEFINES = ['NDEBUG', 'TRACING_ON=0']) 10054382Sbinkertn@umich.edu 10069396Sandreas.hansson@arm.com# Profiled binary 10079396Sandreas.hansson@arm.comif 'prof' in needed_envs: 10089396Sandreas.hansson@arm.com makeEnv('prof', '.po', 10099396Sandreas.hansson@arm.com CCFLAGS = Split(ccflags['prof']), 10109396Sandreas.hansson@arm.com CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 10119396Sandreas.hansson@arm.com LINKFLAGS = '-pg') 10129396Sandreas.hansson@arm.com 10139396Sandreas.hansson@arm.comReturn('envList') 10149396Sandreas.hansson@arm.com