SConscript revision 8614
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('*') 48955SN/A 495522Snate@binkert.org# Children need to see the environment 50955SN/AExport('env') 515522Snate@binkert.org 524202Sbinkertn@umich.edubuild_env = [(opt, env[opt]) for opt in export_vars] 535742Snate@binkert.org 54955SN/Afrom m5.util import code_formatter, compareVersions 554381Sbinkertn@umich.edu 564381Sbinkertn@umich.edu######################################################################## 5712246Sgabeblack@google.com# Code for adding source files of various types 5812246Sgabeblack@google.com# 598334Snate@binkert.org# When specifying a source file of some type, a set of guards can be 60955SN/A# specified for that file. When get() is used to find the files, if 61955SN/A# get specifies a set of filters, only files that match those filters 624202Sbinkertn@umich.edu# will be accepted (unspecified filters on files are assumed to be 63955SN/A# false). Current filters are: 644382Sbinkertn@umich.edu# main -- specifies the gem5 main() function 654382Sbinkertn@umich.edu# 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 676654Snate@binkert.org# 685517Snate@binkert.org# A parent can now be specified for a source file and default filter 698614Sgblack@eecs.umich.edu# values will be retrieved recursively from parents (children override 707674Snate@binkert.org# parents). 716143Snate@binkert.org# 726143Snate@binkert.orgclass SourceMeta(type): 736143Snate@binkert.org '''Meta class for source files that keeps track of all files of a 7412302Sgabeblack@google.com particular type and has a get function for finding all functions 7512302Sgabeblack@google.com of a certain type that match a set of guards''' 7612302Sgabeblack@google.com def __init__(cls, name, bases, dict): 7712371Sgabeblack@google.com super(SourceMeta, cls).__init__(name, bases, dict) 7812371Sgabeblack@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): 12412302Sgabeblack@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('.') 12912302Sgabeblack@google.com if index <= 0: 13012371Sgabeblack@google.com # dot files aren't extensions 13112371Sgabeblack@google.com return self.basename, None 13212371Sgabeblack@google.com 13312371Sgabeblack@google.com return self.basename[:index], self.basename[index+1:] 13412302Sgabeblack@google.com 13512371Sgabeblack@google.com @property 13612371Sgabeblack@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''' 13911983Sgabeblack@google.com guards = {} 1406143Snate@binkert.org if self.parent: 1418233Snate@binkert.org guards.update(self.parent.guards) 14212302Sgabeblack@google.com guards.update(self.guards) 1436143Snate@binkert.org return guards 1446143Snate@binkert.org 14512302Sgabeblack@google.com def __lt__(self, other): return self.filename < other.filename 1464762Snate@binkert.org def __le__(self, other): return self.filename <= other.filename 1476143Snate@binkert.org def __gt__(self, other): return self.filename > other.filename 1488233Snate@binkert.org def __ge__(self, other): return self.filename >= other.filename 1498233Snate@binkert.org def __eq__(self, other): return self.filename == other.filename 15012302Sgabeblack@google.com def __ne__(self, other): return self.filename != other.filename 15112302Sgabeblack@google.com 1526143Snate@binkert.orgclass Source(SourceFile): 15312362Sgabeblack@google.com '''Add a c/c++ source file to the build''' 15412362Sgabeblack@google.com 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) 15712302Sgabeblack@google.com 15812302Sgabeblack@google.com self.Werror = Werror 15912302Sgabeblack@google.com self.swig = swig 16012302Sgabeblack@google.com 16112302Sgabeblack@google.comclass PySource(SourceFile): 16212363Sgabeblack@google.com '''Add a python source file to the named package''' 16312363Sgabeblack@google.com invalid_sym_char = re.compile('[^A-z0-9_]') 16412363Sgabeblack@google.com modules = {} 16512363Sgabeblack@google.com tnodes = {} 16612302Sgabeblack@google.com symnames = {} 16712363Sgabeblack@google.com 16812363Sgabeblack@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 1728233Snate@binkert.org modname,ext = self.extname 1736143Snate@binkert.org assert ext == 'py' 1746143Snate@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__': 1827065Snate@binkert.org modpath += [ modname ] 1836143Snate@binkert.org modpath = '.'.join(modpath) 18412362Sgabeblack@google.com 18512362Sgabeblack@google.com 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') 1968233Snate@binkert.org self.cpp = File(self.filename + '.cc') 1978233Snate@binkert.org 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 2176143Snate@binkert.org bisect.insort_right(SimObject.modnames, self.modname) 2186143Snate@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): 2239982Satgutier@umich.edu '''Specify the python package, the source file, and any guards''' 22413576Sciro.santilli@arm.com super(SwigSource, self).__init__(source, **guards) 22513576Sciro.santilli@arm.com 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): 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 UnitTest.all.append(self) 25613630Sciro.santilli@arm.com 25713630Sciro.santilli@arm.com# Children should have access 25813576Sciro.santilli@arm.comExport('Source') 25913576Sciro.santilli@arm.comExport('PySource') 26013576Sciro.santilli@arm.comExport('SimObject') 26113576Sciro.santilli@arm.comExport('SwigSource') 26213576Sciro.santilli@arm.comExport('UnitTest') 26313576Sciro.santilli@arm.com 26413576Sciro.santilli@arm.com######################################################################## 26513576Sciro.santilli@arm.com# 26613576Sciro.santilli@arm.com# Debug Flags 26713576Sciro.santilli@arm.com# 26813576Sciro.santilli@arm.comdebug_flags = {} 26913576Sciro.santilli@arm.comdef DebugFlag(name, desc=None): 27013576Sciro.santilli@arm.com if name in debug_flags: 27113576Sciro.santilli@arm.com raise AttributeError, "Flag %s already specified" % name 27213576Sciro.santilli@arm.com debug_flags[name] = (name, (), desc) 27313576Sciro.santilli@arm.com 27413576Sciro.santilli@arm.comdef CompoundFlag(name, flags, desc=None): 27513576Sciro.santilli@arm.com if name in debug_flags: 27613576Sciro.santilli@arm.com raise AttributeError, "Flag %s already specified" % name 27713576Sciro.santilli@arm.com 27813576Sciro.santilli@arm.com compound = tuple(flags) 27913576Sciro.santilli@arm.com debug_flags[name] = (name, compound, desc) 28013576Sciro.santilli@arm.com 28113576Sciro.santilli@arm.comExport('DebugFlag') 28213576Sciro.santilli@arm.comExport('CompoundFlag') 28313576Sciro.santilli@arm.com 28413576Sciro.santilli@arm.com######################################################################## 28513576Sciro.santilli@arm.com# 28613576Sciro.santilli@arm.com# Set some compiler variables 28713576Sciro.santilli@arm.com# 28813576Sciro.santilli@arm.com 28913576Sciro.santilli@arm.com# Include file paths are rooted in this directory. SCons will 29013576Sciro.santilli@arm.com# automatically expand '.' to refer to both the source directory and 29113576Sciro.santilli@arm.com# the corresponding build directory to pick up generated include 29213576Sciro.santilli@arm.com# files. 29313576Sciro.santilli@arm.comenv.Append(CPPPATH=Dir('.')) 29413576Sciro.santilli@arm.com 29513577Sciro.santilli@arm.comfor extra_dir in extras_dir_list: 29613577Sciro.santilli@arm.com env.Append(CPPPATH=Dir(extra_dir)) 29713577Sciro.santilli@arm.com 2986143Snate@binkert.org# Workaround for bug in SCons version > 0.97d20071212 29912302Sgabeblack@google.com# Scons bug id: 2006 gem5 Bug id: 308 30012302Sgabeblack@google.comfor root, dirs, files in os.walk(base_dir, topdown=True): 30112302Sgabeblack@google.com Dir(root[len(base_dir) + 1:]) 30212302Sgabeblack@google.com 30312302Sgabeblack@google.com######################################################################## 30412302Sgabeblack@google.com# 30512302Sgabeblack@google.com# Walk the tree and execute all SConscripts in subdirectories 30612302Sgabeblack@google.com# 30711983Sgabeblack@google.com 30811983Sgabeblack@google.comhere = Dir('.').srcnode().abspath 30911983Sgabeblack@google.comfor root, dirs, files in os.walk(base_dir, topdown=True): 31012302Sgabeblack@google.com if root == here: 31112302Sgabeblack@google.com # we don't want to recurse back into this SConscript 31212302Sgabeblack@google.com continue 31312302Sgabeblack@google.com 31412302Sgabeblack@google.com if 'SConscript' in files: 31512302Sgabeblack@google.com build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:]) 31611983Sgabeblack@google.com SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir) 3176143Snate@binkert.org 31812305Sgabeblack@google.comfor extra_dir in extras_dir_list: 31912302Sgabeblack@google.com prefix_len = len(dirname(extra_dir)) + 1 32012302Sgabeblack@google.com for root, dirs, files in os.walk(extra_dir, topdown=True): 32112302Sgabeblack@google.com # if build lives in the extras directory, don't walk down it 3226143Snate@binkert.org if 'build' in dirs: 3236143Snate@binkert.org dirs.remove('build') 3246143Snate@binkert.org 3255522Snate@binkert.org if 'SConscript' in files: 3266143Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[prefix_len:]) 3276143Snate@binkert.org SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir) 3286143Snate@binkert.org 3299982Satgutier@umich.edufor opt in export_vars: 33012302Sgabeblack@google.com env.ConfigFile(opt) 33112302Sgabeblack@google.com 33212302Sgabeblack@google.comdef makeTheISA(source, target, env): 3336143Snate@binkert.org isas = [ src.get_contents() for src in source ] 3346143Snate@binkert.org target_isa = env['TARGET_ISA'] 3356143Snate@binkert.org def define(isa): 3366143Snate@binkert.org return isa.upper() + '_ISA' 3375522Snate@binkert.org 3385522Snate@binkert.org def namespace(isa): 3395522Snate@binkert.org return isa[0].upper() + isa[1:].lower() + 'ISA' 3405522Snate@binkert.org 3415604Snate@binkert.org 3425604Snate@binkert.org code = code_formatter() 3436143Snate@binkert.org code('''\ 3446143Snate@binkert.org#ifndef __CONFIG_THE_ISA_HH__ 3454762Snate@binkert.org#define __CONFIG_THE_ISA_HH__ 3464762Snate@binkert.org 3476143Snate@binkert.org''') 3486727Ssteve.reinhardt@amd.com 3496727Ssteve.reinhardt@amd.com for i,isa in enumerate(isas): 3506727Ssteve.reinhardt@amd.com code('#define $0 $1', define(isa), i + 1) 3514762Snate@binkert.org 3526143Snate@binkert.org code(''' 3536143Snate@binkert.org 3546143Snate@binkert.org#define THE_ISA ${{define(target_isa)}} 3556143Snate@binkert.org#define TheISA ${{namespace(target_isa)}} 3566727Ssteve.reinhardt@amd.com 3576143Snate@binkert.org#endif // __CONFIG_THE_ISA_HH__''') 3587674Snate@binkert.org 3597674Snate@binkert.org code.write(str(target[0])) 3605604Snate@binkert.org 3616143Snate@binkert.orgenv.Command('config/the_isa.hh', map(Value, all_isa_list), 3626143Snate@binkert.org MakeAction(makeTheISA, Transform("CFG ISA", 0))) 3636143Snate@binkert.org 3644762Snate@binkert.org######################################################################## 3656143Snate@binkert.org# 3664762Snate@binkert.org# Prevent any SimObjects from being added after this point, they 3674762Snate@binkert.org# should all have been added in the SConscripts above 3684762Snate@binkert.org# 3696143Snate@binkert.orgSimObject.fixed = True 3706143Snate@binkert.org 3714762Snate@binkert.orgclass DictImporter(object): 37212302Sgabeblack@google.com '''This importer takes a dictionary of arbitrary module names that 37312302Sgabeblack@google.com map to arbitrary filenames.''' 3748233Snate@binkert.org def __init__(self, modules): 37512302Sgabeblack@google.com self.modules = modules 3766143Snate@binkert.org self.installed = set() 3776143Snate@binkert.org 3784762Snate@binkert.org def __del__(self): 3796143Snate@binkert.org self.unload() 3804762Snate@binkert.org 3819396Sandreas.hansson@arm.com def unload(self): 3829396Sandreas.hansson@arm.com import sys 3839396Sandreas.hansson@arm.com for module in self.installed: 38412302Sgabeblack@google.com del sys.modules[module] 38512302Sgabeblack@google.com self.installed = set() 38612302Sgabeblack@google.com 3879396Sandreas.hansson@arm.com def find_module(self, fullname, path): 3889396Sandreas.hansson@arm.com if fullname == 'm5.defines': 3899396Sandreas.hansson@arm.com return self 3909396Sandreas.hansson@arm.com 3919396Sandreas.hansson@arm.com if fullname == 'm5.objects': 3929396Sandreas.hansson@arm.com return self 3939396Sandreas.hansson@arm.com 3949930Sandreas.hansson@arm.com if fullname.startswith('m5.internal'): 3959930Sandreas.hansson@arm.com return None 3969396Sandreas.hansson@arm.com 3976143Snate@binkert.org source = self.modules.get(fullname, None) 39812797Sgabeblack@google.com if source is not None and fullname.startswith('m5.objects'): 39912797Sgabeblack@google.com return self 40012797Sgabeblack@google.com 4018235Snate@binkert.org return None 40212797Sgabeblack@google.com 40312797Sgabeblack@google.com def load_module(self, fullname): 40412797Sgabeblack@google.com mod = imp.new_module(fullname) 40512797Sgabeblack@google.com sys.modules[fullname] = mod 40612797Sgabeblack@google.com self.installed.add(fullname) 40712797Sgabeblack@google.com 40812797Sgabeblack@google.com mod.__loader__ = self 40912797Sgabeblack@google.com if fullname == 'm5.objects': 41012797Sgabeblack@google.com mod.__path__ = fullname.split('.') 41112797Sgabeblack@google.com return mod 41212797Sgabeblack@google.com 41312797Sgabeblack@google.com if fullname == 'm5.defines': 41412797Sgabeblack@google.com mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env) 41512797Sgabeblack@google.com return mod 41612797Sgabeblack@google.com 41712757Sgabeblack@google.com source = self.modules[fullname] 41812757Sgabeblack@google.com if source.modname == '__init__': 41912797Sgabeblack@google.com mod.__path__ = source.modpath 42012797Sgabeblack@google.com mod.__file__ = source.abspath 42112797Sgabeblack@google.com 42212757Sgabeblack@google.com exec file(source.abspath, 'r') in mod.__dict__ 42312757Sgabeblack@google.com 42412757Sgabeblack@google.com return mod 42512757Sgabeblack@google.com 4268235Snate@binkert.orgimport m5.SimObject 42712302Sgabeblack@google.comimport m5.params 4288235Snate@binkert.orgfrom m5.util import code_formatter 4298235Snate@binkert.org 43012757Sgabeblack@google.comm5.SimObject.clear() 4318235Snate@binkert.orgm5.params.clear() 4328235Snate@binkert.org 4338235Snate@binkert.org# install the python importer so we can grab stuff from the source 43412757Sgabeblack@google.com# tree itself. We can't have SimObjects added after this point or 43512313Sgabeblack@google.com# else we won't know about them for the rest of the stuff. 43612797Sgabeblack@google.comimporter = DictImporter(PySource.modules) 43712797Sgabeblack@google.comsys.meta_path[0:0] = [ importer ] 43812797Sgabeblack@google.com 43912797Sgabeblack@google.com# import all sim objects so we can populate the all_objects list 44012797Sgabeblack@google.com# make sure that we're working with a list, then let's sort it 44112797Sgabeblack@google.comfor modname in SimObject.modnames: 44212797Sgabeblack@google.com exec('from m5.objects import %s' % modname) 44312797Sgabeblack@google.com 44412797Sgabeblack@google.com# we need to unload all of the currently imported modules so that they 44512797Sgabeblack@google.com# will be re-imported the next time the sconscript is run 44612797Sgabeblack@google.comimporter.unload() 44712797Sgabeblack@google.comsys.meta_path.remove(importer) 44812797Sgabeblack@google.com 44912797Sgabeblack@google.comsim_objects = m5.SimObject.allClasses 45013706Sgabeblack@google.comall_enums = m5.params.allEnums 45113706Sgabeblack@google.com 45213706Sgabeblack@google.com# Find param types that need to be explicitly wrapped with swig. 45313706Sgabeblack@google.com# These will be recognized because the ParamDesc will have a 45412797Sgabeblack@google.com# swig_decl() method. Most param types are based on types that don't 45512797Sgabeblack@google.com# need this, either because they're based on native types (like Int) 45612797Sgabeblack@google.com# or because they're SimObjects (which get swigged independently). 45712797Sgabeblack@google.com# For now the only things handled here are VectorParam types. 45812797Sgabeblack@google.comparams_to_swig = {} 45912797Sgabeblack@google.comfor name,obj in sorted(sim_objects.iteritems()): 46012797Sgabeblack@google.com for param in obj._params.local.values(): 46112797Sgabeblack@google.com # load the ptype attribute now because it depends on the 46212797Sgabeblack@google.com # current version of SimObject.allClasses, but when scons 46312797Sgabeblack@google.com # actually uses the value, all versions of 46412797Sgabeblack@google.com # SimObject.allClasses will have been loaded 46512797Sgabeblack@google.com param.ptype 46612797Sgabeblack@google.com 46712797Sgabeblack@google.com if not hasattr(param, 'swig_decl'): 46812797Sgabeblack@google.com continue 46912797Sgabeblack@google.com pname = param.ptype_str 47012797Sgabeblack@google.com if pname not in params_to_swig: 47112797Sgabeblack@google.com params_to_swig[pname] = param 47212797Sgabeblack@google.com 47312797Sgabeblack@google.com######################################################################## 47412797Sgabeblack@google.com# 47512797Sgabeblack@google.com# calculate extra dependencies 47612797Sgabeblack@google.com# 47713656Sgabeblack@google.commodule_depends = ["m5", "m5.SimObject", "m5.params"] 47812797Sgabeblack@google.comdepends = [ PySource.modules[dep].snode for dep in module_depends ] 47912797Sgabeblack@google.com 48012797Sgabeblack@google.com######################################################################## 48112797Sgabeblack@google.com# 48212797Sgabeblack@google.com# Commands for the basic automatically generated python files 48312797Sgabeblack@google.com# 48412313Sgabeblack@google.com 48512313Sgabeblack@google.com# Generate Python file containing a dict specifying the current 48612797Sgabeblack@google.com# buildEnv flags. 48712797Sgabeblack@google.comdef makeDefinesPyFile(target, source, env): 48812797Sgabeblack@google.com build_env = source[0].get_contents() 48912371Sgabeblack@google.com 4905584Snate@binkert.org code = code_formatter() 49112797Sgabeblack@google.com code(""" 49212797Sgabeblack@google.comimport m5.internal 49312797Sgabeblack@google.comimport m5.util 49412797Sgabeblack@google.com 49512797Sgabeblack@google.combuildEnv = m5.util.SmartDict($build_env) 49612797Sgabeblack@google.com 49712797Sgabeblack@google.comcompileDate = m5.internal.core.compileDate 49812797Sgabeblack@google.com_globals = globals() 49912797Sgabeblack@google.comfor key,val in m5.internal.core.__dict__.iteritems(): 50012797Sgabeblack@google.com if key.startswith('flag_'): 50112797Sgabeblack@google.com flag = key[5:] 50212797Sgabeblack@google.com _globals[flag] = val 50312797Sgabeblack@google.comdel _globals 50412797Sgabeblack@google.com""") 50512797Sgabeblack@google.com code.write(target[0].abspath) 50612797Sgabeblack@google.com 50712797Sgabeblack@google.comdefines_info = Value(build_env) 50812797Sgabeblack@google.com# Generate a file with all of the compile options in it 50912797Sgabeblack@google.comenv.Command('python/m5/defines.py', defines_info, 51012797Sgabeblack@google.com MakeAction(makeDefinesPyFile, Transform("DEFINES", 0))) 51112797Sgabeblack@google.comPySource('m5', 'python/m5/defines.py') 51212797Sgabeblack@google.com 51312797Sgabeblack@google.com# Generate python file containing info about the M5 source code 51412797Sgabeblack@google.comdef makeInfoPyFile(target, source, env): 51512797Sgabeblack@google.com code = code_formatter() 51612797Sgabeblack@google.com for src in source: 51712797Sgabeblack@google.com data = ''.join(file(src.srcnode().abspath, 'r').xreadlines()) 51812797Sgabeblack@google.com code('$src = ${{repr(data)}}') 51912797Sgabeblack@google.com code.write(str(target[0])) 52012797Sgabeblack@google.com 52112797Sgabeblack@google.com# Generate a file that wraps the basic top level files 52212797Sgabeblack@google.comenv.Command('python/m5/info.py', 52312797Sgabeblack@google.com [ '#/COPYING', '#/LICENSE', '#/README', ], 52412797Sgabeblack@google.com MakeAction(makeInfoPyFile, Transform("INFO"))) 52512797Sgabeblack@google.comPySource('m5', 'python/m5/info.py') 52612797Sgabeblack@google.com 52712797Sgabeblack@google.com######################################################################## 52812797Sgabeblack@google.com# 5294382Sbinkertn@umich.edu# Create all of the SimObject param headers and enum headers 53013576Sciro.santilli@arm.com# 53113577Sciro.santilli@arm.com 5324202Sbinkertn@umich.edudef createSimObjectParamStruct(target, source, env): 5334382Sbinkertn@umich.edu assert len(target) == 1 and len(source) == 1 5344382Sbinkertn@umich.edu 5359396Sandreas.hansson@arm.com name = str(source[0].get_contents()) 53612797Sgabeblack@google.com obj = sim_objects[name] 5375584Snate@binkert.org 53812313Sgabeblack@google.com code = code_formatter() 5394382Sbinkertn@umich.edu obj.cxx_param_decl(code) 5404382Sbinkertn@umich.edu code.write(target[0].abspath) 5414382Sbinkertn@umich.edu 5428232Snate@binkert.orgdef createParamSwigWrapper(target, source, env): 5435192Ssaidi@eecs.umich.edu assert len(target) == 1 and len(source) == 1 5448232Snate@binkert.org 5458232Snate@binkert.org name = str(source[0].get_contents()) 5468232Snate@binkert.org param = params_to_swig[name] 5475192Ssaidi@eecs.umich.edu 5488232Snate@binkert.org code = code_formatter() 5495192Ssaidi@eecs.umich.edu param.swig_decl(code) 5505799Snate@binkert.org code.write(target[0].abspath) 5518232Snate@binkert.org 5525192Ssaidi@eecs.umich.edudef createEnumStrings(target, source, env): 5535192Ssaidi@eecs.umich.edu assert len(target) == 1 and len(source) == 1 5545192Ssaidi@eecs.umich.edu 5558232Snate@binkert.org name = str(source[0].get_contents()) 5565192Ssaidi@eecs.umich.edu obj = all_enums[name] 5578232Snate@binkert.org 5585192Ssaidi@eecs.umich.edu code = code_formatter() 5595192Ssaidi@eecs.umich.edu obj.cxx_def(code) 5605192Ssaidi@eecs.umich.edu code.write(target[0].abspath) 5615192Ssaidi@eecs.umich.edu 5624382Sbinkertn@umich.edudef createEnumDecls(target, source, env): 5634382Sbinkertn@umich.edu assert len(target) == 1 and len(source) == 1 5644382Sbinkertn@umich.edu 5652667Sstever@eecs.umich.edu name = str(source[0].get_contents()) 5662667Sstever@eecs.umich.edu obj = all_enums[name] 5672667Sstever@eecs.umich.edu 5682667Sstever@eecs.umich.edu code = code_formatter() 5692667Sstever@eecs.umich.edu obj.cxx_decl(code) 5702667Sstever@eecs.umich.edu code.write(target[0].abspath) 5715742Snate@binkert.org 5725742Snate@binkert.orgdef createEnumSwigWrapper(target, source, env): 5735742Snate@binkert.org assert len(target) == 1 and len(source) == 1 5745793Snate@binkert.org 5758334Snate@binkert.org name = str(source[0].get_contents()) 5765793Snate@binkert.org obj = all_enums[name] 5775793Snate@binkert.org 5785793Snate@binkert.org code = code_formatter() 5794382Sbinkertn@umich.edu obj.swig_decl(code) 5804762Snate@binkert.org code.write(target[0].abspath) 5815344Sstever@gmail.com 5824382Sbinkertn@umich.edudef createSimObjectSwigWrapper(target, source, env): 5835341Sstever@gmail.com name = source[0].get_contents() 5845742Snate@binkert.org obj = sim_objects[name] 5855742Snate@binkert.org 5865742Snate@binkert.org code = code_formatter() 5875742Snate@binkert.org obj.swig_decl(code) 5885742Snate@binkert.org code.write(target[0].abspath) 5894762Snate@binkert.org 5905742Snate@binkert.org# Generate all of the SimObject param C++ struct header files 5915742Snate@binkert.orgparams_hh_files = [] 59211984Sgabeblack@google.comfor name,simobj in sorted(sim_objects.iteritems()): 5937722Sgblack@eecs.umich.edu py_source = PySource.modules[simobj.__module__] 5945742Snate@binkert.org extra_deps = [ py_source.tnode ] 5955742Snate@binkert.org 5965742Snate@binkert.org hh_file = File('params/%s.hh' % name) 5979930Sandreas.hansson@arm.com params_hh_files.append(hh_file) 5989930Sandreas.hansson@arm.com env.Command(hh_file, Value(name), 5999930Sandreas.hansson@arm.com MakeAction(createSimObjectParamStruct, Transform("SO PARAM"))) 6009930Sandreas.hansson@arm.com env.Depends(hh_file, depends + extra_deps) 6019930Sandreas.hansson@arm.com 6025742Snate@binkert.org# Generate any needed param SWIG wrapper files 6038242Sbradley.danofsky@amd.comparams_i_files = [] 6048242Sbradley.danofsky@amd.comfor name,param in params_to_swig.iteritems(): 6058242Sbradley.danofsky@amd.com i_file = File('python/m5/internal/%s.i' % (param.swig_module_name())) 6068242Sbradley.danofsky@amd.com params_i_files.append(i_file) 6075341Sstever@gmail.com env.Command(i_file, Value(name), 6085742Snate@binkert.org MakeAction(createParamSwigWrapper, Transform("SW PARAM"))) 6097722Sgblack@eecs.umich.edu env.Depends(i_file, depends) 6104773Snate@binkert.org SwigSource('m5.internal', i_file) 6116108Snate@binkert.org 6121858SN/A# Generate all enum header files 6131085SN/Afor name,enum in sorted(all_enums.iteritems()): 6146658Snate@binkert.org py_source = PySource.modules[enum.__module__] 6156658Snate@binkert.org extra_deps = [ py_source.tnode ] 6167673Snate@binkert.org 6176658Snate@binkert.org cc_file = File('enums/%s.cc' % name) 6186658Snate@binkert.org env.Command(cc_file, Value(name), 61911308Santhony.gutierrez@amd.com MakeAction(createEnumStrings, Transform("ENUM STR"))) 6206658Snate@binkert.org env.Depends(cc_file, depends + extra_deps) 62111308Santhony.gutierrez@amd.com Source(cc_file) 6226658Snate@binkert.org 6236658Snate@binkert.org hh_file = File('enums/%s.hh' % name) 6247673Snate@binkert.org env.Command(hh_file, Value(name), 6257673Snate@binkert.org MakeAction(createEnumDecls, Transform("ENUMDECL"))) 6267673Snate@binkert.org env.Depends(hh_file, depends + extra_deps) 6277673Snate@binkert.org 6287673Snate@binkert.org i_file = File('python/m5/internal/enum_%s.i' % name) 6297673Snate@binkert.org env.Command(i_file, Value(name), 6307673Snate@binkert.org MakeAction(createEnumSwigWrapper, Transform("ENUMSWIG"))) 63110467Sandreas.hansson@arm.com env.Depends(i_file, depends + extra_deps) 6326658Snate@binkert.org SwigSource('m5.internal', i_file) 6337673Snate@binkert.org 63410467Sandreas.hansson@arm.com# Generate SimObject SWIG wrapper files 63510467Sandreas.hansson@arm.comfor name in sim_objects.iterkeys(): 63610467Sandreas.hansson@arm.com i_file = File('python/m5/internal/param_%s.i' % name) 63710467Sandreas.hansson@arm.com env.Command(i_file, Value(name), 63810467Sandreas.hansson@arm.com MakeAction(createSimObjectSwigWrapper, Transform("SO SWIG"))) 63910467Sandreas.hansson@arm.com env.Depends(i_file, depends) 64010467Sandreas.hansson@arm.com SwigSource('m5.internal', i_file) 64110467Sandreas.hansson@arm.com 64210467Sandreas.hansson@arm.com# Generate the main swig init file 64310467Sandreas.hansson@arm.comdef makeEmbeddedSwigInit(target, source, env): 64410467Sandreas.hansson@arm.com code = code_formatter() 6457673Snate@binkert.org module = source[0].get_contents() 6467673Snate@binkert.org code('''\ 6477673Snate@binkert.org#include "sim/init.hh" 6487673Snate@binkert.org 6497673Snate@binkert.orgextern "C" { 6509048SAli.Saidi@ARM.com void init_${module}(); 6517673Snate@binkert.org} 6527673Snate@binkert.org 6537673Snate@binkert.orgEmbeddedSwig embed_swig_${module}(init_${module}); 6547673Snate@binkert.org''') 6556658Snate@binkert.org code.write(str(target[0])) 6567756SAli.Saidi@ARM.com 6577816Ssteve.reinhardt@amd.com# Build all swig modules 6586658Snate@binkert.orgfor swig in SwigSource.all: 65911308Santhony.gutierrez@amd.com env.Command([swig.cc_source.tnode, swig.py_source.tnode], swig.tnode, 66011308Santhony.gutierrez@amd.com MakeAction('$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} ' 66111308Santhony.gutierrez@amd.com '-o ${TARGETS[0]} $SOURCES', Transform("SWIG"))) 66211308Santhony.gutierrez@amd.com cc_file = str(swig.tnode) 66311308Santhony.gutierrez@amd.com init_file = '%s/%s_init.cc' % (dirname(cc_file), basename(cc_file)) 66411308Santhony.gutierrez@amd.com env.Command(init_file, Value(swig.module), 66511308Santhony.gutierrez@amd.com MakeAction(makeEmbeddedSwigInit, Transform("EMBED SW"))) 66611308Santhony.gutierrez@amd.com Source(init_file, **swig.guards) 66711308Santhony.gutierrez@amd.com 66811308Santhony.gutierrez@amd.com# 66911308Santhony.gutierrez@amd.com# Handle debug flags 67011308Santhony.gutierrez@amd.com# 67111308Santhony.gutierrez@amd.comdef makeDebugFlagCC(target, source, env): 67211308Santhony.gutierrez@amd.com assert(len(target) == 1 and len(source) == 1) 67311308Santhony.gutierrez@amd.com 67411308Santhony.gutierrez@amd.com val = eval(source[0].get_contents()) 67511308Santhony.gutierrez@amd.com name, compound, desc = val 67611308Santhony.gutierrez@amd.com compound = list(sorted(compound)) 67711308Santhony.gutierrez@amd.com 67811308Santhony.gutierrez@amd.com code = code_formatter() 67911308Santhony.gutierrez@amd.com 68011308Santhony.gutierrez@amd.com # file header 68111308Santhony.gutierrez@amd.com code(''' 68211308Santhony.gutierrez@amd.com/* 68311308Santhony.gutierrez@amd.com * DO NOT EDIT THIS FILE! Automatically generated 68411308Santhony.gutierrez@amd.com */ 68511308Santhony.gutierrez@amd.com 68611308Santhony.gutierrez@amd.com#include "base/debug.hh" 68711308Santhony.gutierrez@amd.com''') 68811308Santhony.gutierrez@amd.com 68911308Santhony.gutierrez@amd.com for flag in compound: 69011308Santhony.gutierrez@amd.com code('#include "debug/$flag.hh"') 69111308Santhony.gutierrez@amd.com code() 69211308Santhony.gutierrez@amd.com code('namespace Debug {') 69311308Santhony.gutierrez@amd.com code() 69411308Santhony.gutierrez@amd.com 69511308Santhony.gutierrez@amd.com if not compound: 69611308Santhony.gutierrez@amd.com code('SimpleFlag $name("$name", "$desc");') 69711308Santhony.gutierrez@amd.com else: 69811308Santhony.gutierrez@amd.com code('CompoundFlag $name("$name", "$desc",') 69911308Santhony.gutierrez@amd.com code.indent() 70011308Santhony.gutierrez@amd.com last = len(compound) - 1 70111308Santhony.gutierrez@amd.com for i,flag in enumerate(compound): 70211308Santhony.gutierrez@amd.com if i != last: 70311308Santhony.gutierrez@amd.com code('$flag,') 7044382Sbinkertn@umich.edu else: 7054382Sbinkertn@umich.edu code('$flag);') 7064762Snate@binkert.org code.dedent() 7074762Snate@binkert.org 7084762Snate@binkert.org code() 7096654Snate@binkert.org code('} // namespace Debug') 7106654Snate@binkert.org 7115517Snate@binkert.org code.write(str(target[0])) 7125517Snate@binkert.org 7135517Snate@binkert.orgdef makeDebugFlagHH(target, source, env): 7145517Snate@binkert.org assert(len(target) == 1 and len(source) == 1) 7155517Snate@binkert.org 7165517Snate@binkert.org val = eval(source[0].get_contents()) 7175517Snate@binkert.org name, compound, desc = val 7185517Snate@binkert.org 7195517Snate@binkert.org code = code_formatter() 7205517Snate@binkert.org 7215517Snate@binkert.org # file header boilerplate 7225517Snate@binkert.org code('''\ 7235517Snate@binkert.org/* 7245517Snate@binkert.org * DO NOT EDIT THIS FILE! 7255517Snate@binkert.org * 7265517Snate@binkert.org * Automatically generated by SCons 7275517Snate@binkert.org */ 7286654Snate@binkert.org 7295517Snate@binkert.org#ifndef __DEBUG_${name}_HH__ 7305517Snate@binkert.org#define __DEBUG_${name}_HH__ 7315517Snate@binkert.org 7325517Snate@binkert.orgnamespace Debug { 7335517Snate@binkert.org''') 73411802Sandreas.sandberg@arm.com 7355517Snate@binkert.org if compound: 7365517Snate@binkert.org code('class CompoundFlag;') 7376143Snate@binkert.org code('class SimpleFlag;') 7386654Snate@binkert.org 7395517Snate@binkert.org if compound: 7405517Snate@binkert.org code('extern CompoundFlag $name;') 7415517Snate@binkert.org for flag in compound: 7425517Snate@binkert.org code('extern SimpleFlag $flag;') 7435517Snate@binkert.org else: 7445517Snate@binkert.org code('extern SimpleFlag $name;') 7455517Snate@binkert.org 7465517Snate@binkert.org code(''' 7475517Snate@binkert.org} 7485517Snate@binkert.org 7495517Snate@binkert.org#endif // __DEBUG_${name}_HH__ 7505517Snate@binkert.org''') 7515517Snate@binkert.org 7525517Snate@binkert.org code.write(str(target[0])) 7536654Snate@binkert.org 7546654Snate@binkert.orgfor name,flag in sorted(debug_flags.iteritems()): 7555517Snate@binkert.org n, compound, desc = flag 7565517Snate@binkert.org assert n == name 7576143Snate@binkert.org 7586143Snate@binkert.org env.Command('debug/%s.hh' % name, Value(flag), 7596143Snate@binkert.org MakeAction(makeDebugFlagHH, Transform("TRACING", 0))) 7606727Ssteve.reinhardt@amd.com env.Command('debug/%s.cc' % name, Value(flag), 7615517Snate@binkert.org MakeAction(makeDebugFlagCC, Transform("TRACING", 0))) 7626727Ssteve.reinhardt@amd.com Source('debug/%s.cc' % name) 7635517Snate@binkert.org 7645517Snate@binkert.org# Embed python files. All .py files that have been indicated by a 7655517Snate@binkert.org# PySource() call in a SConscript need to be embedded into the M5 7666654Snate@binkert.org# library. To do that, we compile the file to byte code, marshal the 7676654Snate@binkert.org# byte code, compress it, and then generate a c++ file that 7687673Snate@binkert.org# inserts the result into an array. 7696654Snate@binkert.orgdef embedPyFile(target, source, env): 7706654Snate@binkert.org def c_str(string): 7716654Snate@binkert.org if string is None: 7726654Snate@binkert.org return "0" 7735517Snate@binkert.org return '"%s"' % string 7745517Snate@binkert.org 7755517Snate@binkert.org '''Action function to compile a .py into a code object, marshal 7766143Snate@binkert.org it, compress it, and stick it into an asm file so the code appears 7775517Snate@binkert.org as just bytes with a label in the data section''' 7784762Snate@binkert.org 7795517Snate@binkert.org src = file(str(source[0]), 'r').read() 7805517Snate@binkert.org 7816143Snate@binkert.org pysource = PySource.tnodes[source[0]] 7826143Snate@binkert.org compiled = compile(src, pysource.abspath, 'exec') 7835517Snate@binkert.org marshalled = marshal.dumps(compiled) 7845517Snate@binkert.org compressed = zlib.compress(marshalled) 7855517Snate@binkert.org data = compressed 7865517Snate@binkert.org sym = pysource.symname 7875517Snate@binkert.org 7885517Snate@binkert.org code = code_formatter() 7895517Snate@binkert.org code('''\ 7905517Snate@binkert.org#include "sim/init.hh" 7915517Snate@binkert.org 7926143Snate@binkert.orgnamespace { 7935517Snate@binkert.org 7946654Snate@binkert.orgconst char data_${sym}[] = { 7956654Snate@binkert.org''') 7966654Snate@binkert.org code.indent() 7976654Snate@binkert.org step = 16 7986654Snate@binkert.org for i in xrange(0, len(data), step): 7996654Snate@binkert.org x = array.array('B', data[i:i+step]) 8004762Snate@binkert.org code(''.join('%d,' % d for d in x)) 8014762Snate@binkert.org code.dedent() 8024762Snate@binkert.org 8034762Snate@binkert.org code('''}; 8044762Snate@binkert.org 8057675Snate@binkert.orgEmbeddedPython embedded_${sym}( 80610584Sandreas.hansson@arm.com ${{c_str(pysource.arcname)}}, 8074762Snate@binkert.org ${{c_str(pysource.abspath)}}, 8084762Snate@binkert.org ${{c_str(pysource.modpath)}}, 8094762Snate@binkert.org data_${sym}, 8104762Snate@binkert.org ${{len(data)}}, 8114382Sbinkertn@umich.edu ${{len(marshalled)}}); 8124382Sbinkertn@umich.edu 8135517Snate@binkert.org} // anonymous namespace 8146654Snate@binkert.org''') 8155517Snate@binkert.org code.write(str(target[0])) 8168126Sgblack@eecs.umich.edu 8176654Snate@binkert.orgfor source in PySource.all: 8187673Snate@binkert.org env.Command(source.cpp, source.tnode, 8196654Snate@binkert.org MakeAction(embedPyFile, Transform("EMBED PY"))) 82011802Sandreas.sandberg@arm.com Source(source.cpp) 8216654Snate@binkert.org 8226654Snate@binkert.org######################################################################## 8236654Snate@binkert.org# 8246654Snate@binkert.org# Define binaries. Each different build type (debug, opt, etc.) gets 82511802Sandreas.sandberg@arm.com# a slightly different build environment. 8266669Snate@binkert.org# 82713709Sandreas.sandberg@arm.com 8286669Snate@binkert.org# List of constructed environments to pass back to SConstruct 8296669Snate@binkert.orgenvList = [] 8306669Snate@binkert.org 8316669Snate@binkert.orgdate_source = Source('base/date.cc', skip_lib=True) 8326654Snate@binkert.org 8337673Snate@binkert.org# Function to create a new build environment as clone of current 8345517Snate@binkert.org# environment 'env' with modified object suffix and optional stripped 8358126Sgblack@eecs.umich.edu# binary. Additional keyword arguments are appended to corresponding 8365798Snate@binkert.org# build environment vars. 8377756SAli.Saidi@ARM.comdef makeEnv(label, objsfx, strip = False, **kwargs): 8387816Ssteve.reinhardt@amd.com # SCons doesn't know to append a library suffix when there is a '.' in the 8395798Snate@binkert.org # name. Use '_' instead. 8405798Snate@binkert.org libname = 'gem5_' + label 8415517Snate@binkert.org exename = 'gem5.' + label 8425517Snate@binkert.org secondary_exename = 'm5.' + label 8437673Snate@binkert.org 8445517Snate@binkert.org new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's') 8455517Snate@binkert.org new_env.Label = label 8467673Snate@binkert.org new_env.Append(**kwargs) 8477673Snate@binkert.org 8485517Snate@binkert.org swig_env = new_env.Clone() 8495798Snate@binkert.org swig_env.Append(CCFLAGS='-Werror') 8505798Snate@binkert.org if env['GCC']: 8518333Snate@binkert.org swig_env.Append(CCFLAGS='-Wno-uninitialized') 8527816Ssteve.reinhardt@amd.com swig_env.Append(CCFLAGS='-Wno-sign-compare') 8535798Snate@binkert.org swig_env.Append(CCFLAGS='-Wno-parentheses') 8545798Snate@binkert.org if compareVersions(env['GCC_VERSION'], '4.6.0') != -1: 8554762Snate@binkert.org swig_env.Append(CCFLAGS='-Wno-unused-label') 8564762Snate@binkert.org swig_env.Append(CCFLAGS='-Wno-unused-but-set-variable') 8574762Snate@binkert.org 8584762Snate@binkert.org werror_env = new_env.Clone() 8594762Snate@binkert.org werror_env.Append(CCFLAGS='-Werror') 8608596Ssteve.reinhardt@amd.com 8615517Snate@binkert.org def make_obj(source, static, extra_deps = None): 8625517Snate@binkert.org '''This function adds the specified source to the correct 86311997Sgabeblack@google.com build environment, and returns the corresponding SCons Object 8645517Snate@binkert.org nodes''' 8655517Snate@binkert.org 8667673Snate@binkert.org if source.swig: 8678596Ssteve.reinhardt@amd.com env = swig_env 8687673Snate@binkert.org elif source.Werror: 8695517Snate@binkert.org env = werror_env 87010458Sandreas.hansson@arm.com else: 87110458Sandreas.hansson@arm.com env = new_env 87210458Sandreas.hansson@arm.com 87310458Sandreas.hansson@arm.com if static: 87410458Sandreas.hansson@arm.com obj = env.StaticObject(source.tnode) 87510458Sandreas.hansson@arm.com else: 87610458Sandreas.hansson@arm.com obj = env.SharedObject(source.tnode) 87710458Sandreas.hansson@arm.com 87810458Sandreas.hansson@arm.com if extra_deps: 87910458Sandreas.hansson@arm.com env.Depends(obj, extra_deps) 88010458Sandreas.hansson@arm.com 88110458Sandreas.hansson@arm.com return obj 8825517Snate@binkert.org 88311996Sgabeblack@google.com static_objs = \ 8845517Snate@binkert.org [ make_obj(s, True) for s in Source.get(main=False, skip_lib=False) ] 88511997Sgabeblack@google.com shared_objs = \ 88611996Sgabeblack@google.com [ make_obj(s, False) for s in Source.get(main=False, skip_lib=False) ] 8875517Snate@binkert.org 8885517Snate@binkert.org static_date = make_obj(date_source, static=True, extra_deps=static_objs) 8897673Snate@binkert.org static_objs.append(static_date) 8907673Snate@binkert.org 89111996Sgabeblack@google.com shared_date = make_obj(date_source, static=False, extra_deps=shared_objs) 89211988Sandreas.sandberg@arm.com shared_objs.append(shared_date) 8937673Snate@binkert.org 8945517Snate@binkert.org # First make a library of everything but main() so other programs can 8958596Ssteve.reinhardt@amd.com # link against m5. 8965517Snate@binkert.org static_lib = new_env.StaticLibrary(libname, static_objs) 8975517Snate@binkert.org shared_lib = new_env.SharedLibrary(libname, shared_objs) 89811997Sgabeblack@google.com 8995517Snate@binkert.org # Now link a stub with main() and the static library. 9005517Snate@binkert.org main_objs = [ make_obj(s, True) for s in Source.get(main=True) ] 9017673Snate@binkert.org 9027673Snate@binkert.org for test in UnitTest.all: 9037673Snate@binkert.org flags = { test.target : True } 9045517Snate@binkert.org test_sources = Source.get(**flags) 90511988Sandreas.sandberg@arm.com test_objs = [ make_obj(s, static=True) for s in test_sources ] 90611997Sgabeblack@google.com testname = "unittest/%s.%s" % (test.target, label) 9078596Ssteve.reinhardt@amd.com new_env.Program(testname, main_objs + test_objs + static_objs) 9088596Ssteve.reinhardt@amd.com 9098596Ssteve.reinhardt@amd.com progname = exename 91011988Sandreas.sandberg@arm.com if strip: 9118596Ssteve.reinhardt@amd.com progname += '.unstripped' 9128596Ssteve.reinhardt@amd.com 9138596Ssteve.reinhardt@amd.com targets = new_env.Program(progname, main_objs + static_objs) 9144762Snate@binkert.org 9156143Snate@binkert.org if strip: 9166143Snate@binkert.org if sys.platform == 'sunos5': 9176143Snate@binkert.org cmd = 'cp $SOURCE $TARGET; strip $TARGET' 9184762Snate@binkert.org else: 9194762Snate@binkert.org cmd = 'strip $SOURCE -o $TARGET' 9204762Snate@binkert.org targets = new_env.Command(exename, progname, 9217756SAli.Saidi@ARM.com MakeAction(cmd, Transform("STRIP"))) 9228596Ssteve.reinhardt@amd.com 9234762Snate@binkert.org new_env.Command(secondary_exename, exename, 9244762Snate@binkert.org MakeAction('ln $SOURCE $TARGET', Transform("HARDLINK"))) 92510458Sandreas.hansson@arm.com 92610458Sandreas.hansson@arm.com new_env.M5Binary = targets[0] 92710458Sandreas.hansson@arm.com envList.append(new_env) 92810458Sandreas.hansson@arm.com 92910458Sandreas.hansson@arm.com# Debug binary 93010458Sandreas.hansson@arm.comccflags = {} 93110458Sandreas.hansson@arm.comif env['GCC']: 93210458Sandreas.hansson@arm.com if sys.platform == 'sunos5': 93310458Sandreas.hansson@arm.com ccflags['debug'] = '-gstabs+' 93410458Sandreas.hansson@arm.com else: 93510458Sandreas.hansson@arm.com ccflags['debug'] = '-ggdb3' 93610458Sandreas.hansson@arm.com ccflags['opt'] = '-g -O3' 93710458Sandreas.hansson@arm.com ccflags['fast'] = '-O3' 93810458Sandreas.hansson@arm.com ccflags['prof'] = '-O3 -g -pg' 93910458Sandreas.hansson@arm.comelif env['SUNCC']: 94010458Sandreas.hansson@arm.com ccflags['debug'] = '-g0' 94110458Sandreas.hansson@arm.com ccflags['opt'] = '-g -O' 94210458Sandreas.hansson@arm.com ccflags['fast'] = '-fast' 94310458Sandreas.hansson@arm.com ccflags['prof'] = '-fast -g -pg' 94410458Sandreas.hansson@arm.comelif env['ICC']: 94510458Sandreas.hansson@arm.com ccflags['debug'] = '-g -O0' 94610458Sandreas.hansson@arm.com ccflags['opt'] = '-g -O' 94710458Sandreas.hansson@arm.com ccflags['fast'] = '-fast' 94810458Sandreas.hansson@arm.com ccflags['prof'] = '-fast -g -pg' 94910458Sandreas.hansson@arm.comelse: 95010458Sandreas.hansson@arm.com print 'Unknown compiler, please fix compiler options' 95110458Sandreas.hansson@arm.com Exit(1) 95210458Sandreas.hansson@arm.com 95310458Sandreas.hansson@arm.commakeEnv('debug', '.do', 95410458Sandreas.hansson@arm.com CCFLAGS = Split(ccflags['debug']), 95510458Sandreas.hansson@arm.com CPPDEFINES = ['DEBUG', 'TRACING_ON=1']) 95610458Sandreas.hansson@arm.com 95710458Sandreas.hansson@arm.com# Optimized binary 95810458Sandreas.hansson@arm.commakeEnv('opt', '.o', 95910458Sandreas.hansson@arm.com CCFLAGS = Split(ccflags['opt']), 96010458Sandreas.hansson@arm.com CPPDEFINES = ['TRACING_ON=1']) 96110458Sandreas.hansson@arm.com 96210458Sandreas.hansson@arm.com# "Fast" binary 96310458Sandreas.hansson@arm.commakeEnv('fast', '.fo', strip = True, 96410458Sandreas.hansson@arm.com CCFLAGS = Split(ccflags['fast']), 96510458Sandreas.hansson@arm.com CPPDEFINES = ['NDEBUG', 'TRACING_ON=0']) 96610458Sandreas.hansson@arm.com 96710458Sandreas.hansson@arm.com# Profiled binary 96810458Sandreas.hansson@arm.commakeEnv('prof', '.po', 96910458Sandreas.hansson@arm.com CCFLAGS = Split(ccflags['prof']), 97010458Sandreas.hansson@arm.com CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 97110458Sandreas.hansson@arm.com LINKFLAGS = '-pg') 97210458Sandreas.hansson@arm.com 97310458Sandreas.hansson@arm.comReturn('envList') 97410584Sandreas.hansson@arm.com