SConscript revision 5797
1955SN/A# -*- mode:python -*- 2955SN/A 31762SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan 4955SN/A# All rights reserved. 5955SN/A# 6955SN/A# Redistribution and use in source and binary forms, with or without 7955SN/A# modification, are permitted provided that the following conditions are 8955SN/A# met: redistributions of source code must retain the above copyright 9955SN/A# notice, this list of conditions and the following disclaimer; 10955SN/A# redistributions in binary form must reproduce the above copyright 11955SN/A# notice, this list of conditions and the following disclaimer in the 12955SN/A# documentation and/or other materials provided with the distribution; 13955SN/A# neither the name of the copyright holders nor the names of its 14955SN/A# contributors may be used to endorse or promote products derived from 15955SN/A# this software without specific prior written permission. 16955SN/A# 17955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 282665Ssaidi@eecs.umich.edu# 294762Snate@binkert.org# Authors: Nathan Binkert 30955SN/A 315522Snate@binkert.orgimport array 326143Snate@binkert.orgimport imp 334762Snate@binkert.orgimport marshal 345522Snate@binkert.orgimport os 35955SN/Aimport re 365522Snate@binkert.orgimport sys 3711974Sgabeblack@google.comimport zlib 38955SN/A 395522Snate@binkert.orgfrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath 404202Sbinkertn@umich.edu 415742Snate@binkert.orgimport SCons 42955SN/A 434381Sbinkertn@umich.edu# This file defines how to build a particular configuration of M5 444381Sbinkertn@umich.edu# based on variable settings in the 'env' build environment. 458334Snate@binkert.org 46955SN/AImport('*') 47955SN/A 484202Sbinkertn@umich.edu# Children need to see the environment 49955SN/AExport('env') 504382Sbinkertn@umich.edu 514382Sbinkertn@umich.edubuild_env = dict([(opt, env[opt]) for opt in env.ExportOptions]) 524382Sbinkertn@umich.edu 536654Snate@binkert.orgdef sort_list(_list): 545517Snate@binkert.org """return a sorted copy of '_list'""" 558614Sgblack@eecs.umich.edu if isinstance(_list, list): 567674Snate@binkert.org _list = _list[:] 576143Snate@binkert.org else: 586143Snate@binkert.org _list = list(_list) 596143Snate@binkert.org _list.sort() 608233Snate@binkert.org return _list 618233Snate@binkert.org 628233Snate@binkert.orgclass PySourceFile(object): 638233Snate@binkert.org invalid_sym_char = re.compile('[^A-z0-9_]') 648233Snate@binkert.org def __init__(self, package, tnode): 658334Snate@binkert.org snode = tnode.srcnode() 668334Snate@binkert.org filename = str(tnode) 6710453SAndrew.Bardsley@arm.com pyname = basename(filename) 6810453SAndrew.Bardsley@arm.com assert pyname.endswith('.py') 698233Snate@binkert.org name = pyname[:-3] 708233Snate@binkert.org if package: 718233Snate@binkert.org path = package.split('.') 728233Snate@binkert.org else: 738233Snate@binkert.org path = [] 748233Snate@binkert.org 7511983Sgabeblack@google.com modpath = path[:] 7611983Sgabeblack@google.com if name != '__init__': 7711983Sgabeblack@google.com modpath += [name] 7811983Sgabeblack@google.com modpath = '.'.join(modpath) 7911983Sgabeblack@google.com 8011983Sgabeblack@google.com arcpath = path + [ pyname ] 8111983Sgabeblack@google.com arcname = joinpath(*arcpath) 8211983Sgabeblack@google.com 8311983Sgabeblack@google.com debugname = snode.abspath 8411983Sgabeblack@google.com if not exists(debugname): 8511983Sgabeblack@google.com debugname = tnode.abspath 866143Snate@binkert.org 878233Snate@binkert.org self.tnode = tnode 888233Snate@binkert.org self.snode = snode 898233Snate@binkert.org self.pyname = pyname 906143Snate@binkert.org self.package = package 916143Snate@binkert.org self.modpath = modpath 926143Snate@binkert.org self.arcname = arcname 9311308Santhony.gutierrez@amd.com self.debugname = debugname 948233Snate@binkert.org self.compiled = File(filename + 'c') 958233Snate@binkert.org self.assembly = File(filename + '.s') 968233Snate@binkert.org self.symname = "PyEMB_" + self.invalid_sym_char.sub('_', modpath) 9711983Sgabeblack@google.com 9811983Sgabeblack@google.com 994762Snate@binkert.org######################################################################## 1006143Snate@binkert.org# Code for adding source files of various types 1018233Snate@binkert.org# 1028233Snate@binkert.orgcc_lib_sources = [] 1038233Snate@binkert.orgdef Source(source): 1048233Snate@binkert.org '''Add a source file to the libm5 build''' 1058233Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1066143Snate@binkert.org source = File(source) 1078233Snate@binkert.org 1088233Snate@binkert.org cc_lib_sources.append(source) 1098233Snate@binkert.org 1108233Snate@binkert.orgcc_bin_sources = [] 1116143Snate@binkert.orgdef BinSource(source): 1126143Snate@binkert.org '''Add a source file to the m5 binary build''' 1136143Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1146143Snate@binkert.org source = File(source) 1156143Snate@binkert.org 1166143Snate@binkert.org cc_bin_sources.append(source) 1176143Snate@binkert.org 1186143Snate@binkert.orgpy_sources = [] 1196143Snate@binkert.orgdef PySource(package, source): 1207065Snate@binkert.org '''Add a python source file to the named package''' 1216143Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1228233Snate@binkert.org source = File(source) 1238233Snate@binkert.org 1248233Snate@binkert.org source = PySourceFile(package, source) 1258233Snate@binkert.org py_sources.append(source) 1268233Snate@binkert.org 1278233Snate@binkert.orgsim_objects_fixed = False 1288233Snate@binkert.orgsim_object_modfiles = set() 1298233Snate@binkert.orgdef SimObject(source): 1308233Snate@binkert.org '''Add a SimObject python file as a python source object and add 1318233Snate@binkert.org it to a list of sim object modules''' 1328233Snate@binkert.org 1338233Snate@binkert.org if sim_objects_fixed: 1348233Snate@binkert.org raise AttributeError, "Too late to call SimObject now." 1358233Snate@binkert.org 1368233Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1378233Snate@binkert.org source = File(source) 1388233Snate@binkert.org 1398233Snate@binkert.org PySource('m5.objects', source) 1408233Snate@binkert.org modfile = basename(str(source)) 1418233Snate@binkert.org assert modfile.endswith('.py') 1428233Snate@binkert.org modname = modfile[:-3] 1438233Snate@binkert.org sim_object_modfiles.add(modname) 1448233Snate@binkert.org 1458233Snate@binkert.orgswig_sources = [] 1468233Snate@binkert.orgdef SwigSource(package, source): 1478233Snate@binkert.org '''Add a swig file to build''' 1488233Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1498233Snate@binkert.org source = File(source) 1508233Snate@binkert.org val = source,package 1518233Snate@binkert.org swig_sources.append(val) 1528233Snate@binkert.org 1536143Snate@binkert.orgunit_tests = [] 1546143Snate@binkert.orgdef UnitTest(target, sources): 1556143Snate@binkert.org if not isinstance(sources, (list, tuple)): 1566143Snate@binkert.org sources = [ sources ] 1576143Snate@binkert.org 1586143Snate@binkert.org srcs = [] 1599982Satgutier@umich.edu for source in sources: 16010196SCurtis.Dunham@arm.com if not isinstance(source, SCons.Node.FS.File): 16110196SCurtis.Dunham@arm.com source = File(source) 16210196SCurtis.Dunham@arm.com srcs.append(source) 16310196SCurtis.Dunham@arm.com 16410196SCurtis.Dunham@arm.com unit_tests.append((target, srcs)) 16510196SCurtis.Dunham@arm.com 16610196SCurtis.Dunham@arm.com# Children should have access 16710196SCurtis.Dunham@arm.comExport('Source') 1686143Snate@binkert.orgExport('BinSource') 16911983Sgabeblack@google.comExport('PySource') 17011983Sgabeblack@google.comExport('SimObject') 17111983Sgabeblack@google.comExport('SwigSource') 17211983Sgabeblack@google.comExport('UnitTest') 17311983Sgabeblack@google.com 17411983Sgabeblack@google.com######################################################################## 17511983Sgabeblack@google.com# 17611983Sgabeblack@google.com# Trace Flags 17711983Sgabeblack@google.com# 1786143Snate@binkert.orgall_flags = {} 17911988Sandreas.sandberg@arm.comtrace_flags = [] 1808233Snate@binkert.orgdef TraceFlag(name, desc=''): 1818233Snate@binkert.org if name in all_flags: 1826143Snate@binkert.org raise AttributeError, "Flag %s already specified" % name 1838945Ssteve.reinhardt@amd.com flag = (name, (), desc) 1846143Snate@binkert.org trace_flags.append(flag) 18511983Sgabeblack@google.com all_flags[name] = () 18611983Sgabeblack@google.com 1876143Snate@binkert.orgdef CompoundFlag(name, flags, desc=''): 1886143Snate@binkert.org if name in all_flags: 1895522Snate@binkert.org raise AttributeError, "Flag %s already specified" % name 1906143Snate@binkert.org 1916143Snate@binkert.org compound = tuple(flags) 1926143Snate@binkert.org for flag in compound: 1939982Satgutier@umich.edu if flag not in all_flags: 1948233Snate@binkert.org raise AttributeError, "Trace flag %s not found" % flag 1958233Snate@binkert.org if all_flags[flag]: 1968233Snate@binkert.org raise AttributeError, \ 1976143Snate@binkert.org "Compound flag can't point to another compound flag" 1986143Snate@binkert.org 1996143Snate@binkert.org flag = (name, compound, desc) 2006143Snate@binkert.org trace_flags.append(flag) 2015522Snate@binkert.org all_flags[name] = compound 2025522Snate@binkert.org 2035522Snate@binkert.orgExport('TraceFlag') 2045522Snate@binkert.orgExport('CompoundFlag') 2055604Snate@binkert.org 2065604Snate@binkert.org######################################################################## 2076143Snate@binkert.org# 2086143Snate@binkert.org# Set some compiler variables 2094762Snate@binkert.org# 2104762Snate@binkert.org 2116143Snate@binkert.org# Include file paths are rooted in this directory. SCons will 2126727Ssteve.reinhardt@amd.com# automatically expand '.' to refer to both the source directory and 2136727Ssteve.reinhardt@amd.com# the corresponding build directory to pick up generated include 2146727Ssteve.reinhardt@amd.com# files. 2154762Snate@binkert.orgenv.Append(CPPPATH=Dir('.')) 2166143Snate@binkert.org 2176143Snate@binkert.orgfor extra_dir in extras_dir_list: 2186143Snate@binkert.org env.Append(CPPPATH=Dir(extra_dir)) 2196143Snate@binkert.org 2206727Ssteve.reinhardt@amd.com# Add a flag defining what THE_ISA should be for all compilation 2216143Snate@binkert.orgenv.Append(CPPDEFINES=[('THE_ISA','%s_ISA' % env['TARGET_ISA'].upper())]) 2227674Snate@binkert.org 2237674Snate@binkert.org# Workaround for bug in SCons version > 0.97d20071212 2245604Snate@binkert.org# Scons bug id: 2006 M5 Bug id: 308 2256143Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True): 2266143Snate@binkert.org Dir(root[len(base_dir) + 1:]) 2276143Snate@binkert.org 2284762Snate@binkert.org######################################################################## 2296143Snate@binkert.org# 2304762Snate@binkert.org# Walk the tree and execute all SConscripts in subdirectories 2314762Snate@binkert.org# 2324762Snate@binkert.org 2336143Snate@binkert.orghere = Dir('.').srcnode().abspath 2346143Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True): 2354762Snate@binkert.org if root == here: 2368233Snate@binkert.org # we don't want to recurse back into this SConscript 2378233Snate@binkert.org continue 2388233Snate@binkert.org 2398233Snate@binkert.org if 'SConscript' in files: 2406143Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:]) 2416143Snate@binkert.org SConscript(joinpath(root, 'SConscript'), build_dir=build_dir) 2424762Snate@binkert.org 2436143Snate@binkert.orgfor extra_dir in extras_dir_list: 2444762Snate@binkert.org prefix_len = len(dirname(extra_dir)) + 1 2459396Sandreas.hansson@arm.com for root, dirs, files in os.walk(extra_dir, topdown=True): 2469396Sandreas.hansson@arm.com if 'SConscript' in files: 2479396Sandreas.hansson@arm.com build_dir = joinpath(env['BUILDDIR'], root[prefix_len:]) 2489396Sandreas.hansson@arm.com SConscript(joinpath(root, 'SConscript'), build_dir=build_dir) 2499396Sandreas.hansson@arm.com 2509396Sandreas.hansson@arm.comfor opt in env.ExportOptions: 2519396Sandreas.hansson@arm.com env.ConfigFile(opt) 2529396Sandreas.hansson@arm.com 2539396Sandreas.hansson@arm.com######################################################################## 2549396Sandreas.hansson@arm.com# 2559396Sandreas.hansson@arm.com# Prevent any SimObjects from being added after this point, they 2569396Sandreas.hansson@arm.com# should all have been added in the SConscripts above 2579396Sandreas.hansson@arm.com# 2589930Sandreas.hansson@arm.comclass DictImporter(object): 2599930Sandreas.hansson@arm.com '''This importer takes a dictionary of arbitrary module names that 2609396Sandreas.hansson@arm.com map to arbitrary filenames.''' 2618235Snate@binkert.org def __init__(self, modules): 2628235Snate@binkert.org self.modules = modules 2636143Snate@binkert.org self.installed = set() 2648235Snate@binkert.org 2659003SAli.Saidi@ARM.com def __del__(self): 2668235Snate@binkert.org self.unload() 2678235Snate@binkert.org 2688235Snate@binkert.org def unload(self): 2698235Snate@binkert.org import sys 2708235Snate@binkert.org for module in self.installed: 2718235Snate@binkert.org del sys.modules[module] 2728235Snate@binkert.org self.installed = set() 2738235Snate@binkert.org 2748235Snate@binkert.org def find_module(self, fullname, path): 2758235Snate@binkert.org if fullname == '__scons': 2768235Snate@binkert.org return self 2778235Snate@binkert.org 2788235Snate@binkert.org if fullname == 'm5.objects': 2798235Snate@binkert.org return self 2809003SAli.Saidi@ARM.com 2818235Snate@binkert.org if fullname.startswith('m5.internal'): 2825584Snate@binkert.org return None 2834382Sbinkertn@umich.edu 2844202Sbinkertn@umich.edu if fullname in self.modules and exists(self.modules[fullname]): 2854382Sbinkertn@umich.edu return self 2864382Sbinkertn@umich.edu 2879396Sandreas.hansson@arm.com return None 2885584Snate@binkert.org 2894382Sbinkertn@umich.edu def load_module(self, fullname): 2904382Sbinkertn@umich.edu mod = imp.new_module(fullname) 2914382Sbinkertn@umich.edu sys.modules[fullname] = mod 2928232Snate@binkert.org self.installed.add(fullname) 2935192Ssaidi@eecs.umich.edu 2948232Snate@binkert.org mod.__loader__ = self 2958232Snate@binkert.org if fullname == 'm5.objects': 2968232Snate@binkert.org mod.__path__ = fullname.split('.') 2975192Ssaidi@eecs.umich.edu return mod 2988232Snate@binkert.org 2995192Ssaidi@eecs.umich.edu if fullname == '__scons': 3005799Snate@binkert.org mod.__dict__['m5_build_env'] = build_env 3018232Snate@binkert.org return mod 3025192Ssaidi@eecs.umich.edu 3035192Ssaidi@eecs.umich.edu srcfile = self.modules[fullname] 3045192Ssaidi@eecs.umich.edu if basename(srcfile) == '__init__.py': 3058232Snate@binkert.org mod.__path__ = fullname.split('.') 3065192Ssaidi@eecs.umich.edu mod.__file__ = srcfile 3078232Snate@binkert.org 3085192Ssaidi@eecs.umich.edu exec file(srcfile, 'r') in mod.__dict__ 3095192Ssaidi@eecs.umich.edu 3105192Ssaidi@eecs.umich.edu return mod 3115192Ssaidi@eecs.umich.edu 3124382Sbinkertn@umich.edupy_modules = {} 3134382Sbinkertn@umich.edufor source in py_sources: 3144382Sbinkertn@umich.edu py_modules[source.modpath] = source.snode.abspath 3152667Sstever@eecs.umich.edu 3162667Sstever@eecs.umich.edu# install the python importer so we can grab stuff from the source 3172667Sstever@eecs.umich.edu# tree itself. We can't have SimObjects added after this point or 3182667Sstever@eecs.umich.edu# else we won't know about them for the rest of the stuff. 3192667Sstever@eecs.umich.edusim_objects_fixed = True 3202667Sstever@eecs.umich.eduimporter = DictImporter(py_modules) 3215742Snate@binkert.orgsys.meta_path[0:0] = [ importer ] 3225742Snate@binkert.org 3235742Snate@binkert.orgimport m5 3245793Snate@binkert.org 3258334Snate@binkert.org# import all sim objects so we can populate the all_objects list 3265793Snate@binkert.org# make sure that we're working with a list, then let's sort it 3275793Snate@binkert.orgsim_objects = list(sim_object_modfiles) 3285793Snate@binkert.orgsim_objects.sort() 3294382Sbinkertn@umich.edufor simobj in sim_objects: 3304762Snate@binkert.org exec('from m5.objects import %s' % simobj) 3315344Sstever@gmail.com 3324382Sbinkertn@umich.edu# we need to unload all of the currently imported modules so that they 3335341Sstever@gmail.com# will be re-imported the next time the sconscript is run 3345742Snate@binkert.orgimporter.unload() 3355742Snate@binkert.orgsys.meta_path.remove(importer) 3365742Snate@binkert.org 3375742Snate@binkert.orgsim_objects = m5.SimObject.allClasses 3385742Snate@binkert.orgall_enums = m5.params.allEnums 3394762Snate@binkert.org 3405742Snate@binkert.orgall_params = {} 3415742Snate@binkert.orgfor name,obj in sim_objects.iteritems(): 34211984Sgabeblack@google.com for param in obj._params.local.values(): 3437722Sgblack@eecs.umich.edu if not hasattr(param, 'swig_decl'): 3445742Snate@binkert.org continue 3455742Snate@binkert.org pname = param.ptype_str 3465742Snate@binkert.org if pname not in all_params: 3479930Sandreas.hansson@arm.com all_params[pname] = param 3489930Sandreas.hansson@arm.com 3499930Sandreas.hansson@arm.com######################################################################## 3509930Sandreas.hansson@arm.com# 3519930Sandreas.hansson@arm.com# calculate extra dependencies 3525742Snate@binkert.org# 3538242Sbradley.danofsky@amd.commodule_depends = ["m5", "m5.SimObject", "m5.params"] 3548242Sbradley.danofsky@amd.comdepends = [ File(py_modules[dep]) for dep in module_depends ] 3558242Sbradley.danofsky@amd.com 3568242Sbradley.danofsky@amd.com######################################################################## 3575341Sstever@gmail.com# 3585742Snate@binkert.org# Commands for the basic automatically generated python files 3597722Sgblack@eecs.umich.edu# 3604773Snate@binkert.org 3616108Snate@binkert.org# Generate Python file containing a dict specifying the current 3621858SN/A# build_env flags. 3631085SN/Adef makeDefinesPyFile(target, source, env): 3646658Snate@binkert.org f = file(str(target[0]), 'w') 3656658Snate@binkert.org print >>f, "m5_build_env = ", source[0] 3667673Snate@binkert.org f.close() 3676658Snate@binkert.org 3686658Snate@binkert.org# Generate python file containing info about the M5 source code 36911308Santhony.gutierrez@amd.comdef makeInfoPyFile(target, source, env): 3706658Snate@binkert.org f = file(str(target[0]), 'w') 37111308Santhony.gutierrez@amd.com for src in source: 3726658Snate@binkert.org data = ''.join(file(src.srcnode().abspath, 'r').xreadlines()) 3736658Snate@binkert.org print >>f, "%s = %s" % (src, repr(data)) 3747673Snate@binkert.org f.close() 3757673Snate@binkert.org 3767673Snate@binkert.org# Generate the __init__.py file for m5.objects 3777673Snate@binkert.orgdef makeObjectsInitFile(target, source, env): 3787673Snate@binkert.org f = file(str(target[0]), 'w') 3797673Snate@binkert.org print >>f, 'from params import *' 3807673Snate@binkert.org print >>f, 'from m5.SimObject import *' 38110467Sandreas.hansson@arm.com for module in source: 3826658Snate@binkert.org print >>f, 'from %s import *' % module.get_contents() 3837673Snate@binkert.org f.close() 38410467Sandreas.hansson@arm.com 38510467Sandreas.hansson@arm.com# Generate a file with all of the compile options in it 38610467Sandreas.hansson@arm.comenv.Command('python/m5/defines.py', Value(build_env), makeDefinesPyFile) 38710467Sandreas.hansson@arm.comPySource('m5', 'python/m5/defines.py') 38810467Sandreas.hansson@arm.com 38910467Sandreas.hansson@arm.com# Generate a file that wraps the basic top level files 39010467Sandreas.hansson@arm.comenv.Command('python/m5/info.py', 39110467Sandreas.hansson@arm.com [ '#/AUTHORS', '#/LICENSE', '#/README', '#/RELEASE_NOTES' ], 39210467Sandreas.hansson@arm.com makeInfoPyFile) 39310467Sandreas.hansson@arm.comPySource('m5', 'python/m5/info.py') 39410467Sandreas.hansson@arm.com 3957673Snate@binkert.org# Generate an __init__.py file for the objects package 3967673Snate@binkert.orgenv.Command('python/m5/objects/__init__.py', 3977673Snate@binkert.org [ Value(o) for o in sort_list(sim_object_modfiles) ], 3987673Snate@binkert.org makeObjectsInitFile) 3997673Snate@binkert.orgPySource('m5.objects', 'python/m5/objects/__init__.py') 4009048SAli.Saidi@ARM.com 4017673Snate@binkert.org######################################################################## 4027673Snate@binkert.org# 4037673Snate@binkert.org# Create all of the SimObject param headers and enum headers 4047673Snate@binkert.org# 4056658Snate@binkert.org 4067756SAli.Saidi@ARM.comdef createSimObjectParam(target, source, env): 4077816Ssteve.reinhardt@amd.com assert len(target) == 1 and len(source) == 1 4086658Snate@binkert.org 40911308Santhony.gutierrez@amd.com hh_file = file(target[0].abspath, 'w') 41011308Santhony.gutierrez@amd.com name = str(source[0].get_contents()) 41111308Santhony.gutierrez@amd.com obj = sim_objects[name] 41211308Santhony.gutierrez@amd.com 41311308Santhony.gutierrez@amd.com print >>hh_file, obj.cxx_decl() 41411308Santhony.gutierrez@amd.com 41511308Santhony.gutierrez@amd.comdef createSwigParam(target, source, env): 41611308Santhony.gutierrez@amd.com assert len(target) == 1 and len(source) == 1 41711308Santhony.gutierrez@amd.com 41811308Santhony.gutierrez@amd.com i_file = file(target[0].abspath, 'w') 41911308Santhony.gutierrez@amd.com name = str(source[0].get_contents()) 42011308Santhony.gutierrez@amd.com param = all_params[name] 42111308Santhony.gutierrez@amd.com 42211308Santhony.gutierrez@amd.com for line in param.swig_decl(): 42311308Santhony.gutierrez@amd.com print >>i_file, line 42411308Santhony.gutierrez@amd.com 42511308Santhony.gutierrez@amd.comdef createEnumStrings(target, source, env): 42611308Santhony.gutierrez@amd.com assert len(target) == 1 and len(source) == 1 42711308Santhony.gutierrez@amd.com 42811308Santhony.gutierrez@amd.com cc_file = file(target[0].abspath, 'w') 42911308Santhony.gutierrez@amd.com name = str(source[0].get_contents()) 43011308Santhony.gutierrez@amd.com obj = all_enums[name] 43111308Santhony.gutierrez@amd.com 43211308Santhony.gutierrez@amd.com print >>cc_file, obj.cxx_def() 43311308Santhony.gutierrez@amd.com cc_file.close() 43411308Santhony.gutierrez@amd.com 43511308Santhony.gutierrez@amd.comdef createEnumParam(target, source, env): 43611308Santhony.gutierrez@amd.com assert len(target) == 1 and len(source) == 1 43711308Santhony.gutierrez@amd.com 43811308Santhony.gutierrez@amd.com hh_file = file(target[0].abspath, 'w') 43911308Santhony.gutierrez@amd.com name = str(source[0].get_contents()) 44011308Santhony.gutierrez@amd.com obj = all_enums[name] 44111308Santhony.gutierrez@amd.com 44211308Santhony.gutierrez@amd.com print >>hh_file, obj.cxx_decl() 44311308Santhony.gutierrez@amd.com 44411308Santhony.gutierrez@amd.com# Generate all of the SimObject param struct header files 44511308Santhony.gutierrez@amd.comparams_hh_files = [] 44611308Santhony.gutierrez@amd.comfor name,simobj in sim_objects.iteritems(): 44711308Santhony.gutierrez@amd.com extra_deps = [ File(py_modules[simobj.__module__]) ] 44811308Santhony.gutierrez@amd.com 44911308Santhony.gutierrez@amd.com hh_file = File('params/%s.hh' % name) 45011308Santhony.gutierrez@amd.com params_hh_files.append(hh_file) 45111308Santhony.gutierrez@amd.com env.Command(hh_file, Value(name), createSimObjectParam) 45211308Santhony.gutierrez@amd.com env.Depends(hh_file, depends + extra_deps) 45311308Santhony.gutierrez@amd.com 4544382Sbinkertn@umich.edu# Generate any parameter header files needed 4554382Sbinkertn@umich.eduparams_i_files = [] 4564762Snate@binkert.orgfor name,param in all_params.iteritems(): 4574762Snate@binkert.org if isinstance(param, m5.params.VectorParamDesc): 4584762Snate@binkert.org ext = 'vptype' 4596654Snate@binkert.org else: 4606654Snate@binkert.org ext = 'ptype' 4615517Snate@binkert.org 4625517Snate@binkert.org i_file = File('params/%s_%s.i' % (name, ext)) 4635517Snate@binkert.org params_i_files.append(i_file) 4645517Snate@binkert.org env.Command(i_file, Value(name), createSwigParam) 4655517Snate@binkert.org env.Depends(i_file, depends) 4665517Snate@binkert.org 4675517Snate@binkert.org# Generate all enum header files 4685517Snate@binkert.orgfor name,enum in all_enums.iteritems(): 4695517Snate@binkert.org extra_deps = [ File(py_modules[enum.__module__]) ] 4705517Snate@binkert.org 4715517Snate@binkert.org cc_file = File('enums/%s.cc' % name) 4725517Snate@binkert.org env.Command(cc_file, Value(name), createEnumStrings) 4735517Snate@binkert.org env.Depends(cc_file, depends + extra_deps) 4745517Snate@binkert.org Source(cc_file) 4755517Snate@binkert.org 4765517Snate@binkert.org hh_file = File('enums/%s.hh' % name) 4775517Snate@binkert.org env.Command(hh_file, Value(name), createEnumParam) 4786654Snate@binkert.org env.Depends(hh_file, depends + extra_deps) 4795517Snate@binkert.org 4805517Snate@binkert.org# Build the big monolithic swigged params module (wraps all SimObject 4815517Snate@binkert.org# param structs and enum structs) 4825517Snate@binkert.orgdef buildParams(target, source, env): 4835517Snate@binkert.org names = [ s.get_contents() for s in source ] 48411802Sandreas.sandberg@arm.com objs = [ sim_objects[name] for name in names ] 4855517Snate@binkert.org out = file(target[0].abspath, 'w') 4865517Snate@binkert.org 4876143Snate@binkert.org ordered_objs = [] 4886654Snate@binkert.org obj_seen = set() 4895517Snate@binkert.org def order_obj(obj): 4905517Snate@binkert.org name = str(obj) 4915517Snate@binkert.org if name in obj_seen: 4925517Snate@binkert.org return 4935517Snate@binkert.org 4945517Snate@binkert.org obj_seen.add(name) 4955517Snate@binkert.org if str(obj) != 'SimObject': 4965517Snate@binkert.org order_obj(obj.__bases__[0]) 4975517Snate@binkert.org 4985517Snate@binkert.org ordered_objs.append(obj) 4995517Snate@binkert.org 5005517Snate@binkert.org for obj in objs: 5015517Snate@binkert.org order_obj(obj) 5025517Snate@binkert.org 5036654Snate@binkert.org enums = set() 5046654Snate@binkert.org predecls = [] 5055517Snate@binkert.org pd_seen = set() 5065517Snate@binkert.org 5076143Snate@binkert.org def add_pds(*pds): 5086143Snate@binkert.org for pd in pds: 5096143Snate@binkert.org if pd not in pd_seen: 5106727Ssteve.reinhardt@amd.com predecls.append(pd) 5115517Snate@binkert.org pd_seen.add(pd) 5126727Ssteve.reinhardt@amd.com 5135517Snate@binkert.org for obj in ordered_objs: 5145517Snate@binkert.org params = obj._params.local.values() 5155517Snate@binkert.org for param in params: 5166654Snate@binkert.org ptype = param.ptype 5176654Snate@binkert.org if issubclass(ptype, m5.params.Enum): 5187673Snate@binkert.org if ptype not in enums: 5196654Snate@binkert.org enums.add(ptype) 5206654Snate@binkert.org pds = param.swig_predecls() 5216654Snate@binkert.org if isinstance(pds, (list, tuple)): 5226654Snate@binkert.org add_pds(*pds) 5235517Snate@binkert.org else: 5245517Snate@binkert.org add_pds(pds) 5255517Snate@binkert.org 5266143Snate@binkert.org print >>out, '%module params' 5275517Snate@binkert.org 5284762Snate@binkert.org print >>out, '%{' 5295517Snate@binkert.org for obj in ordered_objs: 5305517Snate@binkert.org print >>out, '#include "params/%s.hh"' % obj 5316143Snate@binkert.org print >>out, '%}' 5326143Snate@binkert.org 5335517Snate@binkert.org for pd in predecls: 5345517Snate@binkert.org print >>out, pd 5355517Snate@binkert.org 5365517Snate@binkert.org enums = list(enums) 5375517Snate@binkert.org enums.sort() 5385517Snate@binkert.org for enum in enums: 5395517Snate@binkert.org print >>out, '%%include "enums/%s.hh"' % enum.__name__ 5405517Snate@binkert.org print >>out 5415517Snate@binkert.org 5426143Snate@binkert.org for obj in ordered_objs: 5435517Snate@binkert.org if obj.swig_objdecls: 5446654Snate@binkert.org for decl in obj.swig_objdecls: 5456654Snate@binkert.org print >>out, decl 5466654Snate@binkert.org continue 5476654Snate@binkert.org 5486654Snate@binkert.org class_path = obj.cxx_class.split('::') 5496654Snate@binkert.org classname = class_path[-1] 5504762Snate@binkert.org namespaces = class_path[:-1] 5514762Snate@binkert.org namespaces.reverse() 5524762Snate@binkert.org 5534762Snate@binkert.org code = '' 5544762Snate@binkert.org 5557675Snate@binkert.org if namespaces: 55610584Sandreas.hansson@arm.com code += '// avoid name conflicts\n' 5574762Snate@binkert.org sep_string = '_COLONS_' 5584762Snate@binkert.org flat_name = sep_string.join(class_path) 5594762Snate@binkert.org code += '%%rename(%s) %s;\n' % (flat_name, classname) 5604762Snate@binkert.org 5614382Sbinkertn@umich.edu code += '// stop swig from creating/wrapping default ctor/dtor\n' 5624382Sbinkertn@umich.edu code += '%%nodefault %s;\n' % classname 5635517Snate@binkert.org code += 'class %s ' % classname 5646654Snate@binkert.org if obj._base: 5655517Snate@binkert.org code += ': public %s' % obj._base.cxx_class 5668126Sgblack@eecs.umich.edu code += ' {};\n' 5676654Snate@binkert.org 5687673Snate@binkert.org for ns in namespaces: 5696654Snate@binkert.org new_code = 'namespace %s {\n' % ns 57011802Sandreas.sandberg@arm.com new_code += code 5716654Snate@binkert.org new_code += '}\n' 5726654Snate@binkert.org code = new_code 5736654Snate@binkert.org 5746654Snate@binkert.org print >>out, code 57511802Sandreas.sandberg@arm.com 5766669Snate@binkert.org print >>out, '%%include "src/sim/sim_object_params.hh"' % obj 57711802Sandreas.sandberg@arm.com for obj in ordered_objs: 5786669Snate@binkert.org print >>out, '%%include "params/%s.hh"' % obj 5796669Snate@binkert.org 5806669Snate@binkert.orgparams_file = File('params/params.i') 5816669Snate@binkert.orgnames = sort_list(sim_objects.keys()) 5826654Snate@binkert.orgenv.Command(params_file, [ Value(v) for v in names ], buildParams) 5837673Snate@binkert.orgenv.Depends(params_file, params_hh_files + params_i_files + depends) 5845517Snate@binkert.orgSwigSource('m5.objects', params_file) 5858126Sgblack@eecs.umich.edu 5865798Snate@binkert.org# Build all swig modules 5877756SAli.Saidi@ARM.comswig_modules = [] 5887816Ssteve.reinhardt@amd.comcc_swig_sources = [] 5895798Snate@binkert.orgfor source,package in swig_sources: 5905798Snate@binkert.org filename = str(source) 5915517Snate@binkert.org assert filename.endswith('.i') 5925517Snate@binkert.org 5937673Snate@binkert.org base = '.'.join(filename.split('.')[:-1]) 5945517Snate@binkert.org module = basename(base) 5955517Snate@binkert.org cc_file = base + '_wrap.cc' 5967673Snate@binkert.org py_file = base + '.py' 5977673Snate@binkert.org 5985517Snate@binkert.org env.Command([cc_file, py_file], source, 5995798Snate@binkert.org '$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} ' 6005798Snate@binkert.org '-o ${TARGETS[0]} $SOURCES') 6018333Snate@binkert.org env.Depends(py_file, source) 6027816Ssteve.reinhardt@amd.com env.Depends(cc_file, source) 6035798Snate@binkert.org 6045798Snate@binkert.org swig_modules.append(Value(module)) 6054762Snate@binkert.org cc_swig_sources.append(File(cc_file)) 6064762Snate@binkert.org PySource(package, py_file) 6074762Snate@binkert.org 6084762Snate@binkert.org# Generate the main swig init file 6094762Snate@binkert.orgdef makeSwigInit(target, source, env): 6108596Ssteve.reinhardt@amd.com f = file(str(target[0]), 'w') 6115517Snate@binkert.org print >>f, 'extern "C" {' 6125517Snate@binkert.org for module in source: 61311997Sgabeblack@google.com print >>f, ' void init_%s();' % module.get_contents() 6145517Snate@binkert.org print >>f, '}' 6155517Snate@binkert.org print >>f, 'void initSwig() {' 6167673Snate@binkert.org for module in source: 6178596Ssteve.reinhardt@amd.com print >>f, ' init_%s();' % module.get_contents() 6187673Snate@binkert.org print >>f, '}' 6195517Snate@binkert.org f.close() 62010458Sandreas.hansson@arm.com 62110458Sandreas.hansson@arm.comenv.Command('python/swig/init.cc', swig_modules, makeSwigInit) 62210458Sandreas.hansson@arm.comSource('python/swig/init.cc') 62310458Sandreas.hansson@arm.com 62410458Sandreas.hansson@arm.com# Generate traceflags.py 62510458Sandreas.hansson@arm.comdef traceFlagsPy(target, source, env): 62610458Sandreas.hansson@arm.com assert(len(target) == 1) 62710458Sandreas.hansson@arm.com 62810458Sandreas.hansson@arm.com f = file(str(target[0]), 'w') 62910458Sandreas.hansson@arm.com 63010458Sandreas.hansson@arm.com allFlags = [] 63110458Sandreas.hansson@arm.com for s in source: 6325517Snate@binkert.org val = eval(s.get_contents()) 63311996Sgabeblack@google.com allFlags.append(val) 6345517Snate@binkert.org 63511997Sgabeblack@google.com print >>f, 'baseFlags = [' 63611996Sgabeblack@google.com for flag, compound, desc in allFlags: 6375517Snate@binkert.org if not compound: 6385517Snate@binkert.org print >>f, " '%s'," % flag 6397673Snate@binkert.org print >>f, " ]" 6407673Snate@binkert.org print >>f 64111996Sgabeblack@google.com 64211988Sandreas.sandberg@arm.com print >>f, 'compoundFlags = [' 6437673Snate@binkert.org print >>f, " 'All'," 6445517Snate@binkert.org for flag, compound, desc in allFlags: 6458596Ssteve.reinhardt@amd.com if compound: 6465517Snate@binkert.org print >>f, " '%s'," % flag 6475517Snate@binkert.org print >>f, " ]" 64811997Sgabeblack@google.com print >>f 6495517Snate@binkert.org 6505517Snate@binkert.org print >>f, "allFlags = frozenset(baseFlags + compoundFlags)" 6517673Snate@binkert.org print >>f 6527673Snate@binkert.org 6537673Snate@binkert.org print >>f, 'compoundFlagMap = {' 6545517Snate@binkert.org all = tuple([flag for flag,compound,desc in allFlags if not compound]) 65511988Sandreas.sandberg@arm.com print >>f, " 'All' : %s," % (all, ) 65611997Sgabeblack@google.com for flag, compound, desc in allFlags: 6578596Ssteve.reinhardt@amd.com if compound: 6588596Ssteve.reinhardt@amd.com print >>f, " '%s' : %s," % (flag, compound) 6598596Ssteve.reinhardt@amd.com print >>f, " }" 66011988Sandreas.sandberg@arm.com print >>f 6618596Ssteve.reinhardt@amd.com 6628596Ssteve.reinhardt@amd.com print >>f, 'flagDescriptions = {' 6638596Ssteve.reinhardt@amd.com print >>f, " 'All' : 'All flags'," 6644762Snate@binkert.org for flag, compound, desc in allFlags: 6656143Snate@binkert.org print >>f, " '%s' : '%s'," % (flag, desc) 6666143Snate@binkert.org print >>f, " }" 6676143Snate@binkert.org 6684762Snate@binkert.org f.close() 6694762Snate@binkert.org 6704762Snate@binkert.orgdef traceFlagsCC(target, source, env): 6717756SAli.Saidi@ARM.com assert(len(target) == 1) 6728596Ssteve.reinhardt@amd.com 6734762Snate@binkert.org f = file(str(target[0]), 'w') 6744762Snate@binkert.org 67510458Sandreas.hansson@arm.com allFlags = [] 67610458Sandreas.hansson@arm.com for s in source: 67710458Sandreas.hansson@arm.com val = eval(s.get_contents()) 67810458Sandreas.hansson@arm.com allFlags.append(val) 67910458Sandreas.hansson@arm.com 68010458Sandreas.hansson@arm.com # file header 68110458Sandreas.hansson@arm.com print >>f, ''' 68210458Sandreas.hansson@arm.com/* 68310458Sandreas.hansson@arm.com * DO NOT EDIT THIS FILE! Automatically generated 68410458Sandreas.hansson@arm.com */ 68510458Sandreas.hansson@arm.com 68610458Sandreas.hansson@arm.com#include "base/traceflags.hh" 68710458Sandreas.hansson@arm.com 68810458Sandreas.hansson@arm.comusing namespace Trace; 68910458Sandreas.hansson@arm.com 69010458Sandreas.hansson@arm.comconst char *Trace::flagStrings[] = 69110458Sandreas.hansson@arm.com{''' 69210458Sandreas.hansson@arm.com 69310458Sandreas.hansson@arm.com # The string array is used by SimpleEnumParam to map the strings 69410458Sandreas.hansson@arm.com # provided by the user to enum values. 69510458Sandreas.hansson@arm.com for flag, compound, desc in allFlags: 69610458Sandreas.hansson@arm.com if not compound: 69710458Sandreas.hansson@arm.com print >>f, ' "%s",' % flag 69810458Sandreas.hansson@arm.com 69910458Sandreas.hansson@arm.com print >>f, ' "All",' 70010458Sandreas.hansson@arm.com for flag, compound, desc in allFlags: 70110458Sandreas.hansson@arm.com if compound: 70210458Sandreas.hansson@arm.com print >>f, ' "%s",' % flag 70310458Sandreas.hansson@arm.com 70410458Sandreas.hansson@arm.com print >>f, '};' 70510458Sandreas.hansson@arm.com print >>f 70610458Sandreas.hansson@arm.com print >>f, 'const int Trace::numFlagStrings = %d;' % (len(allFlags) + 1) 70710458Sandreas.hansson@arm.com print >>f 70810458Sandreas.hansson@arm.com 70910458Sandreas.hansson@arm.com # 71010458Sandreas.hansson@arm.com # Now define the individual compound flag arrays. There is an array 71110458Sandreas.hansson@arm.com # for each compound flag listing the component base flags. 71210458Sandreas.hansson@arm.com # 71310458Sandreas.hansson@arm.com all = tuple([flag for flag,compound,desc in allFlags if not compound]) 71410458Sandreas.hansson@arm.com print >>f, 'static const Flags AllMap[] = {' 71510458Sandreas.hansson@arm.com for flag, compound, desc in allFlags: 71610458Sandreas.hansson@arm.com if not compound: 71710458Sandreas.hansson@arm.com print >>f, " %s," % flag 71810458Sandreas.hansson@arm.com print >>f, '};' 71910458Sandreas.hansson@arm.com print >>f 72010458Sandreas.hansson@arm.com 72110458Sandreas.hansson@arm.com for flag, compound, desc in allFlags: 72210458Sandreas.hansson@arm.com if not compound: 72310458Sandreas.hansson@arm.com continue 72410584Sandreas.hansson@arm.com print >>f, 'static const Flags %sMap[] = {' % flag 72510458Sandreas.hansson@arm.com for flag in compound: 72610458Sandreas.hansson@arm.com print >>f, " %s," % flag 72710458Sandreas.hansson@arm.com print >>f, " (Flags)-1" 72810458Sandreas.hansson@arm.com print >>f, '};' 72910458Sandreas.hansson@arm.com print >>f 7304762Snate@binkert.org 7316143Snate@binkert.org # 7326143Snate@binkert.org # Finally the compoundFlags[] array maps the compound flags 7336143Snate@binkert.org # to their individual arrays/ 7344762Snate@binkert.org # 7354762Snate@binkert.org print >>f, 'const Flags *Trace::compoundFlags[] =' 73611996Sgabeblack@google.com print >>f, '{' 7377816Ssteve.reinhardt@amd.com print >>f, ' AllMap,' 7384762Snate@binkert.org for flag, compound, desc in allFlags: 7394762Snate@binkert.org if compound: 7404762Snate@binkert.org print >>f, ' %sMap,' % flag 7414762Snate@binkert.org # file trailer 7427756SAli.Saidi@ARM.com print >>f, '};' 7438596Ssteve.reinhardt@amd.com 7444762Snate@binkert.org f.close() 7454762Snate@binkert.org 74611988Sandreas.sandberg@arm.comdef traceFlagsHH(target, source, env): 74711988Sandreas.sandberg@arm.com assert(len(target) == 1) 74811988Sandreas.sandberg@arm.com 74911988Sandreas.sandberg@arm.com f = file(str(target[0]), 'w') 75011988Sandreas.sandberg@arm.com 75111988Sandreas.sandberg@arm.com allFlags = [] 75211988Sandreas.sandberg@arm.com for s in source: 75311988Sandreas.sandberg@arm.com val = eval(s.get_contents()) 75411988Sandreas.sandberg@arm.com allFlags.append(val) 75511988Sandreas.sandberg@arm.com 75611988Sandreas.sandberg@arm.com # file header boilerplate 7574382Sbinkertn@umich.edu print >>f, ''' 7589396Sandreas.hansson@arm.com/* 7599396Sandreas.hansson@arm.com * DO NOT EDIT THIS FILE! 7609396Sandreas.hansson@arm.com * 7619396Sandreas.hansson@arm.com * Automatically generated from traceflags.py 7629396Sandreas.hansson@arm.com */ 7639396Sandreas.hansson@arm.com 7649396Sandreas.hansson@arm.com#ifndef __BASE_TRACE_FLAGS_HH__ 7659396Sandreas.hansson@arm.com#define __BASE_TRACE_FLAGS_HH__ 7669396Sandreas.hansson@arm.com 7679396Sandreas.hansson@arm.comnamespace Trace { 7689396Sandreas.hansson@arm.com 7699396Sandreas.hansson@arm.comenum Flags {''' 7709396Sandreas.hansson@arm.com 7719396Sandreas.hansson@arm.com # Generate the enum. Base flags come first, then compound flags. 7729396Sandreas.hansson@arm.com idx = 0 7739396Sandreas.hansson@arm.com for flag, compound, desc in allFlags: 7749396Sandreas.hansson@arm.com if not compound: 7759396Sandreas.hansson@arm.com print >>f, ' %s = %d,' % (flag, idx) 7768232Snate@binkert.org idx += 1 7778232Snate@binkert.org 7788232Snate@binkert.org numBaseFlags = idx 7798232Snate@binkert.org print >>f, ' NumFlags = %d,' % idx 7808232Snate@binkert.org 7816229Snate@binkert.org # put a comment in here to separate base from compound flags 78210455SCurtis.Dunham@arm.com print >>f, ''' 7836229Snate@binkert.org// The remaining enum values are *not* valid indices for Trace::flags. 78410455SCurtis.Dunham@arm.com// They are "compound" flags, which correspond to sets of base 78510455SCurtis.Dunham@arm.com// flags, and are used by changeFlag.''' 78610455SCurtis.Dunham@arm.com 7875517Snate@binkert.org print >>f, ' All = %d,' % idx 7885517Snate@binkert.org idx += 1 7897673Snate@binkert.org for flag, compound, desc in allFlags: 7905517Snate@binkert.org if compound: 79110455SCurtis.Dunham@arm.com print >>f, ' %s = %d,' % (flag, idx) 7925517Snate@binkert.org idx += 1 7935517Snate@binkert.org 7948232Snate@binkert.org numCompoundFlags = idx - numBaseFlags 79510455SCurtis.Dunham@arm.com print >>f, ' NumCompoundFlags = %d' % numCompoundFlags 79610455SCurtis.Dunham@arm.com 79710455SCurtis.Dunham@arm.com # trailer boilerplate 7987673Snate@binkert.org print >>f, '''\ 7997673Snate@binkert.org}; // enum Flags 80010455SCurtis.Dunham@arm.com 80110455SCurtis.Dunham@arm.com// Array of strings for SimpleEnumParam 80210455SCurtis.Dunham@arm.comextern const char *flagStrings[]; 8035517Snate@binkert.orgextern const int numFlagStrings; 80410455SCurtis.Dunham@arm.com 80510455SCurtis.Dunham@arm.com// Array of arraay pointers: for each compound flag, gives the list of 80610455SCurtis.Dunham@arm.com// base flags to set. Inidividual flag arrays are terminated by -1. 80710455SCurtis.Dunham@arm.comextern const Flags *compoundFlags[]; 80810455SCurtis.Dunham@arm.com 80910455SCurtis.Dunham@arm.com/* namespace Trace */ } 81010455SCurtis.Dunham@arm.com 81110455SCurtis.Dunham@arm.com#endif // __BASE_TRACE_FLAGS_HH__ 81210685Sandreas.hansson@arm.com''' 81310455SCurtis.Dunham@arm.com 81410685Sandreas.hansson@arm.com f.close() 81510455SCurtis.Dunham@arm.com 8165517Snate@binkert.orgflags = [ Value(f) for f in trace_flags ] 81710455SCurtis.Dunham@arm.comenv.Command('base/traceflags.py', flags, traceFlagsPy) 8188232Snate@binkert.orgPySource('m5', 'base/traceflags.py') 8198232Snate@binkert.org 8205517Snate@binkert.orgenv.Command('base/traceflags.hh', flags, traceFlagsHH) 8217673Snate@binkert.orgenv.Command('base/traceflags.cc', flags, traceFlagsCC) 8225517Snate@binkert.orgSource('base/traceflags.cc') 8238232Snate@binkert.org 8248232Snate@binkert.org# Generate program_info.cc 8255517Snate@binkert.orgdef programInfo(target, source, env): 8268232Snate@binkert.org def gen_file(target, rev, node, date): 8278232Snate@binkert.org pi_stats = file(target, 'w') 8288232Snate@binkert.org print >>pi_stats, 'const char *hgRev = "%s:%s";' % (rev, node) 8297673Snate@binkert.org print >>pi_stats, 'const char *hgDate = "%s";' % date 8305517Snate@binkert.org pi_stats.close() 8315517Snate@binkert.org 8327673Snate@binkert.org target = str(target[0]) 8335517Snate@binkert.org scons_dir = str(source[0].get_contents()) 83410455SCurtis.Dunham@arm.com try: 8355517Snate@binkert.org import mercurial.demandimport, mercurial.hg, mercurial.ui 8365517Snate@binkert.org import mercurial.util, mercurial.node 8378232Snate@binkert.org if not exists(scons_dir) or not isdir(scons_dir) or \ 8388232Snate@binkert.org not exists(joinpath(scons_dir, ".hg")): 8395517Snate@binkert.org raise ValueError 8408232Snate@binkert.org repo = mercurial.hg.repository(mercurial.ui.ui(), scons_dir) 8418232Snate@binkert.org rev = mercurial.node.nullrev + repo.changelog.count() 8425517Snate@binkert.org changenode = repo.changelog.node(rev) 8438232Snate@binkert.org changes = repo.changelog.read(changenode) 8448232Snate@binkert.org date = mercurial.util.datestr(changes[2]) 8458232Snate@binkert.org 8465517Snate@binkert.org gen_file(target, rev, mercurial.node.hex(changenode), date) 8478232Snate@binkert.org 8488232Snate@binkert.org mercurial.demandimport.disable() 8498232Snate@binkert.org except ImportError: 8508232Snate@binkert.org gen_file(target, "Unknown", "Unknown", "Unknown") 8518232Snate@binkert.org 8528232Snate@binkert.org except: 8535517Snate@binkert.org print "in except" 8548232Snate@binkert.org gen_file(target, "Unknown", "Unknown", "Unknown") 8558232Snate@binkert.org mercurial.demandimport.disable() 8565517Snate@binkert.org 8578232Snate@binkert.orgenv.Command('base/program_info.cc', 8587673Snate@binkert.org Value(str(SCons.Node.FS.default_fs.SConstruct_dir)), 8595517Snate@binkert.org programInfo) 8607673Snate@binkert.org 8615517Snate@binkert.org# embed python files. All .py files that have been indicated by a 8628232Snate@binkert.org# PySource() call in a SConscript need to be embedded into the M5 8638232Snate@binkert.org# library. To do that, we compile the file to byte code, marshal the 8648232Snate@binkert.org# byte code, compress it, and then generate an assembly file that 8655192Ssaidi@eecs.umich.edu# inserts the result into the data section with symbols indicating the 86610454SCurtis.Dunham@arm.com# beginning, and end (and with the size at the end) 86710454SCurtis.Dunham@arm.compy_sources_tnodes = {} 8688232Snate@binkert.orgfor pysource in py_sources: 86910455SCurtis.Dunham@arm.com py_sources_tnodes[pysource.tnode] = pysource 87010455SCurtis.Dunham@arm.com 87110455SCurtis.Dunham@arm.comdef objectifyPyFile(target, source, env): 87210455SCurtis.Dunham@arm.com '''Action function to compile a .py into a code object, marshal 8735192Ssaidi@eecs.umich.edu it, compress it, and stick it into an asm file so the code appears 87411077SCurtis.Dunham@arm.com as just bytes with a label in the data section''' 87511330SCurtis.Dunham@arm.com 87611077SCurtis.Dunham@arm.com src = file(str(source[0]), 'r').read() 87711077SCurtis.Dunham@arm.com dst = file(str(target[0]), 'w') 87811077SCurtis.Dunham@arm.com 87911330SCurtis.Dunham@arm.com pysource = py_sources_tnodes[source[0]] 88011077SCurtis.Dunham@arm.com compiled = compile(src, pysource.debugname, 'exec') 8817674Snate@binkert.org marshalled = marshal.dumps(compiled) 8825522Snate@binkert.org compressed = zlib.compress(marshalled) 8835522Snate@binkert.org data = compressed 8847674Snate@binkert.org 8857674Snate@binkert.org # Some C/C++ compilers prepend an underscore to global symbol 8867674Snate@binkert.org # names, so if they're going to do that, we need to prepend that 8877674Snate@binkert.org # leading underscore to globals in the assembly file. 8887674Snate@binkert.org if env['LEADING_UNDERSCORE']: 8897674Snate@binkert.org sym = '_' + pysource.symname 8907674Snate@binkert.org else: 8917674Snate@binkert.org sym = pysource.symname 8925522Snate@binkert.org 8935522Snate@binkert.org step = 16 8945522Snate@binkert.org print >>dst, ".data" 8955517Snate@binkert.org print >>dst, ".globl %s_beg" % sym 8965522Snate@binkert.org print >>dst, ".globl %s_end" % sym 8975517Snate@binkert.org print >>dst, "%s_beg:" % sym 8986143Snate@binkert.org for i in xrange(0, len(data), step): 8996727Ssteve.reinhardt@amd.com x = array.array('B', data[i:i+step]) 9005522Snate@binkert.org print >>dst, ".byte", ','.join([str(d) for d in x]) 9015522Snate@binkert.org print >>dst, "%s_end:" % sym 9025522Snate@binkert.org print >>dst, ".long %d" % len(marshalled) 9037674Snate@binkert.org 9045517Snate@binkert.orgfor source in py_sources: 9057673Snate@binkert.org env.Command(source.assembly, source.tnode, objectifyPyFile) 9067673Snate@binkert.org Source(source.assembly) 9077674Snate@binkert.org 9087673Snate@binkert.org# Generate init_python.cc which creates a bunch of EmbeddedPyModule 9097674Snate@binkert.org# structs that describe the embedded python code. One such struct 9107674Snate@binkert.org# contains information about the importer that python uses to get at 9118946Sandreas.hansson@arm.com# the embedded files, and then there's a list of all of the rest that 9127674Snate@binkert.org# the importer uses to load the rest on demand. 9137674Snate@binkert.orgpy_sources_symbols = {} 9147674Snate@binkert.orgfor pysource in py_sources: 9155522Snate@binkert.org py_sources_symbols[pysource.symname] = pysource 9165522Snate@binkert.orgdef pythonInit(target, source, env): 9177674Snate@binkert.org dst = file(str(target[0]), 'w') 9187674Snate@binkert.org 91911308Santhony.gutierrez@amd.com def dump_mod(sym, endchar=','): 9207674Snate@binkert.org pysource = py_sources_symbols[sym] 9217673Snate@binkert.org print >>dst, ' { "%s",' % pysource.arcname 9227674Snate@binkert.org print >>dst, ' "%s",' % pysource.modpath 9237674Snate@binkert.org print >>dst, ' %s_beg, %s_end,' % (sym, sym) 9247674Snate@binkert.org print >>dst, ' %s_end - %s_beg,' % (sym, sym) 9257674Snate@binkert.org print >>dst, ' *(int *)%s_end }%s' % (sym, endchar) 9267674Snate@binkert.org 9277674Snate@binkert.org print >>dst, '#include "sim/init.hh"' 9287674Snate@binkert.org 9297674Snate@binkert.org for sym in source: 9307811Ssteve.reinhardt@amd.com sym = sym.get_contents() 9317674Snate@binkert.org print >>dst, "extern const char %s_beg[], %s_end[];" % (sym, sym) 9327673Snate@binkert.org 9335522Snate@binkert.org print >>dst, "const EmbeddedPyModule embeddedPyImporter = " 9346143Snate@binkert.org dump_mod("PyEMB_importer", endchar=';'); 93510453SAndrew.Bardsley@arm.com print >>dst 9367816Ssteve.reinhardt@amd.com 93710453SAndrew.Bardsley@arm.com print >>dst, "const EmbeddedPyModule embeddedPyModules[] = {" 9384382Sbinkertn@umich.edu for i,sym in enumerate(source): 9394382Sbinkertn@umich.edu sym = sym.get_contents() 9404382Sbinkertn@umich.edu if sym == "PyEMB_importer": 9414382Sbinkertn@umich.edu # Skip the importer since we've already exported it 9424382Sbinkertn@umich.edu continue 9434382Sbinkertn@umich.edu dump_mod(sym) 9444382Sbinkertn@umich.edu print >>dst, " { 0, 0, 0, 0, 0, 0 }" 9454382Sbinkertn@umich.edu print >>dst, "};" 94610196SCurtis.Dunham@arm.com 9474382Sbinkertn@umich.edusymbols = [Value(s.symname) for s in py_sources] 9482655Sstever@eecs.umich.eduenv.Command('sim/init_python.cc', symbols, pythonInit) 9492655Sstever@eecs.umich.eduSource('sim/init_python.cc') 9502655Sstever@eecs.umich.edu 9512655Sstever@eecs.umich.edu######################################################################## 95212063Sgabeblack@google.com# 9535601Snate@binkert.org# Define binaries. Each different build type (debug, opt, etc.) gets 9545601Snate@binkert.org# a slightly different build environment. 95512222Sgabeblack@google.com# 95612222Sgabeblack@google.com 95712222Sgabeblack@google.com# List of constructed environments to pass back to SConstruct 9585522Snate@binkert.orgenvList = [] 9595863Snate@binkert.org 9605601Snate@binkert.org# This function adds the specified sources to the given build 9615601Snate@binkert.org# environment, and returns a list of all the corresponding SCons 9625601Snate@binkert.org# Object nodes (including an extra one for date.cc). We explicitly 9635559Snate@binkert.org# add the Object nodes so we can set up special dependencies for 96411718Sjoseph.gross@amd.com# date.cc. 96511718Sjoseph.gross@amd.comdef make_objs(sources, env, static): 96611718Sjoseph.gross@amd.com if static: 96711718Sjoseph.gross@amd.com XObject = env.StaticObject 96811718Sjoseph.gross@amd.com else: 96911718Sjoseph.gross@amd.com XObject = env.SharedObject 97011718Sjoseph.gross@amd.com 97111718Sjoseph.gross@amd.com objs = [ XObject(s) for s in sources ] 97211718Sjoseph.gross@amd.com 97311718Sjoseph.gross@amd.com # make date.cc depend on all other objects so it always gets 97411718Sjoseph.gross@amd.com # recompiled whenever anything else does 97510457Sandreas.hansson@arm.com date_obj = XObject('base/date.cc') 97610457Sandreas.hansson@arm.com 97710457Sandreas.hansson@arm.com # Make the generation of program_info.cc dependend on all 97811718Sjoseph.gross@amd.com # the other cc files and the compiling of program_info.cc 97910457Sandreas.hansson@arm.com # dependent on all the objects but program_info.o 98010457Sandreas.hansson@arm.com pinfo_obj = XObject('base/program_info.cc') 98110457Sandreas.hansson@arm.com env.Depends('base/program_info.cc', sources) 98210457Sandreas.hansson@arm.com env.Depends(date_obj, objs) 98311342Sandreas.hansson@arm.com env.Depends(pinfo_obj, objs) 9848737Skoansin.tan@gmail.com objs.extend([date_obj, pinfo_obj]) 98511342Sandreas.hansson@arm.com return objs 98611342Sandreas.hansson@arm.com 98710457Sandreas.hansson@arm.com# Function to create a new build environment as clone of current 98811718Sjoseph.gross@amd.com# environment 'env' with modified object suffix and optional stripped 98911718Sjoseph.gross@amd.com# binary. Additional keyword arguments are appended to corresponding 99011718Sjoseph.gross@amd.com# build environment vars. 99111718Sjoseph.gross@amd.comdef makeEnv(label, objsfx, strip = False, **kwargs): 99211718Sjoseph.gross@amd.com # SCons doesn't know to append a library suffix when there is a '.' in the 99311718Sjoseph.gross@amd.com # name. Use '_' instead. 99411718Sjoseph.gross@amd.com libname = 'm5_' + label 99510457Sandreas.hansson@arm.com exename = 'm5.' + label 99611718Sjoseph.gross@amd.com 99711500Sandreas.hansson@arm.com new_env = env.Copy(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's') 99811500Sandreas.hansson@arm.com new_env.Label = label 99911342Sandreas.hansson@arm.com new_env.Append(**kwargs) 100011342Sandreas.hansson@arm.com 10018945Ssteve.reinhardt@amd.com swig_env = new_env.Copy() 100210686SAndreas.Sandberg@ARM.com if env['GCC']: 100310686SAndreas.Sandberg@ARM.com swig_env.Append(CCFLAGS='-Wno-uninitialized') 100410686SAndreas.Sandberg@ARM.com swig_env.Append(CCFLAGS='-Wno-sign-compare') 100510686SAndreas.Sandberg@ARM.com swig_env.Append(CCFLAGS='-Wno-parentheses') 100610686SAndreas.Sandberg@ARM.com 100710686SAndreas.Sandberg@ARM.com static_objs = make_objs(cc_lib_sources, new_env, static=True) 10088945Ssteve.reinhardt@amd.com shared_objs = make_objs(cc_lib_sources, new_env, static=False) 10096143Snate@binkert.org static_objs += [ swig_env.StaticObject(s) for s in cc_swig_sources ] 10106143Snate@binkert.org shared_objs += [ swig_env.SharedObject(s) for s in cc_swig_sources ] 10116143Snate@binkert.org 10126143Snate@binkert.org # First make a library of everything but main() so other programs can 10136143Snate@binkert.org # link against m5. 101411988Sandreas.sandberg@arm.com static_lib = new_env.StaticLibrary(libname, static_objs) 10158945Ssteve.reinhardt@amd.com shared_lib = new_env.SharedLibrary(libname, shared_objs) 10166143Snate@binkert.org 10176143Snate@binkert.org for target, sources in unit_tests: 10186143Snate@binkert.org objs = [ new_env.StaticObject(s) for s in sources ] 10196143Snate@binkert.org new_env.Program("unittest/%s.%s" % (target, label), objs + static_lib) 10206143Snate@binkert.org 10216143Snate@binkert.org # Now link a stub with main() and the static library. 10226143Snate@binkert.org objects = [new_env.Object(s) for s in cc_bin_sources] + static_lib 10236143Snate@binkert.org if strip: 10246143Snate@binkert.org unstripped_exe = exename + '.unstripped' 10256143Snate@binkert.org new_env.Program(unstripped_exe, objects) 10266143Snate@binkert.org if sys.platform == 'sunos5': 10276143Snate@binkert.org cmd = 'cp $SOURCE $TARGET; strip $TARGET' 10286143Snate@binkert.org else: 102910453SAndrew.Bardsley@arm.com cmd = 'strip $SOURCE -o $TARGET' 103010453SAndrew.Bardsley@arm.com targets = new_env.Command(exename, unstripped_exe, cmd) 103111988Sandreas.sandberg@arm.com else: 103211988Sandreas.sandberg@arm.com targets = new_env.Program(exename, objects) 103310453SAndrew.Bardsley@arm.com 103410453SAndrew.Bardsley@arm.com new_env.M5Binary = targets[0] 103510453SAndrew.Bardsley@arm.com envList.append(new_env) 103611983Sgabeblack@google.com 103711983Sgabeblack@google.com# Debug binary 103811983Sgabeblack@google.comccflags = {} 103911983Sgabeblack@google.comif env['GCC']: 104011983Sgabeblack@google.com if sys.platform == 'sunos5': 104111983Sgabeblack@google.com ccflags['debug'] = '-gstabs+' 104211983Sgabeblack@google.com else: 104311983Sgabeblack@google.com ccflags['debug'] = '-ggdb3' 104411983Sgabeblack@google.com ccflags['opt'] = '-g -O3' 104511983Sgabeblack@google.com ccflags['fast'] = '-O3' 104611983Sgabeblack@google.com ccflags['prof'] = '-O3 -g -pg' 104711983Sgabeblack@google.comelif env['SUNCC']: 104811983Sgabeblack@google.com ccflags['debug'] = '-g0' 104911983Sgabeblack@google.com ccflags['opt'] = '-g -O' 105011983Sgabeblack@google.com ccflags['fast'] = '-fast' 105111983Sgabeblack@google.com ccflags['prof'] = '-fast -g -pg' 105211983Sgabeblack@google.comelif env['ICC']: 105311983Sgabeblack@google.com ccflags['debug'] = '-g -O0' 105412063Sgabeblack@google.com ccflags['opt'] = '-g -O' 105512063Sgabeblack@google.com ccflags['fast'] = '-fast' 105612063Sgabeblack@google.com ccflags['prof'] = '-fast -g -pg' 105712063Sgabeblack@google.comelse: 105812063Sgabeblack@google.com print 'Unknown compiler, please fix compiler options' 105912063Sgabeblack@google.com Exit(1) 106012063Sgabeblack@google.com 106112063Sgabeblack@google.commakeEnv('debug', '.do', 106211983Sgabeblack@google.com CCFLAGS = Split(ccflags['debug']), 106311983Sgabeblack@google.com CPPDEFINES = ['DEBUG', 'TRACING_ON=1']) 106411983Sgabeblack@google.com 106511983Sgabeblack@google.com# Optimized binary 106611983Sgabeblack@google.commakeEnv('opt', '.o', 106711983Sgabeblack@google.com CCFLAGS = Split(ccflags['opt']), 106811983Sgabeblack@google.com CPPDEFINES = ['TRACING_ON=1']) 106911983Sgabeblack@google.com 107011983Sgabeblack@google.com# "Fast" binary 107111983Sgabeblack@google.commakeEnv('fast', '.fo', strip = True, 107211983Sgabeblack@google.com CCFLAGS = Split(ccflags['fast']), 107311983Sgabeblack@google.com CPPDEFINES = ['NDEBUG', 'TRACING_ON=0']) 107411983Sgabeblack@google.com 10756143Snate@binkert.org# Profiled binary 10766143Snate@binkert.orgmakeEnv('prof', '.po', 10776143Snate@binkert.org CCFLAGS = Split(ccflags['prof']), 107810453SAndrew.Bardsley@arm.com CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 10796143Snate@binkert.org LINKFLAGS = '-pg') 10806240Snate@binkert.org 10815554Snate@binkert.orgReturn('envList') 10825522Snate@binkert.org