SConscript revision 7674
1955SN/A# -*- mode:python -*-
2955SN/A
31762SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan
4955SN/A# All rights reserved.
5955SN/A#
6955SN/A# Redistribution and use in source and binary forms, with or without
7955SN/A# modification, are permitted provided that the following conditions are
8955SN/A# met: redistributions of source code must retain the above copyright
9955SN/A# notice, this list of conditions and the following disclaimer;
10955SN/A# redistributions in binary form must reproduce the above copyright
11955SN/A# notice, this list of conditions and the following disclaimer in the
12955SN/A# documentation and/or other materials provided with the distribution;
13955SN/A# neither the name of the copyright holders nor the names of its
14955SN/A# contributors may be used to endorse or promote products derived from
15955SN/A# this software without specific prior written permission.
16955SN/A#
17955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282665Ssaidi@eecs.umich.edu#
294762Snate@binkert.org# Authors: Nathan Binkert
30955SN/A
315522Snate@binkert.orgimport array
326143Snate@binkert.orgimport bisect
334762Snate@binkert.orgimport imp
345522Snate@binkert.orgimport marshal
35955SN/Aimport os
365522Snate@binkert.orgimport re
37955SN/Aimport sys
385522Snate@binkert.orgimport zlib
394202Sbinkertn@umich.edu
405742Snate@binkert.orgfrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath
41955SN/A
424381Sbinkertn@umich.eduimport SCons
434381Sbinkertn@umich.edu
448334Snate@binkert.org# This file defines how to build a particular configuration of M5
45955SN/A# based on variable settings in the 'env' build environment.
46955SN/A
474202Sbinkertn@umich.eduImport('*')
48955SN/A
494382Sbinkertn@umich.edu# Children need to see the environment
504382Sbinkertn@umich.eduExport('env')
514382Sbinkertn@umich.edu
526654Snate@binkert.orgbuild_env = [(opt, env[opt]) for opt in export_vars]
535517Snate@binkert.org
548614Sgblack@eecs.umich.edufrom m5.util import code_formatter
557674Snate@binkert.org
566143Snate@binkert.org########################################################################
576143Snate@binkert.org# Code for adding source files of various types
586143Snate@binkert.org#
598233Snate@binkert.orgclass SourceMeta(type):
608233Snate@binkert.org    def __init__(cls, name, bases, dict):
618233Snate@binkert.org        super(SourceMeta, cls).__init__(name, bases, dict)
628233Snate@binkert.org        cls.all = []
638233Snate@binkert.org        
648334Snate@binkert.org    def get(cls, **kwargs):
658334Snate@binkert.org        for src in cls.all:
6610453SAndrew.Bardsley@arm.com            for attr,value in kwargs.iteritems():
6710453SAndrew.Bardsley@arm.com                if getattr(src, attr) != value:
688233Snate@binkert.org                    break
698233Snate@binkert.org            else:
708233Snate@binkert.org                yield src
718233Snate@binkert.org
728233Snate@binkert.orgclass SourceFile(object):
738233Snate@binkert.org    __metaclass__ = SourceMeta
746143Snate@binkert.org    def __init__(self, source):
758233Snate@binkert.org        tnode = source
768233Snate@binkert.org        if not isinstance(source, SCons.Node.FS.File):
778233Snate@binkert.org            tnode = File(source)
786143Snate@binkert.org
796143Snate@binkert.org        self.tnode = tnode
806143Snate@binkert.org        self.snode = tnode.srcnode()
8111308Santhony.gutierrez@amd.com        self.filename = str(tnode)
828233Snate@binkert.org        self.dirname = dirname(self.filename)
838233Snate@binkert.org        self.basename = basename(self.filename)
848233Snate@binkert.org        index = self.basename.rfind('.')
856143Snate@binkert.org        if index <= 0:
868233Snate@binkert.org            # dot files aren't extensions
878233Snate@binkert.org            self.extname = self.basename, None
888233Snate@binkert.org        else:
898233Snate@binkert.org            self.extname = self.basename[:index], self.basename[index+1:]
906143Snate@binkert.org
916143Snate@binkert.org        for base in type(self).__mro__:
926143Snate@binkert.org            if issubclass(base, SourceFile):
934762Snate@binkert.org                base.all.append(self)
946143Snate@binkert.org
958233Snate@binkert.org    def __lt__(self, other): return self.filename < other.filename
968233Snate@binkert.org    def __le__(self, other): return self.filename <= other.filename
978233Snate@binkert.org    def __gt__(self, other): return self.filename > other.filename
988233Snate@binkert.org    def __ge__(self, other): return self.filename >= other.filename
998233Snate@binkert.org    def __eq__(self, other): return self.filename == other.filename
1006143Snate@binkert.org    def __ne__(self, other): return self.filename != other.filename
1018233Snate@binkert.org        
1028233Snate@binkert.orgclass Source(SourceFile):
1038233Snate@binkert.org    '''Add a c/c++ source file to the build'''
1048233Snate@binkert.org    def __init__(self, source, Werror=True, swig=False, bin_only=False,
1056143Snate@binkert.org                 skip_lib=False):
1066143Snate@binkert.org        super(Source, self).__init__(source)
1076143Snate@binkert.org
1086143Snate@binkert.org        self.Werror = Werror
1096143Snate@binkert.org        self.swig = swig
1106143Snate@binkert.org        self.bin_only = bin_only
1116143Snate@binkert.org        self.skip_lib = bin_only or skip_lib
1126143Snate@binkert.org
1136143Snate@binkert.orgclass PySource(SourceFile):
1147065Snate@binkert.org    '''Add a python source file to the named package'''
1156143Snate@binkert.org    invalid_sym_char = re.compile('[^A-z0-9_]')
1168233Snate@binkert.org    modules = {}
1178233Snate@binkert.org    tnodes = {}
1188233Snate@binkert.org    symnames = {}
1198233Snate@binkert.org    
1208233Snate@binkert.org    def __init__(self, package, source):
1218233Snate@binkert.org        super(PySource, self).__init__(source)
1228233Snate@binkert.org
1238233Snate@binkert.org        modname,ext = self.extname
1248233Snate@binkert.org        assert ext == 'py'
1258233Snate@binkert.org
1268233Snate@binkert.org        if package:
1278233Snate@binkert.org            path = package.split('.')
1288233Snate@binkert.org        else:
1298233Snate@binkert.org            path = []
1308233Snate@binkert.org
1318233Snate@binkert.org        modpath = path[:]
1328233Snate@binkert.org        if modname != '__init__':
1338233Snate@binkert.org            modpath += [ modname ]
1348233Snate@binkert.org        modpath = '.'.join(modpath)
1358233Snate@binkert.org
1368233Snate@binkert.org        arcpath = path + [ self.basename ]
1378233Snate@binkert.org        abspath = self.snode.abspath
1388233Snate@binkert.org        if not exists(abspath):
1398233Snate@binkert.org            abspath = self.tnode.abspath
1408233Snate@binkert.org
1418233Snate@binkert.org        self.package = package
1428233Snate@binkert.org        self.modname = modname
1438233Snate@binkert.org        self.modpath = modpath
1448233Snate@binkert.org        self.arcname = joinpath(*arcpath)
1458233Snate@binkert.org        self.abspath = abspath
1468233Snate@binkert.org        self.compiled = File(self.filename + 'c')
1476143Snate@binkert.org        self.cpp = File(self.filename + '.cc')
1486143Snate@binkert.org        self.symname = PySource.invalid_sym_char.sub('_', modpath)
1496143Snate@binkert.org
1506143Snate@binkert.org        PySource.modules[modpath] = self
1516143Snate@binkert.org        PySource.tnodes[self.tnode] = self
1526143Snate@binkert.org        PySource.symnames[self.symname] = self
1539982Satgutier@umich.edu
15410196SCurtis.Dunham@arm.comclass SimObject(PySource):
15510196SCurtis.Dunham@arm.com    '''Add a SimObject python file as a python source object and add
15610196SCurtis.Dunham@arm.com    it to a list of sim object modules'''
15710196SCurtis.Dunham@arm.com
15810196SCurtis.Dunham@arm.com    fixed = False
15910196SCurtis.Dunham@arm.com    modnames = []
16010196SCurtis.Dunham@arm.com
16110196SCurtis.Dunham@arm.com    def __init__(self, source):
1626143Snate@binkert.org        super(SimObject, self).__init__('m5.objects', source)
1636143Snate@binkert.org        if self.fixed:
1648945Ssteve.reinhardt@amd.com            raise AttributeError, "Too late to call SimObject now."
1658233Snate@binkert.org
1668233Snate@binkert.org        bisect.insort_right(SimObject.modnames, self.modname)
1676143Snate@binkert.org
1688945Ssteve.reinhardt@amd.comclass SwigSource(SourceFile):
1696143Snate@binkert.org    '''Add a swig file to build'''
1706143Snate@binkert.org
1716143Snate@binkert.org    def __init__(self, package, source):
1726143Snate@binkert.org        super(SwigSource, self).__init__(source)
1735522Snate@binkert.org
1746143Snate@binkert.org        modname,ext = self.extname
1756143Snate@binkert.org        assert ext == 'i'
1766143Snate@binkert.org
1779982Satgutier@umich.edu        self.module = modname
1788233Snate@binkert.org        cc_file = joinpath(self.dirname, modname + '_wrap.cc')
1798233Snate@binkert.org        py_file = joinpath(self.dirname, modname + '.py')
1808233Snate@binkert.org
1816143Snate@binkert.org        self.cc_source = Source(cc_file, swig=True)
1826143Snate@binkert.org        self.py_source = PySource(package, py_file)
1836143Snate@binkert.org
1846143Snate@binkert.orgunit_tests = []
1855522Snate@binkert.orgdef UnitTest(target, sources):
1865522Snate@binkert.org    if not isinstance(sources, (list, tuple)):
1875522Snate@binkert.org        sources = [ sources ]
1885522Snate@binkert.org
1895604Snate@binkert.org    sources = [ Source(src, skip_lib=True) for src in sources ]
1905604Snate@binkert.org    unit_tests.append((target, sources))
1916143Snate@binkert.org
1926143Snate@binkert.org# Children should have access
1934762Snate@binkert.orgExport('Source')
1944762Snate@binkert.orgExport('PySource')
1956143Snate@binkert.orgExport('SimObject')
1966727Ssteve.reinhardt@amd.comExport('SwigSource')
1976727Ssteve.reinhardt@amd.comExport('UnitTest')
1986727Ssteve.reinhardt@amd.com
1994762Snate@binkert.org########################################################################
2006143Snate@binkert.org#
2016143Snate@binkert.org# Trace Flags
2026143Snate@binkert.org#
2036143Snate@binkert.orgtrace_flags = {}
2046727Ssteve.reinhardt@amd.comdef TraceFlag(name, desc=None):
2056143Snate@binkert.org    if name in trace_flags:
2067674Snate@binkert.org        raise AttributeError, "Flag %s already specified" % name
2077674Snate@binkert.org    trace_flags[name] = (name, (), desc)
2085604Snate@binkert.org
2096143Snate@binkert.orgdef CompoundFlag(name, flags, desc=None):
2106143Snate@binkert.org    if name in trace_flags:
2116143Snate@binkert.org        raise AttributeError, "Flag %s already specified" % name
2124762Snate@binkert.org
2136143Snate@binkert.org    compound = tuple(flags)
2144762Snate@binkert.org    trace_flags[name] = (name, compound, desc)
2154762Snate@binkert.org
2164762Snate@binkert.orgExport('TraceFlag')
2176143Snate@binkert.orgExport('CompoundFlag')
2186143Snate@binkert.org
2194762Snate@binkert.org########################################################################
2208233Snate@binkert.org#
2218233Snate@binkert.org# Set some compiler variables
2228233Snate@binkert.org#
2238233Snate@binkert.org
2246143Snate@binkert.org# Include file paths are rooted in this directory.  SCons will
2256143Snate@binkert.org# automatically expand '.' to refer to both the source directory and
2264762Snate@binkert.org# the corresponding build directory to pick up generated include
2276143Snate@binkert.org# files.
2284762Snate@binkert.orgenv.Append(CPPPATH=Dir('.'))
2296143Snate@binkert.org
2304762Snate@binkert.orgfor extra_dir in extras_dir_list:
2316143Snate@binkert.org    env.Append(CPPPATH=Dir(extra_dir))
2328233Snate@binkert.org
2338233Snate@binkert.org# Workaround for bug in SCons version > 0.97d20071212
23410453SAndrew.Bardsley@arm.com# Scons bug id: 2006 M5 Bug id: 308 
2356143Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True):
2366143Snate@binkert.org    Dir(root[len(base_dir) + 1:])
2376143Snate@binkert.org
2386143Snate@binkert.org########################################################################
23911548Sandreas.hansson@arm.com#
2406143Snate@binkert.org# Walk the tree and execute all SConscripts in subdirectories
2416143Snate@binkert.org#
2426143Snate@binkert.org
2436143Snate@binkert.orghere = Dir('.').srcnode().abspath
24410453SAndrew.Bardsley@arm.comfor root, dirs, files in os.walk(base_dir, topdown=True):
24510453SAndrew.Bardsley@arm.com    if root == here:
246955SN/A        # we don't want to recurse back into this SConscript
2479396Sandreas.hansson@arm.com        continue
2489396Sandreas.hansson@arm.com
2499396Sandreas.hansson@arm.com    if 'SConscript' in files:
2509396Sandreas.hansson@arm.com        build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:])
2519396Sandreas.hansson@arm.com        SConscript(joinpath(root, 'SConscript'), build_dir=build_dir)
2529396Sandreas.hansson@arm.com
2539396Sandreas.hansson@arm.comfor extra_dir in extras_dir_list:
2549396Sandreas.hansson@arm.com    prefix_len = len(dirname(extra_dir)) + 1
2559396Sandreas.hansson@arm.com    for root, dirs, files in os.walk(extra_dir, topdown=True):
2569396Sandreas.hansson@arm.com        if 'SConscript' in files:
2579396Sandreas.hansson@arm.com            build_dir = joinpath(env['BUILDDIR'], root[prefix_len:])
2589396Sandreas.hansson@arm.com            SConscript(joinpath(root, 'SConscript'), build_dir=build_dir)
2599396Sandreas.hansson@arm.com
2609930Sandreas.hansson@arm.comfor opt in export_vars:
2619930Sandreas.hansson@arm.com    env.ConfigFile(opt)
2629396Sandreas.hansson@arm.com
2638235Snate@binkert.orgdef makeTheISA(source, target, env):
2648235Snate@binkert.org    isas = [ src.get_contents() for src in source ]
2656143Snate@binkert.org    target_isa = env['TARGET_ISA']
2668235Snate@binkert.org    def define(isa):
2679003SAli.Saidi@ARM.com        return isa.upper() + '_ISA'
2688235Snate@binkert.org    
2698235Snate@binkert.org    def namespace(isa):
2708235Snate@binkert.org        return isa[0].upper() + isa[1:].lower() + 'ISA' 
2718235Snate@binkert.org
2728235Snate@binkert.org
2738235Snate@binkert.org    code = code_formatter()
2748235Snate@binkert.org    code('''\
2758235Snate@binkert.org#ifndef __CONFIG_THE_ISA_HH__
2768235Snate@binkert.org#define __CONFIG_THE_ISA_HH__
2778235Snate@binkert.org
2788235Snate@binkert.org''')
2798235Snate@binkert.org
2808235Snate@binkert.org    for i,isa in enumerate(isas):
2818235Snate@binkert.org        code('#define $0 $1', define(isa), i + 1)
2829003SAli.Saidi@ARM.com
2838235Snate@binkert.org    code('''
2845584Snate@binkert.org
2854382Sbinkertn@umich.edu#define THE_ISA ${{define(target_isa)}}
2864202Sbinkertn@umich.edu#define TheISA ${{namespace(target_isa)}}
2874382Sbinkertn@umich.edu
2884382Sbinkertn@umich.edu#endif // __CONFIG_THE_ISA_HH__''')
2894382Sbinkertn@umich.edu
2909396Sandreas.hansson@arm.com    code.write(str(target[0]))
2915584Snate@binkert.org
2924382Sbinkertn@umich.eduenv.Command('config/the_isa.hh', map(Value, all_isa_list), makeTheISA)
2934382Sbinkertn@umich.edu
2944382Sbinkertn@umich.edu########################################################################
2958232Snate@binkert.org#
2965192Ssaidi@eecs.umich.edu# Prevent any SimObjects from being added after this point, they
2978232Snate@binkert.org# should all have been added in the SConscripts above
2988232Snate@binkert.org#
2998232Snate@binkert.orgSimObject.fixed = True
3005192Ssaidi@eecs.umich.edu
3018232Snate@binkert.orgclass DictImporter(object):
3025192Ssaidi@eecs.umich.edu    '''This importer takes a dictionary of arbitrary module names that
3035799Snate@binkert.org    map to arbitrary filenames.'''
3048232Snate@binkert.org    def __init__(self, modules):
3055192Ssaidi@eecs.umich.edu        self.modules = modules
3065192Ssaidi@eecs.umich.edu        self.installed = set()
3075192Ssaidi@eecs.umich.edu
3088232Snate@binkert.org    def __del__(self):
3095192Ssaidi@eecs.umich.edu        self.unload()
3108232Snate@binkert.org
3115192Ssaidi@eecs.umich.edu    def unload(self):
3125192Ssaidi@eecs.umich.edu        import sys
3135192Ssaidi@eecs.umich.edu        for module in self.installed:
3145192Ssaidi@eecs.umich.edu            del sys.modules[module]
3154382Sbinkertn@umich.edu        self.installed = set()
3164382Sbinkertn@umich.edu
3174382Sbinkertn@umich.edu    def find_module(self, fullname, path):
3182667Sstever@eecs.umich.edu        if fullname == 'm5.defines':
3192667Sstever@eecs.umich.edu            return self
3202667Sstever@eecs.umich.edu
3212667Sstever@eecs.umich.edu        if fullname == 'm5.objects':
3222667Sstever@eecs.umich.edu            return self
3232667Sstever@eecs.umich.edu
3245742Snate@binkert.org        if fullname.startswith('m5.internal'):
3255742Snate@binkert.org            return None
3265742Snate@binkert.org
3275793Snate@binkert.org        source = self.modules.get(fullname, None)
3288334Snate@binkert.org        if source is not None and fullname.startswith('m5.objects'):
3295793Snate@binkert.org            return self
3305793Snate@binkert.org
3315793Snate@binkert.org        return None
3324382Sbinkertn@umich.edu
3334762Snate@binkert.org    def load_module(self, fullname):
3345344Sstever@gmail.com        mod = imp.new_module(fullname)
3354382Sbinkertn@umich.edu        sys.modules[fullname] = mod
3365341Sstever@gmail.com        self.installed.add(fullname)
3375742Snate@binkert.org
3385742Snate@binkert.org        mod.__loader__ = self
3395742Snate@binkert.org        if fullname == 'm5.objects':
3405742Snate@binkert.org            mod.__path__ = fullname.split('.')
3415742Snate@binkert.org            return mod
3424762Snate@binkert.org
3435742Snate@binkert.org        if fullname == 'm5.defines':
3445742Snate@binkert.org            mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env)
3457722Sgblack@eecs.umich.edu            return mod
3465742Snate@binkert.org
3475742Snate@binkert.org        source = self.modules[fullname]
3485742Snate@binkert.org        if source.modname == '__init__':
3499930Sandreas.hansson@arm.com            mod.__path__ = source.modpath
3509930Sandreas.hansson@arm.com        mod.__file__ = source.abspath
3519930Sandreas.hansson@arm.com
3529930Sandreas.hansson@arm.com        exec file(source.abspath, 'r') in mod.__dict__
3539930Sandreas.hansson@arm.com
3545742Snate@binkert.org        return mod
3558242Sbradley.danofsky@amd.com
3568242Sbradley.danofsky@amd.comimport m5.SimObject
3578242Sbradley.danofsky@amd.comimport m5.params
3588242Sbradley.danofsky@amd.comfrom m5.util import code_formatter
3595341Sstever@gmail.com
3605742Snate@binkert.orgm5.SimObject.clear()
3617722Sgblack@eecs.umich.edum5.params.clear()
3624773Snate@binkert.org
3636108Snate@binkert.org# install the python importer so we can grab stuff from the source
3641858SN/A# tree itself.  We can't have SimObjects added after this point or
3651085SN/A# else we won't know about them for the rest of the stuff.
3666658Snate@binkert.orgimporter = DictImporter(PySource.modules)
3676658Snate@binkert.orgsys.meta_path[0:0] = [ importer ]
3687673Snate@binkert.org
3696658Snate@binkert.org# import all sim objects so we can populate the all_objects list
3706658Snate@binkert.org# make sure that we're working with a list, then let's sort it
37111308Santhony.gutierrez@amd.comfor modname in SimObject.modnames:
3726658Snate@binkert.org    exec('from m5.objects import %s' % modname)
37311308Santhony.gutierrez@amd.com
3746658Snate@binkert.org# we need to unload all of the currently imported modules so that they
3756658Snate@binkert.org# will be re-imported the next time the sconscript is run
3767673Snate@binkert.orgimporter.unload()
3777673Snate@binkert.orgsys.meta_path.remove(importer)
3787673Snate@binkert.org
3797673Snate@binkert.orgsim_objects = m5.SimObject.allClasses
3807673Snate@binkert.orgall_enums = m5.params.allEnums
3817673Snate@binkert.org
3827673Snate@binkert.orgall_params = {}
38310467Sandreas.hansson@arm.comfor name,obj in sorted(sim_objects.iteritems()):
3846658Snate@binkert.org    for param in obj._params.local.values():
3857673Snate@binkert.org        # load the ptype attribute now because it depends on the
38610467Sandreas.hansson@arm.com        # current version of SimObject.allClasses, but when scons
38710467Sandreas.hansson@arm.com        # actually uses the value, all versions of
38810467Sandreas.hansson@arm.com        # SimObject.allClasses will have been loaded
38910467Sandreas.hansson@arm.com        param.ptype
39010467Sandreas.hansson@arm.com
39110467Sandreas.hansson@arm.com        if not hasattr(param, 'swig_decl'):
39210467Sandreas.hansson@arm.com            continue
39310467Sandreas.hansson@arm.com        pname = param.ptype_str
39410467Sandreas.hansson@arm.com        if pname not in all_params:
39510467Sandreas.hansson@arm.com            all_params[pname] = param
39610467Sandreas.hansson@arm.com
3977673Snate@binkert.org########################################################################
3987673Snate@binkert.org#
3997673Snate@binkert.org# calculate extra dependencies
4007673Snate@binkert.org#
4017673Snate@binkert.orgmodule_depends = ["m5", "m5.SimObject", "m5.params"]
4029048SAli.Saidi@ARM.comdepends = [ PySource.modules[dep].tnode for dep in module_depends ]
4037673Snate@binkert.org
4047673Snate@binkert.org########################################################################
4057673Snate@binkert.org#
4067673Snate@binkert.org# Commands for the basic automatically generated python files
4076658Snate@binkert.org#
4087756SAli.Saidi@ARM.com
4097816Ssteve.reinhardt@amd.com# Generate Python file containing a dict specifying the current
4106658Snate@binkert.org# buildEnv flags.
41111308Santhony.gutierrez@amd.comdef makeDefinesPyFile(target, source, env):
41211308Santhony.gutierrez@amd.com    build_env, hg_info = [ x.get_contents() for x in source ]
41311308Santhony.gutierrez@amd.com
41411308Santhony.gutierrez@amd.com    code = code_formatter()
41511308Santhony.gutierrez@amd.com    code("""
41611308Santhony.gutierrez@amd.comimport m5.internal
41711308Santhony.gutierrez@amd.comimport m5.util
41811308Santhony.gutierrez@amd.com
41911308Santhony.gutierrez@amd.combuildEnv = m5.util.SmartDict($build_env)
42011308Santhony.gutierrez@amd.comhgRev = '$hg_info'
42111308Santhony.gutierrez@amd.com
42211308Santhony.gutierrez@amd.comcompileDate = m5.internal.core.compileDate
42311308Santhony.gutierrez@amd.com_globals = globals()
42411308Santhony.gutierrez@amd.comfor key,val in m5.internal.core.__dict__.iteritems():
42511308Santhony.gutierrez@amd.com    if key.startswith('flag_'):
42611308Santhony.gutierrez@amd.com        flag = key[5:]
42711308Santhony.gutierrez@amd.com        _globals[flag] = val
42811308Santhony.gutierrez@amd.comdel _globals
42911308Santhony.gutierrez@amd.com""")
43011308Santhony.gutierrez@amd.com    code.write(target[0].abspath)
43111308Santhony.gutierrez@amd.com
43211308Santhony.gutierrez@amd.comdefines_info = [ Value(build_env), Value(env['HG_INFO']) ]
43311308Santhony.gutierrez@amd.com# Generate a file with all of the compile options in it
43411308Santhony.gutierrez@amd.comenv.Command('python/m5/defines.py', defines_info, makeDefinesPyFile)
43511308Santhony.gutierrez@amd.comPySource('m5', 'python/m5/defines.py')
43611308Santhony.gutierrez@amd.com
43711308Santhony.gutierrez@amd.com# Generate python file containing info about the M5 source code
43811308Santhony.gutierrez@amd.comdef makeInfoPyFile(target, source, env):
43911308Santhony.gutierrez@amd.com    code = code_formatter()
44011308Santhony.gutierrez@amd.com    for src in source:
44111308Santhony.gutierrez@amd.com        data = ''.join(file(src.srcnode().abspath, 'r').xreadlines())
44211308Santhony.gutierrez@amd.com        code('$src = ${{repr(data)}}')
44311308Santhony.gutierrez@amd.com    code.write(str(target[0]))
44411308Santhony.gutierrez@amd.com
44511308Santhony.gutierrez@amd.com# Generate a file that wraps the basic top level files
44611308Santhony.gutierrez@amd.comenv.Command('python/m5/info.py',
44711308Santhony.gutierrez@amd.com            [ '#/AUTHORS', '#/LICENSE', '#/README', '#/RELEASE_NOTES' ],
44811308Santhony.gutierrez@amd.com            makeInfoPyFile)
44911308Santhony.gutierrez@amd.comPySource('m5', 'python/m5/info.py')
45011308Santhony.gutierrez@amd.com
45111308Santhony.gutierrez@amd.com########################################################################
45211308Santhony.gutierrez@amd.com#
45311308Santhony.gutierrez@amd.com# Create all of the SimObject param headers and enum headers
45411308Santhony.gutierrez@amd.com#
45511308Santhony.gutierrez@amd.com
4564382Sbinkertn@umich.edudef createSimObjectParam(target, source, env):
4574382Sbinkertn@umich.edu    assert len(target) == 1 and len(source) == 1
4584762Snate@binkert.org
4594762Snate@binkert.org    name = str(source[0].get_contents())
4604762Snate@binkert.org    obj = sim_objects[name]
4616654Snate@binkert.org
4626654Snate@binkert.org    code = code_formatter()
4635517Snate@binkert.org    obj.cxx_decl(code)
4645517Snate@binkert.org    code.write(target[0].abspath)
4655517Snate@binkert.org
4665517Snate@binkert.orgdef createSwigParam(target, source, env):
4675517Snate@binkert.org    assert len(target) == 1 and len(source) == 1
4685517Snate@binkert.org
4695517Snate@binkert.org    name = str(source[0].get_contents())
4705517Snate@binkert.org    param = all_params[name]
4715517Snate@binkert.org
4725517Snate@binkert.org    code = code_formatter()
4735517Snate@binkert.org    param.swig_decl(code)
4745517Snate@binkert.org    code.write(target[0].abspath)
4755517Snate@binkert.org
4765517Snate@binkert.orgdef createEnumStrings(target, source, env):
4775517Snate@binkert.org    assert len(target) == 1 and len(source) == 1
4785517Snate@binkert.org
4795517Snate@binkert.org    name = str(source[0].get_contents())
4806654Snate@binkert.org    obj = all_enums[name]
4815517Snate@binkert.org
4825517Snate@binkert.org    code = code_formatter()
4835517Snate@binkert.org    obj.cxx_def(code)
4845517Snate@binkert.org    code.write(target[0].abspath)
4855517Snate@binkert.org
48611802Sandreas.sandberg@arm.comdef createEnumParam(target, source, env):
4875517Snate@binkert.org    assert len(target) == 1 and len(source) == 1
4885517Snate@binkert.org
4896143Snate@binkert.org    name = str(source[0].get_contents())
4906654Snate@binkert.org    obj = all_enums[name]
4915517Snate@binkert.org
4925517Snate@binkert.org    code = code_formatter()
4935517Snate@binkert.org    obj.cxx_decl(code)
4945517Snate@binkert.org    code.write(target[0].abspath)
4955517Snate@binkert.org
4965517Snate@binkert.org# Generate all of the SimObject param struct header files
4975517Snate@binkert.orgparams_hh_files = []
4985517Snate@binkert.orgfor name,simobj in sorted(sim_objects.iteritems()):
4995517Snate@binkert.org    py_source = PySource.modules[simobj.__module__]
5005517Snate@binkert.org    extra_deps = [ py_source.tnode ]
5015517Snate@binkert.org
5025517Snate@binkert.org    hh_file = File('params/%s.hh' % name)
5035517Snate@binkert.org    params_hh_files.append(hh_file)
5045517Snate@binkert.org    env.Command(hh_file, Value(name), createSimObjectParam)
5056654Snate@binkert.org    env.Depends(hh_file, depends + extra_deps)
5066654Snate@binkert.org
5075517Snate@binkert.org# Generate any parameter header files needed
5085517Snate@binkert.orgparams_i_files = []
5096143Snate@binkert.orgfor name,param in all_params.iteritems():
5106143Snate@binkert.org    i_file = File('params/%s_%s.i' % (name, param.file_ext))
5116143Snate@binkert.org    params_i_files.append(i_file)
5126727Ssteve.reinhardt@amd.com    env.Command(i_file, Value(name), createSwigParam)
5135517Snate@binkert.org    env.Depends(i_file, depends)
5146727Ssteve.reinhardt@amd.com
5155517Snate@binkert.org# Generate all enum header files
5165517Snate@binkert.orgfor name,enum in sorted(all_enums.iteritems()):
5175517Snate@binkert.org    py_source = PySource.modules[enum.__module__]
5186654Snate@binkert.org    extra_deps = [ py_source.tnode ]
5196654Snate@binkert.org
5207673Snate@binkert.org    cc_file = File('enums/%s.cc' % name)
5216654Snate@binkert.org    env.Command(cc_file, Value(name), createEnumStrings)
5226654Snate@binkert.org    env.Depends(cc_file, depends + extra_deps)
5236654Snate@binkert.org    Source(cc_file)
5246654Snate@binkert.org
5255517Snate@binkert.org    hh_file = File('enums/%s.hh' % name)
5265517Snate@binkert.org    env.Command(hh_file, Value(name), createEnumParam)
5275517Snate@binkert.org    env.Depends(hh_file, depends + extra_deps)
5286143Snate@binkert.org
5295517Snate@binkert.org# Build the big monolithic swigged params module (wraps all SimObject
5304762Snate@binkert.org# param structs and enum structs)
5315517Snate@binkert.orgdef buildParams(target, source, env):
5325517Snate@binkert.org    names = [ s.get_contents() for s in source ]
5336143Snate@binkert.org    objs = [ sim_objects[name] for name in names ]
5346143Snate@binkert.org
5355517Snate@binkert.org    ordered_objs = []
5365517Snate@binkert.org    obj_seen = set()
5375517Snate@binkert.org    def order_obj(obj):
5385517Snate@binkert.org        name = str(obj)
5395517Snate@binkert.org        if name in obj_seen:
5405517Snate@binkert.org            return
5415517Snate@binkert.org
5425517Snate@binkert.org        obj_seen.add(name)
5435517Snate@binkert.org        if str(obj) != 'SimObject':
5449338SAndreas.Sandberg@arm.com            order_obj(obj.__bases__[0])
5459338SAndreas.Sandberg@arm.com
5469338SAndreas.Sandberg@arm.com        ordered_objs.append(obj)
5479338SAndreas.Sandberg@arm.com
5489338SAndreas.Sandberg@arm.com    for obj in objs:
5499338SAndreas.Sandberg@arm.com        order_obj(obj)
5508596Ssteve.reinhardt@amd.com
5518596Ssteve.reinhardt@amd.com    code = code_formatter()
5528596Ssteve.reinhardt@amd.com    code('%module params')
5538596Ssteve.reinhardt@amd.com
5548596Ssteve.reinhardt@amd.com    code('%{')
5558596Ssteve.reinhardt@amd.com    for obj in ordered_objs:
5568596Ssteve.reinhardt@amd.com        code('#include "params/$obj.hh"')
5576143Snate@binkert.org    code('%}')
5585517Snate@binkert.org
5596654Snate@binkert.org    for obj in ordered_objs:
5606654Snate@binkert.org        params = obj._params.local.values()
5616654Snate@binkert.org        for param in params:
5626654Snate@binkert.org            param.swig_predecls(code)
5636654Snate@binkert.org
5646654Snate@binkert.org    enums = set()
5655517Snate@binkert.org    for obj in ordered_objs:
5665517Snate@binkert.org        params = obj._params.local.values()
5675517Snate@binkert.org        for param in params:
5688596Ssteve.reinhardt@amd.com            ptype = param.ptype
5698596Ssteve.reinhardt@amd.com            if issubclass(ptype, m5.params.Enum) and ptype not in enums:
5704762Snate@binkert.org                enums.add(ptype)
5714762Snate@binkert.org                code('%include "enums/$0.hh"', ptype.__name__)
5724762Snate@binkert.org    
5734762Snate@binkert.org    for obj in ordered_objs:
5744762Snate@binkert.org        obj.swig_objdecls(code)
5754762Snate@binkert.org        code()
5767675Snate@binkert.org
57710584Sandreas.hansson@arm.com    for obj in ordered_objs:
5784762Snate@binkert.org        continue
5794762Snate@binkert.org        if obj.swig_objdecls:
5804762Snate@binkert.org            obj.swig_objdecls(code)
5814762Snate@binkert.org            continue
5824382Sbinkertn@umich.edu
5834382Sbinkertn@umich.edu        class_path = obj.cxx_class.split('::')
5845517Snate@binkert.org        classname = class_path[-1]
5856654Snate@binkert.org        namespaces = class_path[:-1]
5865517Snate@binkert.org
5878126Sgblack@eecs.umich.edu        for ns in namespaces:
5886654Snate@binkert.org            code('namespace $ns {')
5897673Snate@binkert.org
5906654Snate@binkert.org        if namespaces:
59111802Sandreas.sandberg@arm.com            code('// avoid name conflicts')
5926654Snate@binkert.org            sep_string = '_COLONS_'
5936654Snate@binkert.org            flat_name = sep_string.join(class_path)
5946654Snate@binkert.org            code('%rename($flat_name) $classname;')
5956654Snate@binkert.org
59611802Sandreas.sandberg@arm.com        code('// stop swig from creating/wrapping default ctor/dtor')
5976669Snate@binkert.org        code('%nodefault $classname;')
59811802Sandreas.sandberg@arm.com        if obj._base:
5996669Snate@binkert.org            code('class $classname : public ${{obj._base.cxx_class}} {};')
6006669Snate@binkert.org        else:
6016669Snate@binkert.org            code('class $classname {};')
6026669Snate@binkert.org
6036654Snate@binkert.org        for ns in reversed(namespaces):
6047673Snate@binkert.org            code('/* namespace $ns */ }')
6055517Snate@binkert.org        code()
6068126Sgblack@eecs.umich.edu
6075798Snate@binkert.org    code('%include "src/sim/sim_object_params.hh"')
6087756SAli.Saidi@ARM.com    for obj in ordered_objs:
6097816Ssteve.reinhardt@amd.com        code('%include "params/$obj.hh"')
6105798Snate@binkert.org
6115798Snate@binkert.org    code.write(target[0].abspath)
6125517Snate@binkert.org
6135517Snate@binkert.orgparams_file = File('params/params.i')
6147673Snate@binkert.orgnames = sorted(sim_objects.keys())
6155517Snate@binkert.orgenv.Command(params_file, map(Value, names), buildParams)
6165517Snate@binkert.orgenv.Depends(params_file, params_hh_files + params_i_files + depends)
6177673Snate@binkert.orgSwigSource('m5.objects', params_file)
6187673Snate@binkert.org
6195517Snate@binkert.org# Generate the main swig init file
6205798Snate@binkert.orgdef makeEmbeddedSwigInit(target, source, env):
6215798Snate@binkert.org    code = code_formatter()
6228333Snate@binkert.org    module = source[0].get_contents()
6237816Ssteve.reinhardt@amd.com    code('''\
6245798Snate@binkert.org#include "sim/init.hh"
6255798Snate@binkert.org
6264762Snate@binkert.orgextern "C" {
6274762Snate@binkert.org    void init_${module}();
6284762Snate@binkert.org}
6294762Snate@binkert.org
6304762Snate@binkert.orgEmbeddedSwig embed_swig_${module}(init_${module});
6318596Ssteve.reinhardt@amd.com''')
6325517Snate@binkert.org    code.write(str(target[0]))
6335517Snate@binkert.org    
6345517Snate@binkert.org# Build all swig modules
6355517Snate@binkert.orgfor swig in SwigSource.all:
6365517Snate@binkert.org    env.Command([swig.cc_source.tnode, swig.py_source.tnode], swig.tnode,
6377673Snate@binkert.org                '$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} '
6388596Ssteve.reinhardt@amd.com                '-o ${TARGETS[0]} $SOURCES')
6397673Snate@binkert.org    init_file = 'python/swig/init_%s.cc' % swig.module
6405517Snate@binkert.org    env.Command(init_file, Value(swig.module), makeEmbeddedSwigInit)
64110458Sandreas.hansson@arm.com    Source(init_file)
64210458Sandreas.hansson@arm.com    env.Depends(swig.py_source.tnode, swig.tnode)
64310458Sandreas.hansson@arm.com    env.Depends(swig.cc_source.tnode, swig.tnode)
64410458Sandreas.hansson@arm.com
64510458Sandreas.hansson@arm.comdef getFlags(source_flags):
64610458Sandreas.hansson@arm.com    flagsMap = {}
64710458Sandreas.hansson@arm.com    flagsList = []
64810458Sandreas.hansson@arm.com    for s in source_flags:
64910458Sandreas.hansson@arm.com        val = eval(s.get_contents())
65010458Sandreas.hansson@arm.com        name, compound, desc = val
65110458Sandreas.hansson@arm.com        flagsList.append(val)
65210458Sandreas.hansson@arm.com        flagsMap[name] = bool(compound)
6538596Ssteve.reinhardt@amd.com    
6545517Snate@binkert.org    for name, compound, desc in flagsList:
6555517Snate@binkert.org        for flag in compound:
6565517Snate@binkert.org            if flag not in flagsMap:
6578596Ssteve.reinhardt@amd.com                raise AttributeError, "Trace flag %s not found" % flag
6585517Snate@binkert.org            if flagsMap[flag]:
6597673Snate@binkert.org                raise AttributeError, \
6607673Snate@binkert.org                    "Compound flag can't point to another compound flag"
6617673Snate@binkert.org
6625517Snate@binkert.org    flagsList.sort()
6635517Snate@binkert.org    return flagsList
6645517Snate@binkert.org
6655517Snate@binkert.org
6665517Snate@binkert.org# Generate traceflags.py
6675517Snate@binkert.orgdef traceFlagsPy(target, source, env):
6685517Snate@binkert.org    assert(len(target) == 1)
6697673Snate@binkert.org    code = code_formatter()
6707673Snate@binkert.org
6717673Snate@binkert.org    allFlags = getFlags(source)
6725517Snate@binkert.org
6738596Ssteve.reinhardt@amd.com    code('basic = [')
6745517Snate@binkert.org    code.indent()
6755517Snate@binkert.org    for flag, compound, desc in allFlags:
6765517Snate@binkert.org        if not compound:
6775517Snate@binkert.org            code("'$flag',")
6785517Snate@binkert.org    code(']')
6797673Snate@binkert.org    code.dedent()
6807673Snate@binkert.org    code()
6817673Snate@binkert.org
6825517Snate@binkert.org    code('compound = [')
6838596Ssteve.reinhardt@amd.com    code.indent()
6847675Snate@binkert.org    code("'All',")
6857675Snate@binkert.org    for flag, compound, desc in allFlags:
6867675Snate@binkert.org        if compound:
6877675Snate@binkert.org            code("'$flag',")
6887675Snate@binkert.org    code("]")
6897675Snate@binkert.org    code.dedent()
6908596Ssteve.reinhardt@amd.com    code()
6917675Snate@binkert.org
6927675Snate@binkert.org    code("all = frozenset(basic + compound)")
6938596Ssteve.reinhardt@amd.com    code()
6948596Ssteve.reinhardt@amd.com
6958596Ssteve.reinhardt@amd.com    code('compoundMap = {')
6968596Ssteve.reinhardt@amd.com    code.indent()
6978596Ssteve.reinhardt@amd.com    all = tuple([flag for flag,compound,desc in allFlags if not compound])
6988596Ssteve.reinhardt@amd.com    code("'All' : $all,")
6998596Ssteve.reinhardt@amd.com    for flag, compound, desc in allFlags:
7008596Ssteve.reinhardt@amd.com        if compound:
70110454SCurtis.Dunham@arm.com            code("'$flag' : $compound,")
70210454SCurtis.Dunham@arm.com    code('}')
70310454SCurtis.Dunham@arm.com    code.dedent()
70410454SCurtis.Dunham@arm.com    code()
7058596Ssteve.reinhardt@amd.com
7064762Snate@binkert.org    code('descriptions = {')
7076143Snate@binkert.org    code.indent()
7086143Snate@binkert.org    code("'All' : 'All flags',")
7096143Snate@binkert.org    for flag, compound, desc in allFlags:
7104762Snate@binkert.org        code("'$flag' : '$desc',")
7114762Snate@binkert.org    code("}")
7124762Snate@binkert.org    code.dedent()
7137756SAli.Saidi@ARM.com
7148596Ssteve.reinhardt@amd.com    code.write(str(target[0]))
7154762Snate@binkert.org
71610454SCurtis.Dunham@arm.comdef traceFlagsCC(target, source, env):
7174762Snate@binkert.org    assert(len(target) == 1)
71810458Sandreas.hansson@arm.com
71910458Sandreas.hansson@arm.com    allFlags = getFlags(source)
72010458Sandreas.hansson@arm.com    code = code_formatter()
72110458Sandreas.hansson@arm.com
72210458Sandreas.hansson@arm.com    # file header
72310458Sandreas.hansson@arm.com    code('''
72410458Sandreas.hansson@arm.com/*
72510458Sandreas.hansson@arm.com * DO NOT EDIT THIS FILE! Automatically generated
72610458Sandreas.hansson@arm.com */
72710458Sandreas.hansson@arm.com
72810458Sandreas.hansson@arm.com#include "base/traceflags.hh"
72910458Sandreas.hansson@arm.com
73010458Sandreas.hansson@arm.comusing namespace Trace;
73110458Sandreas.hansson@arm.com
73210458Sandreas.hansson@arm.comconst char *Trace::flagStrings[] =
73310458Sandreas.hansson@arm.com{''')
73410458Sandreas.hansson@arm.com
73510458Sandreas.hansson@arm.com    code.indent()
73610458Sandreas.hansson@arm.com    # The string array is used by SimpleEnumParam to map the strings
73710458Sandreas.hansson@arm.com    # provided by the user to enum values.
73810458Sandreas.hansson@arm.com    for flag, compound, desc in allFlags:
73910458Sandreas.hansson@arm.com        if not compound:
74010458Sandreas.hansson@arm.com            code('"$flag",')
74110458Sandreas.hansson@arm.com
74210458Sandreas.hansson@arm.com    code('"All",')
74310458Sandreas.hansson@arm.com    for flag, compound, desc in allFlags:
74410458Sandreas.hansson@arm.com        if compound:
74510458Sandreas.hansson@arm.com            code('"$flag",')
74610458Sandreas.hansson@arm.com    code.dedent()
74710458Sandreas.hansson@arm.com
74810458Sandreas.hansson@arm.com    code('''\
74910458Sandreas.hansson@arm.com};
75010458Sandreas.hansson@arm.com
75110458Sandreas.hansson@arm.comconst int Trace::numFlagStrings = ${{len(allFlags) + 1}};
75210458Sandreas.hansson@arm.com
75310458Sandreas.hansson@arm.com''')
75410458Sandreas.hansson@arm.com
75510458Sandreas.hansson@arm.com    # Now define the individual compound flag arrays.  There is an array
75610458Sandreas.hansson@arm.com    # for each compound flag listing the component base flags.
75710458Sandreas.hansson@arm.com    all = tuple([flag for flag,compound,desc in allFlags if not compound])
75810458Sandreas.hansson@arm.com    code('static const Flags AllMap[] = {')
75910458Sandreas.hansson@arm.com    code.indent()
76010458Sandreas.hansson@arm.com    for flag, compound, desc in allFlags:
76110458Sandreas.hansson@arm.com        if not compound:
76210458Sandreas.hansson@arm.com            code('$flag,')
76310458Sandreas.hansson@arm.com    code.dedent()
76410458Sandreas.hansson@arm.com    code('};')
76510458Sandreas.hansson@arm.com    code()
76610458Sandreas.hansson@arm.com
76710584Sandreas.hansson@arm.com    for flag, compound, desc in allFlags:
76810458Sandreas.hansson@arm.com        if not compound:
76910458Sandreas.hansson@arm.com            continue
77010458Sandreas.hansson@arm.com        code('static const Flags ${flag}Map[] = {')
77110458Sandreas.hansson@arm.com        code.indent()
77210458Sandreas.hansson@arm.com        for flag in compound:
7738596Ssteve.reinhardt@amd.com            code('$flag,')
7745463Snate@binkert.org        code('(Flags)-1')
77510584Sandreas.hansson@arm.com        code.dedent()
77611802Sandreas.sandberg@arm.com        code('};')
7775463Snate@binkert.org        code()
7787756SAli.Saidi@ARM.com
7798596Ssteve.reinhardt@amd.com    # Finally the compoundFlags[] array maps the compound flags
7804762Snate@binkert.org    # to their individual arrays/
78110454SCurtis.Dunham@arm.com    code('const Flags *Trace::compoundFlags[] = {')
78211802Sandreas.sandberg@arm.com    code.indent()
7834762Snate@binkert.org    code('AllMap,')
7844762Snate@binkert.org    for flag, compound, desc in allFlags:
7856143Snate@binkert.org        if compound:
7866143Snate@binkert.org            code('${flag}Map,')
7876143Snate@binkert.org    # file trailer
7884762Snate@binkert.org    code.dedent()
7894762Snate@binkert.org    code('};')
7907756SAli.Saidi@ARM.com
7917816Ssteve.reinhardt@amd.com    code.write(str(target[0]))
7924762Snate@binkert.org
79310454SCurtis.Dunham@arm.comdef traceFlagsHH(target, source, env):
7944762Snate@binkert.org    assert(len(target) == 1)
7954762Snate@binkert.org
7964762Snate@binkert.org    allFlags = getFlags(source)
7977756SAli.Saidi@ARM.com    code = code_formatter()
7988596Ssteve.reinhardt@amd.com
7994762Snate@binkert.org    # file header boilerplate
80010454SCurtis.Dunham@arm.com    code('''\
8014762Snate@binkert.org/*
80211802Sandreas.sandberg@arm.com * DO NOT EDIT THIS FILE!
8037756SAli.Saidi@ARM.com *
8048596Ssteve.reinhardt@amd.com * Automatically generated from traceflags.py
8057675Snate@binkert.org */
80610454SCurtis.Dunham@arm.com
80711802Sandreas.sandberg@arm.com#ifndef __BASE_TRACE_FLAGS_HH__
8085517Snate@binkert.org#define __BASE_TRACE_FLAGS_HH__
8098596Ssteve.reinhardt@amd.com
81010584Sandreas.hansson@arm.comnamespace Trace {
8119248SAndreas.Sandberg@arm.com
8129248SAndreas.Sandberg@arm.comenum Flags {''')
81311802Sandreas.sandberg@arm.com
8148596Ssteve.reinhardt@amd.com    # Generate the enum.  Base flags come first, then compound flags.
8158596Ssteve.reinhardt@amd.com    idx = 0
8169248SAndreas.Sandberg@arm.com    code.indent()
81711802Sandreas.sandberg@arm.com    for flag, compound, desc in allFlags:
8184762Snate@binkert.org        if not compound:
8197674Snate@binkert.org            code('$flag = $idx,')
82011548Sandreas.hansson@arm.com            idx += 1
82111548Sandreas.hansson@arm.com
82211548Sandreas.hansson@arm.com    numBaseFlags = idx
8237674Snate@binkert.org    code('NumFlags = $idx,')
82411548Sandreas.hansson@arm.com    code.dedent()
82511548Sandreas.hansson@arm.com    code()
82611548Sandreas.hansson@arm.com
82711548Sandreas.hansson@arm.com    # put a comment in here to separate base from compound flags
82811548Sandreas.hansson@arm.com    code('''
82911548Sandreas.hansson@arm.com// The remaining enum values are *not* valid indices for Trace::flags.
83011548Sandreas.hansson@arm.com// They are "compound" flags, which correspond to sets of base
83111548Sandreas.hansson@arm.com// flags, and are used by changeFlag.''')
8327674Snate@binkert.org
83311548Sandreas.hansson@arm.com    code.indent()
83411548Sandreas.hansson@arm.com    code('All = $idx,')
83511548Sandreas.hansson@arm.com    idx += 1
83611548Sandreas.hansson@arm.com    for flag, compound, desc in allFlags:
83711548Sandreas.hansson@arm.com        if compound:
83811548Sandreas.hansson@arm.com            code('$flag = $idx,')
83911548Sandreas.hansson@arm.com            idx += 1
84011548Sandreas.hansson@arm.com
84111308Santhony.gutierrez@amd.com    numCompoundFlags = idx - numBaseFlags
8424762Snate@binkert.org    code('NumCompoundFlags = $numCompoundFlags')
8436143Snate@binkert.org    code.dedent()
8446143Snate@binkert.org
8457756SAli.Saidi@ARM.com    # trailer boilerplate
8467816Ssteve.reinhardt@amd.com    code('''\
8478235Snate@binkert.org}; // enum Flags
8488596Ssteve.reinhardt@amd.com
8497756SAli.Saidi@ARM.com// Array of strings for SimpleEnumParam
85011548Sandreas.hansson@arm.comextern const char *flagStrings[];
85111548Sandreas.hansson@arm.comextern const int numFlagStrings;
85210454SCurtis.Dunham@arm.com
8538235Snate@binkert.org// Array of arraay pointers: for each compound flag, gives the list of
8544382Sbinkertn@umich.edu// base flags to set.  Inidividual flag arrays are terminated by -1.
8559396Sandreas.hansson@arm.comextern const Flags *compoundFlags[];
8569396Sandreas.hansson@arm.com
8579396Sandreas.hansson@arm.com/* namespace Trace */ }
8589396Sandreas.hansson@arm.com
8599396Sandreas.hansson@arm.com#endif // __BASE_TRACE_FLAGS_HH__
8609396Sandreas.hansson@arm.com''')
8619396Sandreas.hansson@arm.com
8629396Sandreas.hansson@arm.com    code.write(str(target[0]))
8639396Sandreas.hansson@arm.com
8649396Sandreas.hansson@arm.comflags = map(Value, trace_flags.values())
8659396Sandreas.hansson@arm.comenv.Command('base/traceflags.py', flags, traceFlagsPy)
8669396Sandreas.hansson@arm.comPySource('m5', 'base/traceflags.py')
86710454SCurtis.Dunham@arm.com
8689396Sandreas.hansson@arm.comenv.Command('base/traceflags.hh', flags, traceFlagsHH)
8699396Sandreas.hansson@arm.comenv.Command('base/traceflags.cc', flags, traceFlagsCC)
8709396Sandreas.hansson@arm.comSource('base/traceflags.cc')
8719396Sandreas.hansson@arm.com
8729396Sandreas.hansson@arm.com# Embed python files.  All .py files that have been indicated by a
8739396Sandreas.hansson@arm.com# PySource() call in a SConscript need to be embedded into the M5
8748232Snate@binkert.org# library.  To do that, we compile the file to byte code, marshal the
8758232Snate@binkert.org# byte code, compress it, and then generate a c++ file that
8768232Snate@binkert.org# inserts the result into an array.
8778232Snate@binkert.orgdef embedPyFile(target, source, env):
8788232Snate@binkert.org    def c_str(string):
8796229Snate@binkert.org        if string is None:
88010455SCurtis.Dunham@arm.com            return "0"
8816229Snate@binkert.org        return '"%s"' % string
88210455SCurtis.Dunham@arm.com
88310455SCurtis.Dunham@arm.com    '''Action function to compile a .py into a code object, marshal
88410455SCurtis.Dunham@arm.com    it, compress it, and stick it into an asm file so the code appears
8855517Snate@binkert.org    as just bytes with a label in the data section'''
8865517Snate@binkert.org
8877673Snate@binkert.org    src = file(str(source[0]), 'r').read()
8885517Snate@binkert.org
88910455SCurtis.Dunham@arm.com    pysource = PySource.tnodes[source[0]]
8905517Snate@binkert.org    compiled = compile(src, pysource.abspath, 'exec')
8915517Snate@binkert.org    marshalled = marshal.dumps(compiled)
8928232Snate@binkert.org    compressed = zlib.compress(marshalled)
89310455SCurtis.Dunham@arm.com    data = compressed
89410455SCurtis.Dunham@arm.com    sym = pysource.symname
89510455SCurtis.Dunham@arm.com
8967673Snate@binkert.org    code = code_formatter()
8977673Snate@binkert.org    code('''\
89810455SCurtis.Dunham@arm.com#include "sim/init.hh"
89910455SCurtis.Dunham@arm.com
90010455SCurtis.Dunham@arm.comnamespace {
9015517Snate@binkert.org
90210455SCurtis.Dunham@arm.comconst char data_${sym}[] = {
90310455SCurtis.Dunham@arm.com''')
90410455SCurtis.Dunham@arm.com    code.indent()
90510455SCurtis.Dunham@arm.com    step = 16
90610455SCurtis.Dunham@arm.com    for i in xrange(0, len(data), step):
90710455SCurtis.Dunham@arm.com        x = array.array('B', data[i:i+step])
90810455SCurtis.Dunham@arm.com        code(''.join('%d,' % d for d in x))
90910455SCurtis.Dunham@arm.com    code.dedent()
91010685Sandreas.hansson@arm.com    
91110455SCurtis.Dunham@arm.com    code('''};
91210685Sandreas.hansson@arm.com
91310455SCurtis.Dunham@arm.comEmbeddedPython embedded_${sym}(
9145517Snate@binkert.org    ${{c_str(pysource.arcname)}},
91510455SCurtis.Dunham@arm.com    ${{c_str(pysource.abspath)}},
9168232Snate@binkert.org    ${{c_str(pysource.modpath)}},
9178232Snate@binkert.org    data_${sym},
9185517Snate@binkert.org    ${{len(data)}},
9197673Snate@binkert.org    ${{len(marshalled)}});
9205517Snate@binkert.org
9218232Snate@binkert.org/* namespace */ }
9228232Snate@binkert.org''')
9235517Snate@binkert.org    code.write(str(target[0]))
9248232Snate@binkert.org
9258232Snate@binkert.orgfor source in PySource.all:
9268232Snate@binkert.org    env.Command(source.cpp, source.tnode, embedPyFile)
9277673Snate@binkert.org    Source(source.cpp)
9285517Snate@binkert.org
9295517Snate@binkert.org########################################################################
9307673Snate@binkert.org#
9315517Snate@binkert.org# Define binaries.  Each different build type (debug, opt, etc.) gets
93210455SCurtis.Dunham@arm.com# a slightly different build environment.
9335517Snate@binkert.org#
9345517Snate@binkert.org
9358232Snate@binkert.org# List of constructed environments to pass back to SConstruct
9368232Snate@binkert.orgenvList = []
9375517Snate@binkert.org
9388232Snate@binkert.orgdate_source = Source('base/date.cc', skip_lib=True)
9398232Snate@binkert.org
9405517Snate@binkert.org# Function to create a new build environment as clone of current
9418232Snate@binkert.org# environment 'env' with modified object suffix and optional stripped
9428232Snate@binkert.org# binary.  Additional keyword arguments are appended to corresponding
9438232Snate@binkert.org# build environment vars.
9445517Snate@binkert.orgdef makeEnv(label, objsfx, strip = False, **kwargs):
9458232Snate@binkert.org    # SCons doesn't know to append a library suffix when there is a '.' in the
9468232Snate@binkert.org    # name.  Use '_' instead.
9478232Snate@binkert.org    libname = 'm5_' + label
9488232Snate@binkert.org    exename = 'm5.' + label
9498232Snate@binkert.org
9508232Snate@binkert.org    new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's')
9515517Snate@binkert.org    new_env.Label = label
9528232Snate@binkert.org    new_env.Append(**kwargs)
9538232Snate@binkert.org
9545517Snate@binkert.org    swig_env = new_env.Clone()
9558232Snate@binkert.org    swig_env.Append(CCFLAGS='-Werror')
9567673Snate@binkert.org    if env['GCC']:
9575517Snate@binkert.org        swig_env.Append(CCFLAGS='-Wno-uninitialized')
9587673Snate@binkert.org        swig_env.Append(CCFLAGS='-Wno-sign-compare')
9595517Snate@binkert.org        swig_env.Append(CCFLAGS='-Wno-parentheses')
9608232Snate@binkert.org
9618232Snate@binkert.org    werror_env = new_env.Clone()
9628232Snate@binkert.org    werror_env.Append(CCFLAGS='-Werror')
9635192Ssaidi@eecs.umich.edu
96410454SCurtis.Dunham@arm.com    def make_obj(source, static, extra_deps = None):
96510454SCurtis.Dunham@arm.com        '''This function adds the specified source to the correct
9668232Snate@binkert.org        build environment, and returns the corresponding SCons Object
96710455SCurtis.Dunham@arm.com        nodes'''
96810455SCurtis.Dunham@arm.com
96910455SCurtis.Dunham@arm.com        if source.swig:
97010455SCurtis.Dunham@arm.com            env = swig_env
97110455SCurtis.Dunham@arm.com        elif source.Werror:
97210455SCurtis.Dunham@arm.com            env = werror_env
9735192Ssaidi@eecs.umich.edu        else:
97411077SCurtis.Dunham@arm.com            env = new_env
97511330SCurtis.Dunham@arm.com
97611077SCurtis.Dunham@arm.com        if static:
97711077SCurtis.Dunham@arm.com            obj = env.StaticObject(source.tnode)
97811077SCurtis.Dunham@arm.com        else:
97911330SCurtis.Dunham@arm.com            obj = env.SharedObject(source.tnode)
98011077SCurtis.Dunham@arm.com
9817674Snate@binkert.org        if extra_deps:
9825522Snate@binkert.org            env.Depends(obj, extra_deps)
9835522Snate@binkert.org
9847674Snate@binkert.org        return obj
9857674Snate@binkert.org
9867674Snate@binkert.org    static_objs = [ make_obj(s, True) for s in Source.get(skip_lib=False)]
9877674Snate@binkert.org    shared_objs = [ make_obj(s, False) for s in Source.get(skip_lib=False)]
9887674Snate@binkert.org
9897674Snate@binkert.org    static_date = make_obj(date_source, static=True, extra_deps=static_objs)
9907674Snate@binkert.org    static_objs.append(static_date)
9917674Snate@binkert.org    
9925522Snate@binkert.org    shared_date = make_obj(date_source, static=False, extra_deps=shared_objs)
9935522Snate@binkert.org    shared_objs.append(shared_date)
9945522Snate@binkert.org
9955517Snate@binkert.org    # First make a library of everything but main() so other programs can
9965522Snate@binkert.org    # link against m5.
9975517Snate@binkert.org    static_lib = new_env.StaticLibrary(libname, static_objs)
9986143Snate@binkert.org    shared_lib = new_env.SharedLibrary(libname, shared_objs)
9996727Ssteve.reinhardt@amd.com
10005522Snate@binkert.org    for target, sources in unit_tests:
10015522Snate@binkert.org        objs = [ make_obj(s, static=True) for s in sources ]
10025522Snate@binkert.org        new_env.Program("unittest/%s.%s" % (target, label), objs + static_objs)
10037674Snate@binkert.org
10045517Snate@binkert.org    # Now link a stub with main() and the static library.
10057673Snate@binkert.org    bin_objs = [make_obj(s, True) for s in Source.get(bin_only=True) ]
10067673Snate@binkert.org    progname = exename
10077674Snate@binkert.org    if strip:
10087673Snate@binkert.org        progname += '.unstripped'
10097674Snate@binkert.org
10107674Snate@binkert.org    targets = new_env.Program(progname, bin_objs + static_objs)
10118946Sandreas.hansson@arm.com
10127674Snate@binkert.org    if strip:
10137674Snate@binkert.org        if sys.platform == 'sunos5':
10147674Snate@binkert.org            cmd = 'cp $SOURCE $TARGET; strip $TARGET'
10155522Snate@binkert.org        else:
10165522Snate@binkert.org            cmd = 'strip $SOURCE -o $TARGET'
10177674Snate@binkert.org        targets = new_env.Command(exename, progname, cmd)
10187674Snate@binkert.org            
101911308Santhony.gutierrez@amd.com    new_env.M5Binary = targets[0]
10207674Snate@binkert.org    envList.append(new_env)
10217673Snate@binkert.org
10227674Snate@binkert.org# Debug binary
10237674Snate@binkert.orgccflags = {}
10247674Snate@binkert.orgif env['GCC']:
10257674Snate@binkert.org    if sys.platform == 'sunos5':
10267674Snate@binkert.org        ccflags['debug'] = '-gstabs+'
10277674Snate@binkert.org    else:
10287674Snate@binkert.org        ccflags['debug'] = '-ggdb3'
10297674Snate@binkert.org    ccflags['opt'] = '-g -O3'
10307811Ssteve.reinhardt@amd.com    ccflags['fast'] = '-O3'
10317674Snate@binkert.org    ccflags['prof'] = '-O3 -g -pg'
10327673Snate@binkert.orgelif env['SUNCC']:
10335522Snate@binkert.org    ccflags['debug'] = '-g0'
10346143Snate@binkert.org    ccflags['opt'] = '-g -O'
103510453SAndrew.Bardsley@arm.com    ccflags['fast'] = '-fast'
10367816Ssteve.reinhardt@amd.com    ccflags['prof'] = '-fast -g -pg'
103710454SCurtis.Dunham@arm.comelif env['ICC']:
103810453SAndrew.Bardsley@arm.com    ccflags['debug'] = '-g -O0'
10394382Sbinkertn@umich.edu    ccflags['opt'] = '-g -O'
10404382Sbinkertn@umich.edu    ccflags['fast'] = '-fast'
10414382Sbinkertn@umich.edu    ccflags['prof'] = '-fast -g -pg'
10424382Sbinkertn@umich.eduelse:
10434382Sbinkertn@umich.edu    print 'Unknown compiler, please fix compiler options'
10444382Sbinkertn@umich.edu    Exit(1)
10454382Sbinkertn@umich.edu
10464382Sbinkertn@umich.edumakeEnv('debug', '.do',
104710196SCurtis.Dunham@arm.com        CCFLAGS = Split(ccflags['debug']),
10484382Sbinkertn@umich.edu        CPPDEFINES = ['DEBUG', 'TRACING_ON=1'])
104910196SCurtis.Dunham@arm.com
105010196SCurtis.Dunham@arm.com# Optimized binary
105110196SCurtis.Dunham@arm.commakeEnv('opt', '.o',
105210196SCurtis.Dunham@arm.com        CCFLAGS = Split(ccflags['opt']),
105310196SCurtis.Dunham@arm.com        CPPDEFINES = ['TRACING_ON=1'])
105410196SCurtis.Dunham@arm.com
105510196SCurtis.Dunham@arm.com# "Fast" binary
1056955SN/AmakeEnv('fast', '.fo', strip = True,
10572655Sstever@eecs.umich.edu        CCFLAGS = Split(ccflags['fast']),
10582655Sstever@eecs.umich.edu        CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'])
10592655Sstever@eecs.umich.edu
10602655Sstever@eecs.umich.edu# Profiled binary
106110196SCurtis.Dunham@arm.commakeEnv('prof', '.po',
10625601Snate@binkert.org        CCFLAGS = Split(ccflags['prof']),
10635601Snate@binkert.org        CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
106410196SCurtis.Dunham@arm.com        LINKFLAGS = '-pg')
106510196SCurtis.Dunham@arm.com
106610196SCurtis.Dunham@arm.comReturn('envList')
10675522Snate@binkert.org