SConscript revision 13777
1955SN/A# -*- mode:python -*-
2955SN/A
313576Sciro.santilli@arm.com# Copyright (c) 2018 ARM Limited
413576Sciro.santilli@arm.com#
513576Sciro.santilli@arm.com# The license below extends only to copyright in the software and shall
613576Sciro.santilli@arm.com# not be construed as granting a license to any other intellectual
713576Sciro.santilli@arm.com# property including but not limited to intellectual property relating
813576Sciro.santilli@arm.com# to a hardware implementation of the functionality of the software
913576Sciro.santilli@arm.com# licensed hereunder.  You may use the software subject to the license
1013576Sciro.santilli@arm.com# terms below provided that you ensure that this notice is replicated
1113576Sciro.santilli@arm.com# unmodified and in its entirety in all distributions of the software,
1213576Sciro.santilli@arm.com# modified or unmodified, in source code or in binary form.
1313576Sciro.santilli@arm.com#
141762SN/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#
28955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
392665Ssaidi@eecs.umich.edu#
404762Snate@binkert.org# Authors: Nathan Binkert
41955SN/A
4212563Sgabeblack@google.comfrom __future__ import print_function
4312563Sgabeblack@google.com
445522Snate@binkert.orgimport array
456143Snate@binkert.orgimport bisect
4612371Sgabeblack@google.comimport functools
474762Snate@binkert.orgimport imp
485522Snate@binkert.orgimport os
49955SN/Aimport re
505522Snate@binkert.orgimport sys
5111974Sgabeblack@google.comimport zlib
52955SN/A
535522Snate@binkert.orgfrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath
544202Sbinkertn@umich.edu
555742Snate@binkert.orgimport SCons
56955SN/A
574381Sbinkertn@umich.edufrom gem5_scons import Transform
584381Sbinkertn@umich.edu
5912246Sgabeblack@google.com# This file defines how to build a particular configuration of gem5
6012246Sgabeblack@google.com# based on variable settings in the 'env' build environment.
618334Snate@binkert.org
62955SN/AImport('*')
63955SN/A
644202Sbinkertn@umich.edu# Children need to see the environment
65955SN/AExport('env')
664382Sbinkertn@umich.edu
674382Sbinkertn@umich.edubuild_env = [(opt, env[opt]) for opt in export_vars]
684382Sbinkertn@umich.edu
696654Snate@binkert.orgfrom m5.util import code_formatter, compareVersions
705517Snate@binkert.org
718614Sgblack@eecs.umich.edu########################################################################
727674Snate@binkert.org# Code for adding source files of various types
736143Snate@binkert.org#
746143Snate@binkert.org# When specifying a source file of some type, a set of tags can be
756143Snate@binkert.org# specified for that file.
7612302Sgabeblack@google.com
7712302Sgabeblack@google.comclass SourceFilter(object):
7812302Sgabeblack@google.com    def __init__(self, predicate):
7912371Sgabeblack@google.com        self.predicate = predicate
8012371Sgabeblack@google.com
8112371Sgabeblack@google.com    def __or__(self, other):
8212371Sgabeblack@google.com        return SourceFilter(lambda tags: self.predicate(tags) or
8312371Sgabeblack@google.com                                         other.predicate(tags))
8412371Sgabeblack@google.com
8512371Sgabeblack@google.com    def __and__(self, other):
8612371Sgabeblack@google.com        return SourceFilter(lambda tags: self.predicate(tags) and
8712371Sgabeblack@google.com                                         other.predicate(tags))
8812371Sgabeblack@google.com
8912371Sgabeblack@google.comdef with_tags_that(predicate):
9012371Sgabeblack@google.com    '''Return a list of sources with tags that satisfy a predicate.'''
9112371Sgabeblack@google.com    return SourceFilter(predicate)
9212371Sgabeblack@google.com
9312371Sgabeblack@google.comdef with_any_tags(*tags):
9412371Sgabeblack@google.com    '''Return a list of sources with any of the supplied tags.'''
9512371Sgabeblack@google.com    return SourceFilter(lambda stags: len(set(tags) & stags) > 0)
9612371Sgabeblack@google.com
9712371Sgabeblack@google.comdef with_all_tags(*tags):
9812371Sgabeblack@google.com    '''Return a list of sources with all of the supplied tags.'''
9912371Sgabeblack@google.com    return SourceFilter(lambda stags: set(tags) <= stags)
10012371Sgabeblack@google.com
10112371Sgabeblack@google.comdef with_tag(tag):
10212371Sgabeblack@google.com    '''Return a list of sources with the supplied tag.'''
10312371Sgabeblack@google.com    return SourceFilter(lambda stags: tag in stags)
10412371Sgabeblack@google.com
10512371Sgabeblack@google.comdef without_tags(*tags):
10612371Sgabeblack@google.com    '''Return a list of sources without any of the supplied tags.'''
10712371Sgabeblack@google.com    return SourceFilter(lambda stags: len(set(tags) & stags) == 0)
10812371Sgabeblack@google.com
10912371Sgabeblack@google.comdef without_tag(tag):
11012371Sgabeblack@google.com    '''Return a list of sources with the supplied tag.'''
11112371Sgabeblack@google.com    return SourceFilter(lambda stags: tag not in stags)
11212371Sgabeblack@google.com
11312371Sgabeblack@google.comsource_filter_factories = {
11412371Sgabeblack@google.com    'with_tags_that': with_tags_that,
11512371Sgabeblack@google.com    'with_any_tags': with_any_tags,
11612371Sgabeblack@google.com    'with_all_tags': with_all_tags,
11712371Sgabeblack@google.com    'with_tag': with_tag,
11812371Sgabeblack@google.com    'without_tags': without_tags,
11912371Sgabeblack@google.com    'without_tag': without_tag,
12012371Sgabeblack@google.com}
12112371Sgabeblack@google.com
12212371Sgabeblack@google.comExport(source_filter_factories)
12312371Sgabeblack@google.com
12412371Sgabeblack@google.comclass SourceList(list):
12512371Sgabeblack@google.com    def apply_filter(self, f):
12612302Sgabeblack@google.com        def match(source):
12712371Sgabeblack@google.com            return f.predicate(source.tags)
12812302Sgabeblack@google.com        return SourceList(filter(match, self))
12912371Sgabeblack@google.com
13012302Sgabeblack@google.com    def __getattr__(self, name):
13112302Sgabeblack@google.com        func = source_filter_factories.get(name, None)
13212371Sgabeblack@google.com        if not func:
13312371Sgabeblack@google.com            raise AttributeError
13412371Sgabeblack@google.com
13512371Sgabeblack@google.com        @functools.wraps(func)
13612302Sgabeblack@google.com        def wrapper(*args, **kwargs):
13712371Sgabeblack@google.com            return self.apply_filter(func(*args, **kwargs))
13812371Sgabeblack@google.com        return wrapper
13912371Sgabeblack@google.com
14012371Sgabeblack@google.comclass SourceMeta(type):
14111983Sgabeblack@google.com    '''Meta class for source files that keeps track of all files of a
1426143Snate@binkert.org    particular type.'''
1438233Snate@binkert.org    def __init__(cls, name, bases, dict):
14412302Sgabeblack@google.com        super(SourceMeta, cls).__init__(name, bases, dict)
1456143Snate@binkert.org        cls.all = SourceList()
1466143Snate@binkert.org
14712302Sgabeblack@google.comclass SourceFile(object):
1484762Snate@binkert.org    '''Base object that encapsulates the notion of a source file.
1496143Snate@binkert.org    This includes, the source node, target node, various manipulations
1508233Snate@binkert.org    of those.  A source file also specifies a set of tags which
1518233Snate@binkert.org    describing arbitrary properties of the source file.'''
15212302Sgabeblack@google.com    __metaclass__ = SourceMeta
15312302Sgabeblack@google.com
1546143Snate@binkert.org    static_objs = {}
15512362Sgabeblack@google.com    shared_objs = {}
15612362Sgabeblack@google.com
15712362Sgabeblack@google.com    def __init__(self, source, tags=None, add_tags=None):
15812362Sgabeblack@google.com        if tags is None:
15912302Sgabeblack@google.com            tags='gem5 lib'
16012302Sgabeblack@google.com        if isinstance(tags, basestring):
16112302Sgabeblack@google.com            tags = set([tags])
16212302Sgabeblack@google.com        if not isinstance(tags, set):
16312302Sgabeblack@google.com            tags = set(tags)
16412363Sgabeblack@google.com        self.tags = tags
16512363Sgabeblack@google.com
16612363Sgabeblack@google.com        if add_tags:
16712363Sgabeblack@google.com            if isinstance(add_tags, basestring):
16812302Sgabeblack@google.com                add_tags = set([add_tags])
16912363Sgabeblack@google.com            if not isinstance(add_tags, set):
17012363Sgabeblack@google.com                add_tags = set(add_tags)
17112363Sgabeblack@google.com            self.tags |= add_tags
17212363Sgabeblack@google.com
17312363Sgabeblack@google.com        tnode = source
1748233Snate@binkert.org        if not isinstance(source, SCons.Node.FS.File):
1756143Snate@binkert.org            tnode = File(source)
1766143Snate@binkert.org
1776143Snate@binkert.org        self.tnode = tnode
1786143Snate@binkert.org        self.snode = tnode.srcnode()
1796143Snate@binkert.org
1806143Snate@binkert.org        for base in type(self).__mro__:
1816143Snate@binkert.org            if issubclass(base, SourceFile):
1826143Snate@binkert.org                base.all.append(self)
1836143Snate@binkert.org
1847065Snate@binkert.org    def static(self, env):
1856143Snate@binkert.org        key = (self.tnode, env['OBJSUFFIX'])
18612362Sgabeblack@google.com        if not key in self.static_objs:
18712362Sgabeblack@google.com            self.static_objs[key] = env.StaticObject(self.tnode)
18812362Sgabeblack@google.com        return self.static_objs[key]
18912362Sgabeblack@google.com
19012362Sgabeblack@google.com    def shared(self, env):
19112362Sgabeblack@google.com        key = (self.tnode, env['OBJSUFFIX'])
19212362Sgabeblack@google.com        if not key in self.shared_objs:
19312362Sgabeblack@google.com            self.shared_objs[key] = env.SharedObject(self.tnode)
19412362Sgabeblack@google.com        return self.shared_objs[key]
19512362Sgabeblack@google.com
19612362Sgabeblack@google.com    @property
19712362Sgabeblack@google.com    def filename(self):
1988233Snate@binkert.org        return str(self.tnode)
1998233Snate@binkert.org
2008233Snate@binkert.org    @property
2018233Snate@binkert.org    def dirname(self):
2028233Snate@binkert.org        return dirname(self.filename)
2038233Snate@binkert.org
2048233Snate@binkert.org    @property
2058233Snate@binkert.org    def basename(self):
2068233Snate@binkert.org        return basename(self.filename)
2078233Snate@binkert.org
2088233Snate@binkert.org    @property
2098233Snate@binkert.org    def extname(self):
2108233Snate@binkert.org        index = self.basename.rfind('.')
2118233Snate@binkert.org        if index <= 0:
2128233Snate@binkert.org            # dot files aren't extensions
2138233Snate@binkert.org            return self.basename, None
2148233Snate@binkert.org
2158233Snate@binkert.org        return self.basename[:index], self.basename[index+1:]
2168233Snate@binkert.org
2178233Snate@binkert.org    def __lt__(self, other): return self.filename < other.filename
2188233Snate@binkert.org    def __le__(self, other): return self.filename <= other.filename
2196143Snate@binkert.org    def __gt__(self, other): return self.filename > other.filename
2206143Snate@binkert.org    def __ge__(self, other): return self.filename >= other.filename
2216143Snate@binkert.org    def __eq__(self, other): return self.filename == other.filename
2226143Snate@binkert.org    def __ne__(self, other): return self.filename != other.filename
2236143Snate@binkert.org
2246143Snate@binkert.orgdef blobToCpp(data, symbol, cpp_code, hpp_code=None, namespace=None):
2259982Satgutier@umich.edu    '''
22613576Sciro.santilli@arm.com    Convert bytes data into C++ .cpp and .hh uint8_t byte array
22713576Sciro.santilli@arm.com    code containing that binary data.
22813576Sciro.santilli@arm.com
22913576Sciro.santilli@arm.com    :param data: binary data to be converted to C++
23013576Sciro.santilli@arm.com    :param symbol: name of the symbol
23113576Sciro.santilli@arm.com    :param cpp_code: append the generated cpp_code to this object
23213576Sciro.santilli@arm.com    :param hpp_code: append the generated hpp_code to this object
23313576Sciro.santilli@arm.com                     If None, ignore it. Otherwise, also include it
23413576Sciro.santilli@arm.com                     in the .cpp file.
23513576Sciro.santilli@arm.com    :param namespace: namespace to put the symbol into. If None,
23613576Sciro.santilli@arm.com                      don't put the symbols into any namespace.
23713576Sciro.santilli@arm.com    '''
23813576Sciro.santilli@arm.com    symbol_len_declaration = 'const std::size_t {}_len'.format(symbol)
23913576Sciro.santilli@arm.com    symbol_declaration = 'const std::uint8_t {}[]'.format(symbol)
24013576Sciro.santilli@arm.com    if hpp_code is not None:
24113576Sciro.santilli@arm.com        cpp_code('''\
24213576Sciro.santilli@arm.com#include "blobs/{}.hh"
24313576Sciro.santilli@arm.com'''.format(symbol))
24413576Sciro.santilli@arm.com        hpp_code('''\
24513576Sciro.santilli@arm.com#include <cstddef>
24613576Sciro.santilli@arm.com#include <cstdint>
24713576Sciro.santilli@arm.com''')
24813576Sciro.santilli@arm.com        if namespace is not None:
24913576Sciro.santilli@arm.com            hpp_code('namespace {} {{'.format(namespace))
25013576Sciro.santilli@arm.com        hpp_code('extern ' + symbol_len_declaration + ';')
25113576Sciro.santilli@arm.com        hpp_code('extern ' + symbol_declaration + ';')
25213576Sciro.santilli@arm.com        if namespace is not None:
25313576Sciro.santilli@arm.com            hpp_code('}')
25413576Sciro.santilli@arm.com    if namespace is not None:
25513576Sciro.santilli@arm.com        cpp_code('namespace {} {{'.format(namespace))
25613576Sciro.santilli@arm.com    if hpp_code is not None:
25713576Sciro.santilli@arm.com        cpp_code(symbol_len_declaration + ' = {};'.format(len(data)))
25813630Sciro.santilli@arm.com    cpp_code(symbol_declaration + ' = {')
25913630Sciro.santilli@arm.com    cpp_code.indent()
26013576Sciro.santilli@arm.com    step = 16
26113576Sciro.santilli@arm.com    for i in xrange(0, len(data), step):
26213576Sciro.santilli@arm.com        x = array.array('B', data[i:i+step])
26313576Sciro.santilli@arm.com        cpp_code(''.join('%d,' % d for d in x))
26413576Sciro.santilli@arm.com    cpp_code.dedent()
26513576Sciro.santilli@arm.com    cpp_code('};')
26613576Sciro.santilli@arm.com    if namespace is not None:
26713576Sciro.santilli@arm.com        cpp_code('}')
26813576Sciro.santilli@arm.com
26913576Sciro.santilli@arm.comdef Blob(blob_path, symbol):
27013576Sciro.santilli@arm.com    '''
27113576Sciro.santilli@arm.com    Embed an arbitrary blob into the gem5 executable,
27213576Sciro.santilli@arm.com    and make it accessible to C++ as a byte array.
27313576Sciro.santilli@arm.com    '''
27413576Sciro.santilli@arm.com    blob_path = os.path.abspath(blob_path)
27513576Sciro.santilli@arm.com    blob_out_dir = os.path.join(env['BUILDDIR'], 'blobs')
27613576Sciro.santilli@arm.com    path_noext = joinpath(blob_out_dir, symbol)
27713576Sciro.santilli@arm.com    cpp_path = path_noext + '.cc'
27813576Sciro.santilli@arm.com    hpp_path = path_noext + '.hh'
27913576Sciro.santilli@arm.com    def embedBlob(target, source, env):
28013576Sciro.santilli@arm.com        data = file(str(source[0]), 'r').read()
28113576Sciro.santilli@arm.com        cpp_code = code_formatter()
28213576Sciro.santilli@arm.com        hpp_code = code_formatter()
28313576Sciro.santilli@arm.com        blobToCpp(data, symbol, cpp_code, hpp_code, namespace='Blobs')
28413576Sciro.santilli@arm.com        cpp_path = str(target[0])
28513576Sciro.santilli@arm.com        hpp_path = str(target[1])
28613576Sciro.santilli@arm.com        cpp_dir = os.path.split(cpp_path)[0]
28713576Sciro.santilli@arm.com        if not os.path.exists(cpp_dir):
28813576Sciro.santilli@arm.com            os.makedirs(cpp_dir)
28913576Sciro.santilli@arm.com        cpp_code.write(cpp_path)
29013576Sciro.santilli@arm.com        hpp_code.write(hpp_path)
29113576Sciro.santilli@arm.com    env.Command([cpp_path, hpp_path], blob_path,
29213576Sciro.santilli@arm.com                MakeAction(embedBlob, Transform("EMBED BLOB")))
29313576Sciro.santilli@arm.com    Source(cpp_path)
29413576Sciro.santilli@arm.com
29513576Sciro.santilli@arm.comdef GdbXml(xml_id, symbol):
29613576Sciro.santilli@arm.com    Blob(joinpath(gdb_xml_dir, xml_id), symbol)
29713577Sciro.santilli@arm.com
29813577Sciro.santilli@arm.comclass Source(SourceFile):
29913577Sciro.santilli@arm.com    ungrouped_tag = 'No link group'
3006143Snate@binkert.org    source_groups = set()
30112302Sgabeblack@google.com
30212302Sgabeblack@google.com    _current_group_tag = ungrouped_tag
30312302Sgabeblack@google.com
30412302Sgabeblack@google.com    @staticmethod
30512302Sgabeblack@google.com    def link_group_tag(group):
30612302Sgabeblack@google.com        return 'link group: %s' % group
30712302Sgabeblack@google.com
30812302Sgabeblack@google.com    @classmethod
30911983Sgabeblack@google.com    def set_group(cls, group):
31011983Sgabeblack@google.com        new_tag = Source.link_group_tag(group)
31111983Sgabeblack@google.com        Source._current_group_tag = new_tag
31212302Sgabeblack@google.com        Source.source_groups.add(group)
31312302Sgabeblack@google.com
31412302Sgabeblack@google.com    def _add_link_group_tag(self):
31512302Sgabeblack@google.com        self.tags.add(Source._current_group_tag)
31612302Sgabeblack@google.com
31712302Sgabeblack@google.com    '''Add a c/c++ source file to the build'''
31811983Sgabeblack@google.com    def __init__(self, source, tags=None, add_tags=None):
3196143Snate@binkert.org        '''specify the source file, and any tags'''
32012305Sgabeblack@google.com        super(Source, self).__init__(source, tags, add_tags)
32112302Sgabeblack@google.com        self._add_link_group_tag()
32212302Sgabeblack@google.com
32312302Sgabeblack@google.comclass PySource(SourceFile):
3246143Snate@binkert.org    '''Add a python source file to the named package'''
3256143Snate@binkert.org    invalid_sym_char = re.compile('[^A-z0-9_]')
3266143Snate@binkert.org    modules = {}
3275522Snate@binkert.org    tnodes = {}
3286143Snate@binkert.org    symnames = {}
3296143Snate@binkert.org
3306143Snate@binkert.org    def __init__(self, package, source, tags=None, add_tags=None):
3319982Satgutier@umich.edu        '''specify the python package, the source file, and any tags'''
33212302Sgabeblack@google.com        super(PySource, self).__init__(source, tags, add_tags)
33312302Sgabeblack@google.com
33412302Sgabeblack@google.com        modname,ext = self.extname
3356143Snate@binkert.org        assert ext == 'py'
3366143Snate@binkert.org
3376143Snate@binkert.org        if package:
3386143Snate@binkert.org            path = package.split('.')
3395522Snate@binkert.org        else:
3405522Snate@binkert.org            path = []
3415522Snate@binkert.org
3425522Snate@binkert.org        modpath = path[:]
3435604Snate@binkert.org        if modname != '__init__':
3445604Snate@binkert.org            modpath += [ modname ]
3456143Snate@binkert.org        modpath = '.'.join(modpath)
3466143Snate@binkert.org
3474762Snate@binkert.org        arcpath = path + [ self.basename ]
3484762Snate@binkert.org        abspath = self.snode.abspath
3496143Snate@binkert.org        if not exists(abspath):
3506727Ssteve.reinhardt@amd.com            abspath = self.tnode.abspath
3516727Ssteve.reinhardt@amd.com
3526727Ssteve.reinhardt@amd.com        self.package = package
3534762Snate@binkert.org        self.modname = modname
3546143Snate@binkert.org        self.modpath = modpath
3556143Snate@binkert.org        self.arcname = joinpath(*arcpath)
3566143Snate@binkert.org        self.abspath = abspath
3576143Snate@binkert.org        self.compiled = File(self.filename + 'c')
3586727Ssteve.reinhardt@amd.com        self.cpp = File(self.filename + '.cc')
3596143Snate@binkert.org        self.symname = PySource.invalid_sym_char.sub('_', modpath)
3607674Snate@binkert.org
3617674Snate@binkert.org        PySource.modules[modpath] = self
3625604Snate@binkert.org        PySource.tnodes[self.tnode] = self
3636143Snate@binkert.org        PySource.symnames[self.symname] = self
3646143Snate@binkert.org
3656143Snate@binkert.orgclass SimObject(PySource):
3664762Snate@binkert.org    '''Add a SimObject python file as a python source object and add
3676143Snate@binkert.org    it to a list of sim object modules'''
3684762Snate@binkert.org
3694762Snate@binkert.org    fixed = False
3704762Snate@binkert.org    modnames = []
3716143Snate@binkert.org
3726143Snate@binkert.org    def __init__(self, source, tags=None, add_tags=None):
3734762Snate@binkert.org        '''Specify the source file and any tags (automatically in
37412302Sgabeblack@google.com        the m5.objects package)'''
37512302Sgabeblack@google.com        super(SimObject, self).__init__('m5.objects', source, tags, add_tags)
3768233Snate@binkert.org        if self.fixed:
37712302Sgabeblack@google.com            raise AttributeError, "Too late to call SimObject now."
3786143Snate@binkert.org
3796143Snate@binkert.org        bisect.insort_right(SimObject.modnames, self.modname)
3804762Snate@binkert.org
3816143Snate@binkert.orgclass ProtoBuf(SourceFile):
3824762Snate@binkert.org    '''Add a Protocol Buffer to build'''
3839396Sandreas.hansson@arm.com
3849396Sandreas.hansson@arm.com    def __init__(self, source, tags=None, add_tags=None):
3859396Sandreas.hansson@arm.com        '''Specify the source file, and any tags'''
38612302Sgabeblack@google.com        super(ProtoBuf, self).__init__(source, tags, add_tags)
38712302Sgabeblack@google.com
38812302Sgabeblack@google.com        # Get the file name and the extension
3899396Sandreas.hansson@arm.com        modname,ext = self.extname
3909396Sandreas.hansson@arm.com        assert ext == 'proto'
3919396Sandreas.hansson@arm.com
3929396Sandreas.hansson@arm.com        # Currently, we stick to generating the C++ headers, so we
3939396Sandreas.hansson@arm.com        # only need to track the source and header.
3949396Sandreas.hansson@arm.com        self.cc_file = File(modname + '.pb.cc')
3959396Sandreas.hansson@arm.com        self.hh_file = File(modname + '.pb.h')
3969930Sandreas.hansson@arm.com
3979930Sandreas.hansson@arm.com
3989396Sandreas.hansson@arm.comexectuable_classes = []
3996143Snate@binkert.orgclass ExecutableMeta(type):
40012797Sgabeblack@google.com    '''Meta class for Executables.'''
40112797Sgabeblack@google.com    all = []
40212797Sgabeblack@google.com
4038235Snate@binkert.org    def __init__(cls, name, bases, d):
40412797Sgabeblack@google.com        if not d.pop('abstract', False):
40512797Sgabeblack@google.com            ExecutableMeta.all.append(cls)
40612797Sgabeblack@google.com        super(ExecutableMeta, cls).__init__(name, bases, d)
40712797Sgabeblack@google.com
40812797Sgabeblack@google.com        cls.all = []
40912797Sgabeblack@google.com
41012797Sgabeblack@google.comclass Executable(object):
41112797Sgabeblack@google.com    '''Base class for creating an executable from sources.'''
41212797Sgabeblack@google.com    __metaclass__ = ExecutableMeta
41312797Sgabeblack@google.com
41412797Sgabeblack@google.com    abstract = True
41512797Sgabeblack@google.com
41612797Sgabeblack@google.com    def __init__(self, target, *srcs_and_filts):
41712797Sgabeblack@google.com        '''Specify the target name and any sources. Sources that are
41812797Sgabeblack@google.com        not SourceFiles are evalued with Source().'''
41912757Sgabeblack@google.com        super(Executable, self).__init__()
42012757Sgabeblack@google.com        self.all.append(self)
42112797Sgabeblack@google.com        self.target = target
42212797Sgabeblack@google.com
42312797Sgabeblack@google.com        isFilter = lambda arg: isinstance(arg, SourceFilter)
42412757Sgabeblack@google.com        self.filters = filter(isFilter, srcs_and_filts)
42512757Sgabeblack@google.com        sources = filter(lambda a: not isFilter(a), srcs_and_filts)
42612757Sgabeblack@google.com
42712757Sgabeblack@google.com        srcs = SourceList()
4288235Snate@binkert.org        for src in sources:
42912302Sgabeblack@google.com            if not isinstance(src, SourceFile):
4308235Snate@binkert.org                src = Source(src, tags=[])
4318235Snate@binkert.org            srcs.append(src)
43212757Sgabeblack@google.com
4338235Snate@binkert.org        self.sources = srcs
4348235Snate@binkert.org        self.dir = Dir('.')
4358235Snate@binkert.org
43612757Sgabeblack@google.com    def path(self, env):
43712313Sgabeblack@google.com        return self.dir.File(self.target + '.' + env['EXE_SUFFIX'])
43812797Sgabeblack@google.com
43912797Sgabeblack@google.com    def srcs_to_objs(self, env, sources):
44012797Sgabeblack@google.com        return list([ s.static(env) for s in sources ])
44112797Sgabeblack@google.com
44212797Sgabeblack@google.com    @classmethod
44312797Sgabeblack@google.com    def declare_all(cls, env):
44412797Sgabeblack@google.com        return list([ instance.declare(env) for instance in cls.all ])
44512797Sgabeblack@google.com
44612797Sgabeblack@google.com    def declare(self, env, objs=None):
44712797Sgabeblack@google.com        if objs is None:
44812797Sgabeblack@google.com            objs = self.srcs_to_objs(env, self.sources)
44912797Sgabeblack@google.com
45012797Sgabeblack@google.com        env = env.Clone()
45112797Sgabeblack@google.com        env['BIN_RPATH_PREFIX'] = os.path.relpath(
45212797Sgabeblack@google.com                env['BUILDDIR'], self.path(env).dir.abspath)
45312797Sgabeblack@google.com
45412797Sgabeblack@google.com        if env['STRIP_EXES']:
45512797Sgabeblack@google.com            stripped = self.path(env)
45612797Sgabeblack@google.com            unstripped = env.File(str(stripped) + '.unstripped')
45712797Sgabeblack@google.com            if sys.platform == 'sunos5':
45812797Sgabeblack@google.com                cmd = 'cp $SOURCE $TARGET; strip $TARGET'
45912797Sgabeblack@google.com            else:
46012797Sgabeblack@google.com                cmd = 'strip $SOURCE -o $TARGET'
46112797Sgabeblack@google.com            env.Program(unstripped, objs)
46212797Sgabeblack@google.com            return env.Command(stripped, unstripped,
46312797Sgabeblack@google.com                               MakeAction(cmd, Transform("STRIP")))
46412797Sgabeblack@google.com        else:
46512797Sgabeblack@google.com            return env.Program(self.path(env), objs)
46612797Sgabeblack@google.com
46712797Sgabeblack@google.comclass UnitTest(Executable):
46812797Sgabeblack@google.com    '''Create a UnitTest'''
46912797Sgabeblack@google.com    def __init__(self, target, *srcs_and_filts, **kwargs):
47012797Sgabeblack@google.com        super(UnitTest, self).__init__(target, *srcs_and_filts)
47112797Sgabeblack@google.com
47212797Sgabeblack@google.com        self.main = kwargs.get('main', False)
47312797Sgabeblack@google.com
47412797Sgabeblack@google.com    def declare(self, env):
47513656Sgabeblack@google.com        sources = list(self.sources)
47612797Sgabeblack@google.com        for f in self.filters:
47712797Sgabeblack@google.com            sources += Source.all.apply_filter(f)
47812797Sgabeblack@google.com        objs = self.srcs_to_objs(env, sources) + env['STATIC_OBJS']
47912797Sgabeblack@google.com        if self.main:
48012797Sgabeblack@google.com            objs += env['MAIN_OBJS']
48112797Sgabeblack@google.com        return super(UnitTest, self).declare(env, objs)
48212313Sgabeblack@google.com
48312313Sgabeblack@google.comclass GTest(Executable):
48412797Sgabeblack@google.com    '''Create a unit test based on the google test framework.'''
48512797Sgabeblack@google.com    all = []
48612797Sgabeblack@google.com    def __init__(self, *srcs_and_filts, **kwargs):
48712371Sgabeblack@google.com        super(GTest, self).__init__(*srcs_and_filts)
4885584Snate@binkert.org
48912797Sgabeblack@google.com        self.skip_lib = kwargs.pop('skip_lib', False)
49012797Sgabeblack@google.com
49112797Sgabeblack@google.com    @classmethod
49212797Sgabeblack@google.com    def declare_all(cls, env):
49312797Sgabeblack@google.com        env = env.Clone()
49412797Sgabeblack@google.com        env.Append(LIBS=env['GTEST_LIBS'])
49512797Sgabeblack@google.com        env.Append(CPPFLAGS=env['GTEST_CPPFLAGS'])
49612797Sgabeblack@google.com        env['GTEST_LIB_SOURCES'] = Source.all.with_tag('gtest lib')
49712797Sgabeblack@google.com        env['GTEST_OUT_DIR'] = \
49812797Sgabeblack@google.com            Dir(env['BUILDDIR']).Dir('unittests.' + env['EXE_SUFFIX'])
49912797Sgabeblack@google.com        return super(GTest, cls).declare_all(env)
50012797Sgabeblack@google.com
50112797Sgabeblack@google.com    def declare(self, env):
50212797Sgabeblack@google.com        sources = list(self.sources)
50312797Sgabeblack@google.com        if not self.skip_lib:
50412797Sgabeblack@google.com            sources += env['GTEST_LIB_SOURCES']
50512797Sgabeblack@google.com        for f in self.filters:
50612797Sgabeblack@google.com            sources += Source.all.apply_filter(f)
50712797Sgabeblack@google.com        objs = self.srcs_to_objs(env, sources)
50812797Sgabeblack@google.com
50912797Sgabeblack@google.com        binary = super(GTest, self).declare(env, objs)
51012797Sgabeblack@google.com
51112797Sgabeblack@google.com        out_dir = env['GTEST_OUT_DIR']
51212797Sgabeblack@google.com        xml_file = out_dir.Dir(str(self.dir)).File(self.target + '.xml')
51312797Sgabeblack@google.com        AlwaysBuild(env.Command(xml_file, binary,
51412797Sgabeblack@google.com            "${SOURCES[0]} --gtest_output=xml:${TARGETS[0]}"))
51512797Sgabeblack@google.com
51612797Sgabeblack@google.com        return binary
51712797Sgabeblack@google.com
51812797Sgabeblack@google.comclass Gem5(Executable):
51912797Sgabeblack@google.com    '''Create a gem5 executable.'''
52012797Sgabeblack@google.com
52112797Sgabeblack@google.com    def __init__(self, target):
52212797Sgabeblack@google.com        super(Gem5, self).__init__(target)
52312797Sgabeblack@google.com
52412797Sgabeblack@google.com    def declare(self, env):
52512797Sgabeblack@google.com        objs = env['MAIN_OBJS'] + env['STATIC_OBJS']
52612797Sgabeblack@google.com        return super(Gem5, self).declare(env, objs)
5274382Sbinkertn@umich.edu
52813576Sciro.santilli@arm.com
52913577Sciro.santilli@arm.com# Children should have access
5304202Sbinkertn@umich.eduExport('Blob')
5314382Sbinkertn@umich.eduExport('GdbXml')
5324382Sbinkertn@umich.eduExport('Source')
5339396Sandreas.hansson@arm.comExport('PySource')
53412797Sgabeblack@google.comExport('SimObject')
5355584Snate@binkert.orgExport('ProtoBuf')
53612313Sgabeblack@google.comExport('Executable')
5374382Sbinkertn@umich.eduExport('UnitTest')
5384382Sbinkertn@umich.eduExport('GTest')
5394382Sbinkertn@umich.edu
5408232Snate@binkert.org########################################################################
5415192Ssaidi@eecs.umich.edu#
5428232Snate@binkert.org# Debug Flags
5438232Snate@binkert.org#
5448232Snate@binkert.orgdebug_flags = {}
5455192Ssaidi@eecs.umich.edudef DebugFlag(name, desc=None):
5468232Snate@binkert.org    if name in debug_flags:
5475192Ssaidi@eecs.umich.edu        raise AttributeError, "Flag %s already specified" % name
5485799Snate@binkert.org    debug_flags[name] = (name, (), desc)
5498232Snate@binkert.org
5505192Ssaidi@eecs.umich.edudef CompoundFlag(name, flags, desc=None):
5515192Ssaidi@eecs.umich.edu    if name in debug_flags:
5525192Ssaidi@eecs.umich.edu        raise AttributeError, "Flag %s already specified" % name
5538232Snate@binkert.org
5545192Ssaidi@eecs.umich.edu    compound = tuple(flags)
5558232Snate@binkert.org    debug_flags[name] = (name, compound, desc)
5565192Ssaidi@eecs.umich.edu
5575192Ssaidi@eecs.umich.eduExport('DebugFlag')
5585192Ssaidi@eecs.umich.eduExport('CompoundFlag')
5595192Ssaidi@eecs.umich.edu
5604382Sbinkertn@umich.edu########################################################################
5614382Sbinkertn@umich.edu#
5624382Sbinkertn@umich.edu# Set some compiler variables
5632667Sstever@eecs.umich.edu#
5642667Sstever@eecs.umich.edu
5652667Sstever@eecs.umich.edu# Include file paths are rooted in this directory.  SCons will
5662667Sstever@eecs.umich.edu# automatically expand '.' to refer to both the source directory and
5672667Sstever@eecs.umich.edu# the corresponding build directory to pick up generated include
5682667Sstever@eecs.umich.edu# files.
5695742Snate@binkert.orgenv.Append(CPPPATH=Dir('.'))
5705742Snate@binkert.org
5715742Snate@binkert.orgfor extra_dir in extras_dir_list:
5725793Snate@binkert.org    env.Append(CPPPATH=Dir(extra_dir))
5738334Snate@binkert.org
5745793Snate@binkert.org# Workaround for bug in SCons version > 0.97d20071212
5755793Snate@binkert.org# Scons bug id: 2006 gem5 Bug id: 308
5765793Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True):
5774382Sbinkertn@umich.edu    Dir(root[len(base_dir) + 1:])
5784762Snate@binkert.org
5795344Sstever@gmail.com########################################################################
5804382Sbinkertn@umich.edu#
5815341Sstever@gmail.com# Walk the tree and execute all SConscripts in subdirectories
5825742Snate@binkert.org#
5835742Snate@binkert.org
5845742Snate@binkert.orghere = Dir('.').srcnode().abspath
5855742Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True):
5865742Snate@binkert.org    if root == here:
5874762Snate@binkert.org        # we don't want to recurse back into this SConscript
5885742Snate@binkert.org        continue
5895742Snate@binkert.org
59011984Sgabeblack@google.com    if 'SConscript' in files:
5917722Sgblack@eecs.umich.edu        build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:])
5925742Snate@binkert.org        Source.set_group(build_dir)
5935742Snate@binkert.org        SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir)
5945742Snate@binkert.org
5959930Sandreas.hansson@arm.comfor extra_dir in extras_dir_list:
5969930Sandreas.hansson@arm.com    prefix_len = len(dirname(extra_dir)) + 1
5979930Sandreas.hansson@arm.com
5989930Sandreas.hansson@arm.com    # Also add the corresponding build directory to pick up generated
5999930Sandreas.hansson@arm.com    # include files.
6005742Snate@binkert.org    env.Append(CPPPATH=Dir(joinpath(env['BUILDDIR'], extra_dir[prefix_len:])))
6018242Sbradley.danofsky@amd.com
6028242Sbradley.danofsky@amd.com    for root, dirs, files in os.walk(extra_dir, topdown=True):
6038242Sbradley.danofsky@amd.com        # if build lives in the extras directory, don't walk down it
6048242Sbradley.danofsky@amd.com        if 'build' in dirs:
6055341Sstever@gmail.com            dirs.remove('build')
6065742Snate@binkert.org
6077722Sgblack@eecs.umich.edu        if 'SConscript' in files:
6084773Snate@binkert.org            build_dir = joinpath(env['BUILDDIR'], root[prefix_len:])
6096108Snate@binkert.org            SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir)
6101858SN/A
6111085SN/Afor opt in export_vars:
6126658Snate@binkert.org    env.ConfigFile(opt)
6136658Snate@binkert.org
6147673Snate@binkert.orgdef makeTheISA(source, target, env):
6156658Snate@binkert.org    isas = [ src.get_contents() for src in source ]
6166658Snate@binkert.org    target_isa = env['TARGET_ISA']
61711308Santhony.gutierrez@amd.com    def define(isa):
6186658Snate@binkert.org        return isa.upper() + '_ISA'
61911308Santhony.gutierrez@amd.com
6206658Snate@binkert.org    def namespace(isa):
6216658Snate@binkert.org        return isa[0].upper() + isa[1:].lower() + 'ISA'
6227673Snate@binkert.org
6237673Snate@binkert.org
6247673Snate@binkert.org    code = code_formatter()
6257673Snate@binkert.org    code('''\
6267673Snate@binkert.org#ifndef __CONFIG_THE_ISA_HH__
6277673Snate@binkert.org#define __CONFIG_THE_ISA_HH__
6287673Snate@binkert.org
62910467Sandreas.hansson@arm.com''')
6306658Snate@binkert.org
6317673Snate@binkert.org    # create defines for the preprocessing and compile-time determination
63210467Sandreas.hansson@arm.com    for i,isa in enumerate(isas):
63310467Sandreas.hansson@arm.com        code('#define $0 $1', define(isa), i + 1)
63410467Sandreas.hansson@arm.com    code()
63510467Sandreas.hansson@arm.com
63610467Sandreas.hansson@arm.com    # create an enum for any run-time determination of the ISA, we
63710467Sandreas.hansson@arm.com    # reuse the same name as the namespaces
63810467Sandreas.hansson@arm.com    code('enum class Arch {')
63910467Sandreas.hansson@arm.com    for i,isa in enumerate(isas):
64010467Sandreas.hansson@arm.com        if i + 1 == len(isas):
64110467Sandreas.hansson@arm.com            code('  $0 = $1', namespace(isa), define(isa))
64210467Sandreas.hansson@arm.com        else:
6437673Snate@binkert.org            code('  $0 = $1,', namespace(isa), define(isa))
6447673Snate@binkert.org    code('};')
6457673Snate@binkert.org
6467673Snate@binkert.org    code('''
6477673Snate@binkert.org
6489048SAli.Saidi@ARM.com#define THE_ISA ${{define(target_isa)}}
6497673Snate@binkert.org#define TheISA ${{namespace(target_isa)}}
6507673Snate@binkert.org#define THE_ISA_STR "${{target_isa}}"
6517673Snate@binkert.org
6527673Snate@binkert.org#endif // __CONFIG_THE_ISA_HH__''')
6536658Snate@binkert.org
6547756SAli.Saidi@ARM.com    code.write(str(target[0]))
6557816Ssteve.reinhardt@amd.com
6566658Snate@binkert.orgenv.Command('config/the_isa.hh', map(Value, all_isa_list),
65711308Santhony.gutierrez@amd.com            MakeAction(makeTheISA, Transform("CFG ISA", 0)))
65811308Santhony.gutierrez@amd.com
65911308Santhony.gutierrez@amd.comdef makeTheGPUISA(source, target, env):
66011308Santhony.gutierrez@amd.com    isas = [ src.get_contents() for src in source ]
66111308Santhony.gutierrez@amd.com    target_gpu_isa = env['TARGET_GPU_ISA']
66211308Santhony.gutierrez@amd.com    def define(isa):
66311308Santhony.gutierrez@amd.com        return isa.upper() + '_ISA'
66411308Santhony.gutierrez@amd.com
66511308Santhony.gutierrez@amd.com    def namespace(isa):
66611308Santhony.gutierrez@amd.com        return isa[0].upper() + isa[1:].lower() + 'ISA'
66711308Santhony.gutierrez@amd.com
66811308Santhony.gutierrez@amd.com
66911308Santhony.gutierrez@amd.com    code = code_formatter()
67011308Santhony.gutierrez@amd.com    code('''\
67111308Santhony.gutierrez@amd.com#ifndef __CONFIG_THE_GPU_ISA_HH__
67211308Santhony.gutierrez@amd.com#define __CONFIG_THE_GPU_ISA_HH__
67311308Santhony.gutierrez@amd.com
67411308Santhony.gutierrez@amd.com''')
67511308Santhony.gutierrez@amd.com
67611308Santhony.gutierrez@amd.com    # create defines for the preprocessing and compile-time determination
67711308Santhony.gutierrez@amd.com    for i,isa in enumerate(isas):
67811308Santhony.gutierrez@amd.com        code('#define $0 $1', define(isa), i + 1)
67911308Santhony.gutierrez@amd.com    code()
68011308Santhony.gutierrez@amd.com
68111308Santhony.gutierrez@amd.com    # create an enum for any run-time determination of the ISA, we
68211308Santhony.gutierrez@amd.com    # reuse the same name as the namespaces
68311308Santhony.gutierrez@amd.com    code('enum class GPUArch {')
68411308Santhony.gutierrez@amd.com    for i,isa in enumerate(isas):
68511308Santhony.gutierrez@amd.com        if i + 1 == len(isas):
68611308Santhony.gutierrez@amd.com            code('  $0 = $1', namespace(isa), define(isa))
68711308Santhony.gutierrez@amd.com        else:
68811308Santhony.gutierrez@amd.com            code('  $0 = $1,', namespace(isa), define(isa))
68911308Santhony.gutierrez@amd.com    code('};')
69011308Santhony.gutierrez@amd.com
69111308Santhony.gutierrez@amd.com    code('''
69211308Santhony.gutierrez@amd.com
69311308Santhony.gutierrez@amd.com#define THE_GPU_ISA ${{define(target_gpu_isa)}}
69411308Santhony.gutierrez@amd.com#define TheGpuISA ${{namespace(target_gpu_isa)}}
69511308Santhony.gutierrez@amd.com#define THE_GPU_ISA_STR "${{target_gpu_isa}}"
69611308Santhony.gutierrez@amd.com
69711308Santhony.gutierrez@amd.com#endif // __CONFIG_THE_GPU_ISA_HH__''')
69811308Santhony.gutierrez@amd.com
69911308Santhony.gutierrez@amd.com    code.write(str(target[0]))
70011308Santhony.gutierrez@amd.com
70111308Santhony.gutierrez@amd.comenv.Command('config/the_gpu_isa.hh', map(Value, all_gpu_isa_list),
7024382Sbinkertn@umich.edu            MakeAction(makeTheGPUISA, Transform("CFG ISA", 0)))
7034382Sbinkertn@umich.edu
7044762Snate@binkert.org########################################################################
7054762Snate@binkert.org#
7064762Snate@binkert.org# Prevent any SimObjects from being added after this point, they
7076654Snate@binkert.org# should all have been added in the SConscripts above
7086654Snate@binkert.org#
7095517Snate@binkert.orgSimObject.fixed = True
7105517Snate@binkert.org
7115517Snate@binkert.orgclass DictImporter(object):
7125517Snate@binkert.org    '''This importer takes a dictionary of arbitrary module names that
7135517Snate@binkert.org    map to arbitrary filenames.'''
7145517Snate@binkert.org    def __init__(self, modules):
7155517Snate@binkert.org        self.modules = modules
7165517Snate@binkert.org        self.installed = set()
7175517Snate@binkert.org
7185517Snate@binkert.org    def __del__(self):
7195517Snate@binkert.org        self.unload()
7205517Snate@binkert.org
7215517Snate@binkert.org    def unload(self):
7225517Snate@binkert.org        import sys
7235517Snate@binkert.org        for module in self.installed:
7245517Snate@binkert.org            del sys.modules[module]
7255517Snate@binkert.org        self.installed = set()
7266654Snate@binkert.org
7275517Snate@binkert.org    def find_module(self, fullname, path):
7285517Snate@binkert.org        if fullname == 'm5.defines':
7295517Snate@binkert.org            return self
7305517Snate@binkert.org
7315517Snate@binkert.org        if fullname == 'm5.objects':
73211802Sandreas.sandberg@arm.com            return self
7335517Snate@binkert.org
7345517Snate@binkert.org        if fullname.startswith('_m5'):
7356143Snate@binkert.org            return None
7366654Snate@binkert.org
7375517Snate@binkert.org        source = self.modules.get(fullname, None)
7385517Snate@binkert.org        if source is not None and fullname.startswith('m5.objects'):
7395517Snate@binkert.org            return self
7405517Snate@binkert.org
7415517Snate@binkert.org        return None
7425517Snate@binkert.org
7435517Snate@binkert.org    def load_module(self, fullname):
7445517Snate@binkert.org        mod = imp.new_module(fullname)
7455517Snate@binkert.org        sys.modules[fullname] = mod
7465517Snate@binkert.org        self.installed.add(fullname)
7475517Snate@binkert.org
7485517Snate@binkert.org        mod.__loader__ = self
7495517Snate@binkert.org        if fullname == 'm5.objects':
7505517Snate@binkert.org            mod.__path__ = fullname.split('.')
7516654Snate@binkert.org            return mod
7526654Snate@binkert.org
7535517Snate@binkert.org        if fullname == 'm5.defines':
7545517Snate@binkert.org            mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env)
7556143Snate@binkert.org            return mod
7566143Snate@binkert.org
7576143Snate@binkert.org        source = self.modules[fullname]
7586727Ssteve.reinhardt@amd.com        if source.modname == '__init__':
7595517Snate@binkert.org            mod.__path__ = source.modpath
7606727Ssteve.reinhardt@amd.com        mod.__file__ = source.abspath
7615517Snate@binkert.org
7625517Snate@binkert.org        exec file(source.abspath, 'r') in mod.__dict__
7635517Snate@binkert.org
7646654Snate@binkert.org        return mod
7656654Snate@binkert.org
7667673Snate@binkert.orgimport m5.SimObject
7676654Snate@binkert.orgimport m5.params
7686654Snate@binkert.orgfrom m5.util import code_formatter
7696654Snate@binkert.org
7706654Snate@binkert.orgm5.SimObject.clear()
7715517Snate@binkert.orgm5.params.clear()
7725517Snate@binkert.org
7735517Snate@binkert.org# install the python importer so we can grab stuff from the source
7746143Snate@binkert.org# tree itself.  We can't have SimObjects added after this point or
7755517Snate@binkert.org# else we won't know about them for the rest of the stuff.
7764762Snate@binkert.orgimporter = DictImporter(PySource.modules)
7775517Snate@binkert.orgsys.meta_path[0:0] = [ importer ]
7785517Snate@binkert.org
7796143Snate@binkert.org# import all sim objects so we can populate the all_objects list
7806143Snate@binkert.org# make sure that we're working with a list, then let's sort it
7815517Snate@binkert.orgfor modname in SimObject.modnames:
7825517Snate@binkert.org    exec('from m5.objects import %s' % modname)
7835517Snate@binkert.org
7845517Snate@binkert.org# we need to unload all of the currently imported modules so that they
7855517Snate@binkert.org# will be re-imported the next time the sconscript is run
7865517Snate@binkert.orgimporter.unload()
7875517Snate@binkert.orgsys.meta_path.remove(importer)
7885517Snate@binkert.org
7895517Snate@binkert.orgsim_objects = m5.SimObject.allClasses
7906143Snate@binkert.orgall_enums = m5.params.allEnums
7915517Snate@binkert.org
7926654Snate@binkert.orgfor name,obj in sorted(sim_objects.iteritems()):
7936654Snate@binkert.org    for param in obj._params.local.values():
7946654Snate@binkert.org        # load the ptype attribute now because it depends on the
7956654Snate@binkert.org        # current version of SimObject.allClasses, but when scons
7966654Snate@binkert.org        # actually uses the value, all versions of
7976654Snate@binkert.org        # SimObject.allClasses will have been loaded
7984762Snate@binkert.org        param.ptype
7994762Snate@binkert.org
8004762Snate@binkert.org########################################################################
8014762Snate@binkert.org#
8024762Snate@binkert.org# calculate extra dependencies
8037675Snate@binkert.org#
80410584Sandreas.hansson@arm.commodule_depends = ["m5", "m5.SimObject", "m5.params"]
8054762Snate@binkert.orgdepends = [ PySource.modules[dep].snode for dep in module_depends ]
8064762Snate@binkert.orgdepends.sort(key = lambda x: x.name)
8074762Snate@binkert.org
8084762Snate@binkert.org########################################################################
8094382Sbinkertn@umich.edu#
8104382Sbinkertn@umich.edu# Commands for the basic automatically generated python files
8115517Snate@binkert.org#
8126654Snate@binkert.org
8135517Snate@binkert.org# Generate Python file containing a dict specifying the current
8148126Sgblack@eecs.umich.edu# buildEnv flags.
8156654Snate@binkert.orgdef makeDefinesPyFile(target, source, env):
8167673Snate@binkert.org    build_env = source[0].get_contents()
8176654Snate@binkert.org
81811802Sandreas.sandberg@arm.com    code = code_formatter()
8196654Snate@binkert.org    code("""
8206654Snate@binkert.orgimport _m5.core
8216654Snate@binkert.orgimport m5.util
8226654Snate@binkert.org
82311802Sandreas.sandberg@arm.combuildEnv = m5.util.SmartDict($build_env)
8246669Snate@binkert.org
82511802Sandreas.sandberg@arm.comcompileDate = _m5.core.compileDate
8266669Snate@binkert.org_globals = globals()
8276669Snate@binkert.orgfor key,val in _m5.core.__dict__.items():
8286669Snate@binkert.org    if key.startswith('flag_'):
8296669Snate@binkert.org        flag = key[5:]
8306654Snate@binkert.org        _globals[flag] = val
8317673Snate@binkert.orgdel _globals
8325517Snate@binkert.org""")
8338126Sgblack@eecs.umich.edu    code.write(target[0].abspath)
8345798Snate@binkert.org
8357756SAli.Saidi@ARM.comdefines_info = Value(build_env)
8367816Ssteve.reinhardt@amd.com# Generate a file with all of the compile options in it
8375798Snate@binkert.orgenv.Command('python/m5/defines.py', defines_info,
8385798Snate@binkert.org            MakeAction(makeDefinesPyFile, Transform("DEFINES", 0)))
8395517Snate@binkert.orgPySource('m5', 'python/m5/defines.py')
8405517Snate@binkert.org
8417673Snate@binkert.org# Generate python file containing info about the M5 source code
8425517Snate@binkert.orgdef makeInfoPyFile(target, source, env):
8435517Snate@binkert.org    code = code_formatter()
8447673Snate@binkert.org    for src in source:
8457673Snate@binkert.org        data = ''.join(file(src.srcnode().abspath, 'r').xreadlines())
8465517Snate@binkert.org        code('$src = ${{repr(data)}}')
8475798Snate@binkert.org    code.write(str(target[0]))
8485798Snate@binkert.org
8498333Snate@binkert.org# Generate a file that wraps the basic top level files
8507816Ssteve.reinhardt@amd.comenv.Command('python/m5/info.py',
8515798Snate@binkert.org            [ '#/COPYING', '#/LICENSE', '#/README', ],
8525798Snate@binkert.org            MakeAction(makeInfoPyFile, Transform("INFO")))
8534762Snate@binkert.orgPySource('m5', 'python/m5/info.py')
8544762Snate@binkert.org
8554762Snate@binkert.org########################################################################
8564762Snate@binkert.org#
8574762Snate@binkert.org# Create all of the SimObject param headers and enum headers
8588596Ssteve.reinhardt@amd.com#
8595517Snate@binkert.org
8605517Snate@binkert.orgdef createSimObjectParamStruct(target, source, env):
86111997Sgabeblack@google.com    assert len(target) == 1 and len(source) == 1
8625517Snate@binkert.org
8635517Snate@binkert.org    name = source[0].get_text_contents()
8647673Snate@binkert.org    obj = sim_objects[name]
8658596Ssteve.reinhardt@amd.com
8667673Snate@binkert.org    code = code_formatter()
8675517Snate@binkert.org    obj.cxx_param_decl(code)
86810458Sandreas.hansson@arm.com    code.write(target[0].abspath)
86910458Sandreas.hansson@arm.com
87010458Sandreas.hansson@arm.comdef createSimObjectCxxConfig(is_header):
87110458Sandreas.hansson@arm.com    def body(target, source, env):
87210458Sandreas.hansson@arm.com        assert len(target) == 1 and len(source) == 1
87310458Sandreas.hansson@arm.com
87410458Sandreas.hansson@arm.com        name = str(source[0].get_contents())
87510458Sandreas.hansson@arm.com        obj = sim_objects[name]
87610458Sandreas.hansson@arm.com
87710458Sandreas.hansson@arm.com        code = code_formatter()
87810458Sandreas.hansson@arm.com        obj.cxx_config_param_file(code, is_header)
87910458Sandreas.hansson@arm.com        code.write(target[0].abspath)
8805517Snate@binkert.org    return body
88111996Sgabeblack@google.com
8825517Snate@binkert.orgdef createEnumStrings(target, source, env):
88311997Sgabeblack@google.com    assert len(target) == 1 and len(source) == 2
88411996Sgabeblack@google.com
8855517Snate@binkert.org    name = source[0].get_text_contents()
8865517Snate@binkert.org    use_python = source[1].read()
8877673Snate@binkert.org    obj = all_enums[name]
8887673Snate@binkert.org
88911996Sgabeblack@google.com    code = code_formatter()
89011988Sandreas.sandberg@arm.com    obj.cxx_def(code)
8917673Snate@binkert.org    if use_python:
8925517Snate@binkert.org        obj.pybind_def(code)
8938596Ssteve.reinhardt@amd.com    code.write(target[0].abspath)
8945517Snate@binkert.org
8955517Snate@binkert.orgdef createEnumDecls(target, source, env):
89611997Sgabeblack@google.com    assert len(target) == 1 and len(source) == 1
8975517Snate@binkert.org
8985517Snate@binkert.org    name = source[0].get_text_contents()
8997673Snate@binkert.org    obj = all_enums[name]
9007673Snate@binkert.org
9017673Snate@binkert.org    code = code_formatter()
9025517Snate@binkert.org    obj.cxx_decl(code)
90311988Sandreas.sandberg@arm.com    code.write(target[0].abspath)
90411997Sgabeblack@google.com
9058596Ssteve.reinhardt@amd.comdef createSimObjectPyBindWrapper(target, source, env):
9068596Ssteve.reinhardt@amd.com    name = source[0].get_text_contents()
9078596Ssteve.reinhardt@amd.com    obj = sim_objects[name]
90811988Sandreas.sandberg@arm.com
9098596Ssteve.reinhardt@amd.com    code = code_formatter()
9108596Ssteve.reinhardt@amd.com    obj.pybind_decl(code)
9118596Ssteve.reinhardt@amd.com    code.write(target[0].abspath)
9124762Snate@binkert.org
9136143Snate@binkert.org# Generate all of the SimObject param C++ struct header files
9146143Snate@binkert.orgparams_hh_files = []
9156143Snate@binkert.orgfor name,simobj in sorted(sim_objects.iteritems()):
9164762Snate@binkert.org    py_source = PySource.modules[simobj.__module__]
9174762Snate@binkert.org    extra_deps = [ py_source.tnode ]
9184762Snate@binkert.org
9197756SAli.Saidi@ARM.com    hh_file = File('params/%s.hh' % name)
9208596Ssteve.reinhardt@amd.com    params_hh_files.append(hh_file)
9214762Snate@binkert.org    env.Command(hh_file, Value(name),
9224762Snate@binkert.org                MakeAction(createSimObjectParamStruct, Transform("SO PARAM")))
92310458Sandreas.hansson@arm.com    env.Depends(hh_file, depends + extra_deps)
92410458Sandreas.hansson@arm.com
92510458Sandreas.hansson@arm.com# C++ parameter description files
92610458Sandreas.hansson@arm.comif GetOption('with_cxx_config'):
92710458Sandreas.hansson@arm.com    for name,simobj in sorted(sim_objects.iteritems()):
92810458Sandreas.hansson@arm.com        py_source = PySource.modules[simobj.__module__]
92910458Sandreas.hansson@arm.com        extra_deps = [ py_source.tnode ]
93010458Sandreas.hansson@arm.com
93110458Sandreas.hansson@arm.com        cxx_config_hh_file = File('cxx_config/%s.hh' % name)
93210458Sandreas.hansson@arm.com        cxx_config_cc_file = File('cxx_config/%s.cc' % name)
93310458Sandreas.hansson@arm.com        env.Command(cxx_config_hh_file, Value(name),
93410458Sandreas.hansson@arm.com                    MakeAction(createSimObjectCxxConfig(True),
93510458Sandreas.hansson@arm.com                    Transform("CXXCPRHH")))
93610458Sandreas.hansson@arm.com        env.Command(cxx_config_cc_file, Value(name),
93710458Sandreas.hansson@arm.com                    MakeAction(createSimObjectCxxConfig(False),
93810458Sandreas.hansson@arm.com                    Transform("CXXCPRCC")))
93910458Sandreas.hansson@arm.com        env.Depends(cxx_config_hh_file, depends + extra_deps +
94010458Sandreas.hansson@arm.com                    [File('params/%s.hh' % name), File('sim/cxx_config.hh')])
94110458Sandreas.hansson@arm.com        env.Depends(cxx_config_cc_file, depends + extra_deps +
94210458Sandreas.hansson@arm.com                    [cxx_config_hh_file])
94310458Sandreas.hansson@arm.com        Source(cxx_config_cc_file)
94410458Sandreas.hansson@arm.com
94510458Sandreas.hansson@arm.com    cxx_config_init_cc_file = File('cxx_config/init.cc')
94610458Sandreas.hansson@arm.com
94710458Sandreas.hansson@arm.com    def createCxxConfigInitCC(target, source, env):
94810458Sandreas.hansson@arm.com        assert len(target) == 1 and len(source) == 1
94910458Sandreas.hansson@arm.com
95010458Sandreas.hansson@arm.com        code = code_formatter()
95110458Sandreas.hansson@arm.com
95210458Sandreas.hansson@arm.com        for name,simobj in sorted(sim_objects.iteritems()):
95310458Sandreas.hansson@arm.com            if not hasattr(simobj, 'abstract') or not simobj.abstract:
95410458Sandreas.hansson@arm.com                code('#include "cxx_config/${name}.hh"')
95510458Sandreas.hansson@arm.com        code()
95610458Sandreas.hansson@arm.com        code('void cxxConfigInit()')
95710458Sandreas.hansson@arm.com        code('{')
95810458Sandreas.hansson@arm.com        code.indent()
95910458Sandreas.hansson@arm.com        for name,simobj in sorted(sim_objects.iteritems()):
96010458Sandreas.hansson@arm.com            not_abstract = not hasattr(simobj, 'abstract') or \
96110458Sandreas.hansson@arm.com                not simobj.abstract
96210458Sandreas.hansson@arm.com            if not_abstract and 'type' in simobj.__dict__:
96310458Sandreas.hansson@arm.com                code('cxx_config_directory["${name}"] = '
96410458Sandreas.hansson@arm.com                     '${name}CxxConfigParams::makeDirectoryEntry();')
96510458Sandreas.hansson@arm.com        code.dedent()
96610458Sandreas.hansson@arm.com        code('}')
96710458Sandreas.hansson@arm.com        code.write(target[0].abspath)
96810458Sandreas.hansson@arm.com
96910458Sandreas.hansson@arm.com    py_source = PySource.modules[simobj.__module__]
97010458Sandreas.hansson@arm.com    extra_deps = [ py_source.tnode ]
97110458Sandreas.hansson@arm.com    env.Command(cxx_config_init_cc_file, Value(name),
97210584Sandreas.hansson@arm.com        MakeAction(createCxxConfigInitCC, Transform("CXXCINIT")))
97310458Sandreas.hansson@arm.com    cxx_param_hh_files = ["cxx_config/%s.hh" % simobj
97410458Sandreas.hansson@arm.com        for name,simobj in sorted(sim_objects.iteritems())
97510458Sandreas.hansson@arm.com        if not hasattr(simobj, 'abstract') or not simobj.abstract]
97610458Sandreas.hansson@arm.com    Depends(cxx_config_init_cc_file, cxx_param_hh_files +
97710458Sandreas.hansson@arm.com            [File('sim/cxx_config.hh')])
9784762Snate@binkert.org    Source(cxx_config_init_cc_file)
9796143Snate@binkert.org
9806143Snate@binkert.org# Generate all enum header files
9816143Snate@binkert.orgfor name,enum in sorted(all_enums.iteritems()):
9824762Snate@binkert.org    py_source = PySource.modules[enum.__module__]
9834762Snate@binkert.org    extra_deps = [ py_source.tnode ]
98411996Sgabeblack@google.com
9857816Ssteve.reinhardt@amd.com    cc_file = File('enums/%s.cc' % name)
9864762Snate@binkert.org    env.Command(cc_file, [Value(name), Value(env['USE_PYTHON'])],
9874762Snate@binkert.org                MakeAction(createEnumStrings, Transform("ENUM STR")))
9884762Snate@binkert.org    env.Depends(cc_file, depends + extra_deps)
9894762Snate@binkert.org    Source(cc_file)
9907756SAli.Saidi@ARM.com
9918596Ssteve.reinhardt@amd.com    hh_file = File('enums/%s.hh' % name)
9924762Snate@binkert.org    env.Command(hh_file, Value(name),
9934762Snate@binkert.org                MakeAction(createEnumDecls, Transform("ENUMDECL")))
99411988Sandreas.sandberg@arm.com    env.Depends(hh_file, depends + extra_deps)
99511988Sandreas.sandberg@arm.com
99611988Sandreas.sandberg@arm.com# Generate SimObject Python bindings wrapper files
99711988Sandreas.sandberg@arm.comif env['USE_PYTHON']:
99811988Sandreas.sandberg@arm.com    for name,simobj in sorted(sim_objects.iteritems()):
99911988Sandreas.sandberg@arm.com        py_source = PySource.modules[simobj.__module__]
100011988Sandreas.sandberg@arm.com        extra_deps = [ py_source.tnode ]
100111988Sandreas.sandberg@arm.com        cc_file = File('python/_m5/param_%s.cc' % name)
100211988Sandreas.sandberg@arm.com        env.Command(cc_file, Value(name),
100311988Sandreas.sandberg@arm.com                    MakeAction(createSimObjectPyBindWrapper,
100411988Sandreas.sandberg@arm.com                               Transform("SO PyBind")))
10054382Sbinkertn@umich.edu        env.Depends(cc_file, depends + extra_deps)
10069396Sandreas.hansson@arm.com        Source(cc_file)
10079396Sandreas.hansson@arm.com
10089396Sandreas.hansson@arm.com# Build all protocol buffers if we have got protoc and protobuf available
10099396Sandreas.hansson@arm.comif env['HAVE_PROTOBUF']:
10109396Sandreas.hansson@arm.com    for proto in ProtoBuf.all:
10119396Sandreas.hansson@arm.com        # Use both the source and header as the target, and the .proto
10129396Sandreas.hansson@arm.com        # file as the source. When executing the protoc compiler, also
10139396Sandreas.hansson@arm.com        # specify the proto_path to avoid having the generated files
10149396Sandreas.hansson@arm.com        # include the path.
10159396Sandreas.hansson@arm.com        env.Command([proto.cc_file, proto.hh_file], proto.tnode,
10169396Sandreas.hansson@arm.com                    MakeAction('$PROTOC --cpp_out ${TARGET.dir} '
10179396Sandreas.hansson@arm.com                               '--proto_path ${SOURCE.dir} $SOURCE',
10189396Sandreas.hansson@arm.com                               Transform("PROTOC")))
101912302Sgabeblack@google.com
10209396Sandreas.hansson@arm.com        # Add the C++ source file
102112563Sgabeblack@google.com        Source(proto.cc_file, tags=proto.tags)
10229396Sandreas.hansson@arm.comelif ProtoBuf.all:
10239396Sandreas.hansson@arm.com    print('Got protobuf to build, but lacks support!')
10248232Snate@binkert.org    Exit(1)
10258232Snate@binkert.org
10268232Snate@binkert.org#
10278232Snate@binkert.org# Handle debug flags
10288232Snate@binkert.org#
10296229Snate@binkert.orgdef makeDebugFlagCC(target, source, env):
103010455SCurtis.Dunham@arm.com    assert(len(target) == 1 and len(source) == 1)
10316229Snate@binkert.org
103210455SCurtis.Dunham@arm.com    code = code_formatter()
103310455SCurtis.Dunham@arm.com
103410455SCurtis.Dunham@arm.com    # delay definition of CompoundFlags until after all the definition
10355517Snate@binkert.org    # of all constituent SimpleFlags
10365517Snate@binkert.org    comp_code = code_formatter()
10377673Snate@binkert.org
10385517Snate@binkert.org    # file header
103910455SCurtis.Dunham@arm.com    code('''
10405517Snate@binkert.org/*
10415517Snate@binkert.org * DO NOT EDIT THIS FILE! Automatically generated by SCons.
10428232Snate@binkert.org */
104310455SCurtis.Dunham@arm.com
104410455SCurtis.Dunham@arm.com#include "base/debug.hh"
104510455SCurtis.Dunham@arm.com
10467673Snate@binkert.orgnamespace Debug {
10477673Snate@binkert.org
104810455SCurtis.Dunham@arm.com''')
104910455SCurtis.Dunham@arm.com
105010455SCurtis.Dunham@arm.com    for name, flag in sorted(source[0].read().iteritems()):
10515517Snate@binkert.org        n, compound, desc = flag
105210455SCurtis.Dunham@arm.com        assert n == name
105310455SCurtis.Dunham@arm.com
105410455SCurtis.Dunham@arm.com        if not compound:
105510455SCurtis.Dunham@arm.com            code('SimpleFlag $name("$name", "$desc");')
105610455SCurtis.Dunham@arm.com        else:
105710455SCurtis.Dunham@arm.com            comp_code('CompoundFlag $name("$name", "$desc",')
105810455SCurtis.Dunham@arm.com            comp_code.indent()
105910455SCurtis.Dunham@arm.com            last = len(compound) - 1
106010685Sandreas.hansson@arm.com            for i,flag in enumerate(compound):
106110455SCurtis.Dunham@arm.com                if i != last:
106210685Sandreas.hansson@arm.com                    comp_code('&$flag,')
106310455SCurtis.Dunham@arm.com                else:
10645517Snate@binkert.org                    comp_code('&$flag);')
106510455SCurtis.Dunham@arm.com            comp_code.dedent()
10668232Snate@binkert.org
10678232Snate@binkert.org    code.append(comp_code)
10685517Snate@binkert.org    code()
10697673Snate@binkert.org    code('} // namespace Debug')
10705517Snate@binkert.org
10718232Snate@binkert.org    code.write(str(target[0]))
10728232Snate@binkert.org
10735517Snate@binkert.orgdef makeDebugFlagHH(target, source, env):
10748232Snate@binkert.org    assert(len(target) == 1 and len(source) == 1)
10758232Snate@binkert.org
10768232Snate@binkert.org    val = eval(source[0].get_contents())
10777673Snate@binkert.org    name, compound, desc = val
10785517Snate@binkert.org
10795517Snate@binkert.org    code = code_formatter()
10807673Snate@binkert.org
10815517Snate@binkert.org    # file header boilerplate
108210455SCurtis.Dunham@arm.com    code('''\
10835517Snate@binkert.org/*
10845517Snate@binkert.org * DO NOT EDIT THIS FILE! Automatically generated by SCons.
10858232Snate@binkert.org */
10868232Snate@binkert.org
10875517Snate@binkert.org#ifndef __DEBUG_${name}_HH__
10888232Snate@binkert.org#define __DEBUG_${name}_HH__
10898232Snate@binkert.org
10905517Snate@binkert.orgnamespace Debug {
10918232Snate@binkert.org''')
10928232Snate@binkert.org
10938232Snate@binkert.org    if compound:
10945517Snate@binkert.org        code('class CompoundFlag;')
10958232Snate@binkert.org    code('class SimpleFlag;')
10968232Snate@binkert.org
10978232Snate@binkert.org    if compound:
10988232Snate@binkert.org        code('extern CompoundFlag $name;')
10998232Snate@binkert.org        for flag in compound:
11008232Snate@binkert.org            code('extern SimpleFlag $flag;')
11015517Snate@binkert.org    else:
11028232Snate@binkert.org        code('extern SimpleFlag $name;')
11038232Snate@binkert.org
11045517Snate@binkert.org    code('''
11058232Snate@binkert.org}
11067673Snate@binkert.org
11075517Snate@binkert.org#endif // __DEBUG_${name}_HH__
11087673Snate@binkert.org''')
11095517Snate@binkert.org
11108232Snate@binkert.org    code.write(str(target[0]))
11118232Snate@binkert.org
11128232Snate@binkert.orgfor name,flag in sorted(debug_flags.iteritems()):
11135192Ssaidi@eecs.umich.edu    n, compound, desc = flag
111410454SCurtis.Dunham@arm.com    assert n == name
111510454SCurtis.Dunham@arm.com
11168232Snate@binkert.org    hh_file = 'debug/%s.hh' % name
111710455SCurtis.Dunham@arm.com    env.Command(hh_file, Value(flag),
111810455SCurtis.Dunham@arm.com                MakeAction(makeDebugFlagHH, Transform("TRACING", 0)))
111910455SCurtis.Dunham@arm.com
112010455SCurtis.Dunham@arm.comenv.Command('debug/flags.cc', Value(debug_flags),
11215192Ssaidi@eecs.umich.edu            MakeAction(makeDebugFlagCC, Transform("TRACING", 0)))
112211077SCurtis.Dunham@arm.comSource('debug/flags.cc')
112311330SCurtis.Dunham@arm.com
112411077SCurtis.Dunham@arm.com# version tags
112511077SCurtis.Dunham@arm.comtags = \
112611077SCurtis.Dunham@arm.comenv.Command('sim/tags.cc', None,
112711330SCurtis.Dunham@arm.com            MakeAction('util/cpt_upgrader.py --get-cc-file > $TARGET',
112811077SCurtis.Dunham@arm.com                       Transform("VER TAGS")))
11297674Snate@binkert.orgenv.AlwaysBuild(tags)
11305522Snate@binkert.org
11315522Snate@binkert.org# Build a small helper that marshals the Python code using the same
11327674Snate@binkert.org# version of Python as gem5. This is in an unorthodox location to
11337674Snate@binkert.org# avoid building it for every variant.
11347674Snate@binkert.orgpy_marshal = env.Program('python/marshal.cc')[0]
11357674Snate@binkert.org
11367674Snate@binkert.org# Embed python files.  All .py files that have been indicated by a
11377674Snate@binkert.org# PySource() call in a SConscript need to be embedded into the M5
11387674Snate@binkert.org# library.  To do that, we compile the file to byte code, marshal the
11397674Snate@binkert.org# byte code, compress it, and then generate a c++ file that
11405522Snate@binkert.org# inserts the result into an array.
11415522Snate@binkert.orgdef embedPyFile(target, source, env):
11425522Snate@binkert.org    def c_str(string):
11435517Snate@binkert.org        if string is None:
11445522Snate@binkert.org            return "0"
11455517Snate@binkert.org        return '"%s"' % string
11466143Snate@binkert.org
11476727Ssteve.reinhardt@amd.com    '''Action function to compile a .py into a code object, marshal it,
11485522Snate@binkert.org    compress it, and stick it into an asm file so the code appears as
11495522Snate@binkert.org    just bytes with a label in the data section. The action takes two
11505522Snate@binkert.org    sources:
11517674Snate@binkert.org
11525517Snate@binkert.org    source[0]: Binary used to marshal Python sources
11537673Snate@binkert.org    source[1]: Python script to marshal
11547673Snate@binkert.org    '''
11557674Snate@binkert.org
11567673Snate@binkert.org    import subprocess
11577674Snate@binkert.org
11587674Snate@binkert.org    marshalled = subprocess.check_output([source[0].abspath, str(source[1])])
11597674Snate@binkert.org
116013576Sciro.santilli@arm.com    compressed = zlib.compress(marshalled)
116113576Sciro.santilli@arm.com    data = compressed
116211308Santhony.gutierrez@amd.com    pysource = PySource.tnodes[source[1]]
11637673Snate@binkert.org    sym = pysource.symname
11647674Snate@binkert.org
11657674Snate@binkert.org    code = code_formatter()
11667674Snate@binkert.org    code('''\
11677674Snate@binkert.org#include "sim/init.hh"
11687674Snate@binkert.org
11697674Snate@binkert.orgnamespace {
11707674Snate@binkert.org
11717674Snate@binkert.org''')
11727811Ssteve.reinhardt@amd.com    blobToCpp(data, 'data_' + sym, code)
11737674Snate@binkert.org    code('''\
11747673Snate@binkert.org
11755522Snate@binkert.org
11766143Snate@binkert.orgEmbeddedPython embedded_${sym}(
117710453SAndrew.Bardsley@arm.com    ${{c_str(pysource.arcname)}},
11787816Ssteve.reinhardt@amd.com    ${{c_str(pysource.abspath)}},
117912302Sgabeblack@google.com    ${{c_str(pysource.modpath)}},
11804382Sbinkertn@umich.edu    data_${sym},
11814382Sbinkertn@umich.edu    ${{len(data)}},
11824382Sbinkertn@umich.edu    ${{len(marshalled)}});
11834382Sbinkertn@umich.edu
11844382Sbinkertn@umich.edu} // anonymous namespace
11854382Sbinkertn@umich.edu''')
11864382Sbinkertn@umich.edu    code.write(str(target[0]))
11874382Sbinkertn@umich.edu
118812302Sgabeblack@google.comfor source in PySource.all:
11894382Sbinkertn@umich.edu    env.Command(source.cpp, [ py_marshal, source.tnode ],
119012797Sgabeblack@google.com                MakeAction(embedPyFile, Transform("EMBED PY")))
119112797Sgabeblack@google.com    Source(source.cpp, tags=source.tags, add_tags='python')
11922655Sstever@eecs.umich.edu
11932655Sstever@eecs.umich.edu########################################################################
11942655Sstever@eecs.umich.edu#
11952655Sstever@eecs.umich.edu# Define binaries.  Each different build type (debug, opt, etc.) gets
119612063Sgabeblack@google.com# a slightly different build environment.
11975601Snate@binkert.org#
11985601Snate@binkert.org
119912222Sgabeblack@google.com# List of constructed environments to pass back to SConstruct
120012222Sgabeblack@google.comdate_source = Source('base/date.cc', tags=[])
12015522Snate@binkert.org
12025863Snate@binkert.orggem5_binary = Gem5('gem5')
12035601Snate@binkert.org
12045601Snate@binkert.org# Function to create a new build environment as clone of current
12055601Snate@binkert.org# environment 'env' with modified object suffix and optional stripped
120612302Sgabeblack@google.com# binary.  Additional keyword arguments are appended to corresponding
120710453SAndrew.Bardsley@arm.com# build environment vars.
120811988Sandreas.sandberg@arm.comdef makeEnv(env, label, objsfx, strip=False, disable_partial=False, **kwargs):
120911988Sandreas.sandberg@arm.com    # SCons doesn't know to append a library suffix when there is a '.' in the
121010453SAndrew.Bardsley@arm.com    # name.  Use '_' instead.
121112302Sgabeblack@google.com    libname = 'gem5_' + label
121210453SAndrew.Bardsley@arm.com    secondary_exename = 'm5.' + label
121311983Sgabeblack@google.com
121411983Sgabeblack@google.com    new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's')
121512302Sgabeblack@google.com    new_env.Label = label
121612302Sgabeblack@google.com    new_env.Append(**kwargs)
121712362Sgabeblack@google.com
121812362Sgabeblack@google.com    lib_sources = Source.all.with_tag('gem5 lib')
121911983Sgabeblack@google.com
122012302Sgabeblack@google.com    # Without Python, leave out all Python content from the library
122112302Sgabeblack@google.com    # builds.  The option doesn't affect gem5 built as a program
122211983Sgabeblack@google.com    if GetOption('without_python'):
122311983Sgabeblack@google.com        lib_sources = lib_sources.without_tag('python')
122411983Sgabeblack@google.com
122512362Sgabeblack@google.com    static_objs = []
122612362Sgabeblack@google.com    shared_objs = []
122712310Sgabeblack@google.com
122812063Sgabeblack@google.com    for s in lib_sources.with_tag(Source.ungrouped_tag):
122912063Sgabeblack@google.com        static_objs.append(s.static(new_env))
123012063Sgabeblack@google.com        shared_objs.append(s.shared(new_env))
123112310Sgabeblack@google.com
123212310Sgabeblack@google.com    for group in Source.source_groups:
123312063Sgabeblack@google.com        srcs = lib_sources.with_tag(Source.link_group_tag(group))
123412063Sgabeblack@google.com        if not srcs:
123511983Sgabeblack@google.com            continue
123611983Sgabeblack@google.com
123711983Sgabeblack@google.com        group_static = [ s.static(new_env) for s in srcs ]
123812310Sgabeblack@google.com        group_shared = [ s.shared(new_env) for s in srcs ]
123912310Sgabeblack@google.com
124011983Sgabeblack@google.com        # If partial linking is disabled, add these sources to the build
124111983Sgabeblack@google.com        # directly, and short circuit this loop.
124211983Sgabeblack@google.com        if disable_partial:
124311983Sgabeblack@google.com            static_objs.extend(group_static)
124412310Sgabeblack@google.com            shared_objs.extend(group_shared)
124512310Sgabeblack@google.com            continue
12466143Snate@binkert.org
124712362Sgabeblack@google.com        # Set up the static partially linked objects.
124812306Sgabeblack@google.com        file_name = new_env.subst("${OBJPREFIX}lib${OBJSUFFIX}.partial")
124912310Sgabeblack@google.com        target = File(joinpath(group, file_name))
125010453SAndrew.Bardsley@arm.com        partial = env.PartialStatic(target=target, source=group_static)
125112362Sgabeblack@google.com        static_objs.extend(partial)
125212306Sgabeblack@google.com
125312310Sgabeblack@google.com        # Set up the shared partially linked objects.
12545554Snate@binkert.org        file_name = new_env.subst("${SHOBJPREFIX}lib${SHOBJSUFFIX}.partial")
125512797Sgabeblack@google.com        target = File(joinpath(group, file_name))
125612797Sgabeblack@google.com        partial = env.PartialShared(target=target, source=group_shared)
12575522Snate@binkert.org        shared_objs.extend(partial)
12585522Snate@binkert.org
12595797Snate@binkert.org    static_date = date_source.static(new_env)
12605797Snate@binkert.org    new_env.Depends(static_date, static_objs)
12615522Snate@binkert.org    static_objs.extend(static_date)
126212797Sgabeblack@google.com
126312797Sgabeblack@google.com    shared_date = date_source.shared(new_env)
126412797Sgabeblack@google.com    new_env.Depends(shared_date, shared_objs)
126512797Sgabeblack@google.com    shared_objs.extend(shared_date)
126612797Sgabeblack@google.com
12678233Snate@binkert.org    main_objs = [ s.static(new_env) for s in Source.all.with_tag('main') ]
126812797Sgabeblack@google.com
126912797Sgabeblack@google.com    # First make a library of everything but main() so other programs can
12708235Snate@binkert.org    # link against m5.
127112797Sgabeblack@google.com    static_lib = new_env.StaticLibrary(libname, static_objs)
127212797Sgabeblack@google.com    shared_lib = new_env.SharedLibrary(libname, shared_objs)
127312797Sgabeblack@google.com
127412370Sgabeblack@google.com    # Keep track of the object files generated so far so Executables can
127512797Sgabeblack@google.com    # include them.
127612797Sgabeblack@google.com    new_env['STATIC_OBJS'] = static_objs
127712313Sgabeblack@google.com    new_env['SHARED_OBJS'] = shared_objs
127812797Sgabeblack@google.com    new_env['MAIN_OBJS'] = main_objs
12796143Snate@binkert.org
128012797Sgabeblack@google.com    new_env['STATIC_LIB'] = static_lib
12818334Snate@binkert.org    new_env['SHARED_LIB'] = shared_lib
12828334Snate@binkert.org
128311993Sgabeblack@google.com    # Record some settings for building Executables.
128411993Sgabeblack@google.com    new_env['EXE_SUFFIX'] = label
128512223Sgabeblack@google.com    new_env['STRIP_EXES'] = strip
128611993Sgabeblack@google.com
12872655Sstever@eecs.umich.edu    for cls in ExecutableMeta.all:
12889225Sandreas.hansson@arm.com        cls.declare_all(new_env)
12899225Sandreas.hansson@arm.com
12909226Sandreas.hansson@arm.com    new_env.M5Binary = File(gem5_binary.path(new_env))
12919226Sandreas.hansson@arm.com
12929225Sandreas.hansson@arm.com    new_env.Command(secondary_exename, new_env.M5Binary,
12939226Sandreas.hansson@arm.com            MakeAction('ln $SOURCE $TARGET', Transform("HARDLINK")))
12949226Sandreas.hansson@arm.com
12959226Sandreas.hansson@arm.com    # Set up regression tests.
12969226Sandreas.hansson@arm.com    SConscript(os.path.join(env.root.abspath, 'tests', 'SConscript'),
12979226Sandreas.hansson@arm.com               variant_dir=Dir('tests').Dir(new_env.Label),
12989226Sandreas.hansson@arm.com               exports={ 'env' : new_env }, duplicate=False)
12999225Sandreas.hansson@arm.com
13009227Sandreas.hansson@arm.com# Start out with the compiler flags common to all compilers,
13019227Sandreas.hansson@arm.com# i.e. they all use -g for opt and -g -pg for prof
13029227Sandreas.hansson@arm.comccflags = {'debug' : [], 'opt' : ['-g'], 'fast' : [], 'prof' : ['-g', '-pg'],
13039227Sandreas.hansson@arm.com           'perf' : ['-g']}
13048946Sandreas.hansson@arm.com
13053918Ssaidi@eecs.umich.edu# Start out with the linker flags common to all linkers, i.e. -pg for
13069225Sandreas.hansson@arm.com# prof, and -lprofiler for perf. The -lprofile flag is surrounded by
13073918Ssaidi@eecs.umich.edu# no-as-needed and as-needed as the binutils linker is too clever and
13089225Sandreas.hansson@arm.com# simply doesn't link to the library otherwise.
13099225Sandreas.hansson@arm.comldflags = {'debug' : [], 'opt' : [], 'fast' : [], 'prof' : ['-pg'],
13109227Sandreas.hansson@arm.com           'perf' : ['-Wl,--no-as-needed', '-lprofiler', '-Wl,--as-needed']}
13119227Sandreas.hansson@arm.com
13129227Sandreas.hansson@arm.com# For Link Time Optimization, the optimisation flags used to compile
13139226Sandreas.hansson@arm.com# individual files are decoupled from those used at link time
13149225Sandreas.hansson@arm.com# (i.e. you can compile with -O3 and perform LTO with -O0), so we need
13159227Sandreas.hansson@arm.com# to also update the linker flags based on the target.
13169227Sandreas.hansson@arm.comif env['GCC']:
13179227Sandreas.hansson@arm.com    if sys.platform == 'sunos5':
13189227Sandreas.hansson@arm.com        ccflags['debug'] += ['-gstabs+']
13198946Sandreas.hansson@arm.com    else:
13209225Sandreas.hansson@arm.com        ccflags['debug'] += ['-ggdb3']
13219226Sandreas.hansson@arm.com    ldflags['debug'] += ['-O0']
13229226Sandreas.hansson@arm.com    # opt, fast, prof and perf all share the same cc flags, also add
13239226Sandreas.hansson@arm.com    # the optimization to the ldflags as LTO defers the optimization
13243515Ssaidi@eecs.umich.edu    # to link time
132512563Sgabeblack@google.com    for target in ['opt', 'fast', 'prof', 'perf']:
13264762Snate@binkert.org        ccflags[target] += ['-O3']
13273515Ssaidi@eecs.umich.edu        ldflags[target] += ['-O3']
13288881Smarc.orr@gmail.com
13298881Smarc.orr@gmail.com    ccflags['fast'] += env['LTO_CCFLAGS']
13308881Smarc.orr@gmail.com    ldflags['fast'] += env['LTO_LDFLAGS']
13318881Smarc.orr@gmail.comelif env['CLANG']:
13328881Smarc.orr@gmail.com    ccflags['debug'] += ['-g', '-O0']
13339226Sandreas.hansson@arm.com    # opt, fast, prof and perf all share the same cc flags
13349226Sandreas.hansson@arm.com    for target in ['opt', 'fast', 'prof', 'perf']:
13359226Sandreas.hansson@arm.com        ccflags[target] += ['-O3']
13368881Smarc.orr@gmail.comelse:
13378881Smarc.orr@gmail.com    print('Unknown compiler, please fix compiler options')
13388881Smarc.orr@gmail.com    Exit(1)
13398881Smarc.orr@gmail.com
13408881Smarc.orr@gmail.com
13418881Smarc.orr@gmail.com# To speed things up, we only instantiate the build environments we
13428881Smarc.orr@gmail.com# need.  We try to identify the needed environment for each target; if
13438881Smarc.orr@gmail.com# we can't, we fall back on instantiating all the environments just to
13448881Smarc.orr@gmail.com# be safe.
13458881Smarc.orr@gmail.comtarget_types = ['debug', 'opt', 'fast', 'prof', 'perf']
13468881Smarc.orr@gmail.comobj2target = {'do': 'debug', 'o': 'opt', 'fo': 'fast', 'po': 'prof',
13478881Smarc.orr@gmail.com              'gpo' : 'perf'}
13488881Smarc.orr@gmail.com
13498881Smarc.orr@gmail.comdef identifyTarget(t):
13508881Smarc.orr@gmail.com    ext = t.split('.')[-1]
13518881Smarc.orr@gmail.com    if ext in target_types:
135213508Snikos.nikoleris@arm.com        return ext
135313508Snikos.nikoleris@arm.com    if ext in obj2target:
135413508Snikos.nikoleris@arm.com        return obj2target[ext]
135513508Snikos.nikoleris@arm.com    match = re.search(r'/tests/([^/]+)/', t)
135613508Snikos.nikoleris@arm.com    if match and match.group(1) in target_types:
135713508Snikos.nikoleris@arm.com        return match.group(1)
135813508Snikos.nikoleris@arm.com    return 'all'
135913508Snikos.nikoleris@arm.com
136013508Snikos.nikoleris@arm.comneeded_envs = [identifyTarget(target) for target in BUILD_TARGETS]
136112222Sgabeblack@google.comif 'all' in needed_envs:
136212222Sgabeblack@google.com    needed_envs += target_types
136312222Sgabeblack@google.com
136412222Sgabeblack@google.comdisable_partial = False
136512222Sgabeblack@google.comif env['PLATFORM'] == 'darwin':
136613508Snikos.nikoleris@arm.com    # Up until Apple LLVM version 10.0.0 (clang-1000.11.45.5), partial
136713508Snikos.nikoleris@arm.com    # linked objects do not expose symbols that are marked with the
1368955SN/A    # hidden visibility and consequently building gem5 on Mac OS
136912222Sgabeblack@google.com    # fails. As a workaround, we disable partial linking, however, we
137012222Sgabeblack@google.com    # may want to revisit in the future.
137112222Sgabeblack@google.com    disable_partial = True
137212222Sgabeblack@google.com
137312222Sgabeblack@google.com# Debug binary
137413508Snikos.nikoleris@arm.comif 'debug' in needed_envs:
137513508Snikos.nikoleris@arm.com    makeEnv(env, 'debug', '.do',
1376955SN/A            CCFLAGS = Split(ccflags['debug']),
137712222Sgabeblack@google.com            CPPDEFINES = ['DEBUG', 'TRACING_ON=1'],
137812222Sgabeblack@google.com            LINKFLAGS = Split(ldflags['debug']),
137913508Snikos.nikoleris@arm.com            disable_partial=disable_partial)
138012222Sgabeblack@google.com
138112222Sgabeblack@google.com# Optimized binary
138212222Sgabeblack@google.comif 'opt' in needed_envs:
138312222Sgabeblack@google.com    makeEnv(env, 'opt', '.o',
138412222Sgabeblack@google.com            CCFLAGS = Split(ccflags['opt']),
138512222Sgabeblack@google.com            CPPDEFINES = ['TRACING_ON=1'],
138612222Sgabeblack@google.com            LINKFLAGS = Split(ldflags['opt']),
13871869SN/A            disable_partial=disable_partial)
138812222Sgabeblack@google.com
138912222Sgabeblack@google.com# "Fast" binary
139012222Sgabeblack@google.comif 'fast' in needed_envs:
139112222Sgabeblack@google.com    disable_partial = disable_partial or \
139212222Sgabeblack@google.com            (env.get('BROKEN_INCREMENTAL_LTO', False) and \
139313508Snikos.nikoleris@arm.com            GetOption('force_lto'))
139413508Snikos.nikoleris@arm.com    makeEnv(env, 'fast', '.fo', strip = True,
13959226Sandreas.hansson@arm.com            CCFLAGS = Split(ccflags['fast']),
139612222Sgabeblack@google.com            CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
139712222Sgabeblack@google.com            LINKFLAGS = Split(ldflags['fast']),
139812222Sgabeblack@google.com            disable_partial=disable_partial)
139912222Sgabeblack@google.com
140012222Sgabeblack@google.com# Profiled binary using gprof
140113508Snikos.nikoleris@arm.comif 'prof' in needed_envs:
140213508Snikos.nikoleris@arm.com    makeEnv(env, 'prof', '.po',
1403            CCFLAGS = Split(ccflags['prof']),
1404            CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
1405            LINKFLAGS = Split(ldflags['prof']),
1406            disable_partial=disable_partial)
1407
1408# Profiled binary using google-pprof
1409if 'perf' in needed_envs:
1410    makeEnv(env, 'perf', '.gpo',
1411            CCFLAGS = Split(ccflags['perf']),
1412            CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
1413            LINKFLAGS = Split(ldflags['perf']),
1414            disable_partial=disable_partial)
1415