SConscript revision 12306
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 3711974Sgabeblack@google.comimport subprocess 38955SN/Aimport sys 395522Snate@binkert.orgimport zlib 404202Sbinkertn@umich.edu 415742Snate@binkert.orgfrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath 42955SN/A 434381Sbinkertn@umich.eduimport SCons 444381Sbinkertn@umich.edu 458334Snate@binkert.orgfrom gem5_scons import Transform 46955SN/A 47955SN/A# This file defines how to build a particular configuration of gem5 484202Sbinkertn@umich.edu# based on variable settings in the 'env' build environment. 49955SN/A 504382Sbinkertn@umich.eduImport('*') 514382Sbinkertn@umich.edu 524382Sbinkertn@umich.edu# Children need to see the environment 536654Snate@binkert.orgExport('env') 545517Snate@binkert.org 558614Sgblack@eecs.umich.edubuild_env = [(opt, env[opt]) for opt in export_vars] 567674Snate@binkert.org 576143Snate@binkert.orgfrom m5.util import code_formatter, compareVersions 586143Snate@binkert.org 596143Snate@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. 648233Snate@binkert.org 658334Snate@binkert.orgclass SourceList(list): 668334Snate@binkert.org def with_tags_that(self, predicate): 6710453SAndrew.Bardsley@arm.com '''Return a list of sources with tags that satisfy a predicate.''' 6810453SAndrew.Bardsley@arm.com def match(source): 698233Snate@binkert.org return predicate(source.tags) 708233Snate@binkert.org return SourceList(filter(match, self)) 718233Snate@binkert.org 728233Snate@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) 7511983Sgabeblack@google.com 7611983Sgabeblack@google.com def with_all_tags(self, *tags): 7711983Sgabeblack@google.com '''Return a list of sources with all of the supplied tags.''' 7811983Sgabeblack@google.com return self.with_tags_that(lambda stags: tags <= stags) 7911983Sgabeblack@google.com 8011983Sgabeblack@google.com def with_tag(self, tag): 8111983Sgabeblack@google.com '''Return a list of sources with the supplied tag.''' 8211983Sgabeblack@google.com return self.with_tags_that(lambda stags: tag in stags) 8311983Sgabeblack@google.com 8411983Sgabeblack@google.com def without_tags(self, *tags): 8511983Sgabeblack@google.com '''Return a list of sources without any of the supplied tags.''' 866143Snate@binkert.org return self.with_tags_that(lambda stags: len(tags & stags) == 0) 878233Snate@binkert.org 888233Snate@binkert.org def without_tag(self, tag): 898233Snate@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) 916143Snate@binkert.org 926143Snate@binkert.orgclass SourceMeta(type): 9311308Santhony.gutierrez@amd.com '''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) 9711983Sgabeblack@google.com cls.all = SourceList() 9811983Sgabeblack@google.com 994762Snate@binkert.orgclass SourceFile(object): 1006143Snate@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 1038233Snate@binkert.org describing arbitrary properties of the source file.''' 1048233Snate@binkert.org __metaclass__ = SourceMeta 1058233Snate@binkert.org def __init__(self, source, tags=None, add_tags=None): 1066143Snate@binkert.org if tags is None: 1078233Snate@binkert.org tags='gem5 lib' 1088233Snate@binkert.org if isinstance(tags, basestring): 1098233Snate@binkert.org tags = set([tags]) 1108233Snate@binkert.org if isinstance(add_tags, basestring): 1116143Snate@binkert.org add_tags = set([add_tags]) 1126143Snate@binkert.org if add_tags: 1136143Snate@binkert.org tags = tags | add_tags 1146143Snate@binkert.org self.tags = set(tags) 1156143Snate@binkert.org 1166143Snate@binkert.org tnode = source 1176143Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1186143Snate@binkert.org tnode = File(source) 1196143Snate@binkert.org 1207065Snate@binkert.org self.tnode = tnode 1216143Snate@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 1458233Snate@binkert.org 1468233Snate@binkert.org return self.basename[:index], self.basename[index+1:] 1478233Snate@binkert.org 1488233Snate@binkert.org def __lt__(self, other): return self.filename < other.filename 1498233Snate@binkert.org def __le__(self, other): return self.filename <= other.filename 1508233Snate@binkert.org def __gt__(self, other): return self.filename > other.filename 1518233Snate@binkert.org def __ge__(self, other): return self.filename >= other.filename 1528233Snate@binkert.org def __eq__(self, other): return self.filename == other.filename 1536143Snate@binkert.org def __ne__(self, other): return self.filename != other.filename 1546143Snate@binkert.org 1556143Snate@binkert.orgclass Source(SourceFile): 1566143Snate@binkert.org ungrouped_tag = 'No link group' 1576143Snate@binkert.org source_groups = set() 1586143Snate@binkert.org 1599982Satgutier@umich.edu _current_group_tag = ungrouped_tag 16010196SCurtis.Dunham@arm.com 16110196SCurtis.Dunham@arm.com @staticmethod 16210196SCurtis.Dunham@arm.com def link_group_tag(group): 16310196SCurtis.Dunham@arm.com return 'link group: %s' % group 16410196SCurtis.Dunham@arm.com 16510196SCurtis.Dunham@arm.com @classmethod 16610196SCurtis.Dunham@arm.com def set_group(cls, group): 16710196SCurtis.Dunham@arm.com new_tag = Source.link_group_tag(group) 1686143Snate@binkert.org Source._current_group_tag = new_tag 16911983Sgabeblack@google.com Source.source_groups.add(group) 17011983Sgabeblack@google.com 17111983Sgabeblack@google.com def _add_link_group_tag(self): 17211983Sgabeblack@google.com self.tags.add(Source._current_group_tag) 17311983Sgabeblack@google.com 17411983Sgabeblack@google.com '''Add a c/c++ source file to the build''' 17511983Sgabeblack@google.com def __init__(self, source, tags=None, add_tags=None): 17611983Sgabeblack@google.com '''specify the source file, and any tags''' 17711983Sgabeblack@google.com super(Source, self).__init__(source, tags, add_tags) 1786143Snate@binkert.org self._add_link_group_tag() 17911988Sandreas.sandberg@arm.com 1808233Snate@binkert.orgclass PySource(SourceFile): 1818233Snate@binkert.org '''Add a python source file to the named package''' 1826143Snate@binkert.org invalid_sym_char = re.compile('[^A-z0-9_]') 1838945Ssteve.reinhardt@amd.com modules = {} 1846143Snate@binkert.org tnodes = {} 18511983Sgabeblack@google.com symnames = {} 18611983Sgabeblack@google.com 1876143Snate@binkert.org def __init__(self, package, source, tags=None, add_tags=None): 1886143Snate@binkert.org '''specify the python package, the source file, and any tags''' 1895522Snate@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' 1939982Satgutier@umich.edu 1948233Snate@binkert.org if package: 1958233Snate@binkert.org path = package.split('.') 1968233Snate@binkert.org else: 1976143Snate@binkert.org path = [] 1986143Snate@binkert.org 1996143Snate@binkert.org modpath = path[:] 2006143Snate@binkert.org if modname != '__init__': 2015522Snate@binkert.org modpath += [ modname ] 2025522Snate@binkert.org modpath = '.'.join(modpath) 2035522Snate@binkert.org 2045522Snate@binkert.org arcpath = path + [ self.basename ] 2055604Snate@binkert.org abspath = self.snode.abspath 2065604Snate@binkert.org if not exists(abspath): 2076143Snate@binkert.org abspath = self.tnode.abspath 2086143Snate@binkert.org 2094762Snate@binkert.org self.package = package 2104762Snate@binkert.org self.modname = modname 2116143Snate@binkert.org self.modpath = modpath 2126727Ssteve.reinhardt@amd.com self.arcname = joinpath(*arcpath) 2136727Ssteve.reinhardt@amd.com self.abspath = abspath 2146727Ssteve.reinhardt@amd.com self.compiled = File(self.filename + 'c') 2154762Snate@binkert.org self.cpp = File(self.filename + '.cc') 2166143Snate@binkert.org self.symname = PySource.invalid_sym_char.sub('_', modpath) 2176143Snate@binkert.org 2186143Snate@binkert.org PySource.modules[modpath] = self 2196143Snate@binkert.org PySource.tnodes[self.tnode] = self 2206727Ssteve.reinhardt@amd.com PySource.symnames[self.symname] = self 2216143Snate@binkert.org 2227674Snate@binkert.orgclass SimObject(PySource): 2237674Snate@binkert.org '''Add a SimObject python file as a python source object and add 2245604Snate@binkert.org it to a list of sim object modules''' 2256143Snate@binkert.org 2266143Snate@binkert.org fixed = False 2276143Snate@binkert.org modnames = [] 2284762Snate@binkert.org 2296143Snate@binkert.org def __init__(self, source, tags=None, add_tags=None): 2304762Snate@binkert.org '''Specify the source file and any tags (automatically in 2314762Snate@binkert.org the m5.objects package)''' 2324762Snate@binkert.org super(SimObject, self).__init__('m5.objects', source, tags, add_tags) 2336143Snate@binkert.org if self.fixed: 2346143Snate@binkert.org raise AttributeError, "Too late to call SimObject now." 2354762Snate@binkert.org 2368233Snate@binkert.org bisect.insort_right(SimObject.modnames, self.modname) 2378233Snate@binkert.org 2388233Snate@binkert.orgclass ProtoBuf(SourceFile): 2398233Snate@binkert.org '''Add a Protocol Buffer to build''' 2406143Snate@binkert.org 2416143Snate@binkert.org def __init__(self, source, tags=None, add_tags=None): 2424762Snate@binkert.org '''Specify the source file, and any tags''' 2436143Snate@binkert.org super(ProtoBuf, self).__init__(source, tags, add_tags) 2444762Snate@binkert.org 2459396Sandreas.hansson@arm.com # Get the file name and the extension 2469396Sandreas.hansson@arm.com modname,ext = self.extname 2479396Sandreas.hansson@arm.com assert ext == 'proto' 2489396Sandreas.hansson@arm.com 2499396Sandreas.hansson@arm.com # Currently, we stick to generating the C++ headers, so we 2509396Sandreas.hansson@arm.com # only need to track the source and header. 2519396Sandreas.hansson@arm.com self.cc_file = File(modname + '.pb.cc') 2529396Sandreas.hansson@arm.com self.hh_file = File(modname + '.pb.h') 2539396Sandreas.hansson@arm.com 2549396Sandreas.hansson@arm.comclass UnitTest(object): 2559396Sandreas.hansson@arm.com '''Create a UnitTest''' 2569396Sandreas.hansson@arm.com 2579396Sandreas.hansson@arm.com all = [] 2589930Sandreas.hansson@arm.com def __init__(self, target, *sources, **kwargs): 2599930Sandreas.hansson@arm.com '''Specify the target name and any sources. Sources that are 2609396Sandreas.hansson@arm.com not SourceFiles are evalued with Source(). All files are 2618235Snate@binkert.org tagged with the name of the UnitTest target.''' 2628235Snate@binkert.org 2636143Snate@binkert.org srcs = SourceList() 2648235Snate@binkert.org for src in sources: 2659003SAli.Saidi@ARM.com if not isinstance(src, SourceFile): 2668235Snate@binkert.org src = Source(src, tags=str(target)) 2678235Snate@binkert.org srcs.append(src) 2688235Snate@binkert.org 2698235Snate@binkert.org self.sources = srcs 2708235Snate@binkert.org self.target = target 2718235Snate@binkert.org self.main = kwargs.get('main', False) 2728235Snate@binkert.org UnitTest.all.append(self) 2738235Snate@binkert.org 2748235Snate@binkert.org# Children should have access 2758235Snate@binkert.orgExport('Source') 2768235Snate@binkert.orgExport('PySource') 2778235Snate@binkert.orgExport('SimObject') 2788235Snate@binkert.orgExport('ProtoBuf') 2798235Snate@binkert.orgExport('UnitTest') 2809003SAli.Saidi@ARM.com 2818235Snate@binkert.org######################################################################## 2825584Snate@binkert.org# 2834382Sbinkertn@umich.edu# Debug Flags 2844202Sbinkertn@umich.edu# 2854382Sbinkertn@umich.edudebug_flags = {} 2864382Sbinkertn@umich.edudef DebugFlag(name, desc=None): 2879396Sandreas.hansson@arm.com if name in debug_flags: 2885584Snate@binkert.org raise AttributeError, "Flag %s already specified" % name 2894382Sbinkertn@umich.edu debug_flags[name] = (name, (), desc) 2904382Sbinkertn@umich.edu 2914382Sbinkertn@umich.edudef CompoundFlag(name, flags, desc=None): 2928232Snate@binkert.org if name in debug_flags: 2935192Ssaidi@eecs.umich.edu raise AttributeError, "Flag %s already specified" % name 2948232Snate@binkert.org 2958232Snate@binkert.org compound = tuple(flags) 2968232Snate@binkert.org debug_flags[name] = (name, compound, desc) 2975192Ssaidi@eecs.umich.edu 2988232Snate@binkert.orgExport('DebugFlag') 2995192Ssaidi@eecs.umich.eduExport('CompoundFlag') 3005799Snate@binkert.org 3018232Snate@binkert.org######################################################################## 3025192Ssaidi@eecs.umich.edu# 3035192Ssaidi@eecs.umich.edu# Set some compiler variables 3045192Ssaidi@eecs.umich.edu# 3058232Snate@binkert.org 3065192Ssaidi@eecs.umich.edu# Include file paths are rooted in this directory. SCons will 3078232Snate@binkert.org# automatically expand '.' to refer to both the source directory and 3085192Ssaidi@eecs.umich.edu# the corresponding build directory to pick up generated include 3095192Ssaidi@eecs.umich.edu# files. 3105192Ssaidi@eecs.umich.eduenv.Append(CPPPATH=Dir('.')) 3115192Ssaidi@eecs.umich.edu 3124382Sbinkertn@umich.edufor extra_dir in extras_dir_list: 3134382Sbinkertn@umich.edu env.Append(CPPPATH=Dir(extra_dir)) 3144382Sbinkertn@umich.edu 3152667Sstever@eecs.umich.edu# Workaround for bug in SCons version > 0.97d20071212 3162667Sstever@eecs.umich.edu# Scons bug id: 2006 gem5 Bug id: 308 3172667Sstever@eecs.umich.edufor root, dirs, files in os.walk(base_dir, topdown=True): 3182667Sstever@eecs.umich.edu Dir(root[len(base_dir) + 1:]) 3192667Sstever@eecs.umich.edu 3202667Sstever@eecs.umich.edu######################################################################## 3215742Snate@binkert.org# 3225742Snate@binkert.org# Walk the tree and execute all SConscripts in subdirectories 3235742Snate@binkert.org# 3245793Snate@binkert.org 3258334Snate@binkert.orghere = Dir('.').srcnode().abspath 3265793Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True): 3275793Snate@binkert.org if root == here: 3285793Snate@binkert.org # we don't want to recurse back into this SConscript 3294382Sbinkertn@umich.edu continue 3304762Snate@binkert.org 3315344Sstever@gmail.com if 'SConscript' in files: 3324382Sbinkertn@umich.edu build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:]) 3335341Sstever@gmail.com Source.set_group(build_dir) 3345742Snate@binkert.org SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir) 3355742Snate@binkert.org 3365742Snate@binkert.orgfor extra_dir in extras_dir_list: 3375742Snate@binkert.org prefix_len = len(dirname(extra_dir)) + 1 3385742Snate@binkert.org 3394762Snate@binkert.org # Also add the corresponding build directory to pick up generated 3405742Snate@binkert.org # include files. 3415742Snate@binkert.org env.Append(CPPPATH=Dir(joinpath(env['BUILDDIR'], extra_dir[prefix_len:]))) 34211984Sgabeblack@google.com 3437722Sgblack@eecs.umich.edu for root, dirs, files in os.walk(extra_dir, topdown=True): 3445742Snate@binkert.org # if build lives in the extras directory, don't walk down it 3455742Snate@binkert.org if 'build' in dirs: 3465742Snate@binkert.org dirs.remove('build') 3479930Sandreas.hansson@arm.com 3489930Sandreas.hansson@arm.com if 'SConscript' in files: 3499930Sandreas.hansson@arm.com build_dir = joinpath(env['BUILDDIR'], root[prefix_len:]) 3509930Sandreas.hansson@arm.com SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir) 3519930Sandreas.hansson@arm.com 3525742Snate@binkert.orgfor opt in export_vars: 3538242Sbradley.danofsky@amd.com env.ConfigFile(opt) 3548242Sbradley.danofsky@amd.com 3558242Sbradley.danofsky@amd.comdef makeTheISA(source, target, env): 3568242Sbradley.danofsky@amd.com isas = [ src.get_contents() for src in source ] 3575341Sstever@gmail.com target_isa = env['TARGET_ISA'] 3585742Snate@binkert.org def define(isa): 3597722Sgblack@eecs.umich.edu return isa.upper() + '_ISA' 3604773Snate@binkert.org 3616108Snate@binkert.org def namespace(isa): 3621858SN/A return isa[0].upper() + isa[1:].lower() + 'ISA' 3631085SN/A 3646658Snate@binkert.org 3656658Snate@binkert.org code = code_formatter() 3667673Snate@binkert.org code('''\ 3676658Snate@binkert.org#ifndef __CONFIG_THE_ISA_HH__ 3686658Snate@binkert.org#define __CONFIG_THE_ISA_HH__ 36911308Santhony.gutierrez@amd.com 3706658Snate@binkert.org''') 37111308Santhony.gutierrez@amd.com 3726658Snate@binkert.org # create defines for the preprocessing and compile-time determination 3736658Snate@binkert.org for i,isa in enumerate(isas): 3747673Snate@binkert.org code('#define $0 $1', define(isa), i + 1) 3757673Snate@binkert.org code() 3767673Snate@binkert.org 3777673Snate@binkert.org # create an enum for any run-time determination of the ISA, we 3787673Snate@binkert.org # reuse the same name as the namespaces 3797673Snate@binkert.org code('enum class Arch {') 3807673Snate@binkert.org for i,isa in enumerate(isas): 38110467Sandreas.hansson@arm.com if i + 1 == len(isas): 3826658Snate@binkert.org code(' $0 = $1', namespace(isa), define(isa)) 3837673Snate@binkert.org else: 38410467Sandreas.hansson@arm.com code(' $0 = $1,', namespace(isa), define(isa)) 38510467Sandreas.hansson@arm.com code('};') 38610467Sandreas.hansson@arm.com 38710467Sandreas.hansson@arm.com code(''' 38810467Sandreas.hansson@arm.com 38910467Sandreas.hansson@arm.com#define THE_ISA ${{define(target_isa)}} 39010467Sandreas.hansson@arm.com#define TheISA ${{namespace(target_isa)}} 39110467Sandreas.hansson@arm.com#define THE_ISA_STR "${{target_isa}}" 39210467Sandreas.hansson@arm.com 39310467Sandreas.hansson@arm.com#endif // __CONFIG_THE_ISA_HH__''') 39410467Sandreas.hansson@arm.com 3957673Snate@binkert.org code.write(str(target[0])) 3967673Snate@binkert.org 3977673Snate@binkert.orgenv.Command('config/the_isa.hh', map(Value, all_isa_list), 3987673Snate@binkert.org MakeAction(makeTheISA, Transform("CFG ISA", 0))) 3997673Snate@binkert.org 4009048SAli.Saidi@ARM.comdef makeTheGPUISA(source, target, env): 4017673Snate@binkert.org isas = [ src.get_contents() for src in source ] 4027673Snate@binkert.org target_gpu_isa = env['TARGET_GPU_ISA'] 4037673Snate@binkert.org def define(isa): 4047673Snate@binkert.org return isa.upper() + '_ISA' 4056658Snate@binkert.org 4067756SAli.Saidi@ARM.com def namespace(isa): 4077816Ssteve.reinhardt@amd.com return isa[0].upper() + isa[1:].lower() + 'ISA' 4086658Snate@binkert.org 40911308Santhony.gutierrez@amd.com 41011308Santhony.gutierrez@amd.com code = code_formatter() 41111308Santhony.gutierrez@amd.com code('''\ 41211308Santhony.gutierrez@amd.com#ifndef __CONFIG_THE_GPU_ISA_HH__ 41311308Santhony.gutierrez@amd.com#define __CONFIG_THE_GPU_ISA_HH__ 41411308Santhony.gutierrez@amd.com 41511308Santhony.gutierrez@amd.com''') 41611308Santhony.gutierrez@amd.com 41711308Santhony.gutierrez@amd.com # create defines for the preprocessing and compile-time determination 41811308Santhony.gutierrez@amd.com for i,isa in enumerate(isas): 41911308Santhony.gutierrez@amd.com code('#define $0 $1', define(isa), i + 1) 42011308Santhony.gutierrez@amd.com code() 42111308Santhony.gutierrez@amd.com 42211308Santhony.gutierrez@amd.com # create an enum for any run-time determination of the ISA, we 42311308Santhony.gutierrez@amd.com # reuse the same name as the namespaces 42411308Santhony.gutierrez@amd.com code('enum class GPUArch {') 42511308Santhony.gutierrez@amd.com for i,isa in enumerate(isas): 42611308Santhony.gutierrez@amd.com if i + 1 == len(isas): 42711308Santhony.gutierrez@amd.com code(' $0 = $1', namespace(isa), define(isa)) 42811308Santhony.gutierrez@amd.com else: 42911308Santhony.gutierrez@amd.com code(' $0 = $1,', namespace(isa), define(isa)) 43011308Santhony.gutierrez@amd.com code('};') 43111308Santhony.gutierrez@amd.com 43211308Santhony.gutierrez@amd.com code(''' 43311308Santhony.gutierrez@amd.com 43411308Santhony.gutierrez@amd.com#define THE_GPU_ISA ${{define(target_gpu_isa)}} 43511308Santhony.gutierrez@amd.com#define TheGpuISA ${{namespace(target_gpu_isa)}} 43611308Santhony.gutierrez@amd.com#define THE_GPU_ISA_STR "${{target_gpu_isa}}" 43711308Santhony.gutierrez@amd.com 43811308Santhony.gutierrez@amd.com#endif // __CONFIG_THE_GPU_ISA_HH__''') 43911308Santhony.gutierrez@amd.com 44011308Santhony.gutierrez@amd.com code.write(str(target[0])) 44111308Santhony.gutierrez@amd.com 44211308Santhony.gutierrez@amd.comenv.Command('config/the_gpu_isa.hh', map(Value, all_gpu_isa_list), 44311308Santhony.gutierrez@amd.com MakeAction(makeTheGPUISA, Transform("CFG ISA", 0))) 44411308Santhony.gutierrez@amd.com 44511308Santhony.gutierrez@amd.com######################################################################## 44611308Santhony.gutierrez@amd.com# 44711308Santhony.gutierrez@amd.com# Prevent any SimObjects from being added after this point, they 44811308Santhony.gutierrez@amd.com# should all have been added in the SConscripts above 44911308Santhony.gutierrez@amd.com# 45011308Santhony.gutierrez@amd.comSimObject.fixed = True 45111308Santhony.gutierrez@amd.com 45211308Santhony.gutierrez@amd.comclass DictImporter(object): 45311308Santhony.gutierrez@amd.com '''This importer takes a dictionary of arbitrary module names that 4544382Sbinkertn@umich.edu map to arbitrary filenames.''' 4554382Sbinkertn@umich.edu def __init__(self, modules): 4564762Snate@binkert.org self.modules = modules 4574762Snate@binkert.org self.installed = set() 4584762Snate@binkert.org 4596654Snate@binkert.org def __del__(self): 4606654Snate@binkert.org self.unload() 4615517Snate@binkert.org 4625517Snate@binkert.org def unload(self): 4635517Snate@binkert.org import sys 4645517Snate@binkert.org for module in self.installed: 4655517Snate@binkert.org del sys.modules[module] 4665517Snate@binkert.org self.installed = set() 4675517Snate@binkert.org 4685517Snate@binkert.org def find_module(self, fullname, path): 4695517Snate@binkert.org if fullname == 'm5.defines': 4705517Snate@binkert.org return self 4715517Snate@binkert.org 4725517Snate@binkert.org if fullname == 'm5.objects': 4735517Snate@binkert.org return self 4745517Snate@binkert.org 4755517Snate@binkert.org if fullname.startswith('_m5'): 4765517Snate@binkert.org return None 4775517Snate@binkert.org 4786654Snate@binkert.org source = self.modules.get(fullname, None) 4795517Snate@binkert.org if source is not None and fullname.startswith('m5.objects'): 4805517Snate@binkert.org return self 4815517Snate@binkert.org 4825517Snate@binkert.org return None 4835517Snate@binkert.org 48411802Sandreas.sandberg@arm.com def load_module(self, fullname): 4855517Snate@binkert.org mod = imp.new_module(fullname) 4865517Snate@binkert.org sys.modules[fullname] = mod 4876143Snate@binkert.org self.installed.add(fullname) 4886654Snate@binkert.org 4895517Snate@binkert.org mod.__loader__ = self 4905517Snate@binkert.org if fullname == 'm5.objects': 4915517Snate@binkert.org mod.__path__ = fullname.split('.') 4925517Snate@binkert.org return mod 4935517Snate@binkert.org 4945517Snate@binkert.org if fullname == 'm5.defines': 4955517Snate@binkert.org mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env) 4965517Snate@binkert.org return mod 4975517Snate@binkert.org 4985517Snate@binkert.org source = self.modules[fullname] 4995517Snate@binkert.org if source.modname == '__init__': 5005517Snate@binkert.org mod.__path__ = source.modpath 5015517Snate@binkert.org mod.__file__ = source.abspath 5025517Snate@binkert.org 5036654Snate@binkert.org exec file(source.abspath, 'r') in mod.__dict__ 5046654Snate@binkert.org 5055517Snate@binkert.org return mod 5065517Snate@binkert.org 5076143Snate@binkert.orgimport m5.SimObject 5086143Snate@binkert.orgimport m5.params 5096143Snate@binkert.orgfrom m5.util import code_formatter 5106727Ssteve.reinhardt@amd.com 5115517Snate@binkert.orgm5.SimObject.clear() 5126727Ssteve.reinhardt@amd.comm5.params.clear() 5135517Snate@binkert.org 5145517Snate@binkert.org# install the python importer so we can grab stuff from the source 5155517Snate@binkert.org# tree itself. We can't have SimObjects added after this point or 5166654Snate@binkert.org# else we won't know about them for the rest of the stuff. 5176654Snate@binkert.orgimporter = DictImporter(PySource.modules) 5187673Snate@binkert.orgsys.meta_path[0:0] = [ importer ] 5196654Snate@binkert.org 5206654Snate@binkert.org# import all sim objects so we can populate the all_objects list 5216654Snate@binkert.org# make sure that we're working with a list, then let's sort it 5226654Snate@binkert.orgfor modname in SimObject.modnames: 5235517Snate@binkert.org exec('from m5.objects import %s' % modname) 5245517Snate@binkert.org 5255517Snate@binkert.org# we need to unload all of the currently imported modules so that they 5266143Snate@binkert.org# will be re-imported the next time the sconscript is run 5275517Snate@binkert.orgimporter.unload() 5284762Snate@binkert.orgsys.meta_path.remove(importer) 5295517Snate@binkert.org 5305517Snate@binkert.orgsim_objects = m5.SimObject.allClasses 5316143Snate@binkert.orgall_enums = m5.params.allEnums 5326143Snate@binkert.org 5335517Snate@binkert.orgfor name,obj in sorted(sim_objects.iteritems()): 5345517Snate@binkert.org for param in obj._params.local.values(): 5355517Snate@binkert.org # load the ptype attribute now because it depends on the 5365517Snate@binkert.org # current version of SimObject.allClasses, but when scons 5375517Snate@binkert.org # actually uses the value, all versions of 5385517Snate@binkert.org # SimObject.allClasses will have been loaded 5395517Snate@binkert.org param.ptype 5405517Snate@binkert.org 5415517Snate@binkert.org######################################################################## 5426143Snate@binkert.org# 5435517Snate@binkert.org# calculate extra dependencies 5446654Snate@binkert.org# 5456654Snate@binkert.orgmodule_depends = ["m5", "m5.SimObject", "m5.params"] 5466654Snate@binkert.orgdepends = [ PySource.modules[dep].snode for dep in module_depends ] 5476654Snate@binkert.orgdepends.sort(key = lambda x: x.name) 5486654Snate@binkert.org 5496654Snate@binkert.org######################################################################## 5504762Snate@binkert.org# 5514762Snate@binkert.org# Commands for the basic automatically generated python files 5524762Snate@binkert.org# 5534762Snate@binkert.org 5544762Snate@binkert.org# Generate Python file containing a dict specifying the current 5557675Snate@binkert.org# buildEnv flags. 55610584Sandreas.hansson@arm.comdef makeDefinesPyFile(target, source, env): 5574762Snate@binkert.org build_env = source[0].get_contents() 5584762Snate@binkert.org 5594762Snate@binkert.org code = code_formatter() 5604762Snate@binkert.org code(""" 5614382Sbinkertn@umich.eduimport _m5.core 5624382Sbinkertn@umich.eduimport m5.util 5635517Snate@binkert.org 5646654Snate@binkert.orgbuildEnv = m5.util.SmartDict($build_env) 5655517Snate@binkert.org 5668126Sgblack@eecs.umich.educompileDate = _m5.core.compileDate 5676654Snate@binkert.org_globals = globals() 5687673Snate@binkert.orgfor key,val in _m5.core.__dict__.iteritems(): 5696654Snate@binkert.org if key.startswith('flag_'): 57011802Sandreas.sandberg@arm.com flag = key[5:] 5716654Snate@binkert.org _globals[flag] = val 5726654Snate@binkert.orgdel _globals 5736654Snate@binkert.org""") 5746654Snate@binkert.org code.write(target[0].abspath) 57511802Sandreas.sandberg@arm.com 5766669Snate@binkert.orgdefines_info = Value(build_env) 57711802Sandreas.sandberg@arm.com# Generate a file with all of the compile options in it 5786669Snate@binkert.orgenv.Command('python/m5/defines.py', defines_info, 5796669Snate@binkert.org MakeAction(makeDefinesPyFile, Transform("DEFINES", 0))) 5806669Snate@binkert.orgPySource('m5', 'python/m5/defines.py') 5816669Snate@binkert.org 5826654Snate@binkert.org# Generate python file containing info about the M5 source code 5837673Snate@binkert.orgdef makeInfoPyFile(target, source, env): 5845517Snate@binkert.org code = code_formatter() 5858126Sgblack@eecs.umich.edu for src in source: 5865798Snate@binkert.org data = ''.join(file(src.srcnode().abspath, 'r').xreadlines()) 5877756SAli.Saidi@ARM.com code('$src = ${{repr(data)}}') 5887816Ssteve.reinhardt@amd.com code.write(str(target[0])) 5895798Snate@binkert.org 5905798Snate@binkert.org# Generate a file that wraps the basic top level files 5915517Snate@binkert.orgenv.Command('python/m5/info.py', 5925517Snate@binkert.org [ '#/COPYING', '#/LICENSE', '#/README', ], 5937673Snate@binkert.org MakeAction(makeInfoPyFile, Transform("INFO"))) 5945517Snate@binkert.orgPySource('m5', 'python/m5/info.py') 5955517Snate@binkert.org 5967673Snate@binkert.org######################################################################## 5977673Snate@binkert.org# 5985517Snate@binkert.org# Create all of the SimObject param headers and enum headers 5995798Snate@binkert.org# 6005798Snate@binkert.org 6018333Snate@binkert.orgdef createSimObjectParamStruct(target, source, env): 6027816Ssteve.reinhardt@amd.com assert len(target) == 1 and len(source) == 1 6035798Snate@binkert.org 6045798Snate@binkert.org name = source[0].get_text_contents() 6054762Snate@binkert.org obj = sim_objects[name] 6064762Snate@binkert.org 6074762Snate@binkert.org code = code_formatter() 6084762Snate@binkert.org obj.cxx_param_decl(code) 6094762Snate@binkert.org code.write(target[0].abspath) 6108596Ssteve.reinhardt@amd.com 6115517Snate@binkert.orgdef createSimObjectCxxConfig(is_header): 6125517Snate@binkert.org def body(target, source, env): 61311997Sgabeblack@google.com assert len(target) == 1 and len(source) == 1 6145517Snate@binkert.org 6155517Snate@binkert.org name = str(source[0].get_contents()) 6167673Snate@binkert.org obj = sim_objects[name] 6178596Ssteve.reinhardt@amd.com 6187673Snate@binkert.org code = code_formatter() 6195517Snate@binkert.org obj.cxx_config_param_file(code, is_header) 62010458Sandreas.hansson@arm.com code.write(target[0].abspath) 62110458Sandreas.hansson@arm.com return body 62210458Sandreas.hansson@arm.com 62310458Sandreas.hansson@arm.comdef createEnumStrings(target, source, env): 62410458Sandreas.hansson@arm.com assert len(target) == 1 and len(source) == 2 62510458Sandreas.hansson@arm.com 62610458Sandreas.hansson@arm.com name = source[0].get_text_contents() 62710458Sandreas.hansson@arm.com use_python = source[1].read() 62810458Sandreas.hansson@arm.com obj = all_enums[name] 62910458Sandreas.hansson@arm.com 63010458Sandreas.hansson@arm.com code = code_formatter() 63110458Sandreas.hansson@arm.com obj.cxx_def(code) 6325517Snate@binkert.org if use_python: 63311996Sgabeblack@google.com obj.pybind_def(code) 6345517Snate@binkert.org code.write(target[0].abspath) 63511997Sgabeblack@google.com 63611996Sgabeblack@google.comdef createEnumDecls(target, source, env): 6375517Snate@binkert.org assert len(target) == 1 and len(source) == 1 6385517Snate@binkert.org 6397673Snate@binkert.org name = source[0].get_text_contents() 6407673Snate@binkert.org obj = all_enums[name] 64111996Sgabeblack@google.com 64211988Sandreas.sandberg@arm.com code = code_formatter() 6437673Snate@binkert.org obj.cxx_decl(code) 6445517Snate@binkert.org code.write(target[0].abspath) 6458596Ssteve.reinhardt@amd.com 6465517Snate@binkert.orgdef createSimObjectPyBindWrapper(target, source, env): 6475517Snate@binkert.org name = source[0].get_text_contents() 64811997Sgabeblack@google.com obj = sim_objects[name] 6495517Snate@binkert.org 6505517Snate@binkert.org code = code_formatter() 6517673Snate@binkert.org obj.pybind_decl(code) 6527673Snate@binkert.org code.write(target[0].abspath) 6537673Snate@binkert.org 6545517Snate@binkert.org# Generate all of the SimObject param C++ struct header files 65511988Sandreas.sandberg@arm.comparams_hh_files = [] 65611997Sgabeblack@google.comfor name,simobj in sorted(sim_objects.iteritems()): 6578596Ssteve.reinhardt@amd.com py_source = PySource.modules[simobj.__module__] 6588596Ssteve.reinhardt@amd.com extra_deps = [ py_source.tnode ] 6598596Ssteve.reinhardt@amd.com 66011988Sandreas.sandberg@arm.com hh_file = File('params/%s.hh' % name) 6618596Ssteve.reinhardt@amd.com params_hh_files.append(hh_file) 6628596Ssteve.reinhardt@amd.com env.Command(hh_file, Value(name), 6638596Ssteve.reinhardt@amd.com MakeAction(createSimObjectParamStruct, Transform("SO PARAM"))) 6644762Snate@binkert.org env.Depends(hh_file, depends + extra_deps) 6656143Snate@binkert.org 6666143Snate@binkert.org# C++ parameter description files 6676143Snate@binkert.orgif GetOption('with_cxx_config'): 6684762Snate@binkert.org for name,simobj in sorted(sim_objects.iteritems()): 6694762Snate@binkert.org py_source = PySource.modules[simobj.__module__] 6704762Snate@binkert.org extra_deps = [ py_source.tnode ] 6717756SAli.Saidi@ARM.com 6728596Ssteve.reinhardt@amd.com cxx_config_hh_file = File('cxx_config/%s.hh' % name) 6734762Snate@binkert.org cxx_config_cc_file = File('cxx_config/%s.cc' % name) 6744762Snate@binkert.org env.Command(cxx_config_hh_file, Value(name), 67510458Sandreas.hansson@arm.com MakeAction(createSimObjectCxxConfig(True), 67610458Sandreas.hansson@arm.com Transform("CXXCPRHH"))) 67710458Sandreas.hansson@arm.com env.Command(cxx_config_cc_file, Value(name), 67810458Sandreas.hansson@arm.com MakeAction(createSimObjectCxxConfig(False), 67910458Sandreas.hansson@arm.com Transform("CXXCPRCC"))) 68010458Sandreas.hansson@arm.com env.Depends(cxx_config_hh_file, depends + extra_deps + 68110458Sandreas.hansson@arm.com [File('params/%s.hh' % name), File('sim/cxx_config.hh')]) 68210458Sandreas.hansson@arm.com env.Depends(cxx_config_cc_file, depends + extra_deps + 68310458Sandreas.hansson@arm.com [cxx_config_hh_file]) 68410458Sandreas.hansson@arm.com Source(cxx_config_cc_file) 68510458Sandreas.hansson@arm.com 68610458Sandreas.hansson@arm.com cxx_config_init_cc_file = File('cxx_config/init.cc') 68710458Sandreas.hansson@arm.com 68810458Sandreas.hansson@arm.com def createCxxConfigInitCC(target, source, env): 68910458Sandreas.hansson@arm.com assert len(target) == 1 and len(source) == 1 69010458Sandreas.hansson@arm.com 69110458Sandreas.hansson@arm.com code = code_formatter() 69210458Sandreas.hansson@arm.com 69310458Sandreas.hansson@arm.com for name,simobj in sorted(sim_objects.iteritems()): 69410458Sandreas.hansson@arm.com if not hasattr(simobj, 'abstract') or not simobj.abstract: 69510458Sandreas.hansson@arm.com code('#include "cxx_config/${name}.hh"') 69610458Sandreas.hansson@arm.com code() 69710458Sandreas.hansson@arm.com code('void cxxConfigInit()') 69810458Sandreas.hansson@arm.com code('{') 69910458Sandreas.hansson@arm.com code.indent() 70010458Sandreas.hansson@arm.com for name,simobj in sorted(sim_objects.iteritems()): 70110458Sandreas.hansson@arm.com not_abstract = not hasattr(simobj, 'abstract') or \ 70210458Sandreas.hansson@arm.com not simobj.abstract 70310458Sandreas.hansson@arm.com if not_abstract and 'type' in simobj.__dict__: 70410458Sandreas.hansson@arm.com code('cxx_config_directory["${name}"] = ' 70510458Sandreas.hansson@arm.com '${name}CxxConfigParams::makeDirectoryEntry();') 70610458Sandreas.hansson@arm.com code.dedent() 70710458Sandreas.hansson@arm.com code('}') 70810458Sandreas.hansson@arm.com code.write(target[0].abspath) 70910458Sandreas.hansson@arm.com 71010458Sandreas.hansson@arm.com py_source = PySource.modules[simobj.__module__] 71110458Sandreas.hansson@arm.com extra_deps = [ py_source.tnode ] 71210458Sandreas.hansson@arm.com env.Command(cxx_config_init_cc_file, Value(name), 71310458Sandreas.hansson@arm.com MakeAction(createCxxConfigInitCC, Transform("CXXCINIT"))) 71410458Sandreas.hansson@arm.com cxx_param_hh_files = ["cxx_config/%s.hh" % simobj 71510458Sandreas.hansson@arm.com for name,simobj in sorted(sim_objects.iteritems()) 71610458Sandreas.hansson@arm.com if not hasattr(simobj, 'abstract') or not simobj.abstract] 71710458Sandreas.hansson@arm.com Depends(cxx_config_init_cc_file, cxx_param_hh_files + 71810458Sandreas.hansson@arm.com [File('sim/cxx_config.hh')]) 71910458Sandreas.hansson@arm.com Source(cxx_config_init_cc_file) 72010458Sandreas.hansson@arm.com 72110458Sandreas.hansson@arm.com# Generate all enum header files 72210458Sandreas.hansson@arm.comfor name,enum in sorted(all_enums.iteritems()): 72310458Sandreas.hansson@arm.com py_source = PySource.modules[enum.__module__] 72410584Sandreas.hansson@arm.com extra_deps = [ py_source.tnode ] 72510458Sandreas.hansson@arm.com 72610458Sandreas.hansson@arm.com cc_file = File('enums/%s.cc' % name) 72710458Sandreas.hansson@arm.com env.Command(cc_file, [Value(name), Value(env['USE_PYTHON'])], 72810458Sandreas.hansson@arm.com MakeAction(createEnumStrings, Transform("ENUM STR"))) 72910458Sandreas.hansson@arm.com env.Depends(cc_file, depends + extra_deps) 7304762Snate@binkert.org Source(cc_file) 7316143Snate@binkert.org 7326143Snate@binkert.org hh_file = File('enums/%s.hh' % name) 7336143Snate@binkert.org env.Command(hh_file, Value(name), 7344762Snate@binkert.org MakeAction(createEnumDecls, Transform("ENUMDECL"))) 7354762Snate@binkert.org env.Depends(hh_file, depends + extra_deps) 73611996Sgabeblack@google.com 7377816Ssteve.reinhardt@amd.com# Generate SimObject Python bindings wrapper files 7384762Snate@binkert.orgif env['USE_PYTHON']: 7394762Snate@binkert.org for name,simobj in sorted(sim_objects.iteritems()): 7404762Snate@binkert.org py_source = PySource.modules[simobj.__module__] 7414762Snate@binkert.org extra_deps = [ py_source.tnode ] 7427756SAli.Saidi@ARM.com cc_file = File('python/_m5/param_%s.cc' % name) 7438596Ssteve.reinhardt@amd.com env.Command(cc_file, Value(name), 7444762Snate@binkert.org MakeAction(createSimObjectPyBindWrapper, 7454762Snate@binkert.org Transform("SO PyBind"))) 74611988Sandreas.sandberg@arm.com env.Depends(cc_file, depends + extra_deps) 74711988Sandreas.sandberg@arm.com Source(cc_file) 74811988Sandreas.sandberg@arm.com 74911988Sandreas.sandberg@arm.com# Build all protocol buffers if we have got protoc and protobuf available 75011988Sandreas.sandberg@arm.comif env['HAVE_PROTOBUF']: 75111988Sandreas.sandberg@arm.com for proto in ProtoBuf.all: 75211988Sandreas.sandberg@arm.com # Use both the source and header as the target, and the .proto 75311988Sandreas.sandberg@arm.com # file as the source. When executing the protoc compiler, also 75411988Sandreas.sandberg@arm.com # specify the proto_path to avoid having the generated files 75511988Sandreas.sandberg@arm.com # include the path. 75611988Sandreas.sandberg@arm.com env.Command([proto.cc_file, proto.hh_file], proto.tnode, 7574382Sbinkertn@umich.edu MakeAction('$PROTOC --cpp_out ${TARGET.dir} ' 7589396Sandreas.hansson@arm.com '--proto_path ${SOURCE.dir} $SOURCE', 7599396Sandreas.hansson@arm.com Transform("PROTOC"))) 7609396Sandreas.hansson@arm.com 7619396Sandreas.hansson@arm.com # Add the C++ source file 7629396Sandreas.hansson@arm.com Source(proto.cc_file, tags=proto.tags) 7639396Sandreas.hansson@arm.comelif ProtoBuf.all: 7649396Sandreas.hansson@arm.com print 'Got protobuf to build, but lacks support!' 7659396Sandreas.hansson@arm.com Exit(1) 7669396Sandreas.hansson@arm.com 7679396Sandreas.hansson@arm.com# 7689396Sandreas.hansson@arm.com# Handle debug flags 7699396Sandreas.hansson@arm.com# 7709396Sandreas.hansson@arm.comdef makeDebugFlagCC(target, source, env): 7719396Sandreas.hansson@arm.com assert(len(target) == 1 and len(source) == 1) 7729396Sandreas.hansson@arm.com 7739396Sandreas.hansson@arm.com code = code_formatter() 7749396Sandreas.hansson@arm.com 7759396Sandreas.hansson@arm.com # delay definition of CompoundFlags until after all the definition 7768232Snate@binkert.org # of all constituent SimpleFlags 7778232Snate@binkert.org comp_code = code_formatter() 7788232Snate@binkert.org 7798232Snate@binkert.org # file header 7808232Snate@binkert.org code(''' 7816229Snate@binkert.org/* 78210455SCurtis.Dunham@arm.com * DO NOT EDIT THIS FILE! Automatically generated by SCons. 7836229Snate@binkert.org */ 78410455SCurtis.Dunham@arm.com 78510455SCurtis.Dunham@arm.com#include "base/debug.hh" 78610455SCurtis.Dunham@arm.com 7875517Snate@binkert.orgnamespace Debug { 7885517Snate@binkert.org 7897673Snate@binkert.org''') 7905517Snate@binkert.org 79110455SCurtis.Dunham@arm.com for name, flag in sorted(source[0].read().iteritems()): 7925517Snate@binkert.org n, compound, desc = flag 7935517Snate@binkert.org assert n == name 7948232Snate@binkert.org 79510455SCurtis.Dunham@arm.com if not compound: 79610455SCurtis.Dunham@arm.com code('SimpleFlag $name("$name", "$desc");') 79710455SCurtis.Dunham@arm.com else: 7987673Snate@binkert.org comp_code('CompoundFlag $name("$name", "$desc",') 7997673Snate@binkert.org comp_code.indent() 80010455SCurtis.Dunham@arm.com last = len(compound) - 1 80110455SCurtis.Dunham@arm.com for i,flag in enumerate(compound): 80210455SCurtis.Dunham@arm.com if i != last: 8035517Snate@binkert.org comp_code('&$flag,') 80410455SCurtis.Dunham@arm.com else: 80510455SCurtis.Dunham@arm.com comp_code('&$flag);') 80610455SCurtis.Dunham@arm.com comp_code.dedent() 80710455SCurtis.Dunham@arm.com 80810455SCurtis.Dunham@arm.com code.append(comp_code) 80910455SCurtis.Dunham@arm.com code() 81010455SCurtis.Dunham@arm.com code('} // namespace Debug') 81110455SCurtis.Dunham@arm.com 81210685Sandreas.hansson@arm.com code.write(str(target[0])) 81310455SCurtis.Dunham@arm.com 81410685Sandreas.hansson@arm.comdef makeDebugFlagHH(target, source, env): 81510455SCurtis.Dunham@arm.com assert(len(target) == 1 and len(source) == 1) 8165517Snate@binkert.org 81710455SCurtis.Dunham@arm.com val = eval(source[0].get_contents()) 8188232Snate@binkert.org name, compound, desc = val 8198232Snate@binkert.org 8205517Snate@binkert.org code = code_formatter() 8217673Snate@binkert.org 8225517Snate@binkert.org # file header boilerplate 8238232Snate@binkert.org code('''\ 8248232Snate@binkert.org/* 8255517Snate@binkert.org * DO NOT EDIT THIS FILE! Automatically generated by SCons. 8268232Snate@binkert.org */ 8278232Snate@binkert.org 8288232Snate@binkert.org#ifndef __DEBUG_${name}_HH__ 8297673Snate@binkert.org#define __DEBUG_${name}_HH__ 8305517Snate@binkert.org 8315517Snate@binkert.orgnamespace Debug { 8327673Snate@binkert.org''') 8335517Snate@binkert.org 83410455SCurtis.Dunham@arm.com if compound: 8355517Snate@binkert.org code('class CompoundFlag;') 8365517Snate@binkert.org code('class SimpleFlag;') 8378232Snate@binkert.org 8388232Snate@binkert.org if compound: 8395517Snate@binkert.org code('extern CompoundFlag $name;') 8408232Snate@binkert.org for flag in compound: 8418232Snate@binkert.org code('extern SimpleFlag $flag;') 8425517Snate@binkert.org else: 8438232Snate@binkert.org code('extern SimpleFlag $name;') 8448232Snate@binkert.org 8458232Snate@binkert.org code(''' 8465517Snate@binkert.org} 8478232Snate@binkert.org 8488232Snate@binkert.org#endif // __DEBUG_${name}_HH__ 8498232Snate@binkert.org''') 8508232Snate@binkert.org 8518232Snate@binkert.org code.write(str(target[0])) 8528232Snate@binkert.org 8535517Snate@binkert.orgfor name,flag in sorted(debug_flags.iteritems()): 8548232Snate@binkert.org n, compound, desc = flag 8558232Snate@binkert.org assert n == name 8565517Snate@binkert.org 8578232Snate@binkert.org hh_file = 'debug/%s.hh' % name 8587673Snate@binkert.org env.Command(hh_file, Value(flag), 8595517Snate@binkert.org MakeAction(makeDebugFlagHH, Transform("TRACING", 0))) 8607673Snate@binkert.org 8615517Snate@binkert.orgenv.Command('debug/flags.cc', Value(debug_flags), 8628232Snate@binkert.org MakeAction(makeDebugFlagCC, Transform("TRACING", 0))) 8638232Snate@binkert.orgSource('debug/flags.cc') 8648232Snate@binkert.org 8655192Ssaidi@eecs.umich.edu# version tags 86610454SCurtis.Dunham@arm.comtags = \ 86710454SCurtis.Dunham@arm.comenv.Command('sim/tags.cc', None, 8688232Snate@binkert.org MakeAction('util/cpt_upgrader.py --get-cc-file > $TARGET', 86910455SCurtis.Dunham@arm.com Transform("VER TAGS"))) 87010455SCurtis.Dunham@arm.comenv.AlwaysBuild(tags) 87110455SCurtis.Dunham@arm.com 87210455SCurtis.Dunham@arm.com# Embed python files. All .py files that have been indicated by a 8735192Ssaidi@eecs.umich.edu# PySource() call in a SConscript need to be embedded into the M5 87411077SCurtis.Dunham@arm.com# library. To do that, we compile the file to byte code, marshal the 87511330SCurtis.Dunham@arm.com# byte code, compress it, and then generate a c++ file that 87611077SCurtis.Dunham@arm.com# inserts the result into an array. 87711077SCurtis.Dunham@arm.comdef embedPyFile(target, source, env): 87811077SCurtis.Dunham@arm.com def c_str(string): 87911330SCurtis.Dunham@arm.com if string is None: 88011077SCurtis.Dunham@arm.com return "0" 8817674Snate@binkert.org return '"%s"' % string 8825522Snate@binkert.org 8835522Snate@binkert.org '''Action function to compile a .py into a code object, marshal 8847674Snate@binkert.org it, compress it, and stick it into an asm file so the code appears 8857674Snate@binkert.org as just bytes with a label in the data section''' 8867674Snate@binkert.org 8877674Snate@binkert.org src = file(str(source[0]), 'r').read() 8887674Snate@binkert.org 8897674Snate@binkert.org pysource = PySource.tnodes[source[0]] 8907674Snate@binkert.org compiled = compile(src, pysource.abspath, 'exec') 8917674Snate@binkert.org marshalled = marshal.dumps(compiled) 8925522Snate@binkert.org compressed = zlib.compress(marshalled) 8935522Snate@binkert.org data = compressed 8945522Snate@binkert.org sym = pysource.symname 8955517Snate@binkert.org 8965522Snate@binkert.org code = code_formatter() 8975517Snate@binkert.org code('''\ 8986143Snate@binkert.org#include "sim/init.hh" 8996727Ssteve.reinhardt@amd.com 9005522Snate@binkert.orgnamespace { 9015522Snate@binkert.org 9025522Snate@binkert.orgconst uint8_t data_${sym}[] = { 9037674Snate@binkert.org''') 9045517Snate@binkert.org code.indent() 9057673Snate@binkert.org step = 16 9067673Snate@binkert.org for i in xrange(0, len(data), step): 9077674Snate@binkert.org x = array.array('B', data[i:i+step]) 9087673Snate@binkert.org code(''.join('%d,' % d for d in x)) 9097674Snate@binkert.org code.dedent() 9107674Snate@binkert.org 9118946Sandreas.hansson@arm.com code('''}; 9127674Snate@binkert.org 9137674Snate@binkert.orgEmbeddedPython embedded_${sym}( 9147674Snate@binkert.org ${{c_str(pysource.arcname)}}, 9155522Snate@binkert.org ${{c_str(pysource.abspath)}}, 9165522Snate@binkert.org ${{c_str(pysource.modpath)}}, 9177674Snate@binkert.org data_${sym}, 9187674Snate@binkert.org ${{len(data)}}, 91911308Santhony.gutierrez@amd.com ${{len(marshalled)}}); 9207674Snate@binkert.org 9217673Snate@binkert.org} // anonymous namespace 9227674Snate@binkert.org''') 9237674Snate@binkert.org code.write(str(target[0])) 9247674Snate@binkert.org 9257674Snate@binkert.orgfor source in PySource.all: 9267674Snate@binkert.org env.Command(source.cpp, source.tnode, 9277674Snate@binkert.org MakeAction(embedPyFile, Transform("EMBED PY"))) 9287674Snate@binkert.org Source(source.cpp, tags=source.tags, add_tags='python') 9297674Snate@binkert.org 9307811Ssteve.reinhardt@amd.com######################################################################## 9317674Snate@binkert.org# 9327673Snate@binkert.org# Define binaries. Each different build type (debug, opt, etc.) gets 9335522Snate@binkert.org# a slightly different build environment. 9346143Snate@binkert.org# 93510453SAndrew.Bardsley@arm.com 9367816Ssteve.reinhardt@amd.com# List of constructed environments to pass back to SConstruct 93710453SAndrew.Bardsley@arm.comdate_source = Source('base/date.cc', tags=[]) 9384382Sbinkertn@umich.edu 9394382Sbinkertn@umich.edu# Function to create a new build environment as clone of current 9404382Sbinkertn@umich.edu# environment 'env' with modified object suffix and optional stripped 9414382Sbinkertn@umich.edu# binary. Additional keyword arguments are appended to corresponding 9424382Sbinkertn@umich.edu# build environment vars. 9434382Sbinkertn@umich.edudef makeEnv(env, label, objsfx, strip=False, disable_partial=False, **kwargs): 9444382Sbinkertn@umich.edu # SCons doesn't know to append a library suffix when there is a '.' in the 9454382Sbinkertn@umich.edu # name. Use '_' instead. 94610196SCurtis.Dunham@arm.com libname = 'gem5_' + label 9474382Sbinkertn@umich.edu exename = 'gem5.' + label 94810196SCurtis.Dunham@arm.com secondary_exename = 'm5.' + label 94910196SCurtis.Dunham@arm.com 95010196SCurtis.Dunham@arm.com new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's') 95110196SCurtis.Dunham@arm.com new_env.Label = label 95210196SCurtis.Dunham@arm.com new_env.Append(**kwargs) 95310196SCurtis.Dunham@arm.com 95410196SCurtis.Dunham@arm.com def make_obj(source, static): 955955SN/A '''This function creates a scons node of the requested type.''' 9562655Sstever@eecs.umich.edu if static: 9572655Sstever@eecs.umich.edu return new_env.StaticObject(source.tnode) 9582655Sstever@eecs.umich.edu else: 9592655Sstever@eecs.umich.edu return new_env.SharedObject(source.tnode) 96012063Sgabeblack@google.com 9615601Snate@binkert.org lib_sources = Source.all.with_tag('gem5 lib') 9625601Snate@binkert.org 96310196SCurtis.Dunham@arm.com # Without Python, leave out all Python content from the library 96410196SCurtis.Dunham@arm.com # builds. The option doesn't affect gem5 built as a program 96510196SCurtis.Dunham@arm.com if GetOption('without_python'): 9665522Snate@binkert.org lib_sources = lib_sources.without_tag('python') 9675863Snate@binkert.org 9685601Snate@binkert.org static_objs = [] 9695601Snate@binkert.org shared_objs = [] 9705601Snate@binkert.org 9715559Snate@binkert.org for s in lib_sources.with_tag(Source.ungrouped_tag): 97211718Sjoseph.gross@amd.com static_objs.append(make_obj(s, True)) 97311718Sjoseph.gross@amd.com shared_objs.append(make_obj(s, False)) 97411718Sjoseph.gross@amd.com 97511718Sjoseph.gross@amd.com partial_objs = [] 97611718Sjoseph.gross@amd.com 97711718Sjoseph.gross@amd.com for group in Source.source_groups: 97811718Sjoseph.gross@amd.com srcs = lib_sources.with_tag(Source.link_group_tag(group)) 97911718Sjoseph.gross@amd.com if not srcs: 98011718Sjoseph.gross@amd.com continue 98111718Sjoseph.gross@amd.com 98211718Sjoseph.gross@amd.com # If partial linking is disabled, add these sources to the build 98310457Sandreas.hansson@arm.com # directly, and short circuit this loop. 98410457Sandreas.hansson@arm.com if disable_partial: 98510457Sandreas.hansson@arm.com for s in srcs: 98611718Sjoseph.gross@amd.com static_objs.append(make_obj(s, True)) 98710457Sandreas.hansson@arm.com shared_objs.append(make_obj(s, False)) 98810457Sandreas.hansson@arm.com continue 98910457Sandreas.hansson@arm.com 99010457Sandreas.hansson@arm.com # Set up the static partially linked objects. 99111342Sandreas.hansson@arm.com source_objs = [ make_obj(s, True) for s in srcs ] 9928737Skoansin.tan@gmail.com file_name = new_env.subst("${OBJPREFIX}lib${OBJSUFFIX}.partial") 99311342Sandreas.hansson@arm.com target = File(joinpath(group, file_name)) 99411342Sandreas.hansson@arm.com partial = env.PartialStatic(target=target, source=source_objs) 99510457Sandreas.hansson@arm.com static_objs.append(partial) 99611718Sjoseph.gross@amd.com 99711718Sjoseph.gross@amd.com # Set up the shared partially linked objects. 99811718Sjoseph.gross@amd.com source_objs = [ make_obj(s, False) for s in srcs ] 99911718Sjoseph.gross@amd.com file_name = new_env.subst("${SHOBJPREFIX}lib${SHOBJSUFFIX}.partial") 100011718Sjoseph.gross@amd.com target = File(joinpath(group, file_name)) 100111718Sjoseph.gross@amd.com partial = env.PartialShared(target=target, source=source_objs) 100211718Sjoseph.gross@amd.com shared_objs.append(partial) 100310457Sandreas.hansson@arm.com 100411718Sjoseph.gross@amd.com static_date = make_obj(date_source, static=True) 100511500Sandreas.hansson@arm.com new_env.Depends(static_date, static_objs) 100611500Sandreas.hansson@arm.com static_objs.append(static_date) 100711342Sandreas.hansson@arm.com 100811342Sandreas.hansson@arm.com shared_date = make_obj(date_source, static=False) 10098945Ssteve.reinhardt@amd.com new_env.Depends(shared_date, shared_objs) 101010686SAndreas.Sandberg@ARM.com shared_objs.append(shared_date) 101110686SAndreas.Sandberg@ARM.com 101210686SAndreas.Sandberg@ARM.com # First make a library of everything but main() so other programs can 101310686SAndreas.Sandberg@ARM.com # link against m5. 101410686SAndreas.Sandberg@ARM.com static_lib = new_env.StaticLibrary(libname, static_objs) 101510686SAndreas.Sandberg@ARM.com shared_lib = new_env.SharedLibrary(libname, shared_objs) 10168945Ssteve.reinhardt@amd.com 10176143Snate@binkert.org # Now link a stub with main() and the static library. 10186143Snate@binkert.org main_objs = [ make_obj(s, True) for s in Source.all.with_tag('main') ] 10196143Snate@binkert.org 10206143Snate@binkert.org for test in UnitTest.all: 10216143Snate@binkert.org test_sources = Source.all.with_tag(str(test.target)) 102211988Sandreas.sandberg@arm.com test_objs = [ make_obj(s, static=True) for s in test_sources ] 10238945Ssteve.reinhardt@amd.com if test.main: 10246143Snate@binkert.org test_objs += main_objs 10256143Snate@binkert.org path = 'unittest/%s.%s' % (test.target, label) 10266143Snate@binkert.org new_env.Program(path, test_objs + static_objs) 10276143Snate@binkert.org 10286143Snate@binkert.org progname = exename 10296143Snate@binkert.org if strip: 10306143Snate@binkert.org progname += '.unstripped' 10316143Snate@binkert.org 10326143Snate@binkert.org targets = new_env.Program(progname, main_objs + static_objs) 10336143Snate@binkert.org 10346143Snate@binkert.org if strip: 10356143Snate@binkert.org if sys.platform == 'sunos5': 10366143Snate@binkert.org cmd = 'cp $SOURCE $TARGET; strip $TARGET' 103710453SAndrew.Bardsley@arm.com else: 103810453SAndrew.Bardsley@arm.com cmd = 'strip $SOURCE -o $TARGET' 103911988Sandreas.sandberg@arm.com targets = new_env.Command(exename, progname, 104011988Sandreas.sandberg@arm.com MakeAction(cmd, Transform("STRIP"))) 104110453SAndrew.Bardsley@arm.com 104210453SAndrew.Bardsley@arm.com new_env.Command(secondary_exename, exename, 104310453SAndrew.Bardsley@arm.com MakeAction('ln $SOURCE $TARGET', Transform("HARDLINK"))) 104411983Sgabeblack@google.com 104511983Sgabeblack@google.com new_env.M5Binary = targets[0] 104611983Sgabeblack@google.com 104711983Sgabeblack@google.com # Set up regression tests. 104811983Sgabeblack@google.com SConscript(os.path.join(env.root.abspath, 'tests', 'SConscript'), 104911983Sgabeblack@google.com variant_dir=Dir('tests').Dir(new_env.Label), 105011983Sgabeblack@google.com exports={ 'env' : new_env }, duplicate=False) 105111983Sgabeblack@google.com 105211983Sgabeblack@google.com# Start out with the compiler flags common to all compilers, 105311983Sgabeblack@google.com# i.e. they all use -g for opt and -g -pg for prof 105411983Sgabeblack@google.comccflags = {'debug' : [], 'opt' : ['-g'], 'fast' : [], 'prof' : ['-g', '-pg'], 105511983Sgabeblack@google.com 'perf' : ['-g']} 105611983Sgabeblack@google.com 105711983Sgabeblack@google.com# Start out with the linker flags common to all linkers, i.e. -pg for 105811983Sgabeblack@google.com# prof, and -lprofiler for perf. The -lprofile flag is surrounded by 105911983Sgabeblack@google.com# no-as-needed and as-needed as the binutils linker is too clever and 106011983Sgabeblack@google.com# simply doesn't link to the library otherwise. 106111983Sgabeblack@google.comldflags = {'debug' : [], 'opt' : [], 'fast' : [], 'prof' : ['-pg'], 106212063Sgabeblack@google.com 'perf' : ['-Wl,--no-as-needed', '-lprofiler', '-Wl,--as-needed']} 106312063Sgabeblack@google.com 106412063Sgabeblack@google.com# For Link Time Optimization, the optimisation flags used to compile 106512063Sgabeblack@google.com# individual files are decoupled from those used at link time 106612063Sgabeblack@google.com# (i.e. you can compile with -O3 and perform LTO with -O0), so we need 106712063Sgabeblack@google.com# to also update the linker flags based on the target. 106812063Sgabeblack@google.comif env['GCC']: 106912063Sgabeblack@google.com if sys.platform == 'sunos5': 107011983Sgabeblack@google.com ccflags['debug'] += ['-gstabs+'] 107111983Sgabeblack@google.com else: 107211983Sgabeblack@google.com ccflags['debug'] += ['-ggdb3'] 107311983Sgabeblack@google.com ldflags['debug'] += ['-O0'] 107411983Sgabeblack@google.com # opt, fast, prof and perf all share the same cc flags, also add 107511983Sgabeblack@google.com # the optimization to the ldflags as LTO defers the optimization 107611983Sgabeblack@google.com # to link time 107711983Sgabeblack@google.com for target in ['opt', 'fast', 'prof', 'perf']: 107811983Sgabeblack@google.com ccflags[target] += ['-O3'] 107911983Sgabeblack@google.com ldflags[target] += ['-O3'] 108011983Sgabeblack@google.com 108111983Sgabeblack@google.com ccflags['fast'] += env['LTO_CCFLAGS'] 108211983Sgabeblack@google.com ldflags['fast'] += env['LTO_LDFLAGS'] 10836143Snate@binkert.orgelif env['CLANG']: 10846143Snate@binkert.org ccflags['debug'] += ['-g', '-O0'] 10856143Snate@binkert.org # opt, fast, prof and perf all share the same cc flags 108610453SAndrew.Bardsley@arm.com for target in ['opt', 'fast', 'prof', 'perf']: 10876143Snate@binkert.org ccflags[target] += ['-O3'] 10886240Snate@binkert.orgelse: 10895554Snate@binkert.org print 'Unknown compiler, please fix compiler options' 10905522Snate@binkert.org Exit(1) 10915522Snate@binkert.org 10925797Snate@binkert.org 10935797Snate@binkert.org# To speed things up, we only instantiate the build environments we 10945522Snate@binkert.org# need. We try to identify the needed environment for each target; if 10955601Snate@binkert.org# we can't, we fall back on instantiating all the environments just to 10968233Snate@binkert.org# be safe. 10978233Snate@binkert.orgtarget_types = ['debug', 'opt', 'fast', 'prof', 'perf'] 10988235Snate@binkert.orgobj2target = {'do': 'debug', 'o': 'opt', 'fo': 'fast', 'po': 'prof', 10998235Snate@binkert.org 'gpo' : 'perf'} 11008235Snate@binkert.org 11018235Snate@binkert.orgdef identifyTarget(t): 11029003SAli.Saidi@ARM.com ext = t.split('.')[-1] 11039003SAli.Saidi@ARM.com if ext in target_types: 110410196SCurtis.Dunham@arm.com return ext 110510196SCurtis.Dunham@arm.com if obj2target.has_key(ext): 11068235Snate@binkert.org return obj2target[ext] 11076143Snate@binkert.org match = re.search(r'/tests/([^/]+)/', t) 11082655Sstever@eecs.umich.edu if match and match.group(1) in target_types: 11096143Snate@binkert.org return match.group(1) 11106143Snate@binkert.org return 'all' 111111985Sgabeblack@google.com 11126143Snate@binkert.orgneeded_envs = [identifyTarget(target) for target in BUILD_TARGETS] 11136143Snate@binkert.orgif 'all' in needed_envs: 11144007Ssaidi@eecs.umich.edu needed_envs += target_types 11154596Sbinkertn@umich.edu 11164007Ssaidi@eecs.umich.edu# Debug binary 11174596Sbinkertn@umich.eduif 'debug' in needed_envs: 11187756SAli.Saidi@ARM.com makeEnv(env, 'debug', '.do', 11197816Ssteve.reinhardt@amd.com CCFLAGS = Split(ccflags['debug']), 11208334Snate@binkert.org CPPDEFINES = ['DEBUG', 'TRACING_ON=1'], 11218334Snate@binkert.org LINKFLAGS = Split(ldflags['debug'])) 11228334Snate@binkert.org 11238334Snate@binkert.org# Optimized binary 11245601Snate@binkert.orgif 'opt' in needed_envs: 112511993Sgabeblack@google.com makeEnv(env, 'opt', '.o', 112611993Sgabeblack@google.com CCFLAGS = Split(ccflags['opt']), 112711993Sgabeblack@google.com CPPDEFINES = ['TRACING_ON=1'], 112811993Sgabeblack@google.com LINKFLAGS = Split(ldflags['opt'])) 112911993Sgabeblack@google.com 11302655Sstever@eecs.umich.edu# "Fast" binary 11319225Sandreas.hansson@arm.comif 'fast' in needed_envs: 11329225Sandreas.hansson@arm.com disable_partial = \ 11339226Sandreas.hansson@arm.com env.get('BROKEN_INCREMENTAL_LTO', False) and \ 11349226Sandreas.hansson@arm.com GetOption('force_lto') 11359225Sandreas.hansson@arm.com makeEnv(env, 'fast', '.fo', strip = True, 11369226Sandreas.hansson@arm.com CCFLAGS = Split(ccflags['fast']), 11379226Sandreas.hansson@arm.com CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 11389226Sandreas.hansson@arm.com LINKFLAGS = Split(ldflags['fast']), 11399226Sandreas.hansson@arm.com disable_partial=disable_partial) 11409226Sandreas.hansson@arm.com 11419226Sandreas.hansson@arm.com# Profiled binary using gprof 11429225Sandreas.hansson@arm.comif 'prof' in needed_envs: 11439227Sandreas.hansson@arm.com makeEnv(env, 'prof', '.po', 11449227Sandreas.hansson@arm.com CCFLAGS = Split(ccflags['prof']), 11459227Sandreas.hansson@arm.com CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 11469227Sandreas.hansson@arm.com LINKFLAGS = Split(ldflags['prof'])) 11478946Sandreas.hansson@arm.com 11483918Ssaidi@eecs.umich.edu# Profiled binary using google-pprof 11499225Sandreas.hansson@arm.comif 'perf' in needed_envs: 11503918Ssaidi@eecs.umich.edu makeEnv(env, 'perf', '.gpo', 11519225Sandreas.hansson@arm.com CCFLAGS = Split(ccflags['perf']), 11529225Sandreas.hansson@arm.com CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 11539227Sandreas.hansson@arm.com LINKFLAGS = Split(ldflags['perf'])) 11549227Sandreas.hansson@arm.com