SConscript revision 8881
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
314762Snate@binkert.orgimport array
32955SN/Aimport bisect
33955SN/Aimport imp
344202Sbinkertn@umich.eduimport marshal
355342Sstever@gmail.comimport os
36955SN/Aimport re
374381Sbinkertn@umich.eduimport sys
384381Sbinkertn@umich.eduimport zlib
39955SN/A
40955SN/Afrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath
41955SN/A
424202Sbinkertn@umich.eduimport SCons
43955SN/A
444382Sbinkertn@umich.edu# This file defines how to build a particular configuration of gem5
454382Sbinkertn@umich.edu# based on variable settings in the 'env' build environment.
464382Sbinkertn@umich.edu
474762Snate@binkert.orgImport('*')
484762Snate@binkert.org
494762Snate@binkert.org# Children need to see the environment
504762Snate@binkert.orgExport('env')
514762Snate@binkert.org
524762Snate@binkert.orgbuild_env = [(opt, env[opt]) for opt in export_vars]
534762Snate@binkert.org
544762Snate@binkert.orgfrom m5.util import code_formatter, compareVersions
554762Snate@binkert.org
564762Snate@binkert.org########################################################################
574762Snate@binkert.org# Code for adding source files of various types
584762Snate@binkert.org#
594762Snate@binkert.org# When specifying a source file of some type, a set of guards can be
604762Snate@binkert.org# specified for that file.  When get() is used to find the files, if
614762Snate@binkert.org# get specifies a set of filters, only files that match those filters
624762Snate@binkert.org# will be accepted (unspecified filters on files are assumed to be
634762Snate@binkert.org# false).  Current filters are:
644762Snate@binkert.org#     main -- specifies the gem5 main() function
654762Snate@binkert.org#     skip_lib -- do not put this file into the gem5 library
664762Snate@binkert.org#     <unittest> -- unit tests use filters based on the unit test name
674762Snate@binkert.org#
684762Snate@binkert.org# A parent can now be specified for a source file and default filter
694762Snate@binkert.org# values will be retrieved recursively from parents (children override
704762Snate@binkert.org# parents).
714762Snate@binkert.org#
724762Snate@binkert.orgclass SourceMeta(type):
734762Snate@binkert.org    '''Meta class for source files that keeps track of all files of a
744762Snate@binkert.org    particular type and has a get function for finding all functions
754762Snate@binkert.org    of a certain type that match a set of guards'''
764762Snate@binkert.org    def __init__(cls, name, bases, dict):
774762Snate@binkert.org        super(SourceMeta, cls).__init__(name, bases, dict)
784762Snate@binkert.org        cls.all = []
794762Snate@binkert.org        
804382Sbinkertn@umich.edu    def get(cls, **guards):
814762Snate@binkert.org        '''Find all files that match the specified guards.  If a source
824382Sbinkertn@umich.edu        file does not specify a flag, the default is False'''
834762Snate@binkert.org        for src in cls.all:
844381Sbinkertn@umich.edu            for flag,value in guards.iteritems():
854762Snate@binkert.org                # if the flag is found and has a different value, skip
864762Snate@binkert.org                # this file
874762Snate@binkert.org                if src.all_guards.get(flag, False) != value:
884762Snate@binkert.org                    break
894762Snate@binkert.org            else:
904762Snate@binkert.org                yield src
914762Snate@binkert.org
924762Snate@binkert.orgclass SourceFile(object):
934762Snate@binkert.org    '''Base object that encapsulates the notion of a source file.
944762Snate@binkert.org    This includes, the source node, target node, various manipulations
954762Snate@binkert.org    of those.  A source file also specifies a set of guards which
964762Snate@binkert.org    describing which builds the source file applies to.  A parent can
974762Snate@binkert.org    also be specified to get default guards from'''
984762Snate@binkert.org    __metaclass__ = SourceMeta
994762Snate@binkert.org    def __init__(self, source, parent=None, **guards):
1004762Snate@binkert.org        self.guards = guards
1014762Snate@binkert.org        self.parent = parent
1024762Snate@binkert.org
1034762Snate@binkert.org        tnode = source
1044762Snate@binkert.org        if not isinstance(source, SCons.Node.FS.File):
1054762Snate@binkert.org            tnode = File(source)
1064762Snate@binkert.org
1074762Snate@binkert.org        self.tnode = tnode
1084762Snate@binkert.org        self.snode = tnode.srcnode()
1094762Snate@binkert.org
1104762Snate@binkert.org        for base in type(self).__mro__:
1114762Snate@binkert.org            if issubclass(base, SourceFile):
1124762Snate@binkert.org                base.all.append(self)
1134762Snate@binkert.org
1144762Snate@binkert.org    @property
1154762Snate@binkert.org    def filename(self):
1164762Snate@binkert.org        return str(self.tnode)
1174762Snate@binkert.org
1184762Snate@binkert.org    @property
1194762Snate@binkert.org    def dirname(self):
1204762Snate@binkert.org        return dirname(self.filename)
1214762Snate@binkert.org
1224762Snate@binkert.org    @property
1234762Snate@binkert.org    def basename(self):
1244762Snate@binkert.org        return basename(self.filename)
125955SN/A
1264382Sbinkertn@umich.edu    @property
1274202Sbinkertn@umich.edu    def extname(self):
1284382Sbinkertn@umich.edu        index = self.basename.rfind('.')
1294382Sbinkertn@umich.edu        if index <= 0:
1304382Sbinkertn@umich.edu            # dot files aren't extensions
1314382Sbinkertn@umich.edu            return self.basename, None
1324382Sbinkertn@umich.edu
1334382Sbinkertn@umich.edu        return self.basename[:index], self.basename[index+1:]
1345192Ssaidi@eecs.umich.edu
1355192Ssaidi@eecs.umich.edu    @property
1365192Ssaidi@eecs.umich.edu    def all_guards(self):
1375192Ssaidi@eecs.umich.edu        '''find all guards for this object getting default values
1385192Ssaidi@eecs.umich.edu        recursively from its parents'''
1395192Ssaidi@eecs.umich.edu        guards = {}
1405192Ssaidi@eecs.umich.edu        if self.parent:
1415192Ssaidi@eecs.umich.edu            guards.update(self.parent.guards)
1425192Ssaidi@eecs.umich.edu        guards.update(self.guards)
1435192Ssaidi@eecs.umich.edu        return guards
1445192Ssaidi@eecs.umich.edu
1455192Ssaidi@eecs.umich.edu    def __lt__(self, other): return self.filename < other.filename
1465192Ssaidi@eecs.umich.edu    def __le__(self, other): return self.filename <= other.filename
1475192Ssaidi@eecs.umich.edu    def __gt__(self, other): return self.filename > other.filename
1485192Ssaidi@eecs.umich.edu    def __ge__(self, other): return self.filename >= other.filename
1495192Ssaidi@eecs.umich.edu    def __eq__(self, other): return self.filename == other.filename
1505192Ssaidi@eecs.umich.edu    def __ne__(self, other): return self.filename != other.filename
1515192Ssaidi@eecs.umich.edu        
1525192Ssaidi@eecs.umich.educlass Source(SourceFile):
1535192Ssaidi@eecs.umich.edu    '''Add a c/c++ source file to the build'''
1545192Ssaidi@eecs.umich.edu    def __init__(self, source, Werror=True, swig=False, **guards):
1555192Ssaidi@eecs.umich.edu        '''specify the source file, and any guards'''
1565192Ssaidi@eecs.umich.edu        super(Source, self).__init__(source, **guards)
1575192Ssaidi@eecs.umich.edu
1585192Ssaidi@eecs.umich.edu        self.Werror = Werror
1595192Ssaidi@eecs.umich.edu        self.swig = swig
1605192Ssaidi@eecs.umich.edu
1615192Ssaidi@eecs.umich.educlass PySource(SourceFile):
1625192Ssaidi@eecs.umich.edu    '''Add a python source file to the named package'''
1635192Ssaidi@eecs.umich.edu    invalid_sym_char = re.compile('[^A-z0-9_]')
1645192Ssaidi@eecs.umich.edu    modules = {}
1655192Ssaidi@eecs.umich.edu    tnodes = {}
1664382Sbinkertn@umich.edu    symnames = {}
1674382Sbinkertn@umich.edu    
1684382Sbinkertn@umich.edu    def __init__(self, package, source, **guards):
1692667Sstever@eecs.umich.edu        '''specify the python package, the source file, and any guards'''
1702667Sstever@eecs.umich.edu        super(PySource, self).__init__(source, **guards)
1712667Sstever@eecs.umich.edu
1722667Sstever@eecs.umich.edu        modname,ext = self.extname
1732667Sstever@eecs.umich.edu        assert ext == 'py'
1742667Sstever@eecs.umich.edu
1752037SN/A        if package:
1762037SN/A            path = package.split('.')
1772037SN/A        else:
1784382Sbinkertn@umich.edu            path = []
1794762Snate@binkert.org
1805344Sstever@gmail.com        modpath = path[:]
1814382Sbinkertn@umich.edu        if modname != '__init__':
1825341Sstever@gmail.com            modpath += [ modname ]
1835341Sstever@gmail.com        modpath = '.'.join(modpath)
1845341Sstever@gmail.com
1855344Sstever@gmail.com        arcpath = path + [ self.basename ]
1865341Sstever@gmail.com        abspath = self.snode.abspath
1875341Sstever@gmail.com        if not exists(abspath):
1885341Sstever@gmail.com            abspath = self.tnode.abspath
1894762Snate@binkert.org
1905341Sstever@gmail.com        self.package = package
1915344Sstever@gmail.com        self.modname = modname
1925341Sstever@gmail.com        self.modpath = modpath
1934773Snate@binkert.org        self.arcname = joinpath(*arcpath)
1941858SN/A        self.abspath = abspath
1951858SN/A        self.compiled = File(self.filename + 'c')
1961085SN/A        self.cpp = File(self.filename + '.cc')
1974382Sbinkertn@umich.edu        self.symname = PySource.invalid_sym_char.sub('_', modpath)
1984382Sbinkertn@umich.edu
1994762Snate@binkert.org        PySource.modules[modpath] = self
2004762Snate@binkert.org        PySource.tnodes[self.tnode] = self
2014762Snate@binkert.org        PySource.symnames[self.symname] = self
2024762Snate@binkert.org
2034762Snate@binkert.orgclass SimObject(PySource):
2044762Snate@binkert.org    '''Add a SimObject python file as a python source object and add
2054762Snate@binkert.org    it to a list of sim object modules'''
2064762Snate@binkert.org
2074762Snate@binkert.org    fixed = False
2084762Snate@binkert.org    modnames = []
2094762Snate@binkert.org
2104762Snate@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)'''
2134762Snate@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
2174762Snate@binkert.org        bisect.insort_right(SimObject.modnames, self.modname)
2184762Snate@binkert.org
2194762Snate@binkert.orgclass SwigSource(SourceFile):
2204762Snate@binkert.org    '''Add a swig file to build'''
2214762Snate@binkert.org
2224762Snate@binkert.org    def __init__(self, package, source, **guards):
2234762Snate@binkert.org        '''Specify the python package, the source file, and any guards'''
2244762Snate@binkert.org        super(SwigSource, self).__init__(source, **guards)
2254762Snate@binkert.org
2264762Snate@binkert.org        modname,ext = self.extname
2274762Snate@binkert.org        assert ext == 'i'
2284762Snate@binkert.org
2294762Snate@binkert.org        self.module = modname
2304762Snate@binkert.org        cc_file = joinpath(self.dirname, modname + '_wrap.cc')
2314762Snate@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)
2344382Sbinkertn@umich.edu        self.py_source = PySource(package, py_file, parent=self)
2354382Sbinkertn@umich.edu
2364762Snate@binkert.orgclass UnitTest(object):
2374762Snate@binkert.org    '''Create a UnitTest'''
2384762Snate@binkert.org
2394382Sbinkertn@umich.edu    all = []
2404382Sbinkertn@umich.edu    def __init__(self, target, *sources):
2414762Snate@binkert.org        '''Specify the target name and any sources.  Sources that are
2424382Sbinkertn@umich.edu        not SourceFiles are evalued with Source().  All files are
2434382Sbinkertn@umich.edu        guarded with a guard of the same name as the UnitTest
2444762Snate@binkert.org        target.'''
2454382Sbinkertn@umich.edu
2464382Sbinkertn@umich.edu        srcs = []
2474762Snate@binkert.org        for src in sources:
2484382Sbinkertn@umich.edu            if not isinstance(src, SourceFile):
2494762Snate@binkert.org                src = Source(src, skip_lib=True)
2504762Snate@binkert.org            src.guards[target] = True
2514382Sbinkertn@umich.edu            srcs.append(src)
2524382Sbinkertn@umich.edu
2534762Snate@binkert.org        self.sources = srcs
2544762Snate@binkert.org        self.target = target
2554762Snate@binkert.org        UnitTest.all.append(self)
2564762Snate@binkert.org
2574762Snate@binkert.org# Children should have access
2584762Snate@binkert.orgExport('Source')
2594762Snate@binkert.orgExport('PySource')
2604762Snate@binkert.orgExport('SimObject')
2614762Snate@binkert.orgExport('SwigSource')
2624762Snate@binkert.orgExport('UnitTest')
2634762Snate@binkert.org
2644762Snate@binkert.org########################################################################
2654762Snate@binkert.org#
2664762Snate@binkert.org# Debug Flags
2674762Snate@binkert.org#
2684762Snate@binkert.orgdebug_flags = {}
2694762Snate@binkert.orgdef DebugFlag(name, desc=None):
2704762Snate@binkert.org    if name in debug_flags:
2714762Snate@binkert.org        raise AttributeError, "Flag %s already specified" % name
2724762Snate@binkert.org    debug_flags[name] = (name, (), desc)
2734762Snate@binkert.org
2744762Snate@binkert.orgdef CompoundFlag(name, flags, desc=None):
2754762Snate@binkert.org    if name in debug_flags:
2764762Snate@binkert.org        raise AttributeError, "Flag %s already specified" % name
2774762Snate@binkert.org
2784762Snate@binkert.org    compound = tuple(flags)
2794762Snate@binkert.org    debug_flags[name] = (name, compound, desc)
2804762Snate@binkert.org
2814762Snate@binkert.orgExport('DebugFlag')
2824762Snate@binkert.orgExport('CompoundFlag')
2834762Snate@binkert.org
2844762Snate@binkert.org########################################################################
2854762Snate@binkert.org#
2864762Snate@binkert.org# Set some compiler variables
2874762Snate@binkert.org#
2884762Snate@binkert.org
2894762Snate@binkert.org# Include file paths are rooted in this directory.  SCons will
2904762Snate@binkert.org# automatically expand '.' to refer to both the source directory and
2914762Snate@binkert.org# the corresponding build directory to pick up generated include
2924762Snate@binkert.org# files.
2934762Snate@binkert.orgenv.Append(CPPPATH=Dir('.'))
2944762Snate@binkert.org
2954762Snate@binkert.orgfor extra_dir in extras_dir_list:
2964762Snate@binkert.org    env.Append(CPPPATH=Dir(extra_dir))
2974762Snate@binkert.org
2984762Snate@binkert.org# Workaround for bug in SCons version > 0.97d20071212
2994762Snate@binkert.org# Scons bug id: 2006 gem5 Bug id: 308
3004762Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True):
3014762Snate@binkert.org    Dir(root[len(base_dir) + 1:])
3024382Sbinkertn@umich.edu
3034762Snate@binkert.org########################################################################
3044382Sbinkertn@umich.edu#
3054762Snate@binkert.org# Walk the tree and execute all SConscripts in subdirectories
3064382Sbinkertn@umich.edu#
3074762Snate@binkert.org
3084762Snate@binkert.orghere = Dir('.').srcnode().abspath
3094762Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True):
3104762Snate@binkert.org    if root == here:
3114382Sbinkertn@umich.edu        # we don't want to recurse back into this SConscript
3124382Sbinkertn@umich.edu        continue
3134382Sbinkertn@umich.edu
3144382Sbinkertn@umich.edu    if 'SConscript' in files:
3154382Sbinkertn@umich.edu        build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:])
3164382Sbinkertn@umich.edu        SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir)
3174762Snate@binkert.org
3184382Sbinkertn@umich.edufor extra_dir in extras_dir_list:
3194382Sbinkertn@umich.edu    prefix_len = len(dirname(extra_dir)) + 1
3204382Sbinkertn@umich.edu    for root, dirs, files in os.walk(extra_dir, topdown=True):
3214382Sbinkertn@umich.edu        # if build lives in the extras directory, don't walk down it
3224762Snate@binkert.org        if 'build' in dirs:
3234762Snate@binkert.org            dirs.remove('build')
3244762Snate@binkert.org
3254382Sbinkertn@umich.edu        if 'SConscript' in files:
3265192Ssaidi@eecs.umich.edu            build_dir = joinpath(env['BUILDDIR'], root[prefix_len:])
3275192Ssaidi@eecs.umich.edu            SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir)
3285192Ssaidi@eecs.umich.edu
3295192Ssaidi@eecs.umich.edufor opt in export_vars:
3305192Ssaidi@eecs.umich.edu    env.ConfigFile(opt)
3315192Ssaidi@eecs.umich.edu
3325192Ssaidi@eecs.umich.edudef makeTheISA(source, target, env):
3335192Ssaidi@eecs.umich.edu    isas = [ src.get_contents() for src in source ]
3345192Ssaidi@eecs.umich.edu    target_isa = env['TARGET_ISA']
3354762Snate@binkert.org    def define(isa):
3364382Sbinkertn@umich.edu        return isa.upper() + '_ISA'
3374382Sbinkertn@umich.edu    
3384382Sbinkertn@umich.edu    def namespace(isa):
3394762Snate@binkert.org        return isa[0].upper() + isa[1:].lower() + 'ISA' 
3404762Snate@binkert.org
3414382Sbinkertn@umich.edu
3424382Sbinkertn@umich.edu    code = code_formatter()
3434382Sbinkertn@umich.edu    code('''\
3444762Snate@binkert.org#ifndef __CONFIG_THE_ISA_HH__
3454382Sbinkertn@umich.edu#define __CONFIG_THE_ISA_HH__
3464382Sbinkertn@umich.edu
3474762Snate@binkert.org''')
3484762Snate@binkert.org
3494762Snate@binkert.org    for i,isa in enumerate(isas):
3504382Sbinkertn@umich.edu        code('#define $0 $1', define(isa), i + 1)
3514382Sbinkertn@umich.edu
3524382Sbinkertn@umich.edu    code('''
3534382Sbinkertn@umich.edu
3544382Sbinkertn@umich.edu#define THE_ISA ${{define(target_isa)}}
3554382Sbinkertn@umich.edu#define TheISA ${{namespace(target_isa)}}
3564382Sbinkertn@umich.edu
3574382Sbinkertn@umich.edu#endif // __CONFIG_THE_ISA_HH__''')
3584382Sbinkertn@umich.edu
3594382Sbinkertn@umich.edu    code.write(str(target[0]))
360955SN/A
361955SN/Aenv.Command('config/the_isa.hh', map(Value, all_isa_list),
362955SN/A            MakeAction(makeTheISA, Transform("CFG ISA", 0)))
363955SN/A
3641108SN/A########################################################################
365955SN/A#
366955SN/A# Prevent any SimObjects from being added after this point, they
367955SN/A# should all have been added in the SConscripts above
368955SN/A#
369955SN/ASimObject.fixed = True
370955SN/A
371955SN/Aclass DictImporter(object):
372955SN/A    '''This importer takes a dictionary of arbitrary module names that
373955SN/A    map to arbitrary filenames.'''
3742655Sstever@eecs.umich.edu    def __init__(self, modules):
3752655Sstever@eecs.umich.edu        self.modules = modules
3762655Sstever@eecs.umich.edu        self.installed = set()
3772655Sstever@eecs.umich.edu
3782655Sstever@eecs.umich.edu    def __del__(self):
3792655Sstever@eecs.umich.edu        self.unload()
3802655Sstever@eecs.umich.edu
3812655Sstever@eecs.umich.edu    def unload(self):
3822655Sstever@eecs.umich.edu        import sys
3832655Sstever@eecs.umich.edu        for module in self.installed:
3844762Snate@binkert.org            del sys.modules[module]
3852655Sstever@eecs.umich.edu        self.installed = set()
3862655Sstever@eecs.umich.edu
3874007Ssaidi@eecs.umich.edu    def find_module(self, fullname, path):
3884596Sbinkertn@umich.edu        if fullname == 'm5.defines':
3894007Ssaidi@eecs.umich.edu            return self
3904596Sbinkertn@umich.edu
3914596Sbinkertn@umich.edu        if fullname == 'm5.objects':
3922655Sstever@eecs.umich.edu            return self
3934382Sbinkertn@umich.edu
3942655Sstever@eecs.umich.edu        if fullname.startswith('m5.internal'):
3952655Sstever@eecs.umich.edu            return None
3962655Sstever@eecs.umich.edu
397955SN/A        source = self.modules.get(fullname, None)
3983918Ssaidi@eecs.umich.edu        if source is not None and fullname.startswith('m5.objects'):
3993918Ssaidi@eecs.umich.edu            return self
4003918Ssaidi@eecs.umich.edu
4013918Ssaidi@eecs.umich.edu        return None
4023918Ssaidi@eecs.umich.edu
4033918Ssaidi@eecs.umich.edu    def load_module(self, fullname):
4043918Ssaidi@eecs.umich.edu        mod = imp.new_module(fullname)
4053918Ssaidi@eecs.umich.edu        sys.modules[fullname] = mod
4063918Ssaidi@eecs.umich.edu        self.installed.add(fullname)
4073918Ssaidi@eecs.umich.edu
4083918Ssaidi@eecs.umich.edu        mod.__loader__ = self
4093918Ssaidi@eecs.umich.edu        if fullname == 'm5.objects':
4103918Ssaidi@eecs.umich.edu            mod.__path__ = fullname.split('.')
4113918Ssaidi@eecs.umich.edu            return mod
4123940Ssaidi@eecs.umich.edu
4133940Ssaidi@eecs.umich.edu        if fullname == 'm5.defines':
4143940Ssaidi@eecs.umich.edu            mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env)
4153942Ssaidi@eecs.umich.edu            return mod
4163940Ssaidi@eecs.umich.edu
4173515Ssaidi@eecs.umich.edu        source = self.modules[fullname]
4183918Ssaidi@eecs.umich.edu        if source.modname == '__init__':
4194762Snate@binkert.org            mod.__path__ = source.modpath
4203515Ssaidi@eecs.umich.edu        mod.__file__ = source.abspath
4212655Sstever@eecs.umich.edu
4223918Ssaidi@eecs.umich.edu        exec file(source.abspath, 'r') in mod.__dict__
4233619Sbinkertn@umich.edu
424955SN/A        return mod
425955SN/A
4262655Sstever@eecs.umich.eduimport m5.SimObject
4273918Ssaidi@eecs.umich.eduimport m5.params
4283619Sbinkertn@umich.edufrom m5.util import code_formatter
429955SN/A
430955SN/Am5.SimObject.clear()
4312655Sstever@eecs.umich.edum5.params.clear()
4323918Ssaidi@eecs.umich.edu
4333619Sbinkertn@umich.edu# install the python importer so we can grab stuff from the source
434955SN/A# tree itself.  We can't have SimObjects added after this point or
435955SN/A# else we won't know about them for the rest of the stuff.
4362655Sstever@eecs.umich.eduimporter = DictImporter(PySource.modules)
4373918Ssaidi@eecs.umich.edusys.meta_path[0:0] = [ importer ]
4383683Sstever@eecs.umich.edu
4392655Sstever@eecs.umich.edu# import all sim objects so we can populate the all_objects list
4401869SN/A# make sure that we're working with a list, then let's sort it
4411869SN/Afor modname in SimObject.modnames:
442    exec('from m5.objects import %s' % modname)
443
444# we need to unload all of the currently imported modules so that they
445# will be re-imported the next time the sconscript is run
446importer.unload()
447sys.meta_path.remove(importer)
448
449sim_objects = m5.SimObject.allClasses
450all_enums = m5.params.allEnums
451
452# Find param types that need to be explicitly wrapped with swig.
453# These will be recognized because the ParamDesc will have a
454# swig_decl() method.  Most param types are based on types that don't
455# need this, either because they're based on native types (like Int)
456# or because they're SimObjects (which get swigged independently).
457# For now the only things handled here are VectorParam types.
458params_to_swig = {}
459for name,obj in sorted(sim_objects.iteritems()):
460    for param in obj._params.local.values():
461        # load the ptype attribute now because it depends on the
462        # current version of SimObject.allClasses, but when scons
463        # actually uses the value, all versions of
464        # SimObject.allClasses will have been loaded
465        param.ptype
466
467        if not hasattr(param, 'swig_decl'):
468            continue
469        pname = param.ptype_str
470        if pname not in params_to_swig:
471            params_to_swig[pname] = param
472
473########################################################################
474#
475# calculate extra dependencies
476#
477module_depends = ["m5", "m5.SimObject", "m5.params"]
478depends = [ PySource.modules[dep].snode for dep in module_depends ]
479
480########################################################################
481#
482# Commands for the basic automatically generated python files
483#
484
485# Generate Python file containing a dict specifying the current
486# buildEnv flags.
487def makeDefinesPyFile(target, source, env):
488    build_env = source[0].get_contents()
489
490    code = code_formatter()
491    code("""
492import m5.internal
493import m5.util
494
495buildEnv = m5.util.SmartDict($build_env)
496
497compileDate = m5.internal.core.compileDate
498_globals = globals()
499for key,val in m5.internal.core.__dict__.iteritems():
500    if key.startswith('flag_'):
501        flag = key[5:]
502        _globals[flag] = val
503del _globals
504""")
505    code.write(target[0].abspath)
506
507defines_info = Value(build_env)
508# Generate a file with all of the compile options in it
509env.Command('python/m5/defines.py', defines_info,
510            MakeAction(makeDefinesPyFile, Transform("DEFINES", 0)))
511PySource('m5', 'python/m5/defines.py')
512
513# Generate python file containing info about the M5 source code
514def makeInfoPyFile(target, source, env):
515    code = code_formatter()
516    for src in source:
517        data = ''.join(file(src.srcnode().abspath, 'r').xreadlines())
518        code('$src = ${{repr(data)}}')
519    code.write(str(target[0]))
520
521# Generate a file that wraps the basic top level files
522env.Command('python/m5/info.py',
523            [ '#/COPYING', '#/LICENSE', '#/README', ],
524            MakeAction(makeInfoPyFile, Transform("INFO")))
525PySource('m5', 'python/m5/info.py')
526
527########################################################################
528#
529# Create all of the SimObject param headers and enum headers
530#
531
532def createSimObjectParamStruct(target, source, env):
533    assert len(target) == 1 and len(source) == 1
534
535    name = str(source[0].get_contents())
536    obj = sim_objects[name]
537
538    code = code_formatter()
539    obj.cxx_param_decl(code)
540    code.write(target[0].abspath)
541
542def createParamSwigWrapper(target, source, env):
543    assert len(target) == 1 and len(source) == 1
544
545    name = str(source[0].get_contents())
546    param = params_to_swig[name]
547
548    code = code_formatter()
549    param.swig_decl(code)
550    code.write(target[0].abspath)
551
552def createEnumStrings(target, source, env):
553    assert len(target) == 1 and len(source) == 1
554
555    name = str(source[0].get_contents())
556    obj = all_enums[name]
557
558    code = code_formatter()
559    obj.cxx_def(code)
560    code.write(target[0].abspath)
561
562def createEnumDecls(target, source, env):
563    assert len(target) == 1 and len(source) == 1
564
565    name = str(source[0].get_contents())
566    obj = all_enums[name]
567
568    code = code_formatter()
569    obj.cxx_decl(code)
570    code.write(target[0].abspath)
571
572def createEnumSwigWrapper(target, source, env):
573    assert len(target) == 1 and len(source) == 1
574
575    name = str(source[0].get_contents())
576    obj = all_enums[name]
577
578    code = code_formatter()
579    obj.swig_decl(code)
580    code.write(target[0].abspath)
581
582def createSimObjectSwigWrapper(target, source, env):
583    name = source[0].get_contents()
584    obj = sim_objects[name]
585
586    code = code_formatter()
587    obj.swig_decl(code)
588    code.write(target[0].abspath)
589
590# Generate all of the SimObject param C++ struct header files
591params_hh_files = []
592for name,simobj in sorted(sim_objects.iteritems()):
593    py_source = PySource.modules[simobj.__module__]
594    extra_deps = [ py_source.tnode ]
595
596    hh_file = File('params/%s.hh' % name)
597    params_hh_files.append(hh_file)
598    env.Command(hh_file, Value(name),
599                MakeAction(createSimObjectParamStruct, Transform("SO PARAM")))
600    env.Depends(hh_file, depends + extra_deps)
601
602# Generate any needed param SWIG wrapper files
603params_i_files = []
604for name,param in params_to_swig.iteritems():
605    i_file = File('python/m5/internal/%s.i' % (param.swig_module_name()))
606    params_i_files.append(i_file)
607    env.Command(i_file, Value(name),
608                MakeAction(createParamSwigWrapper, Transform("SW PARAM")))
609    env.Depends(i_file, depends)
610    SwigSource('m5.internal', i_file)
611
612# Generate all enum header files
613for name,enum in sorted(all_enums.iteritems()):
614    py_source = PySource.modules[enum.__module__]
615    extra_deps = [ py_source.tnode ]
616
617    cc_file = File('enums/%s.cc' % name)
618    env.Command(cc_file, Value(name),
619                MakeAction(createEnumStrings, Transform("ENUM STR")))
620    env.Depends(cc_file, depends + extra_deps)
621    Source(cc_file)
622
623    hh_file = File('enums/%s.hh' % name)
624    env.Command(hh_file, Value(name),
625                MakeAction(createEnumDecls, Transform("ENUMDECL")))
626    env.Depends(hh_file, depends + extra_deps)
627
628    i_file = File('python/m5/internal/enum_%s.i' % name)
629    env.Command(i_file, Value(name),
630                MakeAction(createEnumSwigWrapper, Transform("ENUMSWIG")))
631    env.Depends(i_file, depends + extra_deps)
632    SwigSource('m5.internal', i_file)
633
634# Generate SimObject SWIG wrapper files
635for name in sim_objects.iterkeys():
636    i_file = File('python/m5/internal/param_%s.i' % name)
637    env.Command(i_file, Value(name),
638                MakeAction(createSimObjectSwigWrapper, Transform("SO SWIG")))
639    env.Depends(i_file, depends)
640    SwigSource('m5.internal', i_file)
641
642# Generate the main swig init file
643def makeEmbeddedSwigInit(target, source, env):
644    code = code_formatter()
645    module = source[0].get_contents()
646    code('''\
647#include "sim/init.hh"
648
649extern "C" {
650    void init_${module}();
651}
652
653EmbeddedSwig embed_swig_${module}(init_${module});
654''')
655    code.write(str(target[0]))
656    
657# Build all swig modules
658for swig in SwigSource.all:
659    env.Command([swig.cc_source.tnode, swig.py_source.tnode], swig.tnode,
660                MakeAction('$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} '
661                '-o ${TARGETS[0]} $SOURCES', Transform("SWIG")))
662    cc_file = str(swig.tnode)
663    init_file = '%s/%s_init.cc' % (dirname(cc_file), basename(cc_file))
664    env.Command(init_file, Value(swig.module),
665                MakeAction(makeEmbeddedSwigInit, Transform("EMBED SW")))
666    Source(init_file, **swig.guards)
667
668#
669# Handle debug flags
670#
671def makeDebugFlagCC(target, source, env):
672    assert(len(target) == 1 and len(source) == 1)
673
674    val = eval(source[0].get_contents())
675    name, compound, desc = val
676    compound = list(sorted(compound))
677
678    code = code_formatter()
679
680    # file header
681    code('''
682/*
683 * DO NOT EDIT THIS FILE! Automatically generated
684 */
685
686#include "base/debug.hh"
687''')
688
689    for flag in compound:
690        code('#include "debug/$flag.hh"')
691    code()
692    code('namespace Debug {')
693    code()
694
695    if not compound:
696        code('SimpleFlag $name("$name", "$desc");')
697    else:
698        code('CompoundFlag $name("$name", "$desc",')
699        code.indent()
700        last = len(compound) - 1
701        for i,flag in enumerate(compound):
702            if i != last:
703                code('$flag,')
704            else:
705                code('$flag);')
706        code.dedent()
707
708    code()
709    code('} // namespace Debug')
710
711    code.write(str(target[0]))
712
713def makeDebugFlagHH(target, source, env):
714    assert(len(target) == 1 and len(source) == 1)
715
716    val = eval(source[0].get_contents())
717    name, compound, desc = val
718
719    code = code_formatter()
720
721    # file header boilerplate
722    code('''\
723/*
724 * DO NOT EDIT THIS FILE!
725 *
726 * Automatically generated by SCons
727 */
728
729#ifndef __DEBUG_${name}_HH__
730#define __DEBUG_${name}_HH__
731
732namespace Debug {
733''')
734
735    if compound:
736        code('class CompoundFlag;')
737    code('class SimpleFlag;')
738
739    if compound:
740        code('extern CompoundFlag $name;')
741        for flag in compound:
742            code('extern SimpleFlag $flag;')
743    else:
744        code('extern SimpleFlag $name;')
745
746    code('''
747}
748
749#endif // __DEBUG_${name}_HH__
750''')
751
752    code.write(str(target[0]))
753
754for name,flag in sorted(debug_flags.iteritems()):
755    n, compound, desc = flag
756    assert n == name
757
758    env.Command('debug/%s.hh' % name, Value(flag),
759                MakeAction(makeDebugFlagHH, Transform("TRACING", 0)))
760    env.Command('debug/%s.cc' % name, Value(flag),
761                MakeAction(makeDebugFlagCC, Transform("TRACING", 0)))
762    Source('debug/%s.cc' % name)
763
764# Embed python files.  All .py files that have been indicated by a
765# PySource() call in a SConscript need to be embedded into the M5
766# library.  To do that, we compile the file to byte code, marshal the
767# byte code, compress it, and then generate a c++ file that
768# inserts the result into an array.
769def embedPyFile(target, source, env):
770    def c_str(string):
771        if string is None:
772            return "0"
773        return '"%s"' % string
774
775    '''Action function to compile a .py into a code object, marshal
776    it, compress it, and stick it into an asm file so the code appears
777    as just bytes with a label in the data section'''
778
779    src = file(str(source[0]), 'r').read()
780
781    pysource = PySource.tnodes[source[0]]
782    compiled = compile(src, pysource.abspath, 'exec')
783    marshalled = marshal.dumps(compiled)
784    compressed = zlib.compress(marshalled)
785    data = compressed
786    sym = pysource.symname
787
788    code = code_formatter()
789    code('''\
790#include "sim/init.hh"
791
792namespace {
793
794const char data_${sym}[] = {
795''')
796    code.indent()
797    step = 16
798    for i in xrange(0, len(data), step):
799        x = array.array('B', data[i:i+step])
800        code(''.join('%d,' % d for d in x))
801    code.dedent()
802    
803    code('''};
804
805EmbeddedPython embedded_${sym}(
806    ${{c_str(pysource.arcname)}},
807    ${{c_str(pysource.abspath)}},
808    ${{c_str(pysource.modpath)}},
809    data_${sym},
810    ${{len(data)}},
811    ${{len(marshalled)}});
812
813} // anonymous namespace
814''')
815    code.write(str(target[0]))
816
817for source in PySource.all:
818    env.Command(source.cpp, source.tnode, 
819                MakeAction(embedPyFile, Transform("EMBED PY")))
820    Source(source.cpp)
821
822########################################################################
823#
824# Define binaries.  Each different build type (debug, opt, etc.) gets
825# a slightly different build environment.
826#
827
828# List of constructed environments to pass back to SConstruct
829envList = []
830
831date_source = Source('base/date.cc', skip_lib=True)
832
833# Function to create a new build environment as clone of current
834# environment 'env' with modified object suffix and optional stripped
835# binary.  Additional keyword arguments are appended to corresponding
836# build environment vars.
837def makeEnv(label, objsfx, strip = False, **kwargs):
838    # SCons doesn't know to append a library suffix when there is a '.' in the
839    # name.  Use '_' instead.
840    libname = 'gem5_' + label
841    exename = 'gem5.' + label
842    secondary_exename = 'm5.' + label
843
844    new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's')
845    new_env.Label = label
846    new_env.Append(**kwargs)
847
848    swig_env = new_env.Clone()
849    swig_env.Append(CCFLAGS='-Werror')
850    if env['GCC']:
851        swig_env.Append(CCFLAGS='-Wno-uninitialized')
852        swig_env.Append(CCFLAGS='-Wno-sign-compare')
853        swig_env.Append(CCFLAGS='-Wno-parentheses')
854        swig_env.Append(CCFLAGS='-Wno-unused-label')
855        if compareVersions(env['GCC_VERSION'], '4.6.0') != -1:
856            swig_env.Append(CCFLAGS='-Wno-unused-but-set-variable')
857    if env['CLANG']:
858        swig_env.Append(CCFLAGS=['-Wno-unused-label'])
859
860
861    werror_env = new_env.Clone()
862    werror_env.Append(CCFLAGS='-Werror')
863
864    def make_obj(source, static, extra_deps = None):
865        '''This function adds the specified source to the correct
866        build environment, and returns the corresponding SCons Object
867        nodes'''
868
869        if source.swig:
870            env = swig_env
871        elif source.Werror:
872            env = werror_env
873        else:
874            env = new_env
875
876        if static:
877            obj = env.StaticObject(source.tnode)
878        else:
879            obj = env.SharedObject(source.tnode)
880
881        if extra_deps:
882            env.Depends(obj, extra_deps)
883
884        return obj
885
886    static_objs = \
887        [ make_obj(s, True) for s in Source.get(main=False, skip_lib=False) ]
888    shared_objs = \
889        [ make_obj(s, False) for s in Source.get(main=False, skip_lib=False) ]
890
891    static_date = make_obj(date_source, static=True, extra_deps=static_objs)
892    static_objs.append(static_date)
893    
894    shared_date = make_obj(date_source, static=False, extra_deps=shared_objs)
895    shared_objs.append(shared_date)
896
897    # First make a library of everything but main() so other programs can
898    # link against m5.
899    static_lib = new_env.StaticLibrary(libname, static_objs)
900    shared_lib = new_env.SharedLibrary(libname, shared_objs)
901
902    # Now link a stub with main() and the static library.
903    main_objs = [ make_obj(s, True) for s in Source.get(main=True) ]
904
905    for test in UnitTest.all:
906        flags = { test.target : True }
907        test_sources = Source.get(**flags)
908        test_objs = [ make_obj(s, static=True) for s in test_sources ]
909        testname = "unittest/%s.%s" % (test.target, label)
910        new_env.Program(testname, main_objs + test_objs + static_objs)
911
912    progname = exename
913    if strip:
914        progname += '.unstripped'
915
916    targets = new_env.Program(progname, main_objs + static_objs)
917
918    if strip:
919        if sys.platform == 'sunos5':
920            cmd = 'cp $SOURCE $TARGET; strip $TARGET'
921        else:
922            cmd = 'strip $SOURCE -o $TARGET'
923        targets = new_env.Command(exename, progname,
924                    MakeAction(cmd, Transform("STRIP")))
925
926    new_env.Command(secondary_exename, exename,
927            MakeAction('ln $SOURCE $TARGET', Transform("HARDLINK")))
928
929    new_env.M5Binary = targets[0]
930    envList.append(new_env)
931
932# Debug binary
933ccflags = {}
934if env['GCC'] or env['CLANG']:
935    if sys.platform == 'sunos5':
936        ccflags['debug'] = '-gstabs+'
937    else:
938        ccflags['debug'] = '-ggdb3'
939    ccflags['opt'] = '-g -O3'
940    ccflags['fast'] = '-O3'
941    ccflags['prof'] = '-O3 -g -pg'
942elif env['SUNCC']:
943    ccflags['debug'] = '-g0'
944    ccflags['opt'] = '-g -O'
945    ccflags['fast'] = '-fast'
946    ccflags['prof'] = '-fast -g -pg'
947elif env['ICC']:
948    ccflags['debug'] = '-g -O0'
949    ccflags['opt'] = '-g -O'
950    ccflags['fast'] = '-fast'
951    ccflags['prof'] = '-fast -g -pg'
952else:
953    print 'Unknown compiler, please fix compiler options'
954    Exit(1)
955
956
957# To speed things up, we only instantiate the build environments we
958# need.  We try to identify the needed environment for each target; if
959# we can't, we fall back on instantiating all the environments just to
960# be safe.
961target_types = ['debug', 'opt', 'fast', 'prof']
962obj2target = {'do': 'debug', 'o': 'opt', 'fo': 'fast', 'po': 'prof'}
963
964def identifyTarget(t):
965    ext = t.split('.')[-1]
966    if ext in target_types:
967        return ext
968    if obj2target.has_key(ext):
969        return obj2target[ext]
970    match = re.search(r'/tests/([^/]+)/', t)
971    if match and match.group(1) in target_types:
972        return match.group(1)
973    return 'all'
974
975needed_envs = [identifyTarget(target) for target in BUILD_TARGETS]
976if 'all' in needed_envs:
977    needed_envs += target_types
978
979# Debug binary
980if 'debug' in needed_envs:
981    makeEnv('debug', '.do',
982            CCFLAGS = Split(ccflags['debug']),
983            CPPDEFINES = ['DEBUG', 'TRACING_ON=1'])
984
985# Optimized binary
986if 'opt' in needed_envs:
987    makeEnv('opt', '.o',
988            CCFLAGS = Split(ccflags['opt']),
989            CPPDEFINES = ['TRACING_ON=1'])
990
991# "Fast" binary
992if 'fast' in needed_envs:
993    makeEnv('fast', '.fo', strip = True,
994            CCFLAGS = Split(ccflags['fast']),
995            CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'])
996
997# Profiled binary
998if 'prof' in needed_envs:
999    makeEnv('prof', '.po',
1000            CCFLAGS = Split(ccflags['prof']),
1001            CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
1002            LINKFLAGS = '-pg')
1003
1004Return('envList')
1005