SConscript revision 6727
1955SN/A# -*- mode:python -*- 2955SN/A 31762SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan 4955SN/A# All rights reserved. 5955SN/A# 6955SN/A# Redistribution and use in source and binary forms, with or without 7955SN/A# modification, are permitted provided that the following conditions are 8955SN/A# met: redistributions of source code must retain the above copyright 9955SN/A# notice, this list of conditions and the following disclaimer; 10955SN/A# redistributions in binary form must reproduce the above copyright 11955SN/A# notice, this list of conditions and the following disclaimer in the 12955SN/A# documentation and/or other materials provided with the distribution; 13955SN/A# neither the name of the copyright holders nor the names of its 14955SN/A# contributors may be used to endorse or promote products derived from 15955SN/A# this software without specific prior written permission. 16955SN/A# 17955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 282665Ssaidi@eecs.umich.edu# 294762Snate@binkert.org# Authors: Nathan Binkert 30955SN/A 315522Snate@binkert.orgimport array 326143Snate@binkert.orgimport bisect 334762Snate@binkert.orgimport imp 345522Snate@binkert.orgimport marshal 35955SN/Aimport os 365522Snate@binkert.orgimport re 37955SN/Aimport sys 385522Snate@binkert.orgimport zlib 394202Sbinkertn@umich.edu 405742Snate@binkert.orgfrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath 41955SN/A 424381Sbinkertn@umich.eduimport SCons 434381Sbinkertn@umich.edu 448334Snate@binkert.org# This file defines how to build a particular configuration of M5 45955SN/A# based on variable settings in the 'env' build environment. 46955SN/A 474202Sbinkertn@umich.eduImport('*') 48955SN/A 494382Sbinkertn@umich.edu# Children need to see the environment 504382Sbinkertn@umich.eduExport('env') 514382Sbinkertn@umich.edu 526654Snate@binkert.orgbuild_env = [(opt, env[opt]) for opt in export_vars] 535517Snate@binkert.org 548614Sgblack@eecs.umich.edu######################################################################## 557674Snate@binkert.org# Code for adding source files of various types 566143Snate@binkert.org# 576143Snate@binkert.orgclass SourceMeta(type): 586143Snate@binkert.org def __init__(cls, name, bases, dict): 598233Snate@binkert.org super(SourceMeta, cls).__init__(name, bases, dict) 608233Snate@binkert.org cls.all = [] 618233Snate@binkert.org 628233Snate@binkert.org def get(cls, **kwargs): 638233Snate@binkert.org for src in cls.all: 648334Snate@binkert.org for attr,value in kwargs.iteritems(): 658334Snate@binkert.org if getattr(src, attr) != value: 668233Snate@binkert.org break 678233Snate@binkert.org else: 688233Snate@binkert.org yield src 698233Snate@binkert.org 708233Snate@binkert.orgclass SourceFile(object): 718233Snate@binkert.org __metaclass__ = SourceMeta 726143Snate@binkert.org def __init__(self, source): 738233Snate@binkert.org tnode = source 748233Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 758233Snate@binkert.org tnode = File(source) 766143Snate@binkert.org 776143Snate@binkert.org self.tnode = tnode 786143Snate@binkert.org self.snode = tnode.srcnode() 796143Snate@binkert.org self.filename = str(tnode) 808233Snate@binkert.org self.dirname = dirname(self.filename) 818233Snate@binkert.org self.basename = basename(self.filename) 828233Snate@binkert.org index = self.basename.rfind('.') 836143Snate@binkert.org if index <= 0: 848233Snate@binkert.org # dot files aren't extensions 858233Snate@binkert.org self.extname = self.basename, None 868233Snate@binkert.org else: 878233Snate@binkert.org self.extname = self.basename[:index], self.basename[index+1:] 886143Snate@binkert.org 896143Snate@binkert.org for base in type(self).__mro__: 906143Snate@binkert.org if issubclass(base, SourceFile): 914762Snate@binkert.org bisect.insort_right(base.all, self) 926143Snate@binkert.org 938233Snate@binkert.org def __lt__(self, other): return self.filename < other.filename 948233Snate@binkert.org def __le__(self, other): return self.filename <= other.filename 958233Snate@binkert.org def __gt__(self, other): return self.filename > other.filename 968233Snate@binkert.org def __ge__(self, other): return self.filename >= other.filename 978233Snate@binkert.org def __eq__(self, other): return self.filename == other.filename 986143Snate@binkert.org def __ne__(self, other): return self.filename != other.filename 998233Snate@binkert.org 1008233Snate@binkert.orgclass Source(SourceFile): 1018233Snate@binkert.org '''Add a c/c++ source file to the build''' 1028233Snate@binkert.org def __init__(self, source, Werror=True, swig=False, bin_only=False, 1036143Snate@binkert.org skip_lib=False): 1046143Snate@binkert.org super(Source, self).__init__(source) 1056143Snate@binkert.org 1066143Snate@binkert.org self.Werror = Werror 1076143Snate@binkert.org self.swig = swig 1086143Snate@binkert.org self.bin_only = bin_only 1096143Snate@binkert.org self.skip_lib = bin_only or skip_lib 1106143Snate@binkert.org 1116143Snate@binkert.orgclass PySource(SourceFile): 1127065Snate@binkert.org '''Add a python source file to the named package''' 1136143Snate@binkert.org invalid_sym_char = re.compile('[^A-z0-9_]') 1148233Snate@binkert.org modules = {} 1158233Snate@binkert.org tnodes = {} 1168233Snate@binkert.org symnames = {} 1178233Snate@binkert.org 1188233Snate@binkert.org def __init__(self, package, source): 1198233Snate@binkert.org super(PySource, self).__init__(source) 1208233Snate@binkert.org 1218233Snate@binkert.org modname,ext = self.extname 1228233Snate@binkert.org assert ext == 'py' 1238233Snate@binkert.org 1248233Snate@binkert.org if package: 1258233Snate@binkert.org path = package.split('.') 1268233Snate@binkert.org else: 1278233Snate@binkert.org path = [] 1288233Snate@binkert.org 1298233Snate@binkert.org modpath = path[:] 1308233Snate@binkert.org if modname != '__init__': 1318233Snate@binkert.org modpath += [ modname ] 1328233Snate@binkert.org modpath = '.'.join(modpath) 1338233Snate@binkert.org 1348233Snate@binkert.org arcpath = path + [ self.basename ] 1358233Snate@binkert.org abspath = self.snode.abspath 1368233Snate@binkert.org if not exists(abspath): 1378233Snate@binkert.org abspath = self.tnode.abspath 1388233Snate@binkert.org 1398233Snate@binkert.org self.package = package 1408233Snate@binkert.org self.modname = modname 1418233Snate@binkert.org self.modpath = modpath 1428233Snate@binkert.org self.arcname = joinpath(*arcpath) 1438233Snate@binkert.org self.abspath = abspath 1448233Snate@binkert.org self.compiled = File(self.filename + 'c') 1456143Snate@binkert.org self.assembly = File(self.filename + '.s') 1466143Snate@binkert.org self.symname = "PyEMB_" + PySource.invalid_sym_char.sub('_', modpath) 1476143Snate@binkert.org 1486143Snate@binkert.org PySource.modules[modpath] = self 1496143Snate@binkert.org PySource.tnodes[self.tnode] = self 1506143Snate@binkert.org PySource.symnames[self.symname] = self 1516143Snate@binkert.org 1526143Snate@binkert.orgclass SimObject(PySource): 1536143Snate@binkert.org '''Add a SimObject python file as a python source object and add 1548233Snate@binkert.org it to a list of sim object modules''' 1558233Snate@binkert.org 1568233Snate@binkert.org fixed = False 1576143Snate@binkert.org modnames = [] 1586143Snate@binkert.org 1596143Snate@binkert.org def __init__(self, source): 1606143Snate@binkert.org super(SimObject, self).__init__('m5.objects', source) 1616143Snate@binkert.org if self.fixed: 1626143Snate@binkert.org raise AttributeError, "Too late to call SimObject now." 1635522Snate@binkert.org 1646143Snate@binkert.org bisect.insort_right(SimObject.modnames, self.modname) 1656143Snate@binkert.org 1666143Snate@binkert.orgclass SwigSource(SourceFile): 1676143Snate@binkert.org '''Add a swig file to build''' 1688233Snate@binkert.org 1698233Snate@binkert.org def __init__(self, package, source): 1708233Snate@binkert.org super(SwigSource, self).__init__(source) 1716143Snate@binkert.org 1726143Snate@binkert.org modname,ext = self.extname 1736143Snate@binkert.org assert ext == 'i' 1746143Snate@binkert.org 1755522Snate@binkert.org self.module = modname 1765522Snate@binkert.org cc_file = joinpath(self.dirname, modname + '_wrap.cc') 1775522Snate@binkert.org py_file = joinpath(self.dirname, modname + '.py') 1785522Snate@binkert.org 1795604Snate@binkert.org self.cc_source = Source(cc_file, swig=True) 1805604Snate@binkert.org self.py_source = PySource(package, py_file) 1816143Snate@binkert.org 1826143Snate@binkert.orgunit_tests = [] 1834762Snate@binkert.orgdef UnitTest(target, sources): 1844762Snate@binkert.org if not isinstance(sources, (list, tuple)): 1856143Snate@binkert.org sources = [ sources ] 1866727Ssteve.reinhardt@amd.com 1876727Ssteve.reinhardt@amd.com sources = [ Source(src, skip_lib=True) for src in sources ] 1886727Ssteve.reinhardt@amd.com unit_tests.append((target, sources)) 1894762Snate@binkert.org 1906143Snate@binkert.org# Children should have access 1916143Snate@binkert.orgExport('Source') 1926143Snate@binkert.orgExport('PySource') 1936143Snate@binkert.orgExport('SimObject') 1946727Ssteve.reinhardt@amd.comExport('SwigSource') 1956143Snate@binkert.orgExport('UnitTest') 1967674Snate@binkert.org 1977674Snate@binkert.org######################################################################## 1985604Snate@binkert.org# 1996143Snate@binkert.org# Trace Flags 2006143Snate@binkert.org# 2016143Snate@binkert.orgtrace_flags = {} 2024762Snate@binkert.orgdef TraceFlag(name, desc=None): 2036143Snate@binkert.org if name in trace_flags: 2044762Snate@binkert.org raise AttributeError, "Flag %s already specified" % name 2054762Snate@binkert.org trace_flags[name] = (name, (), desc) 2064762Snate@binkert.org 2076143Snate@binkert.orgdef CompoundFlag(name, flags, desc=None): 2086143Snate@binkert.org if name in trace_flags: 2094762Snate@binkert.org raise AttributeError, "Flag %s already specified" % name 2108233Snate@binkert.org 2118233Snate@binkert.org compound = tuple(flags) 2128233Snate@binkert.org trace_flags[name] = (name, compound, desc) 2138233Snate@binkert.org 2146143Snate@binkert.orgExport('TraceFlag') 2156143Snate@binkert.orgExport('CompoundFlag') 2164762Snate@binkert.org 2176143Snate@binkert.org######################################################################## 2184762Snate@binkert.org# 2196143Snate@binkert.org# Set some compiler variables 2204762Snate@binkert.org# 2216143Snate@binkert.org 2228233Snate@binkert.org# Include file paths are rooted in this directory. SCons will 2238233Snate@binkert.org# automatically expand '.' to refer to both the source directory and 2248233Snate@binkert.org# the corresponding build directory to pick up generated include 2256143Snate@binkert.org# files. 2266143Snate@binkert.orgenv.Append(CPPPATH=Dir('.')) 2276143Snate@binkert.org 2286143Snate@binkert.orgfor extra_dir in extras_dir_list: 2296143Snate@binkert.org env.Append(CPPPATH=Dir(extra_dir)) 2306143Snate@binkert.org 2316143Snate@binkert.org# Workaround for bug in SCons version > 0.97d20071212 2326143Snate@binkert.org# Scons bug id: 2006 M5 Bug id: 308 2338233Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True): 2348233Snate@binkert.org Dir(root[len(base_dir) + 1:]) 235955SN/A 2368235Snate@binkert.org######################################################################## 2378235Snate@binkert.org# 2386143Snate@binkert.org# Walk the tree and execute all SConscripts in subdirectories 2398235Snate@binkert.org# 2408235Snate@binkert.org 2418235Snate@binkert.orghere = Dir('.').srcnode().abspath 2428235Snate@binkert.orgfor root, dirs, files in os.walk(base_dir, topdown=True): 2438235Snate@binkert.org if root == here: 2448235Snate@binkert.org # we don't want to recurse back into this SConscript 2458235Snate@binkert.org continue 2468235Snate@binkert.org 2478235Snate@binkert.org if 'SConscript' in files: 2488235Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:]) 2498235Snate@binkert.org SConscript(joinpath(root, 'SConscript'), build_dir=build_dir) 2508235Snate@binkert.org 2518235Snate@binkert.orgfor extra_dir in extras_dir_list: 2528235Snate@binkert.org prefix_len = len(dirname(extra_dir)) + 1 2538235Snate@binkert.org for root, dirs, files in os.walk(extra_dir, topdown=True): 2548235Snate@binkert.org if 'SConscript' in files: 2558235Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[prefix_len:]) 2565584Snate@binkert.org SConscript(joinpath(root, 'SConscript'), build_dir=build_dir) 2574382Sbinkertn@umich.edu 2584202Sbinkertn@umich.edufor opt in export_vars: 2594382Sbinkertn@umich.edu env.ConfigFile(opt) 2604382Sbinkertn@umich.edu 2614382Sbinkertn@umich.edudef makeTheISA(source, target, env): 2625584Snate@binkert.org f = file(str(target[0]), 'w') 2634382Sbinkertn@umich.edu 2644382Sbinkertn@umich.edu isas = [ src.get_contents() for src in source ] 2654382Sbinkertn@umich.edu target = env['TARGET_ISA'] 2668232Snate@binkert.org def define(isa): 2675192Ssaidi@eecs.umich.edu return isa.upper() + '_ISA' 2688232Snate@binkert.org 2698232Snate@binkert.org def namespace(isa): 2708232Snate@binkert.org return isa[0].upper() + isa[1:].lower() + 'ISA' 2715192Ssaidi@eecs.umich.edu 2728232Snate@binkert.org 2735192Ssaidi@eecs.umich.edu print >>f, '#ifndef __CONFIG_THE_ISA_HH__' 2745799Snate@binkert.org print >>f, '#define __CONFIG_THE_ISA_HH__' 2758232Snate@binkert.org print >>f 2765192Ssaidi@eecs.umich.edu for i,isa in enumerate(isas): 2775192Ssaidi@eecs.umich.edu print >>f, '#define %s %d' % (define(isa), i + 1) 2785192Ssaidi@eecs.umich.edu print >>f 2798232Snate@binkert.org print >>f, '#define THE_ISA %s' % (define(target)) 2805192Ssaidi@eecs.umich.edu print >>f, '#define TheISA %s' % (namespace(target)) 2818232Snate@binkert.org print >>f 2825192Ssaidi@eecs.umich.edu print >>f, '#endif // __CONFIG_THE_ISA_HH__' 2835192Ssaidi@eecs.umich.edu 2845192Ssaidi@eecs.umich.eduenv.Command('config/the_isa.hh', map(Value, all_isa_list), makeTheISA) 2855192Ssaidi@eecs.umich.edu 2864382Sbinkertn@umich.edu######################################################################## 2874382Sbinkertn@umich.edu# 2884382Sbinkertn@umich.edu# Prevent any SimObjects from being added after this point, they 2892667Sstever@eecs.umich.edu# should all have been added in the SConscripts above 2902667Sstever@eecs.umich.edu# 2912667Sstever@eecs.umich.eduSimObject.fixed = True 2922667Sstever@eecs.umich.edu 2932667Sstever@eecs.umich.educlass DictImporter(object): 2942667Sstever@eecs.umich.edu '''This importer takes a dictionary of arbitrary module names that 2955742Snate@binkert.org map to arbitrary filenames.''' 2965742Snate@binkert.org def __init__(self, modules): 2975742Snate@binkert.org self.modules = modules 2985793Snate@binkert.org self.installed = set() 2998334Snate@binkert.org 3005793Snate@binkert.org def __del__(self): 3015793Snate@binkert.org self.unload() 3025793Snate@binkert.org 3034382Sbinkertn@umich.edu def unload(self): 3044762Snate@binkert.org import sys 3055344Sstever@gmail.com for module in self.installed: 3064382Sbinkertn@umich.edu del sys.modules[module] 3075341Sstever@gmail.com self.installed = set() 3085742Snate@binkert.org 3095742Snate@binkert.org def find_module(self, fullname, path): 3105742Snate@binkert.org if fullname == 'm5.defines': 3115742Snate@binkert.org return self 3125742Snate@binkert.org 3134762Snate@binkert.org if fullname == 'm5.objects': 3145742Snate@binkert.org return self 3155742Snate@binkert.org 3167722Sgblack@eecs.umich.edu if fullname.startswith('m5.internal'): 3175742Snate@binkert.org return None 3185742Snate@binkert.org 3195742Snate@binkert.org source = self.modules.get(fullname, None) 3205742Snate@binkert.org if source is not None and fullname.startswith('m5.objects'): 3218242Sbradley.danofsky@amd.com return self 3228242Sbradley.danofsky@amd.com 3238242Sbradley.danofsky@amd.com return None 3248242Sbradley.danofsky@amd.com 3255341Sstever@gmail.com def load_module(self, fullname): 3265742Snate@binkert.org mod = imp.new_module(fullname) 3277722Sgblack@eecs.umich.edu sys.modules[fullname] = mod 3284773Snate@binkert.org self.installed.add(fullname) 3296108Snate@binkert.org 3301858SN/A mod.__loader__ = self 3311085SN/A if fullname == 'm5.objects': 3326658Snate@binkert.org mod.__path__ = fullname.split('.') 3336658Snate@binkert.org return mod 3347673Snate@binkert.org 3356658Snate@binkert.org if fullname == 'm5.defines': 3366658Snate@binkert.org mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env) 3376658Snate@binkert.org return mod 3386658Snate@binkert.org 3396658Snate@binkert.org source = self.modules[fullname] 3406658Snate@binkert.org if source.modname == '__init__': 3416658Snate@binkert.org mod.__path__ = source.modpath 3427673Snate@binkert.org mod.__file__ = source.abspath 3437673Snate@binkert.org 3447673Snate@binkert.org exec file(source.abspath, 'r') in mod.__dict__ 3457673Snate@binkert.org 3467673Snate@binkert.org return mod 3477673Snate@binkert.org 3487673Snate@binkert.orgimport m5.SimObject 3496658Snate@binkert.orgimport m5.params 3507673Snate@binkert.org 3517673Snate@binkert.orgm5.SimObject.clear() 3527673Snate@binkert.orgm5.params.clear() 3537673Snate@binkert.org 3547673Snate@binkert.org# install the python importer so we can grab stuff from the source 3557673Snate@binkert.org# tree itself. We can't have SimObjects added after this point or 3567673Snate@binkert.org# else we won't know about them for the rest of the stuff. 3577673Snate@binkert.orgimporter = DictImporter(PySource.modules) 3587673Snate@binkert.orgsys.meta_path[0:0] = [ importer ] 3597673Snate@binkert.org 3606658Snate@binkert.org# import all sim objects so we can populate the all_objects list 3617756SAli.Saidi@ARM.com# make sure that we're working with a list, then let's sort it 3627816Ssteve.reinhardt@amd.comfor modname in SimObject.modnames: 3636658Snate@binkert.org exec('from m5.objects import %s' % modname) 3644382Sbinkertn@umich.edu 3654382Sbinkertn@umich.edu# we need to unload all of the currently imported modules so that they 3664762Snate@binkert.org# will be re-imported the next time the sconscript is run 3674762Snate@binkert.orgimporter.unload() 3684762Snate@binkert.orgsys.meta_path.remove(importer) 3696654Snate@binkert.org 3706654Snate@binkert.orgsim_objects = m5.SimObject.allClasses 3715517Snate@binkert.orgall_enums = m5.params.allEnums 3725517Snate@binkert.org 3735517Snate@binkert.orgall_params = {} 3745517Snate@binkert.orgfor name,obj in sorted(sim_objects.iteritems()): 3755517Snate@binkert.org for param in obj._params.local.values(): 3765517Snate@binkert.org # load the ptype attribute now because it depends on the 3775517Snate@binkert.org # current version of SimObject.allClasses, but when scons 3785517Snate@binkert.org # actually uses the value, all versions of 3795517Snate@binkert.org # SimObject.allClasses will have been loaded 3805517Snate@binkert.org param.ptype 3815517Snate@binkert.org 3825517Snate@binkert.org if not hasattr(param, 'swig_decl'): 3835517Snate@binkert.org continue 3845517Snate@binkert.org pname = param.ptype_str 3855517Snate@binkert.org if pname not in all_params: 3865517Snate@binkert.org all_params[pname] = param 3875517Snate@binkert.org 3886654Snate@binkert.org######################################################################## 3895517Snate@binkert.org# 3905517Snate@binkert.org# calculate extra dependencies 3915517Snate@binkert.org# 3925517Snate@binkert.orgmodule_depends = ["m5", "m5.SimObject", "m5.params"] 3935517Snate@binkert.orgdepends = [ PySource.modules[dep].tnode for dep in module_depends ] 3945517Snate@binkert.org 3955517Snate@binkert.org######################################################################## 3965517Snate@binkert.org# 3976143Snate@binkert.org# Commands for the basic automatically generated python files 3986654Snate@binkert.org# 3995517Snate@binkert.org 4005517Snate@binkert.org# Generate Python file containing a dict specifying the current 4015517Snate@binkert.org# buildEnv flags. 4025517Snate@binkert.orgdef makeDefinesPyFile(target, source, env): 4035517Snate@binkert.org build_env, hg_info = [ x.get_contents() for x in source ] 4045517Snate@binkert.org 4055517Snate@binkert.org code = m5.util.code_formatter() 4065517Snate@binkert.org code(""" 4075517Snate@binkert.orgimport m5.internal 4085517Snate@binkert.orgimport m5.util 4095517Snate@binkert.org 4105517Snate@binkert.orgbuildEnv = m5.util.SmartDict($build_env) 4115517Snate@binkert.orghgRev = '$hg_info' 4125517Snate@binkert.org 4136654Snate@binkert.orgcompileDate = m5.internal.core.compileDate 4146654Snate@binkert.org_globals = globals() 4155517Snate@binkert.orgfor key,val in m5.internal.core.__dict__.iteritems(): 4165517Snate@binkert.org if key.startswith('flag_'): 4176143Snate@binkert.org flag = key[5:] 4186143Snate@binkert.org _globals[flag] = val 4196143Snate@binkert.orgdel _globals 4206727Ssteve.reinhardt@amd.com""") 4215517Snate@binkert.org code.write(str(target[0])) 4226727Ssteve.reinhardt@amd.com 4235517Snate@binkert.orgdefines_info = [ Value(build_env), Value(env['HG_INFO']) ] 4245517Snate@binkert.org# Generate a file with all of the compile options in it 4255517Snate@binkert.orgenv.Command('python/m5/defines.py', defines_info, makeDefinesPyFile) 4266654Snate@binkert.orgPySource('m5', 'python/m5/defines.py') 4276654Snate@binkert.org 4287673Snate@binkert.org# Generate python file containing info about the M5 source code 4296654Snate@binkert.orgdef makeInfoPyFile(target, source, env): 4306654Snate@binkert.org f = file(str(target[0]), 'w') 4316654Snate@binkert.org for src in source: 4326654Snate@binkert.org data = ''.join(file(src.srcnode().abspath, 'r').xreadlines()) 4335517Snate@binkert.org print >>f, "%s = %s" % (src, repr(data)) 4345517Snate@binkert.org f.close() 4355517Snate@binkert.org 4366143Snate@binkert.org# Generate a file that wraps the basic top level files 4375517Snate@binkert.orgenv.Command('python/m5/info.py', 4384762Snate@binkert.org [ '#/AUTHORS', '#/LICENSE', '#/README', '#/RELEASE_NOTES' ], 4395517Snate@binkert.org makeInfoPyFile) 4405517Snate@binkert.orgPySource('m5', 'python/m5/info.py') 4416143Snate@binkert.org 4426143Snate@binkert.org# Generate the __init__.py file for m5.objects 4435517Snate@binkert.orgdef makeObjectsInitFile(target, source, env): 4445517Snate@binkert.org f = file(str(target[0]), 'w') 4455517Snate@binkert.org print >>f, 'from params import *' 4465517Snate@binkert.org print >>f, 'from m5.SimObject import *' 4475517Snate@binkert.org for module in source: 4485517Snate@binkert.org print >>f, 'from %s import *' % module.get_contents() 4495517Snate@binkert.org f.close() 4505517Snate@binkert.org 4515517Snate@binkert.org# Generate an __init__.py file for the objects package 4528596Ssteve.reinhardt@amd.comenv.Command('python/m5/objects/__init__.py', 4538596Ssteve.reinhardt@amd.com map(Value, SimObject.modnames), 4548596Ssteve.reinhardt@amd.com makeObjectsInitFile) 4558596Ssteve.reinhardt@amd.comPySource('m5.objects', 'python/m5/objects/__init__.py') 4568596Ssteve.reinhardt@amd.com 4578596Ssteve.reinhardt@amd.com######################################################################## 4588596Ssteve.reinhardt@amd.com# 4596143Snate@binkert.org# Create all of the SimObject param headers and enum headers 4605517Snate@binkert.org# 4616654Snate@binkert.org 4626654Snate@binkert.orgdef createSimObjectParam(target, source, env): 4636654Snate@binkert.org assert len(target) == 1 and len(source) == 1 4646654Snate@binkert.org 4656654Snate@binkert.org hh_file = file(target[0].abspath, 'w') 4666654Snate@binkert.org name = str(source[0].get_contents()) 4675517Snate@binkert.org obj = sim_objects[name] 4685517Snate@binkert.org 4695517Snate@binkert.org print >>hh_file, obj.cxx_decl() 4708596Ssteve.reinhardt@amd.com hh_file.close() 4718596Ssteve.reinhardt@amd.com 4724762Snate@binkert.orgdef createSwigParam(target, source, env): 4734762Snate@binkert.org assert len(target) == 1 and len(source) == 1 4744762Snate@binkert.org 4754762Snate@binkert.org i_file = file(target[0].abspath, 'w') 4764762Snate@binkert.org name = str(source[0].get_contents()) 4774762Snate@binkert.org param = all_params[name] 4787675Snate@binkert.org 4794762Snate@binkert.org for line in param.swig_decl(): 4804762Snate@binkert.org print >>i_file, line 4814762Snate@binkert.org i_file.close() 4824762Snate@binkert.org 4834382Sbinkertn@umich.edudef createEnumStrings(target, source, env): 4844382Sbinkertn@umich.edu assert len(target) == 1 and len(source) == 1 4855517Snate@binkert.org 4866654Snate@binkert.org cc_file = file(target[0].abspath, 'w') 4875517Snate@binkert.org name = str(source[0].get_contents()) 4888126Sgblack@eecs.umich.edu obj = all_enums[name] 4896654Snate@binkert.org 4907673Snate@binkert.org print >>cc_file, obj.cxx_def() 4916654Snate@binkert.org cc_file.close() 4926654Snate@binkert.org 4936654Snate@binkert.orgdef createEnumParam(target, source, env): 4946654Snate@binkert.org assert len(target) == 1 and len(source) == 1 4956654Snate@binkert.org 4966654Snate@binkert.org hh_file = file(target[0].abspath, 'w') 4976654Snate@binkert.org name = str(source[0].get_contents()) 4986669Snate@binkert.org obj = all_enums[name] 4996669Snate@binkert.org 5006669Snate@binkert.org print >>hh_file, obj.cxx_decl() 5016669Snate@binkert.org hh_file.close() 5026669Snate@binkert.org 5036669Snate@binkert.org# Generate all of the SimObject param struct header files 5046654Snate@binkert.orgparams_hh_files = [] 5057673Snate@binkert.orgfor name,simobj in sorted(sim_objects.iteritems()): 5065517Snate@binkert.org py_source = PySource.modules[simobj.__module__] 5078126Sgblack@eecs.umich.edu extra_deps = [ py_source.tnode ] 5085798Snate@binkert.org 5097756SAli.Saidi@ARM.com hh_file = File('params/%s.hh' % name) 5107816Ssteve.reinhardt@amd.com params_hh_files.append(hh_file) 5115798Snate@binkert.org env.Command(hh_file, Value(name), createSimObjectParam) 5125798Snate@binkert.org env.Depends(hh_file, depends + extra_deps) 5135517Snate@binkert.org 5145517Snate@binkert.org# Generate any parameter header files needed 5157673Snate@binkert.orgparams_i_files = [] 5165517Snate@binkert.orgfor name,param in all_params.iteritems(): 5175517Snate@binkert.org i_file = File('params/%s_%s.i' % (name, param.file_ext)) 5187673Snate@binkert.org params_i_files.append(i_file) 5197673Snate@binkert.org env.Command(i_file, Value(name), createSwigParam) 5205517Snate@binkert.org env.Depends(i_file, depends) 5215798Snate@binkert.org 5225798Snate@binkert.org# Generate all enum header files 5238333Snate@binkert.orgfor name,enum in sorted(all_enums.iteritems()): 5247816Ssteve.reinhardt@amd.com py_source = PySource.modules[enum.__module__] 5255798Snate@binkert.org extra_deps = [ py_source.tnode ] 5265798Snate@binkert.org 5274762Snate@binkert.org cc_file = File('enums/%s.cc' % name) 5284762Snate@binkert.org env.Command(cc_file, Value(name), createEnumStrings) 5294762Snate@binkert.org env.Depends(cc_file, depends + extra_deps) 5304762Snate@binkert.org Source(cc_file) 5314762Snate@binkert.org 5328596Ssteve.reinhardt@amd.com hh_file = File('enums/%s.hh' % name) 5335517Snate@binkert.org env.Command(hh_file, Value(name), createEnumParam) 5345517Snate@binkert.org env.Depends(hh_file, depends + extra_deps) 5355517Snate@binkert.org 5365517Snate@binkert.org# Build the big monolithic swigged params module (wraps all SimObject 5375517Snate@binkert.org# param structs and enum structs) 5387673Snate@binkert.orgdef buildParams(target, source, env): 5398596Ssteve.reinhardt@amd.com names = [ s.get_contents() for s in source ] 5407673Snate@binkert.org objs = [ sim_objects[name] for name in names ] 5415517Snate@binkert.org out = file(target[0].abspath, 'w') 5428596Ssteve.reinhardt@amd.com 5435517Snate@binkert.org ordered_objs = [] 5445517Snate@binkert.org obj_seen = set() 5455517Snate@binkert.org def order_obj(obj): 5468596Ssteve.reinhardt@amd.com name = str(obj) 5475517Snate@binkert.org if name in obj_seen: 5487673Snate@binkert.org return 5497673Snate@binkert.org 5507673Snate@binkert.org obj_seen.add(name) 5515517Snate@binkert.org if str(obj) != 'SimObject': 5525517Snate@binkert.org order_obj(obj.__bases__[0]) 5535517Snate@binkert.org 5545517Snate@binkert.org ordered_objs.append(obj) 5555517Snate@binkert.org 5565517Snate@binkert.org for obj in objs: 5575517Snate@binkert.org order_obj(obj) 5587673Snate@binkert.org 5597673Snate@binkert.org enums = set() 5607673Snate@binkert.org predecls = [] 5615517Snate@binkert.org pd_seen = set() 5628596Ssteve.reinhardt@amd.com 5635517Snate@binkert.org def add_pds(*pds): 5645517Snate@binkert.org for pd in pds: 5655517Snate@binkert.org if pd not in pd_seen: 5665517Snate@binkert.org predecls.append(pd) 5675517Snate@binkert.org pd_seen.add(pd) 5687673Snate@binkert.org 5697673Snate@binkert.org for obj in ordered_objs: 5707673Snate@binkert.org params = obj._params.local.values() 5715517Snate@binkert.org for param in params: 5728596Ssteve.reinhardt@amd.com ptype = param.ptype 5737675Snate@binkert.org if issubclass(ptype, m5.params.Enum): 5747675Snate@binkert.org if ptype not in enums: 5757675Snate@binkert.org enums.add(ptype) 5767675Snate@binkert.org pds = param.swig_predecls() 5777675Snate@binkert.org if isinstance(pds, (list, tuple)): 5787675Snate@binkert.org add_pds(*pds) 5798596Ssteve.reinhardt@amd.com else: 5807675Snate@binkert.org add_pds(pds) 5817675Snate@binkert.org 5828596Ssteve.reinhardt@amd.com print >>out, '%module params' 5838596Ssteve.reinhardt@amd.com 5848596Ssteve.reinhardt@amd.com print >>out, '%{' 5858596Ssteve.reinhardt@amd.com for obj in ordered_objs: 5868596Ssteve.reinhardt@amd.com print >>out, '#include "params/%s.hh"' % obj 5878596Ssteve.reinhardt@amd.com print >>out, '%}' 5888596Ssteve.reinhardt@amd.com 5898596Ssteve.reinhardt@amd.com for pd in predecls: 5908596Ssteve.reinhardt@amd.com print >>out, pd 5914762Snate@binkert.org 5926143Snate@binkert.org enums = list(enums) 5936143Snate@binkert.org enums.sort() 5946143Snate@binkert.org for enum in enums: 5954762Snate@binkert.org print >>out, '%%include "enums/%s.hh"' % enum.__name__ 5964762Snate@binkert.org print >>out 5974762Snate@binkert.org 5987756SAli.Saidi@ARM.com for obj in ordered_objs: 5998596Ssteve.reinhardt@amd.com if obj.swig_objdecls: 6004762Snate@binkert.org for decl in obj.swig_objdecls: 6014762Snate@binkert.org print >>out, decl 6028596Ssteve.reinhardt@amd.com continue 6035463Snate@binkert.org 6048596Ssteve.reinhardt@amd.com class_path = obj.cxx_class.split('::') 6058596Ssteve.reinhardt@amd.com classname = class_path[-1] 6065463Snate@binkert.org namespaces = class_path[:-1] 6077756SAli.Saidi@ARM.com namespaces.reverse() 6088596Ssteve.reinhardt@amd.com 6094762Snate@binkert.org code = '' 6107677Snate@binkert.org 6114762Snate@binkert.org if namespaces: 6124762Snate@binkert.org code += '// avoid name conflicts\n' 6136143Snate@binkert.org sep_string = '_COLONS_' 6146143Snate@binkert.org flat_name = sep_string.join(class_path) 6156143Snate@binkert.org code += '%%rename(%s) %s;\n' % (flat_name, classname) 6164762Snate@binkert.org 6174762Snate@binkert.org code += '// stop swig from creating/wrapping default ctor/dtor\n' 6187756SAli.Saidi@ARM.com code += '%%nodefault %s;\n' % classname 6197816Ssteve.reinhardt@amd.com code += 'class %s ' % classname 6204762Snate@binkert.org if obj._base: 6214762Snate@binkert.org code += ': public %s' % obj._base.cxx_class 6224762Snate@binkert.org code += ' {};\n' 6234762Snate@binkert.org 6247756SAli.Saidi@ARM.com for ns in namespaces: 6258596Ssteve.reinhardt@amd.com new_code = 'namespace %s {\n' % ns 6264762Snate@binkert.org new_code += code 6274762Snate@binkert.org new_code += '}\n' 6287677Snate@binkert.org code = new_code 6297756SAli.Saidi@ARM.com 6308596Ssteve.reinhardt@amd.com print >>out, code 6317675Snate@binkert.org 6327677Snate@binkert.org print >>out, '%%include "src/sim/sim_object_params.hh"' % obj 6335517Snate@binkert.org for obj in ordered_objs: 6348596Ssteve.reinhardt@amd.com print >>out, '%%include "params/%s.hh"' % obj 6357675Snate@binkert.org 6368596Ssteve.reinhardt@amd.comparams_file = File('params/params.i') 6378596Ssteve.reinhardt@amd.comnames = sorted(sim_objects.keys()) 6388596Ssteve.reinhardt@amd.comenv.Command(params_file, map(Value, names), buildParams) 6398596Ssteve.reinhardt@amd.comenv.Depends(params_file, params_hh_files + params_i_files + depends) 6408596Ssteve.reinhardt@amd.comSwigSource('m5.objects', params_file) 6414762Snate@binkert.org 6427674Snate@binkert.org# Build all swig modules 6437674Snate@binkert.orgfor swig in SwigSource.all: 6447674Snate@binkert.org env.Command([swig.cc_source.tnode, swig.py_source.tnode], swig.tnode, 6457674Snate@binkert.org '$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} ' 6467674Snate@binkert.org '-o ${TARGETS[0]} $SOURCES') 6477674Snate@binkert.org env.Depends(swig.py_source.tnode, swig.tnode) 6487674Snate@binkert.org env.Depends(swig.cc_source.tnode, swig.tnode) 6497674Snate@binkert.org 6507674Snate@binkert.org# Generate the main swig init file 6517674Snate@binkert.orgdef makeSwigInit(target, source, env): 6527674Snate@binkert.org f = file(str(target[0]), 'w') 6537674Snate@binkert.org print >>f, 'extern "C" {' 6547674Snate@binkert.org for module in source: 6557674Snate@binkert.org print >>f, ' void init_%s();' % module.get_contents() 6567674Snate@binkert.org print >>f, '}' 6574762Snate@binkert.org print >>f, 'void initSwig() {' 6586143Snate@binkert.org for module in source: 6596143Snate@binkert.org print >>f, ' init_%s();' % module.get_contents() 6607756SAli.Saidi@ARM.com print >>f, '}' 6617816Ssteve.reinhardt@amd.com f.close() 6628235Snate@binkert.org 6638596Ssteve.reinhardt@amd.comenv.Command('python/swig/init.cc', 6647756SAli.Saidi@ARM.com map(Value, sorted(s.module for s in SwigSource.all)), 6657816Ssteve.reinhardt@amd.com makeSwigInit) 6668235Snate@binkert.orgSource('python/swig/init.cc') 6674382Sbinkertn@umich.edu 6688232Snate@binkert.orgdef getFlags(source_flags): 6698232Snate@binkert.org flagsMap = {} 6708232Snate@binkert.org flagsList = [] 6718232Snate@binkert.org for s in source_flags: 6728232Snate@binkert.org val = eval(s.get_contents()) 6736229Snate@binkert.org name, compound, desc = val 6748232Snate@binkert.org flagsList.append(val) 6758232Snate@binkert.org flagsMap[name] = bool(compound) 6768232Snate@binkert.org 6776229Snate@binkert.org for name, compound, desc in flagsList: 6787673Snate@binkert.org for flag in compound: 6795517Snate@binkert.org if flag not in flagsMap: 6805517Snate@binkert.org raise AttributeError, "Trace flag %s not found" % flag 6817673Snate@binkert.org if flagsMap[flag]: 6825517Snate@binkert.org raise AttributeError, \ 6835517Snate@binkert.org "Compound flag can't point to another compound flag" 6845517Snate@binkert.org 6855517Snate@binkert.org flagsList.sort() 6868232Snate@binkert.org return flagsList 6877673Snate@binkert.org 6887673Snate@binkert.org 6898232Snate@binkert.org# Generate traceflags.py 6908232Snate@binkert.orgdef traceFlagsPy(target, source, env): 6918232Snate@binkert.org assert(len(target) == 1) 6928232Snate@binkert.org 6937673Snate@binkert.org f = file(str(target[0]), 'w') 6945517Snate@binkert.org 6958232Snate@binkert.org allFlags = getFlags(source) 6968232Snate@binkert.org 6978232Snate@binkert.org print >>f, 'basic = [' 6988232Snate@binkert.org for flag, compound, desc in allFlags: 6997673Snate@binkert.org if not compound: 7008232Snate@binkert.org print >>f, " '%s'," % flag 7018232Snate@binkert.org print >>f, " ]" 7028232Snate@binkert.org print >>f 7038232Snate@binkert.org 7048232Snate@binkert.org print >>f, 'compound = [' 7058232Snate@binkert.org print >>f, " 'All'," 7067673Snate@binkert.org for flag, compound, desc in allFlags: 7075517Snate@binkert.org if compound: 7088232Snate@binkert.org print >>f, " '%s'," % flag 7098232Snate@binkert.org print >>f, " ]" 7105517Snate@binkert.org print >>f 7117673Snate@binkert.org 7125517Snate@binkert.org print >>f, "all = frozenset(basic + compound)" 7138232Snate@binkert.org print >>f 7148232Snate@binkert.org 7155517Snate@binkert.org print >>f, 'compoundMap = {' 7168232Snate@binkert.org all = tuple([flag for flag,compound,desc in allFlags if not compound]) 7178232Snate@binkert.org print >>f, " 'All' : %s," % (all, ) 7188232Snate@binkert.org for flag, compound, desc in allFlags: 7197673Snate@binkert.org if compound: 7205517Snate@binkert.org print >>f, " '%s' : %s," % (flag, compound) 7215517Snate@binkert.org print >>f, " }" 7227673Snate@binkert.org print >>f 7235517Snate@binkert.org 7245517Snate@binkert.org print >>f, 'descriptions = {' 7255517Snate@binkert.org print >>f, " 'All' : 'All flags'," 7268232Snate@binkert.org for flag, compound, desc in allFlags: 7275517Snate@binkert.org print >>f, " '%s' : '%s'," % (flag, desc) 7285517Snate@binkert.org print >>f, " }" 7298232Snate@binkert.org 7308232Snate@binkert.org f.close() 7315517Snate@binkert.org 7328232Snate@binkert.orgdef traceFlagsCC(target, source, env): 7338232Snate@binkert.org assert(len(target) == 1) 7345517Snate@binkert.org 7358232Snate@binkert.org f = file(str(target[0]), 'w') 7368232Snate@binkert.org 7378232Snate@binkert.org allFlags = getFlags(source) 7385517Snate@binkert.org 7398232Snate@binkert.org # file header 7408232Snate@binkert.org print >>f, ''' 7418232Snate@binkert.org/* 7428232Snate@binkert.org * DO NOT EDIT THIS FILE! Automatically generated 7438232Snate@binkert.org */ 7448232Snate@binkert.org 7455517Snate@binkert.org#include "base/traceflags.hh" 7468232Snate@binkert.org 7478232Snate@binkert.orgusing namespace Trace; 7485517Snate@binkert.org 7498232Snate@binkert.orgconst char *Trace::flagStrings[] = 7507673Snate@binkert.org{''' 7515517Snate@binkert.org 7527673Snate@binkert.org # The string array is used by SimpleEnumParam to map the strings 7535517Snate@binkert.org # provided by the user to enum values. 7548232Snate@binkert.org for flag, compound, desc in allFlags: 7558232Snate@binkert.org if not compound: 7568232Snate@binkert.org print >>f, ' "%s",' % flag 7575192Ssaidi@eecs.umich.edu 7588232Snate@binkert.org print >>f, ' "All",' 7598232Snate@binkert.org for flag, compound, desc in allFlags: 7608232Snate@binkert.org if compound: 7618232Snate@binkert.org print >>f, ' "%s",' % flag 7628232Snate@binkert.org 7635192Ssaidi@eecs.umich.edu print >>f, '};' 7647674Snate@binkert.org print >>f 7655522Snate@binkert.org print >>f, 'const int Trace::numFlagStrings = %d;' % (len(allFlags) + 1) 7665522Snate@binkert.org print >>f 7677674Snate@binkert.org 7687674Snate@binkert.org # 7697674Snate@binkert.org # Now define the individual compound flag arrays. There is an array 7707674Snate@binkert.org # for each compound flag listing the component base flags. 7717674Snate@binkert.org # 7727674Snate@binkert.org all = tuple([flag for flag,compound,desc in allFlags if not compound]) 7737674Snate@binkert.org print >>f, 'static const Flags AllMap[] = {' 7747674Snate@binkert.org for flag, compound, desc in allFlags: 7755522Snate@binkert.org if not compound: 7765522Snate@binkert.org print >>f, " %s," % flag 7775522Snate@binkert.org print >>f, '};' 7785517Snate@binkert.org print >>f 7795522Snate@binkert.org 7805517Snate@binkert.org for flag, compound, desc in allFlags: 7816143Snate@binkert.org if not compound: 7826727Ssteve.reinhardt@amd.com continue 7835522Snate@binkert.org print >>f, 'static const Flags %sMap[] = {' % flag 7845522Snate@binkert.org for flag in compound: 7855522Snate@binkert.org print >>f, " %s," % flag 7867674Snate@binkert.org print >>f, " (Flags)-1" 7875517Snate@binkert.org print >>f, '};' 7887673Snate@binkert.org print >>f 7897673Snate@binkert.org 7907674Snate@binkert.org # 7917673Snate@binkert.org # Finally the compoundFlags[] array maps the compound flags 7927674Snate@binkert.org # to their individual arrays/ 7937674Snate@binkert.org # 7947674Snate@binkert.org print >>f, 'const Flags *Trace::compoundFlags[] =' 7957674Snate@binkert.org print >>f, '{' 7967674Snate@binkert.org print >>f, ' AllMap,' 7977674Snate@binkert.org for flag, compound, desc in allFlags: 7985522Snate@binkert.org if compound: 7995522Snate@binkert.org print >>f, ' %sMap,' % flag 8007674Snate@binkert.org # file trailer 8017674Snate@binkert.org print >>f, '};' 8027674Snate@binkert.org 8037674Snate@binkert.org f.close() 8047673Snate@binkert.org 8057674Snate@binkert.orgdef traceFlagsHH(target, source, env): 8067674Snate@binkert.org assert(len(target) == 1) 8077674Snate@binkert.org 8087674Snate@binkert.org f = file(str(target[0]), 'w') 8097674Snate@binkert.org 8107674Snate@binkert.org allFlags = getFlags(source) 8117674Snate@binkert.org 8127674Snate@binkert.org # file header boilerplate 8137811Ssteve.reinhardt@amd.com print >>f, ''' 8147674Snate@binkert.org/* 8157673Snate@binkert.org * DO NOT EDIT THIS FILE! 8165522Snate@binkert.org * 8176143Snate@binkert.org * Automatically generated from traceflags.py 8187756SAli.Saidi@ARM.com */ 8197816Ssteve.reinhardt@amd.com 8207674Snate@binkert.org#ifndef __BASE_TRACE_FLAGS_HH__ 8214382Sbinkertn@umich.edu#define __BASE_TRACE_FLAGS_HH__ 8224382Sbinkertn@umich.edu 8234382Sbinkertn@umich.edunamespace Trace { 8244382Sbinkertn@umich.edu 8254382Sbinkertn@umich.eduenum Flags {''' 8264382Sbinkertn@umich.edu 8274382Sbinkertn@umich.edu # Generate the enum. Base flags come first, then compound flags. 8284382Sbinkertn@umich.edu idx = 0 8294382Sbinkertn@umich.edu for flag, compound, desc in allFlags: 8304382Sbinkertn@umich.edu if not compound: 8316143Snate@binkert.org print >>f, ' %s = %d,' % (flag, idx) 832955SN/A idx += 1 8332655Sstever@eecs.umich.edu 8342655Sstever@eecs.umich.edu numBaseFlags = idx 8352655Sstever@eecs.umich.edu print >>f, ' NumFlags = %d,' % idx 8362655Sstever@eecs.umich.edu 8372655Sstever@eecs.umich.edu # put a comment in here to separate base from compound flags 8385601Snate@binkert.org print >>f, ''' 8395601Snate@binkert.org// The remaining enum values are *not* valid indices for Trace::flags. 8408334Snate@binkert.org// They are "compound" flags, which correspond to sets of base 8418334Snate@binkert.org// flags, and are used by changeFlag.''' 8428334Snate@binkert.org 8435522Snate@binkert.org print >>f, ' All = %d,' % idx 8445863Snate@binkert.org idx += 1 8455601Snate@binkert.org for flag, compound, desc in allFlags: 8465601Snate@binkert.org if compound: 8475601Snate@binkert.org print >>f, ' %s = %d,' % (flag, idx) 8485863Snate@binkert.org idx += 1 8496143Snate@binkert.org 8505559Snate@binkert.org numCompoundFlags = idx - numBaseFlags 8515559Snate@binkert.org print >>f, ' NumCompoundFlags = %d' % numCompoundFlags 8525559Snate@binkert.org 8535559Snate@binkert.org # trailer boilerplate 8548656Sandreas.hansson@arm.com print >>f, '''\ 8558614Sgblack@eecs.umich.edu}; // enum Flags 8568614Sgblack@eecs.umich.edu 8578737Skoansin.tan@gmail.com// Array of strings for SimpleEnumParam 8588737Skoansin.tan@gmail.comextern const char *flagStrings[]; 8598737Skoansin.tan@gmail.comextern const int numFlagStrings; 8605601Snate@binkert.org 8616143Snate@binkert.org// Array of arraay pointers: for each compound flag, gives the list of 8626143Snate@binkert.org// base flags to set. Inidividual flag arrays are terminated by -1. 8636143Snate@binkert.orgextern const Flags *compoundFlags[]; 8646143Snate@binkert.org 8656143Snate@binkert.org/* namespace Trace */ } 8666143Snate@binkert.org 8676143Snate@binkert.org#endif // __BASE_TRACE_FLAGS_HH__ 8686143Snate@binkert.org''' 8696143Snate@binkert.org 8706143Snate@binkert.org f.close() 8716143Snate@binkert.org 8726143Snate@binkert.orgflags = map(Value, trace_flags.values()) 8736143Snate@binkert.orgenv.Command('base/traceflags.py', flags, traceFlagsPy) 8746143Snate@binkert.orgPySource('m5', 'base/traceflags.py') 8756143Snate@binkert.org 8766143Snate@binkert.orgenv.Command('base/traceflags.hh', flags, traceFlagsHH) 8776143Snate@binkert.orgenv.Command('base/traceflags.cc', flags, traceFlagsCC) 8786143Snate@binkert.orgSource('base/traceflags.cc') 8796143Snate@binkert.org 8806143Snate@binkert.org# embed python files. All .py files that have been indicated by a 8816143Snate@binkert.org# PySource() call in a SConscript need to be embedded into the M5 8826143Snate@binkert.org# library. To do that, we compile the file to byte code, marshal the 8836143Snate@binkert.org# byte code, compress it, and then generate an assembly file that 8846143Snate@binkert.org# inserts the result into the data section with symbols indicating the 8856143Snate@binkert.org# beginning, and end (and with the size at the end) 8868594Snate@binkert.orgdef objectifyPyFile(target, source, env): 8878594Snate@binkert.org '''Action function to compile a .py into a code object, marshal 8888594Snate@binkert.org it, compress it, and stick it into an asm file so the code appears 8898594Snate@binkert.org as just bytes with a label in the data section''' 8906143Snate@binkert.org 8916143Snate@binkert.org src = file(str(source[0]), 'r').read() 8926143Snate@binkert.org dst = file(str(target[0]), 'w') 8936143Snate@binkert.org 8946143Snate@binkert.org pysource = PySource.tnodes[source[0]] 8956240Snate@binkert.org compiled = compile(src, pysource.abspath, 'exec') 8965554Snate@binkert.org marshalled = marshal.dumps(compiled) 8975522Snate@binkert.org compressed = zlib.compress(marshalled) 8985522Snate@binkert.org data = compressed 8995797Snate@binkert.org 9005797Snate@binkert.org # Some C/C++ compilers prepend an underscore to global symbol 9015522Snate@binkert.org # names, so if they're going to do that, we need to prepend that 9025601Snate@binkert.org # leading underscore to globals in the assembly file. 9038233Snate@binkert.org if env['LEADING_UNDERSCORE']: 9048233Snate@binkert.org sym = '_' + pysource.symname 9058235Snate@binkert.org else: 9068235Snate@binkert.org sym = pysource.symname 9078235Snate@binkert.org 9088235Snate@binkert.org step = 16 9098235Snate@binkert.org print >>dst, ".data" 9108235Snate@binkert.org print >>dst, ".globl %s_beg" % sym 9118235Snate@binkert.org print >>dst, ".globl %s_end" % sym 9126143Snate@binkert.org print >>dst, "%s_beg:" % sym 9132655Sstever@eecs.umich.edu for i in xrange(0, len(data), step): 9146143Snate@binkert.org x = array.array('B', data[i:i+step]) 9156143Snate@binkert.org print >>dst, ".byte", ','.join([str(d) for d in x]) 9168233Snate@binkert.org print >>dst, "%s_end:" % sym 9176143Snate@binkert.org print >>dst, ".long %d" % len(marshalled) 9186143Snate@binkert.org 9194007Ssaidi@eecs.umich.edufor source in PySource.all: 9204596Sbinkertn@umich.edu env.Command(source.assembly, source.tnode, objectifyPyFile) 9214007Ssaidi@eecs.umich.edu Source(source.assembly) 9224596Sbinkertn@umich.edu 9237756SAli.Saidi@ARM.com# Generate init_python.cc which creates a bunch of EmbeddedPyModule 9247816Ssteve.reinhardt@amd.com# structs that describe the embedded python code. One such struct 9258334Snate@binkert.org# contains information about the importer that python uses to get at 9268334Snate@binkert.org# the embedded files, and then there's a list of all of the rest that 9278334Snate@binkert.org# the importer uses to load the rest on demand. 9288334Snate@binkert.orgdef pythonInit(target, source, env): 9295601Snate@binkert.org dst = file(str(target[0]), 'w') 9305601Snate@binkert.org 9312655Sstever@eecs.umich.edu def dump_mod(sym, endchar=','): 932955SN/A pysource = PySource.symnames[sym] 9333918Ssaidi@eecs.umich.edu print >>dst, ' { "%s",' % pysource.arcname 9348737Skoansin.tan@gmail.com print >>dst, ' "%s",' % pysource.modpath 9353918Ssaidi@eecs.umich.edu print >>dst, ' %s_beg, %s_end,' % (sym, sym) 9363918Ssaidi@eecs.umich.edu print >>dst, ' %s_end - %s_beg,' % (sym, sym) 9373918Ssaidi@eecs.umich.edu print >>dst, ' *(int *)%s_end }%s' % (sym, endchar) 9383918Ssaidi@eecs.umich.edu 9393918Ssaidi@eecs.umich.edu print >>dst, '#include "sim/init.hh"' 9403918Ssaidi@eecs.umich.edu 9413918Ssaidi@eecs.umich.edu for sym in source: 9423918Ssaidi@eecs.umich.edu sym = sym.get_contents() 9433918Ssaidi@eecs.umich.edu print >>dst, "extern const char %s_beg[], %s_end[];" % (sym, sym) 9443918Ssaidi@eecs.umich.edu 9453918Ssaidi@eecs.umich.edu print >>dst, "const EmbeddedPyModule embeddedPyImporter = " 9463918Ssaidi@eecs.umich.edu dump_mod("PyEMB_importer", endchar=';'); 9473940Ssaidi@eecs.umich.edu print >>dst 9483940Ssaidi@eecs.umich.edu 9493940Ssaidi@eecs.umich.edu print >>dst, "const EmbeddedPyModule embeddedPyModules[] = {" 9503942Ssaidi@eecs.umich.edu for i,sym in enumerate(source): 9513940Ssaidi@eecs.umich.edu sym = sym.get_contents() 9523515Ssaidi@eecs.umich.edu if sym == "PyEMB_importer": 9533918Ssaidi@eecs.umich.edu # Skip the importer since we've already exported it 9544762Snate@binkert.org continue 9553515Ssaidi@eecs.umich.edu dump_mod(sym) 9568881Smarc.orr@gmail.com print >>dst, " { 0, 0, 0, 0, 0, 0 }" 9578881Smarc.orr@gmail.com print >>dst, "};" 9588881Smarc.orr@gmail.com 9598881Smarc.orr@gmail.com 9608881Smarc.orr@gmail.comenv.Command('sim/init_python.cc', 9618881Smarc.orr@gmail.com map(Value, (s.symname for s in PySource.all)), 9628881Smarc.orr@gmail.com pythonInit) 9638881Smarc.orr@gmail.comSource('sim/init_python.cc') 9648881Smarc.orr@gmail.com 9658881Smarc.orr@gmail.com######################################################################## 9668881Smarc.orr@gmail.com# 9678881Smarc.orr@gmail.com# Define binaries. Each different build type (debug, opt, etc.) gets 9688881Smarc.orr@gmail.com# a slightly different build environment. 9698881Smarc.orr@gmail.com# 9708881Smarc.orr@gmail.com 9718881Smarc.orr@gmail.com# List of constructed environments to pass back to SConstruct 9728881Smarc.orr@gmail.comenvList = [] 9738881Smarc.orr@gmail.com 9748881Smarc.orr@gmail.comdate_source = Source('base/date.cc', skip_lib=True) 9758881Smarc.orr@gmail.com 9768881Smarc.orr@gmail.com# Function to create a new build environment as clone of current 9778881Smarc.orr@gmail.com# environment 'env' with modified object suffix and optional stripped 9788881Smarc.orr@gmail.com# binary. Additional keyword arguments are appended to corresponding 9798881Smarc.orr@gmail.com# build environment vars. 9808881Smarc.orr@gmail.comdef makeEnv(label, objsfx, strip = False, **kwargs): 9818881Smarc.orr@gmail.com # SCons doesn't know to append a library suffix when there is a '.' in the 9828881Smarc.orr@gmail.com # name. Use '_' instead. 9838881Smarc.orr@gmail.com libname = 'm5_' + label 984955SN/A exename = 'm5.' + label 985955SN/A 9868881Smarc.orr@gmail.com new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's') 9878881Smarc.orr@gmail.com new_env.Label = label 9888881Smarc.orr@gmail.com new_env.Append(**kwargs) 9898881Smarc.orr@gmail.com 990955SN/A swig_env = new_env.Clone() 991955SN/A swig_env.Append(CCFLAGS='-Werror') 9928881Smarc.orr@gmail.com if env['GCC']: 9938881Smarc.orr@gmail.com swig_env.Append(CCFLAGS='-Wno-uninitialized') 9948881Smarc.orr@gmail.com swig_env.Append(CCFLAGS='-Wno-sign-compare') 9958881Smarc.orr@gmail.com swig_env.Append(CCFLAGS='-Wno-parentheses') 996955SN/A 997955SN/A werror_env = new_env.Clone() 9988881Smarc.orr@gmail.com werror_env.Append(CCFLAGS='-Werror') 9998881Smarc.orr@gmail.com 10008881Smarc.orr@gmail.com def make_obj(source, static, extra_deps = None): 10018881Smarc.orr@gmail.com '''This function adds the specified source to the correct 10028881Smarc.orr@gmail.com build environment, and returns the corresponding SCons Object 10031869SN/A nodes''' 10041869SN/A 1005 if source.swig: 1006 env = swig_env 1007 elif source.Werror: 1008 env = werror_env 1009 else: 1010 env = new_env 1011 1012 if static: 1013 obj = env.StaticObject(source.tnode) 1014 else: 1015 obj = env.SharedObject(source.tnode) 1016 1017 if extra_deps: 1018 env.Depends(obj, extra_deps) 1019 1020 return obj 1021 1022 static_objs = [ make_obj(s, True) for s in Source.get(skip_lib=False)] 1023 shared_objs = [ make_obj(s, False) for s in Source.get(skip_lib=False)] 1024 1025 static_date = make_obj(date_source, static=True, extra_deps=static_objs) 1026 static_objs.append(static_date) 1027 1028 shared_date = make_obj(date_source, static=False, extra_deps=shared_objs) 1029 shared_objs.append(shared_date) 1030 1031 # First make a library of everything but main() so other programs can 1032 # link against m5. 1033 static_lib = new_env.StaticLibrary(libname, static_objs) 1034 shared_lib = new_env.SharedLibrary(libname, shared_objs) 1035 1036 for target, sources in unit_tests: 1037 objs = [ make_obj(s, static=True) for s in sources ] 1038 new_env.Program("unittest/%s.%s" % (target, label), objs + static_objs) 1039 1040 # Now link a stub with main() and the static library. 1041 bin_objs = [make_obj(s, True) for s in Source.get(bin_only=True) ] 1042 progname = exename 1043 if strip: 1044 progname += '.unstripped' 1045 1046 targets = new_env.Program(progname, bin_objs + static_objs) 1047 1048 if strip: 1049 if sys.platform == 'sunos5': 1050 cmd = 'cp $SOURCE $TARGET; strip $TARGET' 1051 else: 1052 cmd = 'strip $SOURCE -o $TARGET' 1053 targets = new_env.Command(exename, progname, cmd) 1054 1055 new_env.M5Binary = targets[0] 1056 envList.append(new_env) 1057 1058# Debug binary 1059ccflags = {} 1060if env['GCC']: 1061 if sys.platform == 'sunos5': 1062 ccflags['debug'] = '-gstabs+' 1063 else: 1064 ccflags['debug'] = '-ggdb3' 1065 ccflags['opt'] = '-g -O3' 1066 ccflags['fast'] = '-O3' 1067 ccflags['prof'] = '-O3 -g -pg' 1068elif env['SUNCC']: 1069 ccflags['debug'] = '-g0' 1070 ccflags['opt'] = '-g -O' 1071 ccflags['fast'] = '-fast' 1072 ccflags['prof'] = '-fast -g -pg' 1073elif env['ICC']: 1074 ccflags['debug'] = '-g -O0' 1075 ccflags['opt'] = '-g -O' 1076 ccflags['fast'] = '-fast' 1077 ccflags['prof'] = '-fast -g -pg' 1078else: 1079 print 'Unknown compiler, please fix compiler options' 1080 Exit(1) 1081 1082makeEnv('debug', '.do', 1083 CCFLAGS = Split(ccflags['debug']), 1084 CPPDEFINES = ['DEBUG', 'TRACING_ON=1']) 1085 1086# Optimized binary 1087makeEnv('opt', '.o', 1088 CCFLAGS = Split(ccflags['opt']), 1089 CPPDEFINES = ['TRACING_ON=1']) 1090 1091# "Fast" binary 1092makeEnv('fast', '.fo', strip = True, 1093 CCFLAGS = Split(ccflags['fast']), 1094 CPPDEFINES = ['NDEBUG', 'TRACING_ON=0']) 1095 1096# Profiled binary 1097makeEnv('prof', '.po', 1098 CCFLAGS = Split(ccflags['prof']), 1099 CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 1100 LINKFLAGS = '-pg') 1101 1102Return('envList') 1103