SConscript revision 13630
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 598233Snate@binkert.orgfrom gem5_scons import Transform 608233Snate@binkert.org 618233Snate@binkert.org# This file defines how to build a particular configuration of gem5 628233Snate@binkert.org# based on variable settings in the 'env' build environment. 638233Snate@binkert.org 648233Snate@binkert.orgImport('*') 658233Snate@binkert.org 668233Snate@binkert.org# Children need to see the environment 678233Snate@binkert.orgExport('env') 688233Snate@binkert.org 698233Snate@binkert.orgbuild_env = [(opt, env[opt]) for opt in export_vars] 708233Snate@binkert.org 718233Snate@binkert.orgfrom m5.util import code_formatter, compareVersions 726143Snate@binkert.org 738233Snate@binkert.org######################################################################## 748233Snate@binkert.org# Code for adding source files of various types 758233Snate@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): 808233Snate@binkert.org def __init__(self, predicate): 818233Snate@binkert.org self.predicate = predicate 828233Snate@binkert.org 836143Snate@binkert.org def __or__(self, other): 848233Snate@binkert.org return SourceFilter(lambda tags: self.predicate(tags) or 858233Snate@binkert.org other.predicate(tags)) 868233Snate@binkert.org 878233Snate@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 914762Snate@binkert.orgdef with_tags_that(predicate): 926143Snate@binkert.org '''Return a list of sources with tags that satisfy a predicate.''' 938233Snate@binkert.org return SourceFilter(predicate) 948233Snate@binkert.org 958233Snate@binkert.orgdef with_any_tags(*tags): 968233Snate@binkert.org '''Return a list of sources with any of the supplied tags.''' 978233Snate@binkert.org return SourceFilter(lambda stags: len(set(tags) & stags) > 0) 986143Snate@binkert.org 998233Snate@binkert.orgdef with_all_tags(*tags): 1008233Snate@binkert.org '''Return a list of sources with all of the supplied tags.''' 1018233Snate@binkert.org return SourceFilter(lambda stags: set(tags) <= stags) 1028233Snate@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): 1127065Snate@binkert.org '''Return a list of sources with the supplied tag.''' 1136143Snate@binkert.org return SourceFilter(lambda stags: tag not in stags) 1148233Snate@binkert.org 1158233Snate@binkert.orgsource_filter_factories = { 1168233Snate@binkert.org 'with_tags_that': with_tags_that, 1178233Snate@binkert.org 'with_any_tags': with_any_tags, 1188233Snate@binkert.org 'with_all_tags': with_all_tags, 1198233Snate@binkert.org 'with_tag': with_tag, 1208233Snate@binkert.org 'without_tags': without_tags, 1218233Snate@binkert.org 'without_tag': without_tag, 1228233Snate@binkert.org} 1238233Snate@binkert.org 1248233Snate@binkert.orgExport(source_filter_factories) 1258233Snate@binkert.org 1268233Snate@binkert.orgclass SourceList(list): 1278233Snate@binkert.org def apply_filter(self, f): 1288233Snate@binkert.org def match(source): 1298233Snate@binkert.org return f.predicate(source.tags) 1308233Snate@binkert.org return SourceList(filter(match, self)) 1318233Snate@binkert.org 1328233Snate@binkert.org def __getattr__(self, name): 1338233Snate@binkert.org func = source_filter_factories.get(name, None) 1348233Snate@binkert.org if not func: 1358233Snate@binkert.org raise AttributeError 1368233Snate@binkert.org 1378233Snate@binkert.org @functools.wraps(func) 1388233Snate@binkert.org def wrapper(*args, **kwargs): 1398233Snate@binkert.org return self.apply_filter(func(*args, **kwargs)) 1408233Snate@binkert.org return wrapper 1418233Snate@binkert.org 1428233Snate@binkert.orgclass SourceMeta(type): 1438233Snate@binkert.org '''Meta class for source files that keeps track of all files of a 1448233Snate@binkert.org particular type.''' 1456143Snate@binkert.org def __init__(cls, name, bases, dict): 1466143Snate@binkert.org super(SourceMeta, cls).__init__(name, bases, dict) 1476143Snate@binkert.org cls.all = SourceList() 1486143Snate@binkert.org 1496143Snate@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 1536143Snate@binkert.org describing arbitrary properties of the source file.''' 1548233Snate@binkert.org __metaclass__ = SourceMeta 1558233Snate@binkert.org 1568233Snate@binkert.org static_objs = {} 1576143Snate@binkert.org shared_objs = {} 1586143Snate@binkert.org 1596143Snate@binkert.org def __init__(self, source, tags=None, add_tags=None): 1606143Snate@binkert.org if tags is None: 1616143Snate@binkert.org tags='gem5 lib' 1626143Snate@binkert.org if isinstance(tags, basestring): 1635522Snate@binkert.org tags = set([tags]) 1646143Snate@binkert.org if not isinstance(tags, set): 1656143Snate@binkert.org tags = set(tags) 1666143Snate@binkert.org self.tags = tags 1676143Snate@binkert.org 1688233Snate@binkert.org if add_tags: 1698233Snate@binkert.org if isinstance(add_tags, basestring): 1708233Snate@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 1755522Snate@binkert.org tnode = source 1765522Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1775522Snate@binkert.org tnode = File(source) 1785522Snate@binkert.org 1795604Snate@binkert.org self.tnode = tnode 1805604Snate@binkert.org self.snode = tnode.srcnode() 1816143Snate@binkert.org 1826143Snate@binkert.org for base in type(self).__mro__: 1834762Snate@binkert.org if issubclass(base, SourceFile): 1844762Snate@binkert.org base.all.append(self) 1856143Snate@binkert.org 1866727Ssteve.reinhardt@amd.com def static(self, env): 1876727Ssteve.reinhardt@amd.com key = (self.tnode, env['OBJSUFFIX']) 1886727Ssteve.reinhardt@amd.com if not key in self.static_objs: 1894762Snate@binkert.org self.static_objs[key] = env.StaticObject(self.tnode) 1906143Snate@binkert.org return self.static_objs[key] 1916143Snate@binkert.org 1926143Snate@binkert.org def shared(self, env): 1936143Snate@binkert.org key = (self.tnode, env['OBJSUFFIX']) 1946727Ssteve.reinhardt@amd.com if not key in self.shared_objs: 1956143Snate@binkert.org self.shared_objs[key] = env.SharedObject(self.tnode) 1967674Snate@binkert.org return self.shared_objs[key] 1977674Snate@binkert.org 1985604Snate@binkert.org @property 1996143Snate@binkert.org def filename(self): 2006143Snate@binkert.org return str(self.tnode) 2016143Snate@binkert.org 2024762Snate@binkert.org @property 2036143Snate@binkert.org def dirname(self): 2044762Snate@binkert.org return dirname(self.filename) 2054762Snate@binkert.org 2064762Snate@binkert.org @property 2076143Snate@binkert.org def basename(self): 2086143Snate@binkert.org return basename(self.filename) 2094762Snate@binkert.org 2108233Snate@binkert.org @property 2118233Snate@binkert.org def extname(self): 2128233Snate@binkert.org index = self.basename.rfind('.') 2138233Snate@binkert.org if index <= 0: 2146143Snate@binkert.org # dot files aren't extensions 2156143Snate@binkert.org return self.basename, None 2164762Snate@binkert.org 2176143Snate@binkert.org return self.basename[:index], self.basename[index+1:] 2184762Snate@binkert.org 2196143Snate@binkert.org def __lt__(self, other): return self.filename < other.filename 2204762Snate@binkert.org def __le__(self, other): return self.filename <= other.filename 2216143Snate@binkert.org def __gt__(self, other): return self.filename > other.filename 2228233Snate@binkert.org def __ge__(self, other): return self.filename >= other.filename 2238233Snate@binkert.org def __eq__(self, other): return self.filename == other.filename 2248233Snate@binkert.org def __ne__(self, other): return self.filename != other.filename 2256143Snate@binkert.org 2266143Snate@binkert.orgdef blobToCpp(data, symbol, cpp_code, hpp_code=None, namespace=None): 2276143Snate@binkert.org ''' 2286143Snate@binkert.org Convert bytes data into C++ .cpp and .hh uint8_t byte array 2296143Snate@binkert.org code containing that binary data. 2306143Snate@binkert.org 2316143Snate@binkert.org :param data: binary data to be converted to C++ 2326143Snate@binkert.org :param symbol: name of the symbol 2338233Snate@binkert.org :param cpp_code: append the generated cpp_code to this object 2348233Snate@binkert.org :param hpp_code: append the generated hpp_code to this object 235955SN/A If None, ignore it. Otherwise, also include it 2368235Snate@binkert.org in the .cpp file. 2378235Snate@binkert.org :param namespace: namespace to put the symbol into. If None, 2386143Snate@binkert.org don't put the symbols into any namespace. 2398235Snate@binkert.org ''' 2408235Snate@binkert.org symbol_len_declaration = 'const std::size_t {}_len'.format(symbol) 2418235Snate@binkert.org symbol_declaration = 'const std::uint8_t {}[]'.format(symbol) 2428235Snate@binkert.org if hpp_code is not None: 2438235Snate@binkert.org cpp_code('''\ 2448235Snate@binkert.org#include "blobs/{}.hh" 2458235Snate@binkert.org'''.format(symbol)) 2468235Snate@binkert.org hpp_code('''\ 2478235Snate@binkert.org#include <cstddef> 2488235Snate@binkert.org#include <cstdint> 2498235Snate@binkert.org''') 2508235Snate@binkert.org if namespace is not None: 2518235Snate@binkert.org hpp_code('namespace {} {{'.format(namespace)) 2528235Snate@binkert.org hpp_code('extern ' + symbol_len_declaration + ';') 2538235Snate@binkert.org hpp_code('extern ' + symbol_declaration + ';') 2548235Snate@binkert.org if namespace is not None: 2558235Snate@binkert.org hpp_code('}') 2565584Snate@binkert.org if namespace is not None: 2574382Sbinkertn@umich.edu cpp_code('namespace {} {{'.format(namespace)) 2584202Sbinkertn@umich.edu if hpp_code is not None: 2594382Sbinkertn@umich.edu cpp_code(symbol_len_declaration + ' = {};'.format(len(data))) 2604382Sbinkertn@umich.edu cpp_code(symbol_declaration + ' = {') 2614382Sbinkertn@umich.edu cpp_code.indent() 2625584Snate@binkert.org step = 16 2634382Sbinkertn@umich.edu for i in xrange(0, len(data), step): 2644382Sbinkertn@umich.edu x = array.array('B', data[i:i+step]) 2654382Sbinkertn@umich.edu cpp_code(''.join('%d,' % d for d in x)) 2668232Snate@binkert.org cpp_code.dedent() 2675192Ssaidi@eecs.umich.edu cpp_code('};') 2688232Snate@binkert.org if namespace is not None: 2698232Snate@binkert.org cpp_code('}') 2708232Snate@binkert.org 2715192Ssaidi@eecs.umich.edudef Blob(blob_path, symbol): 2728232Snate@binkert.org ''' 2738232Snate@binkert.org Embed an arbitrary blob into the gem5 executable, 2745192Ssaidi@eecs.umich.edu and make it accessible to C++ as a byte array. 2755799Snate@binkert.org ''' 2768232Snate@binkert.org blob_path = os.path.abspath(blob_path) 2775192Ssaidi@eecs.umich.edu blob_out_dir = os.path.join(env['BUILDDIR'], 'blobs') 2785192Ssaidi@eecs.umich.edu path_noext = joinpath(blob_out_dir, symbol) 2795192Ssaidi@eecs.umich.edu cpp_path = path_noext + '.cc' 2808232Snate@binkert.org hpp_path = path_noext + '.hh' 2815192Ssaidi@eecs.umich.edu def embedBlob(target, source, env): 2828232Snate@binkert.org data = file(str(source[0]), 'r').read() 2835192Ssaidi@eecs.umich.edu cpp_code = code_formatter() 2845192Ssaidi@eecs.umich.edu hpp_code = code_formatter() 2855192Ssaidi@eecs.umich.edu blobToCpp(data, symbol, cpp_code, hpp_code, namespace='Blobs') 2865192Ssaidi@eecs.umich.edu cpp_path = str(target[0]) 2875192Ssaidi@eecs.umich.edu hpp_path = str(target[1]) 2884382Sbinkertn@umich.edu cpp_dir = os.path.split(cpp_path)[0] 2894382Sbinkertn@umich.edu if not os.path.exists(cpp_dir): 2904382Sbinkertn@umich.edu os.makedirs(cpp_dir) 2912667Sstever@eecs.umich.edu cpp_code.write(cpp_path) 2922667Sstever@eecs.umich.edu hpp_code.write(hpp_path) 2932667Sstever@eecs.umich.edu env.Command([cpp_path, hpp_path], blob_path, 2942667Sstever@eecs.umich.edu MakeAction(embedBlob, Transform("EMBED BLOB"))) 2952667Sstever@eecs.umich.edu Source(cpp_path) 2962667Sstever@eecs.umich.edu 2975742Snate@binkert.orgdef GdbXml(xml_id, symbol): 2985742Snate@binkert.org Blob(joinpath(gdb_xml_dir, xml_id), symbol) 2995742Snate@binkert.org 3005793Snate@binkert.orgclass Source(SourceFile): 3015793Snate@binkert.org ungrouped_tag = 'No link group' 3025793Snate@binkert.org source_groups = set() 3035793Snate@binkert.org 3045793Snate@binkert.org _current_group_tag = ungrouped_tag 3054382Sbinkertn@umich.edu 3064762Snate@binkert.org @staticmethod 3075344Sstever@gmail.com def link_group_tag(group): 3084382Sbinkertn@umich.edu return 'link group: %s' % group 3095341Sstever@gmail.com 3105742Snate@binkert.org @classmethod 3115742Snate@binkert.org def set_group(cls, group): 3125742Snate@binkert.org new_tag = Source.link_group_tag(group) 3135742Snate@binkert.org Source._current_group_tag = new_tag 3145742Snate@binkert.org Source.source_groups.add(group) 3154762Snate@binkert.org 3165742Snate@binkert.org def _add_link_group_tag(self): 3175742Snate@binkert.org self.tags.add(Source._current_group_tag) 3187722Sgblack@eecs.umich.edu 3195742Snate@binkert.org '''Add a c/c++ source file to the build''' 3205742Snate@binkert.org def __init__(self, source, tags=None, add_tags=None): 3215742Snate@binkert.org '''specify the source file, and any tags''' 3225742Snate@binkert.org super(Source, self).__init__(source, tags, add_tags) 3238242Sbradley.danofsky@amd.com self._add_link_group_tag() 3248242Sbradley.danofsky@amd.com 3258242Sbradley.danofsky@amd.comclass PySource(SourceFile): 3268242Sbradley.danofsky@amd.com '''Add a python source file to the named package''' 3275341Sstever@gmail.com invalid_sym_char = re.compile('[^A-z0-9_]') 3285742Snate@binkert.org modules = {} 3297722Sgblack@eecs.umich.edu tnodes = {} 3304773Snate@binkert.org symnames = {} 3316108Snate@binkert.org 3321858SN/A def __init__(self, package, source, tags=None, add_tags=None): 3331085SN/A '''specify the python package, the source file, and any tags''' 3346658Snate@binkert.org super(PySource, self).__init__(source, tags, add_tags) 3356658Snate@binkert.org 3367673Snate@binkert.org modname,ext = self.extname 3376658Snate@binkert.org assert ext == 'py' 3386658Snate@binkert.org 3396658Snate@binkert.org if package: 3406658Snate@binkert.org path = package.split('.') 3416658Snate@binkert.org else: 3426658Snate@binkert.org path = [] 3436658Snate@binkert.org 3447673Snate@binkert.org modpath = path[:] 3457673Snate@binkert.org if modname != '__init__': 3467673Snate@binkert.org modpath += [ modname ] 3477673Snate@binkert.org modpath = '.'.join(modpath) 3487673Snate@binkert.org 3497673Snate@binkert.org arcpath = path + [ self.basename ] 3507673Snate@binkert.org abspath = self.snode.abspath 3516658Snate@binkert.org if not exists(abspath): 3527673Snate@binkert.org abspath = self.tnode.abspath 3537673Snate@binkert.org 3547673Snate@binkert.org self.package = package 3557673Snate@binkert.org self.modname = modname 3567673Snate@binkert.org self.modpath = modpath 3577673Snate@binkert.org self.arcname = joinpath(*arcpath) 3587673Snate@binkert.org self.abspath = abspath 3597673Snate@binkert.org self.compiled = File(self.filename + 'c') 3607673Snate@binkert.org self.cpp = File(self.filename + '.cc') 3617673Snate@binkert.org self.symname = PySource.invalid_sym_char.sub('_', modpath) 3626658Snate@binkert.org 3637756SAli.Saidi@ARM.com PySource.modules[modpath] = self 3647816Ssteve.reinhardt@amd.com PySource.tnodes[self.tnode] = self 3656658Snate@binkert.org PySource.symnames[self.symname] = self 3664382Sbinkertn@umich.edu 3674382Sbinkertn@umich.educlass SimObject(PySource): 3684762Snate@binkert.org '''Add a SimObject python file as a python source object and add 3694762Snate@binkert.org it to a list of sim object modules''' 3704762Snate@binkert.org 3716654Snate@binkert.org fixed = False 3726654Snate@binkert.org modnames = [] 3735517Snate@binkert.org 3745517Snate@binkert.org def __init__(self, source, tags=None, add_tags=None): 3755517Snate@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 3865517Snate@binkert.org def __init__(self, source, tags=None, add_tags=None): 3875517Snate@binkert.org '''Specify the source file, and any tags''' 3885517Snate@binkert.org super(ProtoBuf, self).__init__(source, tags, add_tags) 3895517Snate@binkert.org 3906654Snate@binkert.org # Get the file name and the extension 3915517Snate@binkert.org modname,ext = self.extname 3925517Snate@binkert.org assert ext == 'proto' 3935517Snate@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 3996143Snate@binkert.org 4006654Snate@binkert.orgexectuable_classes = [] 4015517Snate@binkert.orgclass ExecutableMeta(type): 4025517Snate@binkert.org '''Meta class for Executables.''' 4035517Snate@binkert.org all = [] 4045517Snate@binkert.org 4055517Snate@binkert.org def __init__(cls, name, bases, d): 4065517Snate@binkert.org if not d.pop('abstract', False): 4075517Snate@binkert.org ExecutableMeta.all.append(cls) 4085517Snate@binkert.org super(ExecutableMeta, cls).__init__(name, bases, d) 4095517Snate@binkert.org 4105517Snate@binkert.org cls.all = [] 4115517Snate@binkert.org 4125517Snate@binkert.orgclass Executable(object): 4135517Snate@binkert.org '''Base class for creating an executable from sources.''' 4145517Snate@binkert.org __metaclass__ = ExecutableMeta 4156654Snate@binkert.org 4166654Snate@binkert.org abstract = True 4175517Snate@binkert.org 4185517Snate@binkert.org def __init__(self, target, *srcs_and_filts): 4196143Snate@binkert.org '''Specify the target name and any sources. Sources that are 4206143Snate@binkert.org not SourceFiles are evalued with Source().''' 4216143Snate@binkert.org super(Executable, self).__init__() 4226727Ssteve.reinhardt@amd.com self.all.append(self) 4235517Snate@binkert.org self.target = target 4246727Ssteve.reinhardt@amd.com 4255517Snate@binkert.org isFilter = lambda arg: isinstance(arg, SourceFilter) 4265517Snate@binkert.org self.filters = filter(isFilter, srcs_and_filts) 4275517Snate@binkert.org sources = filter(lambda a: not isFilter(a), srcs_and_filts) 4286654Snate@binkert.org 4296654Snate@binkert.org srcs = SourceList() 4307673Snate@binkert.org for src in sources: 4316654Snate@binkert.org if not isinstance(src, SourceFile): 4326654Snate@binkert.org src = Source(src, tags=[]) 4336654Snate@binkert.org srcs.append(src) 4346654Snate@binkert.org 4355517Snate@binkert.org self.sources = srcs 4365517Snate@binkert.org self.dir = Dir('.') 4375517Snate@binkert.org 4386143Snate@binkert.org def path(self, env): 4395517Snate@binkert.org return self.dir.File(self.target + '.' + env['EXE_SUFFIX']) 4404762Snate@binkert.org 4415517Snate@binkert.org def srcs_to_objs(self, env, sources): 4425517Snate@binkert.org return list([ s.static(env) for s in sources ]) 4436143Snate@binkert.org 4446143Snate@binkert.org @classmethod 4455517Snate@binkert.org def declare_all(cls, env): 4465517Snate@binkert.org return list([ instance.declare(env) for instance in cls.all ]) 4475517Snate@binkert.org 4485517Snate@binkert.org def declare(self, env, objs=None): 4495517Snate@binkert.org if objs is None: 4505517Snate@binkert.org objs = self.srcs_to_objs(env, self.sources) 4515517Snate@binkert.org 4525517Snate@binkert.org if env['STRIP_EXES']: 4535517Snate@binkert.org stripped = self.path(env) 4545517Snate@binkert.org unstripped = env.File(str(stripped) + '.unstripped') 4556143Snate@binkert.org if sys.platform == 'sunos5': 4565517Snate@binkert.org cmd = 'cp $SOURCE $TARGET; strip $TARGET' 4576654Snate@binkert.org else: 4586654Snate@binkert.org cmd = 'strip $SOURCE -o $TARGET' 4596654Snate@binkert.org env.Program(unstripped, objs) 4606654Snate@binkert.org return env.Command(stripped, unstripped, 4616654Snate@binkert.org MakeAction(cmd, Transform("STRIP"))) 4626654Snate@binkert.org else: 4635517Snate@binkert.org return env.Program(self.path(env), objs) 4645517Snate@binkert.org 4655517Snate@binkert.orgclass UnitTest(Executable): 4665517Snate@binkert.org '''Create a UnitTest''' 4675517Snate@binkert.org def __init__(self, target, *srcs_and_filts, **kwargs): 4684762Snate@binkert.org super(UnitTest, self).__init__(target, *srcs_and_filts) 4694762Snate@binkert.org 4704762Snate@binkert.org self.main = kwargs.get('main', False) 4714762Snate@binkert.org 4724762Snate@binkert.org def declare(self, env): 4734762Snate@binkert.org sources = list(self.sources) 4747675Snate@binkert.org for f in self.filters: 4754762Snate@binkert.org sources = Source.all.apply_filter(f) 4764762Snate@binkert.org objs = self.srcs_to_objs(env, sources) + env['STATIC_OBJS'] 4774762Snate@binkert.org if self.main: 4784762Snate@binkert.org objs += env['MAIN_OBJS'] 4794382Sbinkertn@umich.edu return super(UnitTest, self).declare(env, objs) 4804382Sbinkertn@umich.edu 4815517Snate@binkert.orgclass GTest(Executable): 4826654Snate@binkert.org '''Create a unit test based on the google test framework.''' 4835517Snate@binkert.org all = [] 4848126Sgblack@eecs.umich.edu def __init__(self, *srcs_and_filts, **kwargs): 4856654Snate@binkert.org super(GTest, self).__init__(*srcs_and_filts) 4867673Snate@binkert.org 4876654Snate@binkert.org self.skip_lib = kwargs.pop('skip_lib', False) 4886654Snate@binkert.org 4896654Snate@binkert.org @classmethod 4906654Snate@binkert.org def declare_all(cls, env): 4916654Snate@binkert.org env = env.Clone() 4926654Snate@binkert.org env.Append(LIBS=env['GTEST_LIBS']) 4936654Snate@binkert.org env.Append(CPPFLAGS=env['GTEST_CPPFLAGS']) 4946669Snate@binkert.org env['GTEST_LIB_SOURCES'] = Source.all.with_tag('gtest lib') 4956669Snate@binkert.org env['GTEST_OUT_DIR'] = \ 4966669Snate@binkert.org Dir(env['BUILDDIR']).Dir('unittests.' + env['EXE_SUFFIX']) 4976669Snate@binkert.org return super(GTest, cls).declare_all(env) 4986669Snate@binkert.org 4996669Snate@binkert.org def declare(self, env): 5006654Snate@binkert.org sources = list(self.sources) 5017673Snate@binkert.org if not self.skip_lib: 5025517Snate@binkert.org sources += env['GTEST_LIB_SOURCES'] 5038126Sgblack@eecs.umich.edu for f in self.filters: 5045798Snate@binkert.org sources += Source.all.apply_filter(f) 5057756SAli.Saidi@ARM.com objs = self.srcs_to_objs(env, sources) 5067816Ssteve.reinhardt@amd.com 5075798Snate@binkert.org binary = super(GTest, self).declare(env, objs) 5085798Snate@binkert.org 5095517Snate@binkert.org out_dir = env['GTEST_OUT_DIR'] 5105517Snate@binkert.org xml_file = out_dir.Dir(str(self.dir)).File(self.target + '.xml') 5117673Snate@binkert.org AlwaysBuild(env.Command(xml_file, binary, 5125517Snate@binkert.org "${SOURCES[0]} --gtest_output=xml:${TARGETS[0]}")) 5135517Snate@binkert.org 5147673Snate@binkert.org return binary 5157673Snate@binkert.org 5165517Snate@binkert.orgclass Gem5(Executable): 5175798Snate@binkert.org '''Create a gem5 executable.''' 5185798Snate@binkert.org 5198333Snate@binkert.org def __init__(self, target): 5207816Ssteve.reinhardt@amd.com super(Gem5, self).__init__(target) 5215798Snate@binkert.org 5225798Snate@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 5264762Snate@binkert.org 5274762Snate@binkert.org# Children should have access 5285517Snate@binkert.orgExport('Blob') 5295517Snate@binkert.orgExport('GdbXml') 5305517Snate@binkert.orgExport('Source') 5315517Snate@binkert.orgExport('PySource') 5325517Snate@binkert.orgExport('SimObject') 5335517Snate@binkert.orgExport('ProtoBuf') 5347673Snate@binkert.orgExport('Executable') 5357673Snate@binkert.orgExport('UnitTest') 5367673Snate@binkert.orgExport('GTest') 5375517Snate@binkert.org 5385517Snate@binkert.org######################################################################## 5395517Snate@binkert.org# 5405517Snate@binkert.org# Debug Flags 5415517Snate@binkert.org# 5425517Snate@binkert.orgdebug_flags = {} 5435517Snate@binkert.orgdef DebugFlag(name, desc=None): 5447673Snate@binkert.org if name in debug_flags: 5457677Snate@binkert.org raise AttributeError, "Flag %s already specified" % name 5467673Snate@binkert.org debug_flags[name] = (name, (), desc) 5477673Snate@binkert.org 5485517Snate@binkert.orgdef CompoundFlag(name, flags, desc=None): 5495517Snate@binkert.org if name in debug_flags: 5505517Snate@binkert.org raise AttributeError, "Flag %s already specified" % name 5515517Snate@binkert.org 5525517Snate@binkert.org compound = tuple(flags) 5535517Snate@binkert.org debug_flags[name] = (name, compound, desc) 5545517Snate@binkert.org 5557673Snate@binkert.orgExport('DebugFlag') 5567673Snate@binkert.orgExport('CompoundFlag') 5577673Snate@binkert.org 5585517Snate@binkert.org######################################################################## 5595517Snate@binkert.org# 5605517Snate@binkert.org# Set some compiler variables 5615517Snate@binkert.org# 5625517Snate@binkert.org 5635517Snate@binkert.org# Include file paths are rooted in this directory. SCons will 5645517Snate@binkert.org# automatically expand '.' to refer to both the source directory and 5657673Snate@binkert.org# the corresponding build directory to pick up generated include 5667673Snate@binkert.org# files. 5677673Snate@binkert.orgenv.Append(CPPPATH=Dir('.')) 5685517Snate@binkert.org 5697675Snate@binkert.orgfor extra_dir in extras_dir_list: 5707675Snate@binkert.org env.Append(CPPPATH=Dir(extra_dir)) 5717675Snate@binkert.org 5727675Snate@binkert.org# Workaround for bug in SCons version > 0.97d20071212 5737675Snate@binkert.org# Scons bug id: 2006 gem5 Bug id: 308 5747675Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True): 5757675Snate@binkert.org Dir(root[len(base_dir) + 1:]) 5767675Snate@binkert.org 5777677Snate@binkert.org######################################################################## 5787675Snate@binkert.org# 5797675Snate@binkert.org# Walk the tree and execute all SConscripts in subdirectories 5807675Snate@binkert.org# 5817675Snate@binkert.org 5827675Snate@binkert.orghere = Dir('.').srcnode().abspath 5837675Snate@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 5867675Snate@binkert.org continue 5874762Snate@binkert.org 5884762Snate@binkert.org if 'SConscript' in files: 5896143Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:]) 5906143Snate@binkert.org Source.set_group(build_dir) 5916143Snate@binkert.org SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir) 5924762Snate@binkert.org 5934762Snate@binkert.orgfor extra_dir in extras_dir_list: 5944762Snate@binkert.org prefix_len = len(dirname(extra_dir)) + 1 5957756SAli.Saidi@ARM.com 5967816Ssteve.reinhardt@amd.com # Also add the corresponding build directory to pick up generated 5974762Snate@binkert.org # include files. 5984762Snate@binkert.org env.Append(CPPPATH=Dir(joinpath(env['BUILDDIR'], extra_dir[prefix_len:]))) 5994762Snate@binkert.org 6005463Snate@binkert.org for root, dirs, files in os.walk(extra_dir, topdown=True): 6015517Snate@binkert.org # if build lives in the extras directory, don't walk down it 6027677Snate@binkert.org if 'build' in dirs: 6035463Snate@binkert.org dirs.remove('build') 6047756SAli.Saidi@ARM.com 6057816Ssteve.reinhardt@amd.com if 'SConscript' in files: 6064762Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[prefix_len:]) 6077677Snate@binkert.org SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir) 6084762Snate@binkert.org 6094762Snate@binkert.orgfor opt in export_vars: 6106143Snate@binkert.org env.ConfigFile(opt) 6116143Snate@binkert.org 6126143Snate@binkert.orgdef makeTheISA(source, target, env): 6134762Snate@binkert.org isas = [ src.get_contents() for src in source ] 6144762Snate@binkert.org target_isa = env['TARGET_ISA'] 6157756SAli.Saidi@ARM.com def define(isa): 6167816Ssteve.reinhardt@amd.com return isa.upper() + '_ISA' 6174762Snate@binkert.org 6184762Snate@binkert.org def namespace(isa): 6194762Snate@binkert.org return isa[0].upper() + isa[1:].lower() + 'ISA' 6204762Snate@binkert.org 6217756SAli.Saidi@ARM.com 6227816Ssteve.reinhardt@amd.com code = code_formatter() 6234762Snate@binkert.org code('''\ 6244762Snate@binkert.org#ifndef __CONFIG_THE_ISA_HH__ 6257677Snate@binkert.org#define __CONFIG_THE_ISA_HH__ 6267756SAli.Saidi@ARM.com 6277816Ssteve.reinhardt@amd.com''') 6287675Snate@binkert.org 6297677Snate@binkert.org # create defines for the preprocessing and compile-time determination 6305517Snate@binkert.org for i,isa in enumerate(isas): 6317675Snate@binkert.org code('#define $0 $1', define(isa), i + 1) 6327675Snate@binkert.org code() 6337675Snate@binkert.org 6347675Snate@binkert.org # create an enum for any run-time determination of the ISA, we 6357675Snate@binkert.org # reuse the same name as the namespaces 6367675Snate@binkert.org code('enum class Arch {') 6377675Snate@binkert.org for i,isa in enumerate(isas): 6385517Snate@binkert.org if i + 1 == len(isas): 6397673Snate@binkert.org code(' $0 = $1', namespace(isa), define(isa)) 6405517Snate@binkert.org else: 6417677Snate@binkert.org code(' $0 = $1,', namespace(isa), define(isa)) 6427675Snate@binkert.org code('};') 6437673Snate@binkert.org 6447675Snate@binkert.org code(''' 6457675Snate@binkert.org 6467675Snate@binkert.org#define THE_ISA ${{define(target_isa)}} 6477673Snate@binkert.org#define TheISA ${{namespace(target_isa)}} 6487675Snate@binkert.org#define THE_ISA_STR "${{target_isa}}" 6495517Snate@binkert.org 6507675Snate@binkert.org#endif // __CONFIG_THE_ISA_HH__''') 6517675Snate@binkert.org 6527673Snate@binkert.org code.write(str(target[0])) 6537675Snate@binkert.org 6547675Snate@binkert.orgenv.Command('config/the_isa.hh', map(Value, all_isa_list), 6557677Snate@binkert.org MakeAction(makeTheISA, Transform("CFG ISA", 0))) 6567675Snate@binkert.org 6577675Snate@binkert.orgdef makeTheGPUISA(source, target, env): 6587675Snate@binkert.org isas = [ src.get_contents() for src in source ] 6595517Snate@binkert.org target_gpu_isa = env['TARGET_GPU_ISA'] 6607675Snate@binkert.org def define(isa): 6615517Snate@binkert.org return isa.upper() + '_ISA' 6627673Snate@binkert.org 6635517Snate@binkert.org def namespace(isa): 6647675Snate@binkert.org return isa[0].upper() + isa[1:].lower() + 'ISA' 6657677Snate@binkert.org 6667756SAli.Saidi@ARM.com 6677816Ssteve.reinhardt@amd.com code = code_formatter() 6687675Snate@binkert.org code('''\ 6697677Snate@binkert.org#ifndef __CONFIG_THE_GPU_ISA_HH__ 6704762Snate@binkert.org#define __CONFIG_THE_GPU_ISA_HH__ 6717674Snate@binkert.org 6727674Snate@binkert.org''') 6737674Snate@binkert.org 6747674Snate@binkert.org # create defines for the preprocessing and compile-time determination 6757674Snate@binkert.org for i,isa in enumerate(isas): 6767674Snate@binkert.org code('#define $0 $1', define(isa), i + 1) 6777674Snate@binkert.org code() 6787674Snate@binkert.org 6797674Snate@binkert.org # create an enum for any run-time determination of the ISA, we 6807674Snate@binkert.org # reuse the same name as the namespaces 6817674Snate@binkert.org code('enum class GPUArch {') 6827674Snate@binkert.org for i,isa in enumerate(isas): 6837674Snate@binkert.org if i + 1 == len(isas): 6847674Snate@binkert.org code(' $0 = $1', namespace(isa), define(isa)) 6857674Snate@binkert.org else: 6864762Snate@binkert.org code(' $0 = $1,', namespace(isa), define(isa)) 6876143Snate@binkert.org code('};') 6886143Snate@binkert.org 6897756SAli.Saidi@ARM.com code(''' 6907816Ssteve.reinhardt@amd.com 6918235Snate@binkert.org#define THE_GPU_ISA ${{define(target_gpu_isa)}} 6928235Snate@binkert.org#define TheGpuISA ${{namespace(target_gpu_isa)}} 6937756SAli.Saidi@ARM.com#define THE_GPU_ISA_STR "${{target_gpu_isa}}" 6947816Ssteve.reinhardt@amd.com 6958235Snate@binkert.org#endif // __CONFIG_THE_GPU_ISA_HH__''') 6964382Sbinkertn@umich.edu 6978232Snate@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 7026229Snate@binkert.org######################################################################## 7038232Snate@binkert.org# 7048232Snate@binkert.org# Prevent any SimObjects from being added after this point, they 7058232Snate@binkert.org# should all have been added in the SConscripts above 7066229Snate@binkert.org# 7077673Snate@binkert.orgSimObject.fixed = True 7085517Snate@binkert.org 7095517Snate@binkert.orgclass DictImporter(object): 7107673Snate@binkert.org '''This importer takes a dictionary of arbitrary module names that 7115517Snate@binkert.org map to arbitrary filenames.''' 7125517Snate@binkert.org def __init__(self, modules): 7135517Snate@binkert.org self.modules = modules 7145517Snate@binkert.org self.installed = set() 7158232Snate@binkert.org 7167673Snate@binkert.org def __del__(self): 7177673Snate@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: 7227673Snate@binkert.org del sys.modules[module] 7235517Snate@binkert.org self.installed = set() 7248232Snate@binkert.org 7258232Snate@binkert.org def find_module(self, fullname, path): 7268232Snate@binkert.org if fullname == 'm5.defines': 7278232Snate@binkert.org return self 7287673Snate@binkert.org 7298232Snate@binkert.org if fullname == 'm5.objects': 7308232Snate@binkert.org return self 7318232Snate@binkert.org 7328232Snate@binkert.org if fullname.startswith('_m5'): 7338232Snate@binkert.org return None 7348232Snate@binkert.org 7357673Snate@binkert.org source = self.modules.get(fullname, None) 7365517Snate@binkert.org if source is not None and fullname.startswith('m5.objects'): 7378232Snate@binkert.org return self 7388232Snate@binkert.org 7395517Snate@binkert.org return None 7407673Snate@binkert.org 7415517Snate@binkert.org def load_module(self, fullname): 7428232Snate@binkert.org mod = imp.new_module(fullname) 7438232Snate@binkert.org sys.modules[fullname] = mod 7445517Snate@binkert.org self.installed.add(fullname) 7458232Snate@binkert.org 7468232Snate@binkert.org mod.__loader__ = self 7478232Snate@binkert.org if fullname == 'm5.objects': 7487673Snate@binkert.org mod.__path__ = fullname.split('.') 7495517Snate@binkert.org return mod 7505517Snate@binkert.org 7517673Snate@binkert.org if fullname == 'm5.defines': 7525517Snate@binkert.org mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env) 7535517Snate@binkert.org return mod 7545517Snate@binkert.org 7558232Snate@binkert.org source = self.modules[fullname] 7565517Snate@binkert.org if source.modname == '__init__': 7575517Snate@binkert.org mod.__path__ = source.modpath 7588232Snate@binkert.org mod.__file__ = source.abspath 7598232Snate@binkert.org 7605517Snate@binkert.org exec file(source.abspath, 'r') in mod.__dict__ 7618232Snate@binkert.org 7628232Snate@binkert.org return mod 7635517Snate@binkert.org 7648232Snate@binkert.orgimport m5.SimObject 7658232Snate@binkert.orgimport m5.params 7668232Snate@binkert.orgfrom m5.util import code_formatter 7675517Snate@binkert.org 7688232Snate@binkert.orgm5.SimObject.clear() 7698232Snate@binkert.orgm5.params.clear() 7708232Snate@binkert.org 7718232Snate@binkert.org# install the python importer so we can grab stuff from the source 7728232Snate@binkert.org# tree itself. We can't have SimObjects added after this point or 7738232Snate@binkert.org# else we won't know about them for the rest of the stuff. 7745517Snate@binkert.orgimporter = DictImporter(PySource.modules) 7758232Snate@binkert.orgsys.meta_path[0:0] = [ importer ] 7768232Snate@binkert.org 7775517Snate@binkert.org# import all sim objects so we can populate the all_objects list 7788232Snate@binkert.org# make sure that we're working with a list, then let's sort it 7797673Snate@binkert.orgfor modname in SimObject.modnames: 7805517Snate@binkert.org exec('from m5.objects import %s' % modname) 7817673Snate@binkert.org 7825517Snate@binkert.org# we need to unload all of the currently imported modules so that they 7838232Snate@binkert.org# will be re-imported the next time the sconscript is run 7848232Snate@binkert.orgimporter.unload() 7858232Snate@binkert.orgsys.meta_path.remove(importer) 7865192Ssaidi@eecs.umich.edu 7878232Snate@binkert.orgsim_objects = m5.SimObject.allClasses 7888232Snate@binkert.orgall_enums = m5.params.allEnums 7898232Snate@binkert.org 7908232Snate@binkert.orgfor name,obj in sorted(sim_objects.iteritems()): 7918232Snate@binkert.org for param in obj._params.local.values(): 7925192Ssaidi@eecs.umich.edu # load the ptype attribute now because it depends on the 7937674Snate@binkert.org # current version of SimObject.allClasses, but when scons 7945522Snate@binkert.org # actually uses the value, all versions of 7955522Snate@binkert.org # SimObject.allClasses will have been loaded 7967674Snate@binkert.org param.ptype 7977674Snate@binkert.org 7987674Snate@binkert.org######################################################################## 7997674Snate@binkert.org# 8007674Snate@binkert.org# calculate extra dependencies 8017674Snate@binkert.org# 8027674Snate@binkert.orgmodule_depends = ["m5", "m5.SimObject", "m5.params"] 8037674Snate@binkert.orgdepends = [ PySource.modules[dep].snode for dep in module_depends ] 8045522Snate@binkert.orgdepends.sort(key = lambda x: x.name) 8055522Snate@binkert.org 8065522Snate@binkert.org######################################################################## 8075517Snate@binkert.org# 8085522Snate@binkert.org# Commands for the basic automatically generated python files 8095517Snate@binkert.org# 8106143Snate@binkert.org 8116727Ssteve.reinhardt@amd.com# Generate Python file containing a dict specifying the current 8125522Snate@binkert.org# buildEnv flags. 8135522Snate@binkert.orgdef makeDefinesPyFile(target, source, env): 8145522Snate@binkert.org build_env = source[0].get_contents() 8157674Snate@binkert.org 8165517Snate@binkert.org code = code_formatter() 8177673Snate@binkert.org code(""" 8187673Snate@binkert.orgimport _m5.core 8197674Snate@binkert.orgimport m5.util 8207673Snate@binkert.org 8217674Snate@binkert.orgbuildEnv = m5.util.SmartDict($build_env) 8227674Snate@binkert.org 8237674Snate@binkert.orgcompileDate = _m5.core.compileDate 8247674Snate@binkert.org_globals = globals() 8257674Snate@binkert.orgfor key,val in _m5.core.__dict__.iteritems(): 8267674Snate@binkert.org if key.startswith('flag_'): 8275522Snate@binkert.org flag = key[5:] 8285522Snate@binkert.org _globals[flag] = val 8297674Snate@binkert.orgdel _globals 8307674Snate@binkert.org""") 8317674Snate@binkert.org code.write(target[0].abspath) 8327674Snate@binkert.org 8337673Snate@binkert.orgdefines_info = Value(build_env) 8347674Snate@binkert.org# Generate a file with all of the compile options in it 8357674Snate@binkert.orgenv.Command('python/m5/defines.py', defines_info, 8367674Snate@binkert.org MakeAction(makeDefinesPyFile, Transform("DEFINES", 0))) 8377674Snate@binkert.orgPySource('m5', 'python/m5/defines.py') 8387674Snate@binkert.org 8397674Snate@binkert.org# Generate python file containing info about the M5 source code 8407674Snate@binkert.orgdef makeInfoPyFile(target, source, env): 8417674Snate@binkert.org code = code_formatter() 8427811Ssteve.reinhardt@amd.com for src in source: 8437674Snate@binkert.org data = ''.join(file(src.srcnode().abspath, 'r').xreadlines()) 8447673Snate@binkert.org code('$src = ${{repr(data)}}') 8455522Snate@binkert.org code.write(str(target[0])) 8466143Snate@binkert.org 8477756SAli.Saidi@ARM.com# Generate a file that wraps the basic top level files 8487816Ssteve.reinhardt@amd.comenv.Command('python/m5/info.py', 8497674Snate@binkert.org [ '#/COPYING', '#/LICENSE', '#/README', ], 8504382Sbinkertn@umich.edu MakeAction(makeInfoPyFile, Transform("INFO"))) 8514382Sbinkertn@umich.eduPySource('m5', 'python/m5/info.py') 8524382Sbinkertn@umich.edu 8534382Sbinkertn@umich.edu######################################################################## 8544382Sbinkertn@umich.edu# 8554382Sbinkertn@umich.edu# Create all of the SimObject param headers and enum headers 8564382Sbinkertn@umich.edu# 8574382Sbinkertn@umich.edu 8584382Sbinkertn@umich.edudef createSimObjectParamStruct(target, source, env): 8594382Sbinkertn@umich.edu assert len(target) == 1 and len(source) == 1 8606143Snate@binkert.org 861955SN/A name = source[0].get_text_contents() 8622655Sstever@eecs.umich.edu obj = sim_objects[name] 8632655Sstever@eecs.umich.edu 8642655Sstever@eecs.umich.edu code = code_formatter() 8652655Sstever@eecs.umich.edu obj.cxx_param_decl(code) 8662655Sstever@eecs.umich.edu code.write(target[0].abspath) 8675601Snate@binkert.org 8685601Snate@binkert.orgdef createSimObjectCxxConfig(is_header): 8695601Snate@binkert.org def body(target, source, env): 8705601Snate@binkert.org assert len(target) == 1 and len(source) == 1 8715522Snate@binkert.org 8725863Snate@binkert.org name = str(source[0].get_contents()) 8735601Snate@binkert.org obj = sim_objects[name] 8745601Snate@binkert.org 8755601Snate@binkert.org code = code_formatter() 8765863Snate@binkert.org obj.cxx_config_param_file(code, is_header) 8776143Snate@binkert.org code.write(target[0].abspath) 8785559Snate@binkert.org return body 8795559Snate@binkert.org 8805559Snate@binkert.orgdef createEnumStrings(target, source, env): 8815559Snate@binkert.org assert len(target) == 1 and len(source) == 2 8825601Snate@binkert.org 8836143Snate@binkert.org name = source[0].get_text_contents() 8846143Snate@binkert.org use_python = source[1].read() 8856143Snate@binkert.org obj = all_enums[name] 8866143Snate@binkert.org 8876143Snate@binkert.org code = code_formatter() 8886143Snate@binkert.org obj.cxx_def(code) 8896143Snate@binkert.org if use_python: 8906143Snate@binkert.org obj.pybind_def(code) 8916143Snate@binkert.org code.write(target[0].abspath) 8926143Snate@binkert.org 8936143Snate@binkert.orgdef createEnumDecls(target, source, env): 8946143Snate@binkert.org assert len(target) == 1 and len(source) == 1 8956143Snate@binkert.org 8966143Snate@binkert.org name = source[0].get_text_contents() 8976143Snate@binkert.org obj = all_enums[name] 8986143Snate@binkert.org 8996143Snate@binkert.org code = code_formatter() 9006143Snate@binkert.org obj.cxx_decl(code) 9016143Snate@binkert.org code.write(target[0].abspath) 9026143Snate@binkert.org 9036143Snate@binkert.orgdef createSimObjectPyBindWrapper(target, source, env): 9046143Snate@binkert.org name = source[0].get_text_contents() 9056143Snate@binkert.org obj = sim_objects[name] 9066143Snate@binkert.org 9076143Snate@binkert.org code = code_formatter() 9088233Snate@binkert.org obj.pybind_decl(code) 9098233Snate@binkert.org code.write(target[0].abspath) 9108233Snate@binkert.org 9116143Snate@binkert.org# Generate all of the SimObject param C++ struct header files 9126143Snate@binkert.orgparams_hh_files = [] 9136143Snate@binkert.orgfor name,simobj in sorted(sim_objects.iteritems()): 9146143Snate@binkert.org py_source = PySource.modules[simobj.__module__] 9156143Snate@binkert.org extra_deps = [ py_source.tnode ] 9166240Snate@binkert.org 9175554Snate@binkert.org hh_file = File('params/%s.hh' % name) 9185522Snate@binkert.org params_hh_files.append(hh_file) 9195522Snate@binkert.org env.Command(hh_file, Value(name), 9205797Snate@binkert.org MakeAction(createSimObjectParamStruct, Transform("SO PARAM"))) 9215797Snate@binkert.org env.Depends(hh_file, depends + extra_deps) 9225522Snate@binkert.org 9235601Snate@binkert.org# C++ parameter description files 9248233Snate@binkert.orgif GetOption('with_cxx_config'): 9258233Snate@binkert.org for name,simobj in sorted(sim_objects.iteritems()): 9268235Snate@binkert.org py_source = PySource.modules[simobj.__module__] 9278235Snate@binkert.org extra_deps = [ py_source.tnode ] 9288235Snate@binkert.org 9298235Snate@binkert.org cxx_config_hh_file = File('cxx_config/%s.hh' % name) 9308235Snate@binkert.org cxx_config_cc_file = File('cxx_config/%s.cc' % name) 9318235Snate@binkert.org env.Command(cxx_config_hh_file, Value(name), 9328235Snate@binkert.org MakeAction(createSimObjectCxxConfig(True), 9336143Snate@binkert.org Transform("CXXCPRHH"))) 9342655Sstever@eecs.umich.edu env.Command(cxx_config_cc_file, Value(name), 9356143Snate@binkert.org MakeAction(createSimObjectCxxConfig(False), 9366143Snate@binkert.org Transform("CXXCPRCC"))) 9378233Snate@binkert.org env.Depends(cxx_config_hh_file, depends + extra_deps + 9386143Snate@binkert.org [File('params/%s.hh' % name), File('sim/cxx_config.hh')]) 9396143Snate@binkert.org env.Depends(cxx_config_cc_file, depends + extra_deps + 9404007Ssaidi@eecs.umich.edu [cxx_config_hh_file]) 9414596Sbinkertn@umich.edu Source(cxx_config_cc_file) 9424007Ssaidi@eecs.umich.edu 9434596Sbinkertn@umich.edu cxx_config_init_cc_file = File('cxx_config/init.cc') 9447756SAli.Saidi@ARM.com 9457816Ssteve.reinhardt@amd.com def createCxxConfigInitCC(target, source, env): 9465522Snate@binkert.org assert len(target) == 1 and len(source) == 1 9475601Snate@binkert.org 9485601Snate@binkert.org code = code_formatter() 9492655Sstever@eecs.umich.edu 950955SN/A for name,simobj in sorted(sim_objects.iteritems()): 9513918Ssaidi@eecs.umich.edu if not hasattr(simobj, 'abstract') or not simobj.abstract: 9523918Ssaidi@eecs.umich.edu code('#include "cxx_config/${name}.hh"') 9533918Ssaidi@eecs.umich.edu code() 9543918Ssaidi@eecs.umich.edu code('void cxxConfigInit()') 9553918Ssaidi@eecs.umich.edu code('{') 9563918Ssaidi@eecs.umich.edu code.indent() 9573918Ssaidi@eecs.umich.edu for name,simobj in sorted(sim_objects.iteritems()): 9583918Ssaidi@eecs.umich.edu not_abstract = not hasattr(simobj, 'abstract') or \ 9593918Ssaidi@eecs.umich.edu not simobj.abstract 9603918Ssaidi@eecs.umich.edu if not_abstract and 'type' in simobj.__dict__: 9613918Ssaidi@eecs.umich.edu code('cxx_config_directory["${name}"] = ' 9623918Ssaidi@eecs.umich.edu '${name}CxxConfigParams::makeDirectoryEntry();') 9633918Ssaidi@eecs.umich.edu code.dedent() 9643918Ssaidi@eecs.umich.edu code('}') 9653940Ssaidi@eecs.umich.edu code.write(target[0].abspath) 9663940Ssaidi@eecs.umich.edu 9673940Ssaidi@eecs.umich.edu py_source = PySource.modules[simobj.__module__] 9683942Ssaidi@eecs.umich.edu extra_deps = [ py_source.tnode ] 9693940Ssaidi@eecs.umich.edu env.Command(cxx_config_init_cc_file, Value(name), 9703515Ssaidi@eecs.umich.edu MakeAction(createCxxConfigInitCC, Transform("CXXCINIT"))) 9713918Ssaidi@eecs.umich.edu cxx_param_hh_files = ["cxx_config/%s.hh" % simobj 9724762Snate@binkert.org for name,simobj in sorted(sim_objects.iteritems()) 9733515Ssaidi@eecs.umich.edu if not hasattr(simobj, 'abstract') or not simobj.abstract] 9742655Sstever@eecs.umich.edu Depends(cxx_config_init_cc_file, cxx_param_hh_files + 9753918Ssaidi@eecs.umich.edu [File('sim/cxx_config.hh')]) 9763619Sbinkertn@umich.edu Source(cxx_config_init_cc_file) 977955SN/A 978955SN/A# Generate all enum header files 9792655Sstever@eecs.umich.edufor name,enum in sorted(all_enums.iteritems()): 9803918Ssaidi@eecs.umich.edu py_source = PySource.modules[enum.__module__] 9813619Sbinkertn@umich.edu extra_deps = [ py_source.tnode ] 982955SN/A 983955SN/A cc_file = File('enums/%s.cc' % name) 9842655Sstever@eecs.umich.edu env.Command(cc_file, [Value(name), Value(env['USE_PYTHON'])], 9853918Ssaidi@eecs.umich.edu MakeAction(createEnumStrings, Transform("ENUM STR"))) 9863619Sbinkertn@umich.edu env.Depends(cc_file, depends + extra_deps) 987955SN/A Source(cc_file) 988955SN/A 9892655Sstever@eecs.umich.edu hh_file = File('enums/%s.hh' % name) 9903918Ssaidi@eecs.umich.edu env.Command(hh_file, Value(name), 9913683Sstever@eecs.umich.edu MakeAction(createEnumDecls, Transform("ENUMDECL"))) 9922655Sstever@eecs.umich.edu env.Depends(hh_file, depends + extra_deps) 9931869SN/A 9941869SN/A# 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 obj2target.has_key(ext): 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