SConscript revision 5863
1955SN/A# -*- mode:python -*-
2955SN/A
31762SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan
4955SN/A# All rights reserved.
5955SN/A#
6955SN/A# Redistribution and use in source and binary forms, with or without
7955SN/A# modification, are permitted provided that the following conditions are
8955SN/A# met: redistributions of source code must retain the above copyright
9955SN/A# notice, this list of conditions and the following disclaimer;
10955SN/A# redistributions in binary form must reproduce the above copyright
11955SN/A# notice, this list of conditions and the following disclaimer in the
12955SN/A# documentation and/or other materials provided with the distribution;
13955SN/A# neither the name of the copyright holders nor the names of its
14955SN/A# contributors may be used to endorse or promote products derived from
15955SN/A# this software without specific prior written permission.
16955SN/A#
17955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282665Ssaidi@eecs.umich.edu#
294762Snate@binkert.org# Authors: Nathan Binkert
30955SN/A
315522Snate@binkert.orgimport array
326143Snate@binkert.orgimport imp
334762Snate@binkert.orgimport marshal
345522Snate@binkert.orgimport os
35955SN/Aimport re
365522Snate@binkert.orgimport sys
37955SN/Aimport zlib
385522Snate@binkert.org
394202Sbinkertn@umich.edufrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath
405742Snate@binkert.org
41955SN/Aimport SCons
424381Sbinkertn@umich.edu
434381Sbinkertn@umich.edu# This file defines how to build a particular configuration of M5
448334Snate@binkert.org# based on variable settings in the 'env' build environment.
45955SN/A
46955SN/AImport('*')
474202Sbinkertn@umich.edu
48955SN/A# Children need to see the environment
494382Sbinkertn@umich.eduExport('env')
504382Sbinkertn@umich.edu
514382Sbinkertn@umich.edubuild_env = dict([(opt, env[opt]) for opt in env.ExportVariables])
526654Snate@binkert.org
535517Snate@binkert.orgdef sort_list(_list):
548614Sgblack@eecs.umich.edu    """return a sorted copy of '_list'"""
557674Snate@binkert.org    if isinstance(_list, list):
566143Snate@binkert.org        _list = _list[:]
576143Snate@binkert.org    else:
586143Snate@binkert.org        _list = list(_list)
598233Snate@binkert.org    _list.sort()
608233Snate@binkert.org    return _list
618233Snate@binkert.org
628233Snate@binkert.orgclass PySourceFile(object):
638233Snate@binkert.org    invalid_sym_char = re.compile('[^A-z0-9_]')
648334Snate@binkert.org    def __init__(self, package, tnode):
658334Snate@binkert.org        snode = tnode.srcnode()
6610453SAndrew.Bardsley@arm.com        filename = str(tnode)
6710453SAndrew.Bardsley@arm.com        pyname = basename(filename)
688233Snate@binkert.org        assert pyname.endswith('.py')
698233Snate@binkert.org        name = pyname[:-3]
708233Snate@binkert.org        if package:
718233Snate@binkert.org            path = package.split('.')
728233Snate@binkert.org        else:
738233Snate@binkert.org            path = []
746143Snate@binkert.org
758233Snate@binkert.org        modpath = path[:]
768233Snate@binkert.org        if name != '__init__':
778233Snate@binkert.org            modpath += [name]
786143Snate@binkert.org        modpath = '.'.join(modpath)
796143Snate@binkert.org
806143Snate@binkert.org        arcpath = path + [ pyname ]
816143Snate@binkert.org        arcname = joinpath(*arcpath)
828233Snate@binkert.org
838233Snate@binkert.org        debugname = snode.abspath
848233Snate@binkert.org        if not exists(debugname):
856143Snate@binkert.org            debugname = tnode.abspath
868233Snate@binkert.org
878233Snate@binkert.org        self.tnode = tnode
888233Snate@binkert.org        self.snode = snode
898233Snate@binkert.org        self.pyname = pyname
906143Snate@binkert.org        self.package = package
916143Snate@binkert.org        self.modpath = modpath
926143Snate@binkert.org        self.arcname = arcname
934762Snate@binkert.org        self.debugname = debugname
946143Snate@binkert.org        self.compiled = File(filename + 'c')
958233Snate@binkert.org        self.assembly = File(filename + '.s')
968233Snate@binkert.org        self.symname = "PyEMB_" + self.invalid_sym_char.sub('_', modpath)
978233Snate@binkert.org        
988233Snate@binkert.org
998233Snate@binkert.org########################################################################
1006143Snate@binkert.org# Code for adding source files of various types
1018233Snate@binkert.org#
1028233Snate@binkert.orgcc_lib_sources = []
1038233Snate@binkert.orgdef Source(source):
1048233Snate@binkert.org    '''Add a source file to the libm5 build'''
1056143Snate@binkert.org    if not isinstance(source, SCons.Node.FS.File):
1066143Snate@binkert.org        source = File(source)
1076143Snate@binkert.org
1086143Snate@binkert.org    cc_lib_sources.append(source)
1096143Snate@binkert.org
1106143Snate@binkert.orgcc_bin_sources = []
1116143Snate@binkert.orgdef BinSource(source):
1126143Snate@binkert.org    '''Add a source file to the m5 binary build'''
1136143Snate@binkert.org    if not isinstance(source, SCons.Node.FS.File):
1147065Snate@binkert.org        source = File(source)
1156143Snate@binkert.org
1168233Snate@binkert.org    cc_bin_sources.append(source)
1178233Snate@binkert.org
1188233Snate@binkert.orgpy_sources = []
1198233Snate@binkert.orgdef PySource(package, source):
1208233Snate@binkert.org    '''Add a python source file to the named package'''
1218233Snate@binkert.org    if not isinstance(source, SCons.Node.FS.File):
1228233Snate@binkert.org        source = File(source)
1238233Snate@binkert.org
1248233Snate@binkert.org    source = PySourceFile(package, source)
1258233Snate@binkert.org    py_sources.append(source)
1268233Snate@binkert.org
1278233Snate@binkert.orgsim_objects_fixed = False
1288233Snate@binkert.orgsim_object_modfiles = set()
1298233Snate@binkert.orgdef SimObject(source):
1308233Snate@binkert.org    '''Add a SimObject python file as a python source object and add
1318233Snate@binkert.org    it to a list of sim object modules'''
1328233Snate@binkert.org
1338233Snate@binkert.org    if sim_objects_fixed:
1348233Snate@binkert.org        raise AttributeError, "Too late to call SimObject now."
1358233Snate@binkert.org
1368233Snate@binkert.org    if not isinstance(source, SCons.Node.FS.File):
1378233Snate@binkert.org        source = File(source)
1388233Snate@binkert.org
1398233Snate@binkert.org    PySource('m5.objects', source)
1408233Snate@binkert.org    modfile = basename(str(source))
1418233Snate@binkert.org    assert modfile.endswith('.py')
1428233Snate@binkert.org    modname = modfile[:-3]
1438233Snate@binkert.org    sim_object_modfiles.add(modname)
1448233Snate@binkert.org
1458233Snate@binkert.orgswig_sources = []
1468233Snate@binkert.orgdef SwigSource(package, source):
1476143Snate@binkert.org    '''Add a swig file to build'''
1486143Snate@binkert.org    if not isinstance(source, SCons.Node.FS.File):
1496143Snate@binkert.org        source = File(source)
1506143Snate@binkert.org    val = source,package
1516143Snate@binkert.org    swig_sources.append(val)
1526143Snate@binkert.org
1539982Satgutier@umich.eduunit_tests = []
15410196SCurtis.Dunham@arm.comdef UnitTest(target, sources):
15510196SCurtis.Dunham@arm.com    if not isinstance(sources, (list, tuple)):
15610196SCurtis.Dunham@arm.com        sources = [ sources ]
15710196SCurtis.Dunham@arm.com    
15810196SCurtis.Dunham@arm.com    srcs = []
15910196SCurtis.Dunham@arm.com    for source in sources:
16010196SCurtis.Dunham@arm.com        if not isinstance(source, SCons.Node.FS.File):
16110196SCurtis.Dunham@arm.com            source = File(source)
1626143Snate@binkert.org        srcs.append(source)
1636143Snate@binkert.org            
1648945Ssteve.reinhardt@amd.com    unit_tests.append((target, srcs))
1658233Snate@binkert.org
1668233Snate@binkert.org# Children should have access
1676143Snate@binkert.orgExport('Source')
1688945Ssteve.reinhardt@amd.comExport('BinSource')
1696143Snate@binkert.orgExport('PySource')
1706143Snate@binkert.orgExport('SimObject')
1716143Snate@binkert.orgExport('SwigSource')
1726143Snate@binkert.orgExport('UnitTest')
1735522Snate@binkert.org
1746143Snate@binkert.org########################################################################
1756143Snate@binkert.org#
1766143Snate@binkert.org# Trace Flags
1779982Satgutier@umich.edu#
1788233Snate@binkert.orgtrace_flags = {}
1798233Snate@binkert.orgdef TraceFlag(name, desc=None):
1808233Snate@binkert.org    if name in trace_flags:
1816143Snate@binkert.org        raise AttributeError, "Flag %s already specified" % name
1826143Snate@binkert.org    trace_flags[name] = (name, (), desc)
1836143Snate@binkert.org
1846143Snate@binkert.orgdef CompoundFlag(name, flags, desc=None):
1855522Snate@binkert.org    if name in trace_flags:
1865522Snate@binkert.org        raise AttributeError, "Flag %s already specified" % name
1875522Snate@binkert.org
1885522Snate@binkert.org    compound = tuple(flags)
1895604Snate@binkert.org    for flag in compound:
1905604Snate@binkert.org        if flag not in trace_flags:
1916143Snate@binkert.org            raise AttributeError, "Trace flag %s not found" % flag
1926143Snate@binkert.org        if trace_flags[flag][1]:
1934762Snate@binkert.org            raise AttributeError, \
1944762Snate@binkert.org                "Compound flag can't point to another compound flag"
1956143Snate@binkert.org
1966727Ssteve.reinhardt@amd.com    trace_flags[name] = (name, compound, desc)
1976727Ssteve.reinhardt@amd.com
1986727Ssteve.reinhardt@amd.comExport('TraceFlag')
1994762Snate@binkert.orgExport('CompoundFlag')
2006143Snate@binkert.org
2016143Snate@binkert.org########################################################################
2026143Snate@binkert.org#
2036143Snate@binkert.org# Set some compiler variables
2046727Ssteve.reinhardt@amd.com#
2056143Snate@binkert.org
2067674Snate@binkert.org# Include file paths are rooted in this directory.  SCons will
2077674Snate@binkert.org# automatically expand '.' to refer to both the source directory and
2085604Snate@binkert.org# the corresponding build directory to pick up generated include
2096143Snate@binkert.org# files.
2106143Snate@binkert.orgenv.Append(CPPPATH=Dir('.'))
2116143Snate@binkert.org
2124762Snate@binkert.orgfor extra_dir in extras_dir_list:
2136143Snate@binkert.org    env.Append(CPPPATH=Dir(extra_dir))
2144762Snate@binkert.org
2154762Snate@binkert.org# Add a flag defining what THE_ISA should be for all compilation
2164762Snate@binkert.orgenv.Append(CPPDEFINES=[('THE_ISA','%s_ISA' % env['TARGET_ISA'].upper())])
2176143Snate@binkert.org
2186143Snate@binkert.org# Workaround for bug in SCons version > 0.97d20071212
2194762Snate@binkert.org# Scons bug id: 2006 M5 Bug id: 308 
2208233Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True):
2218233Snate@binkert.org    Dir(root[len(base_dir) + 1:])
2228233Snate@binkert.org
2238233Snate@binkert.org########################################################################
2246143Snate@binkert.org#
2256143Snate@binkert.org# Walk the tree and execute all SConscripts in subdirectories
2264762Snate@binkert.org#
2276143Snate@binkert.org
2284762Snate@binkert.orghere = Dir('.').srcnode().abspath
2296143Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True):
2304762Snate@binkert.org    if root == here:
2316143Snate@binkert.org        # we don't want to recurse back into this SConscript
2328233Snate@binkert.org        continue
2338233Snate@binkert.org
23410453SAndrew.Bardsley@arm.com    if 'SConscript' in files:
2356143Snate@binkert.org        build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:])
2366143Snate@binkert.org        SConscript(joinpath(root, 'SConscript'), build_dir=build_dir)
2376143Snate@binkert.org
2386143Snate@binkert.orgfor extra_dir in extras_dir_list:
2396143Snate@binkert.org    prefix_len = len(dirname(extra_dir)) + 1
2406143Snate@binkert.org    for root, dirs, files in os.walk(extra_dir, topdown=True):
2416143Snate@binkert.org        if 'SConscript' in files:
2426143Snate@binkert.org            build_dir = joinpath(env['BUILDDIR'], root[prefix_len:])
24310453SAndrew.Bardsley@arm.com            SConscript(joinpath(root, 'SConscript'), build_dir=build_dir)
24410453SAndrew.Bardsley@arm.com
245955SN/Afor opt in env.ExportVariables:
2469396Sandreas.hansson@arm.com    env.ConfigFile(opt)
2479396Sandreas.hansson@arm.com
2489396Sandreas.hansson@arm.com########################################################################
2499396Sandreas.hansson@arm.com#
2509396Sandreas.hansson@arm.com# Prevent any SimObjects from being added after this point, they
2519396Sandreas.hansson@arm.com# should all have been added in the SConscripts above
2529396Sandreas.hansson@arm.com#
2539396Sandreas.hansson@arm.comclass DictImporter(object):
2549396Sandreas.hansson@arm.com    '''This importer takes a dictionary of arbitrary module names that
2559396Sandreas.hansson@arm.com    map to arbitrary filenames.'''
2569396Sandreas.hansson@arm.com    def __init__(self, modules):
2579396Sandreas.hansson@arm.com        self.modules = modules
2589396Sandreas.hansson@arm.com        self.installed = set()
2599930Sandreas.hansson@arm.com
2609930Sandreas.hansson@arm.com    def __del__(self):
2619396Sandreas.hansson@arm.com        self.unload()
2628235Snate@binkert.org
2638235Snate@binkert.org    def unload(self):
2646143Snate@binkert.org        import sys
2658235Snate@binkert.org        for module in self.installed:
2669003SAli.Saidi@ARM.com            del sys.modules[module]
2678235Snate@binkert.org        self.installed = set()
2688235Snate@binkert.org
2698235Snate@binkert.org    def find_module(self, fullname, path):
2708235Snate@binkert.org        if fullname == 'defines':
2718235Snate@binkert.org            return self
2728235Snate@binkert.org
2738235Snate@binkert.org        if fullname == 'm5.objects':
2748235Snate@binkert.org            return self
2758235Snate@binkert.org
2768235Snate@binkert.org        if fullname.startswith('m5.internal'):
2778235Snate@binkert.org            return None
2788235Snate@binkert.org
2798235Snate@binkert.org        if fullname in self.modules and exists(self.modules[fullname]):
2808235Snate@binkert.org            return self
2819003SAli.Saidi@ARM.com
2828235Snate@binkert.org        return None
2835584Snate@binkert.org
2844382Sbinkertn@umich.edu    def load_module(self, fullname):
2854202Sbinkertn@umich.edu        mod = imp.new_module(fullname)
2864382Sbinkertn@umich.edu        sys.modules[fullname] = mod
2874382Sbinkertn@umich.edu        self.installed.add(fullname)
2884382Sbinkertn@umich.edu
2899396Sandreas.hansson@arm.com        mod.__loader__ = self
2905584Snate@binkert.org        if fullname == 'm5.objects':
2914382Sbinkertn@umich.edu            mod.__path__ = fullname.split('.')
2924382Sbinkertn@umich.edu            return mod
2934382Sbinkertn@umich.edu
2948232Snate@binkert.org        if fullname == 'defines':
2955192Ssaidi@eecs.umich.edu            mod.__dict__['buildEnv'] = build_env
2968232Snate@binkert.org            return mod
2978232Snate@binkert.org
2988232Snate@binkert.org        srcfile = self.modules[fullname]
2995192Ssaidi@eecs.umich.edu        if basename(srcfile) == '__init__.py':
3008232Snate@binkert.org            mod.__path__ = fullname.split('.')
3015192Ssaidi@eecs.umich.edu        mod.__file__ = srcfile
3025799Snate@binkert.org
3038232Snate@binkert.org        exec file(srcfile, 'r') in mod.__dict__
3045192Ssaidi@eecs.umich.edu
3055192Ssaidi@eecs.umich.edu        return mod
3065192Ssaidi@eecs.umich.edu
3078232Snate@binkert.orgpy_modules = {}
3085192Ssaidi@eecs.umich.edufor source in py_sources:
3098232Snate@binkert.org    py_modules[source.modpath] = source.snode.abspath
3105192Ssaidi@eecs.umich.edu
3115192Ssaidi@eecs.umich.edu# install the python importer so we can grab stuff from the source
3125192Ssaidi@eecs.umich.edu# tree itself.  We can't have SimObjects added after this point or
3135192Ssaidi@eecs.umich.edu# else we won't know about them for the rest of the stuff.
3144382Sbinkertn@umich.edusim_objects_fixed = True
3154382Sbinkertn@umich.eduimporter = DictImporter(py_modules)
3164382Sbinkertn@umich.edusys.meta_path[0:0] = [ importer ]
3172667Sstever@eecs.umich.edu
3182667Sstever@eecs.umich.eduimport m5
3192667Sstever@eecs.umich.edu
3202667Sstever@eecs.umich.edu# import all sim objects so we can populate the all_objects list
3212667Sstever@eecs.umich.edu# make sure that we're working with a list, then let's sort it
3222667Sstever@eecs.umich.edusim_objects = list(sim_object_modfiles)
3235742Snate@binkert.orgsim_objects.sort()
3245742Snate@binkert.orgfor simobj in sim_objects:
3255742Snate@binkert.org    exec('from m5.objects import %s' % simobj)
3265793Snate@binkert.org
3278334Snate@binkert.org# we need to unload all of the currently imported modules so that they
3285793Snate@binkert.org# will be re-imported the next time the sconscript is run
3295793Snate@binkert.orgimporter.unload()
3305793Snate@binkert.orgsys.meta_path.remove(importer)
3314382Sbinkertn@umich.edu
3324762Snate@binkert.orgsim_objects = m5.SimObject.allClasses
3335344Sstever@gmail.comall_enums = m5.params.allEnums
3344382Sbinkertn@umich.edu
3355341Sstever@gmail.comall_params = {}
3365742Snate@binkert.orgfor name,obj in sim_objects.iteritems():
3375742Snate@binkert.org    for param in obj._params.local.values():
3385742Snate@binkert.org        if not hasattr(param, 'swig_decl'):
3395742Snate@binkert.org            continue
3405742Snate@binkert.org        pname = param.ptype_str
3414762Snate@binkert.org        if pname not in all_params:
3425742Snate@binkert.org            all_params[pname] = param
3435742Snate@binkert.org
3447722Sgblack@eecs.umich.edu########################################################################
3455742Snate@binkert.org#
3465742Snate@binkert.org# calculate extra dependencies
3475742Snate@binkert.org#
3489930Sandreas.hansson@arm.commodule_depends = ["m5", "m5.SimObject", "m5.params"]
3499930Sandreas.hansson@arm.comdepends = [ File(py_modules[dep]) for dep in module_depends ]
3509930Sandreas.hansson@arm.com
3519930Sandreas.hansson@arm.com########################################################################
3529930Sandreas.hansson@arm.com#
3535742Snate@binkert.org# Commands for the basic automatically generated python files
3548242Sbradley.danofsky@amd.com#
3558242Sbradley.danofsky@amd.com
3568242Sbradley.danofsky@amd.com# Generate Python file containing a dict specifying the current
3578242Sbradley.danofsky@amd.com# build_env flags.
3585341Sstever@gmail.comdef makeDefinesPyFile(target, source, env):
3595742Snate@binkert.org    f = file(str(target[0]), 'w')
3607722Sgblack@eecs.umich.edu    build_env, hg_info = [ x.get_contents() for x in source ]
3614773Snate@binkert.org    print >>f, "buildEnv = %s" % build_env
3626108Snate@binkert.org    print >>f, "hgRev = '%s'" % hg_info
3631858SN/A    f.close()
3641085SN/A
3656658Snate@binkert.orgdefines_info = [ Value(build_env), Value(env['HG_INFO']) ]
3666658Snate@binkert.org# Generate a file with all of the compile options in it
3677673Snate@binkert.orgenv.Command('python/m5/defines.py', defines_info, makeDefinesPyFile)
3686658Snate@binkert.orgPySource('m5', 'python/m5/defines.py')
3696658Snate@binkert.org
3706658Snate@binkert.org# Generate python file containing info about the M5 source code
3716658Snate@binkert.orgdef makeInfoPyFile(target, source, env):
3726658Snate@binkert.org    f = file(str(target[0]), 'w')
3736658Snate@binkert.org    for src in source:
3746658Snate@binkert.org        data = ''.join(file(src.srcnode().abspath, 'r').xreadlines())
3757673Snate@binkert.org        print >>f, "%s = %s" % (src, repr(data))
3767673Snate@binkert.org    f.close()
3777673Snate@binkert.org
3787673Snate@binkert.org# Generate a file that wraps the basic top level files
3797673Snate@binkert.orgenv.Command('python/m5/info.py',
3807673Snate@binkert.org            [ '#/AUTHORS', '#/LICENSE', '#/README', '#/RELEASE_NOTES' ],
3817673Snate@binkert.org            makeInfoPyFile)
38210467Sandreas.hansson@arm.comPySource('m5', 'python/m5/info.py')
3836658Snate@binkert.org
3847673Snate@binkert.org# Generate the __init__.py file for m5.objects
38510467Sandreas.hansson@arm.comdef makeObjectsInitFile(target, source, env):
38610467Sandreas.hansson@arm.com    f = file(str(target[0]), 'w')
38710467Sandreas.hansson@arm.com    print >>f, 'from params import *'
38810467Sandreas.hansson@arm.com    print >>f, 'from m5.SimObject import *'
38910467Sandreas.hansson@arm.com    for module in source:
39010467Sandreas.hansson@arm.com        print >>f, 'from %s import *' % module.get_contents()
39110467Sandreas.hansson@arm.com    f.close()
39210467Sandreas.hansson@arm.com
39310467Sandreas.hansson@arm.com# Generate an __init__.py file for the objects package
39410467Sandreas.hansson@arm.comenv.Command('python/m5/objects/__init__.py',
39510467Sandreas.hansson@arm.com            [ Value(o) for o in sort_list(sim_object_modfiles) ],
3967673Snate@binkert.org            makeObjectsInitFile)
3977673Snate@binkert.orgPySource('m5.objects', 'python/m5/objects/__init__.py')
3987673Snate@binkert.org
3997673Snate@binkert.org########################################################################
4007673Snate@binkert.org#
4019048SAli.Saidi@ARM.com# Create all of the SimObject param headers and enum headers
4027673Snate@binkert.org#
4037673Snate@binkert.org
4047673Snate@binkert.orgdef createSimObjectParam(target, source, env):
4057673Snate@binkert.org    assert len(target) == 1 and len(source) == 1
4066658Snate@binkert.org
4077756SAli.Saidi@ARM.com    hh_file = file(target[0].abspath, 'w')
4087816Ssteve.reinhardt@amd.com    name = str(source[0].get_contents())
4096658Snate@binkert.org    obj = sim_objects[name]
4104382Sbinkertn@umich.edu
4114382Sbinkertn@umich.edu    print >>hh_file, obj.cxx_decl()
4124762Snate@binkert.org
4134762Snate@binkert.orgdef createSwigParam(target, source, env):
4144762Snate@binkert.org    assert len(target) == 1 and len(source) == 1
4156654Snate@binkert.org
4166654Snate@binkert.org    i_file = file(target[0].abspath, 'w')
4175517Snate@binkert.org    name = str(source[0].get_contents())
4185517Snate@binkert.org    param = all_params[name]
4195517Snate@binkert.org
4205517Snate@binkert.org    for line in param.swig_decl():
4215517Snate@binkert.org        print >>i_file, line
4225517Snate@binkert.org
4235517Snate@binkert.orgdef createEnumStrings(target, source, env):
4245517Snate@binkert.org    assert len(target) == 1 and len(source) == 1
4255517Snate@binkert.org
4265517Snate@binkert.org    cc_file = file(target[0].abspath, 'w')
4275517Snate@binkert.org    name = str(source[0].get_contents())
4285517Snate@binkert.org    obj = all_enums[name]
4295517Snate@binkert.org
4305517Snate@binkert.org    print >>cc_file, obj.cxx_def()
4315517Snate@binkert.org    cc_file.close()
4325517Snate@binkert.org
4335517Snate@binkert.orgdef createEnumParam(target, source, env):
4346654Snate@binkert.org    assert len(target) == 1 and len(source) == 1
4355517Snate@binkert.org
4365517Snate@binkert.org    hh_file = file(target[0].abspath, 'w')
4375517Snate@binkert.org    name = str(source[0].get_contents())
4385517Snate@binkert.org    obj = all_enums[name]
4395517Snate@binkert.org
4405517Snate@binkert.org    print >>hh_file, obj.cxx_decl()
4415517Snate@binkert.org
4425517Snate@binkert.org# Generate all of the SimObject param struct header files
4436143Snate@binkert.orgparams_hh_files = []
4446654Snate@binkert.orgfor name,simobj in sim_objects.iteritems():
4455517Snate@binkert.org    extra_deps = [ File(py_modules[simobj.__module__]) ]
4465517Snate@binkert.org
4475517Snate@binkert.org    hh_file = File('params/%s.hh' % name)
4485517Snate@binkert.org    params_hh_files.append(hh_file)
4495517Snate@binkert.org    env.Command(hh_file, Value(name), createSimObjectParam)
4505517Snate@binkert.org    env.Depends(hh_file, depends + extra_deps)
4515517Snate@binkert.org
4525517Snate@binkert.org# Generate any parameter header files needed
4535517Snate@binkert.orgparams_i_files = []
4545517Snate@binkert.orgfor name,param in all_params.iteritems():
4555517Snate@binkert.org    if isinstance(param, m5.params.VectorParamDesc):
4565517Snate@binkert.org        ext = 'vptype'
4575517Snate@binkert.org    else:
4585517Snate@binkert.org        ext = 'ptype'
4596654Snate@binkert.org
4606654Snate@binkert.org    i_file = File('params/%s_%s.i' % (name, ext))
4615517Snate@binkert.org    params_i_files.append(i_file)
4625517Snate@binkert.org    env.Command(i_file, Value(name), createSwigParam)
4636143Snate@binkert.org    env.Depends(i_file, depends)
4646143Snate@binkert.org
4656143Snate@binkert.org# Generate all enum header files
4666727Ssteve.reinhardt@amd.comfor name,enum in all_enums.iteritems():
4675517Snate@binkert.org    extra_deps = [ File(py_modules[enum.__module__]) ]
4686727Ssteve.reinhardt@amd.com
4695517Snate@binkert.org    cc_file = File('enums/%s.cc' % name)
4705517Snate@binkert.org    env.Command(cc_file, Value(name), createEnumStrings)
4715517Snate@binkert.org    env.Depends(cc_file, depends + extra_deps)
4726654Snate@binkert.org    Source(cc_file)
4736654Snate@binkert.org
4747673Snate@binkert.org    hh_file = File('enums/%s.hh' % name)
4756654Snate@binkert.org    env.Command(hh_file, Value(name), createEnumParam)
4766654Snate@binkert.org    env.Depends(hh_file, depends + extra_deps)
4776654Snate@binkert.org
4786654Snate@binkert.org# Build the big monolithic swigged params module (wraps all SimObject
4795517Snate@binkert.org# param structs and enum structs)
4805517Snate@binkert.orgdef buildParams(target, source, env):
4815517Snate@binkert.org    names = [ s.get_contents() for s in source ]
4826143Snate@binkert.org    objs = [ sim_objects[name] for name in names ]
4835517Snate@binkert.org    out = file(target[0].abspath, 'w')
4844762Snate@binkert.org
4855517Snate@binkert.org    ordered_objs = []
4865517Snate@binkert.org    obj_seen = set()
4876143Snate@binkert.org    def order_obj(obj):
4886143Snate@binkert.org        name = str(obj)
4895517Snate@binkert.org        if name in obj_seen:
4905517Snate@binkert.org            return
4915517Snate@binkert.org
4925517Snate@binkert.org        obj_seen.add(name)
4935517Snate@binkert.org        if str(obj) != 'SimObject':
4945517Snate@binkert.org            order_obj(obj.__bases__[0])
4955517Snate@binkert.org
4965517Snate@binkert.org        ordered_objs.append(obj)
4975517Snate@binkert.org
4989338SAndreas.Sandberg@arm.com    for obj in objs:
4999338SAndreas.Sandberg@arm.com        order_obj(obj)
5009338SAndreas.Sandberg@arm.com
5019338SAndreas.Sandberg@arm.com    enums = set()
5029338SAndreas.Sandberg@arm.com    predecls = []
5039338SAndreas.Sandberg@arm.com    pd_seen = set()
5048596Ssteve.reinhardt@amd.com
5058596Ssteve.reinhardt@amd.com    def add_pds(*pds):
5068596Ssteve.reinhardt@amd.com        for pd in pds:
5078596Ssteve.reinhardt@amd.com            if pd not in pd_seen:
5088596Ssteve.reinhardt@amd.com                predecls.append(pd)
5098596Ssteve.reinhardt@amd.com                pd_seen.add(pd)
5108596Ssteve.reinhardt@amd.com
5116143Snate@binkert.org    for obj in ordered_objs:
5125517Snate@binkert.org        params = obj._params.local.values()
5136654Snate@binkert.org        for param in params:
5146654Snate@binkert.org            ptype = param.ptype
5156654Snate@binkert.org            if issubclass(ptype, m5.params.Enum):
5166654Snate@binkert.org                if ptype not in enums:
5176654Snate@binkert.org                    enums.add(ptype)
5186654Snate@binkert.org            pds = param.swig_predecls()
5195517Snate@binkert.org            if isinstance(pds, (list, tuple)):
5205517Snate@binkert.org                add_pds(*pds)
5215517Snate@binkert.org            else:
5228596Ssteve.reinhardt@amd.com                add_pds(pds)
5238596Ssteve.reinhardt@amd.com
5244762Snate@binkert.org    print >>out, '%module params'
5254762Snate@binkert.org
5264762Snate@binkert.org    print >>out, '%{'
5274762Snate@binkert.org    for obj in ordered_objs:
5284762Snate@binkert.org        print >>out, '#include "params/%s.hh"' % obj
5294762Snate@binkert.org    print >>out, '%}'
5307675Snate@binkert.org
53110584Sandreas.hansson@arm.com    for pd in predecls:
5324762Snate@binkert.org        print >>out, pd
5334762Snate@binkert.org
5344762Snate@binkert.org    enums = list(enums)
5354762Snate@binkert.org    enums.sort()
5364382Sbinkertn@umich.edu    for enum in enums:
5374382Sbinkertn@umich.edu        print >>out, '%%include "enums/%s.hh"' % enum.__name__
5385517Snate@binkert.org    print >>out
5396654Snate@binkert.org
5405517Snate@binkert.org    for obj in ordered_objs:
5418126Sgblack@eecs.umich.edu        if obj.swig_objdecls:
5426654Snate@binkert.org            for decl in obj.swig_objdecls:
5437673Snate@binkert.org                print >>out, decl
5446654Snate@binkert.org            continue
5456654Snate@binkert.org
5466654Snate@binkert.org        class_path = obj.cxx_class.split('::')
5476654Snate@binkert.org        classname = class_path[-1]
5486654Snate@binkert.org        namespaces = class_path[:-1]
5496654Snate@binkert.org        namespaces.reverse()
5506654Snate@binkert.org
5516669Snate@binkert.org        code = ''
5526669Snate@binkert.org
5536669Snate@binkert.org        if namespaces:
5546669Snate@binkert.org            code += '// avoid name conflicts\n'
5556669Snate@binkert.org            sep_string = '_COLONS_'
5566669Snate@binkert.org            flat_name = sep_string.join(class_path)
5576654Snate@binkert.org            code += '%%rename(%s) %s;\n' % (flat_name, classname)
5587673Snate@binkert.org
5595517Snate@binkert.org        code += '// stop swig from creating/wrapping default ctor/dtor\n'
5608126Sgblack@eecs.umich.edu        code += '%%nodefault %s;\n' % classname
5615798Snate@binkert.org        code += 'class %s ' % classname
5627756SAli.Saidi@ARM.com        if obj._base:
5637816Ssteve.reinhardt@amd.com            code += ': public %s' % obj._base.cxx_class
5645798Snate@binkert.org        code += ' {};\n'
5655798Snate@binkert.org
5665517Snate@binkert.org        for ns in namespaces:
5675517Snate@binkert.org            new_code = 'namespace %s {\n' % ns
5687673Snate@binkert.org            new_code += code
5695517Snate@binkert.org            new_code += '}\n'
5705517Snate@binkert.org            code = new_code
5717673Snate@binkert.org
5727673Snate@binkert.org        print >>out, code
5735517Snate@binkert.org
5745798Snate@binkert.org    print >>out, '%%include "src/sim/sim_object_params.hh"' % obj
5755798Snate@binkert.org    for obj in ordered_objs:
5768333Snate@binkert.org        print >>out, '%%include "params/%s.hh"' % obj
5777816Ssteve.reinhardt@amd.com
5785798Snate@binkert.orgparams_file = File('params/params.i')
5795798Snate@binkert.orgnames = sort_list(sim_objects.keys())
5804762Snate@binkert.orgenv.Command(params_file, [ Value(v) for v in names ], buildParams)
5814762Snate@binkert.orgenv.Depends(params_file, params_hh_files + params_i_files + depends)
5824762Snate@binkert.orgSwigSource('m5.objects', params_file)
5834762Snate@binkert.org
5844762Snate@binkert.org# Build all swig modules
5858596Ssteve.reinhardt@amd.comswig_modules = []
5865517Snate@binkert.orgcc_swig_sources = []
5875517Snate@binkert.orgfor source,package in swig_sources:
5885517Snate@binkert.org    filename = str(source)
5895517Snate@binkert.org    assert filename.endswith('.i')
5905517Snate@binkert.org
5917673Snate@binkert.org    base = '.'.join(filename.split('.')[:-1])
5928596Ssteve.reinhardt@amd.com    module = basename(base)
5937673Snate@binkert.org    cc_file = base + '_wrap.cc'
5945517Snate@binkert.org    py_file = base + '.py'
59510458Sandreas.hansson@arm.com
59610458Sandreas.hansson@arm.com    env.Command([cc_file, py_file], source,
59710458Sandreas.hansson@arm.com                '$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} '
59810458Sandreas.hansson@arm.com                '-o ${TARGETS[0]} $SOURCES')
59910458Sandreas.hansson@arm.com    env.Depends(py_file, source)
60010458Sandreas.hansson@arm.com    env.Depends(cc_file, source)
60110458Sandreas.hansson@arm.com
60210458Sandreas.hansson@arm.com    swig_modules.append(Value(module))
60310458Sandreas.hansson@arm.com    cc_swig_sources.append(File(cc_file))
60410458Sandreas.hansson@arm.com    PySource(package, py_file)
60510458Sandreas.hansson@arm.com
60610458Sandreas.hansson@arm.com# Generate the main swig init file
6078596Ssteve.reinhardt@amd.comdef makeSwigInit(target, source, env):
6085517Snate@binkert.org    f = file(str(target[0]), 'w')
6095517Snate@binkert.org    print >>f, 'extern "C" {'
6105517Snate@binkert.org    for module in source:
6118596Ssteve.reinhardt@amd.com        print >>f, '    void init_%s();' % module.get_contents()
6125517Snate@binkert.org    print >>f, '}'
6137673Snate@binkert.org    print >>f, 'void initSwig() {'
6147673Snate@binkert.org    for module in source:
6157673Snate@binkert.org        print >>f, '    init_%s();' % module.get_contents()
6165517Snate@binkert.org    print >>f, '}'
6175517Snate@binkert.org    f.close()
6185517Snate@binkert.org
6195517Snate@binkert.orgenv.Command('python/swig/init.cc', swig_modules, makeSwigInit)
6205517Snate@binkert.orgSource('python/swig/init.cc')
6215517Snate@binkert.org
6225517Snate@binkert.org# Generate traceflags.py
6237673Snate@binkert.orgdef traceFlagsPy(target, source, env):
6247673Snate@binkert.org    assert(len(target) == 1)
6257673Snate@binkert.org
6265517Snate@binkert.org    f = file(str(target[0]), 'w')
6278596Ssteve.reinhardt@amd.com
6285517Snate@binkert.org    allFlags = []
6295517Snate@binkert.org    for s in source:
6305517Snate@binkert.org        val = eval(s.get_contents())
6315517Snate@binkert.org        allFlags.append(val)
6325517Snate@binkert.org
6337673Snate@binkert.org    allFlags.sort()
6347673Snate@binkert.org
6357673Snate@binkert.org    print >>f, 'basic = ['
6365517Snate@binkert.org    for flag, compound, desc in allFlags:
6378596Ssteve.reinhardt@amd.com        if not compound:
6387675Snate@binkert.org            print >>f, "    '%s'," % flag
6397675Snate@binkert.org    print >>f, "    ]"
6407675Snate@binkert.org    print >>f
6417675Snate@binkert.org
6427675Snate@binkert.org    print >>f, 'compound = ['
6437675Snate@binkert.org    print >>f, "    'All',"
6448596Ssteve.reinhardt@amd.com    for flag, compound, desc in allFlags:
6457675Snate@binkert.org        if compound:
6467675Snate@binkert.org            print >>f, "    '%s'," % flag
6478596Ssteve.reinhardt@amd.com    print >>f, "    ]"
6488596Ssteve.reinhardt@amd.com    print >>f
6498596Ssteve.reinhardt@amd.com
6508596Ssteve.reinhardt@amd.com    print >>f, "all = frozenset(basic + compound)"
6518596Ssteve.reinhardt@amd.com    print >>f
6528596Ssteve.reinhardt@amd.com
6538596Ssteve.reinhardt@amd.com    print >>f, 'compoundMap = {'
6548596Ssteve.reinhardt@amd.com    all = tuple([flag for flag,compound,desc in allFlags if not compound])
65510454SCurtis.Dunham@arm.com    print >>f, "    'All' : %s," % (all, )
65610454SCurtis.Dunham@arm.com    for flag, compound, desc in allFlags:
65710454SCurtis.Dunham@arm.com        if compound:
65810454SCurtis.Dunham@arm.com            print >>f, "    '%s' : %s," % (flag, compound)
6598596Ssteve.reinhardt@amd.com    print >>f, "    }"
6604762Snate@binkert.org    print >>f
6616143Snate@binkert.org
6626143Snate@binkert.org    print >>f, 'descriptions = {'
6636143Snate@binkert.org    print >>f, "    'All' : 'All flags',"
6644762Snate@binkert.org    for flag, compound, desc in allFlags:
6654762Snate@binkert.org        print >>f, "    '%s' : '%s'," % (flag, desc)
6664762Snate@binkert.org    print >>f, "    }"
6677756SAli.Saidi@ARM.com
6688596Ssteve.reinhardt@amd.com    f.close()
6694762Snate@binkert.org
67010454SCurtis.Dunham@arm.comdef traceFlagsCC(target, source, env):
6714762Snate@binkert.org    assert(len(target) == 1)
67210458Sandreas.hansson@arm.com
67310458Sandreas.hansson@arm.com    f = file(str(target[0]), 'w')
67410458Sandreas.hansson@arm.com
67510458Sandreas.hansson@arm.com    allFlags = []
67610458Sandreas.hansson@arm.com    for s in source:
67710458Sandreas.hansson@arm.com        val = eval(s.get_contents())
67810458Sandreas.hansson@arm.com        allFlags.append(val)
67910458Sandreas.hansson@arm.com
68010458Sandreas.hansson@arm.com    # file header
68110458Sandreas.hansson@arm.com    print >>f, '''
68210458Sandreas.hansson@arm.com/*
68310458Sandreas.hansson@arm.com * DO NOT EDIT THIS FILE! Automatically generated
68410458Sandreas.hansson@arm.com */
68510458Sandreas.hansson@arm.com
68610458Sandreas.hansson@arm.com#include "base/traceflags.hh"
68710458Sandreas.hansson@arm.com
68810458Sandreas.hansson@arm.comusing namespace Trace;
68910458Sandreas.hansson@arm.com
69010458Sandreas.hansson@arm.comconst char *Trace::flagStrings[] =
69110458Sandreas.hansson@arm.com{'''
69210458Sandreas.hansson@arm.com
69310458Sandreas.hansson@arm.com    # The string array is used by SimpleEnumParam to map the strings
69410458Sandreas.hansson@arm.com    # provided by the user to enum values.
69510458Sandreas.hansson@arm.com    for flag, compound, desc in allFlags:
69610458Sandreas.hansson@arm.com        if not compound:
69710458Sandreas.hansson@arm.com            print >>f, '    "%s",' % flag
69810458Sandreas.hansson@arm.com
69910458Sandreas.hansson@arm.com    print >>f, '    "All",'
70010458Sandreas.hansson@arm.com    for flag, compound, desc in allFlags:
70110458Sandreas.hansson@arm.com        if compound:
70210458Sandreas.hansson@arm.com            print >>f, '    "%s",' % flag
70310458Sandreas.hansson@arm.com
70410458Sandreas.hansson@arm.com    print >>f, '};'
70510458Sandreas.hansson@arm.com    print >>f
70610458Sandreas.hansson@arm.com    print >>f, 'const int Trace::numFlagStrings = %d;' % (len(allFlags) + 1)
70710458Sandreas.hansson@arm.com    print >>f
70810458Sandreas.hansson@arm.com
70910458Sandreas.hansson@arm.com    #
71010458Sandreas.hansson@arm.com    # Now define the individual compound flag arrays.  There is an array
71110458Sandreas.hansson@arm.com    # for each compound flag listing the component base flags.
71210458Sandreas.hansson@arm.com    #
71310458Sandreas.hansson@arm.com    all = tuple([flag for flag,compound,desc in allFlags if not compound])
71410458Sandreas.hansson@arm.com    print >>f, 'static const Flags AllMap[] = {'
71510458Sandreas.hansson@arm.com    for flag, compound, desc in allFlags:
71610458Sandreas.hansson@arm.com        if not compound:
71710458Sandreas.hansson@arm.com            print >>f, "    %s," % flag
71810458Sandreas.hansson@arm.com    print >>f, '};'
71910458Sandreas.hansson@arm.com    print >>f
72010458Sandreas.hansson@arm.com
72110584Sandreas.hansson@arm.com    for flag, compound, desc in allFlags:
72210458Sandreas.hansson@arm.com        if not compound:
72310458Sandreas.hansson@arm.com            continue
72410458Sandreas.hansson@arm.com        print >>f, 'static const Flags %sMap[] = {' % flag
72510458Sandreas.hansson@arm.com        for flag in compound:
72610458Sandreas.hansson@arm.com            print >>f, "    %s," % flag
7278596Ssteve.reinhardt@amd.com        print >>f, "    (Flags)-1"
7285463Snate@binkert.org        print >>f, '};'
72910584Sandreas.hansson@arm.com        print >>f
7308596Ssteve.reinhardt@amd.com
7315463Snate@binkert.org    #
7327756SAli.Saidi@ARM.com    # Finally the compoundFlags[] array maps the compound flags
7338596Ssteve.reinhardt@amd.com    # to their individual arrays/
7344762Snate@binkert.org    #
73510454SCurtis.Dunham@arm.com    print >>f, 'const Flags *Trace::compoundFlags[] ='
7367677Snate@binkert.org    print >>f, '{'
7374762Snate@binkert.org    print >>f, '    AllMap,'
7384762Snate@binkert.org    for flag, compound, desc in allFlags:
7396143Snate@binkert.org        if compound:
7406143Snate@binkert.org            print >>f, '    %sMap,' % flag
7416143Snate@binkert.org    # file trailer
7424762Snate@binkert.org    print >>f, '};'
7434762Snate@binkert.org
7447756SAli.Saidi@ARM.com    f.close()
7457816Ssteve.reinhardt@amd.com
7464762Snate@binkert.orgdef traceFlagsHH(target, source, env):
74710454SCurtis.Dunham@arm.com    assert(len(target) == 1)
7484762Snate@binkert.org
7494762Snate@binkert.org    f = file(str(target[0]), 'w')
7504762Snate@binkert.org
7517756SAli.Saidi@ARM.com    allFlags = []
7528596Ssteve.reinhardt@amd.com    for s in source:
7534762Snate@binkert.org        val = eval(s.get_contents())
75410454SCurtis.Dunham@arm.com        allFlags.append(val)
7554762Snate@binkert.org
7567677Snate@binkert.org    # file header boilerplate
7577756SAli.Saidi@ARM.com    print >>f, '''
7588596Ssteve.reinhardt@amd.com/*
7597675Snate@binkert.org * DO NOT EDIT THIS FILE!
76010454SCurtis.Dunham@arm.com *
7617677Snate@binkert.org * Automatically generated from traceflags.py
7625517Snate@binkert.org */
7638596Ssteve.reinhardt@amd.com
76410584Sandreas.hansson@arm.com#ifndef __BASE_TRACE_FLAGS_HH__
7659248SAndreas.Sandberg@arm.com#define __BASE_TRACE_FLAGS_HH__
7669248SAndreas.Sandberg@arm.com
7678596Ssteve.reinhardt@amd.comnamespace Trace {
7688596Ssteve.reinhardt@amd.com
7698596Ssteve.reinhardt@amd.comenum Flags {'''
7709248SAndreas.Sandberg@arm.com
7718596Ssteve.reinhardt@amd.com    # Generate the enum.  Base flags come first, then compound flags.
7724762Snate@binkert.org    idx = 0
7737674Snate@binkert.org    for flag, compound, desc in allFlags:
7747674Snate@binkert.org        if not compound:
7757674Snate@binkert.org            print >>f, '    %s = %d,' % (flag, idx)
7767674Snate@binkert.org            idx += 1
7777674Snate@binkert.org
7787674Snate@binkert.org    numBaseFlags = idx
7797674Snate@binkert.org    print >>f, '    NumFlags = %d,' % idx
7807674Snate@binkert.org
7817674Snate@binkert.org    # put a comment in here to separate base from compound flags
7827674Snate@binkert.org    print >>f, '''
7837674Snate@binkert.org// The remaining enum values are *not* valid indices for Trace::flags.
7847674Snate@binkert.org// They are "compound" flags, which correspond to sets of base
7857674Snate@binkert.org// flags, and are used by changeFlag.'''
7867674Snate@binkert.org
7877674Snate@binkert.org    print >>f, '    All = %d,' % idx
7884762Snate@binkert.org    idx += 1
7896143Snate@binkert.org    for flag, compound, desc in allFlags:
7906143Snate@binkert.org        if compound:
7917756SAli.Saidi@ARM.com            print >>f, '    %s = %d,' % (flag, idx)
7927816Ssteve.reinhardt@amd.com            idx += 1
7938235Snate@binkert.org
7948596Ssteve.reinhardt@amd.com    numCompoundFlags = idx - numBaseFlags
7957756SAli.Saidi@ARM.com    print >>f, '    NumCompoundFlags = %d' % numCompoundFlags
7967816Ssteve.reinhardt@amd.com
79710454SCurtis.Dunham@arm.com    # trailer boilerplate
7988235Snate@binkert.org    print >>f, '''\
7994382Sbinkertn@umich.edu}; // enum Flags
8009396Sandreas.hansson@arm.com
8019396Sandreas.hansson@arm.com// Array of strings for SimpleEnumParam
8029396Sandreas.hansson@arm.comextern const char *flagStrings[];
8039396Sandreas.hansson@arm.comextern const int numFlagStrings;
8049396Sandreas.hansson@arm.com
8059396Sandreas.hansson@arm.com// Array of arraay pointers: for each compound flag, gives the list of
8069396Sandreas.hansson@arm.com// base flags to set.  Inidividual flag arrays are terminated by -1.
8079396Sandreas.hansson@arm.comextern const Flags *compoundFlags[];
8089396Sandreas.hansson@arm.com
8099396Sandreas.hansson@arm.com/* namespace Trace */ }
8109396Sandreas.hansson@arm.com
8119396Sandreas.hansson@arm.com#endif // __BASE_TRACE_FLAGS_HH__
81210454SCurtis.Dunham@arm.com'''
8139396Sandreas.hansson@arm.com
8149396Sandreas.hansson@arm.com    f.close()
8159396Sandreas.hansson@arm.com
8169396Sandreas.hansson@arm.comflags = [ Value(f) for f in trace_flags.values() ]
8179396Sandreas.hansson@arm.comenv.Command('base/traceflags.py', flags, traceFlagsPy)
8189396Sandreas.hansson@arm.comPySource('m5', 'base/traceflags.py')
8198232Snate@binkert.org
8208232Snate@binkert.orgenv.Command('base/traceflags.hh', flags, traceFlagsHH)
8218232Snate@binkert.orgenv.Command('base/traceflags.cc', flags, traceFlagsCC)
8228232Snate@binkert.orgSource('base/traceflags.cc')
8238232Snate@binkert.org
8246229Snate@binkert.org# embed python files.  All .py files that have been indicated by a
82510455SCurtis.Dunham@arm.com# PySource() call in a SConscript need to be embedded into the M5
8266229Snate@binkert.org# library.  To do that, we compile the file to byte code, marshal the
82710455SCurtis.Dunham@arm.com# byte code, compress it, and then generate an assembly file that
82810455SCurtis.Dunham@arm.com# inserts the result into the data section with symbols indicating the
82910455SCurtis.Dunham@arm.com# beginning, and end (and with the size at the end)
8305517Snate@binkert.orgpy_sources_tnodes = {}
8315517Snate@binkert.orgfor pysource in py_sources:
8327673Snate@binkert.org    py_sources_tnodes[pysource.tnode] = pysource
8335517Snate@binkert.org
83410455SCurtis.Dunham@arm.comdef objectifyPyFile(target, source, env):
8355517Snate@binkert.org    '''Action function to compile a .py into a code object, marshal
8365517Snate@binkert.org    it, compress it, and stick it into an asm file so the code appears
8378232Snate@binkert.org    as just bytes with a label in the data section'''
83810455SCurtis.Dunham@arm.com
83910455SCurtis.Dunham@arm.com    src = file(str(source[0]), 'r').read()
84010455SCurtis.Dunham@arm.com    dst = file(str(target[0]), 'w')
8417673Snate@binkert.org
8427673Snate@binkert.org    pysource = py_sources_tnodes[source[0]]
84310455SCurtis.Dunham@arm.com    compiled = compile(src, pysource.debugname, 'exec')
84410455SCurtis.Dunham@arm.com    marshalled = marshal.dumps(compiled)
84510455SCurtis.Dunham@arm.com    compressed = zlib.compress(marshalled)
8465517Snate@binkert.org    data = compressed
84710455SCurtis.Dunham@arm.com
84810455SCurtis.Dunham@arm.com    # Some C/C++ compilers prepend an underscore to global symbol
84910455SCurtis.Dunham@arm.com    # names, so if they're going to do that, we need to prepend that
85010455SCurtis.Dunham@arm.com    # leading underscore to globals in the assembly file.
85110455SCurtis.Dunham@arm.com    if env['LEADING_UNDERSCORE']:
85210455SCurtis.Dunham@arm.com        sym = '_' + pysource.symname
85310455SCurtis.Dunham@arm.com    else:
85410455SCurtis.Dunham@arm.com        sym = pysource.symname
85510685Sandreas.hansson@arm.com
85610455SCurtis.Dunham@arm.com    step = 16
85710685Sandreas.hansson@arm.com    print >>dst, ".data"
85810455SCurtis.Dunham@arm.com    print >>dst, ".globl %s_beg" % sym
8595517Snate@binkert.org    print >>dst, ".globl %s_end" % sym
86010455SCurtis.Dunham@arm.com    print >>dst, "%s_beg:" % sym
8618232Snate@binkert.org    for i in xrange(0, len(data), step):
8628232Snate@binkert.org        x = array.array('B', data[i:i+step])
8635517Snate@binkert.org        print >>dst, ".byte", ','.join([str(d) for d in x])
8647673Snate@binkert.org    print >>dst, "%s_end:" % sym
8655517Snate@binkert.org    print >>dst, ".long %d" % len(marshalled)
8668232Snate@binkert.org
8678232Snate@binkert.orgfor source in py_sources:
8685517Snate@binkert.org    env.Command(source.assembly, source.tnode, objectifyPyFile)
8698232Snate@binkert.org    Source(source.assembly)
8708232Snate@binkert.org
8718232Snate@binkert.org# Generate init_python.cc which creates a bunch of EmbeddedPyModule
8727673Snate@binkert.org# structs that describe the embedded python code.  One such struct
8735517Snate@binkert.org# contains information about the importer that python uses to get at
8745517Snate@binkert.org# the embedded files, and then there's a list of all of the rest that
8757673Snate@binkert.org# the importer uses to load the rest on demand.
8765517Snate@binkert.orgpy_sources_symbols = {}
87710455SCurtis.Dunham@arm.comfor pysource in py_sources:
8785517Snate@binkert.org    py_sources_symbols[pysource.symname] = pysource
8795517Snate@binkert.orgdef pythonInit(target, source, env):
8808232Snate@binkert.org    dst = file(str(target[0]), 'w')
8818232Snate@binkert.org
8825517Snate@binkert.org    def dump_mod(sym, endchar=','):
8838232Snate@binkert.org        pysource = py_sources_symbols[sym]
8848232Snate@binkert.org        print >>dst, '    { "%s",' % pysource.arcname
8855517Snate@binkert.org        print >>dst, '      "%s",' % pysource.modpath
8868232Snate@binkert.org        print >>dst, '       %s_beg, %s_end,' % (sym, sym)
8878232Snate@binkert.org        print >>dst, '       %s_end - %s_beg,' % (sym, sym)
8888232Snate@binkert.org        print >>dst, '       *(int *)%s_end }%s'  % (sym, endchar)
8895517Snate@binkert.org    
8908232Snate@binkert.org    print >>dst, '#include "sim/init.hh"'
8918232Snate@binkert.org
8928232Snate@binkert.org    for sym in source:
8938232Snate@binkert.org        sym = sym.get_contents()
8948232Snate@binkert.org        print >>dst, "extern const char %s_beg[], %s_end[];" % (sym, sym)
8958232Snate@binkert.org
8965517Snate@binkert.org    print >>dst, "const EmbeddedPyModule embeddedPyImporter = "
8978232Snate@binkert.org    dump_mod("PyEMB_importer", endchar=';');
8988232Snate@binkert.org    print >>dst
8995517Snate@binkert.org
9008232Snate@binkert.org    print >>dst, "const EmbeddedPyModule embeddedPyModules[] = {"
9017673Snate@binkert.org    for i,sym in enumerate(source):
9025517Snate@binkert.org        sym = sym.get_contents()
9037673Snate@binkert.org        if sym == "PyEMB_importer":
9045517Snate@binkert.org            # Skip the importer since we've already exported it
9058232Snate@binkert.org            continue
9068232Snate@binkert.org        dump_mod(sym)
9078232Snate@binkert.org    print >>dst, "    { 0, 0, 0, 0, 0, 0 }"
9085192Ssaidi@eecs.umich.edu    print >>dst, "};"
90910454SCurtis.Dunham@arm.com
91010454SCurtis.Dunham@arm.comsymbols = [Value(s.symname) for s in py_sources]
9118232Snate@binkert.orgenv.Command('sim/init_python.cc', symbols, pythonInit)
91210455SCurtis.Dunham@arm.comSource('sim/init_python.cc')
91310455SCurtis.Dunham@arm.com
91410455SCurtis.Dunham@arm.com########################################################################
91510455SCurtis.Dunham@arm.com#
91610455SCurtis.Dunham@arm.com# Define binaries.  Each different build type (debug, opt, etc.) gets
91710455SCurtis.Dunham@arm.com# a slightly different build environment.
9185192Ssaidi@eecs.umich.edu#
9197674Snate@binkert.org
9205522Snate@binkert.org# List of constructed environments to pass back to SConstruct
9215522Snate@binkert.orgenvList = []
9227674Snate@binkert.org
9237674Snate@binkert.org# This function adds the specified sources to the given build
9247674Snate@binkert.org# environment, and returns a list of all the corresponding SCons
9257674Snate@binkert.org# Object nodes (including an extra one for date.cc).  We explicitly
9267674Snate@binkert.org# add the Object nodes so we can set up special dependencies for
9277674Snate@binkert.org# date.cc.
9287674Snate@binkert.orgdef make_objs(sources, env, static):
9297674Snate@binkert.org    if static:
9305522Snate@binkert.org        XObject = env.StaticObject
9315522Snate@binkert.org    else:
9325522Snate@binkert.org        XObject = env.SharedObject
9335517Snate@binkert.org
9345522Snate@binkert.org    objs = [ XObject(s) for s in sources ]
9355517Snate@binkert.org  
9366143Snate@binkert.org    # make date.cc depend on all other objects so it always gets
9376727Ssteve.reinhardt@amd.com    # recompiled whenever anything else does
9385522Snate@binkert.org    date_obj = XObject('base/date.cc')
9395522Snate@binkert.org
9405522Snate@binkert.org    env.Depends(date_obj, objs)
9417674Snate@binkert.org    objs.append(date_obj)
9425517Snate@binkert.org    return objs
9437673Snate@binkert.org
9447673Snate@binkert.org# Function to create a new build environment as clone of current
9457674Snate@binkert.org# environment 'env' with modified object suffix and optional stripped
9467673Snate@binkert.org# binary.  Additional keyword arguments are appended to corresponding
9477674Snate@binkert.org# build environment vars.
9487674Snate@binkert.orgdef makeEnv(label, objsfx, strip = False, **kwargs):
9498946Sandreas.hansson@arm.com    # SCons doesn't know to append a library suffix when there is a '.' in the
9507674Snate@binkert.org    # name.  Use '_' instead.
9517674Snate@binkert.org    libname = 'm5_' + label
9527674Snate@binkert.org    exename = 'm5.' + label
9535522Snate@binkert.org
9545522Snate@binkert.org    new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's')
9557674Snate@binkert.org    new_env.Label = label
9567674Snate@binkert.org    new_env.Append(**kwargs)
9577674Snate@binkert.org
9587674Snate@binkert.org    swig_env = new_env.Clone()
9597673Snate@binkert.org    if env['GCC']:
9607674Snate@binkert.org        swig_env.Append(CCFLAGS='-Wno-uninitialized')
9617674Snate@binkert.org        swig_env.Append(CCFLAGS='-Wno-sign-compare')
9627674Snate@binkert.org        swig_env.Append(CCFLAGS='-Wno-parentheses')
9637674Snate@binkert.org
9647674Snate@binkert.org    static_objs = make_objs(cc_lib_sources, new_env, static=True)
9657674Snate@binkert.org    shared_objs = make_objs(cc_lib_sources, new_env, static=False)
9667674Snate@binkert.org    static_objs += [ swig_env.StaticObject(s) for s in cc_swig_sources ]
9677674Snate@binkert.org    shared_objs += [ swig_env.SharedObject(s) for s in cc_swig_sources ]
9687811Ssteve.reinhardt@amd.com
9697674Snate@binkert.org    # First make a library of everything but main() so other programs can
9707673Snate@binkert.org    # link against m5.
9715522Snate@binkert.org    static_lib = new_env.StaticLibrary(libname, static_objs)
9726143Snate@binkert.org    shared_lib = new_env.SharedLibrary(libname, shared_objs)
97310453SAndrew.Bardsley@arm.com
9747816Ssteve.reinhardt@amd.com    for target, sources in unit_tests:
97510454SCurtis.Dunham@arm.com        objs = [ new_env.StaticObject(s) for s in sources ]
97610453SAndrew.Bardsley@arm.com        new_env.Program("unittest/%s.%s" % (target, label), objs + static_objs)
9774382Sbinkertn@umich.edu
9784382Sbinkertn@umich.edu    # Now link a stub with main() and the static library.
9794382Sbinkertn@umich.edu    objects = [new_env.Object(s) for s in cc_bin_sources] + static_objs
9804382Sbinkertn@umich.edu    if strip:
9814382Sbinkertn@umich.edu        unstripped_exe = exename + '.unstripped'
9824382Sbinkertn@umich.edu        new_env.Program(unstripped_exe, objects)
9834382Sbinkertn@umich.edu        if sys.platform == 'sunos5':
9844382Sbinkertn@umich.edu            cmd = 'cp $SOURCE $TARGET; strip $TARGET'
98510196SCurtis.Dunham@arm.com        else:
9864382Sbinkertn@umich.edu            cmd = 'strip $SOURCE -o $TARGET'
98710196SCurtis.Dunham@arm.com        targets = new_env.Command(exename, unstripped_exe, cmd)
98810196SCurtis.Dunham@arm.com    else:
98910196SCurtis.Dunham@arm.com        targets = new_env.Program(exename, objects)
99010196SCurtis.Dunham@arm.com            
99110196SCurtis.Dunham@arm.com    new_env.M5Binary = targets[0]
99210196SCurtis.Dunham@arm.com    envList.append(new_env)
99310196SCurtis.Dunham@arm.com
994955SN/A# Debug binary
9952655Sstever@eecs.umich.educcflags = {}
9962655Sstever@eecs.umich.eduif env['GCC']:
9972655Sstever@eecs.umich.edu    if sys.platform == 'sunos5':
9982655Sstever@eecs.umich.edu        ccflags['debug'] = '-gstabs+'
99910196SCurtis.Dunham@arm.com    else:
10005601Snate@binkert.org        ccflags['debug'] = '-ggdb3'
10015601Snate@binkert.org    ccflags['opt'] = '-g -O3'
100210196SCurtis.Dunham@arm.com    ccflags['fast'] = '-O3'
100310196SCurtis.Dunham@arm.com    ccflags['prof'] = '-O3 -g -pg'
100410196SCurtis.Dunham@arm.comelif env['SUNCC']:
10055522Snate@binkert.org    ccflags['debug'] = '-g0'
10065863Snate@binkert.org    ccflags['opt'] = '-g -O'
10075601Snate@binkert.org    ccflags['fast'] = '-fast'
10085601Snate@binkert.org    ccflags['prof'] = '-fast -g -pg'
10095601Snate@binkert.orgelif env['ICC']:
10105863Snate@binkert.org    ccflags['debug'] = '-g -O0'
10119556Sandreas.hansson@arm.com    ccflags['opt'] = '-g -O'
10129556Sandreas.hansson@arm.com    ccflags['fast'] = '-fast'
10139556Sandreas.hansson@arm.com    ccflags['prof'] = '-fast -g -pg'
10149556Sandreas.hansson@arm.comelse:
10159556Sandreas.hansson@arm.com    print 'Unknown compiler, please fix compiler options'
10169556Sandreas.hansson@arm.com    Exit(1)
10179556Sandreas.hansson@arm.com
10189556Sandreas.hansson@arm.commakeEnv('debug', '.do',
10199556Sandreas.hansson@arm.com        CCFLAGS = Split(ccflags['debug']),
10205559Snate@binkert.org        CPPDEFINES = ['DEBUG', 'TRACING_ON=1'])
10219556Sandreas.hansson@arm.com
10229618Ssteve.reinhardt@amd.com# Optimized binary
10239618Ssteve.reinhardt@amd.commakeEnv('opt', '.o',
10249618Ssteve.reinhardt@amd.com        CCFLAGS = Split(ccflags['opt']),
102510238Sandreas.hansson@arm.com        CPPDEFINES = ['TRACING_ON=1'])
102610238Sandreas.hansson@arm.com
10279554Sandreas.hansson@arm.com# "Fast" binary
10289556Sandreas.hansson@arm.commakeEnv('fast', '.fo', strip = True,
10299556Sandreas.hansson@arm.com        CCFLAGS = Split(ccflags['fast']),
10309556Sandreas.hansson@arm.com        CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'])
10319556Sandreas.hansson@arm.com
10329555Sandreas.hansson@arm.com# Profiled binary
10339555Sandreas.hansson@arm.commakeEnv('prof', '.po',
10349556Sandreas.hansson@arm.com        CCFLAGS = Split(ccflags['prof']),
103510457Sandreas.hansson@arm.com        CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
103610457Sandreas.hansson@arm.com        LINKFLAGS = '-pg')
103710457Sandreas.hansson@arm.com
103810457Sandreas.hansson@arm.comReturn('envList')
103910457Sandreas.hansson@arm.com