SConscript revision 5793
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 = {} 1798945Ssteve.reinhardt@amd.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) 1856143Snate@binkert.org all_flags[name] = () 18611983Sgabeblack@google.com 18711983Sgabeblack@google.comdef CompoundFlag(name, flags, desc=''): 1886143Snate@binkert.org if name in all_flags: 1896143Snate@binkert.org raise AttributeError, "Flag %s already specified" % name 1905522Snate@binkert.org 1916143Snate@binkert.org compound = tuple(flags) 1926143Snate@binkert.org for flag in compound: 1936143Snate@binkert.org if flag not in all_flags: 1949982Satgutier@umich.edu raise AttributeError, "Trace flag %s not found" % flag 1958233Snate@binkert.org if all_flags[flag]: 1968233Snate@binkert.org raise AttributeError, \ 1978233Snate@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) 2016143Snate@binkert.org all_flags[name] = compound 2025522Snate@binkert.org 2035522Snate@binkert.orgExport('TraceFlag') 2045522Snate@binkert.orgExport('CompoundFlag') 2055522Snate@binkert.org 2065604Snate@binkert.org######################################################################## 2075604Snate@binkert.org# 2086143Snate@binkert.org# Set some compiler variables 2096143Snate@binkert.org# 2104762Snate@binkert.org 2114762Snate@binkert.org# Include file paths are rooted in this directory. SCons will 2126143Snate@binkert.org# 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. 2156727Ssteve.reinhardt@amd.comenv.Append(CPPPATH=Dir('.')) 2164762Snate@binkert.org 2176143Snate@binkert.orgfor extra_dir in extras_dir_list: 2186143Snate@binkert.org env.Append(CPPPATH=Dir(extra_dir)) 2196143Snate@binkert.org 2206143Snate@binkert.org# Add a flag defining what THE_ISA should be for all compilation 2216727Ssteve.reinhardt@amd.comenv.Append(CPPDEFINES=[('THE_ISA','%s_ISA' % env['TARGET_ISA'].upper())]) 2226143Snate@binkert.org 2237674Snate@binkert.org# Workaround for bug in SCons version > 0.97d20071212 2247674Snate@binkert.org# Scons bug id: 2006 M5 Bug id: 308 2255604Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True): 2266143Snate@binkert.org Dir(root[len(base_dir) + 1:]) 2276143Snate@binkert.org 2286143Snate@binkert.org######################################################################## 2294762Snate@binkert.org# 2306143Snate@binkert.org# Walk the tree and execute all SConscripts in subdirectories 2314762Snate@binkert.org# 2324762Snate@binkert.org 2334762Snate@binkert.orghere = Dir('.').srcnode().abspath 2346143Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True): 2356143Snate@binkert.org if root == here: 2364762Snate@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: 2408233Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:]) 2416143Snate@binkert.org SConscript(joinpath(root, 'SConscript'), build_dir=build_dir) 2426143Snate@binkert.org 2434762Snate@binkert.orgfor extra_dir in extras_dir_list: 2446143Snate@binkert.org prefix_len = len(dirname(extra_dir)) + 1 2454762Snate@binkert.org for root, dirs, files in os.walk(extra_dir, topdown=True): 2466143Snate@binkert.org if 'SConscript' in files: 2474762Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[prefix_len:]) 2486143Snate@binkert.org SConscript(joinpath(root, 'SConscript'), build_dir=build_dir) 2498233Snate@binkert.org 2508233Snate@binkert.orgfor opt in env.ExportOptions: 25110453SAndrew.Bardsley@arm.com env.ConfigFile(opt) 2526143Snate@binkert.org 2536143Snate@binkert.org######################################################################## 2546143Snate@binkert.org# 2556143Snate@binkert.org# Prevent any SimObjects from being added after this point, they 25611548Sandreas.hansson@arm.com# should all have been added in the SConscripts above 2576143Snate@binkert.org# 2586143Snate@binkert.orgclass DictImporter(object): 2596143Snate@binkert.org '''This importer takes a dictionary of arbitrary module names that 2606143Snate@binkert.org map to arbitrary filenames.''' 26110453SAndrew.Bardsley@arm.com def __init__(self, modules): 26210453SAndrew.Bardsley@arm.com self.modules = modules 263955SN/A self.installed = set() 2649396Sandreas.hansson@arm.com 2659396Sandreas.hansson@arm.com def __del__(self): 2669396Sandreas.hansson@arm.com self.unload() 2679396Sandreas.hansson@arm.com 2689396Sandreas.hansson@arm.com def unload(self): 2699396Sandreas.hansson@arm.com import sys 2709396Sandreas.hansson@arm.com for module in self.installed: 2719396Sandreas.hansson@arm.com del sys.modules[module] 2729396Sandreas.hansson@arm.com self.installed = set() 2739396Sandreas.hansson@arm.com 2749396Sandreas.hansson@arm.com def find_module(self, fullname, path): 2759396Sandreas.hansson@arm.com if fullname == '__scons': 2769396Sandreas.hansson@arm.com return self 2779930Sandreas.hansson@arm.com 2789930Sandreas.hansson@arm.com if fullname == 'm5.objects': 2799396Sandreas.hansson@arm.com return self 2808235Snate@binkert.org 2818235Snate@binkert.org if fullname.startswith('m5.internal'): 2826143Snate@binkert.org return None 2838235Snate@binkert.org 2849003SAli.Saidi@ARM.com if fullname in self.modules and exists(self.modules[fullname]): 2858235Snate@binkert.org return self 2868235Snate@binkert.org 2878235Snate@binkert.org return None 2888235Snate@binkert.org 2898235Snate@binkert.org def load_module(self, fullname): 2908235Snate@binkert.org mod = imp.new_module(fullname) 2918235Snate@binkert.org sys.modules[fullname] = mod 2928235Snate@binkert.org self.installed.add(fullname) 2938235Snate@binkert.org 2948235Snate@binkert.org mod.__loader__ = self 2958235Snate@binkert.org if fullname == 'm5.objects': 2968235Snate@binkert.org mod.__path__ = fullname.split('.') 2978235Snate@binkert.org return mod 2988235Snate@binkert.org 2999003SAli.Saidi@ARM.com if fullname == '__scons': 3008235Snate@binkert.org mod.__dict__['m5_build_env'] = build_env 3015584Snate@binkert.org return mod 3024382Sbinkertn@umich.edu 3034202Sbinkertn@umich.edu srcfile = self.modules[fullname] 3044382Sbinkertn@umich.edu if basename(srcfile) == '__init__.py': 3054382Sbinkertn@umich.edu mod.__path__ = fullname.split('.') 3064382Sbinkertn@umich.edu mod.__file__ = srcfile 3079396Sandreas.hansson@arm.com 3085584Snate@binkert.org exec file(srcfile, 'r') in mod.__dict__ 3094382Sbinkertn@umich.edu 3104382Sbinkertn@umich.edu return mod 3114382Sbinkertn@umich.edu 3128232Snate@binkert.orgpy_modules = {} 3135192Ssaidi@eecs.umich.edufor source in py_sources: 3148232Snate@binkert.org py_modules[source.modpath] = source.snode.abspath 3158232Snate@binkert.org 3168232Snate@binkert.org# install the python importer so we can grab stuff from the source 3175192Ssaidi@eecs.umich.edu# tree itself. We can't have SimObjects added after this point or 3188232Snate@binkert.org# else we won't know about them for the rest of the stuff. 3195192Ssaidi@eecs.umich.edusim_objects_fixed = True 3205799Snate@binkert.orgimporter = DictImporter(py_modules) 3218232Snate@binkert.orgsys.meta_path[0:0] = [ importer ] 3225192Ssaidi@eecs.umich.edu 3235192Ssaidi@eecs.umich.eduimport m5 3245192Ssaidi@eecs.umich.edu 3258232Snate@binkert.org# import all sim objects so we can populate the all_objects list 3265192Ssaidi@eecs.umich.edu# make sure that we're working with a list, then let's sort it 3278232Snate@binkert.orgsim_objects = list(sim_object_modfiles) 3285192Ssaidi@eecs.umich.edusim_objects.sort() 3295192Ssaidi@eecs.umich.edufor simobj in sim_objects: 3305192Ssaidi@eecs.umich.edu exec('from m5.objects import %s' % simobj) 3315192Ssaidi@eecs.umich.edu 3324382Sbinkertn@umich.edu# we need to unload all of the currently imported modules so that they 3334382Sbinkertn@umich.edu# will be re-imported the next time the sconscript is run 3344382Sbinkertn@umich.eduimporter.unload() 3352667Sstever@eecs.umich.edusys.meta_path.remove(importer) 3362667Sstever@eecs.umich.edu 3372667Sstever@eecs.umich.edusim_objects = m5.SimObject.allClasses 3382667Sstever@eecs.umich.eduall_enums = m5.params.allEnums 3392667Sstever@eecs.umich.edu 3402667Sstever@eecs.umich.eduall_params = {} 3415742Snate@binkert.orgfor name,obj in sim_objects.iteritems(): 3425742Snate@binkert.org for param in obj._params.local.values(): 3435742Snate@binkert.org if not hasattr(param, 'swig_decl'): 3445793Snate@binkert.org continue 3458334Snate@binkert.org pname = param.ptype_str 3465793Snate@binkert.org if pname not in all_params: 3475793Snate@binkert.org all_params[pname] = param 3485793Snate@binkert.org 3494382Sbinkertn@umich.edu######################################################################## 3504762Snate@binkert.org# 3515344Sstever@gmail.com# calculate extra dependencies 3524382Sbinkertn@umich.edu# 3535341Sstever@gmail.commodule_depends = ["m5", "m5.SimObject", "m5.params"] 3545742Snate@binkert.orgdepends = [ File(py_modules[dep]) for dep in module_depends ] 3555742Snate@binkert.org 3565742Snate@binkert.org######################################################################## 3575742Snate@binkert.org# 3585742Snate@binkert.org# Commands for the basic automatically generated python files 3594762Snate@binkert.org# 3605742Snate@binkert.org 3615742Snate@binkert.org# Generate Python file containing a dict specifying the current 36211984Sgabeblack@google.com# build_env flags. 3637722Sgblack@eecs.umich.edudef makeDefinesPyFile(target, source, env): 3645742Snate@binkert.org f = file(str(target[0]), 'w') 3655742Snate@binkert.org print >>f, "m5_build_env = ", source[0] 3665742Snate@binkert.org f.close() 3679930Sandreas.hansson@arm.com 3689930Sandreas.hansson@arm.com# Generate python file containing info about the M5 source code 3699930Sandreas.hansson@arm.comdef makeInfoPyFile(target, source, env): 3709930Sandreas.hansson@arm.com f = file(str(target[0]), 'w') 3719930Sandreas.hansson@arm.com for src in source: 3725742Snate@binkert.org data = ''.join(file(src.srcnode().abspath, 'r').xreadlines()) 3738242Sbradley.danofsky@amd.com print >>f, "%s = %s" % (src, repr(data)) 3748242Sbradley.danofsky@amd.com f.close() 3758242Sbradley.danofsky@amd.com 3768242Sbradley.danofsky@amd.com# Generate the __init__.py file for m5.objects 3775341Sstever@gmail.comdef makeObjectsInitFile(target, source, env): 3785742Snate@binkert.org f = file(str(target[0]), 'w') 3797722Sgblack@eecs.umich.edu print >>f, 'from params import *' 3804773Snate@binkert.org print >>f, 'from m5.SimObject import *' 3816108Snate@binkert.org for module in source: 3821858SN/A print >>f, 'from %s import *' % module.get_contents() 3831085SN/A f.close() 3846658Snate@binkert.org 3856658Snate@binkert.org# Generate a file with all of the compile options in it 3867673Snate@binkert.orgenv.Command('python/m5/defines.py', Value(build_env), makeDefinesPyFile) 3876658Snate@binkert.orgPySource('m5', 'python/m5/defines.py') 3886658Snate@binkert.org 38911308Santhony.gutierrez@amd.com# Generate a file that wraps the basic top level files 3906658Snate@binkert.orgenv.Command('python/m5/info.py', 39111308Santhony.gutierrez@amd.com [ '#/AUTHORS', '#/LICENSE', '#/README', '#/RELEASE_NOTES' ], 3926658Snate@binkert.org makeInfoPyFile) 3936658Snate@binkert.orgPySource('m5', 'python/m5/info.py') 3947673Snate@binkert.org 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') 4007673Snate@binkert.org 40110467Sandreas.hansson@arm.com######################################################################## 4026658Snate@binkert.org# 4037673Snate@binkert.org# Create all of the SimObject param headers and enum headers 40410467Sandreas.hansson@arm.com# 40510467Sandreas.hansson@arm.com 40610467Sandreas.hansson@arm.comdef createSimObjectParam(target, source, env): 40710467Sandreas.hansson@arm.com assert len(target) == 1 and len(source) == 1 40810467Sandreas.hansson@arm.com 40910467Sandreas.hansson@arm.com hh_file = file(target[0].abspath, 'w') 41010467Sandreas.hansson@arm.com name = str(source[0].get_contents()) 41110467Sandreas.hansson@arm.com obj = sim_objects[name] 41210467Sandreas.hansson@arm.com 41310467Sandreas.hansson@arm.com print >>hh_file, obj.cxx_decl() 41410467Sandreas.hansson@arm.com 4157673Snate@binkert.orgdef createSwigParam(target, source, env): 4167673Snate@binkert.org assert len(target) == 1 and len(source) == 1 4177673Snate@binkert.org 4187673Snate@binkert.org i_file = file(target[0].abspath, 'w') 4197673Snate@binkert.org name = str(source[0].get_contents()) 4209048SAli.Saidi@ARM.com param = all_params[name] 4217673Snate@binkert.org 4227673Snate@binkert.org for line in param.swig_decl(): 4237673Snate@binkert.org print >>i_file, line 4247673Snate@binkert.org 4256658Snate@binkert.orgdef createEnumStrings(target, source, env): 4267756SAli.Saidi@ARM.com assert len(target) == 1 and len(source) == 1 4277816Ssteve.reinhardt@amd.com 4286658Snate@binkert.org 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 45411308Santhony.gutierrez@amd.com# Generate any parameter header files needed 45511308Santhony.gutierrez@amd.comparams_i_files = [] 45611308Santhony.gutierrez@amd.comfor name,param in all_params.iteritems(): 45711308Santhony.gutierrez@amd.com if isinstance(param, m5.params.VectorParamDesc): 45811308Santhony.gutierrez@amd.com ext = 'vptype' 45911308Santhony.gutierrez@amd.com else: 46011308Santhony.gutierrez@amd.com ext = 'ptype' 46111308Santhony.gutierrez@amd.com 46211308Santhony.gutierrez@amd.com i_file = File('params/%s_%s.i' % (name, ext)) 46311308Santhony.gutierrez@amd.com params_i_files.append(i_file) 46411308Santhony.gutierrez@amd.com env.Command(i_file, Value(name), createSwigParam) 46511308Santhony.gutierrez@amd.com env.Depends(i_file, depends) 46611308Santhony.gutierrez@amd.com 46711308Santhony.gutierrez@amd.com# Generate all enum header files 46811308Santhony.gutierrez@amd.comfor name,enum in all_enums.iteritems(): 46911308Santhony.gutierrez@amd.com extra_deps = [ File(py_modules[enum.__module__]) ] 47011308Santhony.gutierrez@amd.com 47111308Santhony.gutierrez@amd.com cc_file = File('enums/%s.cc' % name) 47211308Santhony.gutierrez@amd.com env.Command(cc_file, Value(name), createEnumStrings) 47311308Santhony.gutierrez@amd.com env.Depends(cc_file, depends + extra_deps) 4744382Sbinkertn@umich.edu Source(cc_file) 4754382Sbinkertn@umich.edu 4764762Snate@binkert.org hh_file = File('enums/%s.hh' % name) 4774762Snate@binkert.org env.Command(hh_file, Value(name), createEnumParam) 4784762Snate@binkert.org env.Depends(hh_file, depends + extra_deps) 4796654Snate@binkert.org 4806654Snate@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 ] 4845517Snate@binkert.org objs = [ sim_objects[name] for name in names ] 4855517Snate@binkert.org out = file(target[0].abspath, 'w') 4865517Snate@binkert.org 4875517Snate@binkert.org ordered_objs = [] 4885517Snate@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 4986654Snate@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 5035517Snate@binkert.org enums = set() 50411802Sandreas.sandberg@arm.com predecls = [] 5055517Snate@binkert.org pd_seen = set() 5065517Snate@binkert.org 5076143Snate@binkert.org def add_pds(*pds): 5086654Snate@binkert.org for pd in pds: 5095517Snate@binkert.org if pd not in pd_seen: 5105517Snate@binkert.org predecls.append(pd) 5115517Snate@binkert.org pd_seen.add(pd) 5125517Snate@binkert.org 5135517Snate@binkert.org for obj in ordered_objs: 5145517Snate@binkert.org params = obj._params.local.values() 5155517Snate@binkert.org for param in params: 5165517Snate@binkert.org ptype = param.ptype 5175517Snate@binkert.org if issubclass(ptype, m5.params.Enum): 5185517Snate@binkert.org if ptype not in enums: 5195517Snate@binkert.org enums.add(ptype) 5205517Snate@binkert.org pds = param.swig_predecls() 5215517Snate@binkert.org if isinstance(pds, (list, tuple)): 5225517Snate@binkert.org add_pds(*pds) 5236654Snate@binkert.org else: 5246654Snate@binkert.org add_pds(pds) 5255517Snate@binkert.org 5265517Snate@binkert.org print >>out, '%module params' 5276143Snate@binkert.org 5286143Snate@binkert.org print >>out, '%{' 5296143Snate@binkert.org for obj in ordered_objs: 5306727Ssteve.reinhardt@amd.com print >>out, '#include "params/%s.hh"' % obj 5315517Snate@binkert.org print >>out, '%}' 5326727Ssteve.reinhardt@amd.com 5335517Snate@binkert.org for pd in predecls: 5345517Snate@binkert.org print >>out, pd 5355517Snate@binkert.org 5366654Snate@binkert.org enums = list(enums) 5376654Snate@binkert.org enums.sort() 5387673Snate@binkert.org for enum in enums: 5396654Snate@binkert.org print >>out, '%%include "enums/%s.hh"' % enum.__name__ 5406654Snate@binkert.org print >>out 5416654Snate@binkert.org 5426654Snate@binkert.org for obj in ordered_objs: 5435517Snate@binkert.org if obj.swig_objdecls: 5445517Snate@binkert.org for decl in obj.swig_objdecls: 5455517Snate@binkert.org print >>out, decl 5466143Snate@binkert.org continue 5475517Snate@binkert.org 5484762Snate@binkert.org class_path = obj.cxx_class.split('::') 5495517Snate@binkert.org classname = class_path[-1] 5505517Snate@binkert.org namespaces = class_path[:-1] 5516143Snate@binkert.org namespaces.reverse() 5526143Snate@binkert.org 5535517Snate@binkert.org code = '' 5545517Snate@binkert.org 5555517Snate@binkert.org if namespaces: 5565517Snate@binkert.org code += '// avoid name conflicts\n' 5575517Snate@binkert.org sep_string = '_COLONS_' 5585517Snate@binkert.org flat_name = sep_string.join(class_path) 5595517Snate@binkert.org code += '%%rename(%s) %s;\n' % (flat_name, classname) 5605517Snate@binkert.org 5615517Snate@binkert.org code += '// stop swig from creating/wrapping default ctor/dtor\n' 5629338SAndreas.Sandberg@arm.com code += '%%nodefault %s;\n' % classname 5639338SAndreas.Sandberg@arm.com code += 'class %s ' % classname 5649338SAndreas.Sandberg@arm.com if obj._base: 5659338SAndreas.Sandberg@arm.com code += ': public %s' % obj._base.cxx_class 5669338SAndreas.Sandberg@arm.com code += ' {};\n' 5679338SAndreas.Sandberg@arm.com 5688596Ssteve.reinhardt@amd.com for ns in namespaces: 5698596Ssteve.reinhardt@amd.com new_code = 'namespace %s {\n' % ns 5708596Ssteve.reinhardt@amd.com new_code += code 5718596Ssteve.reinhardt@amd.com new_code += '}\n' 5728596Ssteve.reinhardt@amd.com code = new_code 5738596Ssteve.reinhardt@amd.com 5748596Ssteve.reinhardt@amd.com print >>out, code 5756143Snate@binkert.org 5765517Snate@binkert.org print >>out, '%%include "src/sim/sim_object_params.hh"' % obj 5776654Snate@binkert.org for obj in ordered_objs: 5786654Snate@binkert.org print >>out, '%%include "params/%s.hh"' % obj 5796654Snate@binkert.org 5806654Snate@binkert.orgparams_file = File('params/params.i') 5816654Snate@binkert.orgnames = sort_list(sim_objects.keys()) 5826654Snate@binkert.orgenv.Command(params_file, [ Value(v) for v in names ], buildParams) 5835517Snate@binkert.orgenv.Depends(params_file, params_hh_files + params_i_files + depends) 5845517Snate@binkert.orgSwigSource('m5.objects', params_file) 5855517Snate@binkert.org 5868596Ssteve.reinhardt@amd.com# Build all swig modules 5878596Ssteve.reinhardt@amd.comswig_modules = [] 5884762Snate@binkert.orgcc_swig_sources = [] 5894762Snate@binkert.orgfor source,package in swig_sources: 5904762Snate@binkert.org filename = str(source) 5914762Snate@binkert.org assert filename.endswith('.i') 5924762Snate@binkert.org 5934762Snate@binkert.org base = '.'.join(filename.split('.')[:-1]) 5947675Snate@binkert.org module = basename(base) 59510584Sandreas.hansson@arm.com cc_file = base + '_wrap.cc' 5964762Snate@binkert.org py_file = base + '.py' 5974762Snate@binkert.org 5984762Snate@binkert.org env.Command([cc_file, py_file], source, 5994762Snate@binkert.org '$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} ' 6004382Sbinkertn@umich.edu '-o ${TARGETS[0]} $SOURCES') 6014382Sbinkertn@umich.edu env.Depends(py_file, source) 6025517Snate@binkert.org env.Depends(cc_file, source) 6036654Snate@binkert.org 6045517Snate@binkert.org swig_modules.append(Value(module)) 6058126Sgblack@eecs.umich.edu cc_swig_sources.append(File(cc_file)) 6066654Snate@binkert.org PySource(package, py_file) 6077673Snate@binkert.org 6086654Snate@binkert.org# Generate the main swig init file 60911802Sandreas.sandberg@arm.comdef makeSwigInit(target, source, env): 6106654Snate@binkert.org f = file(str(target[0]), 'w') 6116654Snate@binkert.org print >>f, 'extern "C" {' 6126654Snate@binkert.org for module in source: 6136654Snate@binkert.org print >>f, ' void init_%s();' % module.get_contents() 61411802Sandreas.sandberg@arm.com print >>f, '}' 6156669Snate@binkert.org print >>f, 'void initSwig() {' 61611802Sandreas.sandberg@arm.com for module in source: 6176669Snate@binkert.org print >>f, ' init_%s();' % module.get_contents() 6186669Snate@binkert.org print >>f, '}' 6196669Snate@binkert.org f.close() 6206669Snate@binkert.org 6216654Snate@binkert.orgenv.Command('python/swig/init.cc', swig_modules, makeSwigInit) 6227673Snate@binkert.orgSource('python/swig/init.cc') 6235517Snate@binkert.org 6248126Sgblack@eecs.umich.edu# Generate traceflags.py 6255798Snate@binkert.orgdef traceFlagsPy(target, source, env): 6267756SAli.Saidi@ARM.com assert(len(target) == 1) 6277816Ssteve.reinhardt@amd.com 6285798Snate@binkert.org f = file(str(target[0]), 'w') 6295798Snate@binkert.org 6305517Snate@binkert.org allFlags = [] 6315517Snate@binkert.org for s in source: 6327673Snate@binkert.org val = eval(s.get_contents()) 6335517Snate@binkert.org allFlags.append(val) 6345517Snate@binkert.org 6357673Snate@binkert.org print >>f, 'baseFlags = [' 6367673Snate@binkert.org for flag, compound, desc in allFlags: 6375517Snate@binkert.org if not compound: 6385798Snate@binkert.org print >>f, " '%s'," % flag 6395798Snate@binkert.org print >>f, " ]" 6408333Snate@binkert.org print >>f 6417816Ssteve.reinhardt@amd.com 6425798Snate@binkert.org print >>f, 'compoundFlags = [' 6435798Snate@binkert.org print >>f, " 'All'," 6444762Snate@binkert.org for flag, compound, desc in allFlags: 6454762Snate@binkert.org if compound: 6464762Snate@binkert.org print >>f, " '%s'," % flag 6474762Snate@binkert.org print >>f, " ]" 6484762Snate@binkert.org print >>f 6498596Ssteve.reinhardt@amd.com 6505517Snate@binkert.org print >>f, "allFlags = frozenset(baseFlags + compoundFlags)" 6515517Snate@binkert.org print >>f 6525517Snate@binkert.org 6535517Snate@binkert.org print >>f, 'compoundFlagMap = {' 6545517Snate@binkert.org all = tuple([flag for flag,compound,desc in allFlags if not compound]) 6557673Snate@binkert.org print >>f, " 'All' : %s," % (all, ) 6568596Ssteve.reinhardt@amd.com for flag, compound, desc in allFlags: 6577673Snate@binkert.org if compound: 6585517Snate@binkert.org print >>f, " '%s' : %s," % (flag, compound) 65910458Sandreas.hansson@arm.com print >>f, " }" 66010458Sandreas.hansson@arm.com print >>f 66110458Sandreas.hansson@arm.com 66210458Sandreas.hansson@arm.com print >>f, 'flagDescriptions = {' 66310458Sandreas.hansson@arm.com print >>f, " 'All' : 'All flags'," 66410458Sandreas.hansson@arm.com for flag, compound, desc in allFlags: 66510458Sandreas.hansson@arm.com print >>f, " '%s' : '%s'," % (flag, desc) 66610458Sandreas.hansson@arm.com print >>f, " }" 66710458Sandreas.hansson@arm.com 66810458Sandreas.hansson@arm.com f.close() 66910458Sandreas.hansson@arm.com 67010458Sandreas.hansson@arm.comdef traceFlagsCC(target, source, env): 6718596Ssteve.reinhardt@amd.com assert(len(target) == 1) 6725517Snate@binkert.org 6735517Snate@binkert.org f = file(str(target[0]), 'w') 6745517Snate@binkert.org 6758596Ssteve.reinhardt@amd.com allFlags = [] 6765517Snate@binkert.org for s in source: 6777673Snate@binkert.org val = eval(s.get_contents()) 6787673Snate@binkert.org allFlags.append(val) 6797673Snate@binkert.org 6805517Snate@binkert.org # file header 6815517Snate@binkert.org print >>f, ''' 6825517Snate@binkert.org/* 6835517Snate@binkert.org * DO NOT EDIT THIS FILE! Automatically generated 6845517Snate@binkert.org */ 6855517Snate@binkert.org 6865517Snate@binkert.org#include "base/traceflags.hh" 6877673Snate@binkert.org 6887673Snate@binkert.orgusing namespace Trace; 6897673Snate@binkert.org 6905517Snate@binkert.orgconst char *Trace::flagStrings[] = 6918596Ssteve.reinhardt@amd.com{''' 6925517Snate@binkert.org 6935517Snate@binkert.org # The string array is used by SimpleEnumParam to map the strings 6945517Snate@binkert.org # provided by the user to enum values. 6955517Snate@binkert.org for flag, compound, desc in allFlags: 6965517Snate@binkert.org if not compound: 6977673Snate@binkert.org print >>f, ' "%s",' % flag 6987673Snate@binkert.org 6997673Snate@binkert.org print >>f, ' "All",' 7005517Snate@binkert.org for flag, compound, desc in allFlags: 7018596Ssteve.reinhardt@amd.com if compound: 7027675Snate@binkert.org print >>f, ' "%s",' % flag 7037675Snate@binkert.org 7047675Snate@binkert.org print >>f, '};' 7057675Snate@binkert.org print >>f 7067675Snate@binkert.org print >>f, 'const int Trace::numFlagStrings = %d;' % (len(allFlags) + 1) 7077675Snate@binkert.org print >>f 7088596Ssteve.reinhardt@amd.com 7097675Snate@binkert.org # 7107675Snate@binkert.org # Now define the individual compound flag arrays. There is an array 7118596Ssteve.reinhardt@amd.com # for each compound flag listing the component base flags. 7128596Ssteve.reinhardt@amd.com # 7138596Ssteve.reinhardt@amd.com all = tuple([flag for flag,compound,desc in allFlags if not compound]) 7148596Ssteve.reinhardt@amd.com print >>f, 'static const Flags AllMap[] = {' 7158596Ssteve.reinhardt@amd.com for flag, compound, desc in allFlags: 7168596Ssteve.reinhardt@amd.com if not compound: 7178596Ssteve.reinhardt@amd.com print >>f, " %s," % flag 7188596Ssteve.reinhardt@amd.com print >>f, '};' 71910454SCurtis.Dunham@arm.com print >>f 72010454SCurtis.Dunham@arm.com 72110454SCurtis.Dunham@arm.com for flag, compound, desc in allFlags: 72210454SCurtis.Dunham@arm.com if not compound: 7238596Ssteve.reinhardt@amd.com continue 7244762Snate@binkert.org print >>f, 'static const Flags %sMap[] = {' % flag 7256143Snate@binkert.org for flag in compound: 7266143Snate@binkert.org print >>f, " %s," % flag 7276143Snate@binkert.org print >>f, " (Flags)-1" 7284762Snate@binkert.org print >>f, '};' 7294762Snate@binkert.org print >>f 7304762Snate@binkert.org 7317756SAli.Saidi@ARM.com # 7328596Ssteve.reinhardt@amd.com # Finally the compoundFlags[] array maps the compound flags 7334762Snate@binkert.org # to their individual arrays/ 73410454SCurtis.Dunham@arm.com # 7354762Snate@binkert.org print >>f, 'const Flags *Trace::compoundFlags[] =' 73610458Sandreas.hansson@arm.com print >>f, '{' 73710458Sandreas.hansson@arm.com print >>f, ' AllMap,' 73810458Sandreas.hansson@arm.com for flag, compound, desc in allFlags: 73910458Sandreas.hansson@arm.com if compound: 74010458Sandreas.hansson@arm.com print >>f, ' %sMap,' % flag 74110458Sandreas.hansson@arm.com # file trailer 74210458Sandreas.hansson@arm.com print >>f, '};' 74310458Sandreas.hansson@arm.com 74410458Sandreas.hansson@arm.com f.close() 74510458Sandreas.hansson@arm.com 74610458Sandreas.hansson@arm.comdef traceFlagsHH(target, source, env): 74710458Sandreas.hansson@arm.com assert(len(target) == 1) 74810458Sandreas.hansson@arm.com 74910458Sandreas.hansson@arm.com f = file(str(target[0]), 'w') 75010458Sandreas.hansson@arm.com 75110458Sandreas.hansson@arm.com allFlags = [] 75210458Sandreas.hansson@arm.com for s in source: 75310458Sandreas.hansson@arm.com val = eval(s.get_contents()) 75410458Sandreas.hansson@arm.com allFlags.append(val) 75510458Sandreas.hansson@arm.com 75610458Sandreas.hansson@arm.com # file header boilerplate 75710458Sandreas.hansson@arm.com print >>f, ''' 75810458Sandreas.hansson@arm.com/* 75910458Sandreas.hansson@arm.com * DO NOT EDIT THIS FILE! 76010458Sandreas.hansson@arm.com * 76110458Sandreas.hansson@arm.com * Automatically generated from traceflags.py 76210458Sandreas.hansson@arm.com */ 76310458Sandreas.hansson@arm.com 76410458Sandreas.hansson@arm.com#ifndef __BASE_TRACE_FLAGS_HH__ 76510458Sandreas.hansson@arm.com#define __BASE_TRACE_FLAGS_HH__ 76610458Sandreas.hansson@arm.com 76710458Sandreas.hansson@arm.comnamespace Trace { 76810458Sandreas.hansson@arm.com 76910458Sandreas.hansson@arm.comenum Flags {''' 77010458Sandreas.hansson@arm.com 77110458Sandreas.hansson@arm.com # Generate the enum. Base flags come first, then compound flags. 77210458Sandreas.hansson@arm.com idx = 0 77310458Sandreas.hansson@arm.com for flag, compound, desc in allFlags: 77410458Sandreas.hansson@arm.com if not compound: 77510458Sandreas.hansson@arm.com print >>f, ' %s = %d,' % (flag, idx) 77610458Sandreas.hansson@arm.com idx += 1 77710458Sandreas.hansson@arm.com 77810458Sandreas.hansson@arm.com numBaseFlags = idx 77910458Sandreas.hansson@arm.com print >>f, ' NumFlags = %d,' % idx 78010458Sandreas.hansson@arm.com 78110458Sandreas.hansson@arm.com # put a comment in here to separate base from compound flags 78210458Sandreas.hansson@arm.com print >>f, ''' 78310458Sandreas.hansson@arm.com// The remaining enum values are *not* valid indices for Trace::flags. 78410458Sandreas.hansson@arm.com// They are "compound" flags, which correspond to sets of base 78510584Sandreas.hansson@arm.com// flags, and are used by changeFlag.''' 78610458Sandreas.hansson@arm.com 78710458Sandreas.hansson@arm.com print >>f, ' All = %d,' % idx 78810458Sandreas.hansson@arm.com idx += 1 78910458Sandreas.hansson@arm.com for flag, compound, desc in allFlags: 79010458Sandreas.hansson@arm.com if compound: 7918596Ssteve.reinhardt@amd.com print >>f, ' %s = %d,' % (flag, idx) 7925463Snate@binkert.org idx += 1 79310584Sandreas.hansson@arm.com 79411802Sandreas.sandberg@arm.com numCompoundFlags = idx - numBaseFlags 7955463Snate@binkert.org print >>f, ' NumCompoundFlags = %d' % numCompoundFlags 7967756SAli.Saidi@ARM.com 7978596Ssteve.reinhardt@amd.com # trailer boilerplate 7984762Snate@binkert.org print >>f, '''\ 79910454SCurtis.Dunham@arm.com}; // enum Flags 80011802Sandreas.sandberg@arm.com 8014762Snate@binkert.org// Array of strings for SimpleEnumParam 8024762Snate@binkert.orgextern const char *flagStrings[]; 8036143Snate@binkert.orgextern const int numFlagStrings; 8046143Snate@binkert.org 8056143Snate@binkert.org// Array of arraay pointers: for each compound flag, gives the list of 8064762Snate@binkert.org// base flags to set. Inidividual flag arrays are terminated by -1. 8074762Snate@binkert.orgextern const Flags *compoundFlags[]; 8087756SAli.Saidi@ARM.com 8097816Ssteve.reinhardt@amd.com/* namespace Trace */ } 8104762Snate@binkert.org 81110454SCurtis.Dunham@arm.com#endif // __BASE_TRACE_FLAGS_HH__ 8124762Snate@binkert.org''' 8134762Snate@binkert.org 8144762Snate@binkert.org f.close() 8157756SAli.Saidi@ARM.com 8168596Ssteve.reinhardt@amd.comflags = [ Value(f) for f in trace_flags ] 8174762Snate@binkert.orgenv.Command('base/traceflags.py', flags, traceFlagsPy) 81810454SCurtis.Dunham@arm.comPySource('m5', 'base/traceflags.py') 8194762Snate@binkert.org 82011802Sandreas.sandberg@arm.comenv.Command('base/traceflags.hh', flags, traceFlagsHH) 8217756SAli.Saidi@ARM.comenv.Command('base/traceflags.cc', flags, traceFlagsCC) 8228596Ssteve.reinhardt@amd.comSource('base/traceflags.cc') 8237675Snate@binkert.org 82410454SCurtis.Dunham@arm.com# Generate program_info.cc 82511802Sandreas.sandberg@arm.comdef programInfo(target, source, env): 8265517Snate@binkert.org def gen_file(target, rev, node, date): 8278596Ssteve.reinhardt@amd.com pi_stats = file(target, 'w') 82810584Sandreas.hansson@arm.com print >>pi_stats, 'const char *hgRev = "%s:%s";' % (rev, node) 8299248SAndreas.Sandberg@arm.com print >>pi_stats, 'const char *hgDate = "%s";' % date 8309248SAndreas.Sandberg@arm.com pi_stats.close() 83111802Sandreas.sandberg@arm.com 8328596Ssteve.reinhardt@amd.com target = str(target[0]) 8338596Ssteve.reinhardt@amd.com scons_dir = str(source[0].get_contents()) 8349248SAndreas.Sandberg@arm.com try: 83511802Sandreas.sandberg@arm.com import mercurial.demandimport, mercurial.hg, mercurial.ui 8364762Snate@binkert.org import mercurial.util, mercurial.node 8377674Snate@binkert.org if not exists(scons_dir) or not isdir(scons_dir) or \ 83811548Sandreas.hansson@arm.com not exists(joinpath(scons_dir, ".hg")): 83911548Sandreas.hansson@arm.com raise ValueError 84011548Sandreas.hansson@arm.com repo = mercurial.hg.repository(mercurial.ui.ui(), scons_dir) 8417674Snate@binkert.org rev = mercurial.node.nullrev + repo.changelog.count() 84211548Sandreas.hansson@arm.com changenode = repo.changelog.node(rev) 84311548Sandreas.hansson@arm.com changes = repo.changelog.read(changenode) 84411548Sandreas.hansson@arm.com date = mercurial.util.datestr(changes[2]) 84511548Sandreas.hansson@arm.com 84611548Sandreas.hansson@arm.com gen_file(target, rev, mercurial.node.hex(changenode), date) 84711548Sandreas.hansson@arm.com 84811548Sandreas.hansson@arm.com mercurial.demandimport.disable() 84911548Sandreas.hansson@arm.com except ImportError: 8507674Snate@binkert.org gen_file(target, "Unknown", "Unknown", "Unknown") 85111548Sandreas.hansson@arm.com 85211548Sandreas.hansson@arm.com except: 85311548Sandreas.hansson@arm.com print "in except" 85411548Sandreas.hansson@arm.com gen_file(target, "Unknown", "Unknown", "Unknown") 85511548Sandreas.hansson@arm.com mercurial.demandimport.disable() 85611548Sandreas.hansson@arm.com 85711548Sandreas.hansson@arm.comenv.Command('base/program_info.cc', 85811548Sandreas.hansson@arm.com Value(str(SCons.Node.FS.default_fs.SConstruct_dir)), 85911308Santhony.gutierrez@amd.com programInfo) 8604762Snate@binkert.org 8616143Snate@binkert.org# embed python files. All .py files that have been indicated by a 8626143Snate@binkert.org# PySource() call in a SConscript need to be embedded into the M5 8637756SAli.Saidi@ARM.com# library. To do that, we compile the file to byte code, marshal the 8647816Ssteve.reinhardt@amd.com# byte code, compress it, and then generate an assembly file that 8658235Snate@binkert.org# inserts the result into the data section with symbols indicating the 8668596Ssteve.reinhardt@amd.com# beginning, and end (and with the size at the end) 8677756SAli.Saidi@ARM.compy_sources_tnodes = {} 86811548Sandreas.hansson@arm.comfor pysource in py_sources: 86911548Sandreas.hansson@arm.com py_sources_tnodes[pysource.tnode] = pysource 87010454SCurtis.Dunham@arm.com 8718235Snate@binkert.orgdef objectifyPyFile(target, source, env): 8724382Sbinkertn@umich.edu '''Action function to compile a .py into a code object, marshal 8739396Sandreas.hansson@arm.com it, compress it, and stick it into an asm file so the code appears 8749396Sandreas.hansson@arm.com as just bytes with a label in the data section''' 8759396Sandreas.hansson@arm.com 8769396Sandreas.hansson@arm.com src = file(str(source[0]), 'r').read() 8779396Sandreas.hansson@arm.com dst = file(str(target[0]), 'w') 8789396Sandreas.hansson@arm.com 8799396Sandreas.hansson@arm.com pysource = py_sources_tnodes[source[0]] 8809396Sandreas.hansson@arm.com compiled = compile(src, pysource.debugname, 'exec') 8819396Sandreas.hansson@arm.com marshalled = marshal.dumps(compiled) 8829396Sandreas.hansson@arm.com compressed = zlib.compress(marshalled) 8839396Sandreas.hansson@arm.com data = compressed 8849396Sandreas.hansson@arm.com 88510454SCurtis.Dunham@arm.com # Some C/C++ compilers prepend an underscore to global symbol 8869396Sandreas.hansson@arm.com # names, so if they're going to do that, we need to prepend that 8879396Sandreas.hansson@arm.com # leading underscore to globals in the assembly file. 8889396Sandreas.hansson@arm.com if env['LEADING_UNDERSCORE']: 8899396Sandreas.hansson@arm.com sym = '_' + pysource.symname 8909396Sandreas.hansson@arm.com else: 8919396Sandreas.hansson@arm.com sym = pysource.symname 8928232Snate@binkert.org 8938232Snate@binkert.org step = 16 8948232Snate@binkert.org print >>dst, ".data" 8958232Snate@binkert.org print >>dst, ".globl %s_beg" % sym 8968232Snate@binkert.org print >>dst, ".globl %s_end" % sym 8976229Snate@binkert.org print >>dst, "%s_beg:" % sym 89810455SCurtis.Dunham@arm.com for i in xrange(0, len(data), step): 8996229Snate@binkert.org x = array.array('B', data[i:i+step]) 90010455SCurtis.Dunham@arm.com print >>dst, ".byte", ','.join([str(d) for d in x]) 90110455SCurtis.Dunham@arm.com print >>dst, "%s_end:" % sym 90210455SCurtis.Dunham@arm.com print >>dst, ".long %d" % len(marshalled) 9035517Snate@binkert.org 9045517Snate@binkert.orgfor source in py_sources: 9057673Snate@binkert.org env.Command(source.assembly, source.tnode, objectifyPyFile) 9065517Snate@binkert.org Source(source.assembly) 90710455SCurtis.Dunham@arm.com 9085517Snate@binkert.org# Generate init_python.cc which creates a bunch of EmbeddedPyModule 9095517Snate@binkert.org# structs that describe the embedded python code. One such struct 9108232Snate@binkert.org# contains information about the importer that python uses to get at 91110455SCurtis.Dunham@arm.com# the embedded files, and then there's a list of all of the rest that 91210455SCurtis.Dunham@arm.com# the importer uses to load the rest on demand. 91310455SCurtis.Dunham@arm.compy_sources_symbols = {} 9147673Snate@binkert.orgfor pysource in py_sources: 9157673Snate@binkert.org py_sources_symbols[pysource.symname] = pysource 91610455SCurtis.Dunham@arm.comdef pythonInit(target, source, env): 91710455SCurtis.Dunham@arm.com dst = file(str(target[0]), 'w') 91810455SCurtis.Dunham@arm.com 9195517Snate@binkert.org def dump_mod(sym, endchar=','): 92010455SCurtis.Dunham@arm.com pysource = py_sources_symbols[sym] 92110455SCurtis.Dunham@arm.com print >>dst, ' { "%s",' % pysource.arcname 92210455SCurtis.Dunham@arm.com print >>dst, ' "%s",' % pysource.modpath 92310455SCurtis.Dunham@arm.com print >>dst, ' %s_beg, %s_end,' % (sym, sym) 92410455SCurtis.Dunham@arm.com print >>dst, ' %s_end - %s_beg,' % (sym, sym) 92510455SCurtis.Dunham@arm.com print >>dst, ' *(int *)%s_end }%s' % (sym, endchar) 92610455SCurtis.Dunham@arm.com 92710455SCurtis.Dunham@arm.com print >>dst, '#include "sim/init.hh"' 92810685Sandreas.hansson@arm.com 92910455SCurtis.Dunham@arm.com for sym in source: 93010685Sandreas.hansson@arm.com sym = sym.get_contents() 93110455SCurtis.Dunham@arm.com print >>dst, "extern const char %s_beg[], %s_end[];" % (sym, sym) 9325517Snate@binkert.org 93310455SCurtis.Dunham@arm.com print >>dst, "const EmbeddedPyModule embeddedPyImporter = " 9348232Snate@binkert.org dump_mod("PyEMB_importer", endchar=';'); 9358232Snate@binkert.org print >>dst 9365517Snate@binkert.org 9377673Snate@binkert.org print >>dst, "const EmbeddedPyModule embeddedPyModules[] = {" 9385517Snate@binkert.org for i,sym in enumerate(source): 9398232Snate@binkert.org sym = sym.get_contents() 9408232Snate@binkert.org if sym == "PyEMB_importer": 9415517Snate@binkert.org # Skip the importer since we've already exported it 9428232Snate@binkert.org continue 9438232Snate@binkert.org dump_mod(sym) 9448232Snate@binkert.org print >>dst, " { 0, 0, 0, 0, 0, 0 }" 9457673Snate@binkert.org print >>dst, "};" 9465517Snate@binkert.org 9475517Snate@binkert.orgsymbols = [Value(s.symname) for s in py_sources] 9487673Snate@binkert.orgenv.Command('sim/init_python.cc', symbols, pythonInit) 9495517Snate@binkert.orgSource('sim/init_python.cc') 95010455SCurtis.Dunham@arm.com 9515517Snate@binkert.org######################################################################## 9525517Snate@binkert.org# 9538232Snate@binkert.org# Define binaries. Each different build type (debug, opt, etc.) gets 9548232Snate@binkert.org# a slightly different build environment. 9555517Snate@binkert.org# 9568232Snate@binkert.org 9578232Snate@binkert.org# List of constructed environments to pass back to SConstruct 9585517Snate@binkert.orgenvList = [] 9598232Snate@binkert.org 9608232Snate@binkert.org# This function adds the specified sources to the given build 9618232Snate@binkert.org# environment, and returns a list of all the corresponding SCons 9625517Snate@binkert.org# Object nodes (including an extra one for date.cc). We explicitly 9638232Snate@binkert.org# add the Object nodes so we can set up special dependencies for 9648232Snate@binkert.org# date.cc. 9658232Snate@binkert.orgdef make_objs(sources, env, static): 9668232Snate@binkert.org if static: 9678232Snate@binkert.org XObject = env.StaticObject 9688232Snate@binkert.org else: 9695517Snate@binkert.org XObject = env.SharedObject 9708232Snate@binkert.org 9718232Snate@binkert.org objs = [ XObject(s) for s in sources ] 9725517Snate@binkert.org 9738232Snate@binkert.org # make date.cc depend on all other objects so it always gets 9747673Snate@binkert.org # recompiled whenever anything else does 9755517Snate@binkert.org date_obj = XObject('base/date.cc') 9767673Snate@binkert.org 9775517Snate@binkert.org # Make the generation of program_info.cc dependend on all 9788232Snate@binkert.org # the other cc files and the compiling of program_info.cc 9798232Snate@binkert.org # dependent on all the objects but program_info.o 9808232Snate@binkert.org pinfo_obj = XObject('base/program_info.cc') 9815192Ssaidi@eecs.umich.edu env.Depends('base/program_info.cc', sources) 98210454SCurtis.Dunham@arm.com env.Depends(date_obj, objs) 98310454SCurtis.Dunham@arm.com env.Depends(pinfo_obj, objs) 9848232Snate@binkert.org objs.extend([date_obj, pinfo_obj]) 98510455SCurtis.Dunham@arm.com return objs 98610455SCurtis.Dunham@arm.com 98710455SCurtis.Dunham@arm.com# Function to create a new build environment as clone of current 98810455SCurtis.Dunham@arm.com# environment 'env' with modified object suffix and optional stripped 98910455SCurtis.Dunham@arm.com# binary. Additional keyword arguments are appended to corresponding 99010455SCurtis.Dunham@arm.com# build environment vars. 9915192Ssaidi@eecs.umich.edudef makeEnv(label, objsfx, strip = False, **kwargs): 99211077SCurtis.Dunham@arm.com # SCons doesn't know to append a library suffix when there is a '.' in the 99311330SCurtis.Dunham@arm.com # name. Use '_' instead. 99411077SCurtis.Dunham@arm.com libname = 'm5_' + label 99511077SCurtis.Dunham@arm.com exename = 'm5.' + label 99611077SCurtis.Dunham@arm.com 99711330SCurtis.Dunham@arm.com new_env = env.Copy(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's') 99811077SCurtis.Dunham@arm.com new_env.Label = label 9997674Snate@binkert.org new_env.Append(**kwargs) 10005522Snate@binkert.org 10015522Snate@binkert.org swig_env = new_env.Copy() 10027674Snate@binkert.org if env['GCC']: 10037674Snate@binkert.org swig_env.Append(CCFLAGS='-Wno-uninitialized') 10047674Snate@binkert.org swig_env.Append(CCFLAGS='-Wno-sign-compare') 10057674Snate@binkert.org swig_env.Append(CCFLAGS='-Wno-parentheses') 10067674Snate@binkert.org 10077674Snate@binkert.org static_objs = make_objs(cc_lib_sources, new_env, static=True) 10087674Snate@binkert.org shared_objs = make_objs(cc_lib_sources, new_env, static=False) 10097674Snate@binkert.org static_objs += [ swig_env.StaticObject(s) for s in cc_swig_sources ] 10105522Snate@binkert.org shared_objs += [ swig_env.SharedObject(s) for s in cc_swig_sources ] 10115522Snate@binkert.org 10125522Snate@binkert.org # First make a library of everything but main() so other programs can 10135517Snate@binkert.org # link against m5. 10145522Snate@binkert.org static_lib = new_env.StaticLibrary(libname, static_objs + static_objs) 10155517Snate@binkert.org shared_lib = new_env.SharedLibrary(libname, shared_objs + shared_objs) 10166143Snate@binkert.org 10176727Ssteve.reinhardt@amd.com for target, sources in unit_tests: 10185522Snate@binkert.org objs = [ new_env.StaticObject(s) for s in sources ] 10195522Snate@binkert.org new_env.Program("unittest/%s.%s" % (target, label), objs + static_lib) 10205522Snate@binkert.org 10217674Snate@binkert.org # Now link a stub with main() and the static library. 10225517Snate@binkert.org objects = [new_env.Object(s) for s in cc_bin_sources] + static_lib 10237673Snate@binkert.org if strip: 10247673Snate@binkert.org unstripped_exe = exename + '.unstripped' 10257674Snate@binkert.org new_env.Program(unstripped_exe, objects) 10267673Snate@binkert.org if sys.platform == 'sunos5': 10277674Snate@binkert.org cmd = 'cp $SOURCE $TARGET; strip $TARGET' 10287674Snate@binkert.org else: 10298946Sandreas.hansson@arm.com cmd = 'strip $SOURCE -o $TARGET' 10307674Snate@binkert.org targets = new_env.Command(exename, unstripped_exe, cmd) 10317674Snate@binkert.org else: 10327674Snate@binkert.org targets = new_env.Program(exename, objects) 10335522Snate@binkert.org 10345522Snate@binkert.org new_env.M5Binary = targets[0] 10357674Snate@binkert.org envList.append(new_env) 10367674Snate@binkert.org 103711308Santhony.gutierrez@amd.com# Debug binary 10387674Snate@binkert.orgccflags = {} 10397673Snate@binkert.orgif env['GCC']: 10407674Snate@binkert.org if sys.platform == 'sunos5': 10417674Snate@binkert.org ccflags['debug'] = '-gstabs+' 10427674Snate@binkert.org else: 10437674Snate@binkert.org ccflags['debug'] = '-ggdb3' 10447674Snate@binkert.org ccflags['opt'] = '-g -O3' 10457674Snate@binkert.org ccflags['fast'] = '-O3' 10467674Snate@binkert.org ccflags['prof'] = '-O3 -g -pg' 10477674Snate@binkert.orgelif env['SUNCC']: 10487811Ssteve.reinhardt@amd.com ccflags['debug'] = '-g0' 10497674Snate@binkert.org ccflags['opt'] = '-g -O' 10507673Snate@binkert.org ccflags['fast'] = '-fast' 10515522Snate@binkert.org ccflags['prof'] = '-fast -g -pg' 10526143Snate@binkert.orgelif env['ICC']: 105310453SAndrew.Bardsley@arm.com ccflags['debug'] = '-g -O0' 10547816Ssteve.reinhardt@amd.com ccflags['opt'] = '-g -O' 105510454SCurtis.Dunham@arm.com ccflags['fast'] = '-fast' 105610453SAndrew.Bardsley@arm.com ccflags['prof'] = '-fast -g -pg' 10574382Sbinkertn@umich.eduelse: 10584382Sbinkertn@umich.edu print 'Unknown compiler, please fix compiler options' 10594382Sbinkertn@umich.edu Exit(1) 10604382Sbinkertn@umich.edu 10614382Sbinkertn@umich.edumakeEnv('debug', '.do', 10624382Sbinkertn@umich.edu CCFLAGS = Split(ccflags['debug']), 10634382Sbinkertn@umich.edu CPPDEFINES = ['DEBUG', 'TRACING_ON=1']) 10644382Sbinkertn@umich.edu 106510196SCurtis.Dunham@arm.com# Optimized binary 10664382Sbinkertn@umich.edumakeEnv('opt', '.o', 106710196SCurtis.Dunham@arm.com CCFLAGS = Split(ccflags['opt']), 106810196SCurtis.Dunham@arm.com CPPDEFINES = ['TRACING_ON=1']) 106910196SCurtis.Dunham@arm.com 107010196SCurtis.Dunham@arm.com# "Fast" binary 107110196SCurtis.Dunham@arm.commakeEnv('fast', '.fo', strip = True, 107210196SCurtis.Dunham@arm.com CCFLAGS = Split(ccflags['fast']), 107310196SCurtis.Dunham@arm.com CPPDEFINES = ['NDEBUG', 'TRACING_ON=0']) 1074955SN/A 10752655Sstever@eecs.umich.edu# Profiled binary 10762655Sstever@eecs.umich.edumakeEnv('prof', '.po', 10772655Sstever@eecs.umich.edu CCFLAGS = Split(ccflags['prof']), 10782655Sstever@eecs.umich.edu CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 107910196SCurtis.Dunham@arm.com LINKFLAGS = '-pg') 10805601Snate@binkert.org 10815601Snate@binkert.orgReturn('envList') 108210196SCurtis.Dunham@arm.com