SConscript revision 12246
1955SN/A# -*- mode:python -*-
2955SN/A
313576Sciro.santilli@arm.com# Copyright (c) 2004-2005 The Regents of The University of Michigan
413576Sciro.santilli@arm.com# All rights reserved.
513576Sciro.santilli@arm.com#
613576Sciro.santilli@arm.com# Redistribution and use in source and binary forms, with or without
713576Sciro.santilli@arm.com# modification, are permitted provided that the following conditions are
813576Sciro.santilli@arm.com# met: redistributions of source code must retain the above copyright
913576Sciro.santilli@arm.com# notice, this list of conditions and the following disclaimer;
1013576Sciro.santilli@arm.com# redistributions in binary form must reproduce the above copyright
1113576Sciro.santilli@arm.com# notice, this list of conditions and the following disclaimer in the
1213576Sciro.santilli@arm.com# documentation and/or other materials provided with the distribution;
1313576Sciro.santilli@arm.com# neither the name of the copyright holders nor the names of its
141762SN/A# contributors may be used to endorse or promote products derived from
15955SN/A# this software without specific prior written permission.
16955SN/A#
17955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28955SN/A#
29955SN/A# Authors: Nathan Binkert
30955SN/A
31955SN/Aimport array
32955SN/Aimport bisect
33955SN/Aimport imp
34955SN/Aimport marshal
35955SN/Aimport os
36955SN/Aimport re
37955SN/Aimport subprocess
38955SN/Aimport sys
392665Ssaidi@eecs.umich.eduimport zlib
404762Snate@binkert.org
41955SN/Afrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath
4212563Sgabeblack@google.com
4312563Sgabeblack@google.comimport SCons
445522Snate@binkert.org
456143Snate@binkert.orgfrom gem5_scons import Transform
4612371Sgabeblack@google.com
474762Snate@binkert.org# This file defines how to build a particular configuration of gem5
48955SN/A# based on variable settings in the 'env' build environment.
495522Snate@binkert.org
50955SN/AImport('*')
515522Snate@binkert.org
524202Sbinkertn@umich.edu# Children need to see the environment
535742Snate@binkert.orgExport('env')
54955SN/A
554381Sbinkertn@umich.edubuild_env = [(opt, env[opt]) for opt in export_vars]
564381Sbinkertn@umich.edu
5712246Sgabeblack@google.comfrom m5.util import code_formatter, compareVersions
5812246Sgabeblack@google.com
598334Snate@binkert.org########################################################################
60955SN/A# Code for adding source files of various types
61955SN/A#
624202Sbinkertn@umich.edu# When specifying a source file of some type, a set of guards can be
63955SN/A# specified for that file.  When get() is used to find the files, if
644382Sbinkertn@umich.edu# get specifies a set of filters, only files that match those filters
654382Sbinkertn@umich.edu# will be accepted (unspecified filters on files are assumed to be
664382Sbinkertn@umich.edu# false).  Current filters are:
676654Snate@binkert.org#     main -- specifies the gem5 main() function
685517Snate@binkert.org#     skip_lib -- do not put this file into the gem5 library
698614Sgblack@eecs.umich.edu#     skip_no_python -- do not put this file into a no_python library
707674Snate@binkert.org#       as it embeds compiled Python
716143Snate@binkert.org#     <unittest> -- unit tests use filters based on the unit test name
726143Snate@binkert.org#
736143Snate@binkert.org# A parent can now be specified for a source file and default filter
7412302Sgabeblack@google.com# values will be retrieved recursively from parents (children override
7512302Sgabeblack@google.com# parents).
7612302Sgabeblack@google.com#
7712371Sgabeblack@google.comdef guarded_source_iterator(sources, **guards):
7812371Sgabeblack@google.com    '''Iterate over a set of sources, gated by a set of guards.'''
7912371Sgabeblack@google.com    for src in sources:
8012371Sgabeblack@google.com        for flag,value in guards.iteritems():
8112371Sgabeblack@google.com            # if the flag is found and has a different value, skip
8212371Sgabeblack@google.com            # this file
8312371Sgabeblack@google.com            if src.all_guards.get(flag, False) != value:
8412371Sgabeblack@google.com                break
8512371Sgabeblack@google.com        else:
8612371Sgabeblack@google.com            yield src
8712371Sgabeblack@google.com
8812371Sgabeblack@google.comclass SourceMeta(type):
8912371Sgabeblack@google.com    '''Meta class for source files that keeps track of all files of a
9012371Sgabeblack@google.com    particular type and has a get function for finding all functions
9112371Sgabeblack@google.com    of a certain type that match a set of guards'''
9212371Sgabeblack@google.com    def __init__(cls, name, bases, dict):
9312371Sgabeblack@google.com        super(SourceMeta, cls).__init__(name, bases, dict)
9412371Sgabeblack@google.com        cls.all = []
9512371Sgabeblack@google.com
9612371Sgabeblack@google.com    def get(cls, **guards):
9712371Sgabeblack@google.com        '''Find all files that match the specified guards.  If a source
9812371Sgabeblack@google.com        file does not specify a flag, the default is False'''
9912371Sgabeblack@google.com        for s in guarded_source_iterator(cls.all, **guards):
10012371Sgabeblack@google.com            yield s
10112371Sgabeblack@google.com
10212371Sgabeblack@google.comclass SourceFile(object):
10312371Sgabeblack@google.com    '''Base object that encapsulates the notion of a source file.
10412371Sgabeblack@google.com    This includes, the source node, target node, various manipulations
10512371Sgabeblack@google.com    of those.  A source file also specifies a set of guards which
10612371Sgabeblack@google.com    describing which builds the source file applies to.  A parent can
10712371Sgabeblack@google.com    also be specified to get default guards from'''
10812371Sgabeblack@google.com    __metaclass__ = SourceMeta
10912371Sgabeblack@google.com    def __init__(self, source, parent=None, **guards):
11012371Sgabeblack@google.com        self.guards = guards
11112371Sgabeblack@google.com        self.parent = parent
11212371Sgabeblack@google.com
11312371Sgabeblack@google.com        tnode = source
11412371Sgabeblack@google.com        if not isinstance(source, SCons.Node.FS.File):
11512371Sgabeblack@google.com            tnode = File(source)
11612371Sgabeblack@google.com
11712371Sgabeblack@google.com        self.tnode = tnode
11812371Sgabeblack@google.com        self.snode = tnode.srcnode()
11912371Sgabeblack@google.com
12012371Sgabeblack@google.com        for base in type(self).__mro__:
12112371Sgabeblack@google.com            if issubclass(base, SourceFile):
12212371Sgabeblack@google.com                base.all.append(self)
12312371Sgabeblack@google.com
12412302Sgabeblack@google.com    @property
12512371Sgabeblack@google.com    def filename(self):
12612302Sgabeblack@google.com        return str(self.tnode)
12712371Sgabeblack@google.com
12812302Sgabeblack@google.com    @property
12912302Sgabeblack@google.com    def dirname(self):
13012371Sgabeblack@google.com        return dirname(self.filename)
13112371Sgabeblack@google.com
13212371Sgabeblack@google.com    @property
13312371Sgabeblack@google.com    def basename(self):
13412302Sgabeblack@google.com        return basename(self.filename)
13512371Sgabeblack@google.com
13612371Sgabeblack@google.com    @property
13712371Sgabeblack@google.com    def extname(self):
13812371Sgabeblack@google.com        index = self.basename.rfind('.')
13911983Sgabeblack@google.com        if index <= 0:
1406143Snate@binkert.org            # dot files aren't extensions
1418233Snate@binkert.org            return self.basename, None
14212302Sgabeblack@google.com
1436143Snate@binkert.org        return self.basename[:index], self.basename[index+1:]
1446143Snate@binkert.org
14512302Sgabeblack@google.com    @property
1464762Snate@binkert.org    def all_guards(self):
1476143Snate@binkert.org        '''find all guards for this object getting default values
1488233Snate@binkert.org        recursively from its parents'''
1498233Snate@binkert.org        guards = {}
15012302Sgabeblack@google.com        if self.parent:
15112302Sgabeblack@google.com            guards.update(self.parent.guards)
1526143Snate@binkert.org        guards.update(self.guards)
15312362Sgabeblack@google.com        return guards
15412362Sgabeblack@google.com
15512362Sgabeblack@google.com    def __lt__(self, other): return self.filename < other.filename
15612362Sgabeblack@google.com    def __le__(self, other): return self.filename <= other.filename
15712302Sgabeblack@google.com    def __gt__(self, other): return self.filename > other.filename
15812302Sgabeblack@google.com    def __ge__(self, other): return self.filename >= other.filename
15912302Sgabeblack@google.com    def __eq__(self, other): return self.filename == other.filename
16012302Sgabeblack@google.com    def __ne__(self, other): return self.filename != other.filename
16112302Sgabeblack@google.com
16212363Sgabeblack@google.com    @staticmethod
16312363Sgabeblack@google.com    def done():
16412363Sgabeblack@google.com        def disabled(cls, name, *ignored):
16512363Sgabeblack@google.com            raise RuntimeError("Additional SourceFile '%s'" % name,\
16612302Sgabeblack@google.com                  "declared, but targets deps are already fixed.")
16712363Sgabeblack@google.com        SourceFile.__init__ = disabled
16812363Sgabeblack@google.com
16912363Sgabeblack@google.com
17012363Sgabeblack@google.comclass Source(SourceFile):
17112363Sgabeblack@google.com    current_group = None
1728233Snate@binkert.org    source_groups = { None : [] }
1736143Snate@binkert.org
1746143Snate@binkert.org    @classmethod
1756143Snate@binkert.org    def set_group(cls, group):
1766143Snate@binkert.org        if not group in Source.source_groups:
1776143Snate@binkert.org            Source.source_groups[group] = []
1786143Snate@binkert.org        Source.current_group = group
1796143Snate@binkert.org
1806143Snate@binkert.org    '''Add a c/c++ source file to the build'''
1816143Snate@binkert.org    def __init__(self, source, Werror=True, **guards):
1827065Snate@binkert.org        '''specify the source file, and any guards'''
1836143Snate@binkert.org        super(Source, self).__init__(source, **guards)
18412362Sgabeblack@google.com
18512362Sgabeblack@google.com        self.Werror = Werror
18612362Sgabeblack@google.com
18712362Sgabeblack@google.com        Source.source_groups[Source.current_group].append(self)
18812362Sgabeblack@google.com
18912362Sgabeblack@google.comclass PySource(SourceFile):
19012362Sgabeblack@google.com    '''Add a python source file to the named package'''
19112362Sgabeblack@google.com    invalid_sym_char = re.compile('[^A-z0-9_]')
19212362Sgabeblack@google.com    modules = {}
19312362Sgabeblack@google.com    tnodes = {}
19412362Sgabeblack@google.com    symnames = {}
19512362Sgabeblack@google.com
1968233Snate@binkert.org    def __init__(self, package, source, **guards):
1978233Snate@binkert.org        '''specify the python package, the source file, and any guards'''
1988233Snate@binkert.org        super(PySource, self).__init__(source, **guards)
1998233Snate@binkert.org
2008233Snate@binkert.org        modname,ext = self.extname
2018233Snate@binkert.org        assert ext == 'py'
2028233Snate@binkert.org
2038233Snate@binkert.org        if package:
2048233Snate@binkert.org            path = package.split('.')
2058233Snate@binkert.org        else:
2068233Snate@binkert.org            path = []
2078233Snate@binkert.org
2088233Snate@binkert.org        modpath = path[:]
2098233Snate@binkert.org        if modname != '__init__':
2108233Snate@binkert.org            modpath += [ modname ]
2118233Snate@binkert.org        modpath = '.'.join(modpath)
2128233Snate@binkert.org
2138233Snate@binkert.org        arcpath = path + [ self.basename ]
2148233Snate@binkert.org        abspath = self.snode.abspath
2158233Snate@binkert.org        if not exists(abspath):
2168233Snate@binkert.org            abspath = self.tnode.abspath
2176143Snate@binkert.org
2186143Snate@binkert.org        self.package = package
2196143Snate@binkert.org        self.modname = modname
2206143Snate@binkert.org        self.modpath = modpath
2216143Snate@binkert.org        self.arcname = joinpath(*arcpath)
2226143Snate@binkert.org        self.abspath = abspath
2239982Satgutier@umich.edu        self.compiled = File(self.filename + 'c')
22413576Sciro.santilli@arm.com        self.cpp = File(self.filename + '.cc')
22513576Sciro.santilli@arm.com        self.symname = PySource.invalid_sym_char.sub('_', modpath)
22613576Sciro.santilli@arm.com
22713576Sciro.santilli@arm.com        PySource.modules[modpath] = self
22813576Sciro.santilli@arm.com        PySource.tnodes[self.tnode] = self
22913576Sciro.santilli@arm.com        PySource.symnames[self.symname] = self
23013576Sciro.santilli@arm.com
23113576Sciro.santilli@arm.comclass SimObject(PySource):
23213576Sciro.santilli@arm.com    '''Add a SimObject python file as a python source object and add
23313576Sciro.santilli@arm.com    it to a list of sim object modules'''
23413576Sciro.santilli@arm.com
23513576Sciro.santilli@arm.com    fixed = False
23613576Sciro.santilli@arm.com    modnames = []
23713576Sciro.santilli@arm.com
23813576Sciro.santilli@arm.com    def __init__(self, source, **guards):
23913576Sciro.santilli@arm.com        '''Specify the source file and any guards (automatically in
24013576Sciro.santilli@arm.com        the m5.objects package)'''
24113576Sciro.santilli@arm.com        super(SimObject, self).__init__('m5.objects', source, **guards)
24213576Sciro.santilli@arm.com        if self.fixed:
24313576Sciro.santilli@arm.com            raise AttributeError, "Too late to call SimObject now."
24413576Sciro.santilli@arm.com
24513576Sciro.santilli@arm.com        bisect.insort_right(SimObject.modnames, self.modname)
24613576Sciro.santilli@arm.com
24713576Sciro.santilli@arm.comclass ProtoBuf(SourceFile):
24813576Sciro.santilli@arm.com    '''Add a Protocol Buffer to build'''
24913576Sciro.santilli@arm.com
25013576Sciro.santilli@arm.com    def __init__(self, source, **guards):
25113576Sciro.santilli@arm.com        '''Specify the source file, and any guards'''
25213576Sciro.santilli@arm.com        super(ProtoBuf, self).__init__(source, **guards)
25313576Sciro.santilli@arm.com
25413576Sciro.santilli@arm.com        # Get the file name and the extension
25513576Sciro.santilli@arm.com        modname,ext = self.extname
25613630Sciro.santilli@arm.com        assert ext == 'proto'
25713630Sciro.santilli@arm.com
25813576Sciro.santilli@arm.com        # Currently, we stick to generating the C++ headers, so we
25913576Sciro.santilli@arm.com        # only need to track the source and header.
26013576Sciro.santilli@arm.com        self.cc_file = File(modname + '.pb.cc')
26113576Sciro.santilli@arm.com        self.hh_file = File(modname + '.pb.h')
26213576Sciro.santilli@arm.com
26313576Sciro.santilli@arm.comclass UnitTest(object):
26413576Sciro.santilli@arm.com    '''Create a UnitTest'''
26513576Sciro.santilli@arm.com
26613576Sciro.santilli@arm.com    all = []
26713576Sciro.santilli@arm.com    def __init__(self, target, *sources, **kwargs):
26813576Sciro.santilli@arm.com        '''Specify the target name and any sources.  Sources that are
26913576Sciro.santilli@arm.com        not SourceFiles are evalued with Source().  All files are
27013576Sciro.santilli@arm.com        guarded with a guard of the same name as the UnitTest
27113576Sciro.santilli@arm.com        target.'''
27213576Sciro.santilli@arm.com
27313576Sciro.santilli@arm.com        srcs = []
27413576Sciro.santilli@arm.com        for src in sources:
27513576Sciro.santilli@arm.com            if not isinstance(src, SourceFile):
27613576Sciro.santilli@arm.com                src = Source(src, skip_lib=True)
27713576Sciro.santilli@arm.com            src.guards[target] = True
27813576Sciro.santilli@arm.com            srcs.append(src)
27913576Sciro.santilli@arm.com
28013576Sciro.santilli@arm.com        self.sources = srcs
28113576Sciro.santilli@arm.com        self.target = target
28213576Sciro.santilli@arm.com        self.main = kwargs.get('main', False)
28313576Sciro.santilli@arm.com        UnitTest.all.append(self)
28413576Sciro.santilli@arm.com
28513576Sciro.santilli@arm.com# Children should have access
28613576Sciro.santilli@arm.comExport('Source')
28713576Sciro.santilli@arm.comExport('PySource')
28813576Sciro.santilli@arm.comExport('SimObject')
28913576Sciro.santilli@arm.comExport('ProtoBuf')
29013576Sciro.santilli@arm.comExport('UnitTest')
29113576Sciro.santilli@arm.com
29213576Sciro.santilli@arm.com########################################################################
29313576Sciro.santilli@arm.com#
29413576Sciro.santilli@arm.com# Debug Flags
29513577Sciro.santilli@arm.com#
29613577Sciro.santilli@arm.comdebug_flags = {}
29713577Sciro.santilli@arm.comdef DebugFlag(name, desc=None):
2986143Snate@binkert.org    if name in debug_flags:
29912302Sgabeblack@google.com        raise AttributeError, "Flag %s already specified" % name
30012302Sgabeblack@google.com    debug_flags[name] = (name, (), desc)
30112302Sgabeblack@google.com
30212302Sgabeblack@google.comdef CompoundFlag(name, flags, desc=None):
30312302Sgabeblack@google.com    if name in debug_flags:
30412302Sgabeblack@google.com        raise AttributeError, "Flag %s already specified" % name
30512302Sgabeblack@google.com
30612302Sgabeblack@google.com    compound = tuple(flags)
30711983Sgabeblack@google.com    debug_flags[name] = (name, compound, desc)
30811983Sgabeblack@google.com
30911983Sgabeblack@google.comExport('DebugFlag')
31012302Sgabeblack@google.comExport('CompoundFlag')
31112302Sgabeblack@google.com
31212302Sgabeblack@google.com########################################################################
31312302Sgabeblack@google.com#
31412302Sgabeblack@google.com# Set some compiler variables
31512302Sgabeblack@google.com#
31611983Sgabeblack@google.com
3176143Snate@binkert.org# Include file paths are rooted in this directory.  SCons will
31812305Sgabeblack@google.com# automatically expand '.' to refer to both the source directory and
31912302Sgabeblack@google.com# the corresponding build directory to pick up generated include
32012302Sgabeblack@google.com# files.
32112302Sgabeblack@google.comenv.Append(CPPPATH=Dir('.'))
3226143Snate@binkert.org
3236143Snate@binkert.orgfor extra_dir in extras_dir_list:
3246143Snate@binkert.org    env.Append(CPPPATH=Dir(extra_dir))
3255522Snate@binkert.org
3266143Snate@binkert.org# Workaround for bug in SCons version > 0.97d20071212
3276143Snate@binkert.org# Scons bug id: 2006 gem5 Bug id: 308
3286143Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True):
3299982Satgutier@umich.edu    Dir(root[len(base_dir) + 1:])
33012302Sgabeblack@google.com
33112302Sgabeblack@google.com########################################################################
33212302Sgabeblack@google.com#
3336143Snate@binkert.org# Walk the tree and execute all SConscripts in subdirectories
3346143Snate@binkert.org#
3356143Snate@binkert.org
3366143Snate@binkert.orghere = Dir('.').srcnode().abspath
3375522Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True):
3385522Snate@binkert.org    if root == here:
3395522Snate@binkert.org        # we don't want to recurse back into this SConscript
3405522Snate@binkert.org        continue
3415604Snate@binkert.org
3425604Snate@binkert.org    if 'SConscript' in files:
3436143Snate@binkert.org        build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:])
3446143Snate@binkert.org        Source.set_group(build_dir)
3454762Snate@binkert.org        SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir)
3464762Snate@binkert.org
3476143Snate@binkert.orgfor extra_dir in extras_dir_list:
3486727Ssteve.reinhardt@amd.com    prefix_len = len(dirname(extra_dir)) + 1
3496727Ssteve.reinhardt@amd.com
3506727Ssteve.reinhardt@amd.com    # Also add the corresponding build directory to pick up generated
3514762Snate@binkert.org    # include files.
3526143Snate@binkert.org    env.Append(CPPPATH=Dir(joinpath(env['BUILDDIR'], extra_dir[prefix_len:])))
3536143Snate@binkert.org
3546143Snate@binkert.org    for root, dirs, files in os.walk(extra_dir, topdown=True):
3556143Snate@binkert.org        # if build lives in the extras directory, don't walk down it
3566727Ssteve.reinhardt@amd.com        if 'build' in dirs:
3576143Snate@binkert.org            dirs.remove('build')
3587674Snate@binkert.org
3597674Snate@binkert.org        if 'SConscript' in files:
3605604Snate@binkert.org            build_dir = joinpath(env['BUILDDIR'], root[prefix_len:])
3616143Snate@binkert.org            SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir)
3626143Snate@binkert.org
3636143Snate@binkert.orgfor opt in export_vars:
3644762Snate@binkert.org    env.ConfigFile(opt)
3656143Snate@binkert.org
3664762Snate@binkert.orgdef makeTheISA(source, target, env):
3674762Snate@binkert.org    isas = [ src.get_contents() for src in source ]
3684762Snate@binkert.org    target_isa = env['TARGET_ISA']
3696143Snate@binkert.org    def define(isa):
3706143Snate@binkert.org        return isa.upper() + '_ISA'
3714762Snate@binkert.org
37212302Sgabeblack@google.com    def namespace(isa):
37312302Sgabeblack@google.com        return isa[0].upper() + isa[1:].lower() + 'ISA'
3748233Snate@binkert.org
37512302Sgabeblack@google.com
3766143Snate@binkert.org    code = code_formatter()
3776143Snate@binkert.org    code('''\
3784762Snate@binkert.org#ifndef __CONFIG_THE_ISA_HH__
3796143Snate@binkert.org#define __CONFIG_THE_ISA_HH__
3804762Snate@binkert.org
3819396Sandreas.hansson@arm.com''')
3829396Sandreas.hansson@arm.com
3839396Sandreas.hansson@arm.com    # create defines for the preprocessing and compile-time determination
38412302Sgabeblack@google.com    for i,isa in enumerate(isas):
38512302Sgabeblack@google.com        code('#define $0 $1', define(isa), i + 1)
38612302Sgabeblack@google.com    code()
3879396Sandreas.hansson@arm.com
3889396Sandreas.hansson@arm.com    # create an enum for any run-time determination of the ISA, we
3899396Sandreas.hansson@arm.com    # reuse the same name as the namespaces
3909396Sandreas.hansson@arm.com    code('enum class Arch {')
3919396Sandreas.hansson@arm.com    for i,isa in enumerate(isas):
3929396Sandreas.hansson@arm.com        if i + 1 == len(isas):
3939396Sandreas.hansson@arm.com            code('  $0 = $1', namespace(isa), define(isa))
3949930Sandreas.hansson@arm.com        else:
3959930Sandreas.hansson@arm.com            code('  $0 = $1,', namespace(isa), define(isa))
3969396Sandreas.hansson@arm.com    code('};')
3976143Snate@binkert.org
39812797Sgabeblack@google.com    code('''
39912797Sgabeblack@google.com
40012797Sgabeblack@google.com#define THE_ISA ${{define(target_isa)}}
4018235Snate@binkert.org#define TheISA ${{namespace(target_isa)}}
40212797Sgabeblack@google.com#define THE_ISA_STR "${{target_isa}}"
40312797Sgabeblack@google.com
40412797Sgabeblack@google.com#endif // __CONFIG_THE_ISA_HH__''')
40512797Sgabeblack@google.com
40612797Sgabeblack@google.com    code.write(str(target[0]))
40712797Sgabeblack@google.com
40812797Sgabeblack@google.comenv.Command('config/the_isa.hh', map(Value, all_isa_list),
40912797Sgabeblack@google.com            MakeAction(makeTheISA, Transform("CFG ISA", 0)))
41012797Sgabeblack@google.com
41112797Sgabeblack@google.comdef makeTheGPUISA(source, target, env):
41212797Sgabeblack@google.com    isas = [ src.get_contents() for src in source ]
41312797Sgabeblack@google.com    target_gpu_isa = env['TARGET_GPU_ISA']
41412797Sgabeblack@google.com    def define(isa):
41512797Sgabeblack@google.com        return isa.upper() + '_ISA'
41612797Sgabeblack@google.com
41712757Sgabeblack@google.com    def namespace(isa):
41812757Sgabeblack@google.com        return isa[0].upper() + isa[1:].lower() + 'ISA'
41912797Sgabeblack@google.com
42012797Sgabeblack@google.com
42112797Sgabeblack@google.com    code = code_formatter()
42212757Sgabeblack@google.com    code('''\
42312757Sgabeblack@google.com#ifndef __CONFIG_THE_GPU_ISA_HH__
42412757Sgabeblack@google.com#define __CONFIG_THE_GPU_ISA_HH__
42512757Sgabeblack@google.com
4268235Snate@binkert.org''')
42712302Sgabeblack@google.com
4288235Snate@binkert.org    # create defines for the preprocessing and compile-time determination
4298235Snate@binkert.org    for i,isa in enumerate(isas):
43012757Sgabeblack@google.com        code('#define $0 $1', define(isa), i + 1)
4318235Snate@binkert.org    code()
4328235Snate@binkert.org
4338235Snate@binkert.org    # create an enum for any run-time determination of the ISA, we
43412757Sgabeblack@google.com    # reuse the same name as the namespaces
43512313Sgabeblack@google.com    code('enum class GPUArch {')
43612797Sgabeblack@google.com    for i,isa in enumerate(isas):
43712797Sgabeblack@google.com        if i + 1 == len(isas):
43812797Sgabeblack@google.com            code('  $0 = $1', namespace(isa), define(isa))
43912797Sgabeblack@google.com        else:
44012797Sgabeblack@google.com            code('  $0 = $1,', namespace(isa), define(isa))
44112797Sgabeblack@google.com    code('};')
44212797Sgabeblack@google.com
44312797Sgabeblack@google.com    code('''
44412797Sgabeblack@google.com
44512797Sgabeblack@google.com#define THE_GPU_ISA ${{define(target_gpu_isa)}}
44612797Sgabeblack@google.com#define TheGpuISA ${{namespace(target_gpu_isa)}}
44712797Sgabeblack@google.com#define THE_GPU_ISA_STR "${{target_gpu_isa}}"
44812797Sgabeblack@google.com
44912797Sgabeblack@google.com#endif // __CONFIG_THE_GPU_ISA_HH__''')
45013706Sgabeblack@google.com
45113706Sgabeblack@google.com    code.write(str(target[0]))
45213706Sgabeblack@google.com
45313706Sgabeblack@google.comenv.Command('config/the_gpu_isa.hh', map(Value, all_gpu_isa_list),
45412797Sgabeblack@google.com            MakeAction(makeTheGPUISA, Transform("CFG ISA", 0)))
45512797Sgabeblack@google.com
45612797Sgabeblack@google.com########################################################################
45712797Sgabeblack@google.com#
45812797Sgabeblack@google.com# Prevent any SimObjects from being added after this point, they
45912797Sgabeblack@google.com# should all have been added in the SConscripts above
46012797Sgabeblack@google.com#
46112797Sgabeblack@google.comSimObject.fixed = True
46212797Sgabeblack@google.com
46312797Sgabeblack@google.comclass DictImporter(object):
46412797Sgabeblack@google.com    '''This importer takes a dictionary of arbitrary module names that
46512797Sgabeblack@google.com    map to arbitrary filenames.'''
46612797Sgabeblack@google.com    def __init__(self, modules):
46712797Sgabeblack@google.com        self.modules = modules
46812797Sgabeblack@google.com        self.installed = set()
46912797Sgabeblack@google.com
47012797Sgabeblack@google.com    def __del__(self):
47112797Sgabeblack@google.com        self.unload()
47212797Sgabeblack@google.com
47312797Sgabeblack@google.com    def unload(self):
47412797Sgabeblack@google.com        import sys
47512797Sgabeblack@google.com        for module in self.installed:
47612797Sgabeblack@google.com            del sys.modules[module]
47713656Sgabeblack@google.com        self.installed = set()
47812797Sgabeblack@google.com
47912797Sgabeblack@google.com    def find_module(self, fullname, path):
48012797Sgabeblack@google.com        if fullname == 'm5.defines':
48112797Sgabeblack@google.com            return self
48212797Sgabeblack@google.com
48312797Sgabeblack@google.com        if fullname == 'm5.objects':
48412313Sgabeblack@google.com            return self
48512313Sgabeblack@google.com
48612797Sgabeblack@google.com        if fullname.startswith('_m5'):
48712797Sgabeblack@google.com            return None
48812797Sgabeblack@google.com
48912371Sgabeblack@google.com        source = self.modules.get(fullname, None)
4905584Snate@binkert.org        if source is not None and fullname.startswith('m5.objects'):
49112797Sgabeblack@google.com            return self
49212797Sgabeblack@google.com
49312797Sgabeblack@google.com        return None
49412797Sgabeblack@google.com
49512797Sgabeblack@google.com    def load_module(self, fullname):
49612797Sgabeblack@google.com        mod = imp.new_module(fullname)
49712797Sgabeblack@google.com        sys.modules[fullname] = mod
49812797Sgabeblack@google.com        self.installed.add(fullname)
49912797Sgabeblack@google.com
50012797Sgabeblack@google.com        mod.__loader__ = self
50112797Sgabeblack@google.com        if fullname == 'm5.objects':
50212797Sgabeblack@google.com            mod.__path__ = fullname.split('.')
50312797Sgabeblack@google.com            return mod
50412797Sgabeblack@google.com
50512797Sgabeblack@google.com        if fullname == 'm5.defines':
50612797Sgabeblack@google.com            mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env)
50712797Sgabeblack@google.com            return mod
50812797Sgabeblack@google.com
50912797Sgabeblack@google.com        source = self.modules[fullname]
51012797Sgabeblack@google.com        if source.modname == '__init__':
51112797Sgabeblack@google.com            mod.__path__ = source.modpath
51212797Sgabeblack@google.com        mod.__file__ = source.abspath
51312797Sgabeblack@google.com
51412797Sgabeblack@google.com        exec file(source.abspath, 'r') in mod.__dict__
51512797Sgabeblack@google.com
51612797Sgabeblack@google.com        return mod
51712797Sgabeblack@google.com
51812797Sgabeblack@google.comimport m5.SimObject
51912797Sgabeblack@google.comimport m5.params
52012797Sgabeblack@google.comfrom m5.util import code_formatter
52112797Sgabeblack@google.com
52212797Sgabeblack@google.comm5.SimObject.clear()
52312797Sgabeblack@google.comm5.params.clear()
52412797Sgabeblack@google.com
52512797Sgabeblack@google.com# install the python importer so we can grab stuff from the source
52612797Sgabeblack@google.com# tree itself.  We can't have SimObjects added after this point or
52712797Sgabeblack@google.com# else we won't know about them for the rest of the stuff.
52812797Sgabeblack@google.comimporter = DictImporter(PySource.modules)
5294382Sbinkertn@umich.edusys.meta_path[0:0] = [ importer ]
53013576Sciro.santilli@arm.com
53113577Sciro.santilli@arm.com# import all sim objects so we can populate the all_objects list
5324202Sbinkertn@umich.edu# make sure that we're working with a list, then let's sort it
5334382Sbinkertn@umich.edufor modname in SimObject.modnames:
5344382Sbinkertn@umich.edu    exec('from m5.objects import %s' % modname)
5359396Sandreas.hansson@arm.com
53612797Sgabeblack@google.com# we need to unload all of the currently imported modules so that they
5375584Snate@binkert.org# will be re-imported the next time the sconscript is run
53812313Sgabeblack@google.comimporter.unload()
5394382Sbinkertn@umich.edusys.meta_path.remove(importer)
5404382Sbinkertn@umich.edu
5414382Sbinkertn@umich.edusim_objects = m5.SimObject.allClasses
5428232Snate@binkert.orgall_enums = m5.params.allEnums
5435192Ssaidi@eecs.umich.edu
5448232Snate@binkert.orgfor name,obj in sorted(sim_objects.iteritems()):
5458232Snate@binkert.org    for param in obj._params.local.values():
5468232Snate@binkert.org        # load the ptype attribute now because it depends on the
5475192Ssaidi@eecs.umich.edu        # current version of SimObject.allClasses, but when scons
5488232Snate@binkert.org        # actually uses the value, all versions of
5495192Ssaidi@eecs.umich.edu        # SimObject.allClasses will have been loaded
5505799Snate@binkert.org        param.ptype
5518232Snate@binkert.org
5525192Ssaidi@eecs.umich.edu########################################################################
5535192Ssaidi@eecs.umich.edu#
5545192Ssaidi@eecs.umich.edu# calculate extra dependencies
5558232Snate@binkert.org#
5565192Ssaidi@eecs.umich.edumodule_depends = ["m5", "m5.SimObject", "m5.params"]
5578232Snate@binkert.orgdepends = [ PySource.modules[dep].snode for dep in module_depends ]
5585192Ssaidi@eecs.umich.edudepends.sort(key = lambda x: x.name)
5595192Ssaidi@eecs.umich.edu
5605192Ssaidi@eecs.umich.edu########################################################################
5615192Ssaidi@eecs.umich.edu#
5624382Sbinkertn@umich.edu# Commands for the basic automatically generated python files
5634382Sbinkertn@umich.edu#
5644382Sbinkertn@umich.edu
5652667Sstever@eecs.umich.edu# Generate Python file containing a dict specifying the current
5662667Sstever@eecs.umich.edu# buildEnv flags.
5672667Sstever@eecs.umich.edudef makeDefinesPyFile(target, source, env):
5682667Sstever@eecs.umich.edu    build_env = source[0].get_contents()
5692667Sstever@eecs.umich.edu
5702667Sstever@eecs.umich.edu    code = code_formatter()
5715742Snate@binkert.org    code("""
5725742Snate@binkert.orgimport _m5.core
5735742Snate@binkert.orgimport m5.util
5745793Snate@binkert.org
5758334Snate@binkert.orgbuildEnv = m5.util.SmartDict($build_env)
5765793Snate@binkert.org
5775793Snate@binkert.orgcompileDate = _m5.core.compileDate
5785793Snate@binkert.org_globals = globals()
5794382Sbinkertn@umich.edufor key,val in _m5.core.__dict__.iteritems():
5804762Snate@binkert.org    if key.startswith('flag_'):
5815344Sstever@gmail.com        flag = key[5:]
5824382Sbinkertn@umich.edu        _globals[flag] = val
5835341Sstever@gmail.comdel _globals
5845742Snate@binkert.org""")
5855742Snate@binkert.org    code.write(target[0].abspath)
5865742Snate@binkert.org
5875742Snate@binkert.orgdefines_info = Value(build_env)
5885742Snate@binkert.org# Generate a file with all of the compile options in it
5894762Snate@binkert.orgenv.Command('python/m5/defines.py', defines_info,
5905742Snate@binkert.org            MakeAction(makeDefinesPyFile, Transform("DEFINES", 0)))
5915742Snate@binkert.orgPySource('m5', 'python/m5/defines.py')
59211984Sgabeblack@google.com
5937722Sgblack@eecs.umich.edu# Generate python file containing info about the M5 source code
5945742Snate@binkert.orgdef makeInfoPyFile(target, source, env):
5955742Snate@binkert.org    code = code_formatter()
5965742Snate@binkert.org    for src in source:
5979930Sandreas.hansson@arm.com        data = ''.join(file(src.srcnode().abspath, 'r').xreadlines())
5989930Sandreas.hansson@arm.com        code('$src = ${{repr(data)}}')
5999930Sandreas.hansson@arm.com    code.write(str(target[0]))
6009930Sandreas.hansson@arm.com
6019930Sandreas.hansson@arm.com# Generate a file that wraps the basic top level files
6025742Snate@binkert.orgenv.Command('python/m5/info.py',
6038242Sbradley.danofsky@amd.com            [ '#/COPYING', '#/LICENSE', '#/README', ],
6048242Sbradley.danofsky@amd.com            MakeAction(makeInfoPyFile, Transform("INFO")))
6058242Sbradley.danofsky@amd.comPySource('m5', 'python/m5/info.py')
6068242Sbradley.danofsky@amd.com
6075341Sstever@gmail.com########################################################################
6085742Snate@binkert.org#
6097722Sgblack@eecs.umich.edu# Create all of the SimObject param headers and enum headers
6104773Snate@binkert.org#
6116108Snate@binkert.org
6121858SN/Adef createSimObjectParamStruct(target, source, env):
6131085SN/A    assert len(target) == 1 and len(source) == 1
6146658Snate@binkert.org
6156658Snate@binkert.org    name = source[0].get_text_contents()
6167673Snate@binkert.org    obj = sim_objects[name]
6176658Snate@binkert.org
6186658Snate@binkert.org    code = code_formatter()
61911308Santhony.gutierrez@amd.com    obj.cxx_param_decl(code)
6206658Snate@binkert.org    code.write(target[0].abspath)
62111308Santhony.gutierrez@amd.com
6226658Snate@binkert.orgdef createSimObjectCxxConfig(is_header):
6236658Snate@binkert.org    def body(target, source, env):
6247673Snate@binkert.org        assert len(target) == 1 and len(source) == 1
6257673Snate@binkert.org
6267673Snate@binkert.org        name = str(source[0].get_contents())
6277673Snate@binkert.org        obj = sim_objects[name]
6287673Snate@binkert.org
6297673Snate@binkert.org        code = code_formatter()
6307673Snate@binkert.org        obj.cxx_config_param_file(code, is_header)
63110467Sandreas.hansson@arm.com        code.write(target[0].abspath)
6326658Snate@binkert.org    return body
6337673Snate@binkert.org
63410467Sandreas.hansson@arm.comdef createEnumStrings(target, source, env):
63510467Sandreas.hansson@arm.com    assert len(target) == 1 and len(source) == 2
63610467Sandreas.hansson@arm.com
63710467Sandreas.hansson@arm.com    name = source[0].get_text_contents()
63810467Sandreas.hansson@arm.com    use_python = source[1].read()
63910467Sandreas.hansson@arm.com    obj = all_enums[name]
64010467Sandreas.hansson@arm.com
64110467Sandreas.hansson@arm.com    code = code_formatter()
64210467Sandreas.hansson@arm.com    obj.cxx_def(code)
64310467Sandreas.hansson@arm.com    if use_python:
64410467Sandreas.hansson@arm.com        obj.pybind_def(code)
6457673Snate@binkert.org    code.write(target[0].abspath)
6467673Snate@binkert.org
6477673Snate@binkert.orgdef createEnumDecls(target, source, env):
6487673Snate@binkert.org    assert len(target) == 1 and len(source) == 1
6497673Snate@binkert.org
6509048SAli.Saidi@ARM.com    name = source[0].get_text_contents()
6517673Snate@binkert.org    obj = all_enums[name]
6527673Snate@binkert.org
6537673Snate@binkert.org    code = code_formatter()
6547673Snate@binkert.org    obj.cxx_decl(code)
6556658Snate@binkert.org    code.write(target[0].abspath)
6567756SAli.Saidi@ARM.com
6577816Ssteve.reinhardt@amd.comdef createSimObjectPyBindWrapper(target, source, env):
6586658Snate@binkert.org    name = source[0].get_text_contents()
65911308Santhony.gutierrez@amd.com    obj = sim_objects[name]
66011308Santhony.gutierrez@amd.com
66111308Santhony.gutierrez@amd.com    code = code_formatter()
66211308Santhony.gutierrez@amd.com    obj.pybind_decl(code)
66311308Santhony.gutierrez@amd.com    code.write(target[0].abspath)
66411308Santhony.gutierrez@amd.com
66511308Santhony.gutierrez@amd.com# Generate all of the SimObject param C++ struct header files
66611308Santhony.gutierrez@amd.comparams_hh_files = []
66711308Santhony.gutierrez@amd.comfor name,simobj in sorted(sim_objects.iteritems()):
66811308Santhony.gutierrez@amd.com    py_source = PySource.modules[simobj.__module__]
66911308Santhony.gutierrez@amd.com    extra_deps = [ py_source.tnode ]
67011308Santhony.gutierrez@amd.com
67111308Santhony.gutierrez@amd.com    hh_file = File('params/%s.hh' % name)
67211308Santhony.gutierrez@amd.com    params_hh_files.append(hh_file)
67311308Santhony.gutierrez@amd.com    env.Command(hh_file, Value(name),
67411308Santhony.gutierrez@amd.com                MakeAction(createSimObjectParamStruct, Transform("SO PARAM")))
67511308Santhony.gutierrez@amd.com    env.Depends(hh_file, depends + extra_deps)
67611308Santhony.gutierrez@amd.com
67711308Santhony.gutierrez@amd.com# C++ parameter description files
67811308Santhony.gutierrez@amd.comif GetOption('with_cxx_config'):
67911308Santhony.gutierrez@amd.com    for name,simobj in sorted(sim_objects.iteritems()):
68011308Santhony.gutierrez@amd.com        py_source = PySource.modules[simobj.__module__]
68111308Santhony.gutierrez@amd.com        extra_deps = [ py_source.tnode ]
68211308Santhony.gutierrez@amd.com
68311308Santhony.gutierrez@amd.com        cxx_config_hh_file = File('cxx_config/%s.hh' % name)
68411308Santhony.gutierrez@amd.com        cxx_config_cc_file = File('cxx_config/%s.cc' % name)
68511308Santhony.gutierrez@amd.com        env.Command(cxx_config_hh_file, Value(name),
68611308Santhony.gutierrez@amd.com                    MakeAction(createSimObjectCxxConfig(True),
68711308Santhony.gutierrez@amd.com                    Transform("CXXCPRHH")))
68811308Santhony.gutierrez@amd.com        env.Command(cxx_config_cc_file, Value(name),
68911308Santhony.gutierrez@amd.com                    MakeAction(createSimObjectCxxConfig(False),
69011308Santhony.gutierrez@amd.com                    Transform("CXXCPRCC")))
69111308Santhony.gutierrez@amd.com        env.Depends(cxx_config_hh_file, depends + extra_deps +
69211308Santhony.gutierrez@amd.com                    [File('params/%s.hh' % name), File('sim/cxx_config.hh')])
69311308Santhony.gutierrez@amd.com        env.Depends(cxx_config_cc_file, depends + extra_deps +
69411308Santhony.gutierrez@amd.com                    [cxx_config_hh_file])
69511308Santhony.gutierrez@amd.com        Source(cxx_config_cc_file)
69611308Santhony.gutierrez@amd.com
69711308Santhony.gutierrez@amd.com    cxx_config_init_cc_file = File('cxx_config/init.cc')
69811308Santhony.gutierrez@amd.com
69911308Santhony.gutierrez@amd.com    def createCxxConfigInitCC(target, source, env):
70011308Santhony.gutierrez@amd.com        assert len(target) == 1 and len(source) == 1
70111308Santhony.gutierrez@amd.com
70211308Santhony.gutierrez@amd.com        code = code_formatter()
70311308Santhony.gutierrez@amd.com
7044382Sbinkertn@umich.edu        for name,simobj in sorted(sim_objects.iteritems()):
7054382Sbinkertn@umich.edu            if not hasattr(simobj, 'abstract') or not simobj.abstract:
7064762Snate@binkert.org                code('#include "cxx_config/${name}.hh"')
7074762Snate@binkert.org        code()
7084762Snate@binkert.org        code('void cxxConfigInit()')
7096654Snate@binkert.org        code('{')
7106654Snate@binkert.org        code.indent()
7115517Snate@binkert.org        for name,simobj in sorted(sim_objects.iteritems()):
7125517Snate@binkert.org            not_abstract = not hasattr(simobj, 'abstract') or \
7135517Snate@binkert.org                not simobj.abstract
7145517Snate@binkert.org            if not_abstract and 'type' in simobj.__dict__:
7155517Snate@binkert.org                code('cxx_config_directory["${name}"] = '
7165517Snate@binkert.org                     '${name}CxxConfigParams::makeDirectoryEntry();')
7175517Snate@binkert.org        code.dedent()
7185517Snate@binkert.org        code('}')
7195517Snate@binkert.org        code.write(target[0].abspath)
7205517Snate@binkert.org
7215517Snate@binkert.org    py_source = PySource.modules[simobj.__module__]
7225517Snate@binkert.org    extra_deps = [ py_source.tnode ]
7235517Snate@binkert.org    env.Command(cxx_config_init_cc_file, Value(name),
7245517Snate@binkert.org        MakeAction(createCxxConfigInitCC, Transform("CXXCINIT")))
7255517Snate@binkert.org    cxx_param_hh_files = ["cxx_config/%s.hh" % simobj
7265517Snate@binkert.org        for name,simobj in sorted(sim_objects.iteritems())
7275517Snate@binkert.org        if not hasattr(simobj, 'abstract') or not simobj.abstract]
7286654Snate@binkert.org    Depends(cxx_config_init_cc_file, cxx_param_hh_files +
7295517Snate@binkert.org            [File('sim/cxx_config.hh')])
7305517Snate@binkert.org    Source(cxx_config_init_cc_file)
7315517Snate@binkert.org
7325517Snate@binkert.org# Generate all enum header files
7335517Snate@binkert.orgfor name,enum in sorted(all_enums.iteritems()):
73411802Sandreas.sandberg@arm.com    py_source = PySource.modules[enum.__module__]
7355517Snate@binkert.org    extra_deps = [ py_source.tnode ]
7365517Snate@binkert.org
7376143Snate@binkert.org    cc_file = File('enums/%s.cc' % name)
7386654Snate@binkert.org    env.Command(cc_file, [Value(name), Value(env['USE_PYTHON'])],
7395517Snate@binkert.org                MakeAction(createEnumStrings, Transform("ENUM STR")))
7405517Snate@binkert.org    env.Depends(cc_file, depends + extra_deps)
7415517Snate@binkert.org    Source(cc_file)
7425517Snate@binkert.org
7435517Snate@binkert.org    hh_file = File('enums/%s.hh' % name)
7445517Snate@binkert.org    env.Command(hh_file, Value(name),
7455517Snate@binkert.org                MakeAction(createEnumDecls, Transform("ENUMDECL")))
7465517Snate@binkert.org    env.Depends(hh_file, depends + extra_deps)
7475517Snate@binkert.org
7485517Snate@binkert.org# Generate SimObject Python bindings wrapper files
7495517Snate@binkert.orgif env['USE_PYTHON']:
7505517Snate@binkert.org    for name,simobj in sorted(sim_objects.iteritems()):
7515517Snate@binkert.org        py_source = PySource.modules[simobj.__module__]
7525517Snate@binkert.org        extra_deps = [ py_source.tnode ]
7536654Snate@binkert.org        cc_file = File('python/_m5/param_%s.cc' % name)
7546654Snate@binkert.org        env.Command(cc_file, Value(name),
7555517Snate@binkert.org                    MakeAction(createSimObjectPyBindWrapper,
7565517Snate@binkert.org                               Transform("SO PyBind")))
7576143Snate@binkert.org        env.Depends(cc_file, depends + extra_deps)
7586143Snate@binkert.org        Source(cc_file)
7596143Snate@binkert.org
7606727Ssteve.reinhardt@amd.com# Build all protocol buffers if we have got protoc and protobuf available
7615517Snate@binkert.orgif env['HAVE_PROTOBUF']:
7626727Ssteve.reinhardt@amd.com    for proto in ProtoBuf.all:
7635517Snate@binkert.org        # Use both the source and header as the target, and the .proto
7645517Snate@binkert.org        # file as the source. When executing the protoc compiler, also
7655517Snate@binkert.org        # specify the proto_path to avoid having the generated files
7666654Snate@binkert.org        # include the path.
7676654Snate@binkert.org        env.Command([proto.cc_file, proto.hh_file], proto.tnode,
7687673Snate@binkert.org                    MakeAction('$PROTOC --cpp_out ${TARGET.dir} '
7696654Snate@binkert.org                               '--proto_path ${SOURCE.dir} $SOURCE',
7706654Snate@binkert.org                               Transform("PROTOC")))
7716654Snate@binkert.org
7726654Snate@binkert.org        # Add the C++ source file
7735517Snate@binkert.org        Source(proto.cc_file, **proto.guards)
7745517Snate@binkert.orgelif ProtoBuf.all:
7755517Snate@binkert.org    print 'Got protobuf to build, but lacks support!'
7766143Snate@binkert.org    Exit(1)
7775517Snate@binkert.org
7784762Snate@binkert.org#
7795517Snate@binkert.org# Handle debug flags
7805517Snate@binkert.org#
7816143Snate@binkert.orgdef makeDebugFlagCC(target, source, env):
7826143Snate@binkert.org    assert(len(target) == 1 and len(source) == 1)
7835517Snate@binkert.org
7845517Snate@binkert.org    code = code_formatter()
7855517Snate@binkert.org
7865517Snate@binkert.org    # delay definition of CompoundFlags until after all the definition
7875517Snate@binkert.org    # of all constituent SimpleFlags
7885517Snate@binkert.org    comp_code = code_formatter()
7895517Snate@binkert.org
7905517Snate@binkert.org    # file header
7915517Snate@binkert.org    code('''
7926143Snate@binkert.org/*
7935517Snate@binkert.org * DO NOT EDIT THIS FILE! Automatically generated by SCons.
7946654Snate@binkert.org */
7956654Snate@binkert.org
7966654Snate@binkert.org#include "base/debug.hh"
7976654Snate@binkert.org
7986654Snate@binkert.orgnamespace Debug {
7996654Snate@binkert.org
8004762Snate@binkert.org''')
8014762Snate@binkert.org
8024762Snate@binkert.org    for name, flag in sorted(source[0].read().iteritems()):
8034762Snate@binkert.org        n, compound, desc = flag
8044762Snate@binkert.org        assert n == name
8057675Snate@binkert.org
80610584Sandreas.hansson@arm.com        if not compound:
8074762Snate@binkert.org            code('SimpleFlag $name("$name", "$desc");')
8084762Snate@binkert.org        else:
8094762Snate@binkert.org            comp_code('CompoundFlag $name("$name", "$desc",')
8104762Snate@binkert.org            comp_code.indent()
8114382Sbinkertn@umich.edu            last = len(compound) - 1
8124382Sbinkertn@umich.edu            for i,flag in enumerate(compound):
8135517Snate@binkert.org                if i != last:
8146654Snate@binkert.org                    comp_code('&$flag,')
8155517Snate@binkert.org                else:
8168126Sgblack@eecs.umich.edu                    comp_code('&$flag);')
8176654Snate@binkert.org            comp_code.dedent()
8187673Snate@binkert.org
8196654Snate@binkert.org    code.append(comp_code)
82011802Sandreas.sandberg@arm.com    code()
8216654Snate@binkert.org    code('} // namespace Debug')
8226654Snate@binkert.org
8236654Snate@binkert.org    code.write(str(target[0]))
8246654Snate@binkert.org
82511802Sandreas.sandberg@arm.comdef makeDebugFlagHH(target, source, env):
8266669Snate@binkert.org    assert(len(target) == 1 and len(source) == 1)
82713709Sandreas.sandberg@arm.com
8286669Snate@binkert.org    val = eval(source[0].get_contents())
8296669Snate@binkert.org    name, compound, desc = val
8306669Snate@binkert.org
8316669Snate@binkert.org    code = code_formatter()
8326654Snate@binkert.org
8337673Snate@binkert.org    # file header boilerplate
8345517Snate@binkert.org    code('''\
8358126Sgblack@eecs.umich.edu/*
8365798Snate@binkert.org * DO NOT EDIT THIS FILE! Automatically generated by SCons.
8377756SAli.Saidi@ARM.com */
8387816Ssteve.reinhardt@amd.com
8395798Snate@binkert.org#ifndef __DEBUG_${name}_HH__
8405798Snate@binkert.org#define __DEBUG_${name}_HH__
8415517Snate@binkert.org
8425517Snate@binkert.orgnamespace Debug {
8437673Snate@binkert.org''')
8445517Snate@binkert.org
8455517Snate@binkert.org    if compound:
8467673Snate@binkert.org        code('class CompoundFlag;')
8477673Snate@binkert.org    code('class SimpleFlag;')
8485517Snate@binkert.org
8495798Snate@binkert.org    if compound:
8505798Snate@binkert.org        code('extern CompoundFlag $name;')
8518333Snate@binkert.org        for flag in compound:
8527816Ssteve.reinhardt@amd.com            code('extern SimpleFlag $flag;')
8535798Snate@binkert.org    else:
8545798Snate@binkert.org        code('extern SimpleFlag $name;')
8554762Snate@binkert.org
8564762Snate@binkert.org    code('''
8574762Snate@binkert.org}
8584762Snate@binkert.org
8594762Snate@binkert.org#endif // __DEBUG_${name}_HH__
8608596Ssteve.reinhardt@amd.com''')
8615517Snate@binkert.org
8625517Snate@binkert.org    code.write(str(target[0]))
86311997Sgabeblack@google.com
8645517Snate@binkert.orgfor name,flag in sorted(debug_flags.iteritems()):
8655517Snate@binkert.org    n, compound, desc = flag
8667673Snate@binkert.org    assert n == name
8678596Ssteve.reinhardt@amd.com
8687673Snate@binkert.org    hh_file = 'debug/%s.hh' % name
8695517Snate@binkert.org    env.Command(hh_file, Value(flag),
87010458Sandreas.hansson@arm.com                MakeAction(makeDebugFlagHH, Transform("TRACING", 0)))
87110458Sandreas.hansson@arm.com
87210458Sandreas.hansson@arm.comenv.Command('debug/flags.cc', Value(debug_flags),
87310458Sandreas.hansson@arm.com            MakeAction(makeDebugFlagCC, Transform("TRACING", 0)))
87410458Sandreas.hansson@arm.comSource('debug/flags.cc')
87510458Sandreas.hansson@arm.com
87610458Sandreas.hansson@arm.com# version tags
87710458Sandreas.hansson@arm.comtags = \
87810458Sandreas.hansson@arm.comenv.Command('sim/tags.cc', None,
87910458Sandreas.hansson@arm.com            MakeAction('util/cpt_upgrader.py --get-cc-file > $TARGET',
88010458Sandreas.hansson@arm.com                       Transform("VER TAGS")))
88110458Sandreas.hansson@arm.comenv.AlwaysBuild(tags)
8825517Snate@binkert.org
88311996Sgabeblack@google.com# Embed python files.  All .py files that have been indicated by a
8845517Snate@binkert.org# PySource() call in a SConscript need to be embedded into the M5
88511997Sgabeblack@google.com# library.  To do that, we compile the file to byte code, marshal the
88611996Sgabeblack@google.com# byte code, compress it, and then generate a c++ file that
8875517Snate@binkert.org# inserts the result into an array.
8885517Snate@binkert.orgdef embedPyFile(target, source, env):
8897673Snate@binkert.org    def c_str(string):
8907673Snate@binkert.org        if string is None:
89111996Sgabeblack@google.com            return "0"
89211988Sandreas.sandberg@arm.com        return '"%s"' % string
8937673Snate@binkert.org
8945517Snate@binkert.org    '''Action function to compile a .py into a code object, marshal
8958596Ssteve.reinhardt@amd.com    it, compress it, and stick it into an asm file so the code appears
8965517Snate@binkert.org    as just bytes with a label in the data section'''
8975517Snate@binkert.org
89811997Sgabeblack@google.com    src = file(str(source[0]), 'r').read()
8995517Snate@binkert.org
9005517Snate@binkert.org    pysource = PySource.tnodes[source[0]]
9017673Snate@binkert.org    compiled = compile(src, pysource.abspath, 'exec')
9027673Snate@binkert.org    marshalled = marshal.dumps(compiled)
9037673Snate@binkert.org    compressed = zlib.compress(marshalled)
9045517Snate@binkert.org    data = compressed
90511988Sandreas.sandberg@arm.com    sym = pysource.symname
90611997Sgabeblack@google.com
9078596Ssteve.reinhardt@amd.com    code = code_formatter()
9088596Ssteve.reinhardt@amd.com    code('''\
9098596Ssteve.reinhardt@amd.com#include "sim/init.hh"
91011988Sandreas.sandberg@arm.com
9118596Ssteve.reinhardt@amd.comnamespace {
9128596Ssteve.reinhardt@amd.com
9138596Ssteve.reinhardt@amd.comconst uint8_t data_${sym}[] = {
9144762Snate@binkert.org''')
9156143Snate@binkert.org    code.indent()
9166143Snate@binkert.org    step = 16
9176143Snate@binkert.org    for i in xrange(0, len(data), step):
9184762Snate@binkert.org        x = array.array('B', data[i:i+step])
9194762Snate@binkert.org        code(''.join('%d,' % d for d in x))
9204762Snate@binkert.org    code.dedent()
9217756SAli.Saidi@ARM.com
9228596Ssteve.reinhardt@amd.com    code('''};
9234762Snate@binkert.org
9244762Snate@binkert.orgEmbeddedPython embedded_${sym}(
92510458Sandreas.hansson@arm.com    ${{c_str(pysource.arcname)}},
92610458Sandreas.hansson@arm.com    ${{c_str(pysource.abspath)}},
92710458Sandreas.hansson@arm.com    ${{c_str(pysource.modpath)}},
92810458Sandreas.hansson@arm.com    data_${sym},
92910458Sandreas.hansson@arm.com    ${{len(data)}},
93010458Sandreas.hansson@arm.com    ${{len(marshalled)}});
93110458Sandreas.hansson@arm.com
93210458Sandreas.hansson@arm.com} // anonymous namespace
93310458Sandreas.hansson@arm.com''')
93410458Sandreas.hansson@arm.com    code.write(str(target[0]))
93510458Sandreas.hansson@arm.com
93610458Sandreas.hansson@arm.comfor source in PySource.all:
93710458Sandreas.hansson@arm.com    env.Command(source.cpp, source.tnode,
93810458Sandreas.hansson@arm.com                MakeAction(embedPyFile, Transform("EMBED PY")))
93910458Sandreas.hansson@arm.com    Source(source.cpp, skip_no_python=True)
94010458Sandreas.hansson@arm.com
94110458Sandreas.hansson@arm.com########################################################################
94210458Sandreas.hansson@arm.com#
94310458Sandreas.hansson@arm.com# Define binaries.  Each different build type (debug, opt, etc.) gets
94410458Sandreas.hansson@arm.com# a slightly different build environment.
94510458Sandreas.hansson@arm.com#
94610458Sandreas.hansson@arm.com
94710458Sandreas.hansson@arm.com# List of constructed environments to pass back to SConstruct
94810458Sandreas.hansson@arm.comdate_source = Source('base/date.cc', skip_lib=True)
94910458Sandreas.hansson@arm.com
95010458Sandreas.hansson@arm.com# Function to create a new build environment as clone of current
95110458Sandreas.hansson@arm.com# environment 'env' with modified object suffix and optional stripped
95210458Sandreas.hansson@arm.com# binary.  Additional keyword arguments are appended to corresponding
95310458Sandreas.hansson@arm.com# build environment vars.
95410458Sandreas.hansson@arm.comdef makeEnv(env, label, objsfx, strip=False, disable_partial=False, **kwargs):
95510458Sandreas.hansson@arm.com    # SCons doesn't know to append a library suffix when there is a '.' in the
95610458Sandreas.hansson@arm.com    # name.  Use '_' instead.
95710458Sandreas.hansson@arm.com    libname = 'gem5_' + label
95810458Sandreas.hansson@arm.com    exename = 'gem5.' + label
95910458Sandreas.hansson@arm.com    secondary_exename = 'm5.' + label
96010458Sandreas.hansson@arm.com
96110458Sandreas.hansson@arm.com    new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's')
96210458Sandreas.hansson@arm.com    new_env.Label = label
96310458Sandreas.hansson@arm.com    new_env.Append(**kwargs)
96410458Sandreas.hansson@arm.com
96510458Sandreas.hansson@arm.com    if env['GCC']:
96610458Sandreas.hansson@arm.com        # The address sanitizer is available for gcc >= 4.8
96710458Sandreas.hansson@arm.com        if GetOption('with_asan'):
96810458Sandreas.hansson@arm.com            if GetOption('with_ubsan') and \
96910458Sandreas.hansson@arm.com                    compareVersions(env['GCC_VERSION'], '4.9') >= 0:
97010458Sandreas.hansson@arm.com                new_env.Append(CCFLAGS=['-fsanitize=address,undefined',
97110458Sandreas.hansson@arm.com                                        '-fno-omit-frame-pointer'])
97210458Sandreas.hansson@arm.com                new_env.Append(LINKFLAGS='-fsanitize=address,undefined')
97310458Sandreas.hansson@arm.com            else:
97410584Sandreas.hansson@arm.com                new_env.Append(CCFLAGS=['-fsanitize=address',
97510458Sandreas.hansson@arm.com                                        '-fno-omit-frame-pointer'])
97610458Sandreas.hansson@arm.com                new_env.Append(LINKFLAGS='-fsanitize=address')
97710458Sandreas.hansson@arm.com        # Only gcc >= 4.9 supports UBSan, so check both the version
97810458Sandreas.hansson@arm.com        # and the command-line option before adding the compiler and
97910458Sandreas.hansson@arm.com        # linker flags.
9804762Snate@binkert.org        elif GetOption('with_ubsan') and \
9816143Snate@binkert.org                compareVersions(env['GCC_VERSION'], '4.9') >= 0:
9826143Snate@binkert.org            new_env.Append(CCFLAGS='-fsanitize=undefined')
9836143Snate@binkert.org            new_env.Append(LINKFLAGS='-fsanitize=undefined')
9844762Snate@binkert.org
9854762Snate@binkert.org
98611996Sgabeblack@google.com    if env['CLANG']:
9877816Ssteve.reinhardt@amd.com        # We require clang >= 3.1, so there is no need to check any
9884762Snate@binkert.org        # versions here.
9894762Snate@binkert.org        if GetOption('with_ubsan'):
9904762Snate@binkert.org            if GetOption('with_asan'):
9914762Snate@binkert.org                new_env.Append(CCFLAGS=['-fsanitize=address,undefined',
9927756SAli.Saidi@ARM.com                                        '-fno-omit-frame-pointer'])
9938596Ssteve.reinhardt@amd.com                new_env.Append(LINKFLAGS='-fsanitize=address,undefined')
9944762Snate@binkert.org            else:
9954762Snate@binkert.org                new_env.Append(CCFLAGS='-fsanitize=undefined')
99611988Sandreas.sandberg@arm.com                new_env.Append(LINKFLAGS='-fsanitize=undefined')
99711988Sandreas.sandberg@arm.com
99811988Sandreas.sandberg@arm.com        elif GetOption('with_asan'):
99911988Sandreas.sandberg@arm.com            new_env.Append(CCFLAGS=['-fsanitize=address',
100011988Sandreas.sandberg@arm.com                                    '-fno-omit-frame-pointer'])
100111988Sandreas.sandberg@arm.com            new_env.Append(LINKFLAGS='-fsanitize=address')
100211988Sandreas.sandberg@arm.com
100311988Sandreas.sandberg@arm.com    werror_env = new_env.Clone()
100411988Sandreas.sandberg@arm.com    # Treat warnings as errors but white list some warnings that we
100511988Sandreas.sandberg@arm.com    # want to allow (e.g., deprecation warnings).
100611988Sandreas.sandberg@arm.com    werror_env.Append(CCFLAGS=['-Werror',
10074382Sbinkertn@umich.edu                               '-Wno-error=deprecated-declarations',
10089396Sandreas.hansson@arm.com                               '-Wno-error=deprecated',
10099396Sandreas.hansson@arm.com                               ])
10109396Sandreas.hansson@arm.com
10119396Sandreas.hansson@arm.com    def make_obj(source, static, extra_deps = None):
10129396Sandreas.hansson@arm.com        '''This function adds the specified source to the correct
10139396Sandreas.hansson@arm.com        build environment, and returns the corresponding SCons Object
10149396Sandreas.hansson@arm.com        nodes'''
10159396Sandreas.hansson@arm.com
10169396Sandreas.hansson@arm.com        if source.Werror:
10179396Sandreas.hansson@arm.com            env = werror_env
10189396Sandreas.hansson@arm.com        else:
10199396Sandreas.hansson@arm.com            env = new_env
10209396Sandreas.hansson@arm.com
102112302Sgabeblack@google.com        if static:
10229396Sandreas.hansson@arm.com            obj = env.StaticObject(source.tnode)
102312563Sgabeblack@google.com        else:
10249396Sandreas.hansson@arm.com            obj = env.SharedObject(source.tnode)
10259396Sandreas.hansson@arm.com
10268232Snate@binkert.org        if extra_deps:
10278232Snate@binkert.org            env.Depends(obj, extra_deps)
10288232Snate@binkert.org
10298232Snate@binkert.org        return obj
10308232Snate@binkert.org
10316229Snate@binkert.org    lib_guards = {'main': False, 'skip_lib': False}
103210455SCurtis.Dunham@arm.com
10336229Snate@binkert.org    # Without Python, leave out all Python content from the library
103410455SCurtis.Dunham@arm.com    # builds.  The option doesn't affect gem5 built as a program
103510455SCurtis.Dunham@arm.com    if GetOption('without_python'):
103610455SCurtis.Dunham@arm.com        lib_guards['skip_no_python'] = False
10375517Snate@binkert.org
10385517Snate@binkert.org    static_objs = []
10397673Snate@binkert.org    shared_objs = []
10405517Snate@binkert.org    for s in guarded_source_iterator(Source.source_groups[None], **lib_guards):
104110455SCurtis.Dunham@arm.com        static_objs.append(make_obj(s, True))
10425517Snate@binkert.org        shared_objs.append(make_obj(s, False))
10435517Snate@binkert.org
10448232Snate@binkert.org    partial_objs = []
104510455SCurtis.Dunham@arm.com    for group, all_srcs in Source.source_groups.iteritems():
104610455SCurtis.Dunham@arm.com        # If these are the ungrouped source files, skip them.
104710455SCurtis.Dunham@arm.com        if not group:
10487673Snate@binkert.org            continue
10497673Snate@binkert.org
105010455SCurtis.Dunham@arm.com        # Get a list of the source files compatible with the current guards.
105110455SCurtis.Dunham@arm.com        srcs = [ s for s in guarded_source_iterator(all_srcs, **lib_guards) ]
105210455SCurtis.Dunham@arm.com        # If there aren't any left, skip this group.
10535517Snate@binkert.org        if not srcs:
105410455SCurtis.Dunham@arm.com            continue
105510455SCurtis.Dunham@arm.com
105610455SCurtis.Dunham@arm.com        # If partial linking is disabled, add these sources to the build
105710455SCurtis.Dunham@arm.com        # directly, and short circuit this loop.
105810455SCurtis.Dunham@arm.com        if disable_partial:
105910455SCurtis.Dunham@arm.com            for s in srcs:
106010455SCurtis.Dunham@arm.com                static_objs.append(make_obj(s, True))
106110455SCurtis.Dunham@arm.com                shared_objs.append(make_obj(s, False))
106210685Sandreas.hansson@arm.com            continue
106310455SCurtis.Dunham@arm.com
106410685Sandreas.hansson@arm.com        # Set up the static partially linked objects.
106510455SCurtis.Dunham@arm.com        source_objs = [ make_obj(s, True) for s in srcs ]
10665517Snate@binkert.org        file_name = new_env.subst("${OBJPREFIX}lib${OBJSUFFIX}.partial")
106710455SCurtis.Dunham@arm.com        target = File(joinpath(group, file_name))
10688232Snate@binkert.org        partial = env.PartialStatic(target=target, source=source_objs)
10698232Snate@binkert.org        static_objs.append(partial)
10705517Snate@binkert.org
10717673Snate@binkert.org        # Set up the shared partially linked objects.
10725517Snate@binkert.org        source_objs = [ make_obj(s, False) for s in srcs ]
10738232Snate@binkert.org        file_name = new_env.subst("${SHOBJPREFIX}lib${SHOBJSUFFIX}.partial")
10748232Snate@binkert.org        target = File(joinpath(group, file_name))
10755517Snate@binkert.org        partial = env.PartialShared(target=target, source=source_objs)
10768232Snate@binkert.org        shared_objs.append(partial)
10778232Snate@binkert.org
10788232Snate@binkert.org    static_date = make_obj(date_source, static=True, extra_deps=static_objs)
10797673Snate@binkert.org    static_objs.append(static_date)
10805517Snate@binkert.org
10815517Snate@binkert.org    shared_date = make_obj(date_source, static=False, extra_deps=shared_objs)
10827673Snate@binkert.org    shared_objs.append(shared_date)
10835517Snate@binkert.org
108410455SCurtis.Dunham@arm.com    # First make a library of everything but main() so other programs can
10855517Snate@binkert.org    # link against m5.
10865517Snate@binkert.org    static_lib = new_env.StaticLibrary(libname, static_objs)
10878232Snate@binkert.org    shared_lib = new_env.SharedLibrary(libname, shared_objs)
10888232Snate@binkert.org
10895517Snate@binkert.org    # Now link a stub with main() and the static library.
10908232Snate@binkert.org    main_objs = [ make_obj(s, True) for s in Source.get(main=True) ]
10918232Snate@binkert.org
10925517Snate@binkert.org    for test in UnitTest.all:
10938232Snate@binkert.org        flags = { test.target : True }
10948232Snate@binkert.org        test_sources = Source.get(**flags)
10958232Snate@binkert.org        test_objs = [ make_obj(s, static=True) for s in test_sources ]
10965517Snate@binkert.org        if test.main:
10978232Snate@binkert.org            test_objs += main_objs
10988232Snate@binkert.org        path = 'unittest/%s.%s' % (test.target, label)
10998232Snate@binkert.org        new_env.Program(path, test_objs + static_objs)
11008232Snate@binkert.org
11018232Snate@binkert.org    progname = exename
11028232Snate@binkert.org    if strip:
11035517Snate@binkert.org        progname += '.unstripped'
11048232Snate@binkert.org
11058232Snate@binkert.org    targets = new_env.Program(progname, main_objs + static_objs)
11065517Snate@binkert.org
11078232Snate@binkert.org    if strip:
11087673Snate@binkert.org        if sys.platform == 'sunos5':
11095517Snate@binkert.org            cmd = 'cp $SOURCE $TARGET; strip $TARGET'
11107673Snate@binkert.org        else:
11115517Snate@binkert.org            cmd = 'strip $SOURCE -o $TARGET'
11128232Snate@binkert.org        targets = new_env.Command(exename, progname,
11138232Snate@binkert.org                    MakeAction(cmd, Transform("STRIP")))
11148232Snate@binkert.org
11155192Ssaidi@eecs.umich.edu    new_env.Command(secondary_exename, exename,
111610454SCurtis.Dunham@arm.com            MakeAction('ln $SOURCE $TARGET', Transform("HARDLINK")))
111710454SCurtis.Dunham@arm.com
11188232Snate@binkert.org    new_env.M5Binary = targets[0]
111910455SCurtis.Dunham@arm.com
112010455SCurtis.Dunham@arm.com    # Set up regression tests.
112110455SCurtis.Dunham@arm.com    SConscript(os.path.join(env.root.abspath, 'tests', 'SConscript'),
112210455SCurtis.Dunham@arm.com               variant_dir=Dir('tests').Dir(new_env.Label),
11235192Ssaidi@eecs.umich.edu               exports={ 'env' : new_env }, duplicate=False)
112411077SCurtis.Dunham@arm.com
112511330SCurtis.Dunham@arm.com# Start out with the compiler flags common to all compilers,
112611077SCurtis.Dunham@arm.com# i.e. they all use -g for opt and -g -pg for prof
112711077SCurtis.Dunham@arm.comccflags = {'debug' : [], 'opt' : ['-g'], 'fast' : [], 'prof' : ['-g', '-pg'],
112811077SCurtis.Dunham@arm.com           'perf' : ['-g']}
112911330SCurtis.Dunham@arm.com
113011077SCurtis.Dunham@arm.com# Start out with the linker flags common to all linkers, i.e. -pg for
113113730Sandreas.sandberg@arm.com# prof, and -lprofiler for perf. The -lprofile flag is surrounded by
113213730Sandreas.sandberg@arm.com# no-as-needed and as-needed as the binutils linker is too clever and
113313730Sandreas.sandberg@arm.com# simply doesn't link to the library otherwise.
113413730Sandreas.sandberg@arm.comldflags = {'debug' : [], 'opt' : [], 'fast' : [], 'prof' : ['-pg'],
113513730Sandreas.sandberg@arm.com           'perf' : ['-Wl,--no-as-needed', '-lprofiler', '-Wl,--as-needed']}
11367674Snate@binkert.org
11375522Snate@binkert.org# For Link Time Optimization, the optimisation flags used to compile
11385522Snate@binkert.org# individual files are decoupled from those used at link time
11397674Snate@binkert.org# (i.e. you can compile with -O3 and perform LTO with -O0), so we need
11407674Snate@binkert.org# to also update the linker flags based on the target.
11417674Snate@binkert.orgif env['GCC']:
11427674Snate@binkert.org    if sys.platform == 'sunos5':
11437674Snate@binkert.org        ccflags['debug'] += ['-gstabs+']
11447674Snate@binkert.org    else:
11457674Snate@binkert.org        ccflags['debug'] += ['-ggdb3']
11467674Snate@binkert.org    ldflags['debug'] += ['-O0']
114713730Sandreas.sandberg@arm.com    # opt, fast, prof and perf all share the same cc flags, also add
114813730Sandreas.sandberg@arm.com    # the optimization to the ldflags as LTO defers the optimization
114913730Sandreas.sandberg@arm.com    # to link time
115013730Sandreas.sandberg@arm.com    for target in ['opt', 'fast', 'prof', 'perf']:
11515517Snate@binkert.org        ccflags[target] += ['-O3']
115213730Sandreas.sandberg@arm.com        ldflags[target] += ['-O3']
115313730Sandreas.sandberg@arm.com
115413730Sandreas.sandberg@arm.com    ccflags['fast'] += env['LTO_CCFLAGS']
11555517Snate@binkert.org    ldflags['fast'] += env['LTO_LDFLAGS']
115613730Sandreas.sandberg@arm.comelif env['CLANG']:
115713730Sandreas.sandberg@arm.com    ccflags['debug'] += ['-g', '-O0']
115813730Sandreas.sandberg@arm.com    # opt, fast, prof and perf all share the same cc flags
115913730Sandreas.sandberg@arm.com    for target in ['opt', 'fast', 'prof', 'perf']:
11605522Snate@binkert.org        ccflags[target] += ['-O3']
11615522Snate@binkert.orgelse:
116213730Sandreas.sandberg@arm.com    print 'Unknown compiler, please fix compiler options'
11637674Snate@binkert.org    Exit(1)
11645517Snate@binkert.org
11657673Snate@binkert.org
11667673Snate@binkert.org# To speed things up, we only instantiate the build environments we
11677674Snate@binkert.org# need.  We try to identify the needed environment for each target; if
11687673Snate@binkert.org# we can't, we fall back on instantiating all the environments just to
11697674Snate@binkert.org# be safe.
11707674Snate@binkert.orgtarget_types = ['debug', 'opt', 'fast', 'prof', 'perf']
11717674Snate@binkert.orgobj2target = {'do': 'debug', 'o': 'opt', 'fo': 'fast', 'po': 'prof',
117213576Sciro.santilli@arm.com              'gpo' : 'perf'}
117313576Sciro.santilli@arm.com
117411308Santhony.gutierrez@amd.comdef identifyTarget(t):
11757673Snate@binkert.org    ext = t.split('.')[-1]
11767674Snate@binkert.org    if ext in target_types:
11777674Snate@binkert.org        return ext
11787674Snate@binkert.org    if obj2target.has_key(ext):
11797674Snate@binkert.org        return obj2target[ext]
11807674Snate@binkert.org    match = re.search(r'/tests/([^/]+)/', t)
11817674Snate@binkert.org    if match and match.group(1) in target_types:
11827674Snate@binkert.org        return match.group(1)
11837674Snate@binkert.org    return 'all'
11847811Ssteve.reinhardt@amd.com
11857674Snate@binkert.orgneeded_envs = [identifyTarget(target) for target in BUILD_TARGETS]
11867673Snate@binkert.orgif 'all' in needed_envs:
11875522Snate@binkert.org    needed_envs += target_types
11886143Snate@binkert.org
118913730Sandreas.sandberg@arm.com# Debug binary
11907816Ssteve.reinhardt@amd.comif 'debug' in needed_envs:
119112302Sgabeblack@google.com    makeEnv(env, 'debug', '.do',
11924382Sbinkertn@umich.edu            CCFLAGS = Split(ccflags['debug']),
11934382Sbinkertn@umich.edu            CPPDEFINES = ['DEBUG', 'TRACING_ON=1'],
11944382Sbinkertn@umich.edu            LINKFLAGS = Split(ldflags['debug']))
11954382Sbinkertn@umich.edu
11964382Sbinkertn@umich.edu# Optimized binary
11974382Sbinkertn@umich.eduif 'opt' in needed_envs:
11984382Sbinkertn@umich.edu    makeEnv(env, 'opt', '.o',
11994382Sbinkertn@umich.edu            CCFLAGS = Split(ccflags['opt']),
120012302Sgabeblack@google.com            CPPDEFINES = ['TRACING_ON=1'],
12014382Sbinkertn@umich.edu            LINKFLAGS = Split(ldflags['opt']))
120212797Sgabeblack@google.com
120312797Sgabeblack@google.com# "Fast" binary
12042655Sstever@eecs.umich.eduif 'fast' in needed_envs:
12052655Sstever@eecs.umich.edu    disable_partial = \
12062655Sstever@eecs.umich.edu            env.get('BROKEN_INCREMENTAL_LTO', False) and \
12072655Sstever@eecs.umich.edu            GetOption('force_lto')
120812063Sgabeblack@google.com    makeEnv(env, 'fast', '.fo', strip = True,
12095601Snate@binkert.org            CCFLAGS = Split(ccflags['fast']),
12105601Snate@binkert.org            CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
121112222Sgabeblack@google.com            LINKFLAGS = Split(ldflags['fast']),
121212222Sgabeblack@google.com            disable_partial=disable_partial)
12135522Snate@binkert.org
12145863Snate@binkert.org# Profiled binary using gprof
12155601Snate@binkert.orgif 'prof' in needed_envs:
12165601Snate@binkert.org    makeEnv(env, 'prof', '.po',
12175601Snate@binkert.org            CCFLAGS = Split(ccflags['prof']),
121812302Sgabeblack@google.com            CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
121910453SAndrew.Bardsley@arm.com            LINKFLAGS = Split(ldflags['prof']))
122011988Sandreas.sandberg@arm.com
122111988Sandreas.sandberg@arm.com# Profiled binary using google-pprof
122210453SAndrew.Bardsley@arm.comif 'perf' in needed_envs:
122312302Sgabeblack@google.com    makeEnv(env, 'perf', '.gpo',
122410453SAndrew.Bardsley@arm.com            CCFLAGS = Split(ccflags['perf']),
122511983Sgabeblack@google.com            CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
122611983Sgabeblack@google.com            LINKFLAGS = Split(ldflags['perf']))
122712302Sgabeblack@google.com