SConscript revision 13675
1955SN/A# -*- mode:python -*- 2955SN/A 31762SN/A# Copyright (c) 2018 ARM Limited 4955SN/A# 5955SN/A# The license below extends only to copyright in the software and shall 6955SN/A# not be construed as granting a license to any other intellectual 7955SN/A# property including but not limited to intellectual property relating 8955SN/A# to a hardware implementation of the functionality of the software 9955SN/A# licensed hereunder. You may use the software subject to the license 10955SN/A# terms below provided that you ensure that this notice is replicated 11955SN/A# unmodified and in its entirety in all distributions of the software, 12955SN/A# modified or unmodified, in source code or in binary form. 13955SN/A# 14955SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan 15955SN/A# All rights reserved. 16955SN/A# 17955SN/A# Redistribution and use in source and binary forms, with or without 18955SN/A# modification, are permitted provided that the following conditions are 19955SN/A# met: redistributions of source code must retain the above copyright 20955SN/A# notice, this list of conditions and the following disclaimer; 21955SN/A# redistributions in binary form must reproduce the above copyright 22955SN/A# notice, this list of conditions and the following disclaimer in the 23955SN/A# documentation and/or other materials provided with the distribution; 24955SN/A# neither the name of the copyright holders nor the names of its 25955SN/A# contributors may be used to endorse or promote products derived from 26955SN/A# this software without specific prior written permission. 27955SN/A# 282665Ssaidi@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 294762Snate@binkert.org# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 30955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 315522Snate@binkert.org# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 326143Snate@binkert.org# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 334762Snate@binkert.org# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 345522Snate@binkert.org# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 35955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 365522Snate@binkert.org# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 37955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 385522Snate@binkert.org# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 394202Sbinkertn@umich.edu# 405742Snate@binkert.org# Authors: Nathan Binkert 41955SN/A 424381Sbinkertn@umich.edufrom __future__ import print_function 434381Sbinkertn@umich.edu 44955SN/Aimport array 45955SN/Aimport bisect 46955SN/Aimport functools 474202Sbinkertn@umich.eduimport imp 48955SN/Aimport marshal 494382Sbinkertn@umich.eduimport os 504382Sbinkertn@umich.eduimport re 514382Sbinkertn@umich.eduimport subprocess 526654Snate@binkert.orgimport sys 535517Snate@binkert.orgimport zlib 547674Snate@binkert.org 557674Snate@binkert.orgfrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath 566143Snate@binkert.org 576143Snate@binkert.orgimport SCons 586143Snate@binkert.org 596143Snate@binkert.orgfrom gem5_scons import Transform 606143Snate@binkert.org 616143Snate@binkert.org# This file defines how to build a particular configuration of gem5 626143Snate@binkert.org# based on variable settings in the 'env' build environment. 636143Snate@binkert.org 646143Snate@binkert.orgImport('*') 656143Snate@binkert.org 666143Snate@binkert.org# Children need to see the environment 676143Snate@binkert.orgExport('env') 686143Snate@binkert.org 696143Snate@binkert.orgbuild_env = [(opt, env[opt]) for opt in export_vars] 706143Snate@binkert.org 714762Snate@binkert.orgfrom m5.util import code_formatter, compareVersions 726143Snate@binkert.org 736143Snate@binkert.org######################################################################## 746143Snate@binkert.org# Code for adding source files of various types 756143Snate@binkert.org# 766143Snate@binkert.org# When specifying a source file of some type, a set of tags can be 776143Snate@binkert.org# specified for that file. 786143Snate@binkert.org 796143Snate@binkert.orgclass SourceFilter(object): 806143Snate@binkert.org def __init__(self, predicate): 816143Snate@binkert.org self.predicate = predicate 826143Snate@binkert.org 836143Snate@binkert.org def __or__(self, other): 846143Snate@binkert.org return SourceFilter(lambda tags: self.predicate(tags) or 856143Snate@binkert.org other.predicate(tags)) 866143Snate@binkert.org 876143Snate@binkert.org def __and__(self, other): 886143Snate@binkert.org return SourceFilter(lambda tags: self.predicate(tags) and 896143Snate@binkert.org other.predicate(tags)) 906143Snate@binkert.org 916143Snate@binkert.orgdef with_tags_that(predicate): 926143Snate@binkert.org '''Return a list of sources with tags that satisfy a predicate.''' 937065Snate@binkert.org return SourceFilter(predicate) 946143Snate@binkert.org 956143Snate@binkert.orgdef with_any_tags(*tags): 966143Snate@binkert.org '''Return a list of sources with any of the supplied tags.''' 976143Snate@binkert.org return SourceFilter(lambda stags: len(set(tags) & stags) > 0) 986143Snate@binkert.org 996143Snate@binkert.orgdef with_all_tags(*tags): 1006143Snate@binkert.org '''Return a list of sources with all of the supplied tags.''' 1016143Snate@binkert.org return SourceFilter(lambda stags: set(tags) <= stags) 1026143Snate@binkert.org 1036143Snate@binkert.orgdef with_tag(tag): 1046143Snate@binkert.org '''Return a list of sources with the supplied tag.''' 1056143Snate@binkert.org return SourceFilter(lambda stags: tag in stags) 1066143Snate@binkert.org 1076143Snate@binkert.orgdef without_tags(*tags): 1086143Snate@binkert.org '''Return a list of sources without any of the supplied tags.''' 1096143Snate@binkert.org return SourceFilter(lambda stags: len(set(tags) & stags) == 0) 1106143Snate@binkert.org 1116143Snate@binkert.orgdef without_tag(tag): 1126143Snate@binkert.org '''Return a list of sources with the supplied tag.''' 1136143Snate@binkert.org return SourceFilter(lambda stags: tag not in stags) 1146143Snate@binkert.org 1155522Snate@binkert.orgsource_filter_factories = { 1166143Snate@binkert.org 'with_tags_that': with_tags_that, 1176143Snate@binkert.org 'with_any_tags': with_any_tags, 1186143Snate@binkert.org 'with_all_tags': with_all_tags, 1196143Snate@binkert.org 'with_tag': with_tag, 1206143Snate@binkert.org 'without_tags': without_tags, 1216143Snate@binkert.org 'without_tag': without_tag, 1226143Snate@binkert.org} 1236143Snate@binkert.org 1246143Snate@binkert.orgExport(source_filter_factories) 1256143Snate@binkert.org 1265522Snate@binkert.orgclass SourceList(list): 1275522Snate@binkert.org def apply_filter(self, f): 1285522Snate@binkert.org def match(source): 1295522Snate@binkert.org return f.predicate(source.tags) 1305604Snate@binkert.org return SourceList(filter(match, self)) 1315604Snate@binkert.org 1326143Snate@binkert.org def __getattr__(self, name): 1336143Snate@binkert.org func = source_filter_factories.get(name, None) 1344762Snate@binkert.org if not func: 1354762Snate@binkert.org raise AttributeError 1366143Snate@binkert.org 1376727Ssteve.reinhardt@amd.com @functools.wraps(func) 1386727Ssteve.reinhardt@amd.com def wrapper(*args, **kwargs): 1396727Ssteve.reinhardt@amd.com return self.apply_filter(func(*args, **kwargs)) 1404762Snate@binkert.org return wrapper 1416143Snate@binkert.org 1426143Snate@binkert.orgclass SourceMeta(type): 1436143Snate@binkert.org '''Meta class for source files that keeps track of all files of a 1446143Snate@binkert.org particular type.''' 1456727Ssteve.reinhardt@amd.com def __init__(cls, name, bases, dict): 1466143Snate@binkert.org super(SourceMeta, cls).__init__(name, bases, dict) 1477674Snate@binkert.org cls.all = SourceList() 1487674Snate@binkert.org 1495604Snate@binkert.orgclass SourceFile(object): 1506143Snate@binkert.org '''Base object that encapsulates the notion of a source file. 1516143Snate@binkert.org This includes, the source node, target node, various manipulations 1526143Snate@binkert.org of those. A source file also specifies a set of tags which 1534762Snate@binkert.org describing arbitrary properties of the source file.''' 1546143Snate@binkert.org __metaclass__ = SourceMeta 1554762Snate@binkert.org 1564762Snate@binkert.org static_objs = {} 1574762Snate@binkert.org shared_objs = {} 1586143Snate@binkert.org 1596143Snate@binkert.org def __init__(self, source, tags=None, add_tags=None): 1604762Snate@binkert.org if tags is None: 1616143Snate@binkert.org tags='gem5 lib' 1626143Snate@binkert.org if isinstance(tags, basestring): 1636143Snate@binkert.org tags = set([tags]) 1646143Snate@binkert.org if not isinstance(tags, set): 1654762Snate@binkert.org tags = set(tags) 1666143Snate@binkert.org self.tags = tags 1674762Snate@binkert.org 1686143Snate@binkert.org if add_tags: 1694762Snate@binkert.org if isinstance(add_tags, basestring): 1706143Snate@binkert.org add_tags = set([add_tags]) 1716143Snate@binkert.org if not isinstance(add_tags, set): 1726143Snate@binkert.org add_tags = set(add_tags) 1736143Snate@binkert.org self.tags |= add_tags 1746143Snate@binkert.org 1756143Snate@binkert.org tnode = source 1766143Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1776143Snate@binkert.org tnode = File(source) 1786143Snate@binkert.org 1796143Snate@binkert.org self.tnode = tnode 1806143Snate@binkert.org self.snode = tnode.srcnode() 1816143Snate@binkert.org 1826143Snate@binkert.org for base in type(self).__mro__: 183955SN/A if issubclass(base, SourceFile): 1845584Snate@binkert.org base.all.append(self) 1855584Snate@binkert.org 1865584Snate@binkert.org def static(self, env): 1875584Snate@binkert.org key = (self.tnode, env['OBJSUFFIX']) 1886143Snate@binkert.org if not key in self.static_objs: 1896143Snate@binkert.org self.static_objs[key] = env.StaticObject(self.tnode) 1906143Snate@binkert.org return self.static_objs[key] 1915584Snate@binkert.org 1924382Sbinkertn@umich.edu def shared(self, env): 1934202Sbinkertn@umich.edu key = (self.tnode, env['OBJSUFFIX']) 1944382Sbinkertn@umich.edu if not key in self.shared_objs: 1954382Sbinkertn@umich.edu self.shared_objs[key] = env.SharedObject(self.tnode) 1964382Sbinkertn@umich.edu return self.shared_objs[key] 1975584Snate@binkert.org 1984382Sbinkertn@umich.edu @property 1994382Sbinkertn@umich.edu def filename(self): 2004382Sbinkertn@umich.edu return str(self.tnode) 2018232Snate@binkert.org 2025192Ssaidi@eecs.umich.edu @property 2038232Snate@binkert.org def dirname(self): 2048232Snate@binkert.org return dirname(self.filename) 2058232Snate@binkert.org 2065192Ssaidi@eecs.umich.edu @property 2078232Snate@binkert.org def basename(self): 2088232Snate@binkert.org return basename(self.filename) 2095192Ssaidi@eecs.umich.edu 2105799Snate@binkert.org @property 2118232Snate@binkert.org def extname(self): 2125192Ssaidi@eecs.umich.edu index = self.basename.rfind('.') 2135192Ssaidi@eecs.umich.edu if index <= 0: 2145192Ssaidi@eecs.umich.edu # dot files aren't extensions 2158232Snate@binkert.org return self.basename, None 2165192Ssaidi@eecs.umich.edu 2178232Snate@binkert.org return self.basename[:index], self.basename[index+1:] 2185192Ssaidi@eecs.umich.edu 2195192Ssaidi@eecs.umich.edu def __lt__(self, other): return self.filename < other.filename 2205192Ssaidi@eecs.umich.edu def __le__(self, other): return self.filename <= other.filename 2215192Ssaidi@eecs.umich.edu def __gt__(self, other): return self.filename > other.filename 2225192Ssaidi@eecs.umich.edu def __ge__(self, other): return self.filename >= other.filename 2234382Sbinkertn@umich.edu def __eq__(self, other): return self.filename == other.filename 2244382Sbinkertn@umich.edu def __ne__(self, other): return self.filename != other.filename 2254382Sbinkertn@umich.edu 2262667Sstever@eecs.umich.edudef blobToCpp(data, symbol, cpp_code, hpp_code=None, namespace=None): 2272667Sstever@eecs.umich.edu ''' 2282667Sstever@eecs.umich.edu Convert bytes data into C++ .cpp and .hh uint8_t byte array 2292667Sstever@eecs.umich.edu code containing that binary data. 2302667Sstever@eecs.umich.edu 2312667Sstever@eecs.umich.edu :param data: binary data to be converted to C++ 2325742Snate@binkert.org :param symbol: name of the symbol 2335742Snate@binkert.org :param cpp_code: append the generated cpp_code to this object 2345742Snate@binkert.org :param hpp_code: append the generated hpp_code to this object 2355793Snate@binkert.org If None, ignore it. Otherwise, also include it 2365793Snate@binkert.org in the .cpp file. 2375793Snate@binkert.org :param namespace: namespace to put the symbol into. If None, 2385793Snate@binkert.org don't put the symbols into any namespace. 2395793Snate@binkert.org ''' 2404382Sbinkertn@umich.edu symbol_len_declaration = 'const std::size_t {}_len'.format(symbol) 2414762Snate@binkert.org symbol_declaration = 'const std::uint8_t {}[]'.format(symbol) 2425344Sstever@gmail.com if hpp_code is not None: 2434382Sbinkertn@umich.edu cpp_code('''\ 2445341Sstever@gmail.com#include "blobs/{}.hh" 2455742Snate@binkert.org'''.format(symbol)) 2465742Snate@binkert.org hpp_code('''\ 2475742Snate@binkert.org#include <cstddef> 2485742Snate@binkert.org#include <cstdint> 2495742Snate@binkert.org''') 2504762Snate@binkert.org if namespace is not None: 2515742Snate@binkert.org hpp_code('namespace {} {{'.format(namespace)) 2525742Snate@binkert.org hpp_code('extern ' + symbol_len_declaration + ';') 2537722Sgblack@eecs.umich.edu hpp_code('extern ' + symbol_declaration + ';') 2545742Snate@binkert.org if namespace is not None: 2555742Snate@binkert.org hpp_code('}') 2565742Snate@binkert.org if namespace is not None: 2575742Snate@binkert.org cpp_code('namespace {} {{'.format(namespace)) 2585341Sstever@gmail.com if hpp_code is not None: 2595742Snate@binkert.org cpp_code(symbol_len_declaration + ' = {};'.format(len(data))) 2607722Sgblack@eecs.umich.edu cpp_code(symbol_declaration + ' = {') 2614773Snate@binkert.org cpp_code.indent() 2626108Snate@binkert.org step = 16 2631858SN/A for i in xrange(0, len(data), step): 2641085SN/A x = array.array('B', data[i:i+step]) 2656658Snate@binkert.org cpp_code(''.join('%d,' % d for d in x)) 2666658Snate@binkert.org cpp_code.dedent() 2677673Snate@binkert.org cpp_code('};') 2686658Snate@binkert.org if namespace is not None: 2696658Snate@binkert.org cpp_code('}') 2706658Snate@binkert.org 2716658Snate@binkert.orgdef Blob(blob_path, symbol): 2726658Snate@binkert.org ''' 2736658Snate@binkert.org Embed an arbitrary blob into the gem5 executable, 2746658Snate@binkert.org and make it accessible to C++ as a byte array. 2757673Snate@binkert.org ''' 2767673Snate@binkert.org blob_path = os.path.abspath(blob_path) 2777673Snate@binkert.org blob_out_dir = os.path.join(env['BUILDDIR'], 'blobs') 2787673Snate@binkert.org path_noext = joinpath(blob_out_dir, symbol) 2797673Snate@binkert.org cpp_path = path_noext + '.cc' 2807673Snate@binkert.org hpp_path = path_noext + '.hh' 2817673Snate@binkert.org def embedBlob(target, source, env): 2826658Snate@binkert.org data = file(str(source[0]), 'r').read() 2837673Snate@binkert.org cpp_code = code_formatter() 2847673Snate@binkert.org hpp_code = code_formatter() 2857673Snate@binkert.org blobToCpp(data, symbol, cpp_code, hpp_code, namespace='Blobs') 2867673Snate@binkert.org cpp_path = str(target[0]) 2877673Snate@binkert.org hpp_path = str(target[1]) 2887673Snate@binkert.org cpp_dir = os.path.split(cpp_path)[0] 2897673Snate@binkert.org if not os.path.exists(cpp_dir): 2907673Snate@binkert.org os.makedirs(cpp_dir) 2917673Snate@binkert.org cpp_code.write(cpp_path) 2927673Snate@binkert.org hpp_code.write(hpp_path) 2936658Snate@binkert.org env.Command([cpp_path, hpp_path], blob_path, 2947756SAli.Saidi@ARM.com MakeAction(embedBlob, Transform("EMBED BLOB"))) 2957816Ssteve.reinhardt@amd.com Source(cpp_path) 2966658Snate@binkert.org 2974382Sbinkertn@umich.edudef GdbXml(xml_id, symbol): 2984382Sbinkertn@umich.edu Blob(joinpath(gdb_xml_dir, xml_id), symbol) 2994762Snate@binkert.org 3004762Snate@binkert.orgclass Source(SourceFile): 3014762Snate@binkert.org ungrouped_tag = 'No link group' 3026654Snate@binkert.org source_groups = set() 3036654Snate@binkert.org 3045517Snate@binkert.org _current_group_tag = ungrouped_tag 3055517Snate@binkert.org 3065517Snate@binkert.org @staticmethod 3075517Snate@binkert.org def link_group_tag(group): 3085517Snate@binkert.org return 'link group: %s' % group 3095517Snate@binkert.org 3105517Snate@binkert.org @classmethod 3115517Snate@binkert.org def set_group(cls, group): 3125517Snate@binkert.org new_tag = Source.link_group_tag(group) 3135517Snate@binkert.org Source._current_group_tag = new_tag 3145517Snate@binkert.org Source.source_groups.add(group) 3155517Snate@binkert.org 3165517Snate@binkert.org def _add_link_group_tag(self): 3175517Snate@binkert.org self.tags.add(Source._current_group_tag) 3185517Snate@binkert.org 3195517Snate@binkert.org '''Add a c/c++ source file to the build''' 3205517Snate@binkert.org def __init__(self, source, tags=None, add_tags=None): 3216654Snate@binkert.org '''specify the source file, and any tags''' 3225517Snate@binkert.org super(Source, self).__init__(source, tags, add_tags) 3235517Snate@binkert.org self._add_link_group_tag() 3245517Snate@binkert.org 3255517Snate@binkert.orgclass PySource(SourceFile): 3265517Snate@binkert.org '''Add a python source file to the named package''' 3275517Snate@binkert.org invalid_sym_char = re.compile('[^A-z0-9_]') 3285517Snate@binkert.org modules = {} 3295517Snate@binkert.org tnodes = {} 3306143Snate@binkert.org symnames = {} 3316654Snate@binkert.org 3325517Snate@binkert.org def __init__(self, package, source, tags=None, add_tags=None): 3335517Snate@binkert.org '''specify the python package, the source file, and any tags''' 3345517Snate@binkert.org super(PySource, self).__init__(source, tags, add_tags) 3355517Snate@binkert.org 3365517Snate@binkert.org modname,ext = self.extname 3375517Snate@binkert.org assert ext == 'py' 3385517Snate@binkert.org 3395517Snate@binkert.org if package: 3405517Snate@binkert.org path = package.split('.') 3415517Snate@binkert.org else: 3425517Snate@binkert.org path = [] 3435517Snate@binkert.org 3445517Snate@binkert.org modpath = path[:] 3455517Snate@binkert.org if modname != '__init__': 3466654Snate@binkert.org modpath += [ modname ] 3476654Snate@binkert.org modpath = '.'.join(modpath) 3485517Snate@binkert.org 3495517Snate@binkert.org arcpath = path + [ self.basename ] 3506143Snate@binkert.org abspath = self.snode.abspath 3516143Snate@binkert.org if not exists(abspath): 3526143Snate@binkert.org abspath = self.tnode.abspath 3536727Ssteve.reinhardt@amd.com 3545517Snate@binkert.org self.package = package 3556727Ssteve.reinhardt@amd.com self.modname = modname 3565517Snate@binkert.org self.modpath = modpath 3575517Snate@binkert.org self.arcname = joinpath(*arcpath) 3585517Snate@binkert.org self.abspath = abspath 3596654Snate@binkert.org self.compiled = File(self.filename + 'c') 3606654Snate@binkert.org self.cpp = File(self.filename + '.cc') 3617673Snate@binkert.org self.symname = PySource.invalid_sym_char.sub('_', modpath) 3626654Snate@binkert.org 3636654Snate@binkert.org PySource.modules[modpath] = self 3646654Snate@binkert.org PySource.tnodes[self.tnode] = self 3656654Snate@binkert.org PySource.symnames[self.symname] = self 3665517Snate@binkert.org 3675517Snate@binkert.orgclass SimObject(PySource): 3685517Snate@binkert.org '''Add a SimObject python file as a python source object and add 3696143Snate@binkert.org it to a list of sim object modules''' 3705517Snate@binkert.org 3714762Snate@binkert.org fixed = False 3725517Snate@binkert.org modnames = [] 3735517Snate@binkert.org 3746143Snate@binkert.org def __init__(self, source, tags=None, add_tags=None): 3756143Snate@binkert.org '''Specify the source file and any tags (automatically in 3765517Snate@binkert.org the m5.objects package)''' 3775517Snate@binkert.org super(SimObject, self).__init__('m5.objects', source, tags, add_tags) 3785517Snate@binkert.org if self.fixed: 3795517Snate@binkert.org raise AttributeError, "Too late to call SimObject now." 3805517Snate@binkert.org 3815517Snate@binkert.org bisect.insort_right(SimObject.modnames, self.modname) 3825517Snate@binkert.org 3835517Snate@binkert.orgclass ProtoBuf(SourceFile): 3845517Snate@binkert.org '''Add a Protocol Buffer to build''' 3855517Snate@binkert.org 3866143Snate@binkert.org def __init__(self, source, tags=None, add_tags=None): 3875517Snate@binkert.org '''Specify the source file, and any tags''' 3886654Snate@binkert.org super(ProtoBuf, self).__init__(source, tags, add_tags) 3896654Snate@binkert.org 3906654Snate@binkert.org # Get the file name and the extension 3916654Snate@binkert.org modname,ext = self.extname 3926654Snate@binkert.org assert ext == 'proto' 3936654Snate@binkert.org 3945517Snate@binkert.org # Currently, we stick to generating the C++ headers, so we 3955517Snate@binkert.org # only need to track the source and header. 3965517Snate@binkert.org self.cc_file = File(modname + '.pb.cc') 3975517Snate@binkert.org self.hh_file = File(modname + '.pb.h') 3985517Snate@binkert.org 3994762Snate@binkert.org 4004762Snate@binkert.orgexectuable_classes = [] 4014762Snate@binkert.orgclass ExecutableMeta(type): 4024762Snate@binkert.org '''Meta class for Executables.''' 4034762Snate@binkert.org all = [] 4044762Snate@binkert.org 4057675Snate@binkert.org def __init__(cls, name, bases, d): 4064762Snate@binkert.org if not d.pop('abstract', False): 4074762Snate@binkert.org ExecutableMeta.all.append(cls) 4084762Snate@binkert.org super(ExecutableMeta, cls).__init__(name, bases, d) 4094762Snate@binkert.org 4104382Sbinkertn@umich.edu cls.all = [] 4114382Sbinkertn@umich.edu 4125517Snate@binkert.orgclass Executable(object): 4136654Snate@binkert.org '''Base class for creating an executable from sources.''' 4145517Snate@binkert.org __metaclass__ = ExecutableMeta 4158126Sgblack@eecs.umich.edu 4166654Snate@binkert.org abstract = True 4177673Snate@binkert.org 4186654Snate@binkert.org def __init__(self, target, *srcs_and_filts): 4196654Snate@binkert.org '''Specify the target name and any sources. Sources that are 4206654Snate@binkert.org not SourceFiles are evalued with Source().''' 4216654Snate@binkert.org super(Executable, self).__init__() 4226654Snate@binkert.org self.all.append(self) 4236654Snate@binkert.org self.target = target 4246654Snate@binkert.org 4256669Snate@binkert.org isFilter = lambda arg: isinstance(arg, SourceFilter) 4266669Snate@binkert.org self.filters = filter(isFilter, srcs_and_filts) 4276669Snate@binkert.org sources = filter(lambda a: not isFilter(a), srcs_and_filts) 4286669Snate@binkert.org 4296669Snate@binkert.org srcs = SourceList() 4306669Snate@binkert.org for src in sources: 4316654Snate@binkert.org if not isinstance(src, SourceFile): 4327673Snate@binkert.org src = Source(src, tags=[]) 4335517Snate@binkert.org srcs.append(src) 4348126Sgblack@eecs.umich.edu 4355798Snate@binkert.org self.sources = srcs 4367756SAli.Saidi@ARM.com self.dir = Dir('.') 4377816Ssteve.reinhardt@amd.com 4385798Snate@binkert.org def path(self, env): 4395798Snate@binkert.org return self.dir.File(self.target + '.' + env['EXE_SUFFIX']) 4405517Snate@binkert.org 4415517Snate@binkert.org def srcs_to_objs(self, env, sources): 4427673Snate@binkert.org return list([ s.static(env) for s in sources ]) 4435517Snate@binkert.org 4445517Snate@binkert.org @classmethod 4457673Snate@binkert.org def declare_all(cls, env): 4467673Snate@binkert.org return list([ instance.declare(env) for instance in cls.all ]) 4475517Snate@binkert.org 4485798Snate@binkert.org def declare(self, env, objs=None): 4495798Snate@binkert.org if objs is None: 4507974Sgblack@eecs.umich.edu objs = self.srcs_to_objs(env, self.sources) 4517816Ssteve.reinhardt@amd.com 4525798Snate@binkert.org if env['STRIP_EXES']: 4535798Snate@binkert.org stripped = self.path(env) 4544762Snate@binkert.org unstripped = env.File(str(stripped) + '.unstripped') 4554762Snate@binkert.org if sys.platform == 'sunos5': 4564762Snate@binkert.org cmd = 'cp $SOURCE $TARGET; strip $TARGET' 4574762Snate@binkert.org else: 4584762Snate@binkert.org cmd = 'strip $SOURCE -o $TARGET' 4595517Snate@binkert.org env.Program(unstripped, objs) 4605517Snate@binkert.org return env.Command(stripped, unstripped, 4615517Snate@binkert.org MakeAction(cmd, Transform("STRIP"))) 4625517Snate@binkert.org else: 4635517Snate@binkert.org return env.Program(self.path(env), objs) 4645517Snate@binkert.org 4657673Snate@binkert.orgclass UnitTest(Executable): 4667673Snate@binkert.org '''Create a UnitTest''' 4677673Snate@binkert.org def __init__(self, target, *srcs_and_filts, **kwargs): 4685517Snate@binkert.org super(UnitTest, self).__init__(target, *srcs_and_filts) 4695517Snate@binkert.org 4705517Snate@binkert.org self.main = kwargs.get('main', False) 4715517Snate@binkert.org 4725517Snate@binkert.org def declare(self, env): 4735517Snate@binkert.org sources = list(self.sources) 4745517Snate@binkert.org for f in self.filters: 4757673Snate@binkert.org sources += Source.all.apply_filter(f) 4767677Snate@binkert.org objs = self.srcs_to_objs(env, sources) + env['STATIC_OBJS'] 4777673Snate@binkert.org if self.main: 4787673Snate@binkert.org objs += env['MAIN_OBJS'] 4795517Snate@binkert.org return super(UnitTest, self).declare(env, objs) 4805517Snate@binkert.org 4815517Snate@binkert.orgclass GTest(Executable): 4825517Snate@binkert.org '''Create a unit test based on the google test framework.''' 4835517Snate@binkert.org all = [] 4845517Snate@binkert.org def __init__(self, *srcs_and_filts, **kwargs): 4855517Snate@binkert.org super(GTest, self).__init__(*srcs_and_filts) 4867673Snate@binkert.org 4877673Snate@binkert.org self.skip_lib = kwargs.pop('skip_lib', False) 4887673Snate@binkert.org 4895517Snate@binkert.org @classmethod 4905517Snate@binkert.org def declare_all(cls, env): 4915517Snate@binkert.org env = env.Clone() 4925517Snate@binkert.org env.Append(LIBS=env['GTEST_LIBS']) 4935517Snate@binkert.org env.Append(CPPFLAGS=env['GTEST_CPPFLAGS']) 4945517Snate@binkert.org env['GTEST_LIB_SOURCES'] = Source.all.with_tag('gtest lib') 4955517Snate@binkert.org env['GTEST_OUT_DIR'] = \ 4967673Snate@binkert.org Dir(env['BUILDDIR']).Dir('unittests.' + env['EXE_SUFFIX']) 4977673Snate@binkert.org return super(GTest, cls).declare_all(env) 4987673Snate@binkert.org 4995517Snate@binkert.org def declare(self, env): 5007675Snate@binkert.org sources = list(self.sources) 5017675Snate@binkert.org if not self.skip_lib: 5027675Snate@binkert.org sources += env['GTEST_LIB_SOURCES'] 5037675Snate@binkert.org for f in self.filters: 5047675Snate@binkert.org sources += Source.all.apply_filter(f) 5057675Snate@binkert.org objs = self.srcs_to_objs(env, sources) 5067675Snate@binkert.org 5077675Snate@binkert.org binary = super(GTest, self).declare(env, objs) 5087677Snate@binkert.org 5097675Snate@binkert.org out_dir = env['GTEST_OUT_DIR'] 5107675Snate@binkert.org xml_file = out_dir.Dir(str(self.dir)).File(self.target + '.xml') 5117675Snate@binkert.org AlwaysBuild(env.Command(xml_file, binary, 5127675Snate@binkert.org "${SOURCES[0]} --gtest_output=xml:${TARGETS[0]}")) 5137675Snate@binkert.org 5147675Snate@binkert.org return binary 5157675Snate@binkert.org 5167675Snate@binkert.orgclass Gem5(Executable): 5177675Snate@binkert.org '''Create a gem5 executable.''' 5184762Snate@binkert.org 5194762Snate@binkert.org def __init__(self, target): 5206143Snate@binkert.org super(Gem5, self).__init__(target) 5216143Snate@binkert.org 5226143Snate@binkert.org def declare(self, env): 5234762Snate@binkert.org objs = env['MAIN_OBJS'] + env['STATIC_OBJS'] 5244762Snate@binkert.org return super(Gem5, self).declare(env, objs) 5254762Snate@binkert.org 5267756SAli.Saidi@ARM.com 5277816Ssteve.reinhardt@amd.com# Children should have access 5284762Snate@binkert.orgExport('Blob') 5294762Snate@binkert.orgExport('GdbXml') 5304762Snate@binkert.orgExport('Source') 5315463Snate@binkert.orgExport('PySource') 5325517Snate@binkert.orgExport('SimObject') 5337677Snate@binkert.orgExport('ProtoBuf') 5345463Snate@binkert.orgExport('Executable') 5357756SAli.Saidi@ARM.comExport('UnitTest') 5367816Ssteve.reinhardt@amd.comExport('GTest') 5374762Snate@binkert.org 5387677Snate@binkert.org######################################################################## 5394762Snate@binkert.org# 5404762Snate@binkert.org# Debug Flags 5416143Snate@binkert.org# 5426143Snate@binkert.orgdebug_flags = {} 5436143Snate@binkert.orgdef DebugFlag(name, desc=None): 5444762Snate@binkert.org if name in debug_flags: 5454762Snate@binkert.org raise AttributeError, "Flag %s already specified" % name 5467756SAli.Saidi@ARM.com debug_flags[name] = (name, (), desc) 5477816Ssteve.reinhardt@amd.com 5484762Snate@binkert.orgdef CompoundFlag(name, flags, desc=None): 5494762Snate@binkert.org if name in debug_flags: 5504762Snate@binkert.org raise AttributeError, "Flag %s already specified" % name 5514762Snate@binkert.org 5527756SAli.Saidi@ARM.com compound = tuple(flags) 5537816Ssteve.reinhardt@amd.com debug_flags[name] = (name, compound, desc) 5544762Snate@binkert.org 5554762Snate@binkert.orgExport('DebugFlag') 5567677Snate@binkert.orgExport('CompoundFlag') 5577756SAli.Saidi@ARM.com 5587816Ssteve.reinhardt@amd.com######################################################################## 5597675Snate@binkert.org# 5607677Snate@binkert.org# Set some compiler variables 5615517Snate@binkert.org# 5627675Snate@binkert.org 5637675Snate@binkert.org# Include file paths are rooted in this directory. SCons will 5647675Snate@binkert.org# automatically expand '.' to refer to both the source directory and 5657675Snate@binkert.org# the corresponding build directory to pick up generated include 5667675Snate@binkert.org# files. 5677675Snate@binkert.orgenv.Append(CPPPATH=Dir('.')) 5687675Snate@binkert.org 5695517Snate@binkert.orgfor extra_dir in extras_dir_list: 5707673Snate@binkert.org env.Append(CPPPATH=Dir(extra_dir)) 5715517Snate@binkert.org 5727677Snate@binkert.org# Workaround for bug in SCons version > 0.97d20071212 5737675Snate@binkert.org# Scons bug id: 2006 gem5 Bug id: 308 5747673Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True): 5757675Snate@binkert.org Dir(root[len(base_dir) + 1:]) 5767675Snate@binkert.org 5777675Snate@binkert.org######################################################################## 5787673Snate@binkert.org# 5797675Snate@binkert.org# Walk the tree and execute all SConscripts in subdirectories 5805517Snate@binkert.org# 5817675Snate@binkert.org 5827675Snate@binkert.orghere = Dir('.').srcnode().abspath 5837673Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True): 5847675Snate@binkert.org if root == here: 5857675Snate@binkert.org # we don't want to recurse back into this SConscript 5867677Snate@binkert.org continue 5877675Snate@binkert.org 5887675Snate@binkert.org if 'SConscript' in files: 5897675Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:]) 5905517Snate@binkert.org Source.set_group(build_dir) 5917675Snate@binkert.org SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir) 5925517Snate@binkert.org 5937673Snate@binkert.orgfor extra_dir in extras_dir_list: 5945517Snate@binkert.org prefix_len = len(dirname(extra_dir)) + 1 5957675Snate@binkert.org 5967677Snate@binkert.org # Also add the corresponding build directory to pick up generated 5977756SAli.Saidi@ARM.com # include files. 5987816Ssteve.reinhardt@amd.com env.Append(CPPPATH=Dir(joinpath(env['BUILDDIR'], extra_dir[prefix_len:]))) 5997675Snate@binkert.org 6007677Snate@binkert.org for root, dirs, files in os.walk(extra_dir, topdown=True): 6014762Snate@binkert.org # if build lives in the extras directory, don't walk down it 6027674Snate@binkert.org if 'build' in dirs: 6037674Snate@binkert.org dirs.remove('build') 6047674Snate@binkert.org 6057674Snate@binkert.org if 'SConscript' in files: 6067674Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[prefix_len:]) 6077674Snate@binkert.org SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir) 6087674Snate@binkert.org 6097674Snate@binkert.orgfor opt in export_vars: 6107674Snate@binkert.org env.ConfigFile(opt) 6117674Snate@binkert.org 6127674Snate@binkert.orgdef makeTheISA(source, target, env): 6137674Snate@binkert.org isas = [ src.get_contents() for src in source ] 6147674Snate@binkert.org target_isa = env['TARGET_ISA'] 6157674Snate@binkert.org def define(isa): 6167674Snate@binkert.org return isa.upper() + '_ISA' 6174762Snate@binkert.org 6186143Snate@binkert.org def namespace(isa): 6196143Snate@binkert.org return isa[0].upper() + isa[1:].lower() + 'ISA' 6207756SAli.Saidi@ARM.com 6217816Ssteve.reinhardt@amd.com 6227674Snate@binkert.org code = code_formatter() 6237756SAli.Saidi@ARM.com code('''\ 6247816Ssteve.reinhardt@amd.com#ifndef __CONFIG_THE_ISA_HH__ 6257674Snate@binkert.org#define __CONFIG_THE_ISA_HH__ 6264382Sbinkertn@umich.edu 6278232Snate@binkert.org''') 6288232Snate@binkert.org 6298232Snate@binkert.org # create defines for the preprocessing and compile-time determination 6308232Snate@binkert.org for i,isa in enumerate(isas): 6318232Snate@binkert.org code('#define $0 $1', define(isa), i + 1) 6326229Snate@binkert.org code() 6338232Snate@binkert.org 6348232Snate@binkert.org # create an enum for any run-time determination of the ISA, we 6358232Snate@binkert.org # reuse the same name as the namespaces 6366229Snate@binkert.org code('enum class Arch {') 6377673Snate@binkert.org for i,isa in enumerate(isas): 6385517Snate@binkert.org if i + 1 == len(isas): 6395517Snate@binkert.org code(' $0 = $1', namespace(isa), define(isa)) 6407673Snate@binkert.org else: 6415517Snate@binkert.org code(' $0 = $1,', namespace(isa), define(isa)) 6425517Snate@binkert.org code('};') 6435517Snate@binkert.org 6445517Snate@binkert.org code(''' 6458232Snate@binkert.org 6467673Snate@binkert.org#define THE_ISA ${{define(target_isa)}} 6477673Snate@binkert.org#define TheISA ${{namespace(target_isa)}} 6488232Snate@binkert.org#define THE_ISA_STR "${{target_isa}}" 6498232Snate@binkert.org 6508232Snate@binkert.org#endif // __CONFIG_THE_ISA_HH__''') 6518232Snate@binkert.org 6527673Snate@binkert.org code.write(str(target[0])) 6535517Snate@binkert.org 6548232Snate@binkert.orgenv.Command('config/the_isa.hh', map(Value, all_isa_list), 6558232Snate@binkert.org MakeAction(makeTheISA, Transform("CFG ISA", 0))) 6568232Snate@binkert.org 6578232Snate@binkert.orgdef makeTheGPUISA(source, target, env): 6587673Snate@binkert.org isas = [ src.get_contents() for src in source ] 6598232Snate@binkert.org target_gpu_isa = env['TARGET_GPU_ISA'] 6608232Snate@binkert.org def define(isa): 6618232Snate@binkert.org return isa.upper() + '_ISA' 6628232Snate@binkert.org 6638232Snate@binkert.org def namespace(isa): 6648232Snate@binkert.org return isa[0].upper() + isa[1:].lower() + 'ISA' 6657673Snate@binkert.org 6665517Snate@binkert.org 6678232Snate@binkert.org code = code_formatter() 6688232Snate@binkert.org code('''\ 6695517Snate@binkert.org#ifndef __CONFIG_THE_GPU_ISA_HH__ 6707673Snate@binkert.org#define __CONFIG_THE_GPU_ISA_HH__ 6715517Snate@binkert.org 6728232Snate@binkert.org''') 6738232Snate@binkert.org 6745517Snate@binkert.org # create defines for the preprocessing and compile-time determination 6758232Snate@binkert.org for i,isa in enumerate(isas): 6768232Snate@binkert.org code('#define $0 $1', define(isa), i + 1) 6778232Snate@binkert.org code() 6787673Snate@binkert.org 6795517Snate@binkert.org # create an enum for any run-time determination of the ISA, we 6805517Snate@binkert.org # reuse the same name as the namespaces 6817673Snate@binkert.org code('enum class GPUArch {') 6825517Snate@binkert.org for i,isa in enumerate(isas): 6835517Snate@binkert.org if i + 1 == len(isas): 6845517Snate@binkert.org code(' $0 = $1', namespace(isa), define(isa)) 6858232Snate@binkert.org else: 6865517Snate@binkert.org code(' $0 = $1,', namespace(isa), define(isa)) 6875517Snate@binkert.org code('};') 6888232Snate@binkert.org 6898232Snate@binkert.org code(''' 6905517Snate@binkert.org 6918232Snate@binkert.org#define THE_GPU_ISA ${{define(target_gpu_isa)}} 6928232Snate@binkert.org#define TheGpuISA ${{namespace(target_gpu_isa)}} 6935517Snate@binkert.org#define THE_GPU_ISA_STR "${{target_gpu_isa}}" 6948232Snate@binkert.org 6958232Snate@binkert.org#endif // __CONFIG_THE_GPU_ISA_HH__''') 6968232Snate@binkert.org 6975517Snate@binkert.org code.write(str(target[0])) 6988232Snate@binkert.org 6998232Snate@binkert.orgenv.Command('config/the_gpu_isa.hh', map(Value, all_gpu_isa_list), 7008232Snate@binkert.org MakeAction(makeTheGPUISA, Transform("CFG ISA", 0))) 7018232Snate@binkert.org 7028232Snate@binkert.org######################################################################## 7038232Snate@binkert.org# 7045517Snate@binkert.org# Prevent any SimObjects from being added after this point, they 7058232Snate@binkert.org# should all have been added in the SConscripts above 7068232Snate@binkert.org# 7075517Snate@binkert.orgSimObject.fixed = True 7088232Snate@binkert.org 7097673Snate@binkert.orgclass DictImporter(object): 7105517Snate@binkert.org '''This importer takes a dictionary of arbitrary module names that 7117673Snate@binkert.org map to arbitrary filenames.''' 7125517Snate@binkert.org def __init__(self, modules): 7138232Snate@binkert.org self.modules = modules 7148232Snate@binkert.org self.installed = set() 7158232Snate@binkert.org 7165192Ssaidi@eecs.umich.edu def __del__(self): 7178232Snate@binkert.org self.unload() 7188232Snate@binkert.org 7198232Snate@binkert.org def unload(self): 7208232Snate@binkert.org import sys 7218232Snate@binkert.org for module in self.installed: 7225192Ssaidi@eecs.umich.edu del sys.modules[module] 7237674Snate@binkert.org self.installed = set() 7245522Snate@binkert.org 7255522Snate@binkert.org def find_module(self, fullname, path): 7267674Snate@binkert.org if fullname == 'm5.defines': 7277674Snate@binkert.org return self 7287674Snate@binkert.org 7297674Snate@binkert.org if fullname == 'm5.objects': 7307674Snate@binkert.org return self 7317674Snate@binkert.org 7327674Snate@binkert.org if fullname.startswith('_m5'): 7337674Snate@binkert.org return None 7345522Snate@binkert.org 7355522Snate@binkert.org source = self.modules.get(fullname, None) 7365522Snate@binkert.org if source is not None and fullname.startswith('m5.objects'): 7375517Snate@binkert.org return self 7385522Snate@binkert.org 7395517Snate@binkert.org return None 7406143Snate@binkert.org 7416727Ssteve.reinhardt@amd.com def load_module(self, fullname): 7425522Snate@binkert.org mod = imp.new_module(fullname) 7435522Snate@binkert.org sys.modules[fullname] = mod 7445522Snate@binkert.org self.installed.add(fullname) 7457674Snate@binkert.org 7465517Snate@binkert.org mod.__loader__ = self 7477673Snate@binkert.org if fullname == 'm5.objects': 7487673Snate@binkert.org mod.__path__ = fullname.split('.') 7497674Snate@binkert.org return mod 7507673Snate@binkert.org 7517674Snate@binkert.org if fullname == 'm5.defines': 7527674Snate@binkert.org mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env) 7537674Snate@binkert.org return mod 7547674Snate@binkert.org 7557674Snate@binkert.org source = self.modules[fullname] 7567674Snate@binkert.org if source.modname == '__init__': 7575522Snate@binkert.org mod.__path__ = source.modpath 7585522Snate@binkert.org mod.__file__ = source.abspath 7597674Snate@binkert.org 7607674Snate@binkert.org exec file(source.abspath, 'r') in mod.__dict__ 7617674Snate@binkert.org 7627674Snate@binkert.org return mod 7637673Snate@binkert.org 7647674Snate@binkert.orgimport m5.SimObject 7657674Snate@binkert.orgimport m5.params 7667674Snate@binkert.orgfrom m5.util import code_formatter 7677674Snate@binkert.org 7687674Snate@binkert.orgm5.SimObject.clear() 7697674Snate@binkert.orgm5.params.clear() 7707674Snate@binkert.org 7717674Snate@binkert.org# install the python importer so we can grab stuff from the source 7727811Ssteve.reinhardt@amd.com# tree itself. We can't have SimObjects added after this point or 7737674Snate@binkert.org# else we won't know about them for the rest of the stuff. 7747673Snate@binkert.orgimporter = DictImporter(PySource.modules) 7755522Snate@binkert.orgsys.meta_path[0:0] = [ importer ] 7766143Snate@binkert.org 7777756SAli.Saidi@ARM.com# import all sim objects so we can populate the all_objects list 7787816Ssteve.reinhardt@amd.com# make sure that we're working with a list, then let's sort it 7797674Snate@binkert.orgfor modname in SimObject.modnames: 7804382Sbinkertn@umich.edu exec('from m5.objects import %s' % modname) 7814382Sbinkertn@umich.edu 7824382Sbinkertn@umich.edu# we need to unload all of the currently imported modules so that they 7834382Sbinkertn@umich.edu# will be re-imported the next time the sconscript is run 7844382Sbinkertn@umich.eduimporter.unload() 7854382Sbinkertn@umich.edusys.meta_path.remove(importer) 7864382Sbinkertn@umich.edu 7874382Sbinkertn@umich.edusim_objects = m5.SimObject.allClasses 7884382Sbinkertn@umich.eduall_enums = m5.params.allEnums 7894382Sbinkertn@umich.edu 7906143Snate@binkert.orgfor name,obj in sorted(sim_objects.iteritems()): 791955SN/A for param in obj._params.local.values(): 7922655Sstever@eecs.umich.edu # load the ptype attribute now because it depends on the 7932655Sstever@eecs.umich.edu # current version of SimObject.allClasses, but when scons 7942655Sstever@eecs.umich.edu # actually uses the value, all versions of 7952655Sstever@eecs.umich.edu # SimObject.allClasses will have been loaded 7962655Sstever@eecs.umich.edu param.ptype 7975601Snate@binkert.org 7985601Snate@binkert.org######################################################################## 7995601Snate@binkert.org# 8005601Snate@binkert.org# calculate extra dependencies 8015522Snate@binkert.org# 8025863Snate@binkert.orgmodule_depends = ["m5", "m5.SimObject", "m5.params"] 8035601Snate@binkert.orgdepends = [ PySource.modules[dep].snode for dep in module_depends ] 8045601Snate@binkert.orgdepends.sort(key = lambda x: x.name) 8055601Snate@binkert.org 8065863Snate@binkert.org######################################################################## 8076143Snate@binkert.org# 8085559Snate@binkert.org# Commands for the basic automatically generated python files 8095559Snate@binkert.org# 8105559Snate@binkert.org 8115559Snate@binkert.org# Generate Python file containing a dict specifying the current 8125601Snate@binkert.org# buildEnv flags. 8136143Snate@binkert.orgdef makeDefinesPyFile(target, source, env): 8146143Snate@binkert.org build_env = source[0].get_contents() 8156143Snate@binkert.org 8166143Snate@binkert.org code = code_formatter() 8176143Snate@binkert.org code(""" 8186143Snate@binkert.orgimport _m5.core 8196143Snate@binkert.orgimport m5.util 8206143Snate@binkert.org 8216143Snate@binkert.orgbuildEnv = m5.util.SmartDict($build_env) 8226143Snate@binkert.org 8236143Snate@binkert.orgcompileDate = _m5.core.compileDate 8246143Snate@binkert.org_globals = globals() 8256143Snate@binkert.orgfor key,val in _m5.core.__dict__.iteritems(): 8266143Snate@binkert.org if key.startswith('flag_'): 8276143Snate@binkert.org flag = key[5:] 8286143Snate@binkert.org _globals[flag] = val 8296143Snate@binkert.orgdel _globals 8306143Snate@binkert.org""") 8316143Snate@binkert.org code.write(target[0].abspath) 8326143Snate@binkert.org 8336143Snate@binkert.orgdefines_info = Value(build_env) 8346143Snate@binkert.org# Generate a file with all of the compile options in it 8356143Snate@binkert.orgenv.Command('python/m5/defines.py', defines_info, 8366143Snate@binkert.org MakeAction(makeDefinesPyFile, Transform("DEFINES", 0))) 8376143Snate@binkert.orgPySource('m5', 'python/m5/defines.py') 8386143Snate@binkert.org 8396143Snate@binkert.org# Generate python file containing info about the M5 source code 8406143Snate@binkert.orgdef makeInfoPyFile(target, source, env): 8416143Snate@binkert.org code = code_formatter() 8426143Snate@binkert.org for src in source: 8436143Snate@binkert.org data = ''.join(file(src.srcnode().abspath, 'r').xreadlines()) 8446143Snate@binkert.org code('$src = ${{repr(data)}}') 8456240Snate@binkert.org code.write(str(target[0])) 8465554Snate@binkert.org 8475522Snate@binkert.org# Generate a file that wraps the basic top level files 8485522Snate@binkert.orgenv.Command('python/m5/info.py', 8495797Snate@binkert.org [ '#/COPYING', '#/LICENSE', '#/README', ], 8505797Snate@binkert.org MakeAction(makeInfoPyFile, Transform("INFO"))) 8515522Snate@binkert.orgPySource('m5', 'python/m5/info.py') 8525584Snate@binkert.org 8536143Snate@binkert.org######################################################################## 8545862Snate@binkert.org# 8555584Snate@binkert.org# Create all of the SimObject param headers and enum headers 8565601Snate@binkert.org# 8576143Snate@binkert.org 8586143Snate@binkert.orgdef createSimObjectParamStruct(target, source, env): 8592655Sstever@eecs.umich.edu assert len(target) == 1 and len(source) == 1 8606143Snate@binkert.org 8616143Snate@binkert.org name = source[0].get_text_contents() 8626143Snate@binkert.org obj = sim_objects[name] 8636143Snate@binkert.org 8646143Snate@binkert.org code = code_formatter() 8654007Ssaidi@eecs.umich.edu obj.cxx_param_decl(code) 8664596Sbinkertn@umich.edu code.write(target[0].abspath) 8674007Ssaidi@eecs.umich.edu 8684596Sbinkertn@umich.edudef createSimObjectCxxConfig(is_header): 8697756SAli.Saidi@ARM.com def body(target, source, env): 8707816Ssteve.reinhardt@amd.com assert len(target) == 1 and len(source) == 1 8715522Snate@binkert.org 8725601Snate@binkert.org name = str(source[0].get_contents()) 8735601Snate@binkert.org obj = sim_objects[name] 8742655Sstever@eecs.umich.edu 875955SN/A code = code_formatter() 8763918Ssaidi@eecs.umich.edu obj.cxx_config_param_file(code, is_header) 8773918Ssaidi@eecs.umich.edu code.write(target[0].abspath) 8783918Ssaidi@eecs.umich.edu return body 8793918Ssaidi@eecs.umich.edu 8803918Ssaidi@eecs.umich.edudef createEnumStrings(target, source, env): 8813918Ssaidi@eecs.umich.edu assert len(target) == 1 and len(source) == 2 8823918Ssaidi@eecs.umich.edu 8833918Ssaidi@eecs.umich.edu name = source[0].get_text_contents() 8843918Ssaidi@eecs.umich.edu use_python = source[1].read() 8853918Ssaidi@eecs.umich.edu obj = all_enums[name] 8863918Ssaidi@eecs.umich.edu 8873918Ssaidi@eecs.umich.edu code = code_formatter() 8883918Ssaidi@eecs.umich.edu obj.cxx_def(code) 8893918Ssaidi@eecs.umich.edu if use_python: 8903940Ssaidi@eecs.umich.edu obj.pybind_def(code) 8913940Ssaidi@eecs.umich.edu code.write(target[0].abspath) 8923940Ssaidi@eecs.umich.edu 8933942Ssaidi@eecs.umich.edudef createEnumDecls(target, source, env): 8943940Ssaidi@eecs.umich.edu assert len(target) == 1 and len(source) == 1 8953515Ssaidi@eecs.umich.edu 8963918Ssaidi@eecs.umich.edu name = source[0].get_text_contents() 8974762Snate@binkert.org obj = all_enums[name] 8983515Ssaidi@eecs.umich.edu 8992655Sstever@eecs.umich.edu code = code_formatter() 9003918Ssaidi@eecs.umich.edu obj.cxx_decl(code) 9013619Sbinkertn@umich.edu code.write(target[0].abspath) 902955SN/A 903955SN/Adef createSimObjectPyBindWrapper(target, source, env): 9042655Sstever@eecs.umich.edu name = source[0].get_text_contents() 9053918Ssaidi@eecs.umich.edu obj = sim_objects[name] 9063619Sbinkertn@umich.edu 907955SN/A code = code_formatter() 908955SN/A obj.pybind_decl(code) 9092655Sstever@eecs.umich.edu code.write(target[0].abspath) 9103918Ssaidi@eecs.umich.edu 9113619Sbinkertn@umich.edu# Generate all of the SimObject param C++ struct header files 912955SN/Aparams_hh_files = [] 913955SN/Afor name,simobj in sorted(sim_objects.iteritems()): 9142655Sstever@eecs.umich.edu py_source = PySource.modules[simobj.__module__] 9153918Ssaidi@eecs.umich.edu extra_deps = [ py_source.tnode ] 9163683Sstever@eecs.umich.edu 9172655Sstever@eecs.umich.edu hh_file = File('params/%s.hh' % name) 9181869SN/A params_hh_files.append(hh_file) 9191869SN/A env.Command(hh_file, Value(name), 920 MakeAction(createSimObjectParamStruct, Transform("SO PARAM"))) 921 env.Depends(hh_file, depends + extra_deps) 922 923# C++ parameter description files 924if GetOption('with_cxx_config'): 925 for name,simobj in sorted(sim_objects.iteritems()): 926 py_source = PySource.modules[simobj.__module__] 927 extra_deps = [ py_source.tnode ] 928 929 cxx_config_hh_file = File('cxx_config/%s.hh' % name) 930 cxx_config_cc_file = File('cxx_config/%s.cc' % name) 931 env.Command(cxx_config_hh_file, Value(name), 932 MakeAction(createSimObjectCxxConfig(True), 933 Transform("CXXCPRHH"))) 934 env.Command(cxx_config_cc_file, Value(name), 935 MakeAction(createSimObjectCxxConfig(False), 936 Transform("CXXCPRCC"))) 937 env.Depends(cxx_config_hh_file, depends + extra_deps + 938 [File('params/%s.hh' % name), File('sim/cxx_config.hh')]) 939 env.Depends(cxx_config_cc_file, depends + extra_deps + 940 [cxx_config_hh_file]) 941 Source(cxx_config_cc_file) 942 943 cxx_config_init_cc_file = File('cxx_config/init.cc') 944 945 def createCxxConfigInitCC(target, source, env): 946 assert len(target) == 1 and len(source) == 1 947 948 code = code_formatter() 949 950 for name,simobj in sorted(sim_objects.iteritems()): 951 if not hasattr(simobj, 'abstract') or not simobj.abstract: 952 code('#include "cxx_config/${name}.hh"') 953 code() 954 code('void cxxConfigInit()') 955 code('{') 956 code.indent() 957 for name,simobj in sorted(sim_objects.iteritems()): 958 not_abstract = not hasattr(simobj, 'abstract') or \ 959 not simobj.abstract 960 if not_abstract and 'type' in simobj.__dict__: 961 code('cxx_config_directory["${name}"] = ' 962 '${name}CxxConfigParams::makeDirectoryEntry();') 963 code.dedent() 964 code('}') 965 code.write(target[0].abspath) 966 967 py_source = PySource.modules[simobj.__module__] 968 extra_deps = [ py_source.tnode ] 969 env.Command(cxx_config_init_cc_file, Value(name), 970 MakeAction(createCxxConfigInitCC, Transform("CXXCINIT"))) 971 cxx_param_hh_files = ["cxx_config/%s.hh" % simobj 972 for name,simobj in sorted(sim_objects.iteritems()) 973 if not hasattr(simobj, 'abstract') or not simobj.abstract] 974 Depends(cxx_config_init_cc_file, cxx_param_hh_files + 975 [File('sim/cxx_config.hh')]) 976 Source(cxx_config_init_cc_file) 977 978# Generate all enum header files 979for name,enum in sorted(all_enums.iteritems()): 980 py_source = PySource.modules[enum.__module__] 981 extra_deps = [ py_source.tnode ] 982 983 cc_file = File('enums/%s.cc' % name) 984 env.Command(cc_file, [Value(name), Value(env['USE_PYTHON'])], 985 MakeAction(createEnumStrings, Transform("ENUM STR"))) 986 env.Depends(cc_file, depends + extra_deps) 987 Source(cc_file) 988 989 hh_file = File('enums/%s.hh' % name) 990 env.Command(hh_file, Value(name), 991 MakeAction(createEnumDecls, Transform("ENUMDECL"))) 992 env.Depends(hh_file, depends + extra_deps) 993 994# Generate SimObject Python bindings wrapper files 995if env['USE_PYTHON']: 996 for name,simobj in sorted(sim_objects.iteritems()): 997 py_source = PySource.modules[simobj.__module__] 998 extra_deps = [ py_source.tnode ] 999 cc_file = File('python/_m5/param_%s.cc' % name) 1000 env.Command(cc_file, Value(name), 1001 MakeAction(createSimObjectPyBindWrapper, 1002 Transform("SO PyBind"))) 1003 env.Depends(cc_file, depends + extra_deps) 1004 Source(cc_file) 1005 1006# Build all protocol buffers if we have got protoc and protobuf available 1007if env['HAVE_PROTOBUF']: 1008 for proto in ProtoBuf.all: 1009 # Use both the source and header as the target, and the .proto 1010 # file as the source. When executing the protoc compiler, also 1011 # specify the proto_path to avoid having the generated files 1012 # include the path. 1013 env.Command([proto.cc_file, proto.hh_file], proto.tnode, 1014 MakeAction('$PROTOC --cpp_out ${TARGET.dir} ' 1015 '--proto_path ${SOURCE.dir} $SOURCE', 1016 Transform("PROTOC"))) 1017 1018 # Add the C++ source file 1019 Source(proto.cc_file, tags=proto.tags) 1020elif ProtoBuf.all: 1021 print('Got protobuf to build, but lacks support!') 1022 Exit(1) 1023 1024# 1025# Handle debug flags 1026# 1027def makeDebugFlagCC(target, source, env): 1028 assert(len(target) == 1 and len(source) == 1) 1029 1030 code = code_formatter() 1031 1032 # delay definition of CompoundFlags until after all the definition 1033 # of all constituent SimpleFlags 1034 comp_code = code_formatter() 1035 1036 # file header 1037 code(''' 1038/* 1039 * DO NOT EDIT THIS FILE! Automatically generated by SCons. 1040 */ 1041 1042#include "base/debug.hh" 1043 1044namespace Debug { 1045 1046''') 1047 1048 for name, flag in sorted(source[0].read().iteritems()): 1049 n, compound, desc = flag 1050 assert n == name 1051 1052 if not compound: 1053 code('SimpleFlag $name("$name", "$desc");') 1054 else: 1055 comp_code('CompoundFlag $name("$name", "$desc",') 1056 comp_code.indent() 1057 last = len(compound) - 1 1058 for i,flag in enumerate(compound): 1059 if i != last: 1060 comp_code('&$flag,') 1061 else: 1062 comp_code('&$flag);') 1063 comp_code.dedent() 1064 1065 code.append(comp_code) 1066 code() 1067 code('} // namespace Debug') 1068 1069 code.write(str(target[0])) 1070 1071def makeDebugFlagHH(target, source, env): 1072 assert(len(target) == 1 and len(source) == 1) 1073 1074 val = eval(source[0].get_contents()) 1075 name, compound, desc = val 1076 1077 code = code_formatter() 1078 1079 # file header boilerplate 1080 code('''\ 1081/* 1082 * DO NOT EDIT THIS FILE! Automatically generated by SCons. 1083 */ 1084 1085#ifndef __DEBUG_${name}_HH__ 1086#define __DEBUG_${name}_HH__ 1087 1088namespace Debug { 1089''') 1090 1091 if compound: 1092 code('class CompoundFlag;') 1093 code('class SimpleFlag;') 1094 1095 if compound: 1096 code('extern CompoundFlag $name;') 1097 for flag in compound: 1098 code('extern SimpleFlag $flag;') 1099 else: 1100 code('extern SimpleFlag $name;') 1101 1102 code(''' 1103} 1104 1105#endif // __DEBUG_${name}_HH__ 1106''') 1107 1108 code.write(str(target[0])) 1109 1110for name,flag in sorted(debug_flags.iteritems()): 1111 n, compound, desc = flag 1112 assert n == name 1113 1114 hh_file = 'debug/%s.hh' % name 1115 env.Command(hh_file, Value(flag), 1116 MakeAction(makeDebugFlagHH, Transform("TRACING", 0))) 1117 1118env.Command('debug/flags.cc', Value(debug_flags), 1119 MakeAction(makeDebugFlagCC, Transform("TRACING", 0))) 1120Source('debug/flags.cc') 1121 1122# version tags 1123tags = \ 1124env.Command('sim/tags.cc', None, 1125 MakeAction('util/cpt_upgrader.py --get-cc-file > $TARGET', 1126 Transform("VER TAGS"))) 1127env.AlwaysBuild(tags) 1128 1129# Embed python files. All .py files that have been indicated by a 1130# PySource() call in a SConscript need to be embedded into the M5 1131# library. To do that, we compile the file to byte code, marshal the 1132# byte code, compress it, and then generate a c++ file that 1133# inserts the result into an array. 1134def embedPyFile(target, source, env): 1135 def c_str(string): 1136 if string is None: 1137 return "0" 1138 return '"%s"' % string 1139 1140 '''Action function to compile a .py into a code object, marshal 1141 it, compress it, and stick it into an asm file so the code appears 1142 as just bytes with a label in the data section''' 1143 1144 src = file(str(source[0]), 'r').read() 1145 1146 pysource = PySource.tnodes[source[0]] 1147 compiled = compile(src, pysource.abspath, 'exec') 1148 marshalled = marshal.dumps(compiled) 1149 compressed = zlib.compress(marshalled) 1150 data = compressed 1151 sym = pysource.symname 1152 1153 code = code_formatter() 1154 code('''\ 1155#include "sim/init.hh" 1156 1157namespace { 1158 1159''') 1160 blobToCpp(data, 'data_' + sym, code) 1161 code('''\ 1162 1163 1164EmbeddedPython embedded_${sym}( 1165 ${{c_str(pysource.arcname)}}, 1166 ${{c_str(pysource.abspath)}}, 1167 ${{c_str(pysource.modpath)}}, 1168 data_${sym}, 1169 ${{len(data)}}, 1170 ${{len(marshalled)}}); 1171 1172} // anonymous namespace 1173''') 1174 code.write(str(target[0])) 1175 1176for source in PySource.all: 1177 env.Command(source.cpp, source.tnode, 1178 MakeAction(embedPyFile, Transform("EMBED PY"))) 1179 Source(source.cpp, tags=source.tags, add_tags='python') 1180 1181######################################################################## 1182# 1183# Define binaries. Each different build type (debug, opt, etc.) gets 1184# a slightly different build environment. 1185# 1186 1187# List of constructed environments to pass back to SConstruct 1188date_source = Source('base/date.cc', tags=[]) 1189 1190gem5_binary = Gem5('gem5') 1191 1192# Function to create a new build environment as clone of current 1193# environment 'env' with modified object suffix and optional stripped 1194# binary. Additional keyword arguments are appended to corresponding 1195# build environment vars. 1196def makeEnv(env, label, objsfx, strip=False, disable_partial=False, **kwargs): 1197 # SCons doesn't know to append a library suffix when there is a '.' in the 1198 # name. Use '_' instead. 1199 libname = 'gem5_' + label 1200 secondary_exename = 'm5.' + label 1201 1202 new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's') 1203 new_env.Label = label 1204 new_env.Append(**kwargs) 1205 1206 lib_sources = Source.all.with_tag('gem5 lib') 1207 1208 # Without Python, leave out all Python content from the library 1209 # builds. The option doesn't affect gem5 built as a program 1210 if GetOption('without_python'): 1211 lib_sources = lib_sources.without_tag('python') 1212 1213 static_objs = [] 1214 shared_objs = [] 1215 1216 for s in lib_sources.with_tag(Source.ungrouped_tag): 1217 static_objs.append(s.static(new_env)) 1218 shared_objs.append(s.shared(new_env)) 1219 1220 for group in Source.source_groups: 1221 srcs = lib_sources.with_tag(Source.link_group_tag(group)) 1222 if not srcs: 1223 continue 1224 1225 group_static = [ s.static(new_env) for s in srcs ] 1226 group_shared = [ s.shared(new_env) for s in srcs ] 1227 1228 # If partial linking is disabled, add these sources to the build 1229 # directly, and short circuit this loop. 1230 if disable_partial: 1231 static_objs.extend(group_static) 1232 shared_objs.extend(group_shared) 1233 continue 1234 1235 # Set up the static partially linked objects. 1236 file_name = new_env.subst("${OBJPREFIX}lib${OBJSUFFIX}.partial") 1237 target = File(joinpath(group, file_name)) 1238 partial = env.PartialStatic(target=target, source=group_static) 1239 static_objs.extend(partial) 1240 1241 # Set up the shared partially linked objects. 1242 file_name = new_env.subst("${SHOBJPREFIX}lib${SHOBJSUFFIX}.partial") 1243 target = File(joinpath(group, file_name)) 1244 partial = env.PartialShared(target=target, source=group_shared) 1245 shared_objs.extend(partial) 1246 1247 static_date = date_source.static(new_env) 1248 new_env.Depends(static_date, static_objs) 1249 static_objs.extend(static_date) 1250 1251 shared_date = date_source.shared(new_env) 1252 new_env.Depends(shared_date, shared_objs) 1253 shared_objs.extend(shared_date) 1254 1255 main_objs = [ s.static(new_env) for s in Source.all.with_tag('main') ] 1256 1257 # First make a library of everything but main() so other programs can 1258 # link against m5. 1259 static_lib = new_env.StaticLibrary(libname, static_objs) 1260 shared_lib = new_env.SharedLibrary(libname, shared_objs) 1261 1262 # Keep track of the object files generated so far so Executables can 1263 # include them. 1264 new_env['STATIC_OBJS'] = static_objs 1265 new_env['SHARED_OBJS'] = shared_objs 1266 new_env['MAIN_OBJS'] = main_objs 1267 1268 new_env['STATIC_LIB'] = static_lib 1269 new_env['SHARED_LIB'] = shared_lib 1270 1271 # Record some settings for building Executables. 1272 new_env['EXE_SUFFIX'] = label 1273 new_env['STRIP_EXES'] = strip 1274 1275 for cls in ExecutableMeta.all: 1276 cls.declare_all(new_env) 1277 1278 new_env.M5Binary = File(gem5_binary.path(new_env)) 1279 1280 new_env.Command(secondary_exename, new_env.M5Binary, 1281 MakeAction('ln $SOURCE $TARGET', Transform("HARDLINK"))) 1282 1283 # Set up regression tests. 1284 SConscript(os.path.join(env.root.abspath, 'tests', 'SConscript'), 1285 variant_dir=Dir('tests').Dir(new_env.Label), 1286 exports={ 'env' : new_env }, duplicate=False) 1287 1288# Start out with the compiler flags common to all compilers, 1289# i.e. they all use -g for opt and -g -pg for prof 1290ccflags = {'debug' : [], 'opt' : ['-g'], 'fast' : [], 'prof' : ['-g', '-pg'], 1291 'perf' : ['-g']} 1292 1293# Start out with the linker flags common to all linkers, i.e. -pg for 1294# prof, and -lprofiler for perf. The -lprofile flag is surrounded by 1295# no-as-needed and as-needed as the binutils linker is too clever and 1296# simply doesn't link to the library otherwise. 1297ldflags = {'debug' : [], 'opt' : [], 'fast' : [], 'prof' : ['-pg'], 1298 'perf' : ['-Wl,--no-as-needed', '-lprofiler', '-Wl,--as-needed']} 1299 1300# For Link Time Optimization, the optimisation flags used to compile 1301# individual files are decoupled from those used at link time 1302# (i.e. you can compile with -O3 and perform LTO with -O0), so we need 1303# to also update the linker flags based on the target. 1304if env['GCC']: 1305 if sys.platform == 'sunos5': 1306 ccflags['debug'] += ['-gstabs+'] 1307 else: 1308 ccflags['debug'] += ['-ggdb3'] 1309 ldflags['debug'] += ['-O0'] 1310 # opt, fast, prof and perf all share the same cc flags, also add 1311 # the optimization to the ldflags as LTO defers the optimization 1312 # to link time 1313 for target in ['opt', 'fast', 'prof', 'perf']: 1314 ccflags[target] += ['-O3'] 1315 ldflags[target] += ['-O3'] 1316 1317 ccflags['fast'] += env['LTO_CCFLAGS'] 1318 ldflags['fast'] += env['LTO_LDFLAGS'] 1319elif env['CLANG']: 1320 ccflags['debug'] += ['-g', '-O0'] 1321 # opt, fast, prof and perf all share the same cc flags 1322 for target in ['opt', 'fast', 'prof', 'perf']: 1323 ccflags[target] += ['-O3'] 1324else: 1325 print('Unknown compiler, please fix compiler options') 1326 Exit(1) 1327 1328 1329# To speed things up, we only instantiate the build environments we 1330# need. We try to identify the needed environment for each target; if 1331# we can't, we fall back on instantiating all the environments just to 1332# be safe. 1333target_types = ['debug', 'opt', 'fast', 'prof', 'perf'] 1334obj2target = {'do': 'debug', 'o': 'opt', 'fo': 'fast', 'po': 'prof', 1335 'gpo' : 'perf'} 1336 1337def identifyTarget(t): 1338 ext = t.split('.')[-1] 1339 if ext in target_types: 1340 return ext 1341 if ext in obj2target: 1342 return obj2target[ext] 1343 match = re.search(r'/tests/([^/]+)/', t) 1344 if match and match.group(1) in target_types: 1345 return match.group(1) 1346 return 'all' 1347 1348needed_envs = [identifyTarget(target) for target in BUILD_TARGETS] 1349if 'all' in needed_envs: 1350 needed_envs += target_types 1351 1352disable_partial = False 1353if env['PLATFORM'] == 'darwin': 1354 # Up until Apple LLVM version 10.0.0 (clang-1000.11.45.5), partial 1355 # linked objects do not expose symbols that are marked with the 1356 # hidden visibility and consequently building gem5 on Mac OS 1357 # fails. As a workaround, we disable partial linking, however, we 1358 # may want to revisit in the future. 1359 disable_partial = True 1360 1361# Debug binary 1362if 'debug' in needed_envs: 1363 makeEnv(env, 'debug', '.do', 1364 CCFLAGS = Split(ccflags['debug']), 1365 CPPDEFINES = ['DEBUG', 'TRACING_ON=1'], 1366 LINKFLAGS = Split(ldflags['debug']), 1367 disable_partial=disable_partial) 1368 1369# Optimized binary 1370if 'opt' in needed_envs: 1371 makeEnv(env, 'opt', '.o', 1372 CCFLAGS = Split(ccflags['opt']), 1373 CPPDEFINES = ['TRACING_ON=1'], 1374 LINKFLAGS = Split(ldflags['opt']), 1375 disable_partial=disable_partial) 1376 1377# "Fast" binary 1378if 'fast' in needed_envs: 1379 disable_partial = disable_partial and \ 1380 env.get('BROKEN_INCREMENTAL_LTO', False) and \ 1381 GetOption('force_lto') 1382 makeEnv(env, 'fast', '.fo', strip = True, 1383 CCFLAGS = Split(ccflags['fast']), 1384 CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 1385 LINKFLAGS = Split(ldflags['fast']), 1386 disable_partial=disable_partial) 1387 1388# Profiled binary using gprof 1389if 'prof' in needed_envs: 1390 makeEnv(env, 'prof', '.po', 1391 CCFLAGS = Split(ccflags['prof']), 1392 CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 1393 LINKFLAGS = Split(ldflags['prof']), 1394 disable_partial=disable_partial) 1395 1396# Profiled binary using google-pprof 1397if 'perf' in needed_envs: 1398 makeEnv(env, 'perf', '.gpo', 1399 CCFLAGS = Split(ccflags['perf']), 1400 CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 1401 LINKFLAGS = Split(ldflags['perf']), 1402 disable_partial=disable_partial) 1403