SConscript revision 7816
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
324762Snate@binkert.orgimport bisect
335522Snate@binkert.orgimport imp
34955SN/Aimport marshal
355522Snate@binkert.orgimport os
36955SN/Aimport re
375522Snate@binkert.orgimport sys
384202Sbinkertn@umich.eduimport zlib
395742Snate@binkert.org
40955SN/Afrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath
414381Sbinkertn@umich.edu
424381Sbinkertn@umich.eduimport SCons
43955SN/A
44955SN/A# This file defines how to build a particular configuration of M5
45955SN/A# based on variable settings in the 'env' build environment.
464202Sbinkertn@umich.edu
47955SN/AImport('*')
484382Sbinkertn@umich.edu
494382Sbinkertn@umich.edu# Children need to see the environment
504382Sbinkertn@umich.eduExport('env')
516108Snate@binkert.org
525517Snate@binkert.orgbuild_env = [(opt, env[opt]) for opt in export_vars]
534762Snate@binkert.org
544762Snate@binkert.orgfrom m5.util import code_formatter
554762Snate@binkert.org
564762Snate@binkert.org########################################################################
574762Snate@binkert.org# Code for adding source files of various types
584762Snate@binkert.org#
594762Snate@binkert.orgclass SourceMeta(type):
604762Snate@binkert.org    def __init__(cls, name, bases, dict):
614762Snate@binkert.org        super(SourceMeta, cls).__init__(name, bases, dict)
624762Snate@binkert.org        cls.all = []
635522Snate@binkert.org        
645604Snate@binkert.org    def get(cls, **kwargs):
655604Snate@binkert.org        for src in cls.all:
665604Snate@binkert.org            for attr,value in kwargs.iteritems():
674762Snate@binkert.org                if getattr(src, attr) != value:
684762Snate@binkert.org                    break
694762Snate@binkert.org            else:
705522Snate@binkert.org                yield src
715522Snate@binkert.org
725522Snate@binkert.orgclass SourceFile(object):
735522Snate@binkert.org    __metaclass__ = SourceMeta
745604Snate@binkert.org    def __init__(self, source):
755604Snate@binkert.org        tnode = source
764762Snate@binkert.org        if not isinstance(source, SCons.Node.FS.File):
774762Snate@binkert.org            tnode = File(source)
784762Snate@binkert.org
794762Snate@binkert.org        self.tnode = tnode
805522Snate@binkert.org        self.snode = tnode.srcnode()
814762Snate@binkert.org        self.filename = str(tnode)
824762Snate@binkert.org        self.dirname = dirname(self.filename)
835604Snate@binkert.org        self.basename = basename(self.filename)
845604Snate@binkert.org        index = self.basename.rfind('.')
855604Snate@binkert.org        if index <= 0:
865604Snate@binkert.org            # dot files aren't extensions
875604Snate@binkert.org            self.extname = self.basename, None
885604Snate@binkert.org        else:
894762Snate@binkert.org            self.extname = self.basename[:index], self.basename[index+1:]
904762Snate@binkert.org
914762Snate@binkert.org        for base in type(self).__mro__:
924762Snate@binkert.org            if issubclass(base, SourceFile):
935604Snate@binkert.org                base.all.append(self)
944762Snate@binkert.org
955522Snate@binkert.org    def __lt__(self, other): return self.filename < other.filename
965522Snate@binkert.org    def __le__(self, other): return self.filename <= other.filename
975522Snate@binkert.org    def __gt__(self, other): return self.filename > other.filename
984762Snate@binkert.org    def __ge__(self, other): return self.filename >= other.filename
994382Sbinkertn@umich.edu    def __eq__(self, other): return self.filename == other.filename
1004762Snate@binkert.org    def __ne__(self, other): return self.filename != other.filename
1014382Sbinkertn@umich.edu        
1025522Snate@binkert.orgclass Source(SourceFile):
1034381Sbinkertn@umich.edu    '''Add a c/c++ source file to the build'''
1045522Snate@binkert.org    def __init__(self, source, Werror=True, swig=False, bin_only=False,
1054762Snate@binkert.org                 skip_lib=False):
1064762Snate@binkert.org        super(Source, self).__init__(source)
1074762Snate@binkert.org
1085522Snate@binkert.org        self.Werror = Werror
1095522Snate@binkert.org        self.swig = swig
1105522Snate@binkert.org        self.bin_only = bin_only
1115522Snate@binkert.org        self.skip_lib = bin_only or skip_lib
1125522Snate@binkert.org
1135522Snate@binkert.orgclass PySource(SourceFile):
1145522Snate@binkert.org    '''Add a python source file to the named package'''
1155522Snate@binkert.org    invalid_sym_char = re.compile('[^A-z0-9_]')
1165522Snate@binkert.org    modules = {}
1174762Snate@binkert.org    tnodes = {}
1184762Snate@binkert.org    symnames = {}
1194762Snate@binkert.org    
1204762Snate@binkert.org    def __init__(self, package, source):
1214762Snate@binkert.org        super(PySource, self).__init__(source)
1224762Snate@binkert.org
1234762Snate@binkert.org        modname,ext = self.extname
1244762Snate@binkert.org        assert ext == 'py'
1254762Snate@binkert.org
1264762Snate@binkert.org        if package:
1274762Snate@binkert.org            path = package.split('.')
1284762Snate@binkert.org        else:
1294762Snate@binkert.org            path = []
1304762Snate@binkert.org
1314762Snate@binkert.org        modpath = path[:]
1324762Snate@binkert.org        if modname != '__init__':
1334762Snate@binkert.org            modpath += [ modname ]
1344762Snate@binkert.org        modpath = '.'.join(modpath)
1354762Snate@binkert.org
1364762Snate@binkert.org        arcpath = path + [ self.basename ]
1374762Snate@binkert.org        abspath = self.snode.abspath
1384762Snate@binkert.org        if not exists(abspath):
1394762Snate@binkert.org            abspath = self.tnode.abspath
1404762Snate@binkert.org
1414762Snate@binkert.org        self.package = package
1424762Snate@binkert.org        self.modname = modname
1434762Snate@binkert.org        self.modpath = modpath
1444762Snate@binkert.org        self.arcname = joinpath(*arcpath)
1454762Snate@binkert.org        self.abspath = abspath
1464762Snate@binkert.org        self.compiled = File(self.filename + 'c')
1474762Snate@binkert.org        self.cpp = File(self.filename + '.cc')
1484762Snate@binkert.org        self.symname = PySource.invalid_sym_char.sub('_', modpath)
1494762Snate@binkert.org
1504762Snate@binkert.org        PySource.modules[modpath] = self
1514762Snate@binkert.org        PySource.tnodes[self.tnode] = self
152955SN/A        PySource.symnames[self.symname] = self
1535584Snate@binkert.org
1545584Snate@binkert.orgclass SimObject(PySource):
1555584Snate@binkert.org    '''Add a SimObject python file as a python source object and add
1565584Snate@binkert.org    it to a list of sim object modules'''
1575584Snate@binkert.org
1585584Snate@binkert.org    fixed = False
1595584Snate@binkert.org    modnames = []
1605584Snate@binkert.org
1615584Snate@binkert.org    def __init__(self, source):
1625584Snate@binkert.org        super(SimObject, self).__init__('m5.objects', source)
1635584Snate@binkert.org        if self.fixed:
1645584Snate@binkert.org            raise AttributeError, "Too late to call SimObject now."
1655584Snate@binkert.org
1664382Sbinkertn@umich.edu        bisect.insort_right(SimObject.modnames, self.modname)
1674202Sbinkertn@umich.edu
1685522Snate@binkert.orgclass SwigSource(SourceFile):
1694382Sbinkertn@umich.edu    '''Add a swig file to build'''
1704382Sbinkertn@umich.edu
1714382Sbinkertn@umich.edu    def __init__(self, package, source):
1725584Snate@binkert.org        super(SwigSource, self).__init__(source)
1734382Sbinkertn@umich.edu
1744382Sbinkertn@umich.edu        modname,ext = self.extname
1754382Sbinkertn@umich.edu        assert ext == 'i'
1765192Ssaidi@eecs.umich.edu
1775192Ssaidi@eecs.umich.edu        self.module = modname
1785799Snate@binkert.org        cc_file = joinpath(self.dirname, modname + '_wrap.cc')
1795799Snate@binkert.org        py_file = joinpath(self.dirname, modname + '.py')
1805799Snate@binkert.org
1815192Ssaidi@eecs.umich.edu        self.cc_source = Source(cc_file, swig=True)
1825799Snate@binkert.org        self.py_source = PySource(package, py_file)
1835192Ssaidi@eecs.umich.edu
1845799Snate@binkert.orgunit_tests = []
1855799Snate@binkert.orgdef UnitTest(target, sources):
1865192Ssaidi@eecs.umich.edu    if not isinstance(sources, (list, tuple)):
1875192Ssaidi@eecs.umich.edu        sources = [ sources ]
1885192Ssaidi@eecs.umich.edu
1895192Ssaidi@eecs.umich.edu    sources = [ Source(src, skip_lib=True) for src in sources ]
1905799Snate@binkert.org    unit_tests.append((target, sources))
1915192Ssaidi@eecs.umich.edu
1925799Snate@binkert.org# Children should have access
1935192Ssaidi@eecs.umich.eduExport('Source')
1945192Ssaidi@eecs.umich.eduExport('PySource')
1955192Ssaidi@eecs.umich.eduExport('SimObject')
1965799Snate@binkert.orgExport('SwigSource')
1975192Ssaidi@eecs.umich.eduExport('UnitTest')
1985192Ssaidi@eecs.umich.edu
1995192Ssaidi@eecs.umich.edu########################################################################
2005192Ssaidi@eecs.umich.edu#
2015192Ssaidi@eecs.umich.edu# Trace Flags
2025192Ssaidi@eecs.umich.edu#
2034382Sbinkertn@umich.edutrace_flags = {}
2044382Sbinkertn@umich.edudef TraceFlag(name, desc=None):
2054382Sbinkertn@umich.edu    if name in trace_flags:
2062667Sstever@eecs.umich.edu        raise AttributeError, "Flag %s already specified" % name
2072667Sstever@eecs.umich.edu    trace_flags[name] = (name, (), desc)
2082667Sstever@eecs.umich.edu
2092667Sstever@eecs.umich.edudef CompoundFlag(name, flags, desc=None):
2102667Sstever@eecs.umich.edu    if name in trace_flags:
2112667Sstever@eecs.umich.edu        raise AttributeError, "Flag %s already specified" % name
2125742Snate@binkert.org
2135742Snate@binkert.org    compound = tuple(flags)
2145742Snate@binkert.org    trace_flags[name] = (name, compound, desc)
2152037SN/A
2162037SN/AExport('TraceFlag')
2172037SN/AExport('CompoundFlag')
2185793Snate@binkert.org
2195793Snate@binkert.org########################################################################
2205793Snate@binkert.org#
2215793Snate@binkert.org# Set some compiler variables
2225793Snate@binkert.org#
2234382Sbinkertn@umich.edu
2244762Snate@binkert.org# Include file paths are rooted in this directory.  SCons will
2255344Sstever@gmail.com# automatically expand '.' to refer to both the source directory and
2264382Sbinkertn@umich.edu# the corresponding build directory to pick up generated include
2275341Sstever@gmail.com# files.
2285742Snate@binkert.orgenv.Append(CPPPATH=Dir('.'))
2295742Snate@binkert.org
2305742Snate@binkert.orgfor extra_dir in extras_dir_list:
2315742Snate@binkert.org    env.Append(CPPPATH=Dir(extra_dir))
2325742Snate@binkert.org
2334762Snate@binkert.org# Workaround for bug in SCons version > 0.97d20071212
2345742Snate@binkert.org# Scons bug id: 2006 M5 Bug id: 308 
2355742Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True):
2365742Snate@binkert.org    Dir(root[len(base_dir) + 1:])
2375742Snate@binkert.org
2385742Snate@binkert.org########################################################################
2395742Snate@binkert.org#
2405742Snate@binkert.org# Walk the tree and execute all SConscripts in subdirectories
2415341Sstever@gmail.com#
2425742Snate@binkert.org
2435341Sstever@gmail.comhere = Dir('.').srcnode().abspath
2444773Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True):
2456108Snate@binkert.org    if root == here:
2461858SN/A        # we don't want to recurse back into this SConscript
2471085SN/A        continue
2484382Sbinkertn@umich.edu
2494382Sbinkertn@umich.edu    if 'SConscript' in files:
2504762Snate@binkert.org        build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:])
2514762Snate@binkert.org        SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir)
2524762Snate@binkert.org
2535517Snate@binkert.orgfor extra_dir in extras_dir_list:
2545517Snate@binkert.org    prefix_len = len(dirname(extra_dir)) + 1
2555517Snate@binkert.org    for root, dirs, files in os.walk(extra_dir, topdown=True):
2565517Snate@binkert.org        if 'SConscript' in files:
2575517Snate@binkert.org            build_dir = joinpath(env['BUILDDIR'], root[prefix_len:])
2585517Snate@binkert.org            SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir)
2595517Snate@binkert.org
2605517Snate@binkert.orgfor opt in export_vars:
2615517Snate@binkert.org    env.ConfigFile(opt)
2625517Snate@binkert.org
2635517Snate@binkert.orgdef makeTheISA(source, target, env):
2645517Snate@binkert.org    isas = [ src.get_contents() for src in source ]
2655517Snate@binkert.org    target_isa = env['TARGET_ISA']
2665517Snate@binkert.org    def define(isa):
2675517Snate@binkert.org        return isa.upper() + '_ISA'
2685517Snate@binkert.org    
2695517Snate@binkert.org    def namespace(isa):
2705798Snate@binkert.org        return isa[0].upper() + isa[1:].lower() + 'ISA' 
2715517Snate@binkert.org
2725517Snate@binkert.org
2735517Snate@binkert.org    code = code_formatter()
2745517Snate@binkert.org    code('''\
2755517Snate@binkert.org#ifndef __CONFIG_THE_ISA_HH__
2765517Snate@binkert.org#define __CONFIG_THE_ISA_HH__
2775517Snate@binkert.org
2785517Snate@binkert.org''')
2795517Snate@binkert.org
2805517Snate@binkert.org    for i,isa in enumerate(isas):
2815517Snate@binkert.org        code('#define $0 $1', define(isa), i + 1)
2825517Snate@binkert.org
2835517Snate@binkert.org    code('''
2845517Snate@binkert.org
2855517Snate@binkert.org#define THE_ISA ${{define(target_isa)}}
2865517Snate@binkert.org#define TheISA ${{namespace(target_isa)}}
2875517Snate@binkert.org
2885517Snate@binkert.org#endif // __CONFIG_THE_ISA_HH__''')
2895517Snate@binkert.org
2905517Snate@binkert.org    code.write(str(target[0]))
2915517Snate@binkert.org
2925517Snate@binkert.orgenv.Command('config/the_isa.hh', map(Value, all_isa_list),
2935517Snate@binkert.org            MakeAction(makeTheISA, Transform("CFG ISA", 0)))
2945798Snate@binkert.org
2955798Snate@binkert.org########################################################################
2965517Snate@binkert.org#
2975517Snate@binkert.org# Prevent any SimObjects from being added after this point, they
2985517Snate@binkert.org# should all have been added in the SConscripts above
2995517Snate@binkert.org#
3005517Snate@binkert.orgSimObject.fixed = True
3015517Snate@binkert.org
3025517Snate@binkert.orgclass DictImporter(object):
3035517Snate@binkert.org    '''This importer takes a dictionary of arbitrary module names that
3045517Snate@binkert.org    map to arbitrary filenames.'''
3055517Snate@binkert.org    def __init__(self, modules):
3065517Snate@binkert.org        self.modules = modules
3075517Snate@binkert.org        self.installed = set()
3085517Snate@binkert.org
3095522Snate@binkert.org    def __del__(self):
3105517Snate@binkert.org        self.unload()
3115517Snate@binkert.org
3125517Snate@binkert.org    def unload(self):
3135517Snate@binkert.org        import sys
3144762Snate@binkert.org        for module in self.installed:
3155517Snate@binkert.org            del sys.modules[module]
3165517Snate@binkert.org        self.installed = set()
3174762Snate@binkert.org
3185517Snate@binkert.org    def find_module(self, fullname, path):
3194762Snate@binkert.org        if fullname == 'm5.defines':
3205517Snate@binkert.org            return self
3215517Snate@binkert.org
3225517Snate@binkert.org        if fullname == 'm5.objects':
3235517Snate@binkert.org            return self
3245517Snate@binkert.org
3255517Snate@binkert.org        if fullname.startswith('m5.internal'):
3265517Snate@binkert.org            return None
3275517Snate@binkert.org
3285517Snate@binkert.org        source = self.modules.get(fullname, None)
3295517Snate@binkert.org        if source is not None and fullname.startswith('m5.objects'):
3305517Snate@binkert.org            return self
3315517Snate@binkert.org
3325517Snate@binkert.org        return None
3335517Snate@binkert.org
3345517Snate@binkert.org    def load_module(self, fullname):
3355517Snate@binkert.org        mod = imp.new_module(fullname)
3365517Snate@binkert.org        sys.modules[fullname] = mod
3375517Snate@binkert.org        self.installed.add(fullname)
3385517Snate@binkert.org
3395517Snate@binkert.org        mod.__loader__ = self
3405517Snate@binkert.org        if fullname == 'm5.objects':
3415517Snate@binkert.org            mod.__path__ = fullname.split('.')
3425517Snate@binkert.org            return mod
3434762Snate@binkert.org
3444762Snate@binkert.org        if fullname == 'm5.defines':
3454762Snate@binkert.org            mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env)
3464762Snate@binkert.org            return mod
3474762Snate@binkert.org
3484762Snate@binkert.org        source = self.modules[fullname]
3495517Snate@binkert.org        if source.modname == '__init__':
3504762Snate@binkert.org            mod.__path__ = source.modpath
3514762Snate@binkert.org        mod.__file__ = source.abspath
3524762Snate@binkert.org
3534762Snate@binkert.org        exec file(source.abspath, 'r') in mod.__dict__
3544382Sbinkertn@umich.edu
3554382Sbinkertn@umich.edu        return mod
3565517Snate@binkert.org
3575517Snate@binkert.orgimport m5.SimObject
3585517Snate@binkert.orgimport m5.params
3595517Snate@binkert.orgfrom m5.util import code_formatter
3605798Snate@binkert.org
3615798Snate@binkert.orgm5.SimObject.clear()
3625824Ssaidi@eecs.umich.edum5.params.clear()
3635517Snate@binkert.org
3645517Snate@binkert.org# install the python importer so we can grab stuff from the source
3655863Snate@binkert.org# tree itself.  We can't have SimObjects added after this point or
3665798Snate@binkert.org# else we won't know about them for the rest of the stuff.
3675798Snate@binkert.orgimporter = DictImporter(PySource.modules)
3685798Snate@binkert.orgsys.meta_path[0:0] = [ importer ]
3695798Snate@binkert.org
3705517Snate@binkert.org# import all sim objects so we can populate the all_objects list
3715517Snate@binkert.org# make sure that we're working with a list, then let's sort it
3725517Snate@binkert.orgfor modname in SimObject.modnames:
3735517Snate@binkert.org    exec('from m5.objects import %s' % modname)
3745517Snate@binkert.org
3755517Snate@binkert.org# we need to unload all of the currently imported modules so that they
3765517Snate@binkert.org# will be re-imported the next time the sconscript is run
3775517Snate@binkert.orgimporter.unload()
3785798Snate@binkert.orgsys.meta_path.remove(importer)
3795798Snate@binkert.org
3805798Snate@binkert.orgsim_objects = m5.SimObject.allClasses
3815798Snate@binkert.orgall_enums = m5.params.allEnums
3825798Snate@binkert.org
3835798Snate@binkert.orgall_params = {}
3845517Snate@binkert.orgfor name,obj in sorted(sim_objects.iteritems()):
3855517Snate@binkert.org    for param in obj._params.local.values():
3865517Snate@binkert.org        # load the ptype attribute now because it depends on the
3875517Snate@binkert.org        # current version of SimObject.allClasses, but when scons
3885517Snate@binkert.org        # actually uses the value, all versions of
3895517Snate@binkert.org        # SimObject.allClasses will have been loaded
3905517Snate@binkert.org        param.ptype
3915517Snate@binkert.org
3925517Snate@binkert.org        if not hasattr(param, 'swig_decl'):
3934762Snate@binkert.org            continue
3944382Sbinkertn@umich.edu        pname = param.ptype_str
3954762Snate@binkert.org        if pname not in all_params:
3965517Snate@binkert.org            all_params[pname] = param
3974382Sbinkertn@umich.edu
3984382Sbinkertn@umich.edu########################################################################
3994762Snate@binkert.org#
4004762Snate@binkert.org# calculate extra dependencies
4014762Snate@binkert.org#
4024762Snate@binkert.orgmodule_depends = ["m5", "m5.SimObject", "m5.params"]
4034762Snate@binkert.orgdepends = [ PySource.modules[dep].snode for dep in module_depends ]
4045517Snate@binkert.org
4055517Snate@binkert.org########################################################################
4065517Snate@binkert.org#
4075517Snate@binkert.org# Commands for the basic automatically generated python files
4085517Snate@binkert.org#
4095517Snate@binkert.org
4105517Snate@binkert.org# Generate Python file containing a dict specifying the current
4115517Snate@binkert.org# buildEnv flags.
4125517Snate@binkert.orgdef makeDefinesPyFile(target, source, env):
4135517Snate@binkert.org    build_env, hg_info = [ x.get_contents() for x in source ]
4145517Snate@binkert.org
4155517Snate@binkert.org    code = code_formatter()
4165517Snate@binkert.org    code("""
4175517Snate@binkert.orgimport m5.internal
4185517Snate@binkert.orgimport m5.util
4195517Snate@binkert.org
4205517Snate@binkert.orgbuildEnv = m5.util.SmartDict($build_env)
4215517Snate@binkert.orghgRev = '$hg_info'
4225517Snate@binkert.org
4235517Snate@binkert.orgcompileDate = m5.internal.core.compileDate
4245517Snate@binkert.org_globals = globals()
4255517Snate@binkert.orgfor key,val in m5.internal.core.__dict__.iteritems():
4265517Snate@binkert.org    if key.startswith('flag_'):
4275517Snate@binkert.org        flag = key[5:]
4285517Snate@binkert.org        _globals[flag] = val
4295517Snate@binkert.orgdel _globals
4305517Snate@binkert.org""")
4315517Snate@binkert.org    code.write(target[0].abspath)
4325517Snate@binkert.org
4335517Snate@binkert.orgdefines_info = [ Value(build_env), Value(env['HG_INFO']) ]
4345517Snate@binkert.org# Generate a file with all of the compile options in it
4355517Snate@binkert.orgenv.Command('python/m5/defines.py', defines_info,
4365517Snate@binkert.org            MakeAction(makeDefinesPyFile, Transform("DEFINES", 0)))
4375517Snate@binkert.orgPySource('m5', 'python/m5/defines.py')
4385517Snate@binkert.org
4395517Snate@binkert.org# Generate python file containing info about the M5 source code
4405517Snate@binkert.orgdef makeInfoPyFile(target, source, env):
4415517Snate@binkert.org    code = code_formatter()
4424762Snate@binkert.org    for src in source:
4434762Snate@binkert.org        data = ''.join(file(src.srcnode().abspath, 'r').xreadlines())
4445517Snate@binkert.org        code('$src = ${{repr(data)}}')
4455517Snate@binkert.org    code.write(str(target[0]))
4464762Snate@binkert.org
4474762Snate@binkert.org# Generate a file that wraps the basic top level files
4484762Snate@binkert.orgenv.Command('python/m5/info.py',
4495517Snate@binkert.org            [ '#/AUTHORS', '#/LICENSE', '#/README', '#/RELEASE_NOTES' ],
4504762Snate@binkert.org            MakeAction(makeInfoPyFile, Transform("INFO")))
4514762Snate@binkert.orgPySource('m5', 'python/m5/info.py')
4524762Snate@binkert.org
4535463Snate@binkert.org########################################################################
4545517Snate@binkert.org#
4554762Snate@binkert.org# Create all of the SimObject param headers and enum headers
4564762Snate@binkert.org#
4574762Snate@binkert.org
4584762Snate@binkert.orgdef createSimObjectParam(target, source, env):
4594762Snate@binkert.org    assert len(target) == 1 and len(source) == 1
4604762Snate@binkert.org
4615463Snate@binkert.org    name = str(source[0].get_contents())
4625517Snate@binkert.org    obj = sim_objects[name]
4634762Snate@binkert.org
4644762Snate@binkert.org    code = code_formatter()
4654762Snate@binkert.org    obj.cxx_decl(code)
4665517Snate@binkert.org    code.write(target[0].abspath)
4675517Snate@binkert.org
4684762Snate@binkert.orgdef createSwigParam(target, source, env):
4694762Snate@binkert.org    assert len(target) == 1 and len(source) == 1
4705517Snate@binkert.org
4714762Snate@binkert.org    name = str(source[0].get_contents())
4724762Snate@binkert.org    param = all_params[name]
4734762Snate@binkert.org
4744762Snate@binkert.org    code = code_formatter()
4755517Snate@binkert.org    code('%module(package="m5.internal") $0_${name}', param.file_ext)
4764762Snate@binkert.org    param.swig_decl(code)
4774762Snate@binkert.org    code.write(target[0].abspath)
4784762Snate@binkert.org
4794762Snate@binkert.orgdef createEnumStrings(target, source, env):
4805517Snate@binkert.org    assert len(target) == 1 and len(source) == 1
4815517Snate@binkert.org
4825517Snate@binkert.org    name = str(source[0].get_contents())
4835517Snate@binkert.org    obj = all_enums[name]
4845517Snate@binkert.org
4855517Snate@binkert.org    code = code_formatter()
4865517Snate@binkert.org    obj.cxx_def(code)
4875517Snate@binkert.org    code.write(target[0].abspath)
4885517Snate@binkert.org
4895517Snate@binkert.orgdef createEnumParam(target, source, env):
4905517Snate@binkert.org    assert len(target) == 1 and len(source) == 1
4915517Snate@binkert.org
4925517Snate@binkert.org    name = str(source[0].get_contents())
4935517Snate@binkert.org    obj = all_enums[name]
4945517Snate@binkert.org
4955517Snate@binkert.org    code = code_formatter()
4965517Snate@binkert.org    obj.cxx_decl(code)
4975517Snate@binkert.org    code.write(target[0].abspath)
4985517Snate@binkert.org
4995517Snate@binkert.orgdef createEnumSwig(target, source, env):
5005517Snate@binkert.org    assert len(target) == 1 and len(source) == 1
5015517Snate@binkert.org
5025517Snate@binkert.org    name = str(source[0].get_contents())
5035517Snate@binkert.org    obj = all_enums[name]
5045517Snate@binkert.org
5055517Snate@binkert.org    code = code_formatter()
5065517Snate@binkert.org    code('''\
5075517Snate@binkert.org%module(package="m5.internal") enum_$name
5085517Snate@binkert.org
5095517Snate@binkert.org%{
5105517Snate@binkert.org#include "enums/$name.hh"
5115517Snate@binkert.org%}
5125517Snate@binkert.org
5135517Snate@binkert.org%include "enums/$name.hh"
5145517Snate@binkert.org''')
5155517Snate@binkert.org    code.write(target[0].abspath)
5165517Snate@binkert.org
5175517Snate@binkert.org# Generate all of the SimObject param struct header files
5185517Snate@binkert.orgparams_hh_files = []
5195517Snate@binkert.orgfor name,simobj in sorted(sim_objects.iteritems()):
5205517Snate@binkert.org    py_source = PySource.modules[simobj.__module__]
5215517Snate@binkert.org    extra_deps = [ py_source.tnode ]
5225517Snate@binkert.org
5235517Snate@binkert.org    hh_file = File('params/%s.hh' % name)
5245517Snate@binkert.org    params_hh_files.append(hh_file)
5255517Snate@binkert.org    env.Command(hh_file, Value(name),
5265517Snate@binkert.org                MakeAction(createSimObjectParam, Transform("SO PARAM")))
5275517Snate@binkert.org    env.Depends(hh_file, depends + extra_deps)
5285517Snate@binkert.org
5295517Snate@binkert.org# Generate any parameter header files needed
5305517Snate@binkert.orgparams_i_files = []
5315517Snate@binkert.orgfor name,param in all_params.iteritems():
5325517Snate@binkert.org    i_file = File('python/m5/internal/%s_%s.i' % (param.file_ext, name))
5335517Snate@binkert.org    params_i_files.append(i_file)
5345517Snate@binkert.org    env.Command(i_file, Value(name),
5355517Snate@binkert.org                MakeAction(createSwigParam, Transform("SW PARAM")))
5365517Snate@binkert.org    env.Depends(i_file, depends)
5375517Snate@binkert.org    SwigSource('m5.internal', i_file)
5385517Snate@binkert.org
5395517Snate@binkert.org# Generate all enum header files
5405517Snate@binkert.orgfor name,enum in sorted(all_enums.iteritems()):
5415517Snate@binkert.org    py_source = PySource.modules[enum.__module__]
5425517Snate@binkert.org    extra_deps = [ py_source.tnode ]
5435517Snate@binkert.org
5445517Snate@binkert.org    cc_file = File('enums/%s.cc' % name)
5455517Snate@binkert.org    env.Command(cc_file, Value(name),
5465610Snate@binkert.org                MakeAction(createEnumStrings, Transform("ENUM STR")))
5475623Snate@binkert.org    env.Depends(cc_file, depends + extra_deps)
5485623Snate@binkert.org    Source(cc_file)
5495623Snate@binkert.org
5505610Snate@binkert.org    hh_file = File('enums/%s.hh' % name)
5515517Snate@binkert.org    env.Command(hh_file, Value(name),
5525623Snate@binkert.org                MakeAction(createEnumParam, Transform("EN PARAM")))
5535623Snate@binkert.org    env.Depends(hh_file, depends + extra_deps)
5545623Snate@binkert.org
5555623Snate@binkert.org    i_file = File('python/m5/internal/enum_%s.i' % name)
5565623Snate@binkert.org    env.Command(i_file, Value(name),
5575623Snate@binkert.org                MakeAction(createEnumSwig, Transform("ENUMSWIG")))
5585623Snate@binkert.org    env.Depends(i_file, depends + extra_deps)
5595517Snate@binkert.org    SwigSource('m5.internal', i_file)
5605610Snate@binkert.org
5615610Snate@binkert.orgdef buildParam(target, source, env):
5625610Snate@binkert.org    name = source[0].get_contents()
5635610Snate@binkert.org    obj = sim_objects[name]
5645517Snate@binkert.org    class_path = obj.cxx_class.split('::')
5655517Snate@binkert.org    classname = class_path[-1]
5665610Snate@binkert.org    namespaces = class_path[:-1]
5675610Snate@binkert.org    params = obj._params.local.values()
5685517Snate@binkert.org
5695517Snate@binkert.org    code = code_formatter()
5705517Snate@binkert.org
5715517Snate@binkert.org    code('%module(package="m5.internal") param_$name')
5725517Snate@binkert.org    code()
5735517Snate@binkert.org    code('%{')
5745517Snate@binkert.org    code('#include "params/$obj.hh"')
5755517Snate@binkert.org    for param in params:
5765517Snate@binkert.org        param.cxx_predecls(code)
5775517Snate@binkert.org    code('%}')
5784762Snate@binkert.org    code()
5795517Snate@binkert.org
5805517Snate@binkert.org    for param in params:
5815463Snate@binkert.org        param.swig_predecls(code)
5824762Snate@binkert.org
5834762Snate@binkert.org    code()
5844762Snate@binkert.org    if obj._base:
5854382Sbinkertn@umich.edu        code('%import "python/m5/internal/param_${{obj._base}}.i"')
5865554Snate@binkert.org    code()
5874762Snate@binkert.org    obj.swig_objdecls(code)
5884382Sbinkertn@umich.edu    code()
5894762Snate@binkert.org
5904382Sbinkertn@umich.edu    code('%include "params/$obj.hh"')
5914762Snate@binkert.org
5924762Snate@binkert.org    code.write(target[0].abspath)
5934762Snate@binkert.org
5944762Snate@binkert.orgfor name in sim_objects.iterkeys():
5954382Sbinkertn@umich.edu    params_file = File('python/m5/internal/param_%s.i' % name)
5964382Sbinkertn@umich.edu    env.Command(params_file, Value(name),
5974382Sbinkertn@umich.edu                MakeAction(buildParam, Transform("BLDPARAM")))
5984382Sbinkertn@umich.edu    env.Depends(params_file, depends)
5994382Sbinkertn@umich.edu    SwigSource('m5.internal', params_file)
6004382Sbinkertn@umich.edu
6014762Snate@binkert.org# Generate the main swig init file
6024382Sbinkertn@umich.edudef makeEmbeddedSwigInit(target, source, env):
6035554Snate@binkert.org    code = code_formatter()
6044382Sbinkertn@umich.edu    module = source[0].get_contents()
6054382Sbinkertn@umich.edu    code('''\
6064762Snate@binkert.org#include "sim/init.hh"
6075517Snate@binkert.org
6085517Snate@binkert.orgextern "C" {
6095517Snate@binkert.org    void init_${module}();
6105517Snate@binkert.org}
6115517Snate@binkert.org
6125517Snate@binkert.orgEmbeddedSwig embed_swig_${module}(init_${module});
6135522Snate@binkert.org''')
6145517Snate@binkert.org    code.write(str(target[0]))
6155517Snate@binkert.org    
6165517Snate@binkert.org# Build all swig modules
6175517Snate@binkert.orgfor swig in SwigSource.all:
6185517Snate@binkert.org    env.Command([swig.cc_source.tnode, swig.py_source.tnode], swig.tnode,
6195522Snate@binkert.org                MakeAction('$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} '
6205522Snate@binkert.org                '-o ${TARGETS[0]} $SOURCES', Transform("SWIG")))
6214382Sbinkertn@umich.edu    init_file = 'python/swig/init_%s.cc' % swig.module
6225192Ssaidi@eecs.umich.edu    env.Command(init_file, Value(swig.module),
6235517Snate@binkert.org                MakeAction(makeEmbeddedSwigInit, Transform("EMBED SW")))
6245517Snate@binkert.org    Source(init_file)
6255517Snate@binkert.org
6265517Snate@binkert.orgdef getFlags(source_flags):
6275517Snate@binkert.org    flagsMap = {}
6285517Snate@binkert.org    flagsList = []
6295517Snate@binkert.org    for s in source_flags:
6305517Snate@binkert.org        val = eval(s.get_contents())
6315517Snate@binkert.org        name, compound, desc = val
6325517Snate@binkert.org        flagsList.append(val)
6335799Snate@binkert.org        flagsMap[name] = bool(compound)
6345799Snate@binkert.org    
6355799Snate@binkert.org    for name, compound, desc in flagsList:
6365517Snate@binkert.org        for flag in compound:
6375517Snate@binkert.org            if flag not in flagsMap:
6385517Snate@binkert.org                raise AttributeError, "Trace flag %s not found" % flag
6395517Snate@binkert.org            if flagsMap[flag]:
6405517Snate@binkert.org                raise AttributeError, \
6415517Snate@binkert.org                    "Compound flag can't point to another compound flag"
6425799Snate@binkert.org
6435517Snate@binkert.org    flagsList.sort()
6445517Snate@binkert.org    return flagsList
6455517Snate@binkert.org
6465517Snate@binkert.org
6475517Snate@binkert.org# Generate traceflags.py
6485517Snate@binkert.orgdef traceFlagsPy(target, source, env):
6495517Snate@binkert.org    assert(len(target) == 1)
6505799Snate@binkert.org    code = code_formatter()
6515517Snate@binkert.org
6525517Snate@binkert.org    allFlags = getFlags(source)
6535799Snate@binkert.org
6545517Snate@binkert.org    code('basic = [')
6555517Snate@binkert.org    code.indent()
6565517Snate@binkert.org    for flag, compound, desc in allFlags:
6575517Snate@binkert.org        if not compound:
6585517Snate@binkert.org            code("'$flag',")
6595517Snate@binkert.org    code(']')
6605517Snate@binkert.org    code.dedent()
6615517Snate@binkert.org    code()
6625799Snate@binkert.org
6635517Snate@binkert.org    code('compound = [')
6645517Snate@binkert.org    code.indent()
6655517Snate@binkert.org    code("'All',")
6665517Snate@binkert.org    for flag, compound, desc in allFlags:
6675517Snate@binkert.org        if compound:
6685517Snate@binkert.org            code("'$flag',")
6695517Snate@binkert.org    code("]")
6705517Snate@binkert.org    code.dedent()
6715517Snate@binkert.org    code()
6725517Snate@binkert.org
6735517Snate@binkert.org    code("all = frozenset(basic + compound)")
6745517Snate@binkert.org    code()
6755517Snate@binkert.org
6765517Snate@binkert.org    code('compoundMap = {')
6775517Snate@binkert.org    code.indent()
6785517Snate@binkert.org    all = tuple([flag for flag,compound,desc in allFlags if not compound])
6795517Snate@binkert.org    code("'All' : $all,")
6805517Snate@binkert.org    for flag, compound, desc in allFlags:
6815517Snate@binkert.org        if compound:
6825517Snate@binkert.org            code("'$flag' : $compound,")
6835517Snate@binkert.org    code('}')
6845517Snate@binkert.org    code.dedent()
6855517Snate@binkert.org    code()
6865517Snate@binkert.org
6875517Snate@binkert.org    code('descriptions = {')
6885517Snate@binkert.org    code.indent()
6895517Snate@binkert.org    code("'All' : 'All flags',")
6905517Snate@binkert.org    for flag, compound, desc in allFlags:
6915517Snate@binkert.org        code("'$flag' : '$desc',")
6925517Snate@binkert.org    code("}")
6935517Snate@binkert.org    code.dedent()
6945517Snate@binkert.org
6955517Snate@binkert.org    code.write(str(target[0]))
6965517Snate@binkert.org
6975517Snate@binkert.orgdef traceFlagsCC(target, source, env):
6985517Snate@binkert.org    assert(len(target) == 1)
6995517Snate@binkert.org
7005517Snate@binkert.org    allFlags = getFlags(source)
7015517Snate@binkert.org    code = code_formatter()
7025517Snate@binkert.org
7035517Snate@binkert.org    # file header
7045517Snate@binkert.org    code('''
7055517Snate@binkert.org/*
7065517Snate@binkert.org * DO NOT EDIT THIS FILE! Automatically generated
7075517Snate@binkert.org */
7085517Snate@binkert.org
7095517Snate@binkert.org#include "base/traceflags.hh"
7105517Snate@binkert.org
7115517Snate@binkert.orgusing namespace Trace;
7125517Snate@binkert.org
7135517Snate@binkert.orgconst char *Trace::flagStrings[] =
7145517Snate@binkert.org{''')
7155517Snate@binkert.org
7165517Snate@binkert.org    code.indent()
7175517Snate@binkert.org    # The string array is used by SimpleEnumParam to map the strings
7185517Snate@binkert.org    # provided by the user to enum values.
7195517Snate@binkert.org    for flag, compound, desc in allFlags:
7205517Snate@binkert.org        if not compound:
7215517Snate@binkert.org            code('"$flag",')
7225517Snate@binkert.org
7235517Snate@binkert.org    code('"All",')
7245517Snate@binkert.org    for flag, compound, desc in allFlags:
7255517Snate@binkert.org        if compound:
7265517Snate@binkert.org            code('"$flag",')
7275517Snate@binkert.org    code.dedent()
7285517Snate@binkert.org
7295517Snate@binkert.org    code('''\
7305517Snate@binkert.org};
7315517Snate@binkert.org
7325517Snate@binkert.orgconst int Trace::numFlagStrings = ${{len(allFlags) + 1}};
7335517Snate@binkert.org
7345517Snate@binkert.org''')
7355517Snate@binkert.org
7365517Snate@binkert.org    # Now define the individual compound flag arrays.  There is an array
7375517Snate@binkert.org    # for each compound flag listing the component base flags.
7385517Snate@binkert.org    all = tuple([flag for flag,compound,desc in allFlags if not compound])
7395517Snate@binkert.org    code('static const Flags AllMap[] = {')
7405517Snate@binkert.org    code.indent()
7415517Snate@binkert.org    for flag, compound, desc in allFlags:
7425517Snate@binkert.org        if not compound:
7435517Snate@binkert.org            code('$flag,')
7445517Snate@binkert.org    code.dedent()
7455517Snate@binkert.org    code('};')
7465517Snate@binkert.org    code()
7475517Snate@binkert.org
7485517Snate@binkert.org    for flag, compound, desc in allFlags:
7495517Snate@binkert.org        if not compound:
7505517Snate@binkert.org            continue
7515517Snate@binkert.org        code('static const Flags ${flag}Map[] = {')
7525517Snate@binkert.org        code.indent()
7535517Snate@binkert.org        for flag in compound:
7545517Snate@binkert.org            code('$flag,')
7555517Snate@binkert.org        code('(Flags)-1')
7565517Snate@binkert.org        code.dedent()
7575517Snate@binkert.org        code('};')
7585517Snate@binkert.org        code()
7595517Snate@binkert.org
7605517Snate@binkert.org    # Finally the compoundFlags[] array maps the compound flags
7615517Snate@binkert.org    # to their individual arrays/
7625517Snate@binkert.org    code('const Flags *Trace::compoundFlags[] = {')
7635517Snate@binkert.org    code.indent()
7645517Snate@binkert.org    code('AllMap,')
7655517Snate@binkert.org    for flag, compound, desc in allFlags:
7665517Snate@binkert.org        if compound:
7675517Snate@binkert.org            code('${flag}Map,')
7685517Snate@binkert.org    # file trailer
7695517Snate@binkert.org    code.dedent()
7705517Snate@binkert.org    code('};')
7715517Snate@binkert.org
7725517Snate@binkert.org    code.write(str(target[0]))
7735517Snate@binkert.org
7745517Snate@binkert.orgdef traceFlagsHH(target, source, env):
7755517Snate@binkert.org    assert(len(target) == 1)
7765517Snate@binkert.org
7775517Snate@binkert.org    allFlags = getFlags(source)
7785517Snate@binkert.org    code = code_formatter()
7795517Snate@binkert.org
7805517Snate@binkert.org    # file header boilerplate
7815517Snate@binkert.org    code('''\
7825517Snate@binkert.org/*
7835517Snate@binkert.org * DO NOT EDIT THIS FILE!
7845517Snate@binkert.org *
7855517Snate@binkert.org * Automatically generated from traceflags.py
7865517Snate@binkert.org */
7875517Snate@binkert.org
7885517Snate@binkert.org#ifndef __BASE_TRACE_FLAGS_HH__
7895517Snate@binkert.org#define __BASE_TRACE_FLAGS_HH__
7905517Snate@binkert.org
7915517Snate@binkert.orgnamespace Trace {
7925517Snate@binkert.org
7935517Snate@binkert.orgenum Flags {''')
7945517Snate@binkert.org
7955517Snate@binkert.org    # Generate the enum.  Base flags come first, then compound flags.
7965517Snate@binkert.org    idx = 0
7975517Snate@binkert.org    code.indent()
7985517Snate@binkert.org    for flag, compound, desc in allFlags:
7995517Snate@binkert.org        if not compound:
8005517Snate@binkert.org            code('$flag = $idx,')
8015517Snate@binkert.org            idx += 1
8025517Snate@binkert.org
8035517Snate@binkert.org    numBaseFlags = idx
8045517Snate@binkert.org    code('NumFlags = $idx,')
8055517Snate@binkert.org    code.dedent()
8065517Snate@binkert.org    code()
8075517Snate@binkert.org
8085517Snate@binkert.org    # put a comment in here to separate base from compound flags
8095517Snate@binkert.org    code('''
8105517Snate@binkert.org// The remaining enum values are *not* valid indices for Trace::flags.
8115517Snate@binkert.org// They are "compound" flags, which correspond to sets of base
8125517Snate@binkert.org// flags, and are used by changeFlag.''')
8135517Snate@binkert.org
8145517Snate@binkert.org    code.indent()
8155517Snate@binkert.org    code('All = $idx,')
8165799Snate@binkert.org    idx += 1
8175517Snate@binkert.org    for flag, compound, desc in allFlags:
8185192Ssaidi@eecs.umich.edu        if compound:
8195192Ssaidi@eecs.umich.edu            code('$flag = $idx,')
8205517Snate@binkert.org            idx += 1
8215517Snate@binkert.org
8225192Ssaidi@eecs.umich.edu    numCompoundFlags = idx - numBaseFlags
8235192Ssaidi@eecs.umich.edu    code('NumCompoundFlags = $numCompoundFlags')
8245522Snate@binkert.org    code.dedent()
8255522Snate@binkert.org
8265522Snate@binkert.org    # trailer boilerplate
8275522Snate@binkert.org    code('''\
8285522Snate@binkert.org}; // enum Flags
8295522Snate@binkert.org
8305522Snate@binkert.org// Array of strings for SimpleEnumParam
8315522Snate@binkert.orgextern const char *flagStrings[];
8325522Snate@binkert.orgextern const int numFlagStrings;
8335517Snate@binkert.org
8345522Snate@binkert.org// Array of arraay pointers: for each compound flag, gives the list of
8355522Snate@binkert.org// base flags to set.  Inidividual flag arrays are terminated by -1.
8365522Snate@binkert.orgextern const Flags *compoundFlags[];
8375522Snate@binkert.org
8385517Snate@binkert.org} // namespace Trace
8395522Snate@binkert.org
8405522Snate@binkert.org#endif // __BASE_TRACE_FLAGS_HH__
8415517Snate@binkert.org''')
8425522Snate@binkert.org
8435604Snate@binkert.org    code.write(str(target[0]))
8445522Snate@binkert.org
8455522Snate@binkert.orgflags = map(Value, trace_flags.values())
8465522Snate@binkert.orgenv.Command('base/traceflags.py', flags, 
8475517Snate@binkert.org            MakeAction(traceFlagsPy, Transform("TRACING", 0)))
8485522Snate@binkert.orgPySource('m5', 'base/traceflags.py')
8495522Snate@binkert.org
8505522Snate@binkert.orgenv.Command('base/traceflags.hh', flags,
8515522Snate@binkert.org            MakeAction(traceFlagsHH, Transform("TRACING", 0)))
8525522Snate@binkert.orgenv.Command('base/traceflags.cc', flags, 
8535522Snate@binkert.org            MakeAction(traceFlagsCC, Transform("TRACING", 0)))
8545522Snate@binkert.orgSource('base/traceflags.cc')
8555522Snate@binkert.org
8565522Snate@binkert.org# Embed python files.  All .py files that have been indicated by a
8575522Snate@binkert.org# PySource() call in a SConscript need to be embedded into the M5
8585522Snate@binkert.org# library.  To do that, we compile the file to byte code, marshal the
8595522Snate@binkert.org# byte code, compress it, and then generate a c++ file that
8605522Snate@binkert.org# inserts the result into an array.
8615522Snate@binkert.orgdef embedPyFile(target, source, env):
8625522Snate@binkert.org    def c_str(string):
8635522Snate@binkert.org        if string is None:
8645522Snate@binkert.org            return "0"
8655522Snate@binkert.org        return '"%s"' % string
8665522Snate@binkert.org
8674382Sbinkertn@umich.edu    '''Action function to compile a .py into a code object, marshal
8685522Snate@binkert.org    it, compress it, and stick it into an asm file so the code appears
8695522Snate@binkert.org    as just bytes with a label in the data section'''
8704382Sbinkertn@umich.edu
8715522Snate@binkert.org    src = file(str(source[0]), 'r').read()
8725522Snate@binkert.org
8735522Snate@binkert.org    pysource = PySource.tnodes[source[0]]
8745522Snate@binkert.org    compiled = compile(src, pysource.abspath, 'exec')
8755522Snate@binkert.org    marshalled = marshal.dumps(compiled)
8765522Snate@binkert.org    compressed = zlib.compress(marshalled)
8775522Snate@binkert.org    data = compressed
8785522Snate@binkert.org    sym = pysource.symname
8795522Snate@binkert.org
8805522Snate@binkert.org    code = code_formatter()
8814382Sbinkertn@umich.edu    code('''\
8825522Snate@binkert.org#include "sim/init.hh"
8835522Snate@binkert.org
8845522Snate@binkert.orgnamespace {
8855522Snate@binkert.org
8865522Snate@binkert.orgconst char data_${sym}[] = {
8875522Snate@binkert.org''')
8885522Snate@binkert.org    code.indent()
8895522Snate@binkert.org    step = 16
8905522Snate@binkert.org    for i in xrange(0, len(data), step):
8915522Snate@binkert.org        x = array.array('B', data[i:i+step])
8925522Snate@binkert.org        code(''.join('%d,' % d for d in x))
8935522Snate@binkert.org    code.dedent()
8945522Snate@binkert.org    
8955522Snate@binkert.org    code('''};
8965522Snate@binkert.org
8975522Snate@binkert.orgEmbeddedPython embedded_${sym}(
8985522Snate@binkert.org    ${{c_str(pysource.arcname)}},
8995522Snate@binkert.org    ${{c_str(pysource.abspath)}},
9005522Snate@binkert.org    ${{c_str(pysource.modpath)}},
9015522Snate@binkert.org    data_${sym},
9025522Snate@binkert.org    ${{len(data)}},
9035522Snate@binkert.org    ${{len(marshalled)}});
9045522Snate@binkert.org
9055522Snate@binkert.org} // anonymous namespace
9065522Snate@binkert.org''')
9075522Snate@binkert.org    code.write(str(target[0]))
9085522Snate@binkert.org
9095522Snate@binkert.orgfor source in PySource.all:
9105522Snate@binkert.org    env.Command(source.cpp, source.tnode, 
9115522Snate@binkert.org                MakeAction(embedPyFile, Transform("EMBED PY")))
9125522Snate@binkert.org    Source(source.cpp)
9134382Sbinkertn@umich.edu
9144382Sbinkertn@umich.edu########################################################################
9154382Sbinkertn@umich.edu#
9164382Sbinkertn@umich.edu# Define binaries.  Each different build type (debug, opt, etc.) gets
9174382Sbinkertn@umich.edu# a slightly different build environment.
9184382Sbinkertn@umich.edu#
9194382Sbinkertn@umich.edu
9204382Sbinkertn@umich.edu# List of constructed environments to pass back to SConstruct
9214382Sbinkertn@umich.eduenvList = []
9224382Sbinkertn@umich.edu
923955SN/Adate_source = Source('base/date.cc', skip_lib=True)
924955SN/A
925955SN/A# Function to create a new build environment as clone of current
926955SN/A# environment 'env' with modified object suffix and optional stripped
9271108SN/A# binary.  Additional keyword arguments are appended to corresponding
9285601Snate@binkert.org# build environment vars.
9295601Snate@binkert.orgdef makeEnv(label, objsfx, strip = False, **kwargs):
9305601Snate@binkert.org    # SCons doesn't know to append a library suffix when there is a '.' in the
9315601Snate@binkert.org    # name.  Use '_' instead.
9325601Snate@binkert.org    libname = 'm5_' + label
9335601Snate@binkert.org    exename = 'm5.' + label
9345601Snate@binkert.org
9355456Ssaidi@eecs.umich.edu    new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's')
936955SN/A    new_env.Label = label
937955SN/A    new_env.Append(**kwargs)
9385601Snate@binkert.org
9395456Ssaidi@eecs.umich.edu    swig_env = new_env.Clone()
940955SN/A    swig_env.Append(CCFLAGS='-Werror')
9415798Snate@binkert.org    if env['GCC']:
942955SN/A        swig_env.Append(CCFLAGS='-Wno-uninitialized')
943955SN/A        swig_env.Append(CCFLAGS='-Wno-sign-compare')
9442655Sstever@eecs.umich.edu        swig_env.Append(CCFLAGS='-Wno-parentheses')
9452655Sstever@eecs.umich.edu
9462655Sstever@eecs.umich.edu    werror_env = new_env.Clone()
9472655Sstever@eecs.umich.edu    werror_env.Append(CCFLAGS='-Werror')
9482655Sstever@eecs.umich.edu
9495601Snate@binkert.org    def make_obj(source, static, extra_deps = None):
9505601Snate@binkert.org        '''This function adds the specified source to the correct
9515601Snate@binkert.org        build environment, and returns the corresponding SCons Object
9525601Snate@binkert.org        nodes'''
9535522Snate@binkert.org
9545863Snate@binkert.org        if source.swig:
9555601Snate@binkert.org            env = swig_env
9565601Snate@binkert.org        elif source.Werror:
9575601Snate@binkert.org            env = werror_env
9585863Snate@binkert.org        else:
9595559Snate@binkert.org            env = new_env
9605559Snate@binkert.org
9615559Snate@binkert.org        if static:
9625559Snate@binkert.org            obj = env.StaticObject(source.tnode)
9635601Snate@binkert.org        else:
9645601Snate@binkert.org            obj = env.SharedObject(source.tnode)
9655601Snate@binkert.org
9665601Snate@binkert.org        if extra_deps:
9675601Snate@binkert.org            env.Depends(obj, extra_deps)
9685554Snate@binkert.org
9695522Snate@binkert.org        return obj
9705522Snate@binkert.org
9715797Snate@binkert.org    static_objs = [ make_obj(s, True) for s in Source.get(skip_lib=False)]
9725797Snate@binkert.org    shared_objs = [ make_obj(s, False) for s in Source.get(skip_lib=False)]
9735522Snate@binkert.org
9745584Snate@binkert.org    static_date = make_obj(date_source, static=True, extra_deps=static_objs)
9755601Snate@binkert.org    static_objs.append(static_date)
9765862Snate@binkert.org    
9775584Snate@binkert.org    shared_date = make_obj(date_source, static=False, extra_deps=shared_objs)
9785601Snate@binkert.org    shared_objs.append(shared_date)
9795862Snate@binkert.org
9802655Sstever@eecs.umich.edu    # First make a library of everything but main() so other programs can
9815601Snate@binkert.org    # link against m5.
9825601Snate@binkert.org    static_lib = new_env.StaticLibrary(libname, static_objs)
9834007Ssaidi@eecs.umich.edu    shared_lib = new_env.SharedLibrary(libname, shared_objs)
9844596Sbinkertn@umich.edu
9854007Ssaidi@eecs.umich.edu    for target, sources in unit_tests:
9864596Sbinkertn@umich.edu        objs = [ make_obj(s, static=True) for s in sources ]
9875601Snate@binkert.org        new_env.Program("unittest/%s.%s" % (target, label), objs + static_objs)
9885522Snate@binkert.org
9895601Snate@binkert.org    # Now link a stub with main() and the static library.
9905522Snate@binkert.org    bin_objs = [make_obj(s, True) for s in Source.get(bin_only=True) ]
9915601Snate@binkert.org    progname = exename
9925601Snate@binkert.org    if strip:
9932655Sstever@eecs.umich.edu        progname += '.unstripped'
994955SN/A
9953918Ssaidi@eecs.umich.edu    targets = new_env.Program(progname, bin_objs + static_objs)
9963918Ssaidi@eecs.umich.edu
9973918Ssaidi@eecs.umich.edu    if strip:
9983918Ssaidi@eecs.umich.edu        if sys.platform == 'sunos5':
9993918Ssaidi@eecs.umich.edu            cmd = 'cp $SOURCE $TARGET; strip $TARGET'
10003918Ssaidi@eecs.umich.edu        else:
10013918Ssaidi@eecs.umich.edu            cmd = 'strip $SOURCE -o $TARGET'
10023918Ssaidi@eecs.umich.edu        targets = new_env.Command(exename, progname,
10033918Ssaidi@eecs.umich.edu                    MakeAction(cmd, Transform("STRIP")))
10043918Ssaidi@eecs.umich.edu            
10053918Ssaidi@eecs.umich.edu    new_env.M5Binary = targets[0]
10063918Ssaidi@eecs.umich.edu    envList.append(new_env)
10073918Ssaidi@eecs.umich.edu
10083918Ssaidi@eecs.umich.edu# Debug binary
10093940Ssaidi@eecs.umich.educcflags = {}
10103940Ssaidi@eecs.umich.eduif env['GCC']:
10113940Ssaidi@eecs.umich.edu    if sys.platform == 'sunos5':
10123942Ssaidi@eecs.umich.edu        ccflags['debug'] = '-gstabs+'
10133940Ssaidi@eecs.umich.edu    else:
10143515Ssaidi@eecs.umich.edu        ccflags['debug'] = '-ggdb3'
10153918Ssaidi@eecs.umich.edu    ccflags['opt'] = '-g -O3'
10164762Snate@binkert.org    ccflags['fast'] = '-O3'
10173515Ssaidi@eecs.umich.edu    ccflags['prof'] = '-O3 -g -pg'
10182655Sstever@eecs.umich.eduelif env['SUNCC']:
10193918Ssaidi@eecs.umich.edu    ccflags['debug'] = '-g0'
10203619Sbinkertn@umich.edu    ccflags['opt'] = '-g -O'
1021955SN/A    ccflags['fast'] = '-fast'
1022955SN/A    ccflags['prof'] = '-fast -g -pg'
10232655Sstever@eecs.umich.eduelif env['ICC']:
10243918Ssaidi@eecs.umich.edu    ccflags['debug'] = '-g -O0'
10253619Sbinkertn@umich.edu    ccflags['opt'] = '-g -O'
1026955SN/A    ccflags['fast'] = '-fast'
1027955SN/A    ccflags['prof'] = '-fast -g -pg'
10282655Sstever@eecs.umich.eduelse:
10293918Ssaidi@eecs.umich.edu    print 'Unknown compiler, please fix compiler options'
10303619Sbinkertn@umich.edu    Exit(1)
1031955SN/A
1032955SN/AmakeEnv('debug', '.do',
10332655Sstever@eecs.umich.edu        CCFLAGS = Split(ccflags['debug']),
10343918Ssaidi@eecs.umich.edu        CPPDEFINES = ['DEBUG', 'TRACING_ON=1'])
10353683Sstever@eecs.umich.edu
10362655Sstever@eecs.umich.edu# Optimized binary
10371869SN/AmakeEnv('opt', '.o',
10381869SN/A        CCFLAGS = Split(ccflags['opt']),
1039        CPPDEFINES = ['TRACING_ON=1'])
1040
1041# "Fast" binary
1042makeEnv('fast', '.fo', strip = True,
1043        CCFLAGS = Split(ccflags['fast']),
1044        CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'])
1045
1046# Profiled binary
1047makeEnv('prof', '.po',
1048        CCFLAGS = Split(ccflags['prof']),
1049        CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
1050        LINKFLAGS = '-pg')
1051
1052Return('envList')
1053