SConscript revision 6108
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 37955SN/Aimport zlib 385522Snate@binkert.org 394202Sbinkertn@umich.edufrom os.path import basename, dirname, exists, isdir, isfile, join as joinpath 405742Snate@binkert.org 41955SN/Aimport SCons 424381Sbinkertn@umich.edu 434381Sbinkertn@umich.edu# This file defines how to build a particular configuration of M5 44955SN/A# based on variable settings in the 'env' build environment. 45955SN/A 46955SN/AImport('*') 474202Sbinkertn@umich.edu 48955SN/A# Children need to see the environment 494382Sbinkertn@umich.eduExport('env') 504382Sbinkertn@umich.edu 514382Sbinkertn@umich.edubuild_env = dict([(opt, env[opt]) for opt in export_vars]) 526654Snate@binkert.org 535517Snate@binkert.orgdef sort_list(_list): 547674Snate@binkert.org """return a sorted copy of '_list'""" 557674Snate@binkert.org if isinstance(_list, list): 566143Snate@binkert.org _list = _list[:] 576143Snate@binkert.org else: 586143Snate@binkert.org _list = list(_list) 596143Snate@binkert.org _list.sort() 606143Snate@binkert.org return _list 616143Snate@binkert.org 626143Snate@binkert.orgclass PySourceFile(object): 636143Snate@binkert.org invalid_sym_char = re.compile('[^A-z0-9_]') 646143Snate@binkert.org def __init__(self, package, tnode): 656143Snate@binkert.org snode = tnode.srcnode() 666143Snate@binkert.org filename = str(tnode) 676143Snate@binkert.org pyname = basename(filename) 686143Snate@binkert.org assert pyname.endswith('.py') 696143Snate@binkert.org name = pyname[:-3] 706143Snate@binkert.org if package: 714762Snate@binkert.org path = package.split('.') 726143Snate@binkert.org else: 736143Snate@binkert.org path = [] 746143Snate@binkert.org 756143Snate@binkert.org modpath = path[:] 766143Snate@binkert.org if name != '__init__': 776143Snate@binkert.org modpath += [name] 786143Snate@binkert.org modpath = '.'.join(modpath) 796143Snate@binkert.org 806143Snate@binkert.org arcpath = path + [ pyname ] 816143Snate@binkert.org arcname = joinpath(*arcpath) 826143Snate@binkert.org 836143Snate@binkert.org debugname = snode.abspath 846143Snate@binkert.org if not exists(debugname): 856143Snate@binkert.org debugname = tnode.abspath 866143Snate@binkert.org 876143Snate@binkert.org self.tnode = tnode 886143Snate@binkert.org self.snode = snode 896143Snate@binkert.org self.pyname = pyname 906143Snate@binkert.org self.package = package 916143Snate@binkert.org self.modpath = modpath 926143Snate@binkert.org self.arcname = arcname 937065Snate@binkert.org self.debugname = debugname 946143Snate@binkert.org self.compiled = File(filename + 'c') 956143Snate@binkert.org self.assembly = File(filename + '.s') 966143Snate@binkert.org self.symname = "PyEMB_" + self.invalid_sym_char.sub('_', modpath) 976143Snate@binkert.org 986143Snate@binkert.org 996143Snate@binkert.org######################################################################## 1006143Snate@binkert.org# Code for adding source files of various types 1016143Snate@binkert.org# 1026143Snate@binkert.orgcc_lib_sources = [] 1036143Snate@binkert.orgdef Source(source): 1046143Snate@binkert.org '''Add a source file to the libm5 build''' 1056143Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1066143Snate@binkert.org source = File(source) 1076143Snate@binkert.org 1086143Snate@binkert.org cc_lib_sources.append(source) 1096143Snate@binkert.org 1106143Snate@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) 1155522Snate@binkert.org 1166143Snate@binkert.org cc_bin_sources.append(source) 1176143Snate@binkert.org 1186143Snate@binkert.orgpy_sources = [] 1196143Snate@binkert.orgdef PySource(package, source): 1206143Snate@binkert.org '''Add a python source file to the named package''' 1216143Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1226143Snate@binkert.org source = File(source) 1236143Snate@binkert.org 1246143Snate@binkert.org source = PySourceFile(package, source) 1256143Snate@binkert.org py_sources.append(source) 1265522Snate@binkert.org 1275522Snate@binkert.orgsim_objects_fixed = False 1285522Snate@binkert.orgsim_object_modfiles = set() 1295522Snate@binkert.orgdef SimObject(source): 1305604Snate@binkert.org '''Add a SimObject python file as a python source object and add 1315604Snate@binkert.org it to a list of sim object modules''' 1326143Snate@binkert.org 1336143Snate@binkert.org if sim_objects_fixed: 1344762Snate@binkert.org raise AttributeError, "Too late to call SimObject now." 1354762Snate@binkert.org 1366143Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1376727Ssteve.reinhardt@amd.com source = File(source) 1386727Ssteve.reinhardt@amd.com 1396727Ssteve.reinhardt@amd.com PySource('m5.objects', source) 1404762Snate@binkert.org modfile = basename(str(source)) 1416143Snate@binkert.org assert modfile.endswith('.py') 1426143Snate@binkert.org modname = modfile[:-3] 1436143Snate@binkert.org sim_object_modfiles.add(modname) 1446143Snate@binkert.org 1456727Ssteve.reinhardt@amd.comswig_sources = [] 1466143Snate@binkert.orgdef SwigSource(package, source): 1477674Snate@binkert.org '''Add a swig file to build''' 1487674Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1495604Snate@binkert.org source = File(source) 1506143Snate@binkert.org val = source,package 1516143Snate@binkert.org swig_sources.append(val) 1526143Snate@binkert.org 1534762Snate@binkert.orgunit_tests = [] 1546143Snate@binkert.orgdef UnitTest(target, sources): 1554762Snate@binkert.org if not isinstance(sources, (list, tuple)): 1564762Snate@binkert.org sources = [ sources ] 1574762Snate@binkert.org 1586143Snate@binkert.org srcs = [] 1596143Snate@binkert.org for source in sources: 1604762Snate@binkert.org if not isinstance(source, SCons.Node.FS.File): 1616143Snate@binkert.org source = File(source) 1626143Snate@binkert.org srcs.append(source) 1636143Snate@binkert.org 1646143Snate@binkert.org unit_tests.append((target, srcs)) 1654762Snate@binkert.org 1666143Snate@binkert.org# Children should have access 1674762Snate@binkert.orgExport('Source') 1686143Snate@binkert.orgExport('BinSource') 1694762Snate@binkert.orgExport('PySource') 1706143Snate@binkert.orgExport('SimObject') 1716143Snate@binkert.orgExport('SwigSource') 1726143Snate@binkert.orgExport('UnitTest') 1736143Snate@binkert.org 1746143Snate@binkert.org######################################################################## 1756143Snate@binkert.org# 1766143Snate@binkert.org# Trace Flags 1776143Snate@binkert.org# 1786143Snate@binkert.orgtrace_flags = {} 1796143Snate@binkert.orgdef TraceFlag(name, desc=None): 1806143Snate@binkert.org if name in trace_flags: 1816143Snate@binkert.org raise AttributeError, "Flag %s already specified" % name 1826143Snate@binkert.org trace_flags[name] = (name, (), desc) 183955SN/A 1845584Snate@binkert.orgdef CompoundFlag(name, flags, desc=None): 1855584Snate@binkert.org if name in trace_flags: 1865584Snate@binkert.org raise AttributeError, "Flag %s already specified" % name 1875584Snate@binkert.org 1886143Snate@binkert.org compound = tuple(flags) 1896143Snate@binkert.org for flag in compound: 1906143Snate@binkert.org if flag not in trace_flags: 1915584Snate@binkert.org raise AttributeError, "Trace flag %s not found" % flag 1924382Sbinkertn@umich.edu if trace_flags[flag][1]: 1934202Sbinkertn@umich.edu raise AttributeError, \ 1944382Sbinkertn@umich.edu "Compound flag can't point to another compound flag" 1954382Sbinkertn@umich.edu 1964382Sbinkertn@umich.edu trace_flags[name] = (name, compound, desc) 1975584Snate@binkert.org 1984382Sbinkertn@umich.eduExport('TraceFlag') 1994382Sbinkertn@umich.eduExport('CompoundFlag') 2004382Sbinkertn@umich.edu 2015192Ssaidi@eecs.umich.edu######################################################################## 2025192Ssaidi@eecs.umich.edu# 2035799Snate@binkert.org# Set some compiler variables 2045799Snate@binkert.org# 2055799Snate@binkert.org 2065192Ssaidi@eecs.umich.edu# Include file paths are rooted in this directory. SCons will 2075799Snate@binkert.org# automatically expand '.' to refer to both the source directory and 2085192Ssaidi@eecs.umich.edu# the corresponding build directory to pick up generated include 2095799Snate@binkert.org# files. 2105799Snate@binkert.orgenv.Append(CPPPATH=Dir('.')) 2115192Ssaidi@eecs.umich.edu 2125192Ssaidi@eecs.umich.edufor extra_dir in extras_dir_list: 2135192Ssaidi@eecs.umich.edu env.Append(CPPPATH=Dir(extra_dir)) 2145799Snate@binkert.org 2155192Ssaidi@eecs.umich.edu# Add a flag defining what THE_ISA should be for all compilation 2165192Ssaidi@eecs.umich.eduenv.Append(CPPDEFINES=[('THE_ISA','%s_ISA' % env['TARGET_ISA'].upper())]) 2175192Ssaidi@eecs.umich.edu 2185192Ssaidi@eecs.umich.edu# Workaround for bug in SCons version > 0.97d20071212 2195192Ssaidi@eecs.umich.edu# Scons bug id: 2006 M5 Bug id: 308 2205192Ssaidi@eecs.umich.edufor root, dirs, files in os.walk(base_dir, topdown=True): 2214382Sbinkertn@umich.edu Dir(root[len(base_dir) + 1:]) 2224382Sbinkertn@umich.edu 2234382Sbinkertn@umich.edu######################################################################## 2242667Sstever@eecs.umich.edu# 2252667Sstever@eecs.umich.edu# Walk the tree and execute all SConscripts in subdirectories 2262667Sstever@eecs.umich.edu# 2272667Sstever@eecs.umich.edu 2282667Sstever@eecs.umich.eduhere = Dir('.').srcnode().abspath 2292667Sstever@eecs.umich.edufor root, dirs, files in os.walk(base_dir, topdown=True): 2305742Snate@binkert.org if root == here: 2315742Snate@binkert.org # we don't want to recurse back into this SConscript 2325742Snate@binkert.org continue 2335793Snate@binkert.org 2345793Snate@binkert.org if 'SConscript' in files: 2355793Snate@binkert.org build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:]) 2365793Snate@binkert.org SConscript(joinpath(root, 'SConscript'), build_dir=build_dir) 2375793Snate@binkert.org 2384382Sbinkertn@umich.edufor extra_dir in extras_dir_list: 2394762Snate@binkert.org prefix_len = len(dirname(extra_dir)) + 1 2405344Sstever@gmail.com for root, dirs, files in os.walk(extra_dir, topdown=True): 2414382Sbinkertn@umich.edu if 'SConscript' in files: 2425341Sstever@gmail.com build_dir = joinpath(env['BUILDDIR'], root[prefix_len:]) 2435742Snate@binkert.org SConscript(joinpath(root, 'SConscript'), build_dir=build_dir) 2445742Snate@binkert.org 2455742Snate@binkert.orgfor opt in export_vars: 2465742Snate@binkert.org env.ConfigFile(opt) 2475742Snate@binkert.org 2484762Snate@binkert.org######################################################################## 2495742Snate@binkert.org# 2505742Snate@binkert.org# Prevent any SimObjects from being added after this point, they 2517722Sgblack@eecs.umich.edu# should all have been added in the SConscripts above 2525742Snate@binkert.org# 2535742Snate@binkert.orgclass DictImporter(object): 2545742Snate@binkert.org '''This importer takes a dictionary of arbitrary module names that 2555742Snate@binkert.org map to arbitrary filenames.''' 2565341Sstever@gmail.com def __init__(self, modules): 2575742Snate@binkert.org self.modules = modules 2587722Sgblack@eecs.umich.edu self.installed = set() 2594773Snate@binkert.org 2606108Snate@binkert.org def __del__(self): 2611858SN/A self.unload() 2621085SN/A 2636658Snate@binkert.org def unload(self): 2646658Snate@binkert.org import sys 2657673Snate@binkert.org for module in self.installed: 2666658Snate@binkert.org del sys.modules[module] 2676658Snate@binkert.org self.installed = set() 2686658Snate@binkert.org 2696658Snate@binkert.org def find_module(self, fullname, path): 2706658Snate@binkert.org if fullname == 'defines': 2716658Snate@binkert.org return self 2726658Snate@binkert.org 2737673Snate@binkert.org if fullname == 'm5.objects': 2747673Snate@binkert.org return self 2757673Snate@binkert.org 2767673Snate@binkert.org if fullname.startswith('m5.internal'): 2777673Snate@binkert.org return None 2787673Snate@binkert.org 2797673Snate@binkert.org if fullname in self.modules and exists(self.modules[fullname]): 2806658Snate@binkert.org return self 2817673Snate@binkert.org 2827673Snate@binkert.org return None 2837673Snate@binkert.org 2847673Snate@binkert.org def load_module(self, fullname): 2857673Snate@binkert.org mod = imp.new_module(fullname) 2867673Snate@binkert.org sys.modules[fullname] = mod 2877673Snate@binkert.org self.installed.add(fullname) 2887673Snate@binkert.org 2897673Snate@binkert.org mod.__loader__ = self 2907673Snate@binkert.org if fullname == 'm5.objects': 2916658Snate@binkert.org mod.__path__ = fullname.split('.') 2927756SAli.Saidi@ARM.com return mod 2937816Ssteve.reinhardt@amd.com 2946658Snate@binkert.org if fullname == 'defines': 2954382Sbinkertn@umich.edu mod.__dict__['buildEnv'] = build_env 2964382Sbinkertn@umich.edu return mod 2974762Snate@binkert.org 2984762Snate@binkert.org srcfile = self.modules[fullname] 2994762Snate@binkert.org if basename(srcfile) == '__init__.py': 3006654Snate@binkert.org mod.__path__ = fullname.split('.') 3016654Snate@binkert.org mod.__file__ = srcfile 3025517Snate@binkert.org 3035517Snate@binkert.org exec file(srcfile, 'r') in mod.__dict__ 3045517Snate@binkert.org 3055517Snate@binkert.org return mod 3065517Snate@binkert.org 3075517Snate@binkert.orgpy_modules = {} 3085517Snate@binkert.orgfor source in py_sources: 3095517Snate@binkert.org py_modules[source.modpath] = source.snode.abspath 3105517Snate@binkert.org 3115517Snate@binkert.org# install the python importer so we can grab stuff from the source 3125517Snate@binkert.org# tree itself. We can't have SimObjects added after this point or 3135517Snate@binkert.org# else we won't know about them for the rest of the stuff. 3145517Snate@binkert.orgsim_objects_fixed = True 3155517Snate@binkert.orgimporter = DictImporter(py_modules) 3165517Snate@binkert.orgsys.meta_path[0:0] = [ importer ] 3175517Snate@binkert.org 3185517Snate@binkert.orgimport m5 3196654Snate@binkert.org 3205517Snate@binkert.org# import all sim objects so we can populate the all_objects list 3215517Snate@binkert.org# make sure that we're working with a list, then let's sort it 3225517Snate@binkert.orgsim_objects = list(sim_object_modfiles) 3235517Snate@binkert.orgsim_objects.sort() 3245517Snate@binkert.orgfor simobj in sim_objects: 3255517Snate@binkert.org exec('from m5.objects import %s' % simobj) 3265517Snate@binkert.org 3275517Snate@binkert.org# we need to unload all of the currently imported modules so that they 3286143Snate@binkert.org# will be re-imported the next time the sconscript is run 3296654Snate@binkert.orgimporter.unload() 3305517Snate@binkert.orgsys.meta_path.remove(importer) 3315517Snate@binkert.org 3325517Snate@binkert.orgsim_objects = m5.SimObject.allClasses 3335517Snate@binkert.orgall_enums = m5.params.allEnums 3345517Snate@binkert.org 3355517Snate@binkert.orgall_params = {} 3365517Snate@binkert.orgfor name,obj in sim_objects.iteritems(): 3375517Snate@binkert.org for param in obj._params.local.values(): 3385517Snate@binkert.org if not hasattr(param, 'swig_decl'): 3395517Snate@binkert.org continue 3405517Snate@binkert.org pname = param.ptype_str 3415517Snate@binkert.org if pname not in all_params: 3425517Snate@binkert.org all_params[pname] = param 3435517Snate@binkert.org 3446654Snate@binkert.org######################################################################## 3456654Snate@binkert.org# 3465517Snate@binkert.org# calculate extra dependencies 3475517Snate@binkert.org# 3486143Snate@binkert.orgmodule_depends = ["m5", "m5.SimObject", "m5.params"] 3496143Snate@binkert.orgdepends = [ File(py_modules[dep]) for dep in module_depends ] 3506143Snate@binkert.org 3516727Ssteve.reinhardt@amd.com######################################################################## 3525517Snate@binkert.org# 3536727Ssteve.reinhardt@amd.com# Commands for the basic automatically generated python files 3545517Snate@binkert.org# 3555517Snate@binkert.org 3565517Snate@binkert.org# Generate Python file containing a dict specifying the current 3576654Snate@binkert.org# build_env flags. 3586654Snate@binkert.orgdef makeDefinesPyFile(target, source, env): 3597673Snate@binkert.org f = file(str(target[0]), 'w') 3606654Snate@binkert.org build_env, hg_info = [ x.get_contents() for x in source ] 3616654Snate@binkert.org print >>f, "buildEnv = %s" % build_env 3626654Snate@binkert.org print >>f, "hgRev = '%s'" % hg_info 3636654Snate@binkert.org f.close() 3645517Snate@binkert.org 3655517Snate@binkert.orgdefines_info = [ Value(build_env), Value(env['HG_INFO']) ] 3665517Snate@binkert.org# Generate a file with all of the compile options in it 3676143Snate@binkert.orgenv.Command('python/m5/defines.py', defines_info, makeDefinesPyFile) 3685517Snate@binkert.orgPySource('m5', 'python/m5/defines.py') 3694762Snate@binkert.org 3705517Snate@binkert.org# Generate python file containing info about the M5 source code 3715517Snate@binkert.orgdef makeInfoPyFile(target, source, env): 3726143Snate@binkert.org f = file(str(target[0]), 'w') 3736143Snate@binkert.org for src in source: 3745517Snate@binkert.org data = ''.join(file(src.srcnode().abspath, 'r').xreadlines()) 3755517Snate@binkert.org print >>f, "%s = %s" % (src, repr(data)) 3765517Snate@binkert.org f.close() 3775517Snate@binkert.org 3785517Snate@binkert.org# Generate a file that wraps the basic top level files 3795517Snate@binkert.orgenv.Command('python/m5/info.py', 3805517Snate@binkert.org [ '#/AUTHORS', '#/LICENSE', '#/README', '#/RELEASE_NOTES' ], 3815517Snate@binkert.org makeInfoPyFile) 3825517Snate@binkert.orgPySource('m5', 'python/m5/info.py') 3835517Snate@binkert.org 3846143Snate@binkert.org# Generate the __init__.py file for m5.objects 3855517Snate@binkert.orgdef makeObjectsInitFile(target, source, env): 3866654Snate@binkert.org f = file(str(target[0]), 'w') 3876654Snate@binkert.org print >>f, 'from params import *' 3886654Snate@binkert.org print >>f, 'from m5.SimObject import *' 3896654Snate@binkert.org for module in source: 3906654Snate@binkert.org print >>f, 'from %s import *' % module.get_contents() 3916654Snate@binkert.org f.close() 3925517Snate@binkert.org 3935517Snate@binkert.org# Generate an __init__.py file for the objects package 3945517Snate@binkert.orgenv.Command('python/m5/objects/__init__.py', 3955517Snate@binkert.org [ Value(o) for o in sort_list(sim_object_modfiles) ], 3965517Snate@binkert.org makeObjectsInitFile) 3974762Snate@binkert.orgPySource('m5.objects', 'python/m5/objects/__init__.py') 3984762Snate@binkert.org 3994762Snate@binkert.org######################################################################## 4004762Snate@binkert.org# 4014762Snate@binkert.org# Create all of the SimObject param headers and enum headers 4024762Snate@binkert.org# 4037675Snate@binkert.org 4044762Snate@binkert.orgdef createSimObjectParam(target, source, env): 4054762Snate@binkert.org assert len(target) == 1 and len(source) == 1 4064762Snate@binkert.org 4074762Snate@binkert.org hh_file = file(target[0].abspath, 'w') 4084382Sbinkertn@umich.edu name = str(source[0].get_contents()) 4094382Sbinkertn@umich.edu obj = sim_objects[name] 4105517Snate@binkert.org 4116654Snate@binkert.org print >>hh_file, obj.cxx_decl() 4125517Snate@binkert.org 4135798Snate@binkert.orgdef createSwigParam(target, source, env): 4146654Snate@binkert.org assert len(target) == 1 and len(source) == 1 4157673Snate@binkert.org 4166654Snate@binkert.org i_file = file(target[0].abspath, 'w') 4176654Snate@binkert.org name = str(source[0].get_contents()) 4186654Snate@binkert.org param = all_params[name] 4196654Snate@binkert.org 4206654Snate@binkert.org for line in param.swig_decl(): 4216654Snate@binkert.org print >>i_file, line 4226654Snate@binkert.org 4236654Snate@binkert.orgdef createEnumStrings(target, source, env): 4246669Snate@binkert.org assert len(target) == 1 and len(source) == 1 4256669Snate@binkert.org 4266669Snate@binkert.org cc_file = file(target[0].abspath, 'w') 4276669Snate@binkert.org name = str(source[0].get_contents()) 4286669Snate@binkert.org obj = all_enums[name] 4296669Snate@binkert.org 4306654Snate@binkert.org print >>cc_file, obj.cxx_def() 4317673Snate@binkert.org cc_file.close() 4325517Snate@binkert.org 4335863Snate@binkert.orgdef createEnumParam(target, source, env): 4345798Snate@binkert.org assert len(target) == 1 and len(source) == 1 4357756SAli.Saidi@ARM.com 4367816Ssteve.reinhardt@amd.com hh_file = file(target[0].abspath, 'w') 4375798Snate@binkert.org name = str(source[0].get_contents()) 4385798Snate@binkert.org obj = all_enums[name] 4395517Snate@binkert.org 4405517Snate@binkert.org print >>hh_file, obj.cxx_decl() 4417673Snate@binkert.org 4425517Snate@binkert.org# Generate all of the SimObject param struct header files 4435517Snate@binkert.orgparams_hh_files = [] 4447673Snate@binkert.orgfor name,simobj in sim_objects.iteritems(): 4457673Snate@binkert.org extra_deps = [ File(py_modules[simobj.__module__]) ] 4465517Snate@binkert.org 4475798Snate@binkert.org hh_file = File('params/%s.hh' % name) 4485798Snate@binkert.org params_hh_files.append(hh_file) 4495798Snate@binkert.org env.Command(hh_file, Value(name), createSimObjectParam) 4507816Ssteve.reinhardt@amd.com env.Depends(hh_file, depends + extra_deps) 4515798Snate@binkert.org 4525798Snate@binkert.org# Generate any parameter header files needed 4534762Snate@binkert.orgparams_i_files = [] 4544762Snate@binkert.orgfor name,param in all_params.iteritems(): 4554762Snate@binkert.org if isinstance(param, m5.params.VectorParamDesc): 4564762Snate@binkert.org ext = 'vptype' 4574762Snate@binkert.org else: 4585517Snate@binkert.org ext = 'ptype' 4595517Snate@binkert.org 4605517Snate@binkert.org i_file = File('params/%s_%s.i' % (name, ext)) 4615517Snate@binkert.org params_i_files.append(i_file) 4625517Snate@binkert.org env.Command(i_file, Value(name), createSwigParam) 4635517Snate@binkert.org env.Depends(i_file, depends) 4647673Snate@binkert.org 4657673Snate@binkert.org# Generate all enum header files 4667673Snate@binkert.orgfor name,enum in all_enums.iteritems(): 4675517Snate@binkert.org extra_deps = [ File(py_modules[enum.__module__]) ] 4685517Snate@binkert.org 4695517Snate@binkert.org cc_file = File('enums/%s.cc' % name) 4705517Snate@binkert.org env.Command(cc_file, Value(name), createEnumStrings) 4715517Snate@binkert.org env.Depends(cc_file, depends + extra_deps) 4725517Snate@binkert.org Source(cc_file) 4735517Snate@binkert.org 4747673Snate@binkert.org hh_file = File('enums/%s.hh' % name) 4757677Snate@binkert.org env.Command(hh_file, Value(name), createEnumParam) 4767673Snate@binkert.org env.Depends(hh_file, depends + extra_deps) 4777673Snate@binkert.org 4785517Snate@binkert.org# Build the big monolithic swigged params module (wraps all SimObject 4795517Snate@binkert.org# param structs and enum structs) 4805517Snate@binkert.orgdef buildParams(target, source, env): 4815517Snate@binkert.org names = [ s.get_contents() for s in source ] 4825517Snate@binkert.org objs = [ sim_objects[name] for name in names ] 4835517Snate@binkert.org out = file(target[0].abspath, 'w') 4845517Snate@binkert.org 4857673Snate@binkert.org ordered_objs = [] 4867673Snate@binkert.org obj_seen = set() 4877673Snate@binkert.org def order_obj(obj): 4885517Snate@binkert.org name = str(obj) 4895517Snate@binkert.org if name in obj_seen: 4905517Snate@binkert.org return 4915517Snate@binkert.org 4925517Snate@binkert.org obj_seen.add(name) 4935517Snate@binkert.org if str(obj) != 'SimObject': 4945517Snate@binkert.org order_obj(obj.__bases__[0]) 4957673Snate@binkert.org 4967673Snate@binkert.org ordered_objs.append(obj) 4977673Snate@binkert.org 4985517Snate@binkert.org for obj in objs: 4997675Snate@binkert.org order_obj(obj) 5007675Snate@binkert.org 5017675Snate@binkert.org enums = set() 5027675Snate@binkert.org predecls = [] 5037675Snate@binkert.org pd_seen = set() 5047675Snate@binkert.org 5057675Snate@binkert.org def add_pds(*pds): 5067675Snate@binkert.org for pd in pds: 5077677Snate@binkert.org if pd not in pd_seen: 5087675Snate@binkert.org predecls.append(pd) 5097675Snate@binkert.org pd_seen.add(pd) 5107675Snate@binkert.org 5117675Snate@binkert.org for obj in ordered_objs: 5127675Snate@binkert.org params = obj._params.local.values() 5137675Snate@binkert.org for param in params: 5147675Snate@binkert.org ptype = param.ptype 5157675Snate@binkert.org if issubclass(ptype, m5.params.Enum): 5167675Snate@binkert.org if ptype not in enums: 5174762Snate@binkert.org enums.add(ptype) 5184762Snate@binkert.org pds = param.swig_predecls() 5196143Snate@binkert.org if isinstance(pds, (list, tuple)): 5206143Snate@binkert.org add_pds(*pds) 5216143Snate@binkert.org else: 5224762Snate@binkert.org add_pds(pds) 5234762Snate@binkert.org 5244762Snate@binkert.org print >>out, '%module params' 5257756SAli.Saidi@ARM.com 5267816Ssteve.reinhardt@amd.com print >>out, '%{' 5274762Snate@binkert.org for obj in ordered_objs: 5284762Snate@binkert.org print >>out, '#include "params/%s.hh"' % obj 5294762Snate@binkert.org print >>out, '%}' 5305463Snate@binkert.org 5315517Snate@binkert.org for pd in predecls: 5327677Snate@binkert.org print >>out, pd 5335463Snate@binkert.org 5347756SAli.Saidi@ARM.com enums = list(enums) 5357816Ssteve.reinhardt@amd.com enums.sort() 5364762Snate@binkert.org for enum in enums: 5377677Snate@binkert.org print >>out, '%%include "enums/%s.hh"' % enum.__name__ 5384762Snate@binkert.org print >>out 5394762Snate@binkert.org 5406143Snate@binkert.org for obj in ordered_objs: 5416143Snate@binkert.org if obj.swig_objdecls: 5426143Snate@binkert.org for decl in obj.swig_objdecls: 5434762Snate@binkert.org print >>out, decl 5444762Snate@binkert.org continue 5457756SAli.Saidi@ARM.com 5467816Ssteve.reinhardt@amd.com class_path = obj.cxx_class.split('::') 5474762Snate@binkert.org classname = class_path[-1] 5484762Snate@binkert.org namespaces = class_path[:-1] 5494762Snate@binkert.org namespaces.reverse() 5504762Snate@binkert.org 5517756SAli.Saidi@ARM.com code = '' 5527816Ssteve.reinhardt@amd.com 5534762Snate@binkert.org if namespaces: 5544762Snate@binkert.org code += '// avoid name conflicts\n' 5557677Snate@binkert.org sep_string = '_COLONS_' 5567756SAli.Saidi@ARM.com flat_name = sep_string.join(class_path) 5577816Ssteve.reinhardt@amd.com code += '%%rename(%s) %s;\n' % (flat_name, classname) 5587675Snate@binkert.org 5597677Snate@binkert.org code += '// stop swig from creating/wrapping default ctor/dtor\n' 5605517Snate@binkert.org code += '%%nodefault %s;\n' % classname 5617675Snate@binkert.org code += 'class %s ' % classname 5627675Snate@binkert.org if obj._base: 5637675Snate@binkert.org code += ': public %s' % obj._base.cxx_class 5647675Snate@binkert.org code += ' {};\n' 5657675Snate@binkert.org 5667675Snate@binkert.org for ns in namespaces: 5677675Snate@binkert.org new_code = 'namespace %s {\n' % ns 5685517Snate@binkert.org new_code += code 5697673Snate@binkert.org new_code += '}\n' 5705517Snate@binkert.org code = new_code 5717677Snate@binkert.org 5727675Snate@binkert.org print >>out, code 5737673Snate@binkert.org 5747675Snate@binkert.org print >>out, '%%include "src/sim/sim_object_params.hh"' % obj 5757675Snate@binkert.org for obj in ordered_objs: 5767675Snate@binkert.org print >>out, '%%include "params/%s.hh"' % obj 5777673Snate@binkert.org 5787675Snate@binkert.orgparams_file = File('params/params.i') 5795517Snate@binkert.orgnames = sort_list(sim_objects.keys()) 5807675Snate@binkert.orgenv.Command(params_file, [ Value(v) for v in names ], buildParams) 5817675Snate@binkert.orgenv.Depends(params_file, params_hh_files + params_i_files + depends) 5827673Snate@binkert.orgSwigSource('m5.objects', params_file) 5837675Snate@binkert.org 5847675Snate@binkert.org# Build all swig modules 5857677Snate@binkert.orgswig_modules = [] 5867675Snate@binkert.orgcc_swig_sources = [] 5877675Snate@binkert.orgfor source,package in swig_sources: 5887675Snate@binkert.org filename = str(source) 5895517Snate@binkert.org assert filename.endswith('.i') 5907675Snate@binkert.org 5915517Snate@binkert.org base = '.'.join(filename.split('.')[:-1]) 5927673Snate@binkert.org module = basename(base) 5935517Snate@binkert.org cc_file = base + '_wrap.cc' 5947675Snate@binkert.org py_file = base + '.py' 5957677Snate@binkert.org 5967756SAli.Saidi@ARM.com env.Command([cc_file, py_file], source, 5977816Ssteve.reinhardt@amd.com '$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} ' 5987675Snate@binkert.org '-o ${TARGETS[0]} $SOURCES') 5997677Snate@binkert.org env.Depends(py_file, source) 6004762Snate@binkert.org env.Depends(cc_file, source) 6017674Snate@binkert.org 6027674Snate@binkert.org swig_modules.append(Value(module)) 6037674Snate@binkert.org cc_swig_sources.append(File(cc_file)) 6047674Snate@binkert.org PySource(package, py_file) 6057674Snate@binkert.org 6067674Snate@binkert.org# Generate the main swig init file 6077674Snate@binkert.orgdef makeSwigInit(target, source, env): 6087674Snate@binkert.org f = file(str(target[0]), 'w') 6097674Snate@binkert.org print >>f, 'extern "C" {' 6107674Snate@binkert.org for module in source: 6117674Snate@binkert.org print >>f, ' void init_%s();' % module.get_contents() 6127674Snate@binkert.org print >>f, '}' 6137674Snate@binkert.org print >>f, 'void initSwig() {' 6147674Snate@binkert.org for module in source: 6157674Snate@binkert.org print >>f, ' init_%s();' % module.get_contents() 6164762Snate@binkert.org print >>f, '}' 6176143Snate@binkert.org f.close() 6186143Snate@binkert.org 6197756SAli.Saidi@ARM.comenv.Command('python/swig/init.cc', swig_modules, makeSwigInit) 6207816Ssteve.reinhardt@amd.comSource('python/swig/init.cc') 6217674Snate@binkert.org 6227756SAli.Saidi@ARM.com# Generate traceflags.py 6237816Ssteve.reinhardt@amd.comdef traceFlagsPy(target, source, env): 6247674Snate@binkert.org assert(len(target) == 1) 6254382Sbinkertn@umich.edu 6266229Snate@binkert.org f = file(str(target[0]), 'w') 6276229Snate@binkert.org 6286229Snate@binkert.org allFlags = [] 6296229Snate@binkert.org for s in source: 6306229Snate@binkert.org val = eval(s.get_contents()) 6316229Snate@binkert.org allFlags.append(val) 6326229Snate@binkert.org 6336229Snate@binkert.org allFlags.sort() 6346229Snate@binkert.org 6356229Snate@binkert.org print >>f, 'basic = [' 6366229Snate@binkert.org for flag, compound, desc in allFlags: 6376229Snate@binkert.org if not compound: 6386229Snate@binkert.org print >>f, " '%s'," % flag 6396229Snate@binkert.org print >>f, " ]" 6406229Snate@binkert.org print >>f 6416229Snate@binkert.org 6426229Snate@binkert.org print >>f, 'compound = [' 6436229Snate@binkert.org print >>f, " 'All'," 6446229Snate@binkert.org for flag, compound, desc in allFlags: 6456229Snate@binkert.org if compound: 6466229Snate@binkert.org print >>f, " '%s'," % flag 6475192Ssaidi@eecs.umich.edu print >>f, " ]" 6485517Snate@binkert.org print >>f 6495517Snate@binkert.org 6507673Snate@binkert.org print >>f, "all = frozenset(basic + compound)" 6515517Snate@binkert.org print >>f 6526229Snate@binkert.org 6535799Snate@binkert.org print >>f, 'compoundMap = {' 6547673Snate@binkert.org all = tuple([flag for flag,compound,desc in allFlags if not compound]) 6557673Snate@binkert.org print >>f, " 'All' : %s," % (all, ) 6565517Snate@binkert.org for flag, compound, desc in allFlags: 6575517Snate@binkert.org if compound: 6587673Snate@binkert.org print >>f, " '%s' : %s," % (flag, compound) 6597673Snate@binkert.org print >>f, " }" 6607673Snate@binkert.org print >>f 6617673Snate@binkert.org 6625517Snate@binkert.org print >>f, 'descriptions = {' 6637673Snate@binkert.org print >>f, " 'All' : 'All flags'," 6647673Snate@binkert.org for flag, compound, desc in allFlags: 6657673Snate@binkert.org print >>f, " '%s' : '%s'," % (flag, desc) 6665517Snate@binkert.org print >>f, " }" 6675517Snate@binkert.org 6687673Snate@binkert.org f.close() 6697673Snate@binkert.org 6707673Snate@binkert.orgdef traceFlagsCC(target, source, env): 6717673Snate@binkert.org assert(len(target) == 1) 6725517Snate@binkert.org 6737673Snate@binkert.org f = file(str(target[0]), 'w') 6747673Snate@binkert.org 6755517Snate@binkert.org allFlags = [] 6767673Snate@binkert.org for s in source: 6777673Snate@binkert.org val = eval(s.get_contents()) 6785517Snate@binkert.org allFlags.append(val) 6797673Snate@binkert.org 6805517Snate@binkert.org # file header 6815517Snate@binkert.org print >>f, ''' 6827673Snate@binkert.org/* 6837673Snate@binkert.org * DO NOT EDIT THIS FILE! Automatically generated 6847673Snate@binkert.org */ 6857673Snate@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[] = 6917673Snate@binkert.org{''' 6927673Snate@binkert.org 6937673Snate@binkert.org # The string array is used by SimpleEnumParam to map the strings 6945517Snate@binkert.org # provided by the user to enum values. 6957673Snate@binkert.org for flag, compound, desc in allFlags: 6965517Snate@binkert.org if not compound: 6975517Snate@binkert.org print >>f, ' "%s",' % flag 6985517Snate@binkert.org 6995517Snate@binkert.org print >>f, ' "All",' 7006229Snate@binkert.org for flag, compound, desc in allFlags: 7017673Snate@binkert.org if compound: 7025517Snate@binkert.org print >>f, ' "%s",' % flag 7035517Snate@binkert.org 7047673Snate@binkert.org print >>f, '};' 7055517Snate@binkert.org print >>f 7065517Snate@binkert.org print >>f, 'const int Trace::numFlagStrings = %d;' % (len(allFlags) + 1) 7075517Snate@binkert.org print >>f 7085517Snate@binkert.org 7095517Snate@binkert.org # 7105517Snate@binkert.org # Now define the individual compound flag arrays. There is an array 7115517Snate@binkert.org # for each compound flag listing the component base flags. 7125517Snate@binkert.org # 7135517Snate@binkert.org all = tuple([flag for flag,compound,desc in allFlags if not compound]) 7147673Snate@binkert.org print >>f, 'static const Flags AllMap[] = {' 7155517Snate@binkert.org for flag, compound, desc in allFlags: 7167673Snate@binkert.org if not compound: 7175517Snate@binkert.org print >>f, " %s," % flag 7185517Snate@binkert.org print >>f, '};' 7195517Snate@binkert.org print >>f 7205517Snate@binkert.org 7217673Snate@binkert.org for flag, compound, desc in allFlags: 7225517Snate@binkert.org if not compound: 7237673Snate@binkert.org continue 7245517Snate@binkert.org print >>f, 'static const Flags %sMap[] = {' % flag 7255517Snate@binkert.org for flag in compound: 7267673Snate@binkert.org print >>f, " %s," % flag 7277673Snate@binkert.org print >>f, " (Flags)-1" 7285517Snate@binkert.org print >>f, '};' 7297673Snate@binkert.org print >>f 7307673Snate@binkert.org 7315517Snate@binkert.org # 7327673Snate@binkert.org # Finally the compoundFlags[] array maps the compound flags 7337673Snate@binkert.org # to their individual arrays/ 7347673Snate@binkert.org # 7357673Snate@binkert.org print >>f, 'const Flags *Trace::compoundFlags[] =' 7365517Snate@binkert.org print >>f, '{' 7375517Snate@binkert.org print >>f, ' AllMap,' 7385517Snate@binkert.org for flag, compound, desc in allFlags: 7397673Snate@binkert.org if compound: 7407673Snate@binkert.org print >>f, ' %sMap,' % flag 7415517Snate@binkert.org # file trailer 7425517Snate@binkert.org print >>f, '};' 7437673Snate@binkert.org 7447673Snate@binkert.org f.close() 7457673Snate@binkert.org 7467673Snate@binkert.orgdef traceFlagsHH(target, source, env): 7475517Snate@binkert.org assert(len(target) == 1) 7485517Snate@binkert.org 7495517Snate@binkert.org f = file(str(target[0]), 'w') 7505517Snate@binkert.org 7517673Snate@binkert.org allFlags = [] 7527673Snate@binkert.org for s in source: 7535517Snate@binkert.org val = eval(s.get_contents()) 7547673Snate@binkert.org allFlags.append(val) 7557673Snate@binkert.org 7567673Snate@binkert.org # file header boilerplate 7577673Snate@binkert.org print >>f, ''' 7587673Snate@binkert.org/* 7595517Snate@binkert.org * DO NOT EDIT THIS FILE! 7605517Snate@binkert.org * 7615517Snate@binkert.org * Automatically generated from traceflags.py 7627673Snate@binkert.org */ 7637673Snate@binkert.org 7647673Snate@binkert.org#ifndef __BASE_TRACE_FLAGS_HH__ 7655517Snate@binkert.org#define __BASE_TRACE_FLAGS_HH__ 7665517Snate@binkert.org 7677673Snate@binkert.orgnamespace Trace { 7685517Snate@binkert.org 7697673Snate@binkert.orgenum Flags {''' 7707673Snate@binkert.org 7715517Snate@binkert.org # Generate the enum. Base flags come first, then compound flags. 7727673Snate@binkert.org idx = 0 7735517Snate@binkert.org for flag, compound, desc in allFlags: 7745517Snate@binkert.org if not compound: 7755517Snate@binkert.org print >>f, ' %s = %d,' % (flag, idx) 7765517Snate@binkert.org idx += 1 7776229Snate@binkert.org 7787673Snate@binkert.org numBaseFlags = idx 7795517Snate@binkert.org print >>f, ' NumFlags = %d,' % idx 7805517Snate@binkert.org 7817673Snate@binkert.org # put a comment in here to separate base from compound flags 7825517Snate@binkert.org print >>f, ''' 7835517Snate@binkert.org// The remaining enum values are *not* valid indices for Trace::flags. 7845517Snate@binkert.org// They are "compound" flags, which correspond to sets of base 7855517Snate@binkert.org// flags, and are used by changeFlag.''' 7865517Snate@binkert.org 7875517Snate@binkert.org print >>f, ' All = %d,' % idx 7885517Snate@binkert.org idx += 1 7895517Snate@binkert.org for flag, compound, desc in allFlags: 7905517Snate@binkert.org if compound: 7915517Snate@binkert.org print >>f, ' %s = %d,' % (flag, idx) 7925517Snate@binkert.org idx += 1 7937673Snate@binkert.org 7945517Snate@binkert.org numCompoundFlags = idx - numBaseFlags 7955517Snate@binkert.org print >>f, ' NumCompoundFlags = %d' % numCompoundFlags 7965517Snate@binkert.org 7977673Snate@binkert.org # trailer boilerplate 7985517Snate@binkert.org print >>f, '''\ 7995517Snate@binkert.org}; // enum Flags 8007673Snate@binkert.org 8015517Snate@binkert.org// Array of strings for SimpleEnumParam 8025517Snate@binkert.orgextern const char *flagStrings[]; 8035517Snate@binkert.orgextern const int numFlagStrings; 8047673Snate@binkert.org 8057673Snate@binkert.org// Array of arraay pointers: for each compound flag, gives the list of 8067673Snate@binkert.org// base flags to set. Inidividual flag arrays are terminated by -1. 8075517Snate@binkert.orgextern const Flags *compoundFlags[]; 8085517Snate@binkert.org 8097673Snate@binkert.org/* namespace Trace */ } 8105517Snate@binkert.org 8115517Snate@binkert.org#endif // __BASE_TRACE_FLAGS_HH__ 8127673Snate@binkert.org''' 8135517Snate@binkert.org 8147673Snate@binkert.org f.close() 8157673Snate@binkert.org 8165517Snate@binkert.orgflags = [ Value(f) for f in trace_flags.values() ] 8175517Snate@binkert.orgenv.Command('base/traceflags.py', flags, traceFlagsPy) 8185517Snate@binkert.orgPySource('m5', 'base/traceflags.py') 8197673Snate@binkert.org 8205517Snate@binkert.orgenv.Command('base/traceflags.hh', flags, traceFlagsHH) 8215517Snate@binkert.orgenv.Command('base/traceflags.cc', flags, traceFlagsCC) 8225517Snate@binkert.orgSource('base/traceflags.cc') 8237673Snate@binkert.org 8247673Snate@binkert.org# embed python files. All .py files that have been indicated by a 8255517Snate@binkert.org# PySource() call in a SConscript need to be embedded into the M5 8265517Snate@binkert.org# library. To do that, we compile the file to byte code, marshal the 8277673Snate@binkert.org# byte code, compress it, and then generate an assembly file that 8285517Snate@binkert.org# inserts the result into the data section with symbols indicating the 8295517Snate@binkert.org# beginning, and end (and with the size at the end) 8305517Snate@binkert.orgpy_sources_tnodes = {} 8315517Snate@binkert.orgfor pysource in py_sources: 8325517Snate@binkert.org py_sources_tnodes[pysource.tnode] = pysource 8335517Snate@binkert.org 8345517Snate@binkert.orgdef objectifyPyFile(target, source, env): 8355517Snate@binkert.org '''Action function to compile a .py into a code object, marshal 8365517Snate@binkert.org it, compress it, and stick it into an asm file so the code appears 8375517Snate@binkert.org as just bytes with a label in the data section''' 8387811Ssteve.reinhardt@amd.com 8395517Snate@binkert.org src = file(str(source[0]), 'r').read() 8405517Snate@binkert.org dst = file(str(target[0]), 'w') 8417673Snate@binkert.org 8425517Snate@binkert.org pysource = py_sources_tnodes[source[0]] 8437673Snate@binkert.org compiled = compile(src, pysource.debugname, 'exec') 8445517Snate@binkert.org marshalled = marshal.dumps(compiled) 8456143Snate@binkert.org compressed = zlib.compress(marshalled) 8467756SAli.Saidi@ARM.com data = compressed 8477816Ssteve.reinhardt@amd.com 8485192Ssaidi@eecs.umich.edu # Some C/C++ compilers prepend an underscore to global symbol 8495192Ssaidi@eecs.umich.edu # names, so if they're going to do that, we need to prepend that 8507756SAli.Saidi@ARM.com # leading underscore to globals in the assembly file. 8517816Ssteve.reinhardt@amd.com if env['LEADING_UNDERSCORE']: 8527756SAli.Saidi@ARM.com sym = '_' + pysource.symname 8537816Ssteve.reinhardt@amd.com else: 8545192Ssaidi@eecs.umich.edu sym = pysource.symname 8555192Ssaidi@eecs.umich.edu 8567674Snate@binkert.org step = 16 8575522Snate@binkert.org print >>dst, ".data" 8585522Snate@binkert.org print >>dst, ".globl %s_beg" % sym 8597674Snate@binkert.org print >>dst, ".globl %s_end" % sym 8607674Snate@binkert.org print >>dst, "%s_beg:" % sym 8617674Snate@binkert.org for i in xrange(0, len(data), step): 8627674Snate@binkert.org x = array.array('B', data[i:i+step]) 8637674Snate@binkert.org print >>dst, ".byte", ','.join([str(d) for d in x]) 8647674Snate@binkert.org print >>dst, "%s_end:" % sym 8657674Snate@binkert.org print >>dst, ".long %d" % len(marshalled) 8667674Snate@binkert.org 8675522Snate@binkert.orgfor source in py_sources: 8685522Snate@binkert.org env.Command(source.assembly, source.tnode, objectifyPyFile) 8695522Snate@binkert.org Source(source.assembly) 8705517Snate@binkert.org 8715522Snate@binkert.org# Generate init_python.cc which creates a bunch of EmbeddedPyModule 8725517Snate@binkert.org# structs that describe the embedded python code. One such struct 8736143Snate@binkert.org# contains information about the importer that python uses to get at 8746727Ssteve.reinhardt@amd.com# the embedded files, and then there's a list of all of the rest that 8755522Snate@binkert.org# the importer uses to load the rest on demand. 8765522Snate@binkert.orgpy_sources_symbols = {} 8775522Snate@binkert.orgfor pysource in py_sources: 8787674Snate@binkert.org py_sources_symbols[pysource.symname] = pysource 8795517Snate@binkert.orgdef pythonInit(target, source, env): 8807673Snate@binkert.org dst = file(str(target[0]), 'w') 8817673Snate@binkert.org 8827674Snate@binkert.org def dump_mod(sym, endchar=','): 8837673Snate@binkert.org pysource = py_sources_symbols[sym] 8847674Snate@binkert.org print >>dst, ' { "%s",' % pysource.arcname 8857674Snate@binkert.org print >>dst, ' "%s",' % pysource.modpath 8867674Snate@binkert.org print >>dst, ' %s_beg, %s_end,' % (sym, sym) 8877674Snate@binkert.org print >>dst, ' %s_end - %s_beg,' % (sym, sym) 8887674Snate@binkert.org print >>dst, ' *(int *)%s_end }%s' % (sym, endchar) 8897674Snate@binkert.org 8905522Snate@binkert.org print >>dst, '#include "sim/init.hh"' 8915522Snate@binkert.org 8927674Snate@binkert.org for sym in source: 8937674Snate@binkert.org sym = sym.get_contents() 8947674Snate@binkert.org print >>dst, "extern const char %s_beg[], %s_end[];" % (sym, sym) 8957674Snate@binkert.org 8967673Snate@binkert.org print >>dst, "const EmbeddedPyModule embeddedPyImporter = " 8977674Snate@binkert.org dump_mod("PyEMB_importer", endchar=';'); 8987674Snate@binkert.org print >>dst 8997674Snate@binkert.org 9007674Snate@binkert.org print >>dst, "const EmbeddedPyModule embeddedPyModules[] = {" 9017674Snate@binkert.org for i,sym in enumerate(source): 9027674Snate@binkert.org sym = sym.get_contents() 9037674Snate@binkert.org if sym == "PyEMB_importer": 9047674Snate@binkert.org # Skip the importer since we've already exported it 9057811Ssteve.reinhardt@amd.com continue 9067674Snate@binkert.org dump_mod(sym) 9077673Snate@binkert.org print >>dst, " { 0, 0, 0, 0, 0, 0 }" 9085522Snate@binkert.org print >>dst, "};" 9096143Snate@binkert.org 9107756SAli.Saidi@ARM.comsymbols = [Value(s.symname) for s in py_sources] 9117816Ssteve.reinhardt@amd.comenv.Command('sim/init_python.cc', symbols, pythonInit) 9127674Snate@binkert.orgSource('sim/init_python.cc') 9134382Sbinkertn@umich.edu 9144382Sbinkertn@umich.edu######################################################################## 9154382Sbinkertn@umich.edu# 9164382Sbinkertn@umich.edu# Define binaries. Each different build type (debug, opt, etc.) gets 9174382Sbinkertn@umich.edu# a slightly different build environment. 9184382Sbinkertn@umich.edu# 9194382Sbinkertn@umich.edu 9204382Sbinkertn@umich.edu# List of constructed environments to pass back to SConstruct 9214382Sbinkertn@umich.eduenvList = [] 9224382Sbinkertn@umich.edu 9236143Snate@binkert.org# This function adds the specified sources to the given build 924955SN/A# environment, and returns a list of all the corresponding SCons 9252655Sstever@eecs.umich.edu# Object nodes (including an extra one for date.cc). We explicitly 9262655Sstever@eecs.umich.edu# add the Object nodes so we can set up special dependencies for 9272655Sstever@eecs.umich.edu# date.cc. 9282655Sstever@eecs.umich.edudef make_objs(sources, env, static): 9292655Sstever@eecs.umich.edu if static: 9305601Snate@binkert.org XObject = env.StaticObject 9315601Snate@binkert.org else: 9325601Snate@binkert.org XObject = env.SharedObject 9335601Snate@binkert.org 9345522Snate@binkert.org objs = [ XObject(s) for s in sources ] 9355863Snate@binkert.org 9365601Snate@binkert.org # make date.cc depend on all other objects so it always gets 9375601Snate@binkert.org # recompiled whenever anything else does 9385601Snate@binkert.org date_obj = XObject('base/date.cc') 9395863Snate@binkert.org 9406143Snate@binkert.org env.Depends(date_obj, objs) 9415559Snate@binkert.org objs.append(date_obj) 9425559Snate@binkert.org return objs 9435559Snate@binkert.org 9445559Snate@binkert.org# Function to create a new build environment as clone of current 9455601Snate@binkert.org# environment 'env' with modified object suffix and optional stripped 9466143Snate@binkert.org# binary. Additional keyword arguments are appended to corresponding 9476143Snate@binkert.org# build environment vars. 9486143Snate@binkert.orgdef makeEnv(label, objsfx, strip = False, **kwargs): 9496143Snate@binkert.org # SCons doesn't know to append a library suffix when there is a '.' in the 9506143Snate@binkert.org # name. Use '_' instead. 9516143Snate@binkert.org libname = 'm5_' + label 9526143Snate@binkert.org exename = 'm5.' + label 9536143Snate@binkert.org 9546143Snate@binkert.org new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's') 9556143Snate@binkert.org new_env.Label = label 9566143Snate@binkert.org new_env.Append(**kwargs) 9576143Snate@binkert.org 9586143Snate@binkert.org swig_env = new_env.Clone() 9596143Snate@binkert.org if env['GCC']: 9606143Snate@binkert.org swig_env.Append(CCFLAGS='-Wno-uninitialized') 9616143Snate@binkert.org swig_env.Append(CCFLAGS='-Wno-sign-compare') 9626143Snate@binkert.org swig_env.Append(CCFLAGS='-Wno-parentheses') 9636143Snate@binkert.org 9646143Snate@binkert.org static_objs = make_objs(cc_lib_sources, new_env, static=True) 9656143Snate@binkert.org shared_objs = make_objs(cc_lib_sources, new_env, static=False) 9666143Snate@binkert.org static_objs += [ swig_env.StaticObject(s) for s in cc_swig_sources ] 9676143Snate@binkert.org shared_objs += [ swig_env.SharedObject(s) for s in cc_swig_sources ] 9686143Snate@binkert.org 9696143Snate@binkert.org # First make a library of everything but main() so other programs can 9706143Snate@binkert.org # link against m5. 9716143Snate@binkert.org static_lib = new_env.StaticLibrary(libname, static_objs) 9726143Snate@binkert.org shared_lib = new_env.SharedLibrary(libname, shared_objs) 9736143Snate@binkert.org 9746143Snate@binkert.org for target, sources in unit_tests: 9756143Snate@binkert.org objs = [ new_env.StaticObject(s) for s in sources ] 9766143Snate@binkert.org new_env.Program("unittest/%s.%s" % (target, label), objs + static_objs) 9776143Snate@binkert.org 9786240Snate@binkert.org # Now link a stub with main() and the static library. 9795554Snate@binkert.org objects = [new_env.Object(s) for s in cc_bin_sources] + static_objs 9805522Snate@binkert.org if strip: 9815522Snate@binkert.org unstripped_exe = exename + '.unstripped' 9825797Snate@binkert.org new_env.Program(unstripped_exe, objects) 9835797Snate@binkert.org if sys.platform == 'sunos5': 9845522Snate@binkert.org cmd = 'cp $SOURCE $TARGET; strip $TARGET' 9855584Snate@binkert.org else: 9866143Snate@binkert.org cmd = 'strip $SOURCE -o $TARGET' 9875862Snate@binkert.org targets = new_env.Command(exename, unstripped_exe, cmd) 9885584Snate@binkert.org else: 9895601Snate@binkert.org targets = new_env.Program(exename, objects) 9906143Snate@binkert.org 9916143Snate@binkert.org new_env.M5Binary = targets[0] 9922655Sstever@eecs.umich.edu envList.append(new_env) 9936143Snate@binkert.org 9946143Snate@binkert.org# Debug binary 9956143Snate@binkert.orgccflags = {} 9966143Snate@binkert.orgif env['GCC']: 9976143Snate@binkert.org if sys.platform == 'sunos5': 9984007Ssaidi@eecs.umich.edu ccflags['debug'] = '-gstabs+' 9994596Sbinkertn@umich.edu else: 10004007Ssaidi@eecs.umich.edu ccflags['debug'] = '-ggdb3' 10014596Sbinkertn@umich.edu ccflags['opt'] = '-g -O3' 10027756SAli.Saidi@ARM.com ccflags['fast'] = '-O3' 10037816Ssteve.reinhardt@amd.com ccflags['prof'] = '-O3 -g -pg' 10045522Snate@binkert.orgelif env['SUNCC']: 10055601Snate@binkert.org ccflags['debug'] = '-g0' 10065601Snate@binkert.org ccflags['opt'] = '-g -O' 10072655Sstever@eecs.umich.edu ccflags['fast'] = '-fast' 1008955SN/A ccflags['prof'] = '-fast -g -pg' 10093918Ssaidi@eecs.umich.eduelif env['ICC']: 10103918Ssaidi@eecs.umich.edu ccflags['debug'] = '-g -O0' 10113918Ssaidi@eecs.umich.edu ccflags['opt'] = '-g -O' 10123918Ssaidi@eecs.umich.edu ccflags['fast'] = '-fast' 10133918Ssaidi@eecs.umich.edu ccflags['prof'] = '-fast -g -pg' 10143918Ssaidi@eecs.umich.eduelse: 10153918Ssaidi@eecs.umich.edu print 'Unknown compiler, please fix compiler options' 10163918Ssaidi@eecs.umich.edu Exit(1) 10173918Ssaidi@eecs.umich.edu 10183918Ssaidi@eecs.umich.edumakeEnv('debug', '.do', 10193918Ssaidi@eecs.umich.edu CCFLAGS = Split(ccflags['debug']), 10203918Ssaidi@eecs.umich.edu CPPDEFINES = ['DEBUG', 'TRACING_ON=1']) 10213918Ssaidi@eecs.umich.edu 10223918Ssaidi@eecs.umich.edu# Optimized binary 10233940Ssaidi@eecs.umich.edumakeEnv('opt', '.o', 10243940Ssaidi@eecs.umich.edu CCFLAGS = Split(ccflags['opt']), 10253940Ssaidi@eecs.umich.edu CPPDEFINES = ['TRACING_ON=1']) 10263942Ssaidi@eecs.umich.edu 10273940Ssaidi@eecs.umich.edu# "Fast" binary 10283515Ssaidi@eecs.umich.edumakeEnv('fast', '.fo', strip = True, 10293918Ssaidi@eecs.umich.edu CCFLAGS = Split(ccflags['fast']), 10304762Snate@binkert.org CPPDEFINES = ['NDEBUG', 'TRACING_ON=0']) 10313515Ssaidi@eecs.umich.edu 10322655Sstever@eecs.umich.edu# Profiled binary 10333918Ssaidi@eecs.umich.edumakeEnv('prof', '.po', 10343619Sbinkertn@umich.edu CCFLAGS = Split(ccflags['prof']), 1035955SN/A CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'], 1036955SN/A LINKFLAGS = '-pg') 10372655Sstever@eecs.umich.edu 10383918Ssaidi@eecs.umich.eduReturn('envList') 10393619Sbinkertn@umich.edu