SConscript revision 12313
1955SN/A# -*- mode:python -*- 2955SN/A 31762SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan 4955SN/A# All rights reserved. 5955SN/A# 6955SN/A# Redistribution and use in source and binary forms, with or without 7955SN/A# modification, are permitted provided that the following conditions are 8955SN/A# met: redistributions of source code must retain the above copyright 9955SN/A# notice, this list of conditions and the following disclaimer; 10955SN/A# redistributions in binary form must reproduce the above copyright 11955SN/A# notice, this list of conditions and the following disclaimer in the 12955SN/A# documentation and/or other materials provided with the distribution; 13955SN/A# neither the name of the copyright holders nor the names of its 14955SN/A# contributors may be used to endorse or promote products derived from 15955SN/A# this software without specific prior written permission. 16955SN/A# 17955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 282665Ssaidi@eecs.umich.edu# 294762Snate@binkert.org# Authors: Nathan Binkert 30955SN/A 315522Snate@binkert.orgimport array 326143Snate@binkert.orgimport bisect 334762Snate@binkert.orgimport imp 345522Snate@binkert.orgimport marshal 35955SN/Aimport os 365522Snate@binkert.orgimport re 37955SN/Aimport subprocess 385522Snate@binkert.orgimport sys 394202Sbinkertn@umich.eduimport zlib 405742Snate@binkert.org 41955SN/Afrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath 424381Sbinkertn@umich.edu 434381Sbinkertn@umich.eduimport SCons 448334Snate@binkert.org 45955SN/Afrom gem5_scons import Transform 46955SN/A 474202Sbinkertn@umich.edu# This file defines how to build a particular configuration of gem5 48955SN/A# based on variable settings in the 'env' build environment. 494382Sbinkertn@umich.edu 504382Sbinkertn@umich.eduImport('*') 514382Sbinkertn@umich.edu 526654Snate@binkert.org# Children need to see the environment 535517Snate@binkert.orgExport('env') 548614Sgblack@eecs.umich.edu 557674Snate@binkert.orgbuild_env = [(opt, env[opt]) for opt in export_vars] 566143Snate@binkert.org 576143Snate@binkert.orgfrom m5.util import code_formatter, compareVersions 586143Snate@binkert.org 598233Snate@binkert.org######################################################################## 608233Snate@binkert.org# Code for adding source files of various types 618233Snate@binkert.org# 628233Snate@binkert.org# When specifying a source file of some type, a set of tags can be 638233Snate@binkert.org# specified for that file. 648334Snate@binkert.org 658334Snate@binkert.orgclass SourceList(list): 668233Snate@binkert.org def with_tags_that(self, predicate): 678233Snate@binkert.org '''Return a list of sources with tags that satisfy a predicate.''' 688233Snate@binkert.org def match(source): 698233Snate@binkert.org return predicate(source.tags) 708233Snate@binkert.org return SourceList(filter(match, self)) 718233Snate@binkert.org 726143Snate@binkert.org def with_any_tags(self, *tags): 738233Snate@binkert.org '''Return a list of sources with any of the supplied tags.''' 748233Snate@binkert.org return self.with_tags_that(lambda stags: len(tags & stags) > 0) 758233Snate@binkert.org 766143Snate@binkert.org def with_all_tags(self, *tags): 776143Snate@binkert.org '''Return a list of sources with all of the supplied tags.''' 786143Snate@binkert.org return self.with_tags_that(lambda stags: tags <= stags) 796143Snate@binkert.org 808233Snate@binkert.org def with_tag(self, tag): 818233Snate@binkert.org '''Return a list of sources with the supplied tag.''' 828233Snate@binkert.org return self.with_tags_that(lambda stags: tag in stags) 836143Snate@binkert.org 848233Snate@binkert.org def without_tags(self, *tags): 858233Snate@binkert.org '''Return a list of sources without any of the supplied tags.''' 868233Snate@binkert.org return self.with_tags_that(lambda stags: len(tags & stags) == 0) 878233Snate@binkert.org 886143Snate@binkert.org def without_tag(self, tag): 896143Snate@binkert.org '''Return a list of sources with the supplied tag.''' 906143Snate@binkert.org return self.with_tags_that(lambda stags: tag not in stags) 914762Snate@binkert.org 926143Snate@binkert.orgclass SourceMeta(type): 938233Snate@binkert.org '''Meta class for source files that keeps track of all files of a 948233Snate@binkert.org particular type.''' 958233Snate@binkert.org def __init__(cls, name, bases, dict): 968233Snate@binkert.org super(SourceMeta, cls).__init__(name, bases, dict) 978233Snate@binkert.org cls.all = SourceList() 986143Snate@binkert.org 998233Snate@binkert.orgclass SourceFile(object): 1008233Snate@binkert.org '''Base object that encapsulates the notion of a source file. 1018233Snate@binkert.org This includes, the source node, target node, various manipulations 1028233Snate@binkert.org of those. A source file also specifies a set of tags which 1036143Snate@binkert.org describing arbitrary properties of the source file.''' 1046143Snate@binkert.org __metaclass__ = SourceMeta 1056143Snate@binkert.org def __init__(self, source, tags=None, add_tags=None): 1066143Snate@binkert.org if tags is None: 1076143Snate@binkert.org tags='gem5 lib' 1086143Snate@binkert.org if isinstance(tags, basestring): 1096143Snate@binkert.org tags = set([tags]) 1106143Snate@binkert.org if isinstance(add_tags, basestring): 1116143Snate@binkert.org add_tags = set([add_tags]) 1127065Snate@binkert.org if add_tags: 1136143Snate@binkert.org tags = tags | add_tags 1148233Snate@binkert.org self.tags = set(tags) 1158233Snate@binkert.org 1168233Snate@binkert.org tnode = source 1178233Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1188233Snate@binkert.org tnode = File(source) 1198233Snate@binkert.org 1208233Snate@binkert.org self.tnode = tnode 1218233Snate@binkert.org self.snode = tnode.srcnode() 1228233Snate@binkert.org 1238233Snate@binkert.org for base in type(self).__mro__: 1248233Snate@binkert.org if issubclass(base, SourceFile): 1258233Snate@binkert.org base.all.append(self) 1268233Snate@binkert.org 1278233Snate@binkert.org @property 1288233Snate@binkert.org def filename(self): 1298233Snate@binkert.org return str(self.tnode) 1308233Snate@binkert.org 1318233Snate@binkert.org @property 1328233Snate@binkert.org def dirname(self): 1338233Snate@binkert.org return dirname(self.filename) 1348233Snate@binkert.org 1358233Snate@binkert.org @property 1368233Snate@binkert.org def basename(self): 1378233Snate@binkert.org return basename(self.filename) 1388233Snate@binkert.org 1398233Snate@binkert.org @property 1408233Snate@binkert.org def extname(self): 1418233Snate@binkert.org index = self.basename.rfind('.') 1428233Snate@binkert.org if index <= 0: 1438233Snate@binkert.org # dot files aren't extensions 1448233Snate@binkert.org return self.basename, None 1456143Snate@binkert.org 1466143Snate@binkert.org return self.basename[:index], self.basename[index+1:] 1476143Snate@binkert.org 1486143Snate@binkert.org def __lt__(self, other): return self.filename < other.filename 1496143Snate@binkert.org def __le__(self, other): return self.filename <= other.filename 1506143Snate@binkert.org def __gt__(self, other): return self.filename > other.filename 1516143Snate@binkert.org def __ge__(self, other): return self.filename >= other.filename 1526143Snate@binkert.org def __eq__(self, other): return self.filename == other.filename 1536143Snate@binkert.org def __ne__(self, other): return self.filename != other.filename 1548945Ssteve.reinhardt@amd.com 1558233Snate@binkert.orgclass Source(SourceFile): 1568233Snate@binkert.org ungrouped_tag = 'No link group' 1576143Snate@binkert.org source_groups = set() 1588945Ssteve.reinhardt@amd.com 1596143Snate@binkert.org _current_group_tag = ungrouped_tag 1606143Snate@binkert.org 1616143Snate@binkert.org @staticmethod 1626143Snate@binkert.org def link_group_tag(group): 1635522Snate@binkert.org return 'link group: %s' % group 1646143Snate@binkert.org 1656143Snate@binkert.org @classmethod 1666143Snate@binkert.org def set_group(cls, group): 1676143Snate@binkert.org new_tag = Source.link_group_tag(group) 1688233Snate@binkert.org Source._current_group_tag = new_tag 1698233Snate@binkert.org Source.source_groups.add(group) 1708233Snate@binkert.org 1716143Snate@binkert.org def _add_link_group_tag(self): 1726143Snate@binkert.org self.tags.add(Source._current_group_tag) 1736143Snate@binkert.org 1746143Snate@binkert.org '''Add a c/c++ source file to the build''' 1755522Snate@binkert.org def __init__(self, source, tags=None, add_tags=None): 1765522Snate@binkert.org '''specify the source file, and any tags''' 1775522Snate@binkert.org super(Source, self).__init__(source, tags, add_tags) 1785522Snate@binkert.org self._add_link_group_tag() 1795604Snate@binkert.org 1805604Snate@binkert.orgclass PySource(SourceFile): 1816143Snate@binkert.org '''Add a python source file to the named package''' 1826143Snate@binkert.org invalid_sym_char = re.compile('[^A-z0-9_]') 1834762Snate@binkert.org modules = {} 1844762Snate@binkert.org tnodes = {} 1856143Snate@binkert.org symnames = {} 1866727Ssteve.reinhardt@amd.com 1876727Ssteve.reinhardt@amd.com def __init__(self, package, source, tags=None, add_tags=None): 1886727Ssteve.reinhardt@amd.com '''specify the python package, the source file, and any tags''' 1894762Snate@binkert.org super(PySource, self).__init__(source, tags, add_tags) 1906143Snate@binkert.org 1916143Snate@binkert.org modname,ext = self.extname 1926143Snate@binkert.org assert ext == 'py' 1936143Snate@binkert.org 1946727Ssteve.reinhardt@amd.com if package: 1956143Snate@binkert.org path = package.split('.') 1967674Snate@binkert.org else: 1977674Snate@binkert.org path = [] 1985604Snate@binkert.org 1996143Snate@binkert.org modpath = path[:] 2006143Snate@binkert.org if modname != '__init__': 2016143Snate@binkert.org modpath += [ modname ] 2024762Snate@binkert.org modpath = '.'.join(modpath) 2036143Snate@binkert.org 2044762Snate@binkert.org arcpath = path + [ self.basename ] 2054762Snate@binkert.org abspath = self.snode.abspath 2064762Snate@binkert.org if not exists(abspath): 2076143Snate@binkert.org abspath = self.tnode.abspath 2086143Snate@binkert.org 2094762Snate@binkert.org self.package = package 2108233Snate@binkert.org self.modname = modname 2118233Snate@binkert.org self.modpath = modpath 2128233Snate@binkert.org self.arcname = joinpath(*arcpath) 2138233Snate@binkert.org self.abspath = abspath 2146143Snate@binkert.org self.compiled = File(self.filename + 'c') 2156143Snate@binkert.org self.cpp = File(self.filename + '.cc') 2164762Snate@binkert.org self.symname = PySource.invalid_sym_char.sub('_', modpath) 2176143Snate@binkert.org 2184762Snate@binkert.org PySource.modules[modpath] = self 2196143Snate@binkert.org PySource.tnodes[self.tnode] = self 2204762Snate@binkert.org PySource.symnames[self.symname] = self 2216143Snate@binkert.org 2228233Snate@binkert.orgclass SimObject(PySource): 2238233Snate@binkert.org '''Add a SimObject python file as a python source object and add 2248233Snate@binkert.org it to a list of sim object modules''' 2256143Snate@binkert.org 2266143Snate@binkert.org fixed = False 2276143Snate@binkert.org modnames = [] 2286143Snate@binkert.org 2296143Snate@binkert.org def __init__(self, source, tags=None, add_tags=None): 2306143Snate@binkert.org '''Specify the source file and any tags (automatically in 2316143Snate@binkert.org the m5.objects package)''' 2326143Snate@binkert.org super(SimObject, self).__init__('m5.objects', source, tags, add_tags) 2338233Snate@binkert.org if self.fixed: 2348233Snate@binkert.org raise AttributeError, "Too late to call SimObject now." 235955SN/A 2368235Snate@binkert.org bisect.insort_right(SimObject.modnames, self.modname) 2378235Snate@binkert.org 2386143Snate@binkert.orgclass ProtoBuf(SourceFile): 2398235Snate@binkert.org '''Add a Protocol Buffer to build''' 2409003SAli.Saidi@ARM.com 2418235Snate@binkert.org def __init__(self, source, tags=None, add_tags=None): 2428235Snate@binkert.org '''Specify the source file, and any tags''' 2438235Snate@binkert.org super(ProtoBuf, self).__init__(source, tags, add_tags) 2448235Snate@binkert.org 2458235Snate@binkert.org # Get the file name and the extension 2468235Snate@binkert.org modname,ext = self.extname 2478235Snate@binkert.org assert ext == 'proto' 2488235Snate@binkert.org 2498235Snate@binkert.org # Currently, we stick to generating the C++ headers, so we 2508235Snate@binkert.org # only need to track the source and header. 2518235Snate@binkert.org self.cc_file = File(modname + '.pb.cc') 2528235Snate@binkert.org self.hh_file = File(modname + '.pb.h') 2538235Snate@binkert.org 2548235Snate@binkert.orgclass UnitTest(object): 2559003SAli.Saidi@ARM.com '''Create a UnitTest''' 2568235Snate@binkert.org 2575584Snate@binkert.org all = [] 2584382Sbinkertn@umich.edu def __init__(self, target, *sources, **kwargs): 2594202Sbinkertn@umich.edu '''Specify the target name and any sources. Sources that are 2604382Sbinkertn@umich.edu not SourceFiles are evalued with Source(). All files are 2614382Sbinkertn@umich.edu tagged with the name of the UnitTest target.''' 2624382Sbinkertn@umich.edu 2635584Snate@binkert.org srcs = SourceList() 2644382Sbinkertn@umich.edu for src in sources: 2654382Sbinkertn@umich.edu if not isinstance(src, SourceFile): 2664382Sbinkertn@umich.edu src = Source(src, tags=str(target)) 2678232Snate@binkert.org srcs.append(src) 2685192Ssaidi@eecs.umich.edu 2698232Snate@binkert.org self.sources = srcs 2708232Snate@binkert.org self.target = target 2718232Snate@binkert.org self.main = kwargs.get('main', False) 2725192Ssaidi@eecs.umich.edu self.all.append(self) 2738232Snate@binkert.org 2745192Ssaidi@eecs.umich.educlass GTest(UnitTest): 2755799Snate@binkert.org '''Create a unit test based on the google test framework.''' 2768232Snate@binkert.org 2775192Ssaidi@eecs.umich.edu all = [] 2785192Ssaidi@eecs.umich.edu 2795192Ssaidi@eecs.umich.edu# Children should have access 2808232Snate@binkert.orgExport('Source') 2815192Ssaidi@eecs.umich.eduExport('PySource') 2828232Snate@binkert.orgExport('SimObject') 2835192Ssaidi@eecs.umich.eduExport('ProtoBuf') 2845192Ssaidi@eecs.umich.eduExport('UnitTest') 2855192Ssaidi@eecs.umich.eduExport('GTest') 2865192Ssaidi@eecs.umich.edu 2874382Sbinkertn@umich.edu######################################################################## 2884382Sbinkertn@umich.edu# 2894382Sbinkertn@umich.edu# Debug Flags 2902667Sstever@eecs.umich.edu# 2912667Sstever@eecs.umich.edudebug_flags = {} 2922667Sstever@eecs.umich.edudef DebugFlag(name, desc=None): 2932667Sstever@eecs.umich.edu if name in debug_flags: 2942667Sstever@eecs.umich.edu raise AttributeError, "Flag %s already specified" % name 2952667Sstever@eecs.umich.edu debug_flags[name] = (name, (), desc) 2965742Snate@binkert.org 2975742Snate@binkert.orgdef CompoundFlag(name, flags, desc=None): 2985742Snate@binkert.org if name in debug_flags: 2995793Snate@binkert.org raise AttributeError, "Flag %s already specified" % name 3008334Snate@binkert.org 3015793Snate@binkert.org compound = tuple(flags) 3025793Snate@binkert.org debug_flags[name] = (name, compound, desc) 3035793Snate@binkert.org 3044382Sbinkertn@umich.eduExport('DebugFlag') 3054762Snate@binkert.orgExport('CompoundFlag') 3065344Sstever@gmail.com 3074382Sbinkertn@umich.edu######################################################################## 3085341Sstever@gmail.com# 3095742Snate@binkert.org# Set some compiler variables 3105742Snate@binkert.org# 3115742Snate@binkert.org 3125742Snate@binkert.org# Include file paths are rooted in this directory. SCons will 3135742Snate@binkert.org# automatically expand '.' to refer to both the source directory and 3144762Snate@binkert.org# the corresponding build directory to pick up generated include 3155742Snate@binkert.org# files. 3165742Snate@binkert.orgenv.Append(CPPPATH=Dir('.')) 3177722Sgblack@eecs.umich.edu 3185742Snate@binkert.orgfor extra_dir in extras_dir_list: 3195742Snate@binkert.org env.Append(CPPPATH=Dir(extra_dir)) 3205742Snate@binkert.org 3215742Snate@binkert.org# Workaround for bug in SCons version > 0.97d20071212 3228242Sbradley.danofsky@amd.com# Scons bug id: 2006 gem5 Bug id: 308 3238242Sbradley.danofsky@amd.comfor root, dirs, files in os.walk(base_dir, topdown=True): 3248242Sbradley.danofsky@amd.com Dir(root[len(base_dir) + 1:]) 3258242Sbradley.danofsky@amd.com 3265341Sstever@gmail.com######################################################################## 3275742Snate@binkert.org# 3287722Sgblack@eecs.umich.edu# Walk the tree and execute all SConscripts in subdirectories 3294773Snate@binkert.org# 3306108Snate@binkert.org 3311858SN/Ahere = Dir('.').srcnode().abspath 3321085SN/Afor root, dirs, files in os.walk(base_dir, topdown=True): 3336658Snate@binkert.org if root == here: 3346658Snate@binkert.org # we don't want to recurse back into this SConscript 3357673Snate@binkert.org continue 3366658Snate@binkert.org 3376658Snate@binkert.org if 'SConscript' in files: 3386658Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:]) 3396658Snate@binkert.org Source.set_group(build_dir) 3406658Snate@binkert.org SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir) 3416658Snate@binkert.org 3426658Snate@binkert.orgfor extra_dir in extras_dir_list: 3437673Snate@binkert.org prefix_len = len(dirname(extra_dir)) + 1 3447673Snate@binkert.org 3457673Snate@binkert.org # Also add the corresponding build directory to pick up generated 3467673Snate@binkert.org # include files. 3477673Snate@binkert.org env.Append(CPPPATH=Dir(joinpath(env['BUILDDIR'], extra_dir[prefix_len:]))) 3487673Snate@binkert.org 3497673Snate@binkert.org for root, dirs, files in os.walk(extra_dir, topdown=True): 3506658Snate@binkert.org # if build lives in the extras directory, don't walk down it 3517673Snate@binkert.org if 'build' in dirs: 3527673Snate@binkert.org dirs.remove('build') 3537673Snate@binkert.org 3547673Snate@binkert.org if 'SConscript' in files: 3557673Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[prefix_len:]) 3567673Snate@binkert.org SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir) 3579048SAli.Saidi@ARM.com 3587673Snate@binkert.orgfor opt in export_vars: 3597673Snate@binkert.org env.ConfigFile(opt) 3607673Snate@binkert.org 3617673Snate@binkert.orgdef makeTheISA(source, target, env): 3626658Snate@binkert.org isas = [ src.get_contents() for src in source ] 3637756SAli.Saidi@ARM.com target_isa = env['TARGET_ISA'] 3647816Ssteve.reinhardt@amd.com def define(isa): 3656658Snate@binkert.org return isa.upper() + '_ISA' 3664382Sbinkertn@umich.edu 3674382Sbinkertn@umich.edu def namespace(isa): 3684762Snate@binkert.org return isa[0].upper() + isa[1:].lower() + 'ISA' 3694762Snate@binkert.org 3704762Snate@binkert.org 3716654Snate@binkert.org code = code_formatter() 3726654Snate@binkert.org code('''\ 3735517Snate@binkert.org#ifndef __CONFIG_THE_ISA_HH__ 3745517Snate@binkert.org#define __CONFIG_THE_ISA_HH__ 3755517Snate@binkert.org 3765517Snate@binkert.org''') 3775517Snate@binkert.org 3785517Snate@binkert.org # create defines for the preprocessing and compile-time determination 3795517Snate@binkert.org for i,isa in enumerate(isas): 3805517Snate@binkert.org code('#define $0 $1', define(isa), i + 1) 3815517Snate@binkert.org code() 3825517Snate@binkert.org 3835517Snate@binkert.org # create an enum for any run-time determination of the ISA, we 3845517Snate@binkert.org # reuse the same name as the namespaces 3855517Snate@binkert.org code('enum class Arch {') 3865517Snate@binkert.org for i,isa in enumerate(isas): 3875517Snate@binkert.org if i + 1 == len(isas): 3885517Snate@binkert.org code(' $0 = $1', namespace(isa), define(isa)) 3895517Snate@binkert.org else: 3906654Snate@binkert.org code(' $0 = $1,', namespace(isa), define(isa)) 3915517Snate@binkert.org code('};') 3925517Snate@binkert.org 3935517Snate@binkert.org code(''' 3945517Snate@binkert.org 3955517Snate@binkert.org#define THE_ISA ${{define(target_isa)}} 3965517Snate@binkert.org#define TheISA ${{namespace(target_isa)}} 3975517Snate@binkert.org#define THE_ISA_STR "${{target_isa}}" 3985517Snate@binkert.org 3996143Snate@binkert.org#endif // __CONFIG_THE_ISA_HH__''') 4006654Snate@binkert.org 4015517Snate@binkert.org code.write(str(target[0])) 4025517Snate@binkert.org 4035517Snate@binkert.orgenv.Command('config/the_isa.hh', map(Value, all_isa_list), 4045517Snate@binkert.org MakeAction(makeTheISA, Transform("CFG ISA", 0))) 4055517Snate@binkert.org 4065517Snate@binkert.orgdef makeTheGPUISA(source, target, env): 4075517Snate@binkert.org isas = [ src.get_contents() for src in source ] 4085517Snate@binkert.org target_gpu_isa = env['TARGET_GPU_ISA'] 4095517Snate@binkert.org def define(isa): 4105517Snate@binkert.org return isa.upper() + '_ISA' 4115517Snate@binkert.org 4125517Snate@binkert.org def namespace(isa): 4135517Snate@binkert.org return isa[0].upper() + isa[1:].lower() + 'ISA' 4145517Snate@binkert.org 4156654Snate@binkert.org 4166654Snate@binkert.org code = code_formatter() 4175517Snate@binkert.org code('''\ 4185517Snate@binkert.org#ifndef __CONFIG_THE_GPU_ISA_HH__ 4196143Snate@binkert.org#define __CONFIG_THE_GPU_ISA_HH__ 4206143Snate@binkert.org 4216143Snate@binkert.org''') 4226727Ssteve.reinhardt@amd.com 4235517Snate@binkert.org # create defines for the preprocessing and compile-time determination 4246727Ssteve.reinhardt@amd.com for i,isa in enumerate(isas): 4255517Snate@binkert.org code('#define $0 $1', define(isa), i + 1) 4265517Snate@binkert.org code() 4275517Snate@binkert.org 4286654Snate@binkert.org # create an enum for any run-time determination of the ISA, we 4296654Snate@binkert.org # reuse the same name as the namespaces 4307673Snate@binkert.org code('enum class GPUArch {') 4316654Snate@binkert.org for i,isa in enumerate(isas): 4326654Snate@binkert.org if i + 1 == len(isas): 4336654Snate@binkert.org code(' $0 = $1', namespace(isa), define(isa)) 4346654Snate@binkert.org else: 4355517Snate@binkert.org code(' $0 = $1,', namespace(isa), define(isa)) 4365517Snate@binkert.org code('};') 4375517Snate@binkert.org 4386143Snate@binkert.org code(''' 4395517Snate@binkert.org 4404762Snate@binkert.org#define THE_GPU_ISA ${{define(target_gpu_isa)}} 4415517Snate@binkert.org#define TheGpuISA ${{namespace(target_gpu_isa)}} 4425517Snate@binkert.org#define THE_GPU_ISA_STR "${{target_gpu_isa}}" 4436143Snate@binkert.org 4446143Snate@binkert.org#endif // __CONFIG_THE_GPU_ISA_HH__''') 4455517Snate@binkert.org 4465517Snate@binkert.org code.write(str(target[0])) 4475517Snate@binkert.org 4485517Snate@binkert.orgenv.Command('config/the_gpu_isa.hh', map(Value, all_gpu_isa_list), 4495517Snate@binkert.org MakeAction(makeTheGPUISA, Transform("CFG ISA", 0))) 4505517Snate@binkert.org 4515517Snate@binkert.org######################################################################## 4525517Snate@binkert.org# 4535517Snate@binkert.org# Prevent any SimObjects from being added after this point, they 4548596Ssteve.reinhardt@amd.com# should all have been added in the SConscripts above 4558596Ssteve.reinhardt@amd.com# 4568596Ssteve.reinhardt@amd.comSimObject.fixed = True 4578596Ssteve.reinhardt@amd.com 4588596Ssteve.reinhardt@amd.comclass DictImporter(object): 4598596Ssteve.reinhardt@amd.com '''This importer takes a dictionary of arbitrary module names that 4608596Ssteve.reinhardt@amd.com map to arbitrary filenames.''' 4616143Snate@binkert.org def __init__(self, modules): 4625517Snate@binkert.org self.modules = modules 4636654Snate@binkert.org self.installed = set() 4646654Snate@binkert.org 4656654Snate@binkert.org def __del__(self): 4666654Snate@binkert.org self.unload() 4676654Snate@binkert.org 4686654Snate@binkert.org def unload(self): 4695517Snate@binkert.org import sys 4705517Snate@binkert.org for module in self.installed: 4715517Snate@binkert.org del sys.modules[module] 4728596Ssteve.reinhardt@amd.com self.installed = set() 4738596Ssteve.reinhardt@amd.com 4744762Snate@binkert.org def find_module(self, fullname, path): 4754762Snate@binkert.org if fullname == 'm5.defines': 4764762Snate@binkert.org return self 4774762Snate@binkert.org 4784762Snate@binkert.org if fullname == 'm5.objects': 4794762Snate@binkert.org return self 4807675Snate@binkert.org 4814762Snate@binkert.org if fullname.startswith('_m5'): 4824762Snate@binkert.org return None 4834762Snate@binkert.org 4844762Snate@binkert.org source = self.modules.get(fullname, None) 4854382Sbinkertn@umich.edu if source is not None and fullname.startswith('m5.objects'): 4864382Sbinkertn@umich.edu return self 4875517Snate@binkert.org 4886654Snate@binkert.org return None 4895517Snate@binkert.org 4908126Sgblack@eecs.umich.edu def load_module(self, fullname): 4916654Snate@binkert.org mod = imp.new_module(fullname) 4927673Snate@binkert.org sys.modules[fullname] = mod 4936654Snate@binkert.org self.installed.add(fullname) 4946654Snate@binkert.org 4956654Snate@binkert.org mod.__loader__ = self 4966654Snate@binkert.org if fullname == 'm5.objects': 4976654Snate@binkert.org mod.__path__ = fullname.split('.') 4986654Snate@binkert.org return mod 4996654Snate@binkert.org 5006669Snate@binkert.org if fullname == 'm5.defines': 5016669Snate@binkert.org mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env) 5026669Snate@binkert.org return mod 5036669Snate@binkert.org 5046669Snate@binkert.org source = self.modules[fullname] 5056669Snate@binkert.org if source.modname == '__init__': 5066654Snate@binkert.org mod.__path__ = source.modpath 5077673Snate@binkert.org mod.__file__ = source.abspath 5085517Snate@binkert.org 5098126Sgblack@eecs.umich.edu exec file(source.abspath, 'r') in mod.__dict__ 5105798Snate@binkert.org 5117756SAli.Saidi@ARM.com return mod 5127816Ssteve.reinhardt@amd.com 5135798Snate@binkert.orgimport m5.SimObject 5145798Snate@binkert.orgimport m5.params 5155517Snate@binkert.orgfrom m5.util import code_formatter 5165517Snate@binkert.org 5177673Snate@binkert.orgm5.SimObject.clear() 5185517Snate@binkert.orgm5.params.clear() 5195517Snate@binkert.org 5207673Snate@binkert.org# install the python importer so we can grab stuff from the source 5217673Snate@binkert.org# tree itself. We can't have SimObjects added after this point or 5225517Snate@binkert.org# else we won't know about them for the rest of the stuff. 5235798Snate@binkert.orgimporter = DictImporter(PySource.modules) 5245798Snate@binkert.orgsys.meta_path[0:0] = [ importer ] 5258333Snate@binkert.org 5267816Ssteve.reinhardt@amd.com# import all sim objects so we can populate the all_objects list 5275798Snate@binkert.org# make sure that we're working with a list, then let's sort it 5285798Snate@binkert.orgfor modname in SimObject.modnames: 5294762Snate@binkert.org exec('from m5.objects import %s' % modname) 5304762Snate@binkert.org 5314762Snate@binkert.org# we need to unload all of the currently imported modules so that they 5324762Snate@binkert.org# will be re-imported the next time the sconscript is run 5334762Snate@binkert.orgimporter.unload() 5348596Ssteve.reinhardt@amd.comsys.meta_path.remove(importer) 5355517Snate@binkert.org 5365517Snate@binkert.orgsim_objects = m5.SimObject.allClasses 5375517Snate@binkert.orgall_enums = m5.params.allEnums 5385517Snate@binkert.org 5395517Snate@binkert.orgfor name,obj in sorted(sim_objects.iteritems()): 5407673Snate@binkert.org for param in obj._params.local.values(): 5418596Ssteve.reinhardt@amd.com # load the ptype attribute now because it depends on the 5427673Snate@binkert.org # current version of SimObject.allClasses, but when scons 5435517Snate@binkert.org # actually uses the value, all versions of 5448596Ssteve.reinhardt@amd.com # SimObject.allClasses will have been loaded 5455517Snate@binkert.org param.ptype 5465517Snate@binkert.org 5475517Snate@binkert.org######################################################################## 5488596Ssteve.reinhardt@amd.com# 5495517Snate@binkert.org# calculate extra dependencies 5507673Snate@binkert.org# 5517673Snate@binkert.orgmodule_depends = ["m5", "m5.SimObject", "m5.params"] 5527673Snate@binkert.orgdepends = [ PySource.modules[dep].snode for dep in module_depends ] 5535517Snate@binkert.orgdepends.sort(key = lambda x: x.name) 5545517Snate@binkert.org 5555517Snate@binkert.org######################################################################## 5565517Snate@binkert.org# 5575517Snate@binkert.org# Commands for the basic automatically generated python files 5585517Snate@binkert.org# 5595517Snate@binkert.org 5607673Snate@binkert.org# Generate Python file containing a dict specifying the current 5617673Snate@binkert.org# buildEnv flags. 5627673Snate@binkert.orgdef makeDefinesPyFile(target, source, env): 5635517Snate@binkert.org build_env = source[0].get_contents() 5648596Ssteve.reinhardt@amd.com 5655517Snate@binkert.org code = code_formatter() 5665517Snate@binkert.org code(""" 5675517Snate@binkert.orgimport _m5.core 5685517Snate@binkert.orgimport m5.util 5695517Snate@binkert.org 5707673Snate@binkert.orgbuildEnv = m5.util.SmartDict($build_env) 5717673Snate@binkert.org 5727673Snate@binkert.orgcompileDate = _m5.core.compileDate 5735517Snate@binkert.org_globals = globals() 5748596Ssteve.reinhardt@amd.comfor key,val in _m5.core.__dict__.iteritems(): 5757675Snate@binkert.org if key.startswith('flag_'): 5767675Snate@binkert.org flag = key[5:] 5777675Snate@binkert.org _globals[flag] = val 5787675Snate@binkert.orgdel _globals 5797675Snate@binkert.org""") 5807675Snate@binkert.org code.write(target[0].abspath) 5818596Ssteve.reinhardt@amd.com 5827675Snate@binkert.orgdefines_info = Value(build_env) 5837675Snate@binkert.org# Generate a file with all of the compile options in it 5848596Ssteve.reinhardt@amd.comenv.Command('python/m5/defines.py', defines_info, 5858596Ssteve.reinhardt@amd.com MakeAction(makeDefinesPyFile, Transform("DEFINES", 0))) 5868596Ssteve.reinhardt@amd.comPySource('m5', 'python/m5/defines.py') 5878596Ssteve.reinhardt@amd.com 5888596Ssteve.reinhardt@amd.com# Generate python file containing info about the M5 source code 5898596Ssteve.reinhardt@amd.comdef makeInfoPyFile(target, source, env): 5908596Ssteve.reinhardt@amd.com code = code_formatter() 5918596Ssteve.reinhardt@amd.com for src in source: 5928596Ssteve.reinhardt@amd.com data = ''.join(file(src.srcnode().abspath, 'r').xreadlines()) 5934762Snate@binkert.org code('$src = ${{repr(data)}}') 5946143Snate@binkert.org code.write(str(target[0])) 5956143Snate@binkert.org 5966143Snate@binkert.org# Generate a file that wraps the basic top level files 5974762Snate@binkert.orgenv.Command('python/m5/info.py', 5984762Snate@binkert.org [ '#/COPYING', '#/LICENSE', '#/README', ], 5994762Snate@binkert.org MakeAction(makeInfoPyFile, Transform("INFO"))) 6007756SAli.Saidi@ARM.comPySource('m5', 'python/m5/info.py') 6018596Ssteve.reinhardt@amd.com 6024762Snate@binkert.org######################################################################## 6034762Snate@binkert.org# 6048596Ssteve.reinhardt@amd.com# Create all of the SimObject param headers and enum headers 6055463Snate@binkert.org# 6068596Ssteve.reinhardt@amd.com 6078596Ssteve.reinhardt@amd.comdef createSimObjectParamStruct(target, source, env): 6085463Snate@binkert.org assert len(target) == 1 and len(source) == 1 6097756SAli.Saidi@ARM.com 6108596Ssteve.reinhardt@amd.com name = source[0].get_text_contents() 6114762Snate@binkert.org obj = sim_objects[name] 6127677Snate@binkert.org 6134762Snate@binkert.org code = code_formatter() 6144762Snate@binkert.org obj.cxx_param_decl(code) 6156143Snate@binkert.org code.write(target[0].abspath) 6166143Snate@binkert.org 6176143Snate@binkert.orgdef createSimObjectCxxConfig(is_header): 6184762Snate@binkert.org def body(target, source, env): 6194762Snate@binkert.org assert len(target) == 1 and len(source) == 1 6207756SAli.Saidi@ARM.com 6217816Ssteve.reinhardt@amd.com name = str(source[0].get_contents()) 6224762Snate@binkert.org obj = sim_objects[name] 6234762Snate@binkert.org 6244762Snate@binkert.org code = code_formatter() 6254762Snate@binkert.org obj.cxx_config_param_file(code, is_header) 6267756SAli.Saidi@ARM.com code.write(target[0].abspath) 6278596Ssteve.reinhardt@amd.com return body 6284762Snate@binkert.org 6294762Snate@binkert.orgdef createEnumStrings(target, source, env): 6307677Snate@binkert.org assert len(target) == 1 and len(source) == 2 6317756SAli.Saidi@ARM.com 6328596Ssteve.reinhardt@amd.com name = source[0].get_text_contents() 6337675Snate@binkert.org use_python = source[1].read() 6347677Snate@binkert.org obj = all_enums[name] 6355517Snate@binkert.org 6368596Ssteve.reinhardt@amd.com code = code_formatter() 6377675Snate@binkert.org obj.cxx_def(code) 6388596Ssteve.reinhardt@amd.com if use_python: 6398596Ssteve.reinhardt@amd.com obj.pybind_def(code) 6408596Ssteve.reinhardt@amd.com code.write(target[0].abspath) 6418596Ssteve.reinhardt@amd.com 6428596Ssteve.reinhardt@amd.comdef createEnumDecls(target, source, env): 6434762Snate@binkert.org assert len(target) == 1 and len(source) == 1 6447674Snate@binkert.org 6457674Snate@binkert.org name = source[0].get_text_contents() 6467674Snate@binkert.org obj = all_enums[name] 6477674Snate@binkert.org 6487674Snate@binkert.org code = code_formatter() 6497674Snate@binkert.org obj.cxx_decl(code) 6507674Snate@binkert.org code.write(target[0].abspath) 6517674Snate@binkert.org 6527674Snate@binkert.orgdef createSimObjectPyBindWrapper(target, source, env): 6537674Snate@binkert.org name = source[0].get_text_contents() 6547674Snate@binkert.org obj = sim_objects[name] 6557674Snate@binkert.org 6567674Snate@binkert.org code = code_formatter() 6577674Snate@binkert.org obj.pybind_decl(code) 6587674Snate@binkert.org code.write(target[0].abspath) 6594762Snate@binkert.org 6606143Snate@binkert.org# Generate all of the SimObject param C++ struct header files 6616143Snate@binkert.orgparams_hh_files = [] 6627756SAli.Saidi@ARM.comfor name,simobj in sorted(sim_objects.iteritems()): 6637816Ssteve.reinhardt@amd.com py_source = PySource.modules[simobj.__module__] 6648235Snate@binkert.org extra_deps = [ py_source.tnode ] 6658596Ssteve.reinhardt@amd.com 6667756SAli.Saidi@ARM.com hh_file = File('params/%s.hh' % name) 6677816Ssteve.reinhardt@amd.com params_hh_files.append(hh_file) 6688235Snate@binkert.org env.Command(hh_file, Value(name), 6694382Sbinkertn@umich.edu MakeAction(createSimObjectParamStruct, Transform("SO PARAM"))) 6708232Snate@binkert.org env.Depends(hh_file, depends + extra_deps) 6718232Snate@binkert.org 6728232Snate@binkert.org# C++ parameter description files 6738232Snate@binkert.orgif GetOption('with_cxx_config'): 6748232Snate@binkert.org for name,simobj in sorted(sim_objects.iteritems()): 6756229Snate@binkert.org py_source = PySource.modules[simobj.__module__] 6768232Snate@binkert.org extra_deps = [ py_source.tnode ] 6778232Snate@binkert.org 6788232Snate@binkert.org cxx_config_hh_file = File('cxx_config/%s.hh' % name) 6796229Snate@binkert.org cxx_config_cc_file = File('cxx_config/%s.cc' % name) 6807673Snate@binkert.org env.Command(cxx_config_hh_file, Value(name), 6815517Snate@binkert.org MakeAction(createSimObjectCxxConfig(True), 6825517Snate@binkert.org Transform("CXXCPRHH"))) 6837673Snate@binkert.org env.Command(cxx_config_cc_file, Value(name), 6845517Snate@binkert.org MakeAction(createSimObjectCxxConfig(False), 6855517Snate@binkert.org Transform("CXXCPRCC"))) 6865517Snate@binkert.org env.Depends(cxx_config_hh_file, depends + extra_deps + 6875517Snate@binkert.org [File('params/%s.hh' % name), File('sim/cxx_config.hh')]) 6888232Snate@binkert.org env.Depends(cxx_config_cc_file, depends + extra_deps + 6897673Snate@binkert.org [cxx_config_hh_file]) 6907673Snate@binkert.org Source(cxx_config_cc_file) 6918232Snate@binkert.org 6928232Snate@binkert.org cxx_config_init_cc_file = File('cxx_config/init.cc') 6938232Snate@binkert.org 6948232Snate@binkert.org def createCxxConfigInitCC(target, source, env): 6957673Snate@binkert.org assert len(target) == 1 and len(source) == 1 6965517Snate@binkert.org 6978232Snate@binkert.org code = code_formatter() 6988232Snate@binkert.org 6998232Snate@binkert.org for name,simobj in sorted(sim_objects.iteritems()): 7008232Snate@binkert.org if not hasattr(simobj, 'abstract') or not simobj.abstract: 7017673Snate@binkert.org code('#include "cxx_config/${name}.hh"') 7028232Snate@binkert.org code() 7038232Snate@binkert.org code('void cxxConfigInit()') 7048232Snate@binkert.org code('{') 7058232Snate@binkert.org code.indent() 7068232Snate@binkert.org for name,simobj in sorted(sim_objects.iteritems()): 7078232Snate@binkert.org not_abstract = not hasattr(simobj, 'abstract') or \ 7087673Snate@binkert.org not simobj.abstract 7095517Snate@binkert.org if not_abstract and 'type' in simobj.__dict__: 7108232Snate@binkert.org code('cxx_config_directory["${name}"] = ' 7118232Snate@binkert.org '${name}CxxConfigParams::makeDirectoryEntry();') 7125517Snate@binkert.org code.dedent() 7137673Snate@binkert.org code('}') 7145517Snate@binkert.org code.write(target[0].abspath) 7158232Snate@binkert.org 7168232Snate@binkert.org py_source = PySource.modules[simobj.__module__] 7175517Snate@binkert.org extra_deps = [ py_source.tnode ] 7188232Snate@binkert.org env.Command(cxx_config_init_cc_file, Value(name), 7198232Snate@binkert.org MakeAction(createCxxConfigInitCC, Transform("CXXCINIT"))) 7208232Snate@binkert.org cxx_param_hh_files = ["cxx_config/%s.hh" % simobj 7217673Snate@binkert.org for name,simobj in sorted(sim_objects.iteritems()) 7225517Snate@binkert.org if not hasattr(simobj, 'abstract') or not simobj.abstract] 7235517Snate@binkert.org Depends(cxx_config_init_cc_file, cxx_param_hh_files + 7247673Snate@binkert.org [File('sim/cxx_config.hh')]) 7255517Snate@binkert.org Source(cxx_config_init_cc_file) 7265517Snate@binkert.org 7275517Snate@binkert.org# Generate all enum header files 7288232Snate@binkert.orgfor name,enum in sorted(all_enums.iteritems()): 7295517Snate@binkert.org py_source = PySource.modules[enum.__module__] 7305517Snate@binkert.org extra_deps = [ py_source.tnode ] 7318232Snate@binkert.org 7328232Snate@binkert.org cc_file = File('enums/%s.cc' % name) 7335517Snate@binkert.org env.Command(cc_file, [Value(name), Value(env['USE_PYTHON'])], 7348232Snate@binkert.org MakeAction(createEnumStrings, Transform("ENUM STR"))) 7358232Snate@binkert.org env.Depends(cc_file, depends + extra_deps) 7365517Snate@binkert.org Source(cc_file) 7378232Snate@binkert.org 7388232Snate@binkert.org hh_file = File('enums/%s.hh' % name) 7398232Snate@binkert.org env.Command(hh_file, Value(name), 7405517Snate@binkert.org MakeAction(createEnumDecls, Transform("ENUMDECL"))) 7418232Snate@binkert.org env.Depends(hh_file, depends + extra_deps) 7428232Snate@binkert.org 7438232Snate@binkert.org# Generate SimObject Python bindings wrapper files 7448232Snate@binkert.orgif env['USE_PYTHON']: 7458232Snate@binkert.org for name,simobj in sorted(sim_objects.iteritems()): 7468232Snate@binkert.org py_source = PySource.modules[simobj.__module__] 7475517Snate@binkert.org extra_deps = [ py_source.tnode ] 7488232Snate@binkert.org cc_file = File('python/_m5/param_%s.cc' % name) 7498232Snate@binkert.org env.Command(cc_file, Value(name), 7505517Snate@binkert.org MakeAction(createSimObjectPyBindWrapper, 7518232Snate@binkert.org Transform("SO PyBind"))) 7527673Snate@binkert.org env.Depends(cc_file, depends + extra_deps) 7535517Snate@binkert.org Source(cc_file) 7547673Snate@binkert.org 7555517Snate@binkert.org# Build all protocol buffers if we have got protoc and protobuf available 7568232Snate@binkert.orgif env['HAVE_PROTOBUF']: 7578232Snate@binkert.org for proto in ProtoBuf.all: 7588232Snate@binkert.org # Use both the source and header as the target, and the .proto 7595192Ssaidi@eecs.umich.edu # file as the source. When executing the protoc compiler, also 7608232Snate@binkert.org # specify the proto_path to avoid having the generated files 7618232Snate@binkert.org # include the path. 7628232Snate@binkert.org env.Command([proto.cc_file, proto.hh_file], proto.tnode, 7638232Snate@binkert.org MakeAction('$PROTOC --cpp_out ${TARGET.dir} ' 7648232Snate@binkert.org '--proto_path ${SOURCE.dir} $SOURCE', 7655192Ssaidi@eecs.umich.edu Transform("PROTOC"))) 7667674Snate@binkert.org 7675522Snate@binkert.org # Add the C++ source file 7685522Snate@binkert.org Source(proto.cc_file, tags=proto.tags) 7697674Snate@binkert.orgelif ProtoBuf.all: 7707674Snate@binkert.org print 'Got protobuf to build, but lacks support!' 7717674Snate@binkert.org Exit(1) 7727674Snate@binkert.org 7737674Snate@binkert.org# 7747674Snate@binkert.org# Handle debug flags 7757674Snate@binkert.org# 7767674Snate@binkert.orgdef makeDebugFlagCC(target, source, env): 7775522Snate@binkert.org assert(len(target) == 1 and len(source) == 1) 7785522Snate@binkert.org 7795522Snate@binkert.org code = code_formatter() 7805517Snate@binkert.org 7815522Snate@binkert.org # delay definition of CompoundFlags until after all the definition 7825517Snate@binkert.org # of all constituent SimpleFlags 7836143Snate@binkert.org comp_code = code_formatter() 7846727Ssteve.reinhardt@amd.com 7855522Snate@binkert.org # file header 7865522Snate@binkert.org code(''' 7875522Snate@binkert.org/* 7887674Snate@binkert.org * DO NOT EDIT THIS FILE! Automatically generated by SCons. 7895517Snate@binkert.org */ 7907673Snate@binkert.org 7917673Snate@binkert.org#include "base/debug.hh" 7927674Snate@binkert.org 7937673Snate@binkert.orgnamespace Debug { 7947674Snate@binkert.org 7957674Snate@binkert.org''') 7968946Sandreas.hansson@arm.com 7977674Snate@binkert.org for name, flag in sorted(source[0].read().iteritems()): 7987674Snate@binkert.org n, compound, desc = flag 7997674Snate@binkert.org assert n == name 8005522Snate@binkert.org 8015522Snate@binkert.org if not compound: 8027674Snate@binkert.org code('SimpleFlag $name("$name", "$desc");') 8037674Snate@binkert.org else: 8047674Snate@binkert.org comp_code('CompoundFlag $name("$name", "$desc",') 8057674Snate@binkert.org comp_code.indent() 8067673Snate@binkert.org last = len(compound) - 1 8077674Snate@binkert.org for i,flag in enumerate(compound): 8087674Snate@binkert.org if i != last: 8097674Snate@binkert.org comp_code('&$flag,') 8107674Snate@binkert.org else: 8117674Snate@binkert.org comp_code('&$flag);') 8127674Snate@binkert.org comp_code.dedent() 8137674Snate@binkert.org 8147674Snate@binkert.org code.append(comp_code) 8157811Ssteve.reinhardt@amd.com code() 8167674Snate@binkert.org code('} // namespace Debug') 8177673Snate@binkert.org 8185522Snate@binkert.org code.write(str(target[0])) 8196143Snate@binkert.org 8207756SAli.Saidi@ARM.comdef makeDebugFlagHH(target, source, env): 8217816Ssteve.reinhardt@amd.com assert(len(target) == 1 and len(source) == 1) 8227674Snate@binkert.org 8234382Sbinkertn@umich.edu val = eval(source[0].get_contents()) 8244382Sbinkertn@umich.edu name, compound, desc = val 8254382Sbinkertn@umich.edu 8264382Sbinkertn@umich.edu code = code_formatter() 8274382Sbinkertn@umich.edu 8284382Sbinkertn@umich.edu # file header boilerplate 8294382Sbinkertn@umich.edu code('''\ 8304382Sbinkertn@umich.edu/* 8314382Sbinkertn@umich.edu * DO NOT EDIT THIS FILE! Automatically generated by SCons. 8324382Sbinkertn@umich.edu */ 8336143Snate@binkert.org 834955SN/A#ifndef __DEBUG_${name}_HH__ 8352655Sstever@eecs.umich.edu#define __DEBUG_${name}_HH__ 8362655Sstever@eecs.umich.edu 8372655Sstever@eecs.umich.edunamespace Debug { 8382655Sstever@eecs.umich.edu''') 8392655Sstever@eecs.umich.edu 8405601Snate@binkert.org if compound: 8415601Snate@binkert.org code('class CompoundFlag;') 8428334Snate@binkert.org code('class SimpleFlag;') 8438334Snate@binkert.org 8448334Snate@binkert.org if compound: 8455522Snate@binkert.org code('extern CompoundFlag $name;') 8465863Snate@binkert.org for flag in compound: 8475601Snate@binkert.org code('extern SimpleFlag $flag;') 8485601Snate@binkert.org else: 8495601Snate@binkert.org code('extern SimpleFlag $name;') 8505863Snate@binkert.org 8518945Ssteve.reinhardt@amd.com code(''' 8525559Snate@binkert.org} 8535559Snate@binkert.org 8545559Snate@binkert.org#endif // __DEBUG_${name}_HH__ 8555559Snate@binkert.org''') 8568656Sandreas.hansson@arm.com 8578946Sandreas.hansson@arm.com code.write(str(target[0])) 8588614Sgblack@eecs.umich.edu 8598737Skoansin.tan@gmail.comfor name,flag in sorted(debug_flags.iteritems()): 8608737Skoansin.tan@gmail.com n, compound, desc = flag 8618737Skoansin.tan@gmail.com assert n == name 8628945Ssteve.reinhardt@amd.com 8638945Ssteve.reinhardt@amd.com hh_file = 'debug/%s.hh' % name 8648945Ssteve.reinhardt@amd.com env.Command(hh_file, Value(flag), 8658945Ssteve.reinhardt@amd.com MakeAction(makeDebugFlagHH, Transform("TRACING", 0))) 8666143Snate@binkert.org 8676143Snate@binkert.orgenv.Command('debug/flags.cc', Value(debug_flags), 8686143Snate@binkert.org MakeAction(makeDebugFlagCC, Transform("TRACING", 0))) 8696143Snate@binkert.orgSource('debug/flags.cc') 8706143Snate@binkert.org 8716143Snate@binkert.org# version tags 8726143Snate@binkert.orgtags = \ 8738945Ssteve.reinhardt@amd.comenv.Command('sim/tags.cc', None, 8748945Ssteve.reinhardt@amd.com MakeAction('util/cpt_upgrader.py --get-cc-file > $TARGET', 8756143Snate@binkert.org Transform("VER TAGS"))) 8766143Snate@binkert.orgenv.AlwaysBuild(tags) 8776143Snate@binkert.org 8786143Snate@binkert.org# Embed python files. All .py files that have been indicated by a 8796143Snate@binkert.org# PySource() call in a SConscript need to be embedded into the M5 8806143Snate@binkert.org# library. To do that, we compile the file to byte code, marshal the 8816143Snate@binkert.org# byte code, compress it, and then generate a c++ file that 8826143Snate@binkert.org# inserts the result into an array. 8836143Snate@binkert.orgdef embedPyFile(target, source, env): 8846143Snate@binkert.org def c_str(string): 8856143Snate@binkert.org if string is None: 8866143Snate@binkert.org return "0" 8876143Snate@binkert.org return '"%s"' % string 8888594Snate@binkert.org 8898594Snate@binkert.org '''Action function to compile a .py into a code object, marshal 8908594Snate@binkert.org it, compress it, and stick it into an asm file so the code appears 8918594Snate@binkert.org as just bytes with a label in the data section''' 8926143Snate@binkert.org 8936143Snate@binkert.org src = file(str(source[0]), 'r').read() 8946143Snate@binkert.org 8956143Snate@binkert.org pysource = PySource.tnodes[source[0]] 8966143Snate@binkert.org compiled = compile(src, pysource.abspath, 'exec') 8976240Snate@binkert.org marshalled = marshal.dumps(compiled) 8985554Snate@binkert.org compressed = zlib.compress(marshalled) 8995522Snate@binkert.org data = compressed 9005522Snate@binkert.org sym = pysource.symname 9015797Snate@binkert.org 9025797Snate@binkert.org code = code_formatter() 9035522Snate@binkert.org code('''\ 9045601Snate@binkert.org#include "sim/init.hh" 9058233Snate@binkert.org 9068233Snate@binkert.orgnamespace { 9078235Snate@binkert.org 9088235Snate@binkert.orgconst uint8_t data_${sym}[] = { 9098235Snate@binkert.org''') 9108235Snate@binkert.org code.indent() 9119003SAli.Saidi@ARM.com step = 16 9129003SAli.Saidi@ARM.com for i in xrange(0, len(data), step): 9138235Snate@binkert.org x = array.array('B', data[i:i+step]) 9148942Sgblack@eecs.umich.edu code(''.join('%d,' % d for d in x)) 9158235Snate@binkert.org code.dedent() 9166143Snate@binkert.org 9172655Sstever@eecs.umich.edu code('''}; 9186143Snate@binkert.org 9196143Snate@binkert.orgEmbeddedPython embedded_${sym}( 9208233Snate@binkert.org ${{c_str(pysource.arcname)}}, 9216143Snate@binkert.org ${{c_str(pysource.abspath)}}, 9226143Snate@binkert.org ${{c_str(pysource.modpath)}}, 9234007Ssaidi@eecs.umich.edu data_${sym}, 9244596Sbinkertn@umich.edu ${{len(data)}}, 9254007Ssaidi@eecs.umich.edu ${{len(marshalled)}}); 9264596Sbinkertn@umich.edu 9277756SAli.Saidi@ARM.com} // anonymous namespace 9287816Ssteve.reinhardt@amd.com''') 9298334Snate@binkert.org code.write(str(target[0])) 9308334Snate@binkert.org 9318334Snate@binkert.orgfor source in PySource.all: 9328334Snate@binkert.org env.Command(source.cpp, source.tnode, 9335601Snate@binkert.org MakeAction(embedPyFile, Transform("EMBED PY"))) 9345601Snate@binkert.org Source(source.cpp, tags=source.tags, add_tags='python') 9352655Sstever@eecs.umich.edu 936955SN/A######################################################################## 9373918Ssaidi@eecs.umich.edu# 9388946Sandreas.hansson@arm.com# Define binaries. Each different build type (debug, opt, etc.) gets 9393918Ssaidi@eecs.umich.edu# a slightly different build environment. 9403918Ssaidi@eecs.umich.edu# 9413918Ssaidi@eecs.umich.edu 9423918Ssaidi@eecs.umich.edu# List of constructed environments to pass back to SConstruct 9433918Ssaidi@eecs.umich.edudate_source = Source('base/date.cc', tags=[]) 9443918Ssaidi@eecs.umich.edu 9453918Ssaidi@eecs.umich.edu# Function to create a new build environment as clone of current 9463918Ssaidi@eecs.umich.edu# environment 'env' with modified object suffix and optional stripped 9473918Ssaidi@eecs.umich.edu# binary. Additional keyword arguments are appended to corresponding 9483918Ssaidi@eecs.umich.edu# build environment vars. 9493918Ssaidi@eecs.umich.edudef makeEnv(env, label, objsfx, strip=False, disable_partial=False, **kwargs): 9503918Ssaidi@eecs.umich.edu # SCons doesn't know to append a library suffix when there is a '.' in the 9513940Ssaidi@eecs.umich.edu # name. Use '_' instead. 9523940Ssaidi@eecs.umich.edu libname = 'gem5_' + label 9533940Ssaidi@eecs.umich.edu exename = 'gem5.' + label 9543942Ssaidi@eecs.umich.edu secondary_exename = 'm5.' + label 9553940Ssaidi@eecs.umich.edu 9568946Sandreas.hansson@arm.com new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's') 9578946Sandreas.hansson@arm.com new_env.Label = label 9588946Sandreas.hansson@arm.com new_env.Append(**kwargs) 9598946Sandreas.hansson@arm.com 9608946Sandreas.hansson@arm.com make_static = lambda source: new_env.StaticObject(source.tnode) 9613515Ssaidi@eecs.umich.edu make_shared = lambda source: new_env.SharedObject(source.tnode) 9623918Ssaidi@eecs.umich.edu 9634762Snate@binkert.org lib_sources = Source.all.with_tag('gem5 lib') 9643515Ssaidi@eecs.umich.edu 9658881Smarc.orr@gmail.com # Without Python, leave out all Python content from the library 9668881Smarc.orr@gmail.com # builds. The option doesn't affect gem5 built as a program 9678881Smarc.orr@gmail.com if GetOption('without_python'): 9688881Smarc.orr@gmail.com lib_sources = lib_sources.without_tag('python') 9698881Smarc.orr@gmail.com 9708881Smarc.orr@gmail.com static_objs = [] 9718881Smarc.orr@gmail.com shared_objs = [] 9728881Smarc.orr@gmail.com 9738881Smarc.orr@gmail.com for s in lib_sources.with_tag(Source.ungrouped_tag): 9748881Smarc.orr@gmail.com static_objs.append(make_static(s)) 9758881Smarc.orr@gmail.com shared_objs.append(make_shared(s)) 9768881Smarc.orr@gmail.com 9778881Smarc.orr@gmail.com for group in Source.source_groups: 9788881Smarc.orr@gmail.com srcs = lib_sources.with_tag(Source.link_group_tag(group)) 9798881Smarc.orr@gmail.com if not srcs: 9808881Smarc.orr@gmail.com continue 9818881Smarc.orr@gmail.com 9828881Smarc.orr@gmail.com group_static = [ make_static(s) for s in srcs ] 9838881Smarc.orr@gmail.com group_shared = [ make_shared(s) for s in srcs ] 9848881Smarc.orr@gmail.com 9858881Smarc.orr@gmail.com # If partial linking is disabled, add these sources to the build 9868881Smarc.orr@gmail.com # directly, and short circuit this loop. 9878881Smarc.orr@gmail.com if disable_partial: 9888881Smarc.orr@gmail.com static_objs.extend(group_static) 9898881Smarc.orr@gmail.com shared_objs.extend(group_shared) 9908881Smarc.orr@gmail.com continue 9918881Smarc.orr@gmail.com 9928881Smarc.orr@gmail.com # Set up the static partially linked objects. 993955SN/A file_name = new_env.subst("${OBJPREFIX}lib${OBJSUFFIX}.partial") 994955SN/A target = File(joinpath(group, file_name)) 9958881Smarc.orr@gmail.com partial = env.PartialStatic(target=target, source=group_static) 9968881Smarc.orr@gmail.com static_objs.extend(partial) 9978881Smarc.orr@gmail.com 9988881Smarc.orr@gmail.com # Set up the shared partially linked objects. 999955SN/A file_name = new_env.subst("${SHOBJPREFIX}lib${SHOBJSUFFIX}.partial") 1000955SN/A target = File(joinpath(group, file_name)) 10018881Smarc.orr@gmail.com partial = env.PartialShared(target=target, source=group_shared) 10028881Smarc.orr@gmail.com shared_objs.extend(partial) 10038881Smarc.orr@gmail.com 10048881Smarc.orr@gmail.com static_date = make_static(date_source) 1005955SN/A new_env.Depends(static_date, static_objs) 1006955SN/A static_objs.extend(static_date) 10078881Smarc.orr@gmail.com 10088881Smarc.orr@gmail.com shared_date = make_shared(date_source) 10098881Smarc.orr@gmail.com new_env.Depends(shared_date, shared_objs) 10108881Smarc.orr@gmail.com shared_objs.extend(shared_date) 10118881Smarc.orr@gmail.com 10121869SN/A # First make a library of everything but main() so other programs can 10131869SN/A # link against m5. 1014 static_lib = new_env.StaticLibrary(libname, static_objs) 1015 shared_lib = new_env.SharedLibrary(libname, shared_objs) 1016 1017 # Now link a stub with main() and the static library. 1018 main_objs = [ make_static(s) for s in Source.all.with_tag('main') ] 1019 1020 for test in UnitTest.all: 1021 test_sources = Source.all.with_tag(str(test.target)) 1022 test_objs = [ make_static(s) for s in test_sources ] 1023 if test.main: 1024 test_objs += main_objs 1025 path = 'unittest/%s.%s' % (test.target, label) 1026 new_env.Program(path, test_objs + static_objs) 1027 1028 gtest_env = new_env.Clone() 1029 gtest_env.Append(LIBS=gtest_env['GTEST_LIBS']) 1030 gtest_env.Append(CPPFLAGS=gtest_env['GTEST_CPPFLAGS']) 1031 for test in GTest.all: 1032 test_sources = Source.all.with_tag(str(test.target)) 1033 test_objs = [ gtest_env.StaticObject(s.tnode) for s in test_sources ] 1034 gtest_env.Program('unittest/%s.%s' % (test.target, label), test_objs) 1035 1036 progname = exename 1037 if strip: 1038 progname += '.unstripped' 1039 1040 targets = new_env.Program(progname, main_objs + static_objs) 1041 1042 if strip: 1043 if sys.platform == 'sunos5': 1044 cmd = 'cp $SOURCE $TARGET; strip $TARGET' 1045 else: 1046 cmd = 'strip $SOURCE -o $TARGET' 1047 targets = new_env.Command(exename, progname, 1048 MakeAction(cmd, Transform("STRIP"))) 1049 1050 new_env.Command(secondary_exename, exename, 1051 MakeAction('ln $SOURCE $TARGET', Transform("HARDLINK"))) 1052 1053 new_env.M5Binary = targets[0] 1054 1055 # Set up regression tests. 1056 SConscript(os.path.join(env.root.abspath, 'tests', 'SConscript'), 1057 variant_dir=Dir('tests').Dir(new_env.Label), 1058 exports={ 'env' : new_env }, duplicate=False) 1059 1060# Start out with the compiler flags common to all compilers, 1061# i.e. they all use -g for opt and -g -pg for prof 1062ccflags = {'debug' : [], 'opt' : ['-g'], 'fast' : [], 'prof' : ['-g', '-pg'], 1063 'perf' : ['-g']} 1064 1065# Start out with the linker flags common to all linkers, i.e. -pg for 1066# prof, and -lprofiler for perf. The -lprofile flag is surrounded by 1067# no-as-needed and as-needed as the binutils linker is too clever and 1068# simply doesn't link to the library otherwise. 1069ldflags = {'debug' : [], 'opt' : [], 'fast' : [], 'prof' : ['-pg'], 1070 'perf' : ['-Wl,--no-as-needed', '-lprofiler', '-Wl,--as-needed']} 1071 1072# For Link Time Optimization, the optimisation flags used to compile 1073# individual files are decoupled from those used at link time 1074# (i.e. you can compile with -O3 and perform LTO with -O0), so we need 1075# to also update the linker flags based on the target. 1076if env['GCC']: 1077 if sys.platform == 'sunos5': 1078 ccflags['debug'] += ['-gstabs+'] 1079 else: 1080 ccflags['debug'] += ['-ggdb3'] 1081 ldflags['debug'] += ['-O0'] 1082 # opt, fast, prof and perf all share the same cc flags, also add 1083 # the optimization to the ldflags as LTO defers the optimization 1084 # to link time 1085 for target in ['opt', 'fast', 'prof', 'perf']: 1086 ccflags[target] += ['-O3'] 1087 ldflags[target] += ['-O3'] 1088 1089 ccflags['fast'] += env['LTO_CCFLAGS'] 1090 ldflags['fast'] += env['LTO_LDFLAGS'] 1091elif env['CLANG']: 1092 ccflags['debug'] += ['-g', '-O0'] 1093 # opt, fast, prof and perf all share the same cc flags 1094 for target in ['opt', 'fast', 'prof', 'perf']: 1095 ccflags[target] += ['-O3'] 1096else: 1097 print 'Unknown compiler, please fix compiler options' 1098 Exit(1) 1099 1100 1101# To speed things up, we only instantiate the build environments we 1102# need. We try to identify the needed environment for each target; if 1103# we can't, we fall back on instantiating all the environments just to 1104# be safe. 1105target_types = ['debug', 'opt', 'fast', 'prof', 'perf'] 1106obj2target = {'do': 'debug', 'o': 'opt', 'fo': 'fast', 'po': 'prof', 1107 'gpo' : 'perf'} 1108 1109def identifyTarget(t): 1110 ext = t.split('.')[-1] 1111 if ext in target_types: 1112 return ext 1113 if obj2target.has_key(ext): 1114 return obj2target[ext] 1115 match = re.search(r'/tests/([^/]+)/', t) 1116 if match and match.group(1) in target_types: 1117 return match.group(1) 1118 return 'all' 1119 1120needed_envs = [identifyTarget(target) for target in BUILD_TARGETS] 1121if 'all' in needed_envs: 1122 needed_envs += target_types 1123 1124# Debug binary 1125if 'debug' in needed_envs: 1126 makeEnv(env, 'debug', '.do', 1127 CCFLAGS = Split(ccflags['debug']), 1128 CPPDEFINES = ['DEBUG', 'TRACING_ON=1'], 1129 LINKFLAGS = Split(ldflags['debug'])) 1130 1131# Optimized binary 1132if 'opt' in needed_envs: 1133 makeEnv(env, 'opt', '.o', 1134 CCFLAGS = Split(ccflags['opt']), 1135 CPPDEFINES = ['TRACING_ON=1'], 1136 LINKFLAGS = Split(ldflags['opt'])) 1137 1138# "Fast" binary 1139if 'fast' in needed_envs: 1140 disable_partial = \ 1141 env.get('BROKEN_INCREMENTAL_LTO', False) and \ 1142 GetOption('force_lto') 1143 makeEnv(env, 'fast', '.fo', strip = True, 1144 CCFLAGS = Split(ccflags['fast']), 1145 CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 1146 LINKFLAGS = Split(ldflags['fast']), 1147 disable_partial=disable_partial) 1148 1149# Profiled binary using gprof 1150if 'prof' in needed_envs: 1151 makeEnv(env, 'prof', '.po', 1152 CCFLAGS = Split(ccflags['prof']), 1153 CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 1154 LINKFLAGS = Split(ldflags['prof'])) 1155 1156# Profiled binary using google-pprof 1157if 'perf' in needed_envs: 1158 makeEnv(env, 'perf', '.gpo', 1159 CCFLAGS = Split(ccflags['perf']), 1160 CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 1161 LINKFLAGS = Split(ldflags['perf'])) 1162