2004-07-03 06:16:38 +02:00
|
|
|
# -*- mode:python -*-
|
|
|
|
|
2005-06-05 11:16:00 +02:00
|
|
|
# Copyright (c) 2004-2005 The Regents of The University of Michigan
|
2004-07-03 06:16:38 +02:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are
|
|
|
|
# met: redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer;
|
|
|
|
# redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution;
|
|
|
|
# neither the name of the copyright holders nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived from
|
|
|
|
# this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2006-06-01 01:26:56 +02:00
|
|
|
#
|
2007-07-24 06:51:38 +02:00
|
|
|
# Authors: Nathan Binkert
|
2004-07-03 06:16:38 +02:00
|
|
|
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
import array
|
2009-05-05 01:58:24 +02:00
|
|
|
import bisect
|
2007-07-24 06:51:38 +02:00
|
|
|
import imp
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
import marshal
|
2004-07-03 06:16:38 +02:00
|
|
|
import os
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
import re
|
2004-07-03 06:16:38 +02:00
|
|
|
import sys
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
import zlib
|
2007-03-11 08:00:54 +01:00
|
|
|
|
2008-11-10 20:51:18 +01:00
|
|
|
from os.path import basename, dirname, exists, isdir, isfile, join as joinpath
|
2004-07-03 06:16:38 +02:00
|
|
|
|
2007-04-12 18:07:59 +02:00
|
|
|
import SCons
|
|
|
|
|
2004-07-03 06:16:38 +02:00
|
|
|
# This file defines how to build a particular configuration of M5
|
|
|
|
# based on variable settings in the 'env' build environment.
|
|
|
|
|
2007-03-11 08:00:54 +01:00
|
|
|
Import('*')
|
2004-07-03 06:16:38 +02:00
|
|
|
|
2007-04-13 06:20:04 +02:00
|
|
|
# Children need to see the environment
|
|
|
|
Export('env')
|
|
|
|
|
2009-09-23 00:24:16 +02:00
|
|
|
build_env = [(opt, env[opt]) for opt in export_vars]
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2010-09-09 23:15:42 +02:00
|
|
|
from m5.util import code_formatter
|
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
########################################################################
|
|
|
|
# Code for adding source files of various types
|
|
|
|
#
|
2011-04-15 19:44:44 +02:00
|
|
|
# When specifying a source file of some type, a set of guards can be
|
|
|
|
# specified for that file. When get() is used to find the files, if
|
|
|
|
# get specifies a set of filters, only files that match those filters
|
|
|
|
# will be accepted (unspecified filters on files are assumed to be
|
|
|
|
# false). Current filters are:
|
|
|
|
# main -- specifies the m5 main() function
|
|
|
|
# skip_lib -- do not put this file into the m5 library
|
|
|
|
# <unittest> -- unit tests use filters based on the unit test name
|
|
|
|
#
|
|
|
|
# A parent can now be specified for a source file and default filter
|
|
|
|
# values will be retrieved recursively from parents (children override
|
|
|
|
# parents).
|
|
|
|
#
|
2009-05-05 01:58:24 +02:00
|
|
|
class SourceMeta(type):
|
2011-04-15 19:44:44 +02:00
|
|
|
'''Meta class for source files that keeps track of all files of a
|
|
|
|
particular type and has a get function for finding all functions
|
|
|
|
of a certain type that match a set of guards'''
|
2009-05-05 01:58:24 +02:00
|
|
|
def __init__(cls, name, bases, dict):
|
|
|
|
super(SourceMeta, cls).__init__(name, bases, dict)
|
|
|
|
cls.all = []
|
|
|
|
|
2011-04-15 19:44:44 +02:00
|
|
|
def get(cls, **guards):
|
|
|
|
'''Find all files that match the specified guards. If a source
|
|
|
|
file does not specify a flag, the default is False'''
|
2009-05-05 01:58:24 +02:00
|
|
|
for src in cls.all:
|
2011-04-15 19:44:44 +02:00
|
|
|
for flag,value in guards.iteritems():
|
|
|
|
# if the flag is found and has a different value, skip
|
|
|
|
# this file
|
|
|
|
if src.all_guards.get(flag, False) != value:
|
2009-05-05 01:58:24 +02:00
|
|
|
break
|
|
|
|
else:
|
|
|
|
yield src
|
|
|
|
|
|
|
|
class SourceFile(object):
|
2011-04-15 19:44:44 +02:00
|
|
|
'''Base object that encapsulates the notion of a source file.
|
|
|
|
This includes, the source node, target node, various manipulations
|
|
|
|
of those. A source file also specifies a set of guards which
|
|
|
|
describing which builds the source file applies to. A parent can
|
|
|
|
also be specified to get default guards from'''
|
2009-05-05 01:58:24 +02:00
|
|
|
__metaclass__ = SourceMeta
|
2011-04-15 19:44:44 +02:00
|
|
|
def __init__(self, source, parent=None, **guards):
|
|
|
|
self.guards = guards
|
|
|
|
self.parent = parent
|
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
tnode = source
|
|
|
|
if not isinstance(source, SCons.Node.FS.File):
|
|
|
|
tnode = File(source)
|
2007-07-24 06:51:38 +02:00
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
self.tnode = tnode
|
|
|
|
self.snode = tnode.srcnode()
|
|
|
|
|
|
|
|
for base in type(self).__mro__:
|
|
|
|
if issubclass(base, SourceFile):
|
2010-04-16 01:25:14 +02:00
|
|
|
base.all.append(self)
|
2009-05-05 01:58:24 +02:00
|
|
|
|
2011-04-15 19:44:44 +02:00
|
|
|
@property
|
|
|
|
def filename(self):
|
|
|
|
return str(self.tnode)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def dirname(self):
|
|
|
|
return dirname(self.filename)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def basename(self):
|
|
|
|
return basename(self.filename)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def extname(self):
|
|
|
|
index = self.basename.rfind('.')
|
|
|
|
if index <= 0:
|
|
|
|
# dot files aren't extensions
|
|
|
|
return self.basename, None
|
|
|
|
|
|
|
|
return self.basename[:index], self.basename[index+1:]
|
|
|
|
|
|
|
|
@property
|
|
|
|
def all_guards(self):
|
|
|
|
'''find all guards for this object getting default values
|
|
|
|
recursively from its parents'''
|
|
|
|
guards = {}
|
|
|
|
if self.parent:
|
|
|
|
guards.update(self.parent.guards)
|
|
|
|
guards.update(self.guards)
|
|
|
|
return guards
|
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
def __lt__(self, other): return self.filename < other.filename
|
|
|
|
def __le__(self, other): return self.filename <= other.filename
|
|
|
|
def __gt__(self, other): return self.filename > other.filename
|
|
|
|
def __ge__(self, other): return self.filename >= other.filename
|
|
|
|
def __eq__(self, other): return self.filename == other.filename
|
|
|
|
def __ne__(self, other): return self.filename != other.filename
|
|
|
|
|
|
|
|
class Source(SourceFile):
|
|
|
|
'''Add a c/c++ source file to the build'''
|
2011-04-15 19:44:44 +02:00
|
|
|
def __init__(self, source, Werror=True, swig=False, **guards):
|
|
|
|
'''specify the source file, and any guards'''
|
|
|
|
super(Source, self).__init__(source, **guards)
|
2009-05-05 01:58:24 +02:00
|
|
|
|
|
|
|
self.Werror = Werror
|
|
|
|
self.swig = swig
|
|
|
|
|
|
|
|
class PySource(SourceFile):
|
|
|
|
'''Add a python source file to the named package'''
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
invalid_sym_char = re.compile('[^A-z0-9_]')
|
2009-05-05 01:58:24 +02:00
|
|
|
modules = {}
|
|
|
|
tnodes = {}
|
|
|
|
symnames = {}
|
|
|
|
|
2011-04-15 19:44:44 +02:00
|
|
|
def __init__(self, package, source, **guards):
|
|
|
|
'''specify the python package, the source file, and any guards'''
|
|
|
|
super(PySource, self).__init__(source, **guards)
|
2009-05-05 01:58:24 +02:00
|
|
|
|
|
|
|
modname,ext = self.extname
|
|
|
|
assert ext == 'py'
|
|
|
|
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
if package:
|
|
|
|
path = package.split('.')
|
|
|
|
else:
|
|
|
|
path = []
|
2008-10-09 13:58:23 +02:00
|
|
|
|
|
|
|
modpath = path[:]
|
2009-05-05 01:58:24 +02:00
|
|
|
if modname != '__init__':
|
|
|
|
modpath += [ modname ]
|
2007-07-24 06:51:38 +02:00
|
|
|
modpath = '.'.join(modpath)
|
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
arcpath = path + [ self.basename ]
|
2009-11-09 02:35:49 +01:00
|
|
|
abspath = self.snode.abspath
|
|
|
|
if not exists(abspath):
|
|
|
|
abspath = self.tnode.abspath
|
2008-10-09 13:58:23 +02:00
|
|
|
|
2007-07-24 06:51:38 +02:00
|
|
|
self.package = package
|
2009-05-05 01:58:24 +02:00
|
|
|
self.modname = modname
|
2007-07-24 06:51:38 +02:00
|
|
|
self.modpath = modpath
|
2009-05-05 01:58:24 +02:00
|
|
|
self.arcname = joinpath(*arcpath)
|
2009-11-09 02:35:49 +01:00
|
|
|
self.abspath = abspath
|
2009-05-05 01:58:24 +02:00
|
|
|
self.compiled = File(self.filename + 'c')
|
2010-09-09 23:15:42 +02:00
|
|
|
self.cpp = File(self.filename + '.cc')
|
|
|
|
self.symname = PySource.invalid_sym_char.sub('_', modpath)
|
2007-07-24 06:51:38 +02:00
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
PySource.modules[modpath] = self
|
|
|
|
PySource.tnodes[self.tnode] = self
|
|
|
|
PySource.symnames[self.symname] = self
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
class SimObject(PySource):
|
|
|
|
'''Add a SimObject python file as a python source object and add
|
|
|
|
it to a list of sim object modules'''
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
fixed = False
|
|
|
|
modnames = []
|
2004-07-03 06:16:38 +02:00
|
|
|
|
2011-04-15 19:44:44 +02:00
|
|
|
def __init__(self, source, **guards):
|
|
|
|
'''Specify the source file and any guards (automatically in
|
|
|
|
the m5.objects package)'''
|
|
|
|
super(SimObject, self).__init__('m5.objects', source, **guards)
|
2009-05-05 01:58:24 +02:00
|
|
|
if self.fixed:
|
|
|
|
raise AttributeError, "Too late to call SimObject now."
|
2006-02-21 05:26:39 +01:00
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
bisect.insort_right(SimObject.modnames, self.modname)
|
2007-07-24 06:51:38 +02:00
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
class SwigSource(SourceFile):
|
|
|
|
'''Add a swig file to build'''
|
2007-04-13 06:20:04 +02:00
|
|
|
|
2011-04-15 19:44:44 +02:00
|
|
|
def __init__(self, package, source, **guards):
|
|
|
|
'''Specify the python package, the source file, and any guards'''
|
|
|
|
super(SwigSource, self).__init__(source, **guards)
|
2007-07-24 06:51:38 +02:00
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
modname,ext = self.extname
|
|
|
|
assert ext == 'i'
|
2007-07-24 06:51:38 +02:00
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
self.module = modname
|
|
|
|
cc_file = joinpath(self.dirname, modname + '_wrap.cc')
|
|
|
|
py_file = joinpath(self.dirname, modname + '.py')
|
2007-07-24 06:51:38 +02:00
|
|
|
|
2011-04-15 19:44:44 +02:00
|
|
|
self.cc_source = Source(cc_file, swig=True, parent=self)
|
|
|
|
self.py_source = PySource(package, py_file, parent=self)
|
2007-04-13 06:20:04 +02:00
|
|
|
|
2008-10-02 20:27:01 +02:00
|
|
|
unit_tests = []
|
|
|
|
def UnitTest(target, sources):
|
2011-04-15 19:44:44 +02:00
|
|
|
'''Create a unit test, specify the target name and a source or
|
|
|
|
list of sources'''
|
2008-10-02 20:27:01 +02:00
|
|
|
if not isinstance(sources, (list, tuple)):
|
|
|
|
sources = [ sources ]
|
2009-05-05 01:58:24 +02:00
|
|
|
|
|
|
|
sources = [ Source(src, skip_lib=True) for src in sources ]
|
|
|
|
unit_tests.append((target, sources))
|
2008-10-02 20:27:01 +02:00
|
|
|
|
2007-04-13 06:20:04 +02:00
|
|
|
# Children should have access
|
2007-07-24 06:51:38 +02:00
|
|
|
Export('Source')
|
2007-04-13 06:20:04 +02:00
|
|
|
Export('PySource')
|
|
|
|
Export('SimObject')
|
|
|
|
Export('SwigSource')
|
2008-10-02 20:27:01 +02:00
|
|
|
Export('UnitTest')
|
2007-04-13 06:20:04 +02:00
|
|
|
|
2007-10-31 06:21:54 +01:00
|
|
|
########################################################################
|
|
|
|
#
|
2011-04-15 19:44:32 +02:00
|
|
|
# Debug Flags
|
2007-10-31 06:21:54 +01:00
|
|
|
#
|
2011-04-15 19:44:32 +02:00
|
|
|
debug_flags = {}
|
|
|
|
def DebugFlag(name, desc=None):
|
|
|
|
if name in debug_flags:
|
2007-10-31 06:21:54 +01:00
|
|
|
raise AttributeError, "Flag %s already specified" % name
|
2011-04-15 19:44:32 +02:00
|
|
|
debug_flags[name] = (name, (), desc)
|
|
|
|
TraceFlag = DebugFlag
|
2007-10-31 06:21:54 +01:00
|
|
|
|
2009-01-19 18:59:13 +01:00
|
|
|
def CompoundFlag(name, flags, desc=None):
|
2011-04-15 19:44:32 +02:00
|
|
|
if name in debug_flags:
|
2007-10-31 06:21:54 +01:00
|
|
|
raise AttributeError, "Flag %s already specified" % name
|
|
|
|
|
|
|
|
compound = tuple(flags)
|
2011-04-15 19:44:32 +02:00
|
|
|
debug_flags[name] = (name, compound, desc)
|
2007-10-31 06:21:54 +01:00
|
|
|
|
2011-04-15 19:44:32 +02:00
|
|
|
Export('DebugFlag')
|
2007-10-31 06:21:54 +01:00
|
|
|
Export('TraceFlag')
|
|
|
|
Export('CompoundFlag')
|
|
|
|
|
2007-04-13 06:20:04 +02:00
|
|
|
########################################################################
|
|
|
|
#
|
|
|
|
# Set some compiler variables
|
|
|
|
#
|
|
|
|
|
2006-06-10 05:01:31 +02:00
|
|
|
# Include file paths are rooted in this directory. SCons will
|
|
|
|
# automatically expand '.' to refer to both the source directory and
|
|
|
|
# the corresponding build directory to pick up generated include
|
|
|
|
# files.
|
|
|
|
env.Append(CPPPATH=Dir('.'))
|
|
|
|
|
2008-11-10 20:51:18 +01:00
|
|
|
for extra_dir in extras_dir_list:
|
|
|
|
env.Append(CPPPATH=Dir(extra_dir))
|
|
|
|
|
2009-01-13 23:17:50 +01:00
|
|
|
# Workaround for bug in SCons version > 0.97d20071212
|
|
|
|
# Scons bug id: 2006 M5 Bug id: 308
|
|
|
|
for root, dirs, files in os.walk(base_dir, topdown=True):
|
|
|
|
Dir(root[len(base_dir) + 1:])
|
|
|
|
|
2007-04-13 06:20:04 +02:00
|
|
|
########################################################################
|
2007-07-24 06:51:38 +02:00
|
|
|
#
|
2008-02-11 17:04:01 +01:00
|
|
|
# Walk the tree and execute all SConscripts in subdirectories
|
2007-04-13 06:20:04 +02:00
|
|
|
#
|
2007-07-24 06:51:38 +02:00
|
|
|
|
2008-11-10 20:51:18 +01:00
|
|
|
here = Dir('.').srcnode().abspath
|
|
|
|
for root, dirs, files in os.walk(base_dir, topdown=True):
|
|
|
|
if root == here:
|
|
|
|
# we don't want to recurse back into this SConscript
|
|
|
|
continue
|
|
|
|
|
|
|
|
if 'SConscript' in files:
|
|
|
|
build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:])
|
2010-11-07 01:48:58 +01:00
|
|
|
SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir)
|
2008-02-06 02:40:08 +01:00
|
|
|
|
2008-11-10 20:51:18 +01:00
|
|
|
for extra_dir in extras_dir_list:
|
|
|
|
prefix_len = len(dirname(extra_dir)) + 1
|
|
|
|
for root, dirs, files in os.walk(extra_dir, topdown=True):
|
2008-02-06 02:40:08 +01:00
|
|
|
if 'SConscript' in files:
|
2008-11-10 20:51:18 +01:00
|
|
|
build_dir = joinpath(env['BUILDDIR'], root[prefix_len:])
|
2010-11-07 01:48:58 +01:00
|
|
|
SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir)
|
2007-07-26 03:21:11 +02:00
|
|
|
|
2009-04-21 17:17:36 +02:00
|
|
|
for opt in export_vars:
|
2005-08-30 19:18:54 +02:00
|
|
|
env.ConfigFile(opt)
|
2004-09-16 21:11:38 +02:00
|
|
|
|
2009-09-23 17:34:21 +02:00
|
|
|
def makeTheISA(source, target, env):
|
|
|
|
isas = [ src.get_contents() for src in source ]
|
2010-09-09 23:15:41 +02:00
|
|
|
target_isa = env['TARGET_ISA']
|
2009-09-23 17:34:21 +02:00
|
|
|
def define(isa):
|
|
|
|
return isa.upper() + '_ISA'
|
|
|
|
|
|
|
|
def namespace(isa):
|
|
|
|
return isa[0].upper() + isa[1:].lower() + 'ISA'
|
|
|
|
|
|
|
|
|
2010-09-09 23:15:41 +02:00
|
|
|
code = code_formatter()
|
|
|
|
code('''\
|
|
|
|
#ifndef __CONFIG_THE_ISA_HH__
|
|
|
|
#define __CONFIG_THE_ISA_HH__
|
|
|
|
|
|
|
|
''')
|
|
|
|
|
2009-09-23 17:34:21 +02:00
|
|
|
for i,isa in enumerate(isas):
|
2010-09-09 23:15:41 +02:00
|
|
|
code('#define $0 $1', define(isa), i + 1)
|
|
|
|
|
|
|
|
code('''
|
|
|
|
|
|
|
|
#define THE_ISA ${{define(target_isa)}}
|
|
|
|
#define TheISA ${{namespace(target_isa)}}
|
|
|
|
|
|
|
|
#endif // __CONFIG_THE_ISA_HH__''')
|
|
|
|
|
|
|
|
code.write(str(target[0]))
|
2009-09-23 17:34:21 +02:00
|
|
|
|
2010-11-15 21:04:04 +01:00
|
|
|
env.Command('config/the_isa.hh', map(Value, all_isa_list),
|
2011-01-08 06:50:13 +01:00
|
|
|
MakeAction(makeTheISA, Transform("CFG ISA", 0)))
|
2009-09-23 17:34:21 +02:00
|
|
|
|
2007-04-13 06:20:04 +02:00
|
|
|
########################################################################
|
|
|
|
#
|
2007-07-24 06:51:38 +02:00
|
|
|
# Prevent any SimObjects from being added after this point, they
|
|
|
|
# should all have been added in the SConscripts above
|
2007-04-13 06:20:04 +02:00
|
|
|
#
|
2009-09-23 00:24:16 +02:00
|
|
|
SimObject.fixed = True
|
|
|
|
|
2008-07-31 17:01:38 +02:00
|
|
|
class DictImporter(object):
|
|
|
|
'''This importer takes a dictionary of arbitrary module names that
|
|
|
|
map to arbitrary filenames.'''
|
|
|
|
def __init__(self, modules):
|
|
|
|
self.modules = modules
|
|
|
|
self.installed = set()
|
2007-04-13 06:20:04 +02:00
|
|
|
|
2008-07-31 17:01:38 +02:00
|
|
|
def __del__(self):
|
|
|
|
self.unload()
|
2007-04-13 06:20:04 +02:00
|
|
|
|
2008-07-31 17:01:38 +02:00
|
|
|
def unload(self):
|
|
|
|
import sys
|
|
|
|
for module in self.installed:
|
|
|
|
del sys.modules[module]
|
|
|
|
self.installed = set()
|
|
|
|
|
|
|
|
def find_module(self, fullname, path):
|
2009-09-23 00:24:16 +02:00
|
|
|
if fullname == 'm5.defines':
|
2008-07-31 17:01:38 +02:00
|
|
|
return self
|
|
|
|
|
|
|
|
if fullname == 'm5.objects':
|
|
|
|
return self
|
|
|
|
|
|
|
|
if fullname.startswith('m5.internal'):
|
|
|
|
return None
|
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
source = self.modules.get(fullname, None)
|
2009-09-23 00:24:16 +02:00
|
|
|
if source is not None and fullname.startswith('m5.objects'):
|
2008-07-31 17:01:38 +02:00
|
|
|
return self
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
def load_module(self, fullname):
|
|
|
|
mod = imp.new_module(fullname)
|
|
|
|
sys.modules[fullname] = mod
|
|
|
|
self.installed.add(fullname)
|
|
|
|
|
|
|
|
mod.__loader__ = self
|
|
|
|
if fullname == 'm5.objects':
|
|
|
|
mod.__path__ = fullname.split('.')
|
|
|
|
return mod
|
|
|
|
|
2009-09-23 00:24:16 +02:00
|
|
|
if fullname == 'm5.defines':
|
|
|
|
mod.__dict__['buildEnv'] = m5.util.SmartDict(build_env)
|
2008-07-31 17:01:38 +02:00
|
|
|
return mod
|
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
source = self.modules[fullname]
|
|
|
|
if source.modname == '__init__':
|
|
|
|
mod.__path__ = source.modpath
|
2009-11-09 02:35:49 +01:00
|
|
|
mod.__file__ = source.abspath
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2009-11-09 02:35:49 +01:00
|
|
|
exec file(source.abspath, 'r') in mod.__dict__
|
2008-07-31 17:01:38 +02:00
|
|
|
|
|
|
|
return mod
|
|
|
|
|
2009-09-23 00:24:16 +02:00
|
|
|
import m5.SimObject
|
|
|
|
import m5.params
|
2010-09-09 23:15:41 +02:00
|
|
|
from m5.util import code_formatter
|
2009-09-23 00:24:16 +02:00
|
|
|
|
|
|
|
m5.SimObject.clear()
|
|
|
|
m5.params.clear()
|
|
|
|
|
2008-07-31 17:01:38 +02:00
|
|
|
# install the python importer so we can grab stuff from the source
|
|
|
|
# tree itself. We can't have SimObjects added after this point or
|
|
|
|
# else we won't know about them for the rest of the stuff.
|
2009-05-05 01:58:24 +02:00
|
|
|
importer = DictImporter(PySource.modules)
|
2008-07-31 17:01:38 +02:00
|
|
|
sys.meta_path[0:0] = [ importer ]
|
|
|
|
|
|
|
|
# import all sim objects so we can populate the all_objects list
|
|
|
|
# make sure that we're working with a list, then let's sort it
|
2009-05-05 01:58:24 +02:00
|
|
|
for modname in SimObject.modnames:
|
|
|
|
exec('from m5.objects import %s' % modname)
|
2008-07-31 17:01:38 +02:00
|
|
|
|
|
|
|
# we need to unload all of the currently imported modules so that they
|
|
|
|
# will be re-imported the next time the sconscript is run
|
|
|
|
importer.unload()
|
|
|
|
sys.meta_path.remove(importer)
|
|
|
|
|
|
|
|
sim_objects = m5.SimObject.allClasses
|
|
|
|
all_enums = m5.params.allEnums
|
|
|
|
|
|
|
|
all_params = {}
|
2009-05-05 01:58:24 +02:00
|
|
|
for name,obj in sorted(sim_objects.iteritems()):
|
2008-07-31 17:01:38 +02:00
|
|
|
for param in obj._params.local.values():
|
2009-09-23 00:24:16 +02:00
|
|
|
# load the ptype attribute now because it depends on the
|
|
|
|
# current version of SimObject.allClasses, but when scons
|
|
|
|
# actually uses the value, all versions of
|
|
|
|
# SimObject.allClasses will have been loaded
|
|
|
|
param.ptype
|
|
|
|
|
2008-07-31 17:01:38 +02:00
|
|
|
if not hasattr(param, 'swig_decl'):
|
|
|
|
continue
|
|
|
|
pname = param.ptype_str
|
|
|
|
if pname not in all_params:
|
|
|
|
all_params[pname] = param
|
2007-07-24 06:51:38 +02:00
|
|
|
|
|
|
|
########################################################################
|
|
|
|
#
|
|
|
|
# calculate extra dependencies
|
|
|
|
#
|
|
|
|
module_depends = ["m5", "m5.SimObject", "m5.params"]
|
2010-09-09 23:26:29 +02:00
|
|
|
depends = [ PySource.modules[dep].snode for dep in module_depends ]
|
2007-04-13 06:20:04 +02:00
|
|
|
|
2007-07-24 06:51:38 +02:00
|
|
|
########################################################################
|
|
|
|
#
|
|
|
|
# Commands for the basic automatically generated python files
|
|
|
|
#
|
|
|
|
|
2008-07-31 17:01:38 +02:00
|
|
|
# Generate Python file containing a dict specifying the current
|
2009-09-23 00:24:16 +02:00
|
|
|
# buildEnv flags.
|
2008-07-31 17:01:38 +02:00
|
|
|
def makeDefinesPyFile(target, source, env):
|
2011-03-11 20:27:36 +01:00
|
|
|
build_env = source[0].get_contents()
|
2009-09-23 00:24:16 +02:00
|
|
|
|
2010-09-09 23:15:41 +02:00
|
|
|
code = code_formatter()
|
2009-09-23 00:24:16 +02:00
|
|
|
code("""
|
|
|
|
import m5.internal
|
|
|
|
import m5.util
|
|
|
|
|
|
|
|
buildEnv = m5.util.SmartDict($build_env)
|
|
|
|
|
|
|
|
compileDate = m5.internal.core.compileDate
|
2009-09-26 21:51:37 +02:00
|
|
|
_globals = globals()
|
|
|
|
for key,val in m5.internal.core.__dict__.iteritems():
|
|
|
|
if key.startswith('flag_'):
|
|
|
|
flag = key[5:]
|
|
|
|
_globals[flag] = val
|
|
|
|
del _globals
|
2009-09-23 00:24:16 +02:00
|
|
|
""")
|
2010-09-09 23:15:41 +02:00
|
|
|
code.write(target[0].abspath)
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2011-03-11 20:27:36 +01:00
|
|
|
defines_info = Value(build_env)
|
2009-01-19 18:59:13 +01:00
|
|
|
# Generate a file with all of the compile options in it
|
2010-11-15 21:04:04 +01:00
|
|
|
env.Command('python/m5/defines.py', defines_info,
|
2011-01-08 06:50:13 +01:00
|
|
|
MakeAction(makeDefinesPyFile, Transform("DEFINES", 0)))
|
2009-01-19 18:59:13 +01:00
|
|
|
PySource('m5', 'python/m5/defines.py')
|
|
|
|
|
2008-07-31 17:01:38 +02:00
|
|
|
# Generate python file containing info about the M5 source code
|
|
|
|
def makeInfoPyFile(target, source, env):
|
2010-09-09 23:15:41 +02:00
|
|
|
code = code_formatter()
|
2008-07-31 17:01:38 +02:00
|
|
|
for src in source:
|
|
|
|
data = ''.join(file(src.srcnode().abspath, 'r').xreadlines())
|
2010-09-09 23:15:41 +02:00
|
|
|
code('$src = ${{repr(data)}}')
|
|
|
|
code.write(str(target[0]))
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2009-01-19 18:59:13 +01:00
|
|
|
# Generate a file that wraps the basic top level files
|
|
|
|
env.Command('python/m5/info.py',
|
2011-02-15 06:36:37 +01:00
|
|
|
[ '#/AUTHORS', '#/LICENSE', '#/README', ],
|
2011-01-08 06:50:13 +01:00
|
|
|
MakeAction(makeInfoPyFile, Transform("INFO")))
|
2009-01-19 18:59:13 +01:00
|
|
|
PySource('m5', 'python/m5/info.py')
|
|
|
|
|
2007-07-24 06:51:38 +02:00
|
|
|
########################################################################
|
|
|
|
#
|
|
|
|
# Create all of the SimObject param headers and enum headers
|
|
|
|
#
|
|
|
|
|
2008-07-31 17:01:38 +02:00
|
|
|
def createSimObjectParam(target, source, env):
|
|
|
|
assert len(target) == 1 and len(source) == 1
|
|
|
|
|
|
|
|
name = str(source[0].get_contents())
|
|
|
|
obj = sim_objects[name]
|
|
|
|
|
2010-09-09 23:15:41 +02:00
|
|
|
code = code_formatter()
|
|
|
|
obj.cxx_decl(code)
|
|
|
|
code.write(target[0].abspath)
|
2008-07-31 17:01:38 +02:00
|
|
|
|
|
|
|
def createSwigParam(target, source, env):
|
|
|
|
assert len(target) == 1 and len(source) == 1
|
|
|
|
|
|
|
|
name = str(source[0].get_contents())
|
|
|
|
param = all_params[name]
|
|
|
|
|
2010-09-09 23:15:41 +02:00
|
|
|
code = code_formatter()
|
2010-09-13 00:41:34 +02:00
|
|
|
code('%module(package="m5.internal") $0_${name}', param.file_ext)
|
2010-09-09 23:15:41 +02:00
|
|
|
param.swig_decl(code)
|
|
|
|
code.write(target[0].abspath)
|
2008-07-31 17:01:38 +02:00
|
|
|
|
|
|
|
def createEnumStrings(target, source, env):
|
|
|
|
assert len(target) == 1 and len(source) == 1
|
|
|
|
|
|
|
|
name = str(source[0].get_contents())
|
|
|
|
obj = all_enums[name]
|
|
|
|
|
2010-09-09 23:15:41 +02:00
|
|
|
code = code_formatter()
|
|
|
|
obj.cxx_def(code)
|
|
|
|
code.write(target[0].abspath)
|
2008-07-31 17:01:38 +02:00
|
|
|
|
|
|
|
def createEnumParam(target, source, env):
|
|
|
|
assert len(target) == 1 and len(source) == 1
|
|
|
|
|
|
|
|
name = str(source[0].get_contents())
|
|
|
|
obj = all_enums[name]
|
|
|
|
|
2010-09-09 23:15:41 +02:00
|
|
|
code = code_formatter()
|
|
|
|
obj.cxx_decl(code)
|
|
|
|
code.write(target[0].abspath)
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2010-09-09 23:26:29 +02:00
|
|
|
def createEnumSwig(target, source, env):
|
|
|
|
assert len(target) == 1 and len(source) == 1
|
|
|
|
|
|
|
|
name = str(source[0].get_contents())
|
|
|
|
obj = all_enums[name]
|
|
|
|
|
|
|
|
code = code_formatter()
|
|
|
|
code('''\
|
2010-09-13 00:41:34 +02:00
|
|
|
%module(package="m5.internal") enum_$name
|
2010-09-09 23:26:29 +02:00
|
|
|
|
|
|
|
%{
|
|
|
|
#include "enums/$name.hh"
|
|
|
|
%}
|
|
|
|
|
|
|
|
%include "enums/$name.hh"
|
|
|
|
''')
|
|
|
|
code.write(target[0].abspath)
|
|
|
|
|
2007-07-24 06:51:38 +02:00
|
|
|
# Generate all of the SimObject param struct header files
|
|
|
|
params_hh_files = []
|
2009-05-05 01:58:24 +02:00
|
|
|
for name,simobj in sorted(sim_objects.iteritems()):
|
|
|
|
py_source = PySource.modules[simobj.__module__]
|
|
|
|
extra_deps = [ py_source.tnode ]
|
2007-07-24 06:51:38 +02:00
|
|
|
|
|
|
|
hh_file = File('params/%s.hh' % name)
|
|
|
|
params_hh_files.append(hh_file)
|
2010-11-15 21:04:04 +01:00
|
|
|
env.Command(hh_file, Value(name),
|
2011-01-08 06:50:13 +01:00
|
|
|
MakeAction(createSimObjectParam, Transform("SO PARAM")))
|
2007-07-24 06:51:38 +02:00
|
|
|
env.Depends(hh_file, depends + extra_deps)
|
|
|
|
|
|
|
|
# Generate any parameter header files needed
|
2008-06-14 21:10:50 +02:00
|
|
|
params_i_files = []
|
2008-07-31 17:01:38 +02:00
|
|
|
for name,param in all_params.iteritems():
|
2010-09-13 00:41:34 +02:00
|
|
|
i_file = File('python/m5/internal/%s_%s.i' % (param.file_ext, name))
|
2008-06-14 21:10:50 +02:00
|
|
|
params_i_files.append(i_file)
|
2010-11-15 21:04:04 +01:00
|
|
|
env.Command(i_file, Value(name),
|
2011-01-08 06:50:13 +01:00
|
|
|
MakeAction(createSwigParam, Transform("SW PARAM")))
|
2007-07-24 06:51:38 +02:00
|
|
|
env.Depends(i_file, depends)
|
2010-09-13 00:41:34 +02:00
|
|
|
SwigSource('m5.internal', i_file)
|
2007-07-24 06:51:38 +02:00
|
|
|
|
|
|
|
# Generate all enum header files
|
2009-05-05 01:58:24 +02:00
|
|
|
for name,enum in sorted(all_enums.iteritems()):
|
|
|
|
py_source = PySource.modules[enum.__module__]
|
|
|
|
extra_deps = [ py_source.tnode ]
|
2007-07-24 06:51:38 +02:00
|
|
|
|
|
|
|
cc_file = File('enums/%s.cc' % name)
|
2010-11-15 21:04:04 +01:00
|
|
|
env.Command(cc_file, Value(name),
|
2011-01-08 06:50:13 +01:00
|
|
|
MakeAction(createEnumStrings, Transform("ENUM STR")))
|
2007-07-24 06:51:38 +02:00
|
|
|
env.Depends(cc_file, depends + extra_deps)
|
|
|
|
Source(cc_file)
|
|
|
|
|
|
|
|
hh_file = File('enums/%s.hh' % name)
|
2010-11-15 21:04:04 +01:00
|
|
|
env.Command(hh_file, Value(name),
|
2011-01-08 06:50:13 +01:00
|
|
|
MakeAction(createEnumParam, Transform("EN PARAM")))
|
2007-07-24 06:51:38 +02:00
|
|
|
env.Depends(hh_file, depends + extra_deps)
|
|
|
|
|
2010-09-13 00:41:34 +02:00
|
|
|
i_file = File('python/m5/internal/enum_%s.i' % name)
|
2010-11-15 21:04:04 +01:00
|
|
|
env.Command(i_file, Value(name),
|
2011-01-08 06:50:13 +01:00
|
|
|
MakeAction(createEnumSwig, Transform("ENUMSWIG")))
|
2010-09-09 23:26:29 +02:00
|
|
|
env.Depends(i_file, depends + extra_deps)
|
2010-09-13 00:41:34 +02:00
|
|
|
SwigSource('m5.internal', i_file)
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2010-09-09 23:26:29 +02:00
|
|
|
def buildParam(target, source, env):
|
|
|
|
name = source[0].get_contents()
|
|
|
|
obj = sim_objects[name]
|
|
|
|
class_path = obj.cxx_class.split('::')
|
|
|
|
classname = class_path[-1]
|
|
|
|
namespaces = class_path[:-1]
|
|
|
|
params = obj._params.local.values()
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2010-09-09 23:15:41 +02:00
|
|
|
code = code_formatter()
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2010-09-13 00:41:34 +02:00
|
|
|
code('%module(package="m5.internal") param_$name')
|
2010-09-09 23:26:29 +02:00
|
|
|
code()
|
2010-09-09 23:15:41 +02:00
|
|
|
code('%{')
|
2010-09-09 23:26:29 +02:00
|
|
|
code('#include "params/$obj.hh"')
|
|
|
|
for param in params:
|
|
|
|
param.cxx_predecls(code)
|
2010-09-09 23:15:41 +02:00
|
|
|
code('%}')
|
2010-09-09 23:26:29 +02:00
|
|
|
code()
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2010-09-09 23:26:29 +02:00
|
|
|
for param in params:
|
|
|
|
param.swig_predecls(code)
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2010-09-09 23:26:29 +02:00
|
|
|
code()
|
|
|
|
if obj._base:
|
2010-09-13 00:41:34 +02:00
|
|
|
code('%import "python/m5/internal/param_${{obj._base}}.i"')
|
2010-09-09 23:26:29 +02:00
|
|
|
code()
|
|
|
|
obj.swig_objdecls(code)
|
|
|
|
code()
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2010-09-09 23:26:29 +02:00
|
|
|
code('%include "params/$obj.hh"')
|
2010-09-09 23:15:41 +02:00
|
|
|
|
|
|
|
code.write(target[0].abspath)
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2010-09-09 23:26:29 +02:00
|
|
|
for name in sim_objects.iterkeys():
|
2010-09-13 00:41:34 +02:00
|
|
|
params_file = File('python/m5/internal/param_%s.i' % name)
|
2010-11-15 21:04:04 +01:00
|
|
|
env.Command(params_file, Value(name),
|
2011-01-08 06:50:13 +01:00
|
|
|
MakeAction(buildParam, Transform("BLDPARAM")))
|
2010-09-09 23:26:29 +02:00
|
|
|
env.Depends(params_file, depends)
|
2010-09-13 00:41:34 +02:00
|
|
|
SwigSource('m5.internal', params_file)
|
2007-07-24 06:51:38 +02:00
|
|
|
|
2010-09-09 23:15:42 +02:00
|
|
|
# Generate the main swig init file
|
|
|
|
def makeEmbeddedSwigInit(target, source, env):
|
|
|
|
code = code_formatter()
|
|
|
|
module = source[0].get_contents()
|
|
|
|
code('''\
|
|
|
|
#include "sim/init.hh"
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
void init_${module}();
|
|
|
|
}
|
|
|
|
|
|
|
|
EmbeddedSwig embed_swig_${module}(init_${module});
|
|
|
|
''')
|
|
|
|
code.write(str(target[0]))
|
|
|
|
|
2007-07-24 06:51:38 +02:00
|
|
|
# Build all swig modules
|
2009-05-05 01:58:24 +02:00
|
|
|
for swig in SwigSource.all:
|
|
|
|
env.Command([swig.cc_source.tnode, swig.py_source.tnode], swig.tnode,
|
2010-11-15 21:04:04 +01:00
|
|
|
MakeAction('$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} '
|
2011-01-08 06:50:13 +01:00
|
|
|
'-o ${TARGETS[0]} $SOURCES', Transform("SWIG")))
|
2010-09-09 23:15:42 +02:00
|
|
|
init_file = 'python/swig/init_%s.cc' % swig.module
|
2010-11-15 21:04:04 +01:00
|
|
|
env.Command(init_file, Value(swig.module),
|
2011-01-08 06:50:13 +01:00
|
|
|
MakeAction(makeEmbeddedSwigInit, Transform("EMBED SW")))
|
2010-09-09 23:15:42 +02:00
|
|
|
Source(init_file)
|
2007-04-13 06:20:04 +02:00
|
|
|
|
2011-04-15 19:44:32 +02:00
|
|
|
#
|
|
|
|
# Handle debug flags
|
|
|
|
#
|
|
|
|
def makeDebugFlagCC(target, source, env):
|
|
|
|
assert(len(target) == 1 and len(source) == 1)
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2011-04-15 19:44:32 +02:00
|
|
|
val = eval(source[0].get_contents())
|
|
|
|
name, compound, desc = val
|
|
|
|
compound = list(sorted(compound))
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2010-09-09 23:15:41 +02:00
|
|
|
code = code_formatter()
|
2008-07-31 17:01:38 +02:00
|
|
|
|
|
|
|
# file header
|
2010-09-09 23:15:41 +02:00
|
|
|
code('''
|
2008-07-31 17:01:38 +02:00
|
|
|
/*
|
|
|
|
* DO NOT EDIT THIS FILE! Automatically generated
|
|
|
|
*/
|
|
|
|
|
2011-04-15 19:44:32 +02:00
|
|
|
#include "base/debug.hh"
|
2010-09-09 23:15:41 +02:00
|
|
|
''')
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2011-04-15 19:44:32 +02:00
|
|
|
for flag in compound:
|
|
|
|
code('#include "debug/$flag.hh"')
|
|
|
|
code()
|
|
|
|
code('namespace Debug {')
|
2010-09-09 23:15:41 +02:00
|
|
|
code()
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2011-04-15 19:44:32 +02:00
|
|
|
if not compound:
|
|
|
|
code('SimpleFlag $name("$name", "$desc");')
|
|
|
|
else:
|
|
|
|
code('CompoundFlag $name("$name", "$desc",')
|
2010-09-09 23:15:41 +02:00
|
|
|
code.indent()
|
2011-04-15 19:44:32 +02:00
|
|
|
last = len(compound) - 1
|
|
|
|
for i,flag in enumerate(compound):
|
|
|
|
if i != last:
|
|
|
|
code('$flag,')
|
|
|
|
else:
|
|
|
|
code('$flag);')
|
2010-09-09 23:15:41 +02:00
|
|
|
code.dedent()
|
2011-04-15 19:44:32 +02:00
|
|
|
|
|
|
|
code()
|
|
|
|
code('} // namespace Debug')
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2010-09-09 23:15:41 +02:00
|
|
|
code.write(str(target[0]))
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2011-04-15 19:44:32 +02:00
|
|
|
def makeDebugFlagHH(target, source, env):
|
|
|
|
assert(len(target) == 1 and len(source) == 1)
|
|
|
|
|
|
|
|
val = eval(source[0].get_contents())
|
|
|
|
name, compound, desc = val
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2010-09-09 23:15:41 +02:00
|
|
|
code = code_formatter()
|
2008-07-31 17:01:38 +02:00
|
|
|
|
|
|
|
# file header boilerplate
|
2010-09-09 23:15:41 +02:00
|
|
|
code('''\
|
2008-07-31 17:01:38 +02:00
|
|
|
/*
|
|
|
|
* DO NOT EDIT THIS FILE!
|
|
|
|
*
|
2011-04-15 19:44:32 +02:00
|
|
|
* Automatically generated by SCons
|
2008-07-31 17:01:38 +02:00
|
|
|
*/
|
|
|
|
|
2011-04-15 19:44:32 +02:00
|
|
|
#ifndef __DEBUG_${name}_HH__
|
|
|
|
#define __DEBUG_${name}_HH__
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2011-04-15 19:44:32 +02:00
|
|
|
namespace Debug {
|
|
|
|
''')
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2011-04-15 19:44:32 +02:00
|
|
|
if compound:
|
|
|
|
code('class CompoundFlag;')
|
|
|
|
code('class SimpleFlag;')
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2011-04-15 19:44:32 +02:00
|
|
|
if compound:
|
|
|
|
code('extern CompoundFlag $name;')
|
|
|
|
for flag in compound:
|
|
|
|
code('extern SimpleFlag $flag;')
|
|
|
|
else:
|
|
|
|
code('extern SimpleFlag $name;')
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2010-09-09 23:15:41 +02:00
|
|
|
code('''
|
2011-04-15 19:44:32 +02:00
|
|
|
}
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2011-04-15 19:44:32 +02:00
|
|
|
#endif // __DEBUG_${name}_HH__
|
2010-09-09 23:15:41 +02:00
|
|
|
''')
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2010-09-09 23:15:41 +02:00
|
|
|
code.write(str(target[0]))
|
2008-07-31 17:01:38 +02:00
|
|
|
|
2011-04-15 19:44:32 +02:00
|
|
|
for name,flag in sorted(debug_flags.iteritems()):
|
|
|
|
n, compound, desc = flag
|
|
|
|
assert n == name
|
2007-10-31 06:21:54 +01:00
|
|
|
|
2011-04-15 19:44:32 +02:00
|
|
|
env.Command('debug/%s.hh' % name, Value(flag),
|
|
|
|
MakeAction(makeDebugFlagHH, Transform("TRACING", 0)))
|
|
|
|
env.Command('debug/%s.cc' % name, Value(flag),
|
|
|
|
MakeAction(makeDebugFlagCC, Transform("TRACING", 0)))
|
|
|
|
Source('debug/%s.cc' % name)
|
2007-10-31 06:21:54 +01:00
|
|
|
|
2010-09-09 23:15:42 +02:00
|
|
|
# Embed python files. All .py files that have been indicated by a
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
# PySource() call in a SConscript need to be embedded into the M5
|
|
|
|
# library. To do that, we compile the file to byte code, marshal the
|
2010-09-09 23:15:42 +02:00
|
|
|
# byte code, compress it, and then generate a c++ file that
|
|
|
|
# inserts the result into an array.
|
|
|
|
def embedPyFile(target, source, env):
|
|
|
|
def c_str(string):
|
|
|
|
if string is None:
|
|
|
|
return "0"
|
|
|
|
return '"%s"' % string
|
|
|
|
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
'''Action function to compile a .py into a code object, marshal
|
|
|
|
it, compress it, and stick it into an asm file so the code appears
|
|
|
|
as just bytes with a label in the data section'''
|
|
|
|
|
|
|
|
src = file(str(source[0]), 'r').read()
|
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
pysource = PySource.tnodes[source[0]]
|
2009-11-09 02:35:49 +01:00
|
|
|
compiled = compile(src, pysource.abspath, 'exec')
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
marshalled = marshal.dumps(compiled)
|
|
|
|
compressed = zlib.compress(marshalled)
|
|
|
|
data = compressed
|
2010-09-09 23:15:42 +02:00
|
|
|
sym = pysource.symname
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
|
2010-09-09 23:15:41 +02:00
|
|
|
code = code_formatter()
|
|
|
|
code('''\
|
2010-09-09 23:15:42 +02:00
|
|
|
#include "sim/init.hh"
|
|
|
|
|
|
|
|
namespace {
|
2010-09-09 23:15:41 +02:00
|
|
|
|
2010-09-09 23:15:42 +02:00
|
|
|
const char data_${sym}[] = {
|
|
|
|
''')
|
|
|
|
code.indent()
|
|
|
|
step = 16
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
for i in xrange(0, len(data), step):
|
|
|
|
x = array.array('B', data[i:i+step])
|
2010-09-09 23:15:42 +02:00
|
|
|
code(''.join('%d,' % d for d in x))
|
|
|
|
code.dedent()
|
|
|
|
|
|
|
|
code('''};
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
|
2010-09-09 23:15:42 +02:00
|
|
|
EmbeddedPython embedded_${sym}(
|
|
|
|
${{c_str(pysource.arcname)}},
|
|
|
|
${{c_str(pysource.abspath)}},
|
|
|
|
${{c_str(pysource.modpath)}},
|
|
|
|
data_${sym},
|
|
|
|
${{len(data)}},
|
|
|
|
${{len(marshalled)}});
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
|
2011-01-03 23:35:43 +01:00
|
|
|
} // anonymous namespace
|
2010-09-09 23:15:41 +02:00
|
|
|
''')
|
|
|
|
code.write(str(target[0]))
|
2009-05-05 01:58:24 +02:00
|
|
|
|
2010-09-09 23:15:42 +02:00
|
|
|
for source in PySource.all:
|
2010-11-15 21:04:04 +01:00
|
|
|
env.Command(source.cpp, source.tnode,
|
2011-01-08 06:50:13 +01:00
|
|
|
MakeAction(embedPyFile, Transform("EMBED PY")))
|
2010-09-09 23:15:42 +02:00
|
|
|
Source(source.cpp)
|
2007-04-13 06:20:04 +02:00
|
|
|
|
|
|
|
########################################################################
|
|
|
|
#
|
|
|
|
# Define binaries. Each different build type (debug, opt, etc.) gets
|
|
|
|
# a slightly different build environment.
|
|
|
|
#
|
|
|
|
|
|
|
|
# List of constructed environments to pass back to SConstruct
|
|
|
|
envList = []
|
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
date_source = Source('base/date.cc', skip_lib=True)
|
2004-07-03 06:16:38 +02:00
|
|
|
|
2006-05-30 19:11:34 +02:00
|
|
|
# Function to create a new build environment as clone of current
|
|
|
|
# environment 'env' with modified object suffix and optional stripped
|
|
|
|
# binary. Additional keyword arguments are appended to corresponding
|
|
|
|
# build environment vars.
|
|
|
|
def makeEnv(label, objsfx, strip = False, **kwargs):
|
2008-10-09 13:58:23 +02:00
|
|
|
# SCons doesn't know to append a library suffix when there is a '.' in the
|
|
|
|
# name. Use '_' instead.
|
|
|
|
libname = 'm5_' + label
|
|
|
|
exename = 'm5.' + label
|
|
|
|
|
2009-02-10 05:10:14 +01:00
|
|
|
new_env = env.Clone(OBJSUFFIX=objsfx, SHOBJSUFFIX=objsfx + 's')
|
2008-10-09 13:58:23 +02:00
|
|
|
new_env.Label = label
|
|
|
|
new_env.Append(**kwargs)
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
|
2009-02-10 05:10:14 +01:00
|
|
|
swig_env = new_env.Clone()
|
2009-05-05 01:58:24 +02:00
|
|
|
swig_env.Append(CCFLAGS='-Werror')
|
2008-09-26 17:18:54 +02:00
|
|
|
if env['GCC']:
|
|
|
|
swig_env.Append(CCFLAGS='-Wno-uninitialized')
|
|
|
|
swig_env.Append(CCFLAGS='-Wno-sign-compare')
|
|
|
|
swig_env.Append(CCFLAGS='-Wno-parentheses')
|
2008-10-09 13:58:23 +02:00
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
werror_env = new_env.Clone()
|
|
|
|
werror_env.Append(CCFLAGS='-Werror')
|
|
|
|
|
|
|
|
def make_obj(source, static, extra_deps = None):
|
|
|
|
'''This function adds the specified source to the correct
|
|
|
|
build environment, and returns the corresponding SCons Object
|
|
|
|
nodes'''
|
|
|
|
|
|
|
|
if source.swig:
|
|
|
|
env = swig_env
|
|
|
|
elif source.Werror:
|
|
|
|
env = werror_env
|
|
|
|
else:
|
|
|
|
env = new_env
|
|
|
|
|
|
|
|
if static:
|
|
|
|
obj = env.StaticObject(source.tnode)
|
|
|
|
else:
|
|
|
|
obj = env.SharedObject(source.tnode)
|
|
|
|
|
|
|
|
if extra_deps:
|
|
|
|
env.Depends(obj, extra_deps)
|
|
|
|
|
|
|
|
return obj
|
|
|
|
|
2011-04-15 19:44:44 +02:00
|
|
|
sources = Source.get(main=False, skip_lib=False)
|
|
|
|
static_objs = [ make_obj(s, True) for s in sources ]
|
|
|
|
shared_objs = [ make_obj(s, False) for s in sources ]
|
2009-05-05 01:58:24 +02:00
|
|
|
|
|
|
|
static_date = make_obj(date_source, static=True, extra_deps=static_objs)
|
|
|
|
static_objs.append(static_date)
|
|
|
|
|
|
|
|
shared_date = make_obj(date_source, static=False, extra_deps=shared_objs)
|
2009-06-13 06:19:16 +02:00
|
|
|
shared_objs.append(shared_date)
|
2008-09-22 17:25:58 +02:00
|
|
|
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
# First make a library of everything but main() so other programs can
|
|
|
|
# link against m5.
|
2009-01-19 18:03:41 +01:00
|
|
|
static_lib = new_env.StaticLibrary(libname, static_objs)
|
|
|
|
shared_lib = new_env.SharedLibrary(libname, shared_objs)
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
|
2008-10-02 20:27:01 +02:00
|
|
|
for target, sources in unit_tests:
|
2009-05-05 01:58:24 +02:00
|
|
|
objs = [ make_obj(s, static=True) for s in sources ]
|
2009-02-10 05:10:12 +01:00
|
|
|
new_env.Program("unittest/%s.%s" % (target, label), objs + static_objs)
|
2008-10-02 20:27:01 +02:00
|
|
|
|
2008-10-09 13:58:23 +02:00
|
|
|
# Now link a stub with main() and the static library.
|
2011-04-15 19:44:44 +02:00
|
|
|
main_objs = [ make_obj(s, True) for s in Source.get(main=True) ]
|
|
|
|
|
2009-05-05 01:58:24 +02:00
|
|
|
progname = exename
|
|
|
|
if strip:
|
|
|
|
progname += '.unstripped'
|
|
|
|
|
2011-04-15 19:44:44 +02:00
|
|
|
targets = new_env.Program(progname, main_objs + static_objs)
|
2009-05-05 01:58:24 +02:00
|
|
|
|
2006-05-30 19:11:34 +02:00
|
|
|
if strip:
|
2007-02-01 00:32:27 +01:00
|
|
|
if sys.platform == 'sunos5':
|
2007-06-20 17:12:10 +02:00
|
|
|
cmd = 'cp $SOURCE $TARGET; strip $TARGET'
|
2007-02-01 00:32:27 +01:00
|
|
|
else:
|
2007-06-20 17:12:10 +02:00
|
|
|
cmd = 'strip $SOURCE -o $TARGET'
|
2010-11-15 21:04:04 +01:00
|
|
|
targets = new_env.Command(exename, progname,
|
2011-01-08 06:50:13 +01:00
|
|
|
MakeAction(cmd, Transform("STRIP")))
|
libm5: Create a libm5 static library for embedding m5.
This should allow m5 to be more easily embedded into other simulators.
The m5 binary adds a simple main function which then calls into the m5
libarary to start the simulation. In order to make this work
correctly, it was necessary embed python code directly into the
library instead of the zipfile hack. This is because you can't just
append the zipfile to the end of a library the way you can a binary.
As a result, Python files that are part of the m5 simulator are now
compile, marshalled, compressed, and then inserted into the library's
data section with a certain symbol name. Additionally, a new Importer
was needed to allow python to get at the embedded python code.
Small additional changes include:
- Get rid of the PYTHONHOME stuff since I don't think anyone ever used
it, and it just confuses things. Easy enough to add back if I'm wrong.
- Create a few new functions that are key to initializing and running
the simulator: initSignals, initM5Python, m5Main.
The original code for creating libm5 was inspired by a patch Michael
Adler, though the code here was done by me.
2008-08-04 03:19:54 +02:00
|
|
|
|
2008-10-09 13:58:23 +02:00
|
|
|
new_env.M5Binary = targets[0]
|
|
|
|
envList.append(new_env)
|
2006-05-30 19:11:34 +02:00
|
|
|
|
2004-07-03 06:16:38 +02:00
|
|
|
# Debug binary
|
2007-01-27 00:48:51 +01:00
|
|
|
ccflags = {}
|
|
|
|
if env['GCC']:
|
|
|
|
if sys.platform == 'sunos5':
|
|
|
|
ccflags['debug'] = '-gstabs+'
|
|
|
|
else:
|
|
|
|
ccflags['debug'] = '-ggdb3'
|
|
|
|
ccflags['opt'] = '-g -O3'
|
|
|
|
ccflags['fast'] = '-O3'
|
|
|
|
ccflags['prof'] = '-O3 -g -pg'
|
|
|
|
elif env['SUNCC']:
|
|
|
|
ccflags['debug'] = '-g0'
|
|
|
|
ccflags['opt'] = '-g -O'
|
|
|
|
ccflags['fast'] = '-fast'
|
|
|
|
ccflags['prof'] = '-fast -g -pg'
|
2007-01-27 21:38:04 +01:00
|
|
|
elif env['ICC']:
|
|
|
|
ccflags['debug'] = '-g -O0'
|
|
|
|
ccflags['opt'] = '-g -O'
|
2007-01-27 21:47:18 +01:00
|
|
|
ccflags['fast'] = '-fast'
|
2007-01-27 21:38:04 +01:00
|
|
|
ccflags['prof'] = '-fast -g -pg'
|
2006-11-08 21:05:54 +01:00
|
|
|
else:
|
2007-01-27 00:48:51 +01:00
|
|
|
print 'Unknown compiler, please fix compiler options'
|
2007-07-24 06:51:38 +02:00
|
|
|
Exit(1)
|
2006-11-08 21:05:54 +01:00
|
|
|
|
2006-05-30 19:11:34 +02:00
|
|
|
makeEnv('debug', '.do',
|
2007-01-27 00:48:51 +01:00
|
|
|
CCFLAGS = Split(ccflags['debug']),
|
2006-11-12 05:46:56 +01:00
|
|
|
CPPDEFINES = ['DEBUG', 'TRACING_ON=1'])
|
2004-07-03 06:16:38 +02:00
|
|
|
|
|
|
|
# Optimized binary
|
2006-05-30 19:11:34 +02:00
|
|
|
makeEnv('opt', '.o',
|
2007-01-27 00:48:51 +01:00
|
|
|
CCFLAGS = Split(ccflags['opt']),
|
2006-11-12 05:46:56 +01:00
|
|
|
CPPDEFINES = ['TRACING_ON=1'])
|
2004-07-03 06:16:38 +02:00
|
|
|
|
|
|
|
# "Fast" binary
|
2006-05-30 19:11:34 +02:00
|
|
|
makeEnv('fast', '.fo', strip = True,
|
2007-01-27 00:48:51 +01:00
|
|
|
CCFLAGS = Split(ccflags['fast']),
|
2006-11-12 05:46:56 +01:00
|
|
|
CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'])
|
2004-07-03 06:16:38 +02:00
|
|
|
|
|
|
|
# Profiled binary
|
2006-05-30 19:11:34 +02:00
|
|
|
makeEnv('prof', '.po',
|
2007-01-27 00:48:51 +01:00
|
|
|
CCFLAGS = Split(ccflags['prof']),
|
2006-11-27 08:16:24 +01:00
|
|
|
CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
|
2006-05-30 19:11:34 +02:00
|
|
|
LINKFLAGS = '-pg')
|
2005-09-05 22:31:27 +02:00
|
|
|
|
|
|
|
Return('envList')
|