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