SConscript revision 10133
1955SN/A# -*- mode:python -*-
2955SN/A
31762SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan
4955SN/A# All rights reserved.
5955SN/A#
6955SN/A# Redistribution and use in source and binary forms, with or without
7955SN/A# modification, are permitted provided that the following conditions are
8955SN/A# met: redistributions of source code must retain the above copyright
9955SN/A# notice, this list of conditions and the following disclaimer;
10955SN/A# redistributions in binary form must reproduce the above copyright
11955SN/A# notice, this list of conditions and the following disclaimer in the
12955SN/A# documentation and/or other materials provided with the distribution;
13955SN/A# neither the name of the copyright holders nor the names of its
14955SN/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.
282665Ssaidi@eecs.umich.edu#
294762Snate@binkert.org# Authors: Nathan Binkert
30955SN/A
315522Snate@binkert.orgimport array
326143Snate@binkert.orgimport bisect
334762Snate@binkert.orgimport imp
345522Snate@binkert.orgimport marshal
35955SN/Aimport os
365522Snate@binkert.orgimport re
37955SN/Aimport sys
385522Snate@binkert.orgimport zlib
394202Sbinkertn@umich.edu
405742Snate@binkert.orgfrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath
41955SN/A
424381Sbinkertn@umich.eduimport SCons
434381Sbinkertn@umich.edu
448334Snate@binkert.org# This file defines how to build a particular configuration of gem5
45955SN/A# based on variable settings in the 'env' build environment.
46955SN/A
474202Sbinkertn@umich.eduImport('*')
48955SN/A
494382Sbinkertn@umich.edu# Children need to see the environment
504382Sbinkertn@umich.eduExport('env')
514382Sbinkertn@umich.edu
526654Snate@binkert.orgbuild_env = [(opt, env[opt]) for opt in export_vars]
535517Snate@binkert.org
548614Sgblack@eecs.umich.edufrom m5.util import code_formatter, compareVersions
557674Snate@binkert.org
566143Snate@binkert.org########################################################################
576143Snate@binkert.org# Code for adding source files of various types
586143Snate@binkert.org#
598233Snate@binkert.org# When specifying a source file of some type, a set of guards can be
608233Snate@binkert.org# specified for that file.  When get() is used to find the files, if
618233Snate@binkert.org# get specifies a set of filters, only files that match those filters
628233Snate@binkert.org# will be accepted (unspecified filters on files are assumed to be
638233Snate@binkert.org# false).  Current filters are:
648334Snate@binkert.org#     main -- specifies the gem5 main() function
658334Snate@binkert.org#     skip_lib -- do not put this file into the gem5 library
6610453SAndrew.Bardsley@arm.com#     <unittest> -- unit tests use filters based on the unit test name
6710453SAndrew.Bardsley@arm.com#
688233Snate@binkert.org# A parent can now be specified for a source file and default filter
698233Snate@binkert.org# values will be retrieved recursively from parents (children override
708233Snate@binkert.org# parents).
718233Snate@binkert.org#
728233Snate@binkert.orgclass SourceMeta(type):
738233Snate@binkert.org    '''Meta class for source files that keeps track of all files of a
746143Snate@binkert.org    particular type and has a get function for finding all functions
758233Snate@binkert.org    of a certain type that match a set of guards'''
768233Snate@binkert.org    def __init__(cls, name, bases, dict):
778233Snate@binkert.org        super(SourceMeta, cls).__init__(name, bases, dict)
786143Snate@binkert.org        cls.all = []
796143Snate@binkert.org        
806143Snate@binkert.org    def get(cls, **guards):
8111308Santhony.gutierrez@amd.com        '''Find all files that match the specified guards.  If a source
828233Snate@binkert.org        file does not specify a flag, the default is False'''
838233Snate@binkert.org        for src in cls.all:
848233Snate@binkert.org            for flag,value in guards.iteritems():
856143Snate@binkert.org                # if the flag is found and has a different value, skip
868233Snate@binkert.org                # this file
878233Snate@binkert.org                if src.all_guards.get(flag, False) != value:
888233Snate@binkert.org                    break
898233Snate@binkert.org            else:
906143Snate@binkert.org                yield src
916143Snate@binkert.org
926143Snate@binkert.orgclass SourceFile(object):
934762Snate@binkert.org    '''Base object that encapsulates the notion of a source file.
946143Snate@binkert.org    This includes, the source node, target node, various manipulations
958233Snate@binkert.org    of those.  A source file also specifies a set of guards which
968233Snate@binkert.org    describing which builds the source file applies to.  A parent can
978233Snate@binkert.org    also be specified to get default guards from'''
988233Snate@binkert.org    __metaclass__ = SourceMeta
998233Snate@binkert.org    def __init__(self, source, parent=None, **guards):
1006143Snate@binkert.org        self.guards = guards
1018233Snate@binkert.org        self.parent = parent
1028233Snate@binkert.org
1038233Snate@binkert.org        tnode = source
1048233Snate@binkert.org        if not isinstance(source, SCons.Node.FS.File):
1056143Snate@binkert.org            tnode = File(source)
1066143Snate@binkert.org
1076143Snate@binkert.org        self.tnode = tnode
1086143Snate@binkert.org        self.snode = tnode.srcnode()
1096143Snate@binkert.org
1106143Snate@binkert.org        for base in type(self).__mro__:
1116143Snate@binkert.org            if issubclass(base, SourceFile):
1126143Snate@binkert.org                base.all.append(self)
1136143Snate@binkert.org
1147065Snate@binkert.org    @property
1156143Snate@binkert.org    def filename(self):
1168233Snate@binkert.org        return str(self.tnode)
1178233Snate@binkert.org
1188233Snate@binkert.org    @property
1198233Snate@binkert.org    def dirname(self):
1208233Snate@binkert.org        return dirname(self.filename)
1218233Snate@binkert.org
1228233Snate@binkert.org    @property
1238233Snate@binkert.org    def basename(self):
1248233Snate@binkert.org        return basename(self.filename)
1258233Snate@binkert.org
1268233Snate@binkert.org    @property
1278233Snate@binkert.org    def extname(self):
1288233Snate@binkert.org        index = self.basename.rfind('.')
1298233Snate@binkert.org        if index <= 0:
1308233Snate@binkert.org            # dot files aren't extensions
1318233Snate@binkert.org            return self.basename, None
1328233Snate@binkert.org
1338233Snate@binkert.org        return self.basename[:index], self.basename[index+1:]
1348233Snate@binkert.org
1358233Snate@binkert.org    @property
1368233Snate@binkert.org    def all_guards(self):
1378233Snate@binkert.org        '''find all guards for this object getting default values
1388233Snate@binkert.org        recursively from its parents'''
1398233Snate@binkert.org        guards = {}
1408233Snate@binkert.org        if self.parent:
1418233Snate@binkert.org            guards.update(self.parent.guards)
1428233Snate@binkert.org        guards.update(self.guards)
1438233Snate@binkert.org        return guards
1448233Snate@binkert.org
1458233Snate@binkert.org    def __lt__(self, other): return self.filename < other.filename
1468233Snate@binkert.org    def __le__(self, other): return self.filename <= other.filename
1476143Snate@binkert.org    def __gt__(self, other): return self.filename > other.filename
1486143Snate@binkert.org    def __ge__(self, other): return self.filename >= other.filename
1496143Snate@binkert.org    def __eq__(self, other): return self.filename == other.filename
1506143Snate@binkert.org    def __ne__(self, other): return self.filename != other.filename
1516143Snate@binkert.org
1526143Snate@binkert.orgclass Source(SourceFile):
1539982Satgutier@umich.edu    '''Add a c/c++ source file to the build'''
15410196SCurtis.Dunham@arm.com    def __init__(self, source, Werror=True, swig=False, **guards):
15510196SCurtis.Dunham@arm.com        '''specify the source file, and any guards'''
15610196SCurtis.Dunham@arm.com        super(Source, self).__init__(source, **guards)
15710196SCurtis.Dunham@arm.com
15810196SCurtis.Dunham@arm.com        self.Werror = Werror
15910196SCurtis.Dunham@arm.com        self.swig = swig
16010196SCurtis.Dunham@arm.com
16110196SCurtis.Dunham@arm.comclass PySource(SourceFile):
1626143Snate@binkert.org    '''Add a python source file to the named package'''
1636143Snate@binkert.org    invalid_sym_char = re.compile('[^A-z0-9_]')
1648945Ssteve.reinhardt@amd.com    modules = {}
1658233Snate@binkert.org    tnodes = {}
1668233Snate@binkert.org    symnames = {}
1676143Snate@binkert.org
1688945Ssteve.reinhardt@amd.com    def __init__(self, package, source, **guards):
1696143Snate@binkert.org        '''specify the python package, the source file, and any guards'''
1706143Snate@binkert.org        super(PySource, self).__init__(source, **guards)
1716143Snate@binkert.org
1726143Snate@binkert.org        modname,ext = self.extname
1735522Snate@binkert.org        assert ext == 'py'
1746143Snate@binkert.org
1756143Snate@binkert.org        if package:
1766143Snate@binkert.org            path = package.split('.')
1779982Satgutier@umich.edu        else:
1788233Snate@binkert.org            path = []
1798233Snate@binkert.org
1808233Snate@binkert.org        modpath = path[:]
1816143Snate@binkert.org        if modname != '__init__':
1826143Snate@binkert.org            modpath += [ modname ]
1836143Snate@binkert.org        modpath = '.'.join(modpath)
1846143Snate@binkert.org
1855522Snate@binkert.org        arcpath = path + [ self.basename ]
1865522Snate@binkert.org        abspath = self.snode.abspath
1875522Snate@binkert.org        if not exists(abspath):
1885522Snate@binkert.org            abspath = self.tnode.abspath
1895604Snate@binkert.org
1905604Snate@binkert.org        self.package = package
1916143Snate@binkert.org        self.modname = modname
1926143Snate@binkert.org        self.modpath = modpath
1934762Snate@binkert.org        self.arcname = joinpath(*arcpath)
1944762Snate@binkert.org        self.abspath = abspath
1956143Snate@binkert.org        self.compiled = File(self.filename + 'c')
1966727Ssteve.reinhardt@amd.com        self.cpp = File(self.filename + '.cc')
1976727Ssteve.reinhardt@amd.com        self.symname = PySource.invalid_sym_char.sub('_', modpath)
1986727Ssteve.reinhardt@amd.com
1994762Snate@binkert.org        PySource.modules[modpath] = self
2006143Snate@binkert.org        PySource.tnodes[self.tnode] = self
2016143Snate@binkert.org        PySource.symnames[self.symname] = self
2026143Snate@binkert.org
2036143Snate@binkert.orgclass SimObject(PySource):
2046727Ssteve.reinhardt@amd.com    '''Add a SimObject python file as a python source object and add
2056143Snate@binkert.org    it to a list of sim object modules'''
2067674Snate@binkert.org
2077674Snate@binkert.org    fixed = False
2085604Snate@binkert.org    modnames = []
2096143Snate@binkert.org
2106143Snate@binkert.org    def __init__(self, source, **guards):
2116143Snate@binkert.org        '''Specify the source file and any guards (automatically in
2124762Snate@binkert.org        the m5.objects package)'''
2136143Snate@binkert.org        super(SimObject, self).__init__('m5.objects', source, **guards)
2144762Snate@binkert.org        if self.fixed:
2154762Snate@binkert.org            raise AttributeError, "Too late to call SimObject now."
2164762Snate@binkert.org
2176143Snate@binkert.org        bisect.insort_right(SimObject.modnames, self.modname)
2186143Snate@binkert.org
2194762Snate@binkert.orgclass SwigSource(SourceFile):
2208233Snate@binkert.org    '''Add a swig file to build'''
2218233Snate@binkert.org
2228233Snate@binkert.org    def __init__(self, package, source, **guards):
2238233Snate@binkert.org        '''Specify the python package, the source file, and any guards'''
2246143Snate@binkert.org        super(SwigSource, self).__init__(source, **guards)
2256143Snate@binkert.org
2264762Snate@binkert.org        modname,ext = self.extname
2276143Snate@binkert.org        assert ext == 'i'
2284762Snate@binkert.org
2296143Snate@binkert.org        self.module = modname
2304762Snate@binkert.org        cc_file = joinpath(self.dirname, modname + '_wrap.cc')
2316143Snate@binkert.org        py_file = joinpath(self.dirname, modname + '.py')
2328233Snate@binkert.org
2338233Snate@binkert.org        self.cc_source = Source(cc_file, swig=True, parent=self)
23410453SAndrew.Bardsley@arm.com        self.py_source = PySource(package, py_file, parent=self)
2356143Snate@binkert.org
2366143Snate@binkert.orgclass ProtoBuf(SourceFile):
2376143Snate@binkert.org    '''Add a Protocol Buffer to build'''
2386143Snate@binkert.org
2396143Snate@binkert.org    def __init__(self, source, **guards):
2406143Snate@binkert.org        '''Specify the source file, and any guards'''
2416143Snate@binkert.org        super(ProtoBuf, self).__init__(source, **guards)
2426143Snate@binkert.org
24310453SAndrew.Bardsley@arm.com        # Get the file name and the extension
24410453SAndrew.Bardsley@arm.com        modname,ext = self.extname
245955SN/A        assert ext == 'proto'
2469396Sandreas.hansson@arm.com
2479396Sandreas.hansson@arm.com        # Currently, we stick to generating the C++ headers, so we
2489396Sandreas.hansson@arm.com        # only need to track the source and header.
2499396Sandreas.hansson@arm.com        self.cc_file = File(modname + '.pb.cc')
2509396Sandreas.hansson@arm.com        self.hh_file = File(modname + '.pb.h')
2519396Sandreas.hansson@arm.com
2529396Sandreas.hansson@arm.comclass UnitTest(object):
2539396Sandreas.hansson@arm.com    '''Create a UnitTest'''
2549396Sandreas.hansson@arm.com
2559396Sandreas.hansson@arm.com    all = []
2569396Sandreas.hansson@arm.com    def __init__(self, target, *sources, **kwargs):
2579396Sandreas.hansson@arm.com        '''Specify the target name and any sources.  Sources that are
2589396Sandreas.hansson@arm.com        not SourceFiles are evalued with Source().  All files are
2599930Sandreas.hansson@arm.com        guarded with a guard of the same name as the UnitTest
2609930Sandreas.hansson@arm.com        target.'''
2619396Sandreas.hansson@arm.com
2628235Snate@binkert.org        srcs = []
2638235Snate@binkert.org        for src in sources:
2646143Snate@binkert.org            if not isinstance(src, SourceFile):
2658235Snate@binkert.org                src = Source(src, skip_lib=True)
2669003SAli.Saidi@ARM.com            src.guards[target] = True
2678235Snate@binkert.org            srcs.append(src)
2688235Snate@binkert.org
2698235Snate@binkert.org        self.sources = srcs
2708235Snate@binkert.org        self.target = target
2718235Snate@binkert.org        self.main = kwargs.get('main', False)
2728235Snate@binkert.org        UnitTest.all.append(self)
2738235Snate@binkert.org
2748235Snate@binkert.org# Children should have access
2758235Snate@binkert.orgExport('Source')
2768235Snate@binkert.orgExport('PySource')
2778235Snate@binkert.orgExport('SimObject')
2788235Snate@binkert.orgExport('SwigSource')
2798235Snate@binkert.orgExport('ProtoBuf')
2808235Snate@binkert.orgExport('UnitTest')
2819003SAli.Saidi@ARM.com
2828235Snate@binkert.org########################################################################
2835584Snate@binkert.org#
2844382Sbinkertn@umich.edu# Debug Flags
2854202Sbinkertn@umich.edu#
2864382Sbinkertn@umich.edudebug_flags = {}
2874382Sbinkertn@umich.edudef DebugFlag(name, desc=None):
2884382Sbinkertn@umich.edu    if name in debug_flags:
2899396Sandreas.hansson@arm.com        raise AttributeError, "Flag %s already specified" % name
2905584Snate@binkert.org    debug_flags[name] = (name, (), desc)
2914382Sbinkertn@umich.edu
2924382Sbinkertn@umich.edudef CompoundFlag(name, flags, desc=None):
2934382Sbinkertn@umich.edu    if name in debug_flags:
2948232Snate@binkert.org        raise AttributeError, "Flag %s already specified" % name
2955192Ssaidi@eecs.umich.edu
2968232Snate@binkert.org    compound = tuple(flags)
2978232Snate@binkert.org    debug_flags[name] = (name, compound, desc)
2988232Snate@binkert.org
2995192Ssaidi@eecs.umich.eduExport('DebugFlag')
3008232Snate@binkert.orgExport('CompoundFlag')
3015192Ssaidi@eecs.umich.edu
3025799Snate@binkert.org########################################################################
3038232Snate@binkert.org#
3045192Ssaidi@eecs.umich.edu# Set some compiler variables
3055192Ssaidi@eecs.umich.edu#
3065192Ssaidi@eecs.umich.edu
3078232Snate@binkert.org# Include file paths are rooted in this directory.  SCons will
3085192Ssaidi@eecs.umich.edu# automatically expand '.' to refer to both the source directory and
3098232Snate@binkert.org# the corresponding build directory to pick up generated include
3105192Ssaidi@eecs.umich.edu# files.
3115192Ssaidi@eecs.umich.eduenv.Append(CPPPATH=Dir('.'))
3125192Ssaidi@eecs.umich.edu
3135192Ssaidi@eecs.umich.edufor extra_dir in extras_dir_list:
3144382Sbinkertn@umich.edu    env.Append(CPPPATH=Dir(extra_dir))
3154382Sbinkertn@umich.edu
3164382Sbinkertn@umich.edu# Workaround for bug in SCons version > 0.97d20071212
3172667Sstever@eecs.umich.edu# Scons bug id: 2006 gem5 Bug id: 308
3182667Sstever@eecs.umich.edufor root, dirs, files in os.walk(base_dir, topdown=True):
3192667Sstever@eecs.umich.edu    Dir(root[len(base_dir) + 1:])
3202667Sstever@eecs.umich.edu
3212667Sstever@eecs.umich.edu########################################################################
3222667Sstever@eecs.umich.edu#
3235742Snate@binkert.org# Walk the tree and execute all SConscripts in subdirectories
3245742Snate@binkert.org#
3255742Snate@binkert.org
3265793Snate@binkert.orghere = Dir('.').srcnode().abspath
3278334Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True):
3285793Snate@binkert.org    if root == here:
3295793Snate@binkert.org        # we don't want to recurse back into this SConscript
3305793Snate@binkert.org        continue
3314382Sbinkertn@umich.edu
3324762Snate@binkert.org    if 'SConscript' in files:
3335344Sstever@gmail.com        build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:])
3344382Sbinkertn@umich.edu        SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir)
3355341Sstever@gmail.com
3365742Snate@binkert.orgfor extra_dir in extras_dir_list:
3375742Snate@binkert.org    prefix_len = len(dirname(extra_dir)) + 1
3385742Snate@binkert.org
3395742Snate@binkert.org    # Also add the corresponding build directory to pick up generated
3405742Snate@binkert.org    # include files.
3414762Snate@binkert.org    env.Append(CPPPATH=Dir(joinpath(env['BUILDDIR'], extra_dir[prefix_len:])))
3425742Snate@binkert.org
3435742Snate@binkert.org    for root, dirs, files in os.walk(extra_dir, topdown=True):
3447722Sgblack@eecs.umich.edu        # if build lives in the extras directory, don't walk down it
3455742Snate@binkert.org        if 'build' in dirs:
3465742Snate@binkert.org            dirs.remove('build')
3475742Snate@binkert.org
3489930Sandreas.hansson@arm.com        if 'SConscript' in files:
3499930Sandreas.hansson@arm.com            build_dir = joinpath(env['BUILDDIR'], root[prefix_len:])
3509930Sandreas.hansson@arm.com            SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir)
3519930Sandreas.hansson@arm.com
3529930Sandreas.hansson@arm.comfor opt in export_vars:
3535742Snate@binkert.org    env.ConfigFile(opt)
3548242Sbradley.danofsky@amd.com
3558242Sbradley.danofsky@amd.comdef makeTheISA(source, target, env):
3568242Sbradley.danofsky@amd.com    isas = [ src.get_contents() for src in source ]
3578242Sbradley.danofsky@amd.com    target_isa = env['TARGET_ISA']
3585341Sstever@gmail.com    def define(isa):
3595742Snate@binkert.org        return isa.upper() + '_ISA'
3607722Sgblack@eecs.umich.edu    
3614773Snate@binkert.org    def namespace(isa):
3626108Snate@binkert.org        return isa[0].upper() + isa[1:].lower() + 'ISA' 
3631858SN/A
3641085SN/A
3656658Snate@binkert.org    code = code_formatter()
3666658Snate@binkert.org    code('''\
3677673Snate@binkert.org#ifndef __CONFIG_THE_ISA_HH__
3686658Snate@binkert.org#define __CONFIG_THE_ISA_HH__
3696658Snate@binkert.org
37011308Santhony.gutierrez@amd.com''')
3716658Snate@binkert.org
37211308Santhony.gutierrez@amd.com    for i,isa in enumerate(isas):
3736658Snate@binkert.org        code('#define $0 $1', define(isa), i + 1)
3746658Snate@binkert.org
3757673Snate@binkert.org    code('''
3767673Snate@binkert.org
3777673Snate@binkert.org#define THE_ISA ${{define(target_isa)}}
3787673Snate@binkert.org#define TheISA ${{namespace(target_isa)}}
3797673Snate@binkert.org#define THE_ISA_STR "${{target_isa}}"
3807673Snate@binkert.org
3817673Snate@binkert.org#endif // __CONFIG_THE_ISA_HH__''')
38210467Sandreas.hansson@arm.com
3836658Snate@binkert.org    code.write(str(target[0]))
3847673Snate@binkert.org
38510467Sandreas.hansson@arm.comenv.Command('config/the_isa.hh', map(Value, all_isa_list),
38610467Sandreas.hansson@arm.com            MakeAction(makeTheISA, Transform("CFG ISA", 0)))
38710467Sandreas.hansson@arm.com
38810467Sandreas.hansson@arm.com########################################################################
38910467Sandreas.hansson@arm.com#
39010467Sandreas.hansson@arm.com# Prevent any SimObjects from being added after this point, they
39110467Sandreas.hansson@arm.com# should all have been added in the SConscripts above
39210467Sandreas.hansson@arm.com#
39310467Sandreas.hansson@arm.comSimObject.fixed = True
39410467Sandreas.hansson@arm.com
39510467Sandreas.hansson@arm.comclass DictImporter(object):
3967673Snate@binkert.org    '''This importer takes a dictionary of arbitrary module names that
3977673Snate@binkert.org    map to arbitrary filenames.'''
3987673Snate@binkert.org    def __init__(self, modules):
3997673Snate@binkert.org        self.modules = modules
4007673Snate@binkert.org        self.installed = set()
4019048SAli.Saidi@ARM.com
4027673Snate@binkert.org    def __del__(self):
4037673Snate@binkert.org        self.unload()
4047673Snate@binkert.org
4057673Snate@binkert.org    def unload(self):
4066658Snate@binkert.org        import sys
4077756SAli.Saidi@ARM.com        for module in self.installed:
4087816Ssteve.reinhardt@amd.com            del sys.modules[module]
4096658Snate@binkert.org        self.installed = set()
41011308Santhony.gutierrez@amd.com
41111308Santhony.gutierrez@amd.com    def find_module(self, fullname, path):
41211308Santhony.gutierrez@amd.com        if fullname == 'm5.defines':
41311308Santhony.gutierrez@amd.com            return self
41411308Santhony.gutierrez@amd.com
41511308Santhony.gutierrez@amd.com        if fullname == 'm5.objects':
41611308Santhony.gutierrez@amd.com            return self
41711308Santhony.gutierrez@amd.com
41811308Santhony.gutierrez@amd.com        if fullname.startswith('m5.internal'):
41911308Santhony.gutierrez@amd.com            return None
42011308Santhony.gutierrez@amd.com
42111308Santhony.gutierrez@amd.com        source = self.modules.get(fullname, None)
42211308Santhony.gutierrez@amd.com        if source is not None and fullname.startswith('m5.objects'):
42311308Santhony.gutierrez@amd.com            return self
42411308Santhony.gutierrez@amd.com
42511308Santhony.gutierrez@amd.com        return None
42611308Santhony.gutierrez@amd.com
42711308Santhony.gutierrez@amd.com    def load_module(self, fullname):
42811308Santhony.gutierrez@amd.com        mod = imp.new_module(fullname)
42911308Santhony.gutierrez@amd.com        sys.modules[fullname] = mod
43011308Santhony.gutierrez@amd.com        self.installed.add(fullname)
43111308Santhony.gutierrez@amd.com
43211308Santhony.gutierrez@amd.com        mod.__loader__ = self
43311308Santhony.gutierrez@amd.com        if fullname == 'm5.objects':
43411308Santhony.gutierrez@amd.com            mod.__path__ = fullname.split('.')
43511308Santhony.gutierrez@amd.com            return mod
43611308Santhony.gutierrez@amd.com
43711308Santhony.gutierrez@amd.com        if fullname == 'm5.defines':
43811308Santhony.gutierrez@amd.com            mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env)
43911308Santhony.gutierrez@amd.com            return mod
44011308Santhony.gutierrez@amd.com
44111308Santhony.gutierrez@amd.com        source = self.modules[fullname]
44211308Santhony.gutierrez@amd.com        if source.modname == '__init__':
44311308Santhony.gutierrez@amd.com            mod.__path__ = source.modpath
44411308Santhony.gutierrez@amd.com        mod.__file__ = source.abspath
44511308Santhony.gutierrez@amd.com
44611308Santhony.gutierrez@amd.com        exec file(source.abspath, 'r') in mod.__dict__
44711308Santhony.gutierrez@amd.com
44811308Santhony.gutierrez@amd.com        return mod
44911308Santhony.gutierrez@amd.com
45011308Santhony.gutierrez@amd.comimport m5.SimObject
45111308Santhony.gutierrez@amd.comimport m5.params
45211308Santhony.gutierrez@amd.comfrom m5.util import code_formatter
45311308Santhony.gutierrez@amd.com
45411308Santhony.gutierrez@amd.comm5.SimObject.clear()
4554382Sbinkertn@umich.edum5.params.clear()
4564382Sbinkertn@umich.edu
4574762Snate@binkert.org# install the python importer so we can grab stuff from the source
4584762Snate@binkert.org# tree itself.  We can't have SimObjects added after this point or
4594762Snate@binkert.org# else we won't know about them for the rest of the stuff.
4606654Snate@binkert.orgimporter = DictImporter(PySource.modules)
4616654Snate@binkert.orgsys.meta_path[0:0] = [ importer ]
4625517Snate@binkert.org
4635517Snate@binkert.org# import all sim objects so we can populate the all_objects list
4645517Snate@binkert.org# make sure that we're working with a list, then let's sort it
4655517Snate@binkert.orgfor modname in SimObject.modnames:
4665517Snate@binkert.org    exec('from m5.objects import %s' % modname)
4675517Snate@binkert.org
4685517Snate@binkert.org# we need to unload all of the currently imported modules so that they
4695517Snate@binkert.org# will be re-imported the next time the sconscript is run
4705517Snate@binkert.orgimporter.unload()
4715517Snate@binkert.orgsys.meta_path.remove(importer)
4725517Snate@binkert.org
4735517Snate@binkert.orgsim_objects = m5.SimObject.allClasses
4745517Snate@binkert.orgall_enums = m5.params.allEnums
4755517Snate@binkert.org
4765517Snate@binkert.orgif m5.SimObject.noCxxHeader:
4775517Snate@binkert.org    print >> sys.stderr, \
4785517Snate@binkert.org        "warning: At least one SimObject lacks a header specification. " \
4796654Snate@binkert.org        "This can cause unexpected results in the generated SWIG " \
4805517Snate@binkert.org        "wrappers."
4815517Snate@binkert.org
4825517Snate@binkert.org# Find param types that need to be explicitly wrapped with swig.
4835517Snate@binkert.org# These will be recognized because the ParamDesc will have a
4845517Snate@binkert.org# swig_decl() method.  Most param types are based on types that don't
4855517Snate@binkert.org# need this, either because they're based on native types (like Int)
4865517Snate@binkert.org# or because they're SimObjects (which get swigged independently).
4875517Snate@binkert.org# For now the only things handled here are VectorParam types.
4886143Snate@binkert.orgparams_to_swig = {}
4896654Snate@binkert.orgfor name,obj in sorted(sim_objects.iteritems()):
4905517Snate@binkert.org    for param in obj._params.local.values():
4915517Snate@binkert.org        # load the ptype attribute now because it depends on the
4925517Snate@binkert.org        # current version of SimObject.allClasses, but when scons
4935517Snate@binkert.org        # actually uses the value, all versions of
4945517Snate@binkert.org        # SimObject.allClasses will have been loaded
4955517Snate@binkert.org        param.ptype
4965517Snate@binkert.org
4975517Snate@binkert.org        if not hasattr(param, 'swig_decl'):
4985517Snate@binkert.org            continue
4995517Snate@binkert.org        pname = param.ptype_str
5005517Snate@binkert.org        if pname not in params_to_swig:
5015517Snate@binkert.org            params_to_swig[pname] = param
5025517Snate@binkert.org
5035517Snate@binkert.org########################################################################
5046654Snate@binkert.org#
5056654Snate@binkert.org# calculate extra dependencies
5065517Snate@binkert.org#
5075517Snate@binkert.orgmodule_depends = ["m5", "m5.SimObject", "m5.params"]
5086143Snate@binkert.orgdepends = [ PySource.modules[dep].snode for dep in module_depends ]
5096143Snate@binkert.org
5106143Snate@binkert.org########################################################################
5116727Ssteve.reinhardt@amd.com#
5125517Snate@binkert.org# Commands for the basic automatically generated python files
5136727Ssteve.reinhardt@amd.com#
5145517Snate@binkert.org
5155517Snate@binkert.org# Generate Python file containing a dict specifying the current
5165517Snate@binkert.org# buildEnv flags.
5176654Snate@binkert.orgdef makeDefinesPyFile(target, source, env):
5186654Snate@binkert.org    build_env = source[0].get_contents()
5197673Snate@binkert.org
5206654Snate@binkert.org    code = code_formatter()
5216654Snate@binkert.org    code("""
5226654Snate@binkert.orgimport m5.internal
5236654Snate@binkert.orgimport m5.util
5245517Snate@binkert.org
5255517Snate@binkert.orgbuildEnv = m5.util.SmartDict($build_env)
5265517Snate@binkert.org
5276143Snate@binkert.orgcompileDate = m5.internal.core.compileDate
5285517Snate@binkert.org_globals = globals()
5294762Snate@binkert.orgfor key,val in m5.internal.core.__dict__.iteritems():
5305517Snate@binkert.org    if key.startswith('flag_'):
5315517Snate@binkert.org        flag = key[5:]
5326143Snate@binkert.org        _globals[flag] = val
5336143Snate@binkert.orgdel _globals
5345517Snate@binkert.org""")
5355517Snate@binkert.org    code.write(target[0].abspath)
5365517Snate@binkert.org
5375517Snate@binkert.orgdefines_info = Value(build_env)
5385517Snate@binkert.org# Generate a file with all of the compile options in it
5395517Snate@binkert.orgenv.Command('python/m5/defines.py', defines_info,
5405517Snate@binkert.org            MakeAction(makeDefinesPyFile, Transform("DEFINES", 0)))
5415517Snate@binkert.orgPySource('m5', 'python/m5/defines.py')
5425517Snate@binkert.org
5439338SAndreas.Sandberg@arm.com# Generate python file containing info about the M5 source code
5449338SAndreas.Sandberg@arm.comdef makeInfoPyFile(target, source, env):
5459338SAndreas.Sandberg@arm.com    code = code_formatter()
5469338SAndreas.Sandberg@arm.com    for src in source:
5479338SAndreas.Sandberg@arm.com        data = ''.join(file(src.srcnode().abspath, 'r').xreadlines())
5489338SAndreas.Sandberg@arm.com        code('$src = ${{repr(data)}}')
5498596Ssteve.reinhardt@amd.com    code.write(str(target[0]))
5508596Ssteve.reinhardt@amd.com
5518596Ssteve.reinhardt@amd.com# Generate a file that wraps the basic top level files
5528596Ssteve.reinhardt@amd.comenv.Command('python/m5/info.py',
5538596Ssteve.reinhardt@amd.com            [ '#/COPYING', '#/LICENSE', '#/README', ],
5548596Ssteve.reinhardt@amd.com            MakeAction(makeInfoPyFile, Transform("INFO")))
5558596Ssteve.reinhardt@amd.comPySource('m5', 'python/m5/info.py')
5566143Snate@binkert.org
5575517Snate@binkert.org########################################################################
5586654Snate@binkert.org#
5596654Snate@binkert.org# Create all of the SimObject param headers and enum headers
5606654Snate@binkert.org#
5616654Snate@binkert.org
5626654Snate@binkert.orgdef createSimObjectParamStruct(target, source, env):
5636654Snate@binkert.org    assert len(target) == 1 and len(source) == 1
5645517Snate@binkert.org
5655517Snate@binkert.org    name = str(source[0].get_contents())
5665517Snate@binkert.org    obj = sim_objects[name]
5678596Ssteve.reinhardt@amd.com
5688596Ssteve.reinhardt@amd.com    code = code_formatter()
5694762Snate@binkert.org    obj.cxx_param_decl(code)
5704762Snate@binkert.org    code.write(target[0].abspath)
5714762Snate@binkert.org
5724762Snate@binkert.orgdef createParamSwigWrapper(target, source, env):
5734762Snate@binkert.org    assert len(target) == 1 and len(source) == 1
5744762Snate@binkert.org
5757675Snate@binkert.org    name = str(source[0].get_contents())
57610584Sandreas.hansson@arm.com    param = params_to_swig[name]
5774762Snate@binkert.org
5784762Snate@binkert.org    code = code_formatter()
5794762Snate@binkert.org    param.swig_decl(code)
5804762Snate@binkert.org    code.write(target[0].abspath)
5814382Sbinkertn@umich.edu
5824382Sbinkertn@umich.edudef createEnumStrings(target, source, env):
5835517Snate@binkert.org    assert len(target) == 1 and len(source) == 1
5846654Snate@binkert.org
5855517Snate@binkert.org    name = str(source[0].get_contents())
5868126Sgblack@eecs.umich.edu    obj = all_enums[name]
5876654Snate@binkert.org
5887673Snate@binkert.org    code = code_formatter()
5896654Snate@binkert.org    obj.cxx_def(code)
5906654Snate@binkert.org    code.write(target[0].abspath)
5916654Snate@binkert.org
5926654Snate@binkert.orgdef createEnumDecls(target, source, env):
5936654Snate@binkert.org    assert len(target) == 1 and len(source) == 1
5946654Snate@binkert.org
5956654Snate@binkert.org    name = str(source[0].get_contents())
5966669Snate@binkert.org    obj = all_enums[name]
5976669Snate@binkert.org
5986669Snate@binkert.org    code = code_formatter()
5996669Snate@binkert.org    obj.cxx_decl(code)
6006669Snate@binkert.org    code.write(target[0].abspath)
6016669Snate@binkert.org
6026654Snate@binkert.orgdef createEnumSwigWrapper(target, source, env):
6037673Snate@binkert.org    assert len(target) == 1 and len(source) == 1
6045517Snate@binkert.org
6058126Sgblack@eecs.umich.edu    name = str(source[0].get_contents())
6065798Snate@binkert.org    obj = all_enums[name]
6077756SAli.Saidi@ARM.com
6087816Ssteve.reinhardt@amd.com    code = code_formatter()
6095798Snate@binkert.org    obj.swig_decl(code)
6105798Snate@binkert.org    code.write(target[0].abspath)
6115517Snate@binkert.org
6125517Snate@binkert.orgdef createSimObjectSwigWrapper(target, source, env):
6137673Snate@binkert.org    name = source[0].get_contents()
6145517Snate@binkert.org    obj = sim_objects[name]
6155517Snate@binkert.org
6167673Snate@binkert.org    code = code_formatter()
6177673Snate@binkert.org    obj.swig_decl(code)
6185517Snate@binkert.org    code.write(target[0].abspath)
6195798Snate@binkert.org
6205798Snate@binkert.org# Generate all of the SimObject param C++ struct header files
6218333Snate@binkert.orgparams_hh_files = []
6227816Ssteve.reinhardt@amd.comfor name,simobj in sorted(sim_objects.iteritems()):
6235798Snate@binkert.org    py_source = PySource.modules[simobj.__module__]
6245798Snate@binkert.org    extra_deps = [ py_source.tnode ]
6254762Snate@binkert.org
6264762Snate@binkert.org    hh_file = File('params/%s.hh' % name)
6274762Snate@binkert.org    params_hh_files.append(hh_file)
6284762Snate@binkert.org    env.Command(hh_file, Value(name),
6294762Snate@binkert.org                MakeAction(createSimObjectParamStruct, Transform("SO PARAM")))
6308596Ssteve.reinhardt@amd.com    env.Depends(hh_file, depends + extra_deps)
6315517Snate@binkert.org
6325517Snate@binkert.org# Generate any needed param SWIG wrapper files
6335517Snate@binkert.orgparams_i_files = []
6345517Snate@binkert.orgfor name,param in params_to_swig.iteritems():
6355517Snate@binkert.org    i_file = File('python/m5/internal/%s.i' % (param.swig_module_name()))
6367673Snate@binkert.org    params_i_files.append(i_file)
6378596Ssteve.reinhardt@amd.com    env.Command(i_file, Value(name),
6387673Snate@binkert.org                MakeAction(createParamSwigWrapper, Transform("SW PARAM")))
6395517Snate@binkert.org    env.Depends(i_file, depends)
64010458Sandreas.hansson@arm.com    SwigSource('m5.internal', i_file)
64110458Sandreas.hansson@arm.com
64210458Sandreas.hansson@arm.com# Generate all enum header files
64310458Sandreas.hansson@arm.comfor name,enum in sorted(all_enums.iteritems()):
64410458Sandreas.hansson@arm.com    py_source = PySource.modules[enum.__module__]
64510458Sandreas.hansson@arm.com    extra_deps = [ py_source.tnode ]
64610458Sandreas.hansson@arm.com
64710458Sandreas.hansson@arm.com    cc_file = File('enums/%s.cc' % name)
64810458Sandreas.hansson@arm.com    env.Command(cc_file, Value(name),
64910458Sandreas.hansson@arm.com                MakeAction(createEnumStrings, Transform("ENUM STR")))
65010458Sandreas.hansson@arm.com    env.Depends(cc_file, depends + extra_deps)
65110458Sandreas.hansson@arm.com    Source(cc_file)
6528596Ssteve.reinhardt@amd.com
6535517Snate@binkert.org    hh_file = File('enums/%s.hh' % name)
6545517Snate@binkert.org    env.Command(hh_file, Value(name),
6555517Snate@binkert.org                MakeAction(createEnumDecls, Transform("ENUMDECL")))
6568596Ssteve.reinhardt@amd.com    env.Depends(hh_file, depends + extra_deps)
6575517Snate@binkert.org
6587673Snate@binkert.org    i_file = File('python/m5/internal/enum_%s.i' % name)
6597673Snate@binkert.org    env.Command(i_file, Value(name),
6607673Snate@binkert.org                MakeAction(createEnumSwigWrapper, Transform("ENUMSWIG")))
6615517Snate@binkert.org    env.Depends(i_file, depends + extra_deps)
6625517Snate@binkert.org    SwigSource('m5.internal', i_file)
6635517Snate@binkert.org
6645517Snate@binkert.org# Generate SimObject SWIG wrapper files
6655517Snate@binkert.orgfor name,simobj in sim_objects.iteritems():
6665517Snate@binkert.org    py_source = PySource.modules[simobj.__module__]
6675517Snate@binkert.org    extra_deps = [ py_source.tnode ]
6687673Snate@binkert.org
6697673Snate@binkert.org    i_file = File('python/m5/internal/param_%s.i' % name)
6707673Snate@binkert.org    env.Command(i_file, Value(name),
6715517Snate@binkert.org                MakeAction(createSimObjectSwigWrapper, Transform("SO SWIG")))
6728596Ssteve.reinhardt@amd.com    env.Depends(i_file, depends + extra_deps)
6735517Snate@binkert.org    SwigSource('m5.internal', i_file)
6745517Snate@binkert.org
6755517Snate@binkert.org# Generate the main swig init file
6765517Snate@binkert.orgdef makeEmbeddedSwigInit(target, source, env):
6775517Snate@binkert.org    code = code_formatter()
6787673Snate@binkert.org    module = source[0].get_contents()
6797673Snate@binkert.org    code('''\
6807673Snate@binkert.org#include "sim/init.hh"
6815517Snate@binkert.org
6828596Ssteve.reinhardt@amd.comextern "C" {
6837675Snate@binkert.org    void init_${module}();
6847675Snate@binkert.org}
6857675Snate@binkert.org
6867675Snate@binkert.orgEmbeddedSwig embed_swig_${module}(init_${module});
6877675Snate@binkert.org''')
6887675Snate@binkert.org    code.write(str(target[0]))
6898596Ssteve.reinhardt@amd.com    
6907675Snate@binkert.org# Build all swig modules
6917675Snate@binkert.orgfor swig in SwigSource.all:
6928596Ssteve.reinhardt@amd.com    env.Command([swig.cc_source.tnode, swig.py_source.tnode], swig.tnode,
6938596Ssteve.reinhardt@amd.com                MakeAction('$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} '
6948596Ssteve.reinhardt@amd.com                '-o ${TARGETS[0]} $SOURCES', Transform("SWIG")))
6958596Ssteve.reinhardt@amd.com    cc_file = str(swig.tnode)
6968596Ssteve.reinhardt@amd.com    init_file = '%s/%s_init.cc' % (dirname(cc_file), basename(cc_file))
6978596Ssteve.reinhardt@amd.com    env.Command(init_file, Value(swig.module),
6988596Ssteve.reinhardt@amd.com                MakeAction(makeEmbeddedSwigInit, Transform("EMBED SW")))
6998596Ssteve.reinhardt@amd.com    Source(init_file, **swig.guards)
70010454SCurtis.Dunham@arm.com
70110454SCurtis.Dunham@arm.com# Build all protocol buffers if we have got protoc and protobuf available
70210454SCurtis.Dunham@arm.comif env['HAVE_PROTOBUF']:
70310454SCurtis.Dunham@arm.com    for proto in ProtoBuf.all:
7048596Ssteve.reinhardt@amd.com        # Use both the source and header as the target, and the .proto
7054762Snate@binkert.org        # file as the source. When executing the protoc compiler, also
7066143Snate@binkert.org        # specify the proto_path to avoid having the generated files
7076143Snate@binkert.org        # include the path.
7086143Snate@binkert.org        env.Command([proto.cc_file, proto.hh_file], proto.tnode,
7094762Snate@binkert.org                    MakeAction('$PROTOC --cpp_out ${TARGET.dir} '
7104762Snate@binkert.org                               '--proto_path ${SOURCE.dir} $SOURCE',
7114762Snate@binkert.org                               Transform("PROTOC")))
7127756SAli.Saidi@ARM.com
7138596Ssteve.reinhardt@amd.com        # Add the C++ source file
7144762Snate@binkert.org        Source(proto.cc_file, **proto.guards)
71510454SCurtis.Dunham@arm.comelif ProtoBuf.all:
7164762Snate@binkert.org    print 'Got protobuf to build, but lacks support!'
71710458Sandreas.hansson@arm.com    Exit(1)
71810458Sandreas.hansson@arm.com
71910458Sandreas.hansson@arm.com#
72010458Sandreas.hansson@arm.com# Handle debug flags
72110458Sandreas.hansson@arm.com#
72210458Sandreas.hansson@arm.comdef makeDebugFlagCC(target, source, env):
72310458Sandreas.hansson@arm.com    assert(len(target) == 1 and len(source) == 1)
72410458Sandreas.hansson@arm.com
72510458Sandreas.hansson@arm.com    val = eval(source[0].get_contents())
72610458Sandreas.hansson@arm.com    name, compound, desc = val
72710458Sandreas.hansson@arm.com    compound = list(sorted(compound))
72810458Sandreas.hansson@arm.com
72910458Sandreas.hansson@arm.com    code = code_formatter()
73010458Sandreas.hansson@arm.com
73110458Sandreas.hansson@arm.com    # file header
73210458Sandreas.hansson@arm.com    code('''
73310458Sandreas.hansson@arm.com/*
73410458Sandreas.hansson@arm.com * DO NOT EDIT THIS FILE! Automatically generated
73510458Sandreas.hansson@arm.com */
73610458Sandreas.hansson@arm.com
73710458Sandreas.hansson@arm.com#include "base/debug.hh"
73810458Sandreas.hansson@arm.com''')
73910458Sandreas.hansson@arm.com
74010458Sandreas.hansson@arm.com    for flag in compound:
74110458Sandreas.hansson@arm.com        code('#include "debug/$flag.hh"')
74210458Sandreas.hansson@arm.com    code()
74310458Sandreas.hansson@arm.com    code('namespace Debug {')
74410458Sandreas.hansson@arm.com    code()
74510458Sandreas.hansson@arm.com
74610458Sandreas.hansson@arm.com    if not compound:
74710458Sandreas.hansson@arm.com        code('SimpleFlag $name("$name", "$desc");')
74810458Sandreas.hansson@arm.com    else:
74910458Sandreas.hansson@arm.com        code('CompoundFlag $name("$name", "$desc",')
75010458Sandreas.hansson@arm.com        code.indent()
75110458Sandreas.hansson@arm.com        last = len(compound) - 1
75210458Sandreas.hansson@arm.com        for i,flag in enumerate(compound):
75310458Sandreas.hansson@arm.com            if i != last:
75410458Sandreas.hansson@arm.com                code('$flag,')
75510458Sandreas.hansson@arm.com            else:
75610458Sandreas.hansson@arm.com                code('$flag);')
75710458Sandreas.hansson@arm.com        code.dedent()
75810458Sandreas.hansson@arm.com
75910458Sandreas.hansson@arm.com    code()
76010458Sandreas.hansson@arm.com    code('} // namespace Debug')
76110458Sandreas.hansson@arm.com
76210458Sandreas.hansson@arm.com    code.write(str(target[0]))
76310458Sandreas.hansson@arm.com
76410458Sandreas.hansson@arm.comdef makeDebugFlagHH(target, source, env):
76510458Sandreas.hansson@arm.com    assert(len(target) == 1 and len(source) == 1)
76610584Sandreas.hansson@arm.com
76710458Sandreas.hansson@arm.com    val = eval(source[0].get_contents())
76810458Sandreas.hansson@arm.com    name, compound, desc = val
76910458Sandreas.hansson@arm.com
77010458Sandreas.hansson@arm.com    code = code_formatter()
77110458Sandreas.hansson@arm.com
7728596Ssteve.reinhardt@amd.com    # file header boilerplate
7735463Snate@binkert.org    code('''\
77410584Sandreas.hansson@arm.com/*
7758596Ssteve.reinhardt@amd.com * DO NOT EDIT THIS FILE!
7765463Snate@binkert.org *
7777756SAli.Saidi@ARM.com * Automatically generated by SCons
7788596Ssteve.reinhardt@amd.com */
7794762Snate@binkert.org
78010454SCurtis.Dunham@arm.com#ifndef __DEBUG_${name}_HH__
7817677Snate@binkert.org#define __DEBUG_${name}_HH__
7824762Snate@binkert.org
7834762Snate@binkert.orgnamespace Debug {
7846143Snate@binkert.org''')
7856143Snate@binkert.org
7866143Snate@binkert.org    if compound:
7874762Snate@binkert.org        code('class CompoundFlag;')
7884762Snate@binkert.org    code('class SimpleFlag;')
7897756SAli.Saidi@ARM.com
7907816Ssteve.reinhardt@amd.com    if compound:
7914762Snate@binkert.org        code('extern CompoundFlag $name;')
79210454SCurtis.Dunham@arm.com        for flag in compound:
7934762Snate@binkert.org            code('extern SimpleFlag $flag;')
7944762Snate@binkert.org    else:
7954762Snate@binkert.org        code('extern SimpleFlag $name;')
7967756SAli.Saidi@ARM.com
7978596Ssteve.reinhardt@amd.com    code('''
7984762Snate@binkert.org}
79910454SCurtis.Dunham@arm.com
8004762Snate@binkert.org#endif // __DEBUG_${name}_HH__
8017677Snate@binkert.org''')
8027756SAli.Saidi@ARM.com
8038596Ssteve.reinhardt@amd.com    code.write(str(target[0]))
8047675Snate@binkert.org
80510454SCurtis.Dunham@arm.comfor name,flag in sorted(debug_flags.iteritems()):
8067677Snate@binkert.org    n, compound, desc = flag
8075517Snate@binkert.org    assert n == name
8088596Ssteve.reinhardt@amd.com
80910584Sandreas.hansson@arm.com    env.Command('debug/%s.hh' % name, Value(flag),
8109248SAndreas.Sandberg@arm.com                MakeAction(makeDebugFlagHH, Transform("TRACING", 0)))
8119248SAndreas.Sandberg@arm.com    env.Command('debug/%s.cc' % name, Value(flag),
8128596Ssteve.reinhardt@amd.com                MakeAction(makeDebugFlagCC, Transform("TRACING", 0)))
8138596Ssteve.reinhardt@amd.com    Source('debug/%s.cc' % name)
8148596Ssteve.reinhardt@amd.com
8159248SAndreas.Sandberg@arm.com# Embed python files.  All .py files that have been indicated by a
8168596Ssteve.reinhardt@amd.com# PySource() call in a SConscript need to be embedded into the M5
8174762Snate@binkert.org# library.  To do that, we compile the file to byte code, marshal the
8187674Snate@binkert.org# byte code, compress it, and then generate a c++ file that
8197674Snate@binkert.org# inserts the result into an array.
8207674Snate@binkert.orgdef embedPyFile(target, source, env):
8217674Snate@binkert.org    def c_str(string):
8227674Snate@binkert.org        if string is None:
8237674Snate@binkert.org            return "0"
8247674Snate@binkert.org        return '"%s"' % string
8257674Snate@binkert.org
8267674Snate@binkert.org    '''Action function to compile a .py into a code object, marshal
8277674Snate@binkert.org    it, compress it, and stick it into an asm file so the code appears
8287674Snate@binkert.org    as just bytes with a label in the data section'''
8297674Snate@binkert.org
8307674Snate@binkert.org    src = file(str(source[0]), 'r').read()
8317674Snate@binkert.org
83211308Santhony.gutierrez@amd.com    pysource = PySource.tnodes[source[0]]
8334762Snate@binkert.org    compiled = compile(src, pysource.abspath, 'exec')
8346143Snate@binkert.org    marshalled = marshal.dumps(compiled)
8356143Snate@binkert.org    compressed = zlib.compress(marshalled)
8367756SAli.Saidi@ARM.com    data = compressed
8377816Ssteve.reinhardt@amd.com    sym = pysource.symname
8388235Snate@binkert.org
8398596Ssteve.reinhardt@amd.com    code = code_formatter()
8407756SAli.Saidi@ARM.com    code('''\
8417816Ssteve.reinhardt@amd.com#include "sim/init.hh"
84210454SCurtis.Dunham@arm.com
8438235Snate@binkert.orgnamespace {
8444382Sbinkertn@umich.edu
8459396Sandreas.hansson@arm.comconst uint8_t data_${sym}[] = {
8469396Sandreas.hansson@arm.com''')
8479396Sandreas.hansson@arm.com    code.indent()
8489396Sandreas.hansson@arm.com    step = 16
8499396Sandreas.hansson@arm.com    for i in xrange(0, len(data), step):
8509396Sandreas.hansson@arm.com        x = array.array('B', data[i:i+step])
8519396Sandreas.hansson@arm.com        code(''.join('%d,' % d for d in x))
8529396Sandreas.hansson@arm.com    code.dedent()
8539396Sandreas.hansson@arm.com    
8549396Sandreas.hansson@arm.com    code('''};
8559396Sandreas.hansson@arm.com
8569396Sandreas.hansson@arm.comEmbeddedPython embedded_${sym}(
85710454SCurtis.Dunham@arm.com    ${{c_str(pysource.arcname)}},
8589396Sandreas.hansson@arm.com    ${{c_str(pysource.abspath)}},
8599396Sandreas.hansson@arm.com    ${{c_str(pysource.modpath)}},
8609396Sandreas.hansson@arm.com    data_${sym},
8619396Sandreas.hansson@arm.com    ${{len(data)}},
8629396Sandreas.hansson@arm.com    ${{len(marshalled)}});
8639396Sandreas.hansson@arm.com
8648232Snate@binkert.org} // anonymous namespace
8658232Snate@binkert.org''')
8668232Snate@binkert.org    code.write(str(target[0]))
8678232Snate@binkert.org
8688232Snate@binkert.orgfor source in PySource.all:
8696229Snate@binkert.org    env.Command(source.cpp, source.tnode, 
87010455SCurtis.Dunham@arm.com                MakeAction(embedPyFile, Transform("EMBED PY")))
8716229Snate@binkert.org    Source(source.cpp)
87210455SCurtis.Dunham@arm.com
87310455SCurtis.Dunham@arm.com########################################################################
87410455SCurtis.Dunham@arm.com#
8755517Snate@binkert.org# Define binaries.  Each different build type (debug, opt, etc.) gets
8765517Snate@binkert.org# a slightly different build environment.
8777673Snate@binkert.org#
8785517Snate@binkert.org
87910455SCurtis.Dunham@arm.com# List of constructed environments to pass back to SConstruct
8805517Snate@binkert.orgenvList = []
8815517Snate@binkert.org
8828232Snate@binkert.orgdate_source = Source('base/date.cc', skip_lib=True)
88310455SCurtis.Dunham@arm.com
88410455SCurtis.Dunham@arm.com# Function to create a new build environment as clone of current
88510455SCurtis.Dunham@arm.com# environment 'env' with modified object suffix and optional stripped
8867673Snate@binkert.org# binary.  Additional keyword arguments are appended to corresponding
8877673Snate@binkert.org# build environment vars.
88810455SCurtis.Dunham@arm.comdef makeEnv(label, objsfx, strip = False, **kwargs):
88910455SCurtis.Dunham@arm.com    # SCons doesn't know to append a library suffix when there is a '.' in the
89010455SCurtis.Dunham@arm.com    # name.  Use '_' instead.
8915517Snate@binkert.org    libname = 'gem5_' + label
89210455SCurtis.Dunham@arm.com    exename = 'gem5.' + label
89310455SCurtis.Dunham@arm.com    secondary_exename = 'm5.' + label
89410455SCurtis.Dunham@arm.com
89510455SCurtis.Dunham@arm.com    new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's')
89610455SCurtis.Dunham@arm.com    new_env.Label = label
89710455SCurtis.Dunham@arm.com    new_env.Append(**kwargs)
89810455SCurtis.Dunham@arm.com
89910455SCurtis.Dunham@arm.com    swig_env = new_env.Clone()
90010685Sandreas.hansson@arm.com
90110455SCurtis.Dunham@arm.com    # Both gcc and clang have issues with unused labels and values in
90210685Sandreas.hansson@arm.com    # the SWIG generated code
90310455SCurtis.Dunham@arm.com    swig_env.Append(CCFLAGS=['-Wno-unused-label', '-Wno-unused-value'])
9045517Snate@binkert.org
90510455SCurtis.Dunham@arm.com    # Add additional warnings here that should not be applied to
9068232Snate@binkert.org    # the SWIG generated code
9078232Snate@binkert.org    new_env.Append(CXXFLAGS='-Wmissing-declarations')
9085517Snate@binkert.org
9097673Snate@binkert.org    if env['GCC']:
9105517Snate@binkert.org        # Depending on the SWIG version, we also need to supress
9118232Snate@binkert.org        # warnings about uninitialized variables and missing field
9128232Snate@binkert.org        # initializers.
9135517Snate@binkert.org        swig_env.Append(CCFLAGS=['-Wno-uninitialized',
9148232Snate@binkert.org                                 '-Wno-missing-field-initializers'])
9158232Snate@binkert.org
9168232Snate@binkert.org        if compareVersions(env['GCC_VERSION'], '4.6') >= 0:
9177673Snate@binkert.org            swig_env.Append(CCFLAGS='-Wno-unused-but-set-variable')
9185517Snate@binkert.org
9195517Snate@binkert.org        # If gcc supports it, also warn for deletion of derived
9207673Snate@binkert.org        # classes with non-virtual desctructors. For gcc >= 4.7 we
9215517Snate@binkert.org        # also have to disable warnings about the SWIG code having
92210455SCurtis.Dunham@arm.com        # potentially uninitialized variables.
9235517Snate@binkert.org        if compareVersions(env['GCC_VERSION'], '4.7') >= 0:
9245517Snate@binkert.org            new_env.Append(CXXFLAGS='-Wdelete-non-virtual-dtor')
9258232Snate@binkert.org            swig_env.Append(CCFLAGS='-Wno-maybe-uninitialized')
9268232Snate@binkert.org    if env['CLANG']:
9275517Snate@binkert.org        # Always enable the warning for deletion of derived classes
9288232Snate@binkert.org        # with non-virtual destructors
9298232Snate@binkert.org        new_env.Append(CXXFLAGS=['-Wdelete-non-virtual-dtor'])
9305517Snate@binkert.org
9318232Snate@binkert.org    werror_env = new_env.Clone()
9328232Snate@binkert.org    werror_env.Append(CCFLAGS='-Werror')
9338232Snate@binkert.org
9345517Snate@binkert.org    def make_obj(source, static, extra_deps = None):
9358232Snate@binkert.org        '''This function adds the specified source to the correct
9368232Snate@binkert.org        build environment, and returns the corresponding SCons Object
9378232Snate@binkert.org        nodes'''
9388232Snate@binkert.org
9398232Snate@binkert.org        if source.swig:
9408232Snate@binkert.org            env = swig_env
9415517Snate@binkert.org        elif source.Werror:
9428232Snate@binkert.org            env = werror_env
9438232Snate@binkert.org        else:
9445517Snate@binkert.org            env = new_env
9458232Snate@binkert.org
9467673Snate@binkert.org        if static:
9475517Snate@binkert.org            obj = env.StaticObject(source.tnode)
9487673Snate@binkert.org        else:
9495517Snate@binkert.org            obj = env.SharedObject(source.tnode)
9508232Snate@binkert.org
9518232Snate@binkert.org        if extra_deps:
9528232Snate@binkert.org            env.Depends(obj, extra_deps)
9535192Ssaidi@eecs.umich.edu
95410454SCurtis.Dunham@arm.com        return obj
95510454SCurtis.Dunham@arm.com
9568232Snate@binkert.org    static_objs = \
95710455SCurtis.Dunham@arm.com        [ make_obj(s, True) for s in Source.get(main=False, skip_lib=False) ]
95810455SCurtis.Dunham@arm.com    shared_objs = \
95910455SCurtis.Dunham@arm.com        [ make_obj(s, False) for s in Source.get(main=False, skip_lib=False) ]
96010455SCurtis.Dunham@arm.com
96110455SCurtis.Dunham@arm.com    static_date = make_obj(date_source, static=True, extra_deps=static_objs)
96210455SCurtis.Dunham@arm.com    static_objs.append(static_date)
9635192Ssaidi@eecs.umich.edu    
96411077SCurtis.Dunham@arm.com    shared_date = make_obj(date_source, static=False, extra_deps=shared_objs)
96511330SCurtis.Dunham@arm.com    shared_objs.append(shared_date)
96611077SCurtis.Dunham@arm.com
96711077SCurtis.Dunham@arm.com    # First make a library of everything but main() so other programs can
96811077SCurtis.Dunham@arm.com    # link against m5.
96911330SCurtis.Dunham@arm.com    static_lib = new_env.StaticLibrary(libname, static_objs)
97011077SCurtis.Dunham@arm.com    shared_lib = new_env.SharedLibrary(libname, shared_objs)
9717674Snate@binkert.org
9725522Snate@binkert.org    # Now link a stub with main() and the static library.
9735522Snate@binkert.org    main_objs = [ make_obj(s, True) for s in Source.get(main=True) ]
9747674Snate@binkert.org
9757674Snate@binkert.org    for test in UnitTest.all:
9767674Snate@binkert.org        flags = { test.target : True }
9777674Snate@binkert.org        test_sources = Source.get(**flags)
9787674Snate@binkert.org        test_objs = [ make_obj(s, static=True) for s in test_sources ]
9797674Snate@binkert.org        if test.main:
9807674Snate@binkert.org            test_objs += main_objs
9817674Snate@binkert.org        testname = "unittest/%s.%s" % (test.target, label)
9825522Snate@binkert.org        new_env.Program(testname, test_objs + static_objs)
9835522Snate@binkert.org
9845522Snate@binkert.org    progname = exename
9855517Snate@binkert.org    if strip:
9865522Snate@binkert.org        progname += '.unstripped'
9875517Snate@binkert.org
9886143Snate@binkert.org    targets = new_env.Program(progname, main_objs + static_objs)
9896727Ssteve.reinhardt@amd.com
9905522Snate@binkert.org    if strip:
9915522Snate@binkert.org        if sys.platform == 'sunos5':
9925522Snate@binkert.org            cmd = 'cp $SOURCE $TARGET; strip $TARGET'
9937674Snate@binkert.org        else:
9945517Snate@binkert.org            cmd = 'strip $SOURCE -o $TARGET'
9957673Snate@binkert.org        targets = new_env.Command(exename, progname,
9967673Snate@binkert.org                    MakeAction(cmd, Transform("STRIP")))
9977674Snate@binkert.org
9987673Snate@binkert.org    new_env.Command(secondary_exename, exename,
9997674Snate@binkert.org            MakeAction('ln $SOURCE $TARGET', Transform("HARDLINK")))
10007674Snate@binkert.org
10018946Sandreas.hansson@arm.com    new_env.M5Binary = targets[0]
10027674Snate@binkert.org    envList.append(new_env)
10037674Snate@binkert.org
10047674Snate@binkert.org# Start out with the compiler flags common to all compilers,
10055522Snate@binkert.org# i.e. they all use -g for opt and -g -pg for prof
10065522Snate@binkert.orgccflags = {'debug' : [], 'opt' : ['-g'], 'fast' : [], 'prof' : ['-g', '-pg'],
10077674Snate@binkert.org           'perf' : ['-g']}
10087674Snate@binkert.org
100911308Santhony.gutierrez@amd.com# Start out with the linker flags common to all linkers, i.e. -pg for
10107674Snate@binkert.org# prof, and -lprofiler for perf. The -lprofile flag is surrounded by
10117673Snate@binkert.org# no-as-needed and as-needed as the binutils linker is too clever and
10127674Snate@binkert.org# simply doesn't link to the library otherwise.
10137674Snate@binkert.orgldflags = {'debug' : [], 'opt' : [], 'fast' : [], 'prof' : ['-pg'],
10147674Snate@binkert.org           'perf' : ['-Wl,--no-as-needed', '-lprofiler', '-Wl,--as-needed']}
10157674Snate@binkert.org
10167674Snate@binkert.org# For Link Time Optimization, the optimisation flags used to compile
10177674Snate@binkert.org# individual files are decoupled from those used at link time
10187674Snate@binkert.org# (i.e. you can compile with -O3 and perform LTO with -O0), so we need
10197674Snate@binkert.org# to also update the linker flags based on the target.
10207811Ssteve.reinhardt@amd.comif env['GCC']:
10217674Snate@binkert.org    if sys.platform == 'sunos5':
10227673Snate@binkert.org        ccflags['debug'] += ['-gstabs+']
10235522Snate@binkert.org    else:
10246143Snate@binkert.org        ccflags['debug'] += ['-ggdb3']
102510453SAndrew.Bardsley@arm.com    ldflags['debug'] += ['-O0']
10267816Ssteve.reinhardt@amd.com    # opt, fast, prof and perf all share the same cc flags, also add
102710454SCurtis.Dunham@arm.com    # the optimization to the ldflags as LTO defers the optimization
102810453SAndrew.Bardsley@arm.com    # to link time
10294382Sbinkertn@umich.edu    for target in ['opt', 'fast', 'prof', 'perf']:
10304382Sbinkertn@umich.edu        ccflags[target] += ['-O3']
10314382Sbinkertn@umich.edu        ldflags[target] += ['-O3']
10324382Sbinkertn@umich.edu
10334382Sbinkertn@umich.edu    ccflags['fast'] += env['LTO_CCFLAGS']
10344382Sbinkertn@umich.edu    ldflags['fast'] += env['LTO_LDFLAGS']
10354382Sbinkertn@umich.eduelif env['CLANG']:
10364382Sbinkertn@umich.edu    ccflags['debug'] += ['-g', '-O0']
103710196SCurtis.Dunham@arm.com    # opt, fast, prof and perf all share the same cc flags
10384382Sbinkertn@umich.edu    for target in ['opt', 'fast', 'prof', 'perf']:
103910196SCurtis.Dunham@arm.com        ccflags[target] += ['-O3']
104010196SCurtis.Dunham@arm.comelse:
104110196SCurtis.Dunham@arm.com    print 'Unknown compiler, please fix compiler options'
104210196SCurtis.Dunham@arm.com    Exit(1)
104310196SCurtis.Dunham@arm.com
104410196SCurtis.Dunham@arm.com
104510196SCurtis.Dunham@arm.com# To speed things up, we only instantiate the build environments we
1046955SN/A# need.  We try to identify the needed environment for each target; if
10472655Sstever@eecs.umich.edu# we can't, we fall back on instantiating all the environments just to
10482655Sstever@eecs.umich.edu# be safe.
10492655Sstever@eecs.umich.edutarget_types = ['debug', 'opt', 'fast', 'prof', 'perf']
10502655Sstever@eecs.umich.eduobj2target = {'do': 'debug', 'o': 'opt', 'fo': 'fast', 'po': 'prof',
105110196SCurtis.Dunham@arm.com              'gpo' : 'perf'}
10525601Snate@binkert.org
10535601Snate@binkert.orgdef identifyTarget(t):
105410196SCurtis.Dunham@arm.com    ext = t.split('.')[-1]
105510196SCurtis.Dunham@arm.com    if ext in target_types:
105610196SCurtis.Dunham@arm.com        return ext
10575522Snate@binkert.org    if obj2target.has_key(ext):
10585863Snate@binkert.org        return obj2target[ext]
10595601Snate@binkert.org    match = re.search(r'/tests/([^/]+)/', t)
10605601Snate@binkert.org    if match and match.group(1) in target_types:
10615601Snate@binkert.org        return match.group(1)
10625863Snate@binkert.org    return 'all'
10639556Sandreas.hansson@arm.com
10649556Sandreas.hansson@arm.comneeded_envs = [identifyTarget(target) for target in BUILD_TARGETS]
10659556Sandreas.hansson@arm.comif 'all' in needed_envs:
10669556Sandreas.hansson@arm.com    needed_envs += target_types
10679556Sandreas.hansson@arm.com
10685559Snate@binkert.org# Debug binary
10699556Sandreas.hansson@arm.comif 'debug' in needed_envs:
10709618Ssteve.reinhardt@amd.com    makeEnv('debug', '.do',
10719618Ssteve.reinhardt@amd.com            CCFLAGS = Split(ccflags['debug']),
10729618Ssteve.reinhardt@amd.com            CPPDEFINES = ['DEBUG', 'TRACING_ON=1'],
107310238Sandreas.hansson@arm.com            LINKFLAGS = Split(ldflags['debug']))
107410878Sandreas.hansson@arm.com
107511294Sandreas.hansson@arm.com# Optimized binary
107611294Sandreas.hansson@arm.comif 'opt' in needed_envs:
107710457Sandreas.hansson@arm.com    makeEnv('opt', '.o',
107810457Sandreas.hansson@arm.com            CCFLAGS = Split(ccflags['opt']),
107910457Sandreas.hansson@arm.com            CPPDEFINES = ['TRACING_ON=1'],
108010457Sandreas.hansson@arm.com            LINKFLAGS = Split(ldflags['opt']))
108110457Sandreas.hansson@arm.com
108210457Sandreas.hansson@arm.com# "Fast" binary
108310457Sandreas.hansson@arm.comif 'fast' in needed_envs:
108410457Sandreas.hansson@arm.com    makeEnv('fast', '.fo', strip = True,
108510457Sandreas.hansson@arm.com            CCFLAGS = Split(ccflags['fast']),
108611342Sandreas.hansson@arm.com            CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
108711500Sandreas.hansson@arm.com            LINKFLAGS = Split(ldflags['fast']))
108811500Sandreas.hansson@arm.com
108911500Sandreas.hansson@arm.com# Profiled binary using gprof
109011342Sandreas.hansson@arm.comif 'prof' in needed_envs:
109111342Sandreas.hansson@arm.com    makeEnv('prof', '.po',
10928737Skoansin.tan@gmail.com            CCFLAGS = Split(ccflags['prof']),
109311294Sandreas.hansson@arm.com            CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
109411294Sandreas.hansson@arm.com            LINKFLAGS = Split(ldflags['prof']))
109511294Sandreas.hansson@arm.com
109610278SAndreas.Sandberg@ARM.com# Profiled binary using google-pprof
109711342Sandreas.hansson@arm.comif 'perf' in needed_envs:
109811342Sandreas.hansson@arm.com    makeEnv('perf', '.gpo',
109910457Sandreas.hansson@arm.com            CCFLAGS = Split(ccflags['perf']),
110010457Sandreas.hansson@arm.com            CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
110110457Sandreas.hansson@arm.com            LINKFLAGS = Split(ldflags['perf']))
110210457Sandreas.hansson@arm.com
110311342Sandreas.hansson@arm.comReturn('envList')
110411500Sandreas.hansson@arm.com