SConscript revision 9396
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):
816143Snate@binkert.org        '''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(joinpath(self.dirname, modname + '.pb.cc'))
2509396Sandreas.hansson@arm.com        self.hh_file = File(joinpath(self.dirname, 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    for root, dirs, files in os.walk(extra_dir, topdown=True):
3395742Snate@binkert.org        # if build lives in the extras directory, don't walk down it
3405742Snate@binkert.org        if 'build' in dirs:
3414762Snate@binkert.org            dirs.remove('build')
3425742Snate@binkert.org
3435742Snate@binkert.org        if 'SConscript' in files:
3447722Sgblack@eecs.umich.edu            build_dir = joinpath(env['BUILDDIR'], root[prefix_len:])
3455742Snate@binkert.org            SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir)
3465742Snate@binkert.org
3475742Snate@binkert.orgfor opt in export_vars:
3489930Sandreas.hansson@arm.com    env.ConfigFile(opt)
3499930Sandreas.hansson@arm.com
3509930Sandreas.hansson@arm.comdef makeTheISA(source, target, env):
3519930Sandreas.hansson@arm.com    isas = [ src.get_contents() for src in source ]
3529930Sandreas.hansson@arm.com    target_isa = env['TARGET_ISA']
3535742Snate@binkert.org    def define(isa):
3548242Sbradley.danofsky@amd.com        return isa.upper() + '_ISA'
3558242Sbradley.danofsky@amd.com    
3568242Sbradley.danofsky@amd.com    def namespace(isa):
3578242Sbradley.danofsky@amd.com        return isa[0].upper() + isa[1:].lower() + 'ISA' 
3585341Sstever@gmail.com
3595742Snate@binkert.org
3607722Sgblack@eecs.umich.edu    code = code_formatter()
3614773Snate@binkert.org    code('''\
3626108Snate@binkert.org#ifndef __CONFIG_THE_ISA_HH__
3631858SN/A#define __CONFIG_THE_ISA_HH__
3641085SN/A
3656658Snate@binkert.org''')
3666658Snate@binkert.org
3677673Snate@binkert.org    for i,isa in enumerate(isas):
3686658Snate@binkert.org        code('#define $0 $1', define(isa), i + 1)
3696658Snate@binkert.org
3706658Snate@binkert.org    code('''
3716658Snate@binkert.org
3726658Snate@binkert.org#define THE_ISA ${{define(target_isa)}}
3736658Snate@binkert.org#define TheISA ${{namespace(target_isa)}}
3746658Snate@binkert.org#define THE_ISA_STR "${{target_isa}}"
3757673Snate@binkert.org
3767673Snate@binkert.org#endif // __CONFIG_THE_ISA_HH__''')
3777673Snate@binkert.org
3787673Snate@binkert.org    code.write(str(target[0]))
3797673Snate@binkert.org
3807673Snate@binkert.orgenv.Command('config/the_isa.hh', map(Value, all_isa_list),
3817673Snate@binkert.org            MakeAction(makeTheISA, Transform("CFG ISA", 0)))
3826658Snate@binkert.org
3837673Snate@binkert.org########################################################################
3847673Snate@binkert.org#
3857673Snate@binkert.org# Prevent any SimObjects from being added after this point, they
3867673Snate@binkert.org# should all have been added in the SConscripts above
3877673Snate@binkert.org#
3887673Snate@binkert.orgSimObject.fixed = True
3899048SAli.Saidi@ARM.com
3907673Snate@binkert.orgclass DictImporter(object):
3917673Snate@binkert.org    '''This importer takes a dictionary of arbitrary module names that
3927673Snate@binkert.org    map to arbitrary filenames.'''
3937673Snate@binkert.org    def __init__(self, modules):
3946658Snate@binkert.org        self.modules = modules
3957756SAli.Saidi@ARM.com        self.installed = set()
3967816Ssteve.reinhardt@amd.com
3976658Snate@binkert.org    def __del__(self):
3984382Sbinkertn@umich.edu        self.unload()
3994382Sbinkertn@umich.edu
4004762Snate@binkert.org    def unload(self):
4014762Snate@binkert.org        import sys
4024762Snate@binkert.org        for module in self.installed:
4036654Snate@binkert.org            del sys.modules[module]
4046654Snate@binkert.org        self.installed = set()
4055517Snate@binkert.org
4065517Snate@binkert.org    def find_module(self, fullname, path):
4075517Snate@binkert.org        if fullname == 'm5.defines':
4085517Snate@binkert.org            return self
4095517Snate@binkert.org
4105517Snate@binkert.org        if fullname == 'm5.objects':
4115517Snate@binkert.org            return self
4125517Snate@binkert.org
4135517Snate@binkert.org        if fullname.startswith('m5.internal'):
4145517Snate@binkert.org            return None
4155517Snate@binkert.org
4165517Snate@binkert.org        source = self.modules.get(fullname, None)
4175517Snate@binkert.org        if source is not None and fullname.startswith('m5.objects'):
4185517Snate@binkert.org            return self
4195517Snate@binkert.org
4205517Snate@binkert.org        return None
4215517Snate@binkert.org
4226654Snate@binkert.org    def load_module(self, fullname):
4235517Snate@binkert.org        mod = imp.new_module(fullname)
4245517Snate@binkert.org        sys.modules[fullname] = mod
4255517Snate@binkert.org        self.installed.add(fullname)
4265517Snate@binkert.org
4275517Snate@binkert.org        mod.__loader__ = self
4285517Snate@binkert.org        if fullname == 'm5.objects':
4295517Snate@binkert.org            mod.__path__ = fullname.split('.')
4305517Snate@binkert.org            return mod
4316143Snate@binkert.org
4326654Snate@binkert.org        if fullname == 'm5.defines':
4335517Snate@binkert.org            mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env)
4345517Snate@binkert.org            return mod
4355517Snate@binkert.org
4365517Snate@binkert.org        source = self.modules[fullname]
4375517Snate@binkert.org        if source.modname == '__init__':
4385517Snate@binkert.org            mod.__path__ = source.modpath
4395517Snate@binkert.org        mod.__file__ = source.abspath
4405517Snate@binkert.org
4415517Snate@binkert.org        exec file(source.abspath, 'r') in mod.__dict__
4425517Snate@binkert.org
4435517Snate@binkert.org        return mod
4445517Snate@binkert.org
4455517Snate@binkert.orgimport m5.SimObject
4465517Snate@binkert.orgimport m5.params
4476654Snate@binkert.orgfrom m5.util import code_formatter
4486654Snate@binkert.org
4495517Snate@binkert.orgm5.SimObject.clear()
4505517Snate@binkert.orgm5.params.clear()
4516143Snate@binkert.org
4526143Snate@binkert.org# install the python importer so we can grab stuff from the source
4536143Snate@binkert.org# tree itself.  We can't have SimObjects added after this point or
4546727Ssteve.reinhardt@amd.com# else we won't know about them for the rest of the stuff.
4555517Snate@binkert.orgimporter = DictImporter(PySource.modules)
4566727Ssteve.reinhardt@amd.comsys.meta_path[0:0] = [ importer ]
4575517Snate@binkert.org
4585517Snate@binkert.org# import all sim objects so we can populate the all_objects list
4595517Snate@binkert.org# make sure that we're working with a list, then let's sort it
4606654Snate@binkert.orgfor modname in SimObject.modnames:
4616654Snate@binkert.org    exec('from m5.objects import %s' % modname)
4627673Snate@binkert.org
4636654Snate@binkert.org# we need to unload all of the currently imported modules so that they
4646654Snate@binkert.org# will be re-imported the next time the sconscript is run
4656654Snate@binkert.orgimporter.unload()
4666654Snate@binkert.orgsys.meta_path.remove(importer)
4675517Snate@binkert.org
4685517Snate@binkert.orgsim_objects = m5.SimObject.allClasses
4695517Snate@binkert.orgall_enums = m5.params.allEnums
4706143Snate@binkert.org
4715517Snate@binkert.orgif m5.SimObject.noCxxHeader:
4724762Snate@binkert.org    print >> sys.stderr, \
4735517Snate@binkert.org        "warning: At least one SimObject lacks a header specification. " \
4745517Snate@binkert.org        "This can cause unexpected results in the generated SWIG " \
4756143Snate@binkert.org        "wrappers."
4766143Snate@binkert.org
4775517Snate@binkert.org# Find param types that need to be explicitly wrapped with swig.
4785517Snate@binkert.org# These will be recognized because the ParamDesc will have a
4795517Snate@binkert.org# swig_decl() method.  Most param types are based on types that don't
4805517Snate@binkert.org# need this, either because they're based on native types (like Int)
4815517Snate@binkert.org# or because they're SimObjects (which get swigged independently).
4825517Snate@binkert.org# For now the only things handled here are VectorParam types.
4835517Snate@binkert.orgparams_to_swig = {}
4845517Snate@binkert.orgfor name,obj in sorted(sim_objects.iteritems()):
4855517Snate@binkert.org    for param in obj._params.local.values():
4869338SAndreas.Sandberg@arm.com        # load the ptype attribute now because it depends on the
4879338SAndreas.Sandberg@arm.com        # current version of SimObject.allClasses, but when scons
4889338SAndreas.Sandberg@arm.com        # actually uses the value, all versions of
4899338SAndreas.Sandberg@arm.com        # SimObject.allClasses will have been loaded
4909338SAndreas.Sandberg@arm.com        param.ptype
4919338SAndreas.Sandberg@arm.com
4928596Ssteve.reinhardt@amd.com        if not hasattr(param, 'swig_decl'):
4938596Ssteve.reinhardt@amd.com            continue
4948596Ssteve.reinhardt@amd.com        pname = param.ptype_str
4958596Ssteve.reinhardt@amd.com        if pname not in params_to_swig:
4968596Ssteve.reinhardt@amd.com            params_to_swig[pname] = param
4978596Ssteve.reinhardt@amd.com
4988596Ssteve.reinhardt@amd.com########################################################################
4996143Snate@binkert.org#
5005517Snate@binkert.org# calculate extra dependencies
5016654Snate@binkert.org#
5026654Snate@binkert.orgmodule_depends = ["m5", "m5.SimObject", "m5.params"]
5036654Snate@binkert.orgdepends = [ PySource.modules[dep].snode for dep in module_depends ]
5046654Snate@binkert.org
5056654Snate@binkert.org########################################################################
5066654Snate@binkert.org#
5075517Snate@binkert.org# Commands for the basic automatically generated python files
5085517Snate@binkert.org#
5095517Snate@binkert.org
5108596Ssteve.reinhardt@amd.com# Generate Python file containing a dict specifying the current
5118596Ssteve.reinhardt@amd.com# buildEnv flags.
5124762Snate@binkert.orgdef makeDefinesPyFile(target, source, env):
5134762Snate@binkert.org    build_env = source[0].get_contents()
5144762Snate@binkert.org
5154762Snate@binkert.org    code = code_formatter()
5164762Snate@binkert.org    code("""
5174762Snate@binkert.orgimport m5.internal
5187675Snate@binkert.orgimport m5.util
5194762Snate@binkert.org
5204762Snate@binkert.orgbuildEnv = m5.util.SmartDict($build_env)
5214762Snate@binkert.org
5224762Snate@binkert.orgcompileDate = m5.internal.core.compileDate
5234382Sbinkertn@umich.edu_globals = globals()
5244382Sbinkertn@umich.edufor key,val in m5.internal.core.__dict__.iteritems():
5255517Snate@binkert.org    if key.startswith('flag_'):
5266654Snate@binkert.org        flag = key[5:]
5275517Snate@binkert.org        _globals[flag] = val
5288126Sgblack@eecs.umich.edudel _globals
5296654Snate@binkert.org""")
5307673Snate@binkert.org    code.write(target[0].abspath)
5316654Snate@binkert.org
5326654Snate@binkert.orgdefines_info = Value(build_env)
5336654Snate@binkert.org# Generate a file with all of the compile options in it
5346654Snate@binkert.orgenv.Command('python/m5/defines.py', defines_info,
5356654Snate@binkert.org            MakeAction(makeDefinesPyFile, Transform("DEFINES", 0)))
5366654Snate@binkert.orgPySource('m5', 'python/m5/defines.py')
5376654Snate@binkert.org
5386669Snate@binkert.org# Generate python file containing info about the M5 source code
5396669Snate@binkert.orgdef makeInfoPyFile(target, source, env):
5406669Snate@binkert.org    code = code_formatter()
5416669Snate@binkert.org    for src in source:
5426669Snate@binkert.org        data = ''.join(file(src.srcnode().abspath, 'r').xreadlines())
5436669Snate@binkert.org        code('$src = ${{repr(data)}}')
5446654Snate@binkert.org    code.write(str(target[0]))
5457673Snate@binkert.org
5465517Snate@binkert.org# Generate a file that wraps the basic top level files
5478126Sgblack@eecs.umich.eduenv.Command('python/m5/info.py',
5485798Snate@binkert.org            [ '#/COPYING', '#/LICENSE', '#/README', ],
5497756SAli.Saidi@ARM.com            MakeAction(makeInfoPyFile, Transform("INFO")))
5507816Ssteve.reinhardt@amd.comPySource('m5', 'python/m5/info.py')
5515798Snate@binkert.org
5525798Snate@binkert.org########################################################################
5535517Snate@binkert.org#
5545517Snate@binkert.org# Create all of the SimObject param headers and enum headers
5557673Snate@binkert.org#
5565517Snate@binkert.org
5575517Snate@binkert.orgdef createSimObjectParamStruct(target, source, env):
5587673Snate@binkert.org    assert len(target) == 1 and len(source) == 1
5597673Snate@binkert.org
5605517Snate@binkert.org    name = str(source[0].get_contents())
5615798Snate@binkert.org    obj = sim_objects[name]
5625798Snate@binkert.org
5638333Snate@binkert.org    code = code_formatter()
5647816Ssteve.reinhardt@amd.com    obj.cxx_param_decl(code)
5655798Snate@binkert.org    code.write(target[0].abspath)
5665798Snate@binkert.org
5674762Snate@binkert.orgdef createParamSwigWrapper(target, source, env):
5684762Snate@binkert.org    assert len(target) == 1 and len(source) == 1
5694762Snate@binkert.org
5704762Snate@binkert.org    name = str(source[0].get_contents())
5714762Snate@binkert.org    param = params_to_swig[name]
5728596Ssteve.reinhardt@amd.com
5735517Snate@binkert.org    code = code_formatter()
5745517Snate@binkert.org    param.swig_decl(code)
5755517Snate@binkert.org    code.write(target[0].abspath)
5765517Snate@binkert.org
5775517Snate@binkert.orgdef createEnumStrings(target, source, env):
5787673Snate@binkert.org    assert len(target) == 1 and len(source) == 1
5798596Ssteve.reinhardt@amd.com
5807673Snate@binkert.org    name = str(source[0].get_contents())
5815517Snate@binkert.org    obj = all_enums[name]
58210458Sandreas.hansson@arm.com
58310458Sandreas.hansson@arm.com    code = code_formatter()
58410458Sandreas.hansson@arm.com    obj.cxx_def(code)
58510458Sandreas.hansson@arm.com    code.write(target[0].abspath)
58610458Sandreas.hansson@arm.com
58710458Sandreas.hansson@arm.comdef createEnumDecls(target, source, env):
58810458Sandreas.hansson@arm.com    assert len(target) == 1 and len(source) == 1
58910458Sandreas.hansson@arm.com
59010458Sandreas.hansson@arm.com    name = str(source[0].get_contents())
59110458Sandreas.hansson@arm.com    obj = all_enums[name]
59210458Sandreas.hansson@arm.com
59310458Sandreas.hansson@arm.com    code = code_formatter()
5948596Ssteve.reinhardt@amd.com    obj.cxx_decl(code)
5955517Snate@binkert.org    code.write(target[0].abspath)
5965517Snate@binkert.org
5975517Snate@binkert.orgdef createEnumSwigWrapper(target, source, env):
5988596Ssteve.reinhardt@amd.com    assert len(target) == 1 and len(source) == 1
5995517Snate@binkert.org
6007673Snate@binkert.org    name = str(source[0].get_contents())
6017673Snate@binkert.org    obj = all_enums[name]
6027673Snate@binkert.org
6035517Snate@binkert.org    code = code_formatter()
6045517Snate@binkert.org    obj.swig_decl(code)
6055517Snate@binkert.org    code.write(target[0].abspath)
6065517Snate@binkert.org
6075517Snate@binkert.orgdef createSimObjectSwigWrapper(target, source, env):
6085517Snate@binkert.org    name = source[0].get_contents()
6095517Snate@binkert.org    obj = sim_objects[name]
6107673Snate@binkert.org
6117673Snate@binkert.org    code = code_formatter()
6127673Snate@binkert.org    obj.swig_decl(code)
6135517Snate@binkert.org    code.write(target[0].abspath)
6148596Ssteve.reinhardt@amd.com
6155517Snate@binkert.org# Generate all of the SimObject param C++ struct header files
6165517Snate@binkert.orgparams_hh_files = []
6175517Snate@binkert.orgfor name,simobj in sorted(sim_objects.iteritems()):
6185517Snate@binkert.org    py_source = PySource.modules[simobj.__module__]
6195517Snate@binkert.org    extra_deps = [ py_source.tnode ]
6207673Snate@binkert.org
6217673Snate@binkert.org    hh_file = File('params/%s.hh' % name)
6227673Snate@binkert.org    params_hh_files.append(hh_file)
6235517Snate@binkert.org    env.Command(hh_file, Value(name),
6248596Ssteve.reinhardt@amd.com                MakeAction(createSimObjectParamStruct, Transform("SO PARAM")))
6257675Snate@binkert.org    env.Depends(hh_file, depends + extra_deps)
6267675Snate@binkert.org
6277675Snate@binkert.org# Generate any needed param SWIG wrapper files
6287675Snate@binkert.orgparams_i_files = []
6297675Snate@binkert.orgfor name,param in params_to_swig.iteritems():
6307675Snate@binkert.org    i_file = File('python/m5/internal/%s.i' % (param.swig_module_name()))
6318596Ssteve.reinhardt@amd.com    params_i_files.append(i_file)
6327675Snate@binkert.org    env.Command(i_file, Value(name),
6337675Snate@binkert.org                MakeAction(createParamSwigWrapper, Transform("SW PARAM")))
6348596Ssteve.reinhardt@amd.com    env.Depends(i_file, depends)
6358596Ssteve.reinhardt@amd.com    SwigSource('m5.internal', i_file)
6368596Ssteve.reinhardt@amd.com
6378596Ssteve.reinhardt@amd.com# Generate all enum header files
6388596Ssteve.reinhardt@amd.comfor name,enum in sorted(all_enums.iteritems()):
6398596Ssteve.reinhardt@amd.com    py_source = PySource.modules[enum.__module__]
6408596Ssteve.reinhardt@amd.com    extra_deps = [ py_source.tnode ]
6418596Ssteve.reinhardt@amd.com
64210454SCurtis.Dunham@arm.com    cc_file = File('enums/%s.cc' % name)
64310454SCurtis.Dunham@arm.com    env.Command(cc_file, Value(name),
64410454SCurtis.Dunham@arm.com                MakeAction(createEnumStrings, Transform("ENUM STR")))
64510454SCurtis.Dunham@arm.com    env.Depends(cc_file, depends + extra_deps)
6468596Ssteve.reinhardt@amd.com    Source(cc_file)
6474762Snate@binkert.org
6486143Snate@binkert.org    hh_file = File('enums/%s.hh' % name)
6496143Snate@binkert.org    env.Command(hh_file, Value(name),
6506143Snate@binkert.org                MakeAction(createEnumDecls, Transform("ENUMDECL")))
6514762Snate@binkert.org    env.Depends(hh_file, depends + extra_deps)
6524762Snate@binkert.org
6534762Snate@binkert.org    i_file = File('python/m5/internal/enum_%s.i' % name)
6547756SAli.Saidi@ARM.com    env.Command(i_file, Value(name),
6558596Ssteve.reinhardt@amd.com                MakeAction(createEnumSwigWrapper, Transform("ENUMSWIG")))
6564762Snate@binkert.org    env.Depends(i_file, depends + extra_deps)
65710454SCurtis.Dunham@arm.com    SwigSource('m5.internal', i_file)
6584762Snate@binkert.org
65910458Sandreas.hansson@arm.com# Generate SimObject SWIG wrapper files
66010458Sandreas.hansson@arm.comfor name,simobj in sim_objects.iteritems():
66110458Sandreas.hansson@arm.com    py_source = PySource.modules[simobj.__module__]
66210458Sandreas.hansson@arm.com    extra_deps = [ py_source.tnode ]
66310458Sandreas.hansson@arm.com
66410458Sandreas.hansson@arm.com    i_file = File('python/m5/internal/param_%s.i' % name)
66510458Sandreas.hansson@arm.com    env.Command(i_file, Value(name),
66610458Sandreas.hansson@arm.com                MakeAction(createSimObjectSwigWrapper, Transform("SO SWIG")))
66710458Sandreas.hansson@arm.com    env.Depends(i_file, depends + extra_deps)
66810458Sandreas.hansson@arm.com    SwigSource('m5.internal', i_file)
66910458Sandreas.hansson@arm.com
67010458Sandreas.hansson@arm.com# Generate the main swig init file
67110458Sandreas.hansson@arm.comdef makeEmbeddedSwigInit(target, source, env):
67210458Sandreas.hansson@arm.com    code = code_formatter()
67310458Sandreas.hansson@arm.com    module = source[0].get_contents()
67410458Sandreas.hansson@arm.com    code('''\
67510458Sandreas.hansson@arm.com#include "sim/init.hh"
67610458Sandreas.hansson@arm.com
67710458Sandreas.hansson@arm.comextern "C" {
67810458Sandreas.hansson@arm.com    void init_${module}();
67910458Sandreas.hansson@arm.com}
68010458Sandreas.hansson@arm.com
68110458Sandreas.hansson@arm.comEmbeddedSwig embed_swig_${module}(init_${module});
68210458Sandreas.hansson@arm.com''')
68310458Sandreas.hansson@arm.com    code.write(str(target[0]))
68410458Sandreas.hansson@arm.com    
68510458Sandreas.hansson@arm.com# Build all swig modules
68610458Sandreas.hansson@arm.comfor swig in SwigSource.all:
68710458Sandreas.hansson@arm.com    env.Command([swig.cc_source.tnode, swig.py_source.tnode], swig.tnode,
68810458Sandreas.hansson@arm.com                MakeAction('$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} '
68910458Sandreas.hansson@arm.com                '-o ${TARGETS[0]} $SOURCES', Transform("SWIG")))
69010458Sandreas.hansson@arm.com    cc_file = str(swig.tnode)
69110458Sandreas.hansson@arm.com    init_file = '%s/%s_init.cc' % (dirname(cc_file), basename(cc_file))
69210458Sandreas.hansson@arm.com    env.Command(init_file, Value(swig.module),
69310458Sandreas.hansson@arm.com                MakeAction(makeEmbeddedSwigInit, Transform("EMBED SW")))
69410458Sandreas.hansson@arm.com    Source(init_file, **swig.guards)
69510458Sandreas.hansson@arm.com
69610458Sandreas.hansson@arm.com# Build all protocol buffers if we have got protoc and protobuf available
69710458Sandreas.hansson@arm.comif env['HAVE_PROTOBUF']:
69810458Sandreas.hansson@arm.com    for proto in ProtoBuf.all:
69910458Sandreas.hansson@arm.com        # Use both the source and header as the target, and the .proto
70010458Sandreas.hansson@arm.com        # file as the source. When executing the protoc compiler, also
70110458Sandreas.hansson@arm.com        # specify the proto_path to avoid having the generated files
70210458Sandreas.hansson@arm.com        # include the path.
70310458Sandreas.hansson@arm.com        env.Command([proto.cc_file, proto.hh_file], proto.tnode,
70410458Sandreas.hansson@arm.com                    MakeAction('$PROTOC --cpp_out ${TARGET.dir} '
70510458Sandreas.hansson@arm.com                               '--proto_path ${SOURCE.dir} $SOURCE',
70610458Sandreas.hansson@arm.com                               Transform("PROTOC")))
70710458Sandreas.hansson@arm.com
70810458Sandreas.hansson@arm.com        # Add the C++ source file
70910458Sandreas.hansson@arm.com        Source(proto.cc_file, **proto.guards)
71010458Sandreas.hansson@arm.comelif ProtoBuf.all:
71110458Sandreas.hansson@arm.com    print 'Got protobuf to build, but lacks support!'
71210458Sandreas.hansson@arm.com    Exit(1)
71310458Sandreas.hansson@arm.com
7148596Ssteve.reinhardt@amd.com#
7155463Snate@binkert.org# Handle debug flags
7168596Ssteve.reinhardt@amd.com#
7178596Ssteve.reinhardt@amd.comdef makeDebugFlagCC(target, source, env):
7185463Snate@binkert.org    assert(len(target) == 1 and len(source) == 1)
7197756SAli.Saidi@ARM.com
7208596Ssteve.reinhardt@amd.com    val = eval(source[0].get_contents())
7214762Snate@binkert.org    name, compound, desc = val
72210454SCurtis.Dunham@arm.com    compound = list(sorted(compound))
7237677Snate@binkert.org
7244762Snate@binkert.org    code = code_formatter()
7254762Snate@binkert.org
7266143Snate@binkert.org    # file header
7276143Snate@binkert.org    code('''
7286143Snate@binkert.org/*
7294762Snate@binkert.org * DO NOT EDIT THIS FILE! Automatically generated
7304762Snate@binkert.org */
7317756SAli.Saidi@ARM.com
7327816Ssteve.reinhardt@amd.com#include "base/debug.hh"
7334762Snate@binkert.org''')
73410454SCurtis.Dunham@arm.com
7354762Snate@binkert.org    for flag in compound:
7364762Snate@binkert.org        code('#include "debug/$flag.hh"')
7374762Snate@binkert.org    code()
7387756SAli.Saidi@ARM.com    code('namespace Debug {')
7398596Ssteve.reinhardt@amd.com    code()
7404762Snate@binkert.org
74110454SCurtis.Dunham@arm.com    if not compound:
7424762Snate@binkert.org        code('SimpleFlag $name("$name", "$desc");')
7437677Snate@binkert.org    else:
7447756SAli.Saidi@ARM.com        code('CompoundFlag $name("$name", "$desc",')
7458596Ssteve.reinhardt@amd.com        code.indent()
7467675Snate@binkert.org        last = len(compound) - 1
74710454SCurtis.Dunham@arm.com        for i,flag in enumerate(compound):
7487677Snate@binkert.org            if i != last:
7495517Snate@binkert.org                code('$flag,')
7508596Ssteve.reinhardt@amd.com            else:
7519248SAndreas.Sandberg@arm.com                code('$flag);')
7529248SAndreas.Sandberg@arm.com        code.dedent()
7539248SAndreas.Sandberg@arm.com
7549248SAndreas.Sandberg@arm.com    code()
7558596Ssteve.reinhardt@amd.com    code('} // namespace Debug')
7568596Ssteve.reinhardt@amd.com
7578596Ssteve.reinhardt@amd.com    code.write(str(target[0]))
7589248SAndreas.Sandberg@arm.com
7598596Ssteve.reinhardt@amd.comdef makeDebugFlagHH(target, source, env):
7604762Snate@binkert.org    assert(len(target) == 1 and len(source) == 1)
7617674Snate@binkert.org
7627674Snate@binkert.org    val = eval(source[0].get_contents())
7637674Snate@binkert.org    name, compound, desc = val
7647674Snate@binkert.org
7657674Snate@binkert.org    code = code_formatter()
7667674Snate@binkert.org
7677674Snate@binkert.org    # file header boilerplate
7687674Snate@binkert.org    code('''\
7697674Snate@binkert.org/*
7707674Snate@binkert.org * DO NOT EDIT THIS FILE!
7717674Snate@binkert.org *
7727674Snate@binkert.org * Automatically generated by SCons
7737674Snate@binkert.org */
7747674Snate@binkert.org
7757674Snate@binkert.org#ifndef __DEBUG_${name}_HH__
7764762Snate@binkert.org#define __DEBUG_${name}_HH__
7776143Snate@binkert.org
7786143Snate@binkert.orgnamespace Debug {
7797756SAli.Saidi@ARM.com''')
7807816Ssteve.reinhardt@amd.com
7818235Snate@binkert.org    if compound:
7828596Ssteve.reinhardt@amd.com        code('class CompoundFlag;')
7837756SAli.Saidi@ARM.com    code('class SimpleFlag;')
7847816Ssteve.reinhardt@amd.com
78510454SCurtis.Dunham@arm.com    if compound:
7868235Snate@binkert.org        code('extern CompoundFlag $name;')
7874382Sbinkertn@umich.edu        for flag in compound:
7889396Sandreas.hansson@arm.com            code('extern SimpleFlag $flag;')
7899396Sandreas.hansson@arm.com    else:
7909396Sandreas.hansson@arm.com        code('extern SimpleFlag $name;')
7919396Sandreas.hansson@arm.com
7929396Sandreas.hansson@arm.com    code('''
7939396Sandreas.hansson@arm.com}
7949396Sandreas.hansson@arm.com
7959396Sandreas.hansson@arm.com#endif // __DEBUG_${name}_HH__
7969396Sandreas.hansson@arm.com''')
7979396Sandreas.hansson@arm.com
7989396Sandreas.hansson@arm.com    code.write(str(target[0]))
7999396Sandreas.hansson@arm.com
80010454SCurtis.Dunham@arm.comfor name,flag in sorted(debug_flags.iteritems()):
8019396Sandreas.hansson@arm.com    n, compound, desc = flag
8029396Sandreas.hansson@arm.com    assert n == name
8039396Sandreas.hansson@arm.com
8049396Sandreas.hansson@arm.com    env.Command('debug/%s.hh' % name, Value(flag),
8059396Sandreas.hansson@arm.com                MakeAction(makeDebugFlagHH, Transform("TRACING", 0)))
8069396Sandreas.hansson@arm.com    env.Command('debug/%s.cc' % name, Value(flag),
8078232Snate@binkert.org                MakeAction(makeDebugFlagCC, Transform("TRACING", 0)))
8088232Snate@binkert.org    Source('debug/%s.cc' % name)
8098232Snate@binkert.org
8108232Snate@binkert.org# Embed python files.  All .py files that have been indicated by a
8118232Snate@binkert.org# PySource() call in a SConscript need to be embedded into the M5
8126229Snate@binkert.org# library.  To do that, we compile the file to byte code, marshal the
81310455SCurtis.Dunham@arm.com# byte code, compress it, and then generate a c++ file that
8146229Snate@binkert.org# inserts the result into an array.
81510455SCurtis.Dunham@arm.comdef embedPyFile(target, source, env):
81610455SCurtis.Dunham@arm.com    def c_str(string):
81710455SCurtis.Dunham@arm.com        if string is None:
8185517Snate@binkert.org            return "0"
8195517Snate@binkert.org        return '"%s"' % string
8207673Snate@binkert.org
8215517Snate@binkert.org    '''Action function to compile a .py into a code object, marshal
82210455SCurtis.Dunham@arm.com    it, compress it, and stick it into an asm file so the code appears
8235517Snate@binkert.org    as just bytes with a label in the data section'''
8245517Snate@binkert.org
8258232Snate@binkert.org    src = file(str(source[0]), 'r').read()
82610455SCurtis.Dunham@arm.com
82710455SCurtis.Dunham@arm.com    pysource = PySource.tnodes[source[0]]
82810455SCurtis.Dunham@arm.com    compiled = compile(src, pysource.abspath, 'exec')
8297673Snate@binkert.org    marshalled = marshal.dumps(compiled)
8307673Snate@binkert.org    compressed = zlib.compress(marshalled)
83110455SCurtis.Dunham@arm.com    data = compressed
83210455SCurtis.Dunham@arm.com    sym = pysource.symname
83310455SCurtis.Dunham@arm.com
8345517Snate@binkert.org    code = code_formatter()
83510455SCurtis.Dunham@arm.com    code('''\
83610455SCurtis.Dunham@arm.com#include "sim/init.hh"
83710455SCurtis.Dunham@arm.com
83810455SCurtis.Dunham@arm.comnamespace {
83910455SCurtis.Dunham@arm.com
84010455SCurtis.Dunham@arm.comconst uint8_t data_${sym}[] = {
84110455SCurtis.Dunham@arm.com''')
84210455SCurtis.Dunham@arm.com    code.indent()
84310455SCurtis.Dunham@arm.com    step = 16
84410455SCurtis.Dunham@arm.com    for i in xrange(0, len(data), step):
84510455SCurtis.Dunham@arm.com        x = array.array('B', data[i:i+step])
84610455SCurtis.Dunham@arm.com        code(''.join('%d,' % d for d in x))
8475517Snate@binkert.org    code.dedent()
84810455SCurtis.Dunham@arm.com    
8498232Snate@binkert.org    code('''};
8508232Snate@binkert.org
8515517Snate@binkert.orgEmbeddedPython embedded_${sym}(
8527673Snate@binkert.org    ${{c_str(pysource.arcname)}},
8535517Snate@binkert.org    ${{c_str(pysource.abspath)}},
8548232Snate@binkert.org    ${{c_str(pysource.modpath)}},
8558232Snate@binkert.org    data_${sym},
8565517Snate@binkert.org    ${{len(data)}},
8578232Snate@binkert.org    ${{len(marshalled)}});
8588232Snate@binkert.org
8598232Snate@binkert.org} // anonymous namespace
8607673Snate@binkert.org''')
8615517Snate@binkert.org    code.write(str(target[0]))
8625517Snate@binkert.org
8637673Snate@binkert.orgfor source in PySource.all:
8645517Snate@binkert.org    env.Command(source.cpp, source.tnode, 
86510455SCurtis.Dunham@arm.com                MakeAction(embedPyFile, Transform("EMBED PY")))
8665517Snate@binkert.org    Source(source.cpp)
8675517Snate@binkert.org
8688232Snate@binkert.org########################################################################
8698232Snate@binkert.org#
8705517Snate@binkert.org# Define binaries.  Each different build type (debug, opt, etc.) gets
8718232Snate@binkert.org# a slightly different build environment.
8728232Snate@binkert.org#
8735517Snate@binkert.org
8748232Snate@binkert.org# List of constructed environments to pass back to SConstruct
8758232Snate@binkert.orgenvList = []
8768232Snate@binkert.org
8775517Snate@binkert.orgdate_source = Source('base/date.cc', skip_lib=True)
8788232Snate@binkert.org
8798232Snate@binkert.org# Function to create a new build environment as clone of current
8808232Snate@binkert.org# environment 'env' with modified object suffix and optional stripped
8818232Snate@binkert.org# binary.  Additional keyword arguments are appended to corresponding
8828232Snate@binkert.org# build environment vars.
8838232Snate@binkert.orgdef makeEnv(label, objsfx, strip = False, **kwargs):
8845517Snate@binkert.org    # SCons doesn't know to append a library suffix when there is a '.' in the
8858232Snate@binkert.org    # name.  Use '_' instead.
8868232Snate@binkert.org    libname = 'gem5_' + label
8875517Snate@binkert.org    exename = 'gem5.' + label
8888232Snate@binkert.org    secondary_exename = 'm5.' + label
8897673Snate@binkert.org
8905517Snate@binkert.org    new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's')
8917673Snate@binkert.org    new_env.Label = label
8925517Snate@binkert.org    new_env.Append(**kwargs)
8938232Snate@binkert.org
8948232Snate@binkert.org    swig_env = new_env.Clone()
8958232Snate@binkert.org    swig_env.Append(CCFLAGS='-Werror')
8965192Ssaidi@eecs.umich.edu    if env['GCC']:
89710454SCurtis.Dunham@arm.com        swig_env.Append(CCFLAGS=['-Wno-uninitialized', '-Wno-sign-compare',
89810454SCurtis.Dunham@arm.com                                 '-Wno-parentheses', '-Wno-unused-label',
8998232Snate@binkert.org                                 '-Wno-unused-value'])
90010455SCurtis.Dunham@arm.com        if compareVersions(env['GCC_VERSION'], '4.6') >= 0:
90110455SCurtis.Dunham@arm.com            swig_env.Append(CCFLAGS='-Wno-unused-but-set-variable')
90210455SCurtis.Dunham@arm.com    if env['CLANG']:
90310455SCurtis.Dunham@arm.com        swig_env.Append(CCFLAGS=['-Wno-unused-label', '-Wno-unused-value'])
90410455SCurtis.Dunham@arm.com
90510455SCurtis.Dunham@arm.com    werror_env = new_env.Clone()
9065192Ssaidi@eecs.umich.edu    werror_env.Append(CCFLAGS='-Werror')
9077674Snate@binkert.org
9085522Snate@binkert.org    def make_obj(source, static, extra_deps = None):
9095522Snate@binkert.org        '''This function adds the specified source to the correct
9107674Snate@binkert.org        build environment, and returns the corresponding SCons Object
9117674Snate@binkert.org        nodes'''
9127674Snate@binkert.org
9137674Snate@binkert.org        if source.swig:
9147674Snate@binkert.org            env = swig_env
9157674Snate@binkert.org        elif source.Werror:
9167674Snate@binkert.org            env = werror_env
9177674Snate@binkert.org        else:
9185522Snate@binkert.org            env = new_env
9195522Snate@binkert.org
9205522Snate@binkert.org        if static:
9215517Snate@binkert.org            obj = env.StaticObject(source.tnode)
9225522Snate@binkert.org        else:
9235517Snate@binkert.org            obj = env.SharedObject(source.tnode)
9246143Snate@binkert.org
9256727Ssteve.reinhardt@amd.com        if extra_deps:
9265522Snate@binkert.org            env.Depends(obj, extra_deps)
9275522Snate@binkert.org
9285522Snate@binkert.org        return obj
9297674Snate@binkert.org
9305517Snate@binkert.org    static_objs = \
9317673Snate@binkert.org        [ make_obj(s, True) for s in Source.get(main=False, skip_lib=False) ]
9327673Snate@binkert.org    shared_objs = \
9337674Snate@binkert.org        [ make_obj(s, False) for s in Source.get(main=False, skip_lib=False) ]
9347673Snate@binkert.org
9357674Snate@binkert.org    static_date = make_obj(date_source, static=True, extra_deps=static_objs)
9367674Snate@binkert.org    static_objs.append(static_date)
9378946Sandreas.hansson@arm.com    
9387674Snate@binkert.org    shared_date = make_obj(date_source, static=False, extra_deps=shared_objs)
9397674Snate@binkert.org    shared_objs.append(shared_date)
9407674Snate@binkert.org
9415522Snate@binkert.org    # First make a library of everything but main() so other programs can
9425522Snate@binkert.org    # link against m5.
9437674Snate@binkert.org    static_lib = new_env.StaticLibrary(libname, static_objs)
9447674Snate@binkert.org    shared_lib = new_env.SharedLibrary(libname, shared_objs)
9457674Snate@binkert.org
9467674Snate@binkert.org    # Now link a stub with main() and the static library.
9477673Snate@binkert.org    main_objs = [ make_obj(s, True) for s in Source.get(main=True) ]
9487674Snate@binkert.org
9497674Snate@binkert.org    for test in UnitTest.all:
9507674Snate@binkert.org        flags = { test.target : True }
9517674Snate@binkert.org        test_sources = Source.get(**flags)
9527674Snate@binkert.org        test_objs = [ make_obj(s, static=True) for s in test_sources ]
9537674Snate@binkert.org        if test.main:
9547674Snate@binkert.org            test_objs += main_objs
9557674Snate@binkert.org        testname = "unittest/%s.%s" % (test.target, label)
9567811Ssteve.reinhardt@amd.com        new_env.Program(testname, test_objs + static_objs)
9577674Snate@binkert.org
9587673Snate@binkert.org    progname = exename
9595522Snate@binkert.org    if strip:
9606143Snate@binkert.org        progname += '.unstripped'
96110453SAndrew.Bardsley@arm.com
9627816Ssteve.reinhardt@amd.com    targets = new_env.Program(progname, main_objs + static_objs)
96310454SCurtis.Dunham@arm.com
96410453SAndrew.Bardsley@arm.com    if strip:
9654382Sbinkertn@umich.edu        if sys.platform == 'sunos5':
9664382Sbinkertn@umich.edu            cmd = 'cp $SOURCE $TARGET; strip $TARGET'
9674382Sbinkertn@umich.edu        else:
9684382Sbinkertn@umich.edu            cmd = 'strip $SOURCE -o $TARGET'
9694382Sbinkertn@umich.edu        targets = new_env.Command(exename, progname,
9704382Sbinkertn@umich.edu                    MakeAction(cmd, Transform("STRIP")))
9714382Sbinkertn@umich.edu
9724382Sbinkertn@umich.edu    new_env.Command(secondary_exename, exename,
97310196SCurtis.Dunham@arm.com            MakeAction('ln $SOURCE $TARGET', Transform("HARDLINK")))
9744382Sbinkertn@umich.edu
97510196SCurtis.Dunham@arm.com    new_env.M5Binary = targets[0]
97610196SCurtis.Dunham@arm.com    envList.append(new_env)
97710196SCurtis.Dunham@arm.com
97810196SCurtis.Dunham@arm.com# Start out with the compiler flags common to all compilers,
97910196SCurtis.Dunham@arm.com# i.e. they all use -g for opt and -g -pg for prof
98010196SCurtis.Dunham@arm.comccflags = {'debug' : [], 'opt' : ['-g'], 'fast' : [], 'prof' : ['-g', '-pg'],
98110196SCurtis.Dunham@arm.com           'perf' : ['-g']}
982955SN/A
9832655Sstever@eecs.umich.edu# Start out with the linker flags common to all linkers, i.e. -pg for
9842655Sstever@eecs.umich.edu# prof, and -lprofiler for perf. The -lprofile flag is surrounded by
9852655Sstever@eecs.umich.edu# no-as-needed and as-needed as the binutils linker is too clever and
9862655Sstever@eecs.umich.edu# simply doesn't link to the library otherwise.
98710196SCurtis.Dunham@arm.comldflags = {'debug' : [], 'opt' : [], 'fast' : [], 'prof' : ['-pg'],
9885601Snate@binkert.org           'perf' : ['-Wl,--no-as-needed', '-lprofiler', '-Wl,--as-needed']}
9895601Snate@binkert.org
99010196SCurtis.Dunham@arm.com# For Link Time Optimization, the optimisation flags used to compile
99110196SCurtis.Dunham@arm.com# individual files are decoupled from those used at link time
99210196SCurtis.Dunham@arm.com# (i.e. you can compile with -O3 and perform LTO with -O0), so we need
9935522Snate@binkert.org# to also update the linker flags based on the target.
9945863Snate@binkert.orgif env['GCC']:
9955601Snate@binkert.org    if sys.platform == 'sunos5':
9965601Snate@binkert.org        ccflags['debug'] += ['-gstabs+']
9975601Snate@binkert.org    else:
9985863Snate@binkert.org        ccflags['debug'] += ['-ggdb3']
9999556Sandreas.hansson@arm.com    ldflags['debug'] += ['-O0']
10009556Sandreas.hansson@arm.com    # opt, fast, prof and perf all share the same cc flags, also add
10019556Sandreas.hansson@arm.com    # the optimization to the ldflags as LTO defers the optimization
10029556Sandreas.hansson@arm.com    # to link time
10039556Sandreas.hansson@arm.com    for target in ['opt', 'fast', 'prof', 'perf']:
10049556Sandreas.hansson@arm.com        ccflags[target] += ['-O3']
10059556Sandreas.hansson@arm.com        ldflags[target] += ['-O3']
10069556Sandreas.hansson@arm.com
10079556Sandreas.hansson@arm.com    ccflags['fast'] += env['LTO_CCFLAGS']
10085559Snate@binkert.org    ldflags['fast'] += env['LTO_LDFLAGS']
10099556Sandreas.hansson@arm.com
10109618Ssteve.reinhardt@amd.comelif env['SUNCC']:
10119618Ssteve.reinhardt@amd.com    ccflags['debug'] += ['-g0']
10129618Ssteve.reinhardt@amd.com    ccflags['opt'] += ['-O']
101310238Sandreas.hansson@arm.com    for target in ['fast', 'prof', 'perf']:
101410238Sandreas.hansson@arm.com        ccflags[target] += ['-fast']
10159554Sandreas.hansson@arm.comelif env['ICC']:
10169556Sandreas.hansson@arm.com    ccflags['debug'] += ['-g', '-O0']
10179556Sandreas.hansson@arm.com    ccflags['opt'] += ['-O']
10189556Sandreas.hansson@arm.com    for target in ['fast', 'prof', 'perf']:
10199556Sandreas.hansson@arm.com        ccflags[target] += ['-fast']
10209555Sandreas.hansson@arm.comelif env['CLANG']:
10219555Sandreas.hansson@arm.com    ccflags['debug'] += ['-g', '-O0']
10229556Sandreas.hansson@arm.com    # opt, fast, prof and perf all share the same cc flags
102310457Sandreas.hansson@arm.com    for target in ['opt', 'fast', 'prof', 'perf']:
102410457Sandreas.hansson@arm.com        ccflags[target] += ['-O3']
102510457Sandreas.hansson@arm.comelse:
102610457Sandreas.hansson@arm.com    print 'Unknown compiler, please fix compiler options'
102710457Sandreas.hansson@arm.com    Exit(1)
102810457Sandreas.hansson@arm.com
102910457Sandreas.hansson@arm.com
103010457Sandreas.hansson@arm.com# To speed things up, we only instantiate the build environments we
103110457Sandreas.hansson@arm.com# need.  We try to identify the needed environment for each target; if
10328737Skoansin.tan@gmail.com# we can't, we fall back on instantiating all the environments just to
10339556Sandreas.hansson@arm.com# be safe.
10349556Sandreas.hansson@arm.comtarget_types = ['debug', 'opt', 'fast', 'prof', 'perf']
10359556Sandreas.hansson@arm.comobj2target = {'do': 'debug', 'o': 'opt', 'fo': 'fast', 'po': 'prof',
10369554Sandreas.hansson@arm.com              'gpo' : 'perf'}
103710278SAndreas.Sandberg@ARM.com
103810278SAndreas.Sandberg@ARM.comdef identifyTarget(t):
103910278SAndreas.Sandberg@ARM.com    ext = t.split('.')[-1]
104010278SAndreas.Sandberg@ARM.com    if ext in target_types:
104110278SAndreas.Sandberg@ARM.com        return ext
104210278SAndreas.Sandberg@ARM.com    if obj2target.has_key(ext):
104310278SAndreas.Sandberg@ARM.com        return obj2target[ext]
104410278SAndreas.Sandberg@ARM.com    match = re.search(r'/tests/([^/]+)/', t)
104510457Sandreas.hansson@arm.com    if match and match.group(1) in target_types:
104610457Sandreas.hansson@arm.com        return match.group(1)
104710457Sandreas.hansson@arm.com    return 'all'
104810457Sandreas.hansson@arm.com
104910457Sandreas.hansson@arm.comneeded_envs = [identifyTarget(target) for target in BUILD_TARGETS]
105010457Sandreas.hansson@arm.comif 'all' in needed_envs:
10518945Ssteve.reinhardt@amd.com    needed_envs += target_types
10528945Ssteve.reinhardt@amd.com
10538945Ssteve.reinhardt@amd.com# Debug binary
10546143Snate@binkert.orgif 'debug' in needed_envs:
10556143Snate@binkert.org    makeEnv('debug', '.do',
10566143Snate@binkert.org            CCFLAGS = Split(ccflags['debug']),
10576143Snate@binkert.org            CPPDEFINES = ['DEBUG', 'TRACING_ON=1'],
10586143Snate@binkert.org            LINKFLAGS = Split(ldflags['debug']))
10596143Snate@binkert.org
10606143Snate@binkert.org# Optimized binary
10618945Ssteve.reinhardt@amd.comif 'opt' in needed_envs:
10628945Ssteve.reinhardt@amd.com    makeEnv('opt', '.o',
10636143Snate@binkert.org            CCFLAGS = Split(ccflags['opt']),
10646143Snate@binkert.org            CPPDEFINES = ['TRACING_ON=1'],
10656143Snate@binkert.org            LINKFLAGS = Split(ldflags['opt']))
10666143Snate@binkert.org
10676143Snate@binkert.org# "Fast" binary
10686143Snate@binkert.orgif 'fast' in needed_envs:
10696143Snate@binkert.org    makeEnv('fast', '.fo', strip = True,
10706143Snate@binkert.org            CCFLAGS = Split(ccflags['fast']),
10716143Snate@binkert.org            CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
10726143Snate@binkert.org            LINKFLAGS = Split(ldflags['fast']))
10736143Snate@binkert.org
10746143Snate@binkert.org# Profiled binary using gprof
10756143Snate@binkert.orgif 'prof' in needed_envs:
107610453SAndrew.Bardsley@arm.com    makeEnv('prof', '.po',
107710453SAndrew.Bardsley@arm.com            CCFLAGS = Split(ccflags['prof']),
107810453SAndrew.Bardsley@arm.com            CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
107910453SAndrew.Bardsley@arm.com            LINKFLAGS = Split(ldflags['prof']))
108010453SAndrew.Bardsley@arm.com
108110453SAndrew.Bardsley@arm.com# Profiled binary using google-pprof
108210453SAndrew.Bardsley@arm.comif 'perf' in needed_envs:
108310453SAndrew.Bardsley@arm.com    makeEnv('perf', '.gpo',
108410453SAndrew.Bardsley@arm.com            CCFLAGS = Split(ccflags['perf']),
10856143Snate@binkert.org            CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
10866143Snate@binkert.org            LINKFLAGS = Split(ldflags['perf']))
10876143Snate@binkert.org
108810453SAndrew.Bardsley@arm.comReturn('envList')
10896143Snate@binkert.org