SConscript revision 9227
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
3711974Sgabeblack@google.comimport sys
38955SN/Aimport zlib
395522Snate@binkert.org
404202Sbinkertn@umich.edufrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath
415742Snate@binkert.org
42955SN/Aimport SCons
434381Sbinkertn@umich.edu
444381Sbinkertn@umich.edu# This file defines how to build a particular configuration of gem5
4512246Sgabeblack@google.com# based on variable settings in the 'env' build environment.
4612246Sgabeblack@google.com
478334Snate@binkert.orgImport('*')
48955SN/A
49955SN/A# Children need to see the environment
504202Sbinkertn@umich.eduExport('env')
51955SN/A
524382Sbinkertn@umich.edubuild_env = [(opt, env[opt]) for opt in export_vars]
534382Sbinkertn@umich.edu
544382Sbinkertn@umich.edufrom m5.util import code_formatter, compareVersions
556654Snate@binkert.org
565517Snate@binkert.org########################################################################
578614Sgblack@eecs.umich.edu# Code for adding source files of various types
587674Snate@binkert.org#
596143Snate@binkert.org# When specifying a source file of some type, a set of guards can be
606143Snate@binkert.org# specified for that file.  When get() is used to find the files, if
616143Snate@binkert.org# get specifies a set of filters, only files that match those filters
6212302Sgabeblack@google.com# will be accepted (unspecified filters on files are assumed to be
6312302Sgabeblack@google.com# false).  Current filters are:
6412302Sgabeblack@google.com#     main -- specifies the gem5 main() function
6512302Sgabeblack@google.com#     skip_lib -- do not put this file into the gem5 library
6612302Sgabeblack@google.com#     <unittest> -- unit tests use filters based on the unit test name
6712302Sgabeblack@google.com#
6812302Sgabeblack@google.com# A parent can now be specified for a source file and default filter
6912302Sgabeblack@google.com# values will be retrieved recursively from parents (children override
7012302Sgabeblack@google.com# parents).
7112302Sgabeblack@google.com#
7212302Sgabeblack@google.comclass SourceMeta(type):
7312302Sgabeblack@google.com    '''Meta class for source files that keeps track of all files of a
7412302Sgabeblack@google.com    particular type and has a get function for finding all functions
7512302Sgabeblack@google.com    of a certain type that match a set of guards'''
7612302Sgabeblack@google.com    def __init__(cls, name, bases, dict):
7712302Sgabeblack@google.com        super(SourceMeta, cls).__init__(name, bases, dict)
7812302Sgabeblack@google.com        cls.all = []
7912302Sgabeblack@google.com        
8012302Sgabeblack@google.com    def get(cls, **guards):
8112302Sgabeblack@google.com        '''Find all files that match the specified guards.  If a source
8212302Sgabeblack@google.com        file does not specify a flag, the default is False'''
8312302Sgabeblack@google.com        for src in cls.all:
8412302Sgabeblack@google.com            for flag,value in guards.iteritems():
8512302Sgabeblack@google.com                # if the flag is found and has a different value, skip
8612302Sgabeblack@google.com                # this file
8712302Sgabeblack@google.com                if src.all_guards.get(flag, False) != value:
8812302Sgabeblack@google.com                    break
8912302Sgabeblack@google.com            else:
9012302Sgabeblack@google.com                yield src
9111983Sgabeblack@google.com
926143Snate@binkert.orgclass SourceFile(object):
938233Snate@binkert.org    '''Base object that encapsulates the notion of a source file.
9412302Sgabeblack@google.com    This includes, the source node, target node, various manipulations
956143Snate@binkert.org    of those.  A source file also specifies a set of guards which
966143Snate@binkert.org    describing which builds the source file applies to.  A parent can
9712302Sgabeblack@google.com    also be specified to get default guards from'''
984762Snate@binkert.org    __metaclass__ = SourceMeta
996143Snate@binkert.org    def __init__(self, source, parent=None, **guards):
1008233Snate@binkert.org        self.guards = guards
1018233Snate@binkert.org        self.parent = parent
10212302Sgabeblack@google.com
10312302Sgabeblack@google.com        tnode = source
1046143Snate@binkert.org        if not isinstance(source, SCons.Node.FS.File):
10512302Sgabeblack@google.com            tnode = File(source)
10612302Sgabeblack@google.com
10712302Sgabeblack@google.com        self.tnode = tnode
10812302Sgabeblack@google.com        self.snode = tnode.srcnode()
10912302Sgabeblack@google.com
11012302Sgabeblack@google.com        for base in type(self).__mro__:
11112302Sgabeblack@google.com            if issubclass(base, SourceFile):
11212302Sgabeblack@google.com                base.all.append(self)
11312302Sgabeblack@google.com
11412302Sgabeblack@google.com    @property
1158233Snate@binkert.org    def filename(self):
1166143Snate@binkert.org        return str(self.tnode)
1176143Snate@binkert.org
1186143Snate@binkert.org    @property
1196143Snate@binkert.org    def dirname(self):
1206143Snate@binkert.org        return dirname(self.filename)
1216143Snate@binkert.org
1226143Snate@binkert.org    @property
1236143Snate@binkert.org    def basename(self):
1246143Snate@binkert.org        return basename(self.filename)
1257065Snate@binkert.org
1266143Snate@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
1478233Snate@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):
1536143Snate@binkert.org    '''Add a c/c++ source file to the build'''
1549982Satgutier@umich.edu    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):
16210196SCurtis.Dunham@arm.com    '''Add a python source file to the named package'''
1636143Snate@binkert.org    invalid_sym_char = re.compile('[^A-z0-9_]')
16412302Sgabeblack@google.com    modules = {}
16512302Sgabeblack@google.com    tnodes = {}
16612302Sgabeblack@google.com    symnames = {}
16712302Sgabeblack@google.com    
16812302Sgabeblack@google.com    def __init__(self, package, source, **guards):
16912302Sgabeblack@google.com        '''specify the python package, the source file, and any guards'''
17012302Sgabeblack@google.com        super(PySource, self).__init__(source, **guards)
17112302Sgabeblack@google.com
17211983Sgabeblack@google.com        modname,ext = self.extname
17311983Sgabeblack@google.com        assert ext == 'py'
17411983Sgabeblack@google.com
17512302Sgabeblack@google.com        if package:
17612302Sgabeblack@google.com            path = package.split('.')
17712302Sgabeblack@google.com        else:
17812302Sgabeblack@google.com            path = []
17912302Sgabeblack@google.com
18012302Sgabeblack@google.com        modpath = path[:]
18111983Sgabeblack@google.com        if modname != '__init__':
1826143Snate@binkert.org            modpath += [ modname ]
18312302Sgabeblack@google.com        modpath = '.'.join(modpath)
18412302Sgabeblack@google.com
18512302Sgabeblack@google.com        arcpath = path + [ self.basename ]
18612302Sgabeblack@google.com        abspath = self.snode.abspath
1878945Ssteve.reinhardt@amd.com        if not exists(abspath):
1886143Snate@binkert.org            abspath = self.tnode.abspath
1896143Snate@binkert.org
1906143Snate@binkert.org        self.package = package
1915522Snate@binkert.org        self.modname = modname
1926143Snate@binkert.org        self.modpath = modpath
1936143Snate@binkert.org        self.arcname = joinpath(*arcpath)
1946143Snate@binkert.org        self.abspath = abspath
1959982Satgutier@umich.edu        self.compiled = File(self.filename + 'c')
19612302Sgabeblack@google.com        self.cpp = File(self.filename + '.cc')
19712302Sgabeblack@google.com        self.symname = PySource.invalid_sym_char.sub('_', modpath)
19812302Sgabeblack@google.com
1996143Snate@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
2035522Snate@binkert.orgclass SimObject(PySource):
2045522Snate@binkert.org    '''Add a SimObject python file as a python source object and add
2055522Snate@binkert.org    it to a list of sim object modules'''
2065522Snate@binkert.org
2075604Snate@binkert.org    fixed = False
2085604Snate@binkert.org    modnames = []
2096143Snate@binkert.org
2106143Snate@binkert.org    def __init__(self, source, **guards):
2114762Snate@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)
2146727Ssteve.reinhardt@amd.com        if self.fixed:
2156727Ssteve.reinhardt@amd.com            raise AttributeError, "Too late to call SimObject now."
2166727Ssteve.reinhardt@amd.com
2174762Snate@binkert.org        bisect.insort_right(SimObject.modnames, self.modname)
2186143Snate@binkert.org
2196143Snate@binkert.orgclass SwigSource(SourceFile):
2206143Snate@binkert.org    '''Add a swig file to build'''
2216143Snate@binkert.org
2226727Ssteve.reinhardt@amd.com    def __init__(self, package, source, **guards):
2236143Snate@binkert.org        '''Specify the python package, the source file, and any guards'''
2247674Snate@binkert.org        super(SwigSource, self).__init__(source, **guards)
2257674Snate@binkert.org
2265604Snate@binkert.org        modname,ext = self.extname
2276143Snate@binkert.org        assert ext == 'i'
2286143Snate@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')
2324762Snate@binkert.org
2334762Snate@binkert.org        self.cc_source = Source(cc_file, swig=True, parent=self)
2344762Snate@binkert.org        self.py_source = PySource(package, py_file, parent=self)
2356143Snate@binkert.org
2366143Snate@binkert.orgclass UnitTest(object):
2374762Snate@binkert.org    '''Create a UnitTest'''
23812302Sgabeblack@google.com
23912302Sgabeblack@google.com    all = []
2408233Snate@binkert.org    def __init__(self, target, *sources, **kwargs):
24112302Sgabeblack@google.com        '''Specify the target name and any sources.  Sources that are
2426143Snate@binkert.org        not SourceFiles are evalued with Source().  All files are
2436143Snate@binkert.org        guarded with a guard of the same name as the UnitTest
2444762Snate@binkert.org        target.'''
2456143Snate@binkert.org
2464762Snate@binkert.org        srcs = []
2479396Sandreas.hansson@arm.com        for src in sources:
2489396Sandreas.hansson@arm.com            if not isinstance(src, SourceFile):
2499396Sandreas.hansson@arm.com                src = Source(src, skip_lib=True)
25012302Sgabeblack@google.com            src.guards[target] = True
25112302Sgabeblack@google.com            srcs.append(src)
25212302Sgabeblack@google.com
2539396Sandreas.hansson@arm.com        self.sources = srcs
2549396Sandreas.hansson@arm.com        self.target = target
2559396Sandreas.hansson@arm.com        self.main = kwargs.get('main', False)
2569396Sandreas.hansson@arm.com        UnitTest.all.append(self)
2579396Sandreas.hansson@arm.com
2589396Sandreas.hansson@arm.com# Children should have access
2599396Sandreas.hansson@arm.comExport('Source')
2609930Sandreas.hansson@arm.comExport('PySource')
2619930Sandreas.hansson@arm.comExport('SimObject')
2629396Sandreas.hansson@arm.comExport('SwigSource')
2638235Snate@binkert.orgExport('UnitTest')
2648235Snate@binkert.org
2656143Snate@binkert.org########################################################################
2668235Snate@binkert.org#
2679003SAli.Saidi@ARM.com# Debug Flags
2688235Snate@binkert.org#
2698235Snate@binkert.orgdebug_flags = {}
27012302Sgabeblack@google.comdef DebugFlag(name, desc=None):
2718235Snate@binkert.org    if name in debug_flags:
27212302Sgabeblack@google.com        raise AttributeError, "Flag %s already specified" % name
2738235Snate@binkert.org    debug_flags[name] = (name, (), desc)
2748235Snate@binkert.org
27512302Sgabeblack@google.comdef CompoundFlag(name, flags, desc=None):
2768235Snate@binkert.org    if name in debug_flags:
2778235Snate@binkert.org        raise AttributeError, "Flag %s already specified" % name
2788235Snate@binkert.org
2798235Snate@binkert.org    compound = tuple(flags)
2809003SAli.Saidi@ARM.com    debug_flags[name] = (name, compound, desc)
2818235Snate@binkert.org
2825584Snate@binkert.orgExport('DebugFlag')
2834382Sbinkertn@umich.eduExport('CompoundFlag')
2844202Sbinkertn@umich.edu
2854382Sbinkertn@umich.edu########################################################################
2864382Sbinkertn@umich.edu#
2879396Sandreas.hansson@arm.com# Set some compiler variables
2885584Snate@binkert.org#
2894382Sbinkertn@umich.edu
2904382Sbinkertn@umich.edu# Include file paths are rooted in this directory.  SCons will
2914382Sbinkertn@umich.edu# automatically expand '.' to refer to both the source directory and
2928232Snate@binkert.org# the corresponding build directory to pick up generated include
2935192Ssaidi@eecs.umich.edu# files.
2948232Snate@binkert.orgenv.Append(CPPPATH=Dir('.'))
2958232Snate@binkert.org
2968232Snate@binkert.orgfor extra_dir in extras_dir_list:
2975192Ssaidi@eecs.umich.edu    env.Append(CPPPATH=Dir(extra_dir))
2988232Snate@binkert.org
2995192Ssaidi@eecs.umich.edu# Workaround for bug in SCons version > 0.97d20071212
3005799Snate@binkert.org# Scons bug id: 2006 gem5 Bug id: 308
3018232Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True):
3025192Ssaidi@eecs.umich.edu    Dir(root[len(base_dir) + 1:])
3035192Ssaidi@eecs.umich.edu
3045192Ssaidi@eecs.umich.edu########################################################################
3058232Snate@binkert.org#
3065192Ssaidi@eecs.umich.edu# Walk the tree and execute all SConscripts in subdirectories
3078232Snate@binkert.org#
3085192Ssaidi@eecs.umich.edu
3095192Ssaidi@eecs.umich.eduhere = Dir('.').srcnode().abspath
3105192Ssaidi@eecs.umich.edufor root, dirs, files in os.walk(base_dir, topdown=True):
3115192Ssaidi@eecs.umich.edu    if root == here:
3124382Sbinkertn@umich.edu        # we don't want to recurse back into this SConscript
3134382Sbinkertn@umich.edu        continue
3144382Sbinkertn@umich.edu
3152667Sstever@eecs.umich.edu    if 'SConscript' in files:
3162667Sstever@eecs.umich.edu        build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:])
3172667Sstever@eecs.umich.edu        SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir)
3182667Sstever@eecs.umich.edu
3192667Sstever@eecs.umich.edufor extra_dir in extras_dir_list:
3202667Sstever@eecs.umich.edu    prefix_len = len(dirname(extra_dir)) + 1
3215742Snate@binkert.org    for root, dirs, files in os.walk(extra_dir, topdown=True):
3225742Snate@binkert.org        # if build lives in the extras directory, don't walk down it
3235742Snate@binkert.org        if 'build' in dirs:
3245793Snate@binkert.org            dirs.remove('build')
3258334Snate@binkert.org
3265793Snate@binkert.org        if 'SConscript' in files:
3275793Snate@binkert.org            build_dir = joinpath(env['BUILDDIR'], root[prefix_len:])
3285793Snate@binkert.org            SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir)
3294382Sbinkertn@umich.edu
3304762Snate@binkert.orgfor opt in export_vars:
3315344Sstever@gmail.com    env.ConfigFile(opt)
3324382Sbinkertn@umich.edu
3335341Sstever@gmail.comdef makeTheISA(source, target, env):
3345742Snate@binkert.org    isas = [ src.get_contents() for src in source ]
3355742Snate@binkert.org    target_isa = env['TARGET_ISA']
3365742Snate@binkert.org    def define(isa):
3375742Snate@binkert.org        return isa.upper() + '_ISA'
3385742Snate@binkert.org    
3394762Snate@binkert.org    def namespace(isa):
3405742Snate@binkert.org        return isa[0].upper() + isa[1:].lower() + 'ISA' 
3415742Snate@binkert.org
34211984Sgabeblack@google.com
3437722Sgblack@eecs.umich.edu    code = code_formatter()
3445742Snate@binkert.org    code('''\
3455742Snate@binkert.org#ifndef __CONFIG_THE_ISA_HH__
3465742Snate@binkert.org#define __CONFIG_THE_ISA_HH__
3479930Sandreas.hansson@arm.com
3489930Sandreas.hansson@arm.com''')
3499930Sandreas.hansson@arm.com
3509930Sandreas.hansson@arm.com    for i,isa in enumerate(isas):
3519930Sandreas.hansson@arm.com        code('#define $0 $1', define(isa), i + 1)
3525742Snate@binkert.org
3538242Sbradley.danofsky@amd.com    code('''
3548242Sbradley.danofsky@amd.com
3558242Sbradley.danofsky@amd.com#define THE_ISA ${{define(target_isa)}}
3568242Sbradley.danofsky@amd.com#define TheISA ${{namespace(target_isa)}}
3575341Sstever@gmail.com#define THE_ISA_STR "${{target_isa}}"
3585742Snate@binkert.org
3597722Sgblack@eecs.umich.edu#endif // __CONFIG_THE_ISA_HH__''')
3604773Snate@binkert.org
3616108Snate@binkert.org    code.write(str(target[0]))
3621858SN/A
3631085SN/Aenv.Command('config/the_isa.hh', map(Value, all_isa_list),
3646658Snate@binkert.org            MakeAction(makeTheISA, Transform("CFG ISA", 0)))
3656658Snate@binkert.org
3667673Snate@binkert.org########################################################################
3676658Snate@binkert.org#
3686658Snate@binkert.org# Prevent any SimObjects from being added after this point, they
36911308Santhony.gutierrez@amd.com# should all have been added in the SConscripts above
3706658Snate@binkert.org#
37111308Santhony.gutierrez@amd.comSimObject.fixed = True
3726658Snate@binkert.org
3736658Snate@binkert.orgclass DictImporter(object):
3747673Snate@binkert.org    '''This importer takes a dictionary of arbitrary module names that
3757673Snate@binkert.org    map to arbitrary filenames.'''
3767673Snate@binkert.org    def __init__(self, modules):
3777673Snate@binkert.org        self.modules = modules
3787673Snate@binkert.org        self.installed = set()
3797673Snate@binkert.org
3807673Snate@binkert.org    def __del__(self):
38110467Sandreas.hansson@arm.com        self.unload()
3826658Snate@binkert.org
3837673Snate@binkert.org    def unload(self):
38410467Sandreas.hansson@arm.com        import sys
38510467Sandreas.hansson@arm.com        for module in self.installed:
38610467Sandreas.hansson@arm.com            del sys.modules[module]
38710467Sandreas.hansson@arm.com        self.installed = set()
38810467Sandreas.hansson@arm.com
38910467Sandreas.hansson@arm.com    def find_module(self, fullname, path):
39010467Sandreas.hansson@arm.com        if fullname == 'm5.defines':
39110467Sandreas.hansson@arm.com            return self
39210467Sandreas.hansson@arm.com
39310467Sandreas.hansson@arm.com        if fullname == 'm5.objects':
39410467Sandreas.hansson@arm.com            return self
3957673Snate@binkert.org
3967673Snate@binkert.org        if fullname.startswith('m5.internal'):
3977673Snate@binkert.org            return None
3987673Snate@binkert.org
3997673Snate@binkert.org        source = self.modules.get(fullname, None)
4009048SAli.Saidi@ARM.com        if source is not None and fullname.startswith('m5.objects'):
4017673Snate@binkert.org            return self
4027673Snate@binkert.org
4037673Snate@binkert.org        return None
4047673Snate@binkert.org
4056658Snate@binkert.org    def load_module(self, fullname):
4067756SAli.Saidi@ARM.com        mod = imp.new_module(fullname)
4077816Ssteve.reinhardt@amd.com        sys.modules[fullname] = mod
4086658Snate@binkert.org        self.installed.add(fullname)
40911308Santhony.gutierrez@amd.com
41011308Santhony.gutierrez@amd.com        mod.__loader__ = self
41111308Santhony.gutierrez@amd.com        if fullname == 'm5.objects':
41211308Santhony.gutierrez@amd.com            mod.__path__ = fullname.split('.')
41311308Santhony.gutierrez@amd.com            return mod
41411308Santhony.gutierrez@amd.com
41511308Santhony.gutierrez@amd.com        if fullname == 'm5.defines':
41611308Santhony.gutierrez@amd.com            mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env)
41711308Santhony.gutierrez@amd.com            return mod
41811308Santhony.gutierrez@amd.com
41911308Santhony.gutierrez@amd.com        source = self.modules[fullname]
42011308Santhony.gutierrez@amd.com        if source.modname == '__init__':
42111308Santhony.gutierrez@amd.com            mod.__path__ = source.modpath
42211308Santhony.gutierrez@amd.com        mod.__file__ = source.abspath
42311308Santhony.gutierrez@amd.com
42411308Santhony.gutierrez@amd.com        exec file(source.abspath, 'r') in mod.__dict__
42511308Santhony.gutierrez@amd.com
42611308Santhony.gutierrez@amd.com        return mod
42711308Santhony.gutierrez@amd.com
42811308Santhony.gutierrez@amd.comimport m5.SimObject
42911308Santhony.gutierrez@amd.comimport m5.params
43011308Santhony.gutierrez@amd.comfrom m5.util import code_formatter
43111308Santhony.gutierrez@amd.com
43211308Santhony.gutierrez@amd.comm5.SimObject.clear()
43311308Santhony.gutierrez@amd.comm5.params.clear()
43411308Santhony.gutierrez@amd.com
43511308Santhony.gutierrez@amd.com# install the python importer so we can grab stuff from the source
43611308Santhony.gutierrez@amd.com# tree itself.  We can't have SimObjects added after this point or
43711308Santhony.gutierrez@amd.com# else we won't know about them for the rest of the stuff.
43811308Santhony.gutierrez@amd.comimporter = DictImporter(PySource.modules)
43911308Santhony.gutierrez@amd.comsys.meta_path[0:0] = [ importer ]
44011308Santhony.gutierrez@amd.com
44111308Santhony.gutierrez@amd.com# import all sim objects so we can populate the all_objects list
44211308Santhony.gutierrez@amd.com# make sure that we're working with a list, then let's sort it
44311308Santhony.gutierrez@amd.comfor modname in SimObject.modnames:
44411308Santhony.gutierrez@amd.com    exec('from m5.objects import %s' % modname)
44511308Santhony.gutierrez@amd.com
44611308Santhony.gutierrez@amd.com# we need to unload all of the currently imported modules so that they
44711308Santhony.gutierrez@amd.com# will be re-imported the next time the sconscript is run
44811308Santhony.gutierrez@amd.comimporter.unload()
44911308Santhony.gutierrez@amd.comsys.meta_path.remove(importer)
45011308Santhony.gutierrez@amd.com
45111308Santhony.gutierrez@amd.comsim_objects = m5.SimObject.allClasses
45211308Santhony.gutierrez@amd.comall_enums = m5.params.allEnums
45311308Santhony.gutierrez@amd.com
4544382Sbinkertn@umich.edu# Find param types that need to be explicitly wrapped with swig.
4554382Sbinkertn@umich.edu# These will be recognized because the ParamDesc will have a
4564762Snate@binkert.org# swig_decl() method.  Most param types are based on types that don't
4574762Snate@binkert.org# need this, either because they're based on native types (like Int)
4584762Snate@binkert.org# or because they're SimObjects (which get swigged independently).
4596654Snate@binkert.org# For now the only things handled here are VectorParam types.
4606654Snate@binkert.orgparams_to_swig = {}
4615517Snate@binkert.orgfor name,obj in sorted(sim_objects.iteritems()):
4625517Snate@binkert.org    for param in obj._params.local.values():
4635517Snate@binkert.org        # load the ptype attribute now because it depends on the
4645517Snate@binkert.org        # current version of SimObject.allClasses, but when scons
4655517Snate@binkert.org        # actually uses the value, all versions of
4665517Snate@binkert.org        # SimObject.allClasses will have been loaded
4675517Snate@binkert.org        param.ptype
4685517Snate@binkert.org
4695517Snate@binkert.org        if not hasattr(param, 'swig_decl'):
4705517Snate@binkert.org            continue
4715517Snate@binkert.org        pname = param.ptype_str
4725517Snate@binkert.org        if pname not in params_to_swig:
4735517Snate@binkert.org            params_to_swig[pname] = param
4745517Snate@binkert.org
4755517Snate@binkert.org########################################################################
4765517Snate@binkert.org#
4775517Snate@binkert.org# calculate extra dependencies
4786654Snate@binkert.org#
4795517Snate@binkert.orgmodule_depends = ["m5", "m5.SimObject", "m5.params"]
4805517Snate@binkert.orgdepends = [ PySource.modules[dep].snode for dep in module_depends ]
4815517Snate@binkert.org
4825517Snate@binkert.org########################################################################
4835517Snate@binkert.org#
48411802Sandreas.sandberg@arm.com# Commands for the basic automatically generated python files
4855517Snate@binkert.org#
4865517Snate@binkert.org
4876143Snate@binkert.org# Generate Python file containing a dict specifying the current
4886654Snate@binkert.org# buildEnv flags.
4895517Snate@binkert.orgdef makeDefinesPyFile(target, source, env):
4905517Snate@binkert.org    build_env = source[0].get_contents()
4915517Snate@binkert.org
4925517Snate@binkert.org    code = code_formatter()
4935517Snate@binkert.org    code("""
4945517Snate@binkert.orgimport m5.internal
4955517Snate@binkert.orgimport m5.util
4965517Snate@binkert.org
4975517Snate@binkert.orgbuildEnv = m5.util.SmartDict($build_env)
4985517Snate@binkert.org
4995517Snate@binkert.orgcompileDate = m5.internal.core.compileDate
5005517Snate@binkert.org_globals = globals()
5015517Snate@binkert.orgfor key,val in m5.internal.core.__dict__.iteritems():
5025517Snate@binkert.org    if key.startswith('flag_'):
5036654Snate@binkert.org        flag = key[5:]
5046654Snate@binkert.org        _globals[flag] = val
5055517Snate@binkert.orgdel _globals
5065517Snate@binkert.org""")
5076143Snate@binkert.org    code.write(target[0].abspath)
5086143Snate@binkert.org
5096143Snate@binkert.orgdefines_info = Value(build_env)
5106727Ssteve.reinhardt@amd.com# Generate a file with all of the compile options in it
5115517Snate@binkert.orgenv.Command('python/m5/defines.py', defines_info,
5126727Ssteve.reinhardt@amd.com            MakeAction(makeDefinesPyFile, Transform("DEFINES", 0)))
5135517Snate@binkert.orgPySource('m5', 'python/m5/defines.py')
5145517Snate@binkert.org
5155517Snate@binkert.org# Generate python file containing info about the M5 source code
5166654Snate@binkert.orgdef makeInfoPyFile(target, source, env):
5176654Snate@binkert.org    code = code_formatter()
5187673Snate@binkert.org    for src in source:
5196654Snate@binkert.org        data = ''.join(file(src.srcnode().abspath, 'r').xreadlines())
5206654Snate@binkert.org        code('$src = ${{repr(data)}}')
5216654Snate@binkert.org    code.write(str(target[0]))
5226654Snate@binkert.org
5235517Snate@binkert.org# Generate a file that wraps the basic top level files
5245517Snate@binkert.orgenv.Command('python/m5/info.py',
5255517Snate@binkert.org            [ '#/COPYING', '#/LICENSE', '#/README', ],
5266143Snate@binkert.org            MakeAction(makeInfoPyFile, Transform("INFO")))
5275517Snate@binkert.orgPySource('m5', 'python/m5/info.py')
5284762Snate@binkert.org
5295517Snate@binkert.org########################################################################
5305517Snate@binkert.org#
5316143Snate@binkert.org# Create all of the SimObject param headers and enum headers
5326143Snate@binkert.org#
5335517Snate@binkert.org
5345517Snate@binkert.orgdef createSimObjectParamStruct(target, source, env):
5355517Snate@binkert.org    assert len(target) == 1 and len(source) == 1
5365517Snate@binkert.org
5375517Snate@binkert.org    name = str(source[0].get_contents())
5385517Snate@binkert.org    obj = sim_objects[name]
5395517Snate@binkert.org
5405517Snate@binkert.org    code = code_formatter()
5415517Snate@binkert.org    obj.cxx_param_decl(code)
5426143Snate@binkert.org    code.write(target[0].abspath)
5435517Snate@binkert.org
5446654Snate@binkert.orgdef createParamSwigWrapper(target, source, env):
5456654Snate@binkert.org    assert len(target) == 1 and len(source) == 1
5466654Snate@binkert.org
5476654Snate@binkert.org    name = str(source[0].get_contents())
5486654Snate@binkert.org    param = params_to_swig[name]
5496654Snate@binkert.org
5504762Snate@binkert.org    code = code_formatter()
5514762Snate@binkert.org    param.swig_decl(code)
5524762Snate@binkert.org    code.write(target[0].abspath)
5534762Snate@binkert.org
5544762Snate@binkert.orgdef createEnumStrings(target, source, env):
5557675Snate@binkert.org    assert len(target) == 1 and len(source) == 1
55610584Sandreas.hansson@arm.com
5574762Snate@binkert.org    name = str(source[0].get_contents())
5584762Snate@binkert.org    obj = all_enums[name]
5594762Snate@binkert.org
5604762Snate@binkert.org    code = code_formatter()
5614382Sbinkertn@umich.edu    obj.cxx_def(code)
5624382Sbinkertn@umich.edu    code.write(target[0].abspath)
5635517Snate@binkert.org
5646654Snate@binkert.orgdef createEnumDecls(target, source, env):
5655517Snate@binkert.org    assert len(target) == 1 and len(source) == 1
5668126Sgblack@eecs.umich.edu
5676654Snate@binkert.org    name = str(source[0].get_contents())
5687673Snate@binkert.org    obj = all_enums[name]
5696654Snate@binkert.org
57011802Sandreas.sandberg@arm.com    code = code_formatter()
5716654Snate@binkert.org    obj.cxx_decl(code)
5726654Snate@binkert.org    code.write(target[0].abspath)
5736654Snate@binkert.org
5746654Snate@binkert.orgdef createEnumSwigWrapper(target, source, env):
57511802Sandreas.sandberg@arm.com    assert len(target) == 1 and len(source) == 1
5766669Snate@binkert.org
57711802Sandreas.sandberg@arm.com    name = str(source[0].get_contents())
5786669Snate@binkert.org    obj = all_enums[name]
5796669Snate@binkert.org
5806669Snate@binkert.org    code = code_formatter()
5816669Snate@binkert.org    obj.swig_decl(code)
5826654Snate@binkert.org    code.write(target[0].abspath)
5837673Snate@binkert.org
5845517Snate@binkert.orgdef createSimObjectSwigWrapper(target, source, env):
5858126Sgblack@eecs.umich.edu    name = source[0].get_contents()
5865798Snate@binkert.org    obj = sim_objects[name]
5877756SAli.Saidi@ARM.com
5887816Ssteve.reinhardt@amd.com    code = code_formatter()
5895798Snate@binkert.org    obj.swig_decl(code)
5905798Snate@binkert.org    code.write(target[0].abspath)
5915517Snate@binkert.org
5925517Snate@binkert.org# Generate all of the SimObject param C++ struct header files
5937673Snate@binkert.orgparams_hh_files = []
5945517Snate@binkert.orgfor name,simobj in sorted(sim_objects.iteritems()):
5955517Snate@binkert.org    py_source = PySource.modules[simobj.__module__]
5967673Snate@binkert.org    extra_deps = [ py_source.tnode ]
5977673Snate@binkert.org
5985517Snate@binkert.org    hh_file = File('params/%s.hh' % name)
5995798Snate@binkert.org    params_hh_files.append(hh_file)
6005798Snate@binkert.org    env.Command(hh_file, Value(name),
6018333Snate@binkert.org                MakeAction(createSimObjectParamStruct, Transform("SO PARAM")))
6027816Ssteve.reinhardt@amd.com    env.Depends(hh_file, depends + extra_deps)
6035798Snate@binkert.org
6045798Snate@binkert.org# Generate any needed param SWIG wrapper files
6054762Snate@binkert.orgparams_i_files = []
6064762Snate@binkert.orgfor name,param in params_to_swig.iteritems():
6074762Snate@binkert.org    i_file = File('python/m5/internal/%s.i' % (param.swig_module_name()))
6084762Snate@binkert.org    params_i_files.append(i_file)
6094762Snate@binkert.org    env.Command(i_file, Value(name),
6108596Ssteve.reinhardt@amd.com                MakeAction(createParamSwigWrapper, Transform("SW PARAM")))
6115517Snate@binkert.org    env.Depends(i_file, depends)
6125517Snate@binkert.org    SwigSource('m5.internal', i_file)
61311997Sgabeblack@google.com
6145517Snate@binkert.org# Generate all enum header files
6155517Snate@binkert.orgfor name,enum in sorted(all_enums.iteritems()):
6167673Snate@binkert.org    py_source = PySource.modules[enum.__module__]
6178596Ssteve.reinhardt@amd.com    extra_deps = [ py_source.tnode ]
6187673Snate@binkert.org
6195517Snate@binkert.org    cc_file = File('enums/%s.cc' % name)
62010458Sandreas.hansson@arm.com    env.Command(cc_file, Value(name),
62110458Sandreas.hansson@arm.com                MakeAction(createEnumStrings, Transform("ENUM STR")))
62210458Sandreas.hansson@arm.com    env.Depends(cc_file, depends + extra_deps)
62310458Sandreas.hansson@arm.com    Source(cc_file)
62410458Sandreas.hansson@arm.com
62510458Sandreas.hansson@arm.com    hh_file = File('enums/%s.hh' % name)
62610458Sandreas.hansson@arm.com    env.Command(hh_file, Value(name),
62710458Sandreas.hansson@arm.com                MakeAction(createEnumDecls, Transform("ENUMDECL")))
62810458Sandreas.hansson@arm.com    env.Depends(hh_file, depends + extra_deps)
62910458Sandreas.hansson@arm.com
63010458Sandreas.hansson@arm.com    i_file = File('python/m5/internal/enum_%s.i' % name)
63110458Sandreas.hansson@arm.com    env.Command(i_file, Value(name),
6325517Snate@binkert.org                MakeAction(createEnumSwigWrapper, Transform("ENUMSWIG")))
63311996Sgabeblack@google.com    env.Depends(i_file, depends + extra_deps)
6345517Snate@binkert.org    SwigSource('m5.internal', i_file)
63511997Sgabeblack@google.com
63611996Sgabeblack@google.com# Generate SimObject SWIG wrapper files
6375517Snate@binkert.orgfor name in sim_objects.iterkeys():
6385517Snate@binkert.org    i_file = File('python/m5/internal/param_%s.i' % name)
6397673Snate@binkert.org    env.Command(i_file, Value(name),
6407673Snate@binkert.org                MakeAction(createSimObjectSwigWrapper, Transform("SO SWIG")))
64111996Sgabeblack@google.com    env.Depends(i_file, depends)
64211988Sandreas.sandberg@arm.com    SwigSource('m5.internal', i_file)
6437673Snate@binkert.org
6445517Snate@binkert.org# Generate the main swig init file
6458596Ssteve.reinhardt@amd.comdef makeEmbeddedSwigInit(target, source, env):
6465517Snate@binkert.org    code = code_formatter()
6475517Snate@binkert.org    module = source[0].get_contents()
64811997Sgabeblack@google.com    code('''\
6495517Snate@binkert.org#include "sim/init.hh"
6505517Snate@binkert.org
6517673Snate@binkert.orgextern "C" {
6527673Snate@binkert.org    void init_${module}();
6537673Snate@binkert.org}
6545517Snate@binkert.org
65511988Sandreas.sandberg@arm.comEmbeddedSwig embed_swig_${module}(init_${module});
65611997Sgabeblack@google.com''')
6578596Ssteve.reinhardt@amd.com    code.write(str(target[0]))
6588596Ssteve.reinhardt@amd.com    
6598596Ssteve.reinhardt@amd.com# Build all swig modules
66011988Sandreas.sandberg@arm.comfor swig in SwigSource.all:
6618596Ssteve.reinhardt@amd.com    env.Command([swig.cc_source.tnode, swig.py_source.tnode], swig.tnode,
6628596Ssteve.reinhardt@amd.com                MakeAction('$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} '
6638596Ssteve.reinhardt@amd.com                '-o ${TARGETS[0]} $SOURCES', Transform("SWIG")))
6644762Snate@binkert.org    cc_file = str(swig.tnode)
6656143Snate@binkert.org    init_file = '%s/%s_init.cc' % (dirname(cc_file), basename(cc_file))
6666143Snate@binkert.org    env.Command(init_file, Value(swig.module),
6676143Snate@binkert.org                MakeAction(makeEmbeddedSwigInit, Transform("EMBED SW")))
6684762Snate@binkert.org    Source(init_file, **swig.guards)
6694762Snate@binkert.org
6704762Snate@binkert.org#
6717756SAli.Saidi@ARM.com# Handle debug flags
6728596Ssteve.reinhardt@amd.com#
6734762Snate@binkert.orgdef makeDebugFlagCC(target, source, env):
6744762Snate@binkert.org    assert(len(target) == 1 and len(source) == 1)
67510458Sandreas.hansson@arm.com
67610458Sandreas.hansson@arm.com    val = eval(source[0].get_contents())
67710458Sandreas.hansson@arm.com    name, compound, desc = val
67810458Sandreas.hansson@arm.com    compound = list(sorted(compound))
67910458Sandreas.hansson@arm.com
68010458Sandreas.hansson@arm.com    code = code_formatter()
68110458Sandreas.hansson@arm.com
68210458Sandreas.hansson@arm.com    # file header
68310458Sandreas.hansson@arm.com    code('''
68410458Sandreas.hansson@arm.com/*
68510458Sandreas.hansson@arm.com * DO NOT EDIT THIS FILE! Automatically generated
68610458Sandreas.hansson@arm.com */
68710458Sandreas.hansson@arm.com
68810458Sandreas.hansson@arm.com#include "base/debug.hh"
68910458Sandreas.hansson@arm.com''')
69010458Sandreas.hansson@arm.com
69110458Sandreas.hansson@arm.com    for flag in compound:
69210458Sandreas.hansson@arm.com        code('#include "debug/$flag.hh"')
69310458Sandreas.hansson@arm.com    code()
69410458Sandreas.hansson@arm.com    code('namespace Debug {')
69510458Sandreas.hansson@arm.com    code()
69610458Sandreas.hansson@arm.com
69710458Sandreas.hansson@arm.com    if not compound:
69810458Sandreas.hansson@arm.com        code('SimpleFlag $name("$name", "$desc");')
69910458Sandreas.hansson@arm.com    else:
70010458Sandreas.hansson@arm.com        code('CompoundFlag $name("$name", "$desc",')
70110458Sandreas.hansson@arm.com        code.indent()
70210458Sandreas.hansson@arm.com        last = len(compound) - 1
70310458Sandreas.hansson@arm.com        for i,flag in enumerate(compound):
70410458Sandreas.hansson@arm.com            if i != last:
70510458Sandreas.hansson@arm.com                code('$flag,')
70610458Sandreas.hansson@arm.com            else:
70710458Sandreas.hansson@arm.com                code('$flag);')
70810458Sandreas.hansson@arm.com        code.dedent()
70910458Sandreas.hansson@arm.com
71010458Sandreas.hansson@arm.com    code()
71110458Sandreas.hansson@arm.com    code('} // namespace Debug')
71210458Sandreas.hansson@arm.com
71310458Sandreas.hansson@arm.com    code.write(str(target[0]))
71410458Sandreas.hansson@arm.com
71510458Sandreas.hansson@arm.comdef makeDebugFlagHH(target, source, env):
71610458Sandreas.hansson@arm.com    assert(len(target) == 1 and len(source) == 1)
71710458Sandreas.hansson@arm.com
71810458Sandreas.hansson@arm.com    val = eval(source[0].get_contents())
71910458Sandreas.hansson@arm.com    name, compound, desc = val
72010458Sandreas.hansson@arm.com
72110458Sandreas.hansson@arm.com    code = code_formatter()
72210458Sandreas.hansson@arm.com
72310458Sandreas.hansson@arm.com    # file header boilerplate
72410584Sandreas.hansson@arm.com    code('''\
72510458Sandreas.hansson@arm.com/*
72610458Sandreas.hansson@arm.com * DO NOT EDIT THIS FILE!
72710458Sandreas.hansson@arm.com *
72810458Sandreas.hansson@arm.com * Automatically generated by SCons
72910458Sandreas.hansson@arm.com */
7304762Snate@binkert.org
7316143Snate@binkert.org#ifndef __DEBUG_${name}_HH__
7326143Snate@binkert.org#define __DEBUG_${name}_HH__
7336143Snate@binkert.org
7344762Snate@binkert.orgnamespace Debug {
7354762Snate@binkert.org''')
73611996Sgabeblack@google.com
7377816Ssteve.reinhardt@amd.com    if compound:
7384762Snate@binkert.org        code('class CompoundFlag;')
7394762Snate@binkert.org    code('class SimpleFlag;')
7404762Snate@binkert.org
7414762Snate@binkert.org    if compound:
7427756SAli.Saidi@ARM.com        code('extern CompoundFlag $name;')
7438596Ssteve.reinhardt@amd.com        for flag in compound:
7444762Snate@binkert.org            code('extern SimpleFlag $flag;')
7454762Snate@binkert.org    else:
74611988Sandreas.sandberg@arm.com        code('extern SimpleFlag $name;')
74711988Sandreas.sandberg@arm.com
74811988Sandreas.sandberg@arm.com    code('''
74911988Sandreas.sandberg@arm.com}
75011988Sandreas.sandberg@arm.com
75111988Sandreas.sandberg@arm.com#endif // __DEBUG_${name}_HH__
75211988Sandreas.sandberg@arm.com''')
75311988Sandreas.sandberg@arm.com
75411988Sandreas.sandberg@arm.com    code.write(str(target[0]))
75511988Sandreas.sandberg@arm.com
75611988Sandreas.sandberg@arm.comfor name,flag in sorted(debug_flags.iteritems()):
7574382Sbinkertn@umich.edu    n, compound, desc = flag
7589396Sandreas.hansson@arm.com    assert n == name
7599396Sandreas.hansson@arm.com
7609396Sandreas.hansson@arm.com    env.Command('debug/%s.hh' % name, Value(flag),
7619396Sandreas.hansson@arm.com                MakeAction(makeDebugFlagHH, Transform("TRACING", 0)))
7629396Sandreas.hansson@arm.com    env.Command('debug/%s.cc' % name, Value(flag),
7639396Sandreas.hansson@arm.com                MakeAction(makeDebugFlagCC, Transform("TRACING", 0)))
7649396Sandreas.hansson@arm.com    Source('debug/%s.cc' % name)
7659396Sandreas.hansson@arm.com
7669396Sandreas.hansson@arm.com# Embed python files.  All .py files that have been indicated by a
7679396Sandreas.hansson@arm.com# PySource() call in a SConscript need to be embedded into the M5
7689396Sandreas.hansson@arm.com# library.  To do that, we compile the file to byte code, marshal the
7699396Sandreas.hansson@arm.com# byte code, compress it, and then generate a c++ file that
7709396Sandreas.hansson@arm.com# inserts the result into an array.
77112302Sgabeblack@google.comdef embedPyFile(target, source, env):
7729396Sandreas.hansson@arm.com    def c_str(string):
7739396Sandreas.hansson@arm.com        if string is None:
7749396Sandreas.hansson@arm.com            return "0"
7759396Sandreas.hansson@arm.com        return '"%s"' % string
7768232Snate@binkert.org
7778232Snate@binkert.org    '''Action function to compile a .py into a code object, marshal
7788232Snate@binkert.org    it, compress it, and stick it into an asm file so the code appears
7798232Snate@binkert.org    as just bytes with a label in the data section'''
7808232Snate@binkert.org
7816229Snate@binkert.org    src = file(str(source[0]), 'r').read()
78210455SCurtis.Dunham@arm.com
7836229Snate@binkert.org    pysource = PySource.tnodes[source[0]]
78410455SCurtis.Dunham@arm.com    compiled = compile(src, pysource.abspath, 'exec')
78510455SCurtis.Dunham@arm.com    marshalled = marshal.dumps(compiled)
78610455SCurtis.Dunham@arm.com    compressed = zlib.compress(marshalled)
7875517Snate@binkert.org    data = compressed
7885517Snate@binkert.org    sym = pysource.symname
7897673Snate@binkert.org
7905517Snate@binkert.org    code = code_formatter()
79110455SCurtis.Dunham@arm.com    code('''\
7925517Snate@binkert.org#include "sim/init.hh"
7935517Snate@binkert.org
7948232Snate@binkert.orgnamespace {
79510455SCurtis.Dunham@arm.com
79610455SCurtis.Dunham@arm.comconst uint8_t data_${sym}[] = {
79710455SCurtis.Dunham@arm.com''')
7987673Snate@binkert.org    code.indent()
7997673Snate@binkert.org    step = 16
80010455SCurtis.Dunham@arm.com    for i in xrange(0, len(data), step):
80110455SCurtis.Dunham@arm.com        x = array.array('B', data[i:i+step])
80210455SCurtis.Dunham@arm.com        code(''.join('%d,' % d for d in x))
8035517Snate@binkert.org    code.dedent()
80410455SCurtis.Dunham@arm.com    
80510455SCurtis.Dunham@arm.com    code('''};
80610455SCurtis.Dunham@arm.com
80710455SCurtis.Dunham@arm.comEmbeddedPython embedded_${sym}(
80810455SCurtis.Dunham@arm.com    ${{c_str(pysource.arcname)}},
80910455SCurtis.Dunham@arm.com    ${{c_str(pysource.abspath)}},
81010455SCurtis.Dunham@arm.com    ${{c_str(pysource.modpath)}},
81110455SCurtis.Dunham@arm.com    data_${sym},
81210685Sandreas.hansson@arm.com    ${{len(data)}},
81310455SCurtis.Dunham@arm.com    ${{len(marshalled)}});
81410685Sandreas.hansson@arm.com
81510455SCurtis.Dunham@arm.com} // anonymous namespace
8165517Snate@binkert.org''')
81710455SCurtis.Dunham@arm.com    code.write(str(target[0]))
8188232Snate@binkert.org
8198232Snate@binkert.orgfor source in PySource.all:
8205517Snate@binkert.org    env.Command(source.cpp, source.tnode, 
8217673Snate@binkert.org                MakeAction(embedPyFile, Transform("EMBED PY")))
8225517Snate@binkert.org    Source(source.cpp)
8238232Snate@binkert.org
8248232Snate@binkert.org########################################################################
8255517Snate@binkert.org#
8268232Snate@binkert.org# Define binaries.  Each different build type (debug, opt, etc.) gets
8278232Snate@binkert.org# a slightly different build environment.
8288232Snate@binkert.org#
8297673Snate@binkert.org
8305517Snate@binkert.org# List of constructed environments to pass back to SConstruct
8315517Snate@binkert.orgenvList = []
8327673Snate@binkert.org
8335517Snate@binkert.orgdate_source = Source('base/date.cc', skip_lib=True)
83410455SCurtis.Dunham@arm.com
8355517Snate@binkert.org# Function to create a new build environment as clone of current
8365517Snate@binkert.org# environment 'env' with modified object suffix and optional stripped
8378232Snate@binkert.org# binary.  Additional keyword arguments are appended to corresponding
8388232Snate@binkert.org# build environment vars.
8395517Snate@binkert.orgdef makeEnv(label, objsfx, strip = False, **kwargs):
8408232Snate@binkert.org    # SCons doesn't know to append a library suffix when there is a '.' in the
8418232Snate@binkert.org    # name.  Use '_' instead.
8425517Snate@binkert.org    libname = 'gem5_' + label
8438232Snate@binkert.org    exename = 'gem5.' + label
8448232Snate@binkert.org    secondary_exename = 'm5.' + label
8458232Snate@binkert.org
8465517Snate@binkert.org    new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's')
8478232Snate@binkert.org    new_env.Label = label
8488232Snate@binkert.org    new_env.Append(**kwargs)
8498232Snate@binkert.org
8508232Snate@binkert.org    swig_env = new_env.Clone()
8518232Snate@binkert.org    swig_env.Append(CCFLAGS='-Werror')
8528232Snate@binkert.org    if env['GCC']:
8535517Snate@binkert.org        swig_env.Append(CCFLAGS=['-Wno-uninitialized', '-Wno-sign-compare',
8548232Snate@binkert.org                                 '-Wno-parentheses', '-Wno-unused-label',
8558232Snate@binkert.org                                 '-Wno-unused-value'])
8565517Snate@binkert.org        if compareVersions(env['GCC_VERSION'], '4.6') >= 0:
8578232Snate@binkert.org            swig_env.Append(CCFLAGS='-Wno-unused-but-set-variable')
8587673Snate@binkert.org    if env['CLANG']:
8595517Snate@binkert.org        swig_env.Append(CCFLAGS=['-Wno-unused-label', '-Wno-unused-value'])
8607673Snate@binkert.org
8615517Snate@binkert.org    werror_env = new_env.Clone()
8628232Snate@binkert.org    werror_env.Append(CCFLAGS='-Werror')
8638232Snate@binkert.org
8648232Snate@binkert.org    def make_obj(source, static, extra_deps = None):
8655192Ssaidi@eecs.umich.edu        '''This function adds the specified source to the correct
86610454SCurtis.Dunham@arm.com        build environment, and returns the corresponding SCons Object
86710454SCurtis.Dunham@arm.com        nodes'''
8688232Snate@binkert.org
86910455SCurtis.Dunham@arm.com        if source.swig:
87010455SCurtis.Dunham@arm.com            env = swig_env
87110455SCurtis.Dunham@arm.com        elif source.Werror:
87210455SCurtis.Dunham@arm.com            env = werror_env
8735192Ssaidi@eecs.umich.edu        else:
87411077SCurtis.Dunham@arm.com            env = new_env
87511330SCurtis.Dunham@arm.com
87611077SCurtis.Dunham@arm.com        if static:
87711077SCurtis.Dunham@arm.com            obj = env.StaticObject(source.tnode)
87811077SCurtis.Dunham@arm.com        else:
87911330SCurtis.Dunham@arm.com            obj = env.SharedObject(source.tnode)
88011077SCurtis.Dunham@arm.com
8817674Snate@binkert.org        if extra_deps:
8825522Snate@binkert.org            env.Depends(obj, extra_deps)
8835522Snate@binkert.org
8847674Snate@binkert.org        return obj
8857674Snate@binkert.org
8867674Snate@binkert.org    static_objs = \
8877674Snate@binkert.org        [ make_obj(s, True) for s in Source.get(main=False, skip_lib=False) ]
8887674Snate@binkert.org    shared_objs = \
8897674Snate@binkert.org        [ make_obj(s, False) for s in Source.get(main=False, skip_lib=False) ]
8907674Snate@binkert.org
8917674Snate@binkert.org    static_date = make_obj(date_source, static=True, extra_deps=static_objs)
8925522Snate@binkert.org    static_objs.append(static_date)
8935522Snate@binkert.org    
8945522Snate@binkert.org    shared_date = make_obj(date_source, static=False, extra_deps=shared_objs)
8955517Snate@binkert.org    shared_objs.append(shared_date)
8965522Snate@binkert.org
8975517Snate@binkert.org    # First make a library of everything but main() so other programs can
8986143Snate@binkert.org    # link against m5.
8996727Ssteve.reinhardt@amd.com    static_lib = new_env.StaticLibrary(libname, static_objs)
9005522Snate@binkert.org    shared_lib = new_env.SharedLibrary(libname, shared_objs)
9015522Snate@binkert.org
9025522Snate@binkert.org    # Now link a stub with main() and the static library.
9037674Snate@binkert.org    main_objs = [ make_obj(s, True) for s in Source.get(main=True) ]
9045517Snate@binkert.org
9057673Snate@binkert.org    for test in UnitTest.all:
9067673Snate@binkert.org        flags = { test.target : True }
9077674Snate@binkert.org        test_sources = Source.get(**flags)
9087673Snate@binkert.org        test_objs = [ make_obj(s, static=True) for s in test_sources ]
9097674Snate@binkert.org        if test.main:
9107674Snate@binkert.org            test_objs += main_objs
9118946Sandreas.hansson@arm.com        testname = "unittest/%s.%s" % (test.target, label)
9127674Snate@binkert.org        new_env.Program(testname, test_objs + static_objs)
9137674Snate@binkert.org
9147674Snate@binkert.org    progname = exename
9155522Snate@binkert.org    if strip:
9165522Snate@binkert.org        progname += '.unstripped'
9177674Snate@binkert.org
9187674Snate@binkert.org    targets = new_env.Program(progname, main_objs + static_objs)
91911308Santhony.gutierrez@amd.com
9207674Snate@binkert.org    if strip:
9217673Snate@binkert.org        if sys.platform == 'sunos5':
9227674Snate@binkert.org            cmd = 'cp $SOURCE $TARGET; strip $TARGET'
9237674Snate@binkert.org        else:
9247674Snate@binkert.org            cmd = 'strip $SOURCE -o $TARGET'
9257674Snate@binkert.org        targets = new_env.Command(exename, progname,
9267674Snate@binkert.org                    MakeAction(cmd, Transform("STRIP")))
9277674Snate@binkert.org
9287674Snate@binkert.org    new_env.Command(secondary_exename, exename,
9297674Snate@binkert.org            MakeAction('ln $SOURCE $TARGET', Transform("HARDLINK")))
9307811Ssteve.reinhardt@amd.com
9317674Snate@binkert.org    new_env.M5Binary = targets[0]
9327673Snate@binkert.org    envList.append(new_env)
9335522Snate@binkert.org
9346143Snate@binkert.org# Start out with the compiler flags common to all compilers,
93510453SAndrew.Bardsley@arm.com# i.e. they all use -g for opt and -g -pg for prof
9367816Ssteve.reinhardt@amd.comccflags = {'debug' : [], 'opt' : ['-g'], 'fast' : [], 'prof' : ['-g', '-pg'],
93712302Sgabeblack@google.com           'perf' : ['-g']}
9384382Sbinkertn@umich.edu
9394382Sbinkertn@umich.edu# Start out with the linker flags common to all linkers, i.e. -pg for
9404382Sbinkertn@umich.edu# prof, and -lprofiler for perf. The -lprofile flag is surrounded by
9414382Sbinkertn@umich.edu# no-as-needed and as-needed as the binutils linker is too clever and
9424382Sbinkertn@umich.edu# simply doesn't link to the library otherwise.
9434382Sbinkertn@umich.eduldflags = {'debug' : [], 'opt' : [], 'fast' : [], 'prof' : ['-pg'],
9444382Sbinkertn@umich.edu           'perf' : ['-Wl,--no-as-needed', '-lprofiler', '-Wl,--as-needed']}
9454382Sbinkertn@umich.edu
94612302Sgabeblack@google.com# For Link Time Optimization, the optimisation flags used to compile
9474382Sbinkertn@umich.edu# individual files are decoupled from those used at link time
9482655Sstever@eecs.umich.edu# (i.e. you can compile with -O3 and perform LTO with -O0), so we need
9492655Sstever@eecs.umich.edu# to also update the linker flags based on the target.
9502655Sstever@eecs.umich.eduif env['GCC']:
9512655Sstever@eecs.umich.edu    if sys.platform == 'sunos5':
95212063Sgabeblack@google.com        ccflags['debug'] += ['-gstabs+']
9535601Snate@binkert.org    else:
9545601Snate@binkert.org        ccflags['debug'] += ['-ggdb3']
95512222Sgabeblack@google.com    ldflags['debug'] += ['-O0']
95612222Sgabeblack@google.com    # opt, fast, prof and perf all share the same cc flags, also add
95712222Sgabeblack@google.com    # the optimization to the ldflags as LTO defers the optimization
9585522Snate@binkert.org    # to link time
9595863Snate@binkert.org    for target in ['opt', 'fast', 'prof', 'perf']:
9605601Snate@binkert.org        ccflags[target] += ['-O3']
9615601Snate@binkert.org        ldflags[target] += ['-O3']
9625601Snate@binkert.org
9635559Snate@binkert.org    ccflags['fast'] += env['LTO_CCFLAGS']
96411718Sjoseph.gross@amd.com    ldflags['fast'] += env['LTO_LDFLAGS']
96511718Sjoseph.gross@amd.com
96611718Sjoseph.gross@amd.comelif env['SUNCC']:
96711718Sjoseph.gross@amd.com    ccflags['debug'] += ['-g0']
96811718Sjoseph.gross@amd.com    ccflags['opt'] += ['-O']
96911718Sjoseph.gross@amd.com    for target in ['fast', 'prof', 'perf']:
97011718Sjoseph.gross@amd.com        ccflags[target] += ['-fast']
97111718Sjoseph.gross@amd.comelif env['ICC']:
97211718Sjoseph.gross@amd.com    ccflags['debug'] += ['-g', '-O0']
97311718Sjoseph.gross@amd.com    ccflags['opt'] += ['-O']
97411718Sjoseph.gross@amd.com    for target in ['fast', 'prof', 'perf']:
97510457Sandreas.hansson@arm.com        ccflags[target] += ['-fast']
97610457Sandreas.hansson@arm.comelif env['CLANG']:
97710457Sandreas.hansson@arm.com    ccflags['debug'] += ['-g', '-O0']
97811718Sjoseph.gross@amd.com    # opt, fast, prof and perf all share the same cc flags
97910457Sandreas.hansson@arm.com    for target in ['opt', 'fast', 'prof', 'perf']:
98010457Sandreas.hansson@arm.com        ccflags[target] += ['-O3']
98110457Sandreas.hansson@arm.comelse:
98210457Sandreas.hansson@arm.com    print 'Unknown compiler, please fix compiler options'
98311342Sandreas.hansson@arm.com    Exit(1)
9848737Skoansin.tan@gmail.com
98511342Sandreas.hansson@arm.com
98611342Sandreas.hansson@arm.com# To speed things up, we only instantiate the build environments we
98710457Sandreas.hansson@arm.com# need.  We try to identify the needed environment for each target; if
98811718Sjoseph.gross@amd.com# we can't, we fall back on instantiating all the environments just to
98911718Sjoseph.gross@amd.com# be safe.
99011718Sjoseph.gross@amd.comtarget_types = ['debug', 'opt', 'fast', 'prof', 'perf']
99111718Sjoseph.gross@amd.comobj2target = {'do': 'debug', 'o': 'opt', 'fo': 'fast', 'po': 'prof',
99211718Sjoseph.gross@amd.com              'gpo' : 'perf'}
99311718Sjoseph.gross@amd.com
99411718Sjoseph.gross@amd.comdef identifyTarget(t):
99510457Sandreas.hansson@arm.com    ext = t.split('.')[-1]
99611718Sjoseph.gross@amd.com    if ext in target_types:
99711500Sandreas.hansson@arm.com        return ext
99811500Sandreas.hansson@arm.com    if obj2target.has_key(ext):
99911342Sandreas.hansson@arm.com        return obj2target[ext]
100011342Sandreas.hansson@arm.com    match = re.search(r'/tests/([^/]+)/', t)
10018945Ssteve.reinhardt@amd.com    if match and match.group(1) in target_types:
100210686SAndreas.Sandberg@ARM.com        return match.group(1)
100310686SAndreas.Sandberg@ARM.com    return 'all'
100410686SAndreas.Sandberg@ARM.com
100510686SAndreas.Sandberg@ARM.comneeded_envs = [identifyTarget(target) for target in BUILD_TARGETS]
100610686SAndreas.Sandberg@ARM.comif 'all' in needed_envs:
100710686SAndreas.Sandberg@ARM.com    needed_envs += target_types
10088945Ssteve.reinhardt@amd.com
10096143Snate@binkert.org# Debug binary
10106143Snate@binkert.orgif 'debug' in needed_envs:
10116143Snate@binkert.org    makeEnv('debug', '.do',
10126143Snate@binkert.org            CCFLAGS = Split(ccflags['debug']),
10136143Snate@binkert.org            CPPDEFINES = ['DEBUG', 'TRACING_ON=1'],
101411988Sandreas.sandberg@arm.com            LINKFLAGS = Split(ldflags['debug']))
10158945Ssteve.reinhardt@amd.com
10166143Snate@binkert.org# Optimized binary
10176143Snate@binkert.orgif 'opt' in needed_envs:
10186143Snate@binkert.org    makeEnv('opt', '.o',
10196143Snate@binkert.org            CCFLAGS = Split(ccflags['opt']),
10206143Snate@binkert.org            CPPDEFINES = ['TRACING_ON=1'],
10216143Snate@binkert.org            LINKFLAGS = Split(ldflags['opt']))
10226143Snate@binkert.org
10236143Snate@binkert.org# "Fast" binary
10246143Snate@binkert.orgif 'fast' in needed_envs:
10256143Snate@binkert.org    makeEnv('fast', '.fo', strip = True,
10266143Snate@binkert.org            CCFLAGS = Split(ccflags['fast']),
10276143Snate@binkert.org            CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
10286143Snate@binkert.org            LINKFLAGS = Split(ldflags['fast']))
102912302Sgabeblack@google.com
103010453SAndrew.Bardsley@arm.com# Profiled binary using gprof
103111988Sandreas.sandberg@arm.comif 'prof' in needed_envs:
103211988Sandreas.sandberg@arm.com    makeEnv('prof', '.po',
103310453SAndrew.Bardsley@arm.com            CCFLAGS = Split(ccflags['prof']),
103412302Sgabeblack@google.com            CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
103510453SAndrew.Bardsley@arm.com            LINKFLAGS = Split(ldflags['prof']))
103611983Sgabeblack@google.com
103711983Sgabeblack@google.com# Profiled binary using google-pprof
103812302Sgabeblack@google.comif 'perf' in needed_envs:
103912302Sgabeblack@google.com    makeEnv('perf', '.gpo',
104011983Sgabeblack@google.com            CCFLAGS = Split(ccflags['perf']),
104111983Sgabeblack@google.com            CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
104211983Sgabeblack@google.com            LINKFLAGS = Split(ldflags['perf']))
104311983Sgabeblack@google.com
104411983Sgabeblack@google.comReturn('envList')
104512302Sgabeblack@google.com