SConscript revision 8232
1955SN/A# -*- mode:python -*-
2955SN/A
313576Sciro.santilli@arm.com# Copyright (c) 2004-2005 The Regents of The University of Michigan
413576Sciro.santilli@arm.com# All rights reserved.
513576Sciro.santilli@arm.com#
613576Sciro.santilli@arm.com# Redistribution and use in source and binary forms, with or without
713576Sciro.santilli@arm.com# modification, are permitted provided that the following conditions are
813576Sciro.santilli@arm.com# met: redistributions of source code must retain the above copyright
913576Sciro.santilli@arm.com# notice, this list of conditions and the following disclaimer;
1013576Sciro.santilli@arm.com# redistributions in binary form must reproduce the above copyright
1113576Sciro.santilli@arm.com# notice, this list of conditions and the following disclaimer in the
1213576Sciro.santilli@arm.com# documentation and/or other materials provided with the distribution;
1313576Sciro.santilli@arm.com# neither the name of the copyright holders nor the names of its
141762SN/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.
28955SN/A#
29955SN/A# Authors: Nathan Binkert
30955SN/A
31955SN/Aimport array
32955SN/Aimport bisect
33955SN/Aimport imp
34955SN/Aimport marshal
35955SN/Aimport os
36955SN/Aimport re
37955SN/Aimport sys
38955SN/Aimport zlib
392665Ssaidi@eecs.umich.edu
404762Snate@binkert.orgfrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath
41955SN/A
4212563Sgabeblack@google.comimport SCons
4312563Sgabeblack@google.com
445522Snate@binkert.org# This file defines how to build a particular configuration of M5
456143Snate@binkert.org# based on variable settings in the 'env' build environment.
4612371Sgabeblack@google.com
474762Snate@binkert.orgImport('*')
485522Snate@binkert.org
49955SN/A# Children need to see the environment
505522Snate@binkert.orgExport('env')
5111974Sgabeblack@google.com
52955SN/Abuild_env = [(opt, env[opt]) for opt in export_vars]
535522Snate@binkert.org
544202Sbinkertn@umich.edufrom m5.util import code_formatter
555742Snate@binkert.org
56955SN/A########################################################################
574381Sbinkertn@umich.edu# Code for adding source files of various types
584381Sbinkertn@umich.edu#
5912246Sgabeblack@google.comclass SourceMeta(type):
6012246Sgabeblack@google.com    def __init__(cls, name, bases, dict):
618334Snate@binkert.org        super(SourceMeta, cls).__init__(name, bases, dict)
62955SN/A        cls.all = []
63955SN/A        
644202Sbinkertn@umich.edu    def get(cls, **kwargs):
65955SN/A        for src in cls.all:
664382Sbinkertn@umich.edu            for attr,value in kwargs.iteritems():
674382Sbinkertn@umich.edu                if getattr(src, attr) != value:
684382Sbinkertn@umich.edu                    break
696654Snate@binkert.org            else:
705517Snate@binkert.org                yield src
718614Sgblack@eecs.umich.edu
727674Snate@binkert.orgclass SourceFile(object):
736143Snate@binkert.org    __metaclass__ = SourceMeta
746143Snate@binkert.org    def __init__(self, source):
756143Snate@binkert.org        tnode = source
7612302Sgabeblack@google.com        if not isinstance(source, SCons.Node.FS.File):
7712302Sgabeblack@google.com            tnode = File(source)
7812302Sgabeblack@google.com
7912371Sgabeblack@google.com        self.tnode = tnode
8012371Sgabeblack@google.com        self.snode = tnode.srcnode()
8112371Sgabeblack@google.com        self.filename = str(tnode)
8212371Sgabeblack@google.com        self.dirname = dirname(self.filename)
8312371Sgabeblack@google.com        self.basename = basename(self.filename)
8412371Sgabeblack@google.com        index = self.basename.rfind('.')
8512371Sgabeblack@google.com        if index <= 0:
8612371Sgabeblack@google.com            # dot files aren't extensions
8712371Sgabeblack@google.com            self.extname = self.basename, None
8812371Sgabeblack@google.com        else:
8912371Sgabeblack@google.com            self.extname = self.basename[:index], self.basename[index+1:]
9012371Sgabeblack@google.com
9112371Sgabeblack@google.com        for base in type(self).__mro__:
9212371Sgabeblack@google.com            if issubclass(base, SourceFile):
9312371Sgabeblack@google.com                base.all.append(self)
9412371Sgabeblack@google.com
9512371Sgabeblack@google.com    def __lt__(self, other): return self.filename < other.filename
9612371Sgabeblack@google.com    def __le__(self, other): return self.filename <= other.filename
9712371Sgabeblack@google.com    def __gt__(self, other): return self.filename > other.filename
9812371Sgabeblack@google.com    def __ge__(self, other): return self.filename >= other.filename
9912371Sgabeblack@google.com    def __eq__(self, other): return self.filename == other.filename
10012371Sgabeblack@google.com    def __ne__(self, other): return self.filename != other.filename
10112371Sgabeblack@google.com        
10212371Sgabeblack@google.comclass Source(SourceFile):
10312371Sgabeblack@google.com    '''Add a c/c++ source file to the build'''
10412371Sgabeblack@google.com    def __init__(self, source, Werror=True, swig=False, bin_only=False,
10512371Sgabeblack@google.com                 skip_lib=False):
10612371Sgabeblack@google.com        super(Source, self).__init__(source)
10712371Sgabeblack@google.com
10812371Sgabeblack@google.com        self.Werror = Werror
10912371Sgabeblack@google.com        self.swig = swig
11012371Sgabeblack@google.com        self.bin_only = bin_only
11112371Sgabeblack@google.com        self.skip_lib = bin_only or skip_lib
11212371Sgabeblack@google.com
11312371Sgabeblack@google.comclass PySource(SourceFile):
11412371Sgabeblack@google.com    '''Add a python source file to the named package'''
11512371Sgabeblack@google.com    invalid_sym_char = re.compile('[^A-z0-9_]')
11612371Sgabeblack@google.com    modules = {}
11712371Sgabeblack@google.com    tnodes = {}
11812371Sgabeblack@google.com    symnames = {}
11912371Sgabeblack@google.com    
12012371Sgabeblack@google.com    def __init__(self, package, source):
12112371Sgabeblack@google.com        super(PySource, self).__init__(source)
12212371Sgabeblack@google.com
12312371Sgabeblack@google.com        modname,ext = self.extname
12412371Sgabeblack@google.com        assert ext == 'py'
12512371Sgabeblack@google.com
12612302Sgabeblack@google.com        if package:
12712371Sgabeblack@google.com            path = package.split('.')
12812302Sgabeblack@google.com        else:
12912371Sgabeblack@google.com            path = []
13012302Sgabeblack@google.com
13112302Sgabeblack@google.com        modpath = path[:]
13212371Sgabeblack@google.com        if modname != '__init__':
13312371Sgabeblack@google.com            modpath += [ modname ]
13412371Sgabeblack@google.com        modpath = '.'.join(modpath)
13512371Sgabeblack@google.com
13612302Sgabeblack@google.com        arcpath = path + [ self.basename ]
13712371Sgabeblack@google.com        abspath = self.snode.abspath
13812371Sgabeblack@google.com        if not exists(abspath):
13912371Sgabeblack@google.com            abspath = self.tnode.abspath
14012371Sgabeblack@google.com
14111983Sgabeblack@google.com        self.package = package
1426143Snate@binkert.org        self.modname = modname
1438233Snate@binkert.org        self.modpath = modpath
14412302Sgabeblack@google.com        self.arcname = joinpath(*arcpath)
1456143Snate@binkert.org        self.abspath = abspath
1466143Snate@binkert.org        self.compiled = File(self.filename + 'c')
14712302Sgabeblack@google.com        self.cpp = File(self.filename + '.cc')
1484762Snate@binkert.org        self.symname = PySource.invalid_sym_char.sub('_', modpath)
1496143Snate@binkert.org
1508233Snate@binkert.org        PySource.modules[modpath] = self
1518233Snate@binkert.org        PySource.tnodes[self.tnode] = self
15212302Sgabeblack@google.com        PySource.symnames[self.symname] = self
15312302Sgabeblack@google.com
1546143Snate@binkert.orgclass SimObject(PySource):
15512362Sgabeblack@google.com    '''Add a SimObject python file as a python source object and add
15612362Sgabeblack@google.com    it to a list of sim object modules'''
15712362Sgabeblack@google.com
15812362Sgabeblack@google.com    fixed = False
15912302Sgabeblack@google.com    modnames = []
16012302Sgabeblack@google.com
16112302Sgabeblack@google.com    def __init__(self, source):
16212302Sgabeblack@google.com        super(SimObject, self).__init__('m5.objects', source)
16312302Sgabeblack@google.com        if self.fixed:
16412363Sgabeblack@google.com            raise AttributeError, "Too late to call SimObject now."
16512363Sgabeblack@google.com
16612363Sgabeblack@google.com        bisect.insort_right(SimObject.modnames, self.modname)
16712363Sgabeblack@google.com
16812302Sgabeblack@google.comclass SwigSource(SourceFile):
16912363Sgabeblack@google.com    '''Add a swig file to build'''
17012363Sgabeblack@google.com
17112363Sgabeblack@google.com    def __init__(self, package, source):
17212363Sgabeblack@google.com        super(SwigSource, self).__init__(source)
17312363Sgabeblack@google.com
1748233Snate@binkert.org        modname,ext = self.extname
1756143Snate@binkert.org        assert ext == 'i'
1766143Snate@binkert.org
1776143Snate@binkert.org        self.module = modname
1786143Snate@binkert.org        cc_file = joinpath(self.dirname, modname + '_wrap.cc')
1796143Snate@binkert.org        py_file = joinpath(self.dirname, modname + '.py')
1806143Snate@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
1847065Snate@binkert.orgunit_tests = []
1856143Snate@binkert.orgdef UnitTest(target, sources):
18612362Sgabeblack@google.com    if not isinstance(sources, (list, tuple)):
18712362Sgabeblack@google.com        sources = [ sources ]
18812362Sgabeblack@google.com
18912362Sgabeblack@google.com    sources = [ Source(src, skip_lib=True) for src in sources ]
19012362Sgabeblack@google.com    unit_tests.append((target, sources))
19112362Sgabeblack@google.com
19212362Sgabeblack@google.com# Children should have access
19312362Sgabeblack@google.comExport('Source')
19412362Sgabeblack@google.comExport('PySource')
19512362Sgabeblack@google.comExport('SimObject')
19612362Sgabeblack@google.comExport('SwigSource')
19712362Sgabeblack@google.comExport('UnitTest')
1988233Snate@binkert.org
1998233Snate@binkert.org########################################################################
2008233Snate@binkert.org#
2018233Snate@binkert.org# Debug Flags
2028233Snate@binkert.org#
2038233Snate@binkert.orgdebug_flags = {}
2048233Snate@binkert.orgdef DebugFlag(name, desc=None):
2058233Snate@binkert.org    if name in debug_flags:
2068233Snate@binkert.org        raise AttributeError, "Flag %s already specified" % name
2078233Snate@binkert.org    debug_flags[name] = (name, (), desc)
2088233Snate@binkert.orgTraceFlag = DebugFlag
2098233Snate@binkert.org
2108233Snate@binkert.orgdef CompoundFlag(name, flags, desc=None):
2118233Snate@binkert.org    if name in debug_flags:
2128233Snate@binkert.org        raise AttributeError, "Flag %s already specified" % name
2138233Snate@binkert.org
2148233Snate@binkert.org    compound = tuple(flags)
2158233Snate@binkert.org    debug_flags[name] = (name, compound, desc)
2168233Snate@binkert.org
2178233Snate@binkert.orgExport('DebugFlag')
2188233Snate@binkert.orgExport('TraceFlag')
2196143Snate@binkert.orgExport('CompoundFlag')
2206143Snate@binkert.org
2216143Snate@binkert.org########################################################################
2226143Snate@binkert.org#
2236143Snate@binkert.org# Set some compiler variables
2246143Snate@binkert.org#
2259982Satgutier@umich.edu
22613576Sciro.santilli@arm.com# Include file paths are rooted in this directory.  SCons will
22713576Sciro.santilli@arm.com# automatically expand '.' to refer to both the source directory and
22813576Sciro.santilli@arm.com# the corresponding build directory to pick up generated include
22913576Sciro.santilli@arm.com# files.
23013576Sciro.santilli@arm.comenv.Append(CPPPATH=Dir('.'))
23113576Sciro.santilli@arm.com
23213576Sciro.santilli@arm.comfor extra_dir in extras_dir_list:
23313576Sciro.santilli@arm.com    env.Append(CPPPATH=Dir(extra_dir))
23413576Sciro.santilli@arm.com
23513576Sciro.santilli@arm.com# Workaround for bug in SCons version > 0.97d20071212
23613576Sciro.santilli@arm.com# Scons bug id: 2006 M5 Bug id: 308 
23713576Sciro.santilli@arm.comfor root, dirs, files in os.walk(base_dir, topdown=True):
23813576Sciro.santilli@arm.com    Dir(root[len(base_dir) + 1:])
23913576Sciro.santilli@arm.com
24013576Sciro.santilli@arm.com########################################################################
24113576Sciro.santilli@arm.com#
24213576Sciro.santilli@arm.com# Walk the tree and execute all SConscripts in subdirectories
24313576Sciro.santilli@arm.com#
24413576Sciro.santilli@arm.com
24513576Sciro.santilli@arm.comhere = Dir('.').srcnode().abspath
24613576Sciro.santilli@arm.comfor root, dirs, files in os.walk(base_dir, topdown=True):
24713576Sciro.santilli@arm.com    if root == here:
24813576Sciro.santilli@arm.com        # we don't want to recurse back into this SConscript
24913576Sciro.santilli@arm.com        continue
25013576Sciro.santilli@arm.com
25113576Sciro.santilli@arm.com    if 'SConscript' in files:
25213576Sciro.santilli@arm.com        build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:])
25313576Sciro.santilli@arm.com        SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir)
25413576Sciro.santilli@arm.com
25513576Sciro.santilli@arm.comfor extra_dir in extras_dir_list:
25613576Sciro.santilli@arm.com    prefix_len = len(dirname(extra_dir)) + 1
25713576Sciro.santilli@arm.com    for root, dirs, files in os.walk(extra_dir, topdown=True):
25813630Sciro.santilli@arm.com        if 'SConscript' in files:
25913630Sciro.santilli@arm.com            build_dir = joinpath(env['BUILDDIR'], root[prefix_len:])
26013576Sciro.santilli@arm.com            SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir)
26113576Sciro.santilli@arm.com
26213576Sciro.santilli@arm.comfor opt in export_vars:
26313576Sciro.santilli@arm.com    env.ConfigFile(opt)
26413576Sciro.santilli@arm.com
26513576Sciro.santilli@arm.comdef makeTheISA(source, target, env):
26613576Sciro.santilli@arm.com    isas = [ src.get_contents() for src in source ]
26713576Sciro.santilli@arm.com    target_isa = env['TARGET_ISA']
26813576Sciro.santilli@arm.com    def define(isa):
26913576Sciro.santilli@arm.com        return isa.upper() + '_ISA'
27013576Sciro.santilli@arm.com    
27113576Sciro.santilli@arm.com    def namespace(isa):
27213576Sciro.santilli@arm.com        return isa[0].upper() + isa[1:].lower() + 'ISA' 
27313576Sciro.santilli@arm.com
27413576Sciro.santilli@arm.com
27513576Sciro.santilli@arm.com    code = code_formatter()
27613576Sciro.santilli@arm.com    code('''\
27713576Sciro.santilli@arm.com#ifndef __CONFIG_THE_ISA_HH__
27813576Sciro.santilli@arm.com#define __CONFIG_THE_ISA_HH__
27913576Sciro.santilli@arm.com
28013576Sciro.santilli@arm.com''')
28113576Sciro.santilli@arm.com
28213576Sciro.santilli@arm.com    for i,isa in enumerate(isas):
28313576Sciro.santilli@arm.com        code('#define $0 $1', define(isa), i + 1)
28413576Sciro.santilli@arm.com
28513576Sciro.santilli@arm.com    code('''
28613576Sciro.santilli@arm.com
28713576Sciro.santilli@arm.com#define THE_ISA ${{define(target_isa)}}
28813576Sciro.santilli@arm.com#define TheISA ${{namespace(target_isa)}}
28913576Sciro.santilli@arm.com
29013576Sciro.santilli@arm.com#endif // __CONFIG_THE_ISA_HH__''')
29113576Sciro.santilli@arm.com
29213576Sciro.santilli@arm.com    code.write(str(target[0]))
29313576Sciro.santilli@arm.com
29413576Sciro.santilli@arm.comenv.Command('config/the_isa.hh', map(Value, all_isa_list),
29513576Sciro.santilli@arm.com            MakeAction(makeTheISA, Transform("CFG ISA", 0)))
29613576Sciro.santilli@arm.com
29713577Sciro.santilli@arm.com########################################################################
29813577Sciro.santilli@arm.com#
29913577Sciro.santilli@arm.com# Prevent any SimObjects from being added after this point, they
3006143Snate@binkert.org# should all have been added in the SConscripts above
30112302Sgabeblack@google.com#
30212302Sgabeblack@google.comSimObject.fixed = True
30312302Sgabeblack@google.com
30412302Sgabeblack@google.comclass DictImporter(object):
30512302Sgabeblack@google.com    '''This importer takes a dictionary of arbitrary module names that
30612302Sgabeblack@google.com    map to arbitrary filenames.'''
30712302Sgabeblack@google.com    def __init__(self, modules):
30812302Sgabeblack@google.com        self.modules = modules
30911983Sgabeblack@google.com        self.installed = set()
31011983Sgabeblack@google.com
31111983Sgabeblack@google.com    def __del__(self):
31212302Sgabeblack@google.com        self.unload()
31312302Sgabeblack@google.com
31412302Sgabeblack@google.com    def unload(self):
31512302Sgabeblack@google.com        import sys
31612302Sgabeblack@google.com        for module in self.installed:
31712302Sgabeblack@google.com            del sys.modules[module]
31811983Sgabeblack@google.com        self.installed = set()
3196143Snate@binkert.org
32012305Sgabeblack@google.com    def find_module(self, fullname, path):
32112302Sgabeblack@google.com        if fullname == 'm5.defines':
32212302Sgabeblack@google.com            return self
32312302Sgabeblack@google.com
3246143Snate@binkert.org        if fullname == 'm5.objects':
3256143Snate@binkert.org            return self
3266143Snate@binkert.org
3275522Snate@binkert.org        if fullname.startswith('m5.internal'):
3286143Snate@binkert.org            return None
3296143Snate@binkert.org
3306143Snate@binkert.org        source = self.modules.get(fullname, None)
3319982Satgutier@umich.edu        if source is not None and fullname.startswith('m5.objects'):
33212302Sgabeblack@google.com            return self
33312302Sgabeblack@google.com
33412302Sgabeblack@google.com        return None
3356143Snate@binkert.org
3366143Snate@binkert.org    def load_module(self, fullname):
3376143Snate@binkert.org        mod = imp.new_module(fullname)
3386143Snate@binkert.org        sys.modules[fullname] = mod
3395522Snate@binkert.org        self.installed.add(fullname)
3405522Snate@binkert.org
3415522Snate@binkert.org        mod.__loader__ = self
3425522Snate@binkert.org        if fullname == 'm5.objects':
3435604Snate@binkert.org            mod.__path__ = fullname.split('.')
3445604Snate@binkert.org            return mod
3456143Snate@binkert.org
3466143Snate@binkert.org        if fullname == 'm5.defines':
3474762Snate@binkert.org            mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env)
3484762Snate@binkert.org            return mod
3496143Snate@binkert.org
3506727Ssteve.reinhardt@amd.com        source = self.modules[fullname]
3516727Ssteve.reinhardt@amd.com        if source.modname == '__init__':
3526727Ssteve.reinhardt@amd.com            mod.__path__ = source.modpath
3534762Snate@binkert.org        mod.__file__ = source.abspath
3546143Snate@binkert.org
3556143Snate@binkert.org        exec file(source.abspath, 'r') in mod.__dict__
3566143Snate@binkert.org
3576143Snate@binkert.org        return mod
3586727Ssteve.reinhardt@amd.com
3596143Snate@binkert.orgimport m5.SimObject
3607674Snate@binkert.orgimport m5.params
3617674Snate@binkert.orgfrom m5.util import code_formatter
3625604Snate@binkert.org
3636143Snate@binkert.orgm5.SimObject.clear()
3646143Snate@binkert.orgm5.params.clear()
3656143Snate@binkert.org
3664762Snate@binkert.org# install the python importer so we can grab stuff from the source
3676143Snate@binkert.org# tree itself.  We can't have SimObjects added after this point or
3684762Snate@binkert.org# else we won't know about them for the rest of the stuff.
3694762Snate@binkert.orgimporter = DictImporter(PySource.modules)
3704762Snate@binkert.orgsys.meta_path[0:0] = [ importer ]
3716143Snate@binkert.org
3726143Snate@binkert.org# import all sim objects so we can populate the all_objects list
3734762Snate@binkert.org# make sure that we're working with a list, then let's sort it
37412302Sgabeblack@google.comfor modname in SimObject.modnames:
37512302Sgabeblack@google.com    exec('from m5.objects import %s' % modname)
3768233Snate@binkert.org
37712302Sgabeblack@google.com# we need to unload all of the currently imported modules so that they
3786143Snate@binkert.org# will be re-imported the next time the sconscript is run
3796143Snate@binkert.orgimporter.unload()
3804762Snate@binkert.orgsys.meta_path.remove(importer)
3816143Snate@binkert.org
3824762Snate@binkert.orgsim_objects = m5.SimObject.allClasses
3839396Sandreas.hansson@arm.comall_enums = m5.params.allEnums
3849396Sandreas.hansson@arm.com
3859396Sandreas.hansson@arm.comall_params = {}
38612302Sgabeblack@google.comfor name,obj in sorted(sim_objects.iteritems()):
38712302Sgabeblack@google.com    for param in obj._params.local.values():
38812302Sgabeblack@google.com        # load the ptype attribute now because it depends on the
3899396Sandreas.hansson@arm.com        # current version of SimObject.allClasses, but when scons
3909396Sandreas.hansson@arm.com        # actually uses the value, all versions of
3919396Sandreas.hansson@arm.com        # SimObject.allClasses will have been loaded
3929396Sandreas.hansson@arm.com        param.ptype
3939396Sandreas.hansson@arm.com
3949396Sandreas.hansson@arm.com        if not hasattr(param, 'swig_decl'):
3959396Sandreas.hansson@arm.com            continue
3969930Sandreas.hansson@arm.com        pname = param.ptype_str
3979930Sandreas.hansson@arm.com        if pname not in all_params:
3989396Sandreas.hansson@arm.com            all_params[pname] = param
3996143Snate@binkert.org
40012797Sgabeblack@google.com########################################################################
40112797Sgabeblack@google.com#
40212797Sgabeblack@google.com# calculate extra dependencies
4038235Snate@binkert.org#
40412797Sgabeblack@google.commodule_depends = ["m5", "m5.SimObject", "m5.params"]
40512797Sgabeblack@google.comdepends = [ PySource.modules[dep].snode for dep in module_depends ]
40612797Sgabeblack@google.com
40712797Sgabeblack@google.com########################################################################
40812797Sgabeblack@google.com#
40912797Sgabeblack@google.com# Commands for the basic automatically generated python files
41012797Sgabeblack@google.com#
41112797Sgabeblack@google.com
41212797Sgabeblack@google.com# Generate Python file containing a dict specifying the current
41312797Sgabeblack@google.com# buildEnv flags.
41412797Sgabeblack@google.comdef makeDefinesPyFile(target, source, env):
41512797Sgabeblack@google.com    build_env = source[0].get_contents()
41612797Sgabeblack@google.com
41712797Sgabeblack@google.com    code = code_formatter()
41812797Sgabeblack@google.com    code("""
41912757Sgabeblack@google.comimport m5.internal
42012757Sgabeblack@google.comimport m5.util
42112797Sgabeblack@google.com
42212797Sgabeblack@google.combuildEnv = m5.util.SmartDict($build_env)
42312797Sgabeblack@google.com
42412757Sgabeblack@google.comcompileDate = m5.internal.core.compileDate
42512757Sgabeblack@google.com_globals = globals()
42612757Sgabeblack@google.comfor key,val in m5.internal.core.__dict__.iteritems():
42712757Sgabeblack@google.com    if key.startswith('flag_'):
4288235Snate@binkert.org        flag = key[5:]
42912302Sgabeblack@google.com        _globals[flag] = val
4308235Snate@binkert.orgdel _globals
4318235Snate@binkert.org""")
43212757Sgabeblack@google.com    code.write(target[0].abspath)
4338235Snate@binkert.org
4348235Snate@binkert.orgdefines_info = Value(build_env)
4358235Snate@binkert.org# Generate a file with all of the compile options in it
43612757Sgabeblack@google.comenv.Command('python/m5/defines.py', defines_info,
43712313Sgabeblack@google.com            MakeAction(makeDefinesPyFile, Transform("DEFINES", 0)))
43812797Sgabeblack@google.comPySource('m5', 'python/m5/defines.py')
43912797Sgabeblack@google.com
44012797Sgabeblack@google.com# Generate python file containing info about the M5 source code
44112797Sgabeblack@google.comdef makeInfoPyFile(target, source, env):
44212797Sgabeblack@google.com    code = code_formatter()
44312797Sgabeblack@google.com    for src in source:
44412797Sgabeblack@google.com        data = ''.join(file(src.srcnode().abspath, 'r').xreadlines())
44512797Sgabeblack@google.com        code('$src = ${{repr(data)}}')
44612797Sgabeblack@google.com    code.write(str(target[0]))
44712797Sgabeblack@google.com
44812797Sgabeblack@google.com# Generate a file that wraps the basic top level files
44912797Sgabeblack@google.comenv.Command('python/m5/info.py',
45012797Sgabeblack@google.com            [ '#/AUTHORS', '#/LICENSE', '#/README', ],
45112797Sgabeblack@google.com            MakeAction(makeInfoPyFile, Transform("INFO")))
45212797Sgabeblack@google.comPySource('m5', 'python/m5/info.py')
45312797Sgabeblack@google.com
45412797Sgabeblack@google.com########################################################################
45512797Sgabeblack@google.com#
45612797Sgabeblack@google.com# Create all of the SimObject param headers and enum headers
45712797Sgabeblack@google.com#
45812797Sgabeblack@google.com
45912797Sgabeblack@google.comdef createSimObjectParam(target, source, env):
46012797Sgabeblack@google.com    assert len(target) == 1 and len(source) == 1
46112797Sgabeblack@google.com
46212797Sgabeblack@google.com    name = str(source[0].get_contents())
46312797Sgabeblack@google.com    obj = sim_objects[name]
46412797Sgabeblack@google.com
46512797Sgabeblack@google.com    code = code_formatter()
46612797Sgabeblack@google.com    obj.cxx_decl(code)
46712797Sgabeblack@google.com    code.write(target[0].abspath)
46812797Sgabeblack@google.com
46912797Sgabeblack@google.comdef createSwigParam(target, source, env):
47012797Sgabeblack@google.com    assert len(target) == 1 and len(source) == 1
47112797Sgabeblack@google.com
47212797Sgabeblack@google.com    name = str(source[0].get_contents())
47312797Sgabeblack@google.com    param = all_params[name]
47412797Sgabeblack@google.com
47513656Sgabeblack@google.com    code = code_formatter()
47612797Sgabeblack@google.com    code('%module(package="m5.internal") $0_${name}', param.file_ext)
47712797Sgabeblack@google.com    param.swig_decl(code)
47812797Sgabeblack@google.com    code.write(target[0].abspath)
47912797Sgabeblack@google.com
48012797Sgabeblack@google.comdef createEnumStrings(target, source, env):
48112797Sgabeblack@google.com    assert len(target) == 1 and len(source) == 1
48212313Sgabeblack@google.com
48312313Sgabeblack@google.com    name = str(source[0].get_contents())
48412797Sgabeblack@google.com    obj = all_enums[name]
48512797Sgabeblack@google.com
48612797Sgabeblack@google.com    code = code_formatter()
48712371Sgabeblack@google.com    obj.cxx_def(code)
4885584Snate@binkert.org    code.write(target[0].abspath)
48912797Sgabeblack@google.com
49012797Sgabeblack@google.comdef createEnumParam(target, source, env):
49112797Sgabeblack@google.com    assert len(target) == 1 and len(source) == 1
49212797Sgabeblack@google.com
49312797Sgabeblack@google.com    name = str(source[0].get_contents())
49412797Sgabeblack@google.com    obj = all_enums[name]
49512797Sgabeblack@google.com
49612797Sgabeblack@google.com    code = code_formatter()
49712797Sgabeblack@google.com    obj.cxx_decl(code)
49812797Sgabeblack@google.com    code.write(target[0].abspath)
49912797Sgabeblack@google.com
50012797Sgabeblack@google.comdef createEnumSwig(target, source, env):
50112797Sgabeblack@google.com    assert len(target) == 1 and len(source) == 1
50212797Sgabeblack@google.com
50312797Sgabeblack@google.com    name = str(source[0].get_contents())
50412797Sgabeblack@google.com    obj = all_enums[name]
50512797Sgabeblack@google.com
50612797Sgabeblack@google.com    code = code_formatter()
50712797Sgabeblack@google.com    code('''\
50812797Sgabeblack@google.com%module(package="m5.internal") enum_$name
50912797Sgabeblack@google.com
51012797Sgabeblack@google.com%{
51112797Sgabeblack@google.com#include "enums/$name.hh"
51212797Sgabeblack@google.com%}
51312797Sgabeblack@google.com
51412797Sgabeblack@google.com%include "enums/$name.hh"
51512797Sgabeblack@google.com''')
51612797Sgabeblack@google.com    code.write(target[0].abspath)
51712797Sgabeblack@google.com
51812797Sgabeblack@google.com# Generate all of the SimObject param struct header files
51912797Sgabeblack@google.comparams_hh_files = []
52012797Sgabeblack@google.comfor name,simobj in sorted(sim_objects.iteritems()):
52112797Sgabeblack@google.com    py_source = PySource.modules[simobj.__module__]
52212797Sgabeblack@google.com    extra_deps = [ py_source.tnode ]
52312797Sgabeblack@google.com
52412797Sgabeblack@google.com    hh_file = File('params/%s.hh' % name)
52512797Sgabeblack@google.com    params_hh_files.append(hh_file)
52612797Sgabeblack@google.com    env.Command(hh_file, Value(name),
5274382Sbinkertn@umich.edu                MakeAction(createSimObjectParam, Transform("SO PARAM")))
52813576Sciro.santilli@arm.com    env.Depends(hh_file, depends + extra_deps)
52913577Sciro.santilli@arm.com
5304202Sbinkertn@umich.edu# Generate any parameter header files needed
5314382Sbinkertn@umich.eduparams_i_files = []
5324382Sbinkertn@umich.edufor name,param in all_params.iteritems():
5339396Sandreas.hansson@arm.com    i_file = File('python/m5/internal/%s_%s.i' % (param.file_ext, name))
53412797Sgabeblack@google.com    params_i_files.append(i_file)
5355584Snate@binkert.org    env.Command(i_file, Value(name),
53612313Sgabeblack@google.com                MakeAction(createSwigParam, Transform("SW PARAM")))
5374382Sbinkertn@umich.edu    env.Depends(i_file, depends)
5384382Sbinkertn@umich.edu    SwigSource('m5.internal', i_file)
5394382Sbinkertn@umich.edu
5408232Snate@binkert.org# Generate all enum header files
5415192Ssaidi@eecs.umich.edufor name,enum in sorted(all_enums.iteritems()):
5428232Snate@binkert.org    py_source = PySource.modules[enum.__module__]
5438232Snate@binkert.org    extra_deps = [ py_source.tnode ]
5448232Snate@binkert.org
5455192Ssaidi@eecs.umich.edu    cc_file = File('enums/%s.cc' % name)
5468232Snate@binkert.org    env.Command(cc_file, Value(name),
5475192Ssaidi@eecs.umich.edu                MakeAction(createEnumStrings, Transform("ENUM STR")))
5485799Snate@binkert.org    env.Depends(cc_file, depends + extra_deps)
5498232Snate@binkert.org    Source(cc_file)
5505192Ssaidi@eecs.umich.edu
5515192Ssaidi@eecs.umich.edu    hh_file = File('enums/%s.hh' % name)
5525192Ssaidi@eecs.umich.edu    env.Command(hh_file, Value(name),
5538232Snate@binkert.org                MakeAction(createEnumParam, Transform("EN PARAM")))
5545192Ssaidi@eecs.umich.edu    env.Depends(hh_file, depends + extra_deps)
5558232Snate@binkert.org
5565192Ssaidi@eecs.umich.edu    i_file = File('python/m5/internal/enum_%s.i' % name)
5575192Ssaidi@eecs.umich.edu    env.Command(i_file, Value(name),
5585192Ssaidi@eecs.umich.edu                MakeAction(createEnumSwig, Transform("ENUMSWIG")))
5595192Ssaidi@eecs.umich.edu    env.Depends(i_file, depends + extra_deps)
5604382Sbinkertn@umich.edu    SwigSource('m5.internal', i_file)
5614382Sbinkertn@umich.edu
5624382Sbinkertn@umich.edudef buildParam(target, source, env):
5632667Sstever@eecs.umich.edu    name = source[0].get_contents()
5642667Sstever@eecs.umich.edu    obj = sim_objects[name]
5652667Sstever@eecs.umich.edu    class_path = obj.cxx_class.split('::')
5662667Sstever@eecs.umich.edu    classname = class_path[-1]
5672667Sstever@eecs.umich.edu    namespaces = class_path[:-1]
5682667Sstever@eecs.umich.edu    params = obj._params.local.values()
5695742Snate@binkert.org
5705742Snate@binkert.org    code = code_formatter()
5715742Snate@binkert.org
5725793Snate@binkert.org    code('%module(package="m5.internal") param_$name')
5738334Snate@binkert.org    code()
5745793Snate@binkert.org    code('%{')
5755793Snate@binkert.org    code('#include "params/$obj.hh"')
5765793Snate@binkert.org    for param in params:
5774382Sbinkertn@umich.edu        param.cxx_predecls(code)
5784762Snate@binkert.org    code('%}')
5795344Sstever@gmail.com    code()
5804382Sbinkertn@umich.edu
5815341Sstever@gmail.com    for param in params:
5825742Snate@binkert.org        param.swig_predecls(code)
5835742Snate@binkert.org
5845742Snate@binkert.org    code()
5855742Snate@binkert.org    if obj._base:
5865742Snate@binkert.org        code('%import "python/m5/internal/param_${{obj._base}}.i"')
5874762Snate@binkert.org    code()
5885742Snate@binkert.org    obj.swig_objdecls(code)
5895742Snate@binkert.org    code()
59011984Sgabeblack@google.com
5917722Sgblack@eecs.umich.edu    code('%include "params/$obj.hh"')
5925742Snate@binkert.org
5935742Snate@binkert.org    code.write(target[0].abspath)
5945742Snate@binkert.org
5959930Sandreas.hansson@arm.comfor name in sim_objects.iterkeys():
5969930Sandreas.hansson@arm.com    params_file = File('python/m5/internal/param_%s.i' % name)
5979930Sandreas.hansson@arm.com    env.Command(params_file, Value(name),
5989930Sandreas.hansson@arm.com                MakeAction(buildParam, Transform("BLDPARAM")))
5999930Sandreas.hansson@arm.com    env.Depends(params_file, depends)
6005742Snate@binkert.org    SwigSource('m5.internal', params_file)
6018242Sbradley.danofsky@amd.com
6028242Sbradley.danofsky@amd.com# Generate the main swig init file
6038242Sbradley.danofsky@amd.comdef makeEmbeddedSwigInit(target, source, env):
6048242Sbradley.danofsky@amd.com    code = code_formatter()
6055341Sstever@gmail.com    module = source[0].get_contents()
6065742Snate@binkert.org    code('''\
6077722Sgblack@eecs.umich.edu#include "sim/init.hh"
6084773Snate@binkert.org
6096108Snate@binkert.orgextern "C" {
6101858SN/A    void init_${module}();
6111085SN/A}
6126658Snate@binkert.org
6136658Snate@binkert.orgEmbeddedSwig embed_swig_${module}(init_${module});
6147673Snate@binkert.org''')
6156658Snate@binkert.org    code.write(str(target[0]))
6166658Snate@binkert.org    
61711308Santhony.gutierrez@amd.com# Build all swig modules
6186658Snate@binkert.orgfor swig in SwigSource.all:
61911308Santhony.gutierrez@amd.com    env.Command([swig.cc_source.tnode, swig.py_source.tnode], swig.tnode,
6206658Snate@binkert.org                MakeAction('$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} '
6216658Snate@binkert.org                '-o ${TARGETS[0]} $SOURCES', Transform("SWIG")))
6227673Snate@binkert.org    init_file = 'python/swig/init_%s.cc' % swig.module
6237673Snate@binkert.org    env.Command(init_file, Value(swig.module),
6247673Snate@binkert.org                MakeAction(makeEmbeddedSwigInit, Transform("EMBED SW")))
6257673Snate@binkert.org    Source(init_file)
6267673Snate@binkert.org
6277673Snate@binkert.org#
6287673Snate@binkert.org# Handle debug flags
62910467Sandreas.hansson@arm.com#
6306658Snate@binkert.orgdef makeDebugFlagCC(target, source, env):
6317673Snate@binkert.org    assert(len(target) == 1 and len(source) == 1)
63210467Sandreas.hansson@arm.com
63310467Sandreas.hansson@arm.com    val = eval(source[0].get_contents())
63410467Sandreas.hansson@arm.com    name, compound, desc = val
63510467Sandreas.hansson@arm.com    compound = list(sorted(compound))
63610467Sandreas.hansson@arm.com
63710467Sandreas.hansson@arm.com    code = code_formatter()
63810467Sandreas.hansson@arm.com
63910467Sandreas.hansson@arm.com    # file header
64010467Sandreas.hansson@arm.com    code('''
64110467Sandreas.hansson@arm.com/*
64210467Sandreas.hansson@arm.com * DO NOT EDIT THIS FILE! Automatically generated
6437673Snate@binkert.org */
6447673Snate@binkert.org
6457673Snate@binkert.org#include "base/debug.hh"
6467673Snate@binkert.org''')
6477673Snate@binkert.org
6489048SAli.Saidi@ARM.com    for flag in compound:
6497673Snate@binkert.org        code('#include "debug/$flag.hh"')
6507673Snate@binkert.org    code()
6517673Snate@binkert.org    code('namespace Debug {')
6527673Snate@binkert.org    code()
6536658Snate@binkert.org
6547756SAli.Saidi@ARM.com    if not compound:
6557816Ssteve.reinhardt@amd.com        code('SimpleFlag $name("$name", "$desc");')
6566658Snate@binkert.org    else:
65711308Santhony.gutierrez@amd.com        code('CompoundFlag $name("$name", "$desc",')
65811308Santhony.gutierrez@amd.com        code.indent()
65911308Santhony.gutierrez@amd.com        last = len(compound) - 1
66011308Santhony.gutierrez@amd.com        for i,flag in enumerate(compound):
66111308Santhony.gutierrez@amd.com            if i != last:
66211308Santhony.gutierrez@amd.com                code('$flag,')
66311308Santhony.gutierrez@amd.com            else:
66411308Santhony.gutierrez@amd.com                code('$flag);')
66511308Santhony.gutierrez@amd.com        code.dedent()
66611308Santhony.gutierrez@amd.com
66711308Santhony.gutierrez@amd.com    code()
66811308Santhony.gutierrez@amd.com    code('} // namespace Debug')
66911308Santhony.gutierrez@amd.com
67011308Santhony.gutierrez@amd.com    code.write(str(target[0]))
67111308Santhony.gutierrez@amd.com
67211308Santhony.gutierrez@amd.comdef makeDebugFlagHH(target, source, env):
67311308Santhony.gutierrez@amd.com    assert(len(target) == 1 and len(source) == 1)
67411308Santhony.gutierrez@amd.com
67511308Santhony.gutierrez@amd.com    val = eval(source[0].get_contents())
67611308Santhony.gutierrez@amd.com    name, compound, desc = val
67711308Santhony.gutierrez@amd.com
67811308Santhony.gutierrez@amd.com    code = code_formatter()
67911308Santhony.gutierrez@amd.com
68011308Santhony.gutierrez@amd.com    # file header boilerplate
68111308Santhony.gutierrez@amd.com    code('''\
68211308Santhony.gutierrez@amd.com/*
68311308Santhony.gutierrez@amd.com * DO NOT EDIT THIS FILE!
68411308Santhony.gutierrez@amd.com *
68511308Santhony.gutierrez@amd.com * Automatically generated by SCons
68611308Santhony.gutierrez@amd.com */
68711308Santhony.gutierrez@amd.com
68811308Santhony.gutierrez@amd.com#ifndef __DEBUG_${name}_HH__
68911308Santhony.gutierrez@amd.com#define __DEBUG_${name}_HH__
69011308Santhony.gutierrez@amd.com
69111308Santhony.gutierrez@amd.comnamespace Debug {
69211308Santhony.gutierrez@amd.com''')
69311308Santhony.gutierrez@amd.com
69411308Santhony.gutierrez@amd.com    if compound:
69511308Santhony.gutierrez@amd.com        code('class CompoundFlag;')
69611308Santhony.gutierrez@amd.com    code('class SimpleFlag;')
69711308Santhony.gutierrez@amd.com
69811308Santhony.gutierrez@amd.com    if compound:
69911308Santhony.gutierrez@amd.com        code('extern CompoundFlag $name;')
70011308Santhony.gutierrez@amd.com        for flag in compound:
70111308Santhony.gutierrez@amd.com            code('extern SimpleFlag $flag;')
7024382Sbinkertn@umich.edu    else:
7034382Sbinkertn@umich.edu        code('extern SimpleFlag $name;')
7044762Snate@binkert.org
7054762Snate@binkert.org    code('''
7064762Snate@binkert.org}
7076654Snate@binkert.org
7086654Snate@binkert.org#endif // __DEBUG_${name}_HH__
7095517Snate@binkert.org''')
7105517Snate@binkert.org
7115517Snate@binkert.org    code.write(str(target[0]))
7125517Snate@binkert.org
7135517Snate@binkert.orgfor name,flag in sorted(debug_flags.iteritems()):
7145517Snate@binkert.org    n, compound, desc = flag
7155517Snate@binkert.org    assert n == name
7165517Snate@binkert.org
7175517Snate@binkert.org    env.Command('debug/%s.hh' % name, Value(flag),
7185517Snate@binkert.org                MakeAction(makeDebugFlagHH, Transform("TRACING", 0)))
7195517Snate@binkert.org    env.Command('debug/%s.cc' % name, Value(flag),
7205517Snate@binkert.org                MakeAction(makeDebugFlagCC, Transform("TRACING", 0)))
7215517Snate@binkert.org    Source('debug/%s.cc' % name)
7225517Snate@binkert.org
7235517Snate@binkert.org# Embed python files.  All .py files that have been indicated by a
7245517Snate@binkert.org# PySource() call in a SConscript need to be embedded into the M5
7255517Snate@binkert.org# library.  To do that, we compile the file to byte code, marshal the
7266654Snate@binkert.org# byte code, compress it, and then generate a c++ file that
7275517Snate@binkert.org# inserts the result into an array.
7285517Snate@binkert.orgdef embedPyFile(target, source, env):
7295517Snate@binkert.org    def c_str(string):
7305517Snate@binkert.org        if string is None:
7315517Snate@binkert.org            return "0"
73211802Sandreas.sandberg@arm.com        return '"%s"' % string
7335517Snate@binkert.org
7345517Snate@binkert.org    '''Action function to compile a .py into a code object, marshal
7356143Snate@binkert.org    it, compress it, and stick it into an asm file so the code appears
7366654Snate@binkert.org    as just bytes with a label in the data section'''
7375517Snate@binkert.org
7385517Snate@binkert.org    src = file(str(source[0]), 'r').read()
7395517Snate@binkert.org
7405517Snate@binkert.org    pysource = PySource.tnodes[source[0]]
7415517Snate@binkert.org    compiled = compile(src, pysource.abspath, 'exec')
7425517Snate@binkert.org    marshalled = marshal.dumps(compiled)
7435517Snate@binkert.org    compressed = zlib.compress(marshalled)
7445517Snate@binkert.org    data = compressed
7455517Snate@binkert.org    sym = pysource.symname
7465517Snate@binkert.org
7475517Snate@binkert.org    code = code_formatter()
7485517Snate@binkert.org    code('''\
7495517Snate@binkert.org#include "sim/init.hh"
7505517Snate@binkert.org
7516654Snate@binkert.orgnamespace {
7526654Snate@binkert.org
7535517Snate@binkert.orgconst char data_${sym}[] = {
7545517Snate@binkert.org''')
7556143Snate@binkert.org    code.indent()
7566143Snate@binkert.org    step = 16
7576143Snate@binkert.org    for i in xrange(0, len(data), step):
7586727Ssteve.reinhardt@amd.com        x = array.array('B', data[i:i+step])
7595517Snate@binkert.org        code(''.join('%d,' % d for d in x))
7606727Ssteve.reinhardt@amd.com    code.dedent()
7615517Snate@binkert.org    
7625517Snate@binkert.org    code('''};
7635517Snate@binkert.org
7646654Snate@binkert.orgEmbeddedPython embedded_${sym}(
7656654Snate@binkert.org    ${{c_str(pysource.arcname)}},
7667673Snate@binkert.org    ${{c_str(pysource.abspath)}},
7676654Snate@binkert.org    ${{c_str(pysource.modpath)}},
7686654Snate@binkert.org    data_${sym},
7696654Snate@binkert.org    ${{len(data)}},
7706654Snate@binkert.org    ${{len(marshalled)}});
7715517Snate@binkert.org
7725517Snate@binkert.org} // anonymous namespace
7735517Snate@binkert.org''')
7746143Snate@binkert.org    code.write(str(target[0]))
7755517Snate@binkert.org
7764762Snate@binkert.orgfor source in PySource.all:
7775517Snate@binkert.org    env.Command(source.cpp, source.tnode, 
7785517Snate@binkert.org                MakeAction(embedPyFile, Transform("EMBED PY")))
7796143Snate@binkert.org    Source(source.cpp)
7806143Snate@binkert.org
7815517Snate@binkert.org########################################################################
7825517Snate@binkert.org#
7835517Snate@binkert.org# Define binaries.  Each different build type (debug, opt, etc.) gets
7845517Snate@binkert.org# a slightly different build environment.
7855517Snate@binkert.org#
7865517Snate@binkert.org
7875517Snate@binkert.org# List of constructed environments to pass back to SConstruct
7885517Snate@binkert.orgenvList = []
7895517Snate@binkert.org
7906143Snate@binkert.orgdate_source = Source('base/date.cc', skip_lib=True)
7915517Snate@binkert.org
7926654Snate@binkert.org# Function to create a new build environment as clone of current
7936654Snate@binkert.org# environment 'env' with modified object suffix and optional stripped
7946654Snate@binkert.org# binary.  Additional keyword arguments are appended to corresponding
7956654Snate@binkert.org# build environment vars.
7966654Snate@binkert.orgdef makeEnv(label, objsfx, strip = False, **kwargs):
7976654Snate@binkert.org    # SCons doesn't know to append a library suffix when there is a '.' in the
7984762Snate@binkert.org    # name.  Use '_' instead.
7994762Snate@binkert.org    libname = 'm5_' + label
8004762Snate@binkert.org    exename = 'm5.' + label
8014762Snate@binkert.org
8024762Snate@binkert.org    new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's')
8037675Snate@binkert.org    new_env.Label = label
80410584Sandreas.hansson@arm.com    new_env.Append(**kwargs)
8054762Snate@binkert.org
8064762Snate@binkert.org    swig_env = new_env.Clone()
8074762Snate@binkert.org    swig_env.Append(CCFLAGS='-Werror')
8084762Snate@binkert.org    if env['GCC']:
8094382Sbinkertn@umich.edu        swig_env.Append(CCFLAGS='-Wno-uninitialized')
8104382Sbinkertn@umich.edu        swig_env.Append(CCFLAGS='-Wno-sign-compare')
8115517Snate@binkert.org        swig_env.Append(CCFLAGS='-Wno-parentheses')
8126654Snate@binkert.org
8135517Snate@binkert.org    werror_env = new_env.Clone()
8148126Sgblack@eecs.umich.edu    werror_env.Append(CCFLAGS='-Werror')
8156654Snate@binkert.org
8167673Snate@binkert.org    def make_obj(source, static, extra_deps = None):
8176654Snate@binkert.org        '''This function adds the specified source to the correct
81811802Sandreas.sandberg@arm.com        build environment, and returns the corresponding SCons Object
8196654Snate@binkert.org        nodes'''
8206654Snate@binkert.org
8216654Snate@binkert.org        if source.swig:
8226654Snate@binkert.org            env = swig_env
82311802Sandreas.sandberg@arm.com        elif source.Werror:
8246669Snate@binkert.org            env = werror_env
82511802Sandreas.sandberg@arm.com        else:
8266669Snate@binkert.org            env = new_env
8276669Snate@binkert.org
8286669Snate@binkert.org        if static:
8296669Snate@binkert.org            obj = env.StaticObject(source.tnode)
8306654Snate@binkert.org        else:
8317673Snate@binkert.org            obj = env.SharedObject(source.tnode)
8325517Snate@binkert.org
8338126Sgblack@eecs.umich.edu        if extra_deps:
8345798Snate@binkert.org            env.Depends(obj, extra_deps)
8357756SAli.Saidi@ARM.com
8367816Ssteve.reinhardt@amd.com        return obj
8375798Snate@binkert.org
8385798Snate@binkert.org    static_objs = [ make_obj(s, True) for s in Source.get(skip_lib=False)]
8395517Snate@binkert.org    shared_objs = [ make_obj(s, False) for s in Source.get(skip_lib=False)]
8405517Snate@binkert.org
8417673Snate@binkert.org    static_date = make_obj(date_source, static=True, extra_deps=static_objs)
8425517Snate@binkert.org    static_objs.append(static_date)
8435517Snate@binkert.org    
8447673Snate@binkert.org    shared_date = make_obj(date_source, static=False, extra_deps=shared_objs)
8457673Snate@binkert.org    shared_objs.append(shared_date)
8465517Snate@binkert.org
8475798Snate@binkert.org    # First make a library of everything but main() so other programs can
8485798Snate@binkert.org    # link against m5.
8498333Snate@binkert.org    static_lib = new_env.StaticLibrary(libname, static_objs)
8507816Ssteve.reinhardt@amd.com    shared_lib = new_env.SharedLibrary(libname, shared_objs)
8515798Snate@binkert.org
8525798Snate@binkert.org    for target, sources in unit_tests:
8534762Snate@binkert.org        objs = [ make_obj(s, static=True) for s in sources ]
8544762Snate@binkert.org        new_env.Program("unittest/%s.%s" % (target, label), objs + static_objs)
8554762Snate@binkert.org
8564762Snate@binkert.org    # Now link a stub with main() and the static library.
8574762Snate@binkert.org    bin_objs = [make_obj(s, True) for s in Source.get(bin_only=True) ]
8588596Ssteve.reinhardt@amd.com    progname = exename
8595517Snate@binkert.org    if strip:
8605517Snate@binkert.org        progname += '.unstripped'
86111997Sgabeblack@google.com
8625517Snate@binkert.org    targets = new_env.Program(progname, bin_objs + static_objs)
8635517Snate@binkert.org
8647673Snate@binkert.org    if strip:
8658596Ssteve.reinhardt@amd.com        if sys.platform == 'sunos5':
8667673Snate@binkert.org            cmd = 'cp $SOURCE $TARGET; strip $TARGET'
8675517Snate@binkert.org        else:
86810458Sandreas.hansson@arm.com            cmd = 'strip $SOURCE -o $TARGET'
86910458Sandreas.hansson@arm.com        targets = new_env.Command(exename, progname,
87010458Sandreas.hansson@arm.com                    MakeAction(cmd, Transform("STRIP")))
87110458Sandreas.hansson@arm.com            
87210458Sandreas.hansson@arm.com    new_env.M5Binary = targets[0]
87310458Sandreas.hansson@arm.com    envList.append(new_env)
87410458Sandreas.hansson@arm.com
87510458Sandreas.hansson@arm.com# Debug binary
87610458Sandreas.hansson@arm.comccflags = {}
87710458Sandreas.hansson@arm.comif env['GCC']:
87810458Sandreas.hansson@arm.com    if sys.platform == 'sunos5':
87910458Sandreas.hansson@arm.com        ccflags['debug'] = '-gstabs+'
8805517Snate@binkert.org    else:
88111996Sgabeblack@google.com        ccflags['debug'] = '-ggdb3'
8825517Snate@binkert.org    ccflags['opt'] = '-g -O3'
88311997Sgabeblack@google.com    ccflags['fast'] = '-O3'
88411996Sgabeblack@google.com    ccflags['prof'] = '-O3 -g -pg'
8855517Snate@binkert.orgelif env['SUNCC']:
8865517Snate@binkert.org    ccflags['debug'] = '-g0'
8877673Snate@binkert.org    ccflags['opt'] = '-g -O'
8887673Snate@binkert.org    ccflags['fast'] = '-fast'
88911996Sgabeblack@google.com    ccflags['prof'] = '-fast -g -pg'
89011988Sandreas.sandberg@arm.comelif env['ICC']:
8917673Snate@binkert.org    ccflags['debug'] = '-g -O0'
8925517Snate@binkert.org    ccflags['opt'] = '-g -O'
8938596Ssteve.reinhardt@amd.com    ccflags['fast'] = '-fast'
8945517Snate@binkert.org    ccflags['prof'] = '-fast -g -pg'
8955517Snate@binkert.orgelse:
89611997Sgabeblack@google.com    print 'Unknown compiler, please fix compiler options'
8975517Snate@binkert.org    Exit(1)
8985517Snate@binkert.org
8997673Snate@binkert.orgmakeEnv('debug', '.do',
9007673Snate@binkert.org        CCFLAGS = Split(ccflags['debug']),
9017673Snate@binkert.org        CPPDEFINES = ['DEBUG', 'TRACING_ON=1'])
9025517Snate@binkert.org
90311988Sandreas.sandberg@arm.com# Optimized binary
90411997Sgabeblack@google.commakeEnv('opt', '.o',
9058596Ssteve.reinhardt@amd.com        CCFLAGS = Split(ccflags['opt']),
9068596Ssteve.reinhardt@amd.com        CPPDEFINES = ['TRACING_ON=1'])
9078596Ssteve.reinhardt@amd.com
90811988Sandreas.sandberg@arm.com# "Fast" binary
9098596Ssteve.reinhardt@amd.commakeEnv('fast', '.fo', strip = True,
9108596Ssteve.reinhardt@amd.com        CCFLAGS = Split(ccflags['fast']),
9118596Ssteve.reinhardt@amd.com        CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'])
9124762Snate@binkert.org
9136143Snate@binkert.org# Profiled binary
9146143Snate@binkert.orgmakeEnv('prof', '.po',
9156143Snate@binkert.org        CCFLAGS = Split(ccflags['prof']),
9164762Snate@binkert.org        CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
9174762Snate@binkert.org        LINKFLAGS = '-pg')
9184762Snate@binkert.org
9197756SAli.Saidi@ARM.comReturn('envList')
9208596Ssteve.reinhardt@amd.com