2006-07-11 05:00:13 +02:00
|
|
|
# Copyright (c) 2005 The Regents of The University of Michigan
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# Authors: Nathan Binkert
|
|
|
|
|
2007-08-02 20:59:02 +02:00
|
|
|
import code
|
|
|
|
import datetime
|
|
|
|
import os
|
|
|
|
import socket
|
|
|
|
import sys
|
|
|
|
|
2008-06-15 05:19:49 +02:00
|
|
|
from util import attrdict
|
2008-06-15 06:15:59 +02:00
|
|
|
import config
|
2008-06-15 06:15:58 +02:00
|
|
|
from options import OptionParser
|
2006-07-11 05:00:13 +02:00
|
|
|
|
|
|
|
__all__ = [ 'options', 'arguments', 'main' ]
|
|
|
|
|
2007-02-13 09:16:41 +01:00
|
|
|
def print_list(items, indent=4):
|
|
|
|
line = ' ' * indent
|
|
|
|
for i,item in enumerate(items):
|
|
|
|
if len(line) + len(item) > 76:
|
|
|
|
print line
|
|
|
|
line = ' ' * indent
|
|
|
|
|
|
|
|
if i < len(items) - 1:
|
|
|
|
line += '%s, ' % item
|
|
|
|
else:
|
|
|
|
line += item
|
|
|
|
print line
|
|
|
|
|
2008-06-15 06:15:58 +02:00
|
|
|
usage="%prog [m5 options] script.py [script options]"
|
|
|
|
version="%prog 2.0"
|
|
|
|
brief_copyright='''
|
|
|
|
Copyright (c) 2001-2008
|
|
|
|
The Regents of The University of Michigan
|
|
|
|
All Rights Reserved
|
|
|
|
'''
|
2006-07-11 05:00:13 +02:00
|
|
|
|
2008-06-15 06:15:58 +02:00
|
|
|
options = OptionParser(usage=usage, version=version,
|
|
|
|
description=brief_copyright)
|
|
|
|
add_option = options.add_option
|
|
|
|
set_group = options.set_group
|
|
|
|
usage = options.usage
|
2006-07-11 05:00:13 +02:00
|
|
|
|
|
|
|
# Help options
|
|
|
|
add_option('-A', "--authors", action="store_true", default=False,
|
|
|
|
help="Show author information")
|
2007-08-02 20:59:02 +02:00
|
|
|
add_option('-B', "--build-info", action="store_true", default=False,
|
|
|
|
help="Show build information")
|
2006-07-11 05:00:13 +02:00
|
|
|
add_option('-C', "--copyright", action="store_true", default=False,
|
|
|
|
help="Show full copyright information")
|
|
|
|
add_option('-R', "--readme", action="store_true", default=False,
|
|
|
|
help="Show the readme")
|
|
|
|
add_option('-N', "--release-notes", action="store_true", default=False,
|
|
|
|
help="Show the release notes")
|
|
|
|
|
|
|
|
# Options for configuring the base simulator
|
|
|
|
add_option('-d', "--outdir", metavar="DIR", default=".",
|
|
|
|
help="Set the output directory to DIR [Default: %default]")
|
2008-08-04 06:40:31 +02:00
|
|
|
add_option('-r', "--redirect-stdout", action="store_true", default=False,
|
|
|
|
help="Redirect stdout (& stderr, without -e) to file")
|
|
|
|
add_option('-e', "--redirect-stderr", action="store_true", default=False,
|
|
|
|
help="Redirect stderr to file")
|
|
|
|
add_option("--stdout-file", metavar="FILE", default="simout",
|
|
|
|
help="Filename for -r redirection [Default: %default]")
|
|
|
|
add_option("--stderr-file", metavar="FILE", default="simerr",
|
|
|
|
help="Filename for -e redirection [Default: %default]")
|
2006-07-11 05:00:13 +02:00
|
|
|
add_option('-i', "--interactive", action="store_true", default=False,
|
|
|
|
help="Invoke the interactive interpreter after running the script")
|
2006-07-12 21:21:23 +02:00
|
|
|
add_option("--pdb", action="store_true", default=False,
|
|
|
|
help="Invoke the python debugger before running the script")
|
2006-07-11 05:00:13 +02:00
|
|
|
add_option('-p', "--path", metavar="PATH[:PATH]", action='append', split=':',
|
|
|
|
help="Prepend PATH to the system path when invoking the script")
|
|
|
|
add_option('-q', "--quiet", action="count", default=0,
|
|
|
|
help="Reduce verbosity")
|
|
|
|
add_option('-v', "--verbose", action="count", default=0,
|
|
|
|
help="Increase verbosity")
|
|
|
|
|
|
|
|
# Statistics options
|
|
|
|
set_group("Statistics Options")
|
|
|
|
add_option("--stats-file", metavar="FILE", default="m5stats.txt",
|
|
|
|
help="Sets the output file for statistics [Default: %default]")
|
|
|
|
|
|
|
|
# Debugging options
|
|
|
|
set_group("Debugging Options")
|
|
|
|
add_option("--debug-break", metavar="TIME[,TIME]", action='append', split=',',
|
|
|
|
help="Cycle to create a breakpoint")
|
2008-07-23 23:41:33 +02:00
|
|
|
add_option("--remote-gdb-port", type='int', default=7000,
|
|
|
|
help="Remote gdb base port")
|
2006-07-11 05:00:13 +02:00
|
|
|
|
|
|
|
# Tracing options
|
|
|
|
set_group("Trace Options")
|
2007-02-13 09:16:41 +01:00
|
|
|
add_option("--trace-help", action='store_true',
|
|
|
|
help="Print help on trace flags")
|
2006-07-11 05:00:13 +02:00
|
|
|
add_option("--trace-flags", metavar="FLAG[,FLAG]", action='append', split=',',
|
2007-02-13 09:16:41 +01:00
|
|
|
help="Sets the flags for tracing (-FLAG disables a flag)")
|
2007-02-10 01:30:06 +01:00
|
|
|
add_option("--trace-start", metavar="TIME", type='int',
|
|
|
|
help="Start tracing at TIME (must be in ticks)")
|
2006-07-11 05:00:13 +02:00
|
|
|
add_option("--trace-file", metavar="FILE", default="cout",
|
|
|
|
help="Sets the output file for tracing [Default: %default]")
|
|
|
|
add_option("--trace-ignore", metavar="EXPR", action='append', split=':',
|
|
|
|
help="Ignore EXPR sim objects")
|
|
|
|
|
2008-06-15 06:51:08 +02:00
|
|
|
# Help options
|
|
|
|
set_group("Help Options")
|
|
|
|
add_option("--list-sim-objects", action='store_true', default=False,
|
|
|
|
help="List all built-in SimObjects, their parameters and default values")
|
|
|
|
|
2006-07-11 05:00:13 +02:00
|
|
|
def main():
|
2007-03-06 20:13:43 +01:00
|
|
|
import event
|
2007-02-09 23:39:56 +01:00
|
|
|
import info
|
2006-11-13 03:49:16 +01:00
|
|
|
import internal
|
2006-07-11 05:00:13 +02:00
|
|
|
|
2008-06-15 06:16:00 +02:00
|
|
|
# load the options.py config file to allow people to set their own
|
|
|
|
# default options
|
|
|
|
options_file = config.get('options.py')
|
|
|
|
if options_file:
|
|
|
|
scope = { 'options' : options }
|
|
|
|
execfile(options_file, scope)
|
|
|
|
|
2008-06-15 06:15:58 +02:00
|
|
|
arguments = options.parse_args()
|
2006-07-11 05:00:13 +02:00
|
|
|
|
2008-08-04 06:40:31 +02:00
|
|
|
if not os.path.isdir(options.outdir):
|
|
|
|
os.makedirs(options.outdir)
|
|
|
|
|
|
|
|
# These filenames are used only if the redirect_std* options are set
|
|
|
|
stdout_file = os.path.join(options.outdir, options.stdout_file)
|
|
|
|
stderr_file = os.path.join(options.outdir, options.stderr_file)
|
|
|
|
|
|
|
|
# Print redirection notices here before doing any redirection
|
|
|
|
if options.redirect_stdout and not options.redirect_stderr:
|
|
|
|
print "Redirecting stdout and stderr to", stdout_file
|
|
|
|
else:
|
|
|
|
if options.redirect_stdout:
|
|
|
|
print "Redirecting stdout to", stdout_file
|
|
|
|
if options.redirect_stderr:
|
|
|
|
print "Redirecting stderr to", stderr_file
|
|
|
|
|
|
|
|
# Now redirect stdout/stderr as desired
|
|
|
|
if options.redirect_stdout:
|
|
|
|
redir_fd = os.open(stdout_file, os. O_WRONLY | os.O_CREAT | os.O_TRUNC)
|
|
|
|
os.dup2(redir_fd, sys.stdout.fileno())
|
|
|
|
if not options.redirect_stderr:
|
|
|
|
os.dup2(redir_fd, sys.stderr.fileno())
|
|
|
|
|
|
|
|
if options.redirect_stderr:
|
|
|
|
redir_fd = os.open(stderr_file, os. O_WRONLY | os.O_CREAT | os.O_TRUNC)
|
|
|
|
os.dup2(redir_fd, sys.stderr.fileno())
|
|
|
|
|
2006-07-11 05:00:13 +02:00
|
|
|
done = False
|
2007-08-02 20:59:02 +02:00
|
|
|
|
|
|
|
if options.build_info:
|
2008-10-06 18:31:51 +02:00
|
|
|
import defines
|
|
|
|
|
2007-08-02 20:59:02 +02:00
|
|
|
done = True
|
|
|
|
print 'Build information:'
|
|
|
|
print
|
|
|
|
print 'compiled %s' % internal.core.cvar.compileDate;
|
2008-08-04 07:46:46 +02:00
|
|
|
print "revision %s" % internal.core.cvar.hgRev
|
|
|
|
print "commit date %s" % internal.core.cvar.hgDate
|
2007-08-02 20:59:02 +02:00
|
|
|
print 'build options:'
|
|
|
|
keys = defines.m5_build_env.keys()
|
|
|
|
keys.sort()
|
|
|
|
for key in keys:
|
|
|
|
val = defines.m5_build_env[key]
|
|
|
|
print ' %s = %s' % (key, val)
|
|
|
|
print
|
|
|
|
|
2006-07-11 05:00:13 +02:00
|
|
|
if options.copyright:
|
|
|
|
done = True
|
|
|
|
print info.LICENSE
|
|
|
|
print
|
|
|
|
|
|
|
|
if options.authors:
|
|
|
|
done = True
|
|
|
|
print 'Author information:'
|
|
|
|
print
|
|
|
|
print info.AUTHORS
|
|
|
|
print
|
|
|
|
|
|
|
|
if options.readme:
|
|
|
|
done = True
|
|
|
|
print 'Readme:'
|
|
|
|
print
|
|
|
|
print info.README
|
|
|
|
print
|
|
|
|
|
|
|
|
if options.release_notes:
|
|
|
|
done = True
|
|
|
|
print 'Release Notes:'
|
|
|
|
print
|
|
|
|
print info.RELEASE_NOTES
|
|
|
|
print
|
|
|
|
|
2007-02-13 09:16:41 +01:00
|
|
|
if options.trace_help:
|
2008-10-06 18:31:51 +02:00
|
|
|
import traceflags
|
|
|
|
|
2007-02-13 09:16:41 +01:00
|
|
|
done = True
|
|
|
|
print "Base Flags:"
|
2008-11-17 21:41:50 +01:00
|
|
|
traceflags.baseFlags.sort()
|
2007-02-13 09:16:41 +01:00
|
|
|
print_list(traceflags.baseFlags, indent=4)
|
|
|
|
print
|
|
|
|
print "Compound Flags:"
|
2008-11-17 21:41:50 +01:00
|
|
|
traceflags.compoundFlags.sort()
|
2007-02-13 09:16:41 +01:00
|
|
|
for flag in traceflags.compoundFlags:
|
|
|
|
if flag == 'All':
|
|
|
|
continue
|
|
|
|
print " %s:" % flag
|
|
|
|
print_list(traceflags.compoundFlagMap[flag], indent=8)
|
|
|
|
print
|
|
|
|
|
2008-06-15 06:51:08 +02:00
|
|
|
if options.list_sim_objects:
|
|
|
|
import SimObject
|
|
|
|
done = True
|
|
|
|
print "SimObjects:"
|
|
|
|
objects = SimObject.allClasses.keys()
|
|
|
|
objects.sort()
|
|
|
|
for name in objects:
|
|
|
|
obj = SimObject.allClasses[name]
|
|
|
|
print " %s" % obj
|
|
|
|
params = obj._params.keys()
|
|
|
|
params.sort()
|
|
|
|
for pname in params:
|
|
|
|
param = obj._params[pname]
|
|
|
|
default = getattr(param, 'default', '')
|
|
|
|
print " %s" % pname
|
|
|
|
if default:
|
|
|
|
print " default: %s" % default
|
|
|
|
print " desc: %s" % param.desc
|
|
|
|
print
|
|
|
|
print
|
|
|
|
|
2006-07-11 05:00:13 +02:00
|
|
|
if done:
|
|
|
|
sys.exit(0)
|
|
|
|
|
2008-06-15 06:15:58 +02:00
|
|
|
# setting verbose and quiet at the same time doesn't make sense
|
|
|
|
if options.verbose > 0 and options.quiet > 0:
|
|
|
|
options.usage(2)
|
|
|
|
|
|
|
|
verbose = options.verbose - options.quiet
|
2006-07-11 05:00:13 +02:00
|
|
|
if options.verbose >= 0:
|
|
|
|
print "M5 Simulator System"
|
|
|
|
print brief_copyright
|
|
|
|
print
|
2007-03-03 07:24:00 +01:00
|
|
|
print "M5 compiled %s" % internal.core.cvar.compileDate;
|
2008-06-13 07:09:04 +02:00
|
|
|
print "M5 revision %s" % internal.core.cvar.hgRev
|
|
|
|
print "M5 commit date %s" % internal.core.cvar.hgDate
|
|
|
|
|
2008-08-04 07:46:46 +02:00
|
|
|
print "M5 started %s" % datetime.datetime.now().strftime("%b %e %Y %X")
|
|
|
|
print "M5 executing on %s" % socket.gethostname()
|
|
|
|
|
2006-07-27 23:37:28 +02:00
|
|
|
print "command line:",
|
|
|
|
for argv in sys.argv:
|
|
|
|
print argv,
|
|
|
|
print
|
2006-07-11 05:00:13 +02:00
|
|
|
|
|
|
|
# check to make sure we can find the listed script
|
|
|
|
if not arguments or not os.path.isfile(arguments[0]):
|
2006-07-14 23:53:16 +02:00
|
|
|
if arguments and not os.path.isfile(arguments[0]):
|
|
|
|
print "Script %s not found" % arguments[0]
|
2007-02-13 09:16:41 +01:00
|
|
|
|
2008-06-15 06:15:58 +02:00
|
|
|
options.usage(2)
|
2006-07-11 05:00:13 +02:00
|
|
|
|
|
|
|
# tell C++ about output directory
|
2007-03-03 07:24:00 +01:00
|
|
|
internal.core.setOutputDir(options.outdir)
|
2006-07-11 05:00:13 +02:00
|
|
|
|
|
|
|
# update the system path with elements from the -p option
|
|
|
|
sys.path[0:0] = options.path
|
|
|
|
|
|
|
|
import objects
|
|
|
|
|
|
|
|
# set stats options
|
2007-02-18 07:52:32 +01:00
|
|
|
internal.stats.initText(options.stats_file)
|
2006-07-11 05:00:13 +02:00
|
|
|
|
|
|
|
# set debugging options
|
2008-07-23 23:41:33 +02:00
|
|
|
internal.debug.setRemoteGDBPort(options.remote_gdb_port)
|
2006-11-13 21:20:08 +01:00
|
|
|
for when in options.debug_break:
|
|
|
|
internal.debug.schedBreakCycle(int(when))
|
2006-07-11 05:00:13 +02:00
|
|
|
|
2008-10-06 18:31:51 +02:00
|
|
|
if options.trace_flags:
|
|
|
|
import traceflags
|
|
|
|
|
|
|
|
on_flags = []
|
|
|
|
off_flags = []
|
|
|
|
for flag in options.trace_flags:
|
|
|
|
off = False
|
|
|
|
if flag.startswith('-'):
|
|
|
|
flag = flag[1:]
|
|
|
|
off = True
|
2008-12-06 23:18:18 +01:00
|
|
|
if flag not in traceflags.allFlags and flag != "All":
|
2008-10-06 18:31:51 +02:00
|
|
|
print >>sys.stderr, "invalid trace flag '%s'" % flag
|
|
|
|
sys.exit(1)
|
2007-02-13 09:16:41 +01:00
|
|
|
|
2008-10-06 18:31:51 +02:00
|
|
|
if off:
|
|
|
|
off_flags.append(flag)
|
|
|
|
else:
|
|
|
|
on_flags.append(flag)
|
2007-02-09 23:39:56 +01:00
|
|
|
|
2008-10-06 18:31:51 +02:00
|
|
|
for flag in on_flags:
|
|
|
|
internal.trace.set(flag)
|
|
|
|
|
|
|
|
for flag in off_flags:
|
|
|
|
internal.trace.clear(flag)
|
2007-02-13 09:16:41 +01:00
|
|
|
|
2007-02-18 05:32:39 +01:00
|
|
|
if options.trace_start:
|
2007-02-09 23:39:56 +01:00
|
|
|
def enable_trace():
|
2007-02-18 05:32:39 +01:00
|
|
|
internal.trace.cvar.enabled = True
|
2008-10-09 13:58:24 +02:00
|
|
|
|
|
|
|
e = event.create(enable_trace)
|
|
|
|
event.mainq.schedule(e, options.trace_start)
|
2007-02-18 05:32:39 +01:00
|
|
|
else:
|
2007-02-21 23:08:13 +01:00
|
|
|
internal.trace.cvar.enabled = True
|
2007-02-09 23:39:56 +01:00
|
|
|
|
2007-02-11 00:14:50 +01:00
|
|
|
internal.trace.output(options.trace_file)
|
2007-02-09 23:39:56 +01:00
|
|
|
|
|
|
|
for ignore in options.trace_ignore:
|
|
|
|
internal.trace.ignore(ignore)
|
2006-07-11 05:00:13 +02:00
|
|
|
|
|
|
|
sys.argv = arguments
|
|
|
|
sys.path = [ os.path.dirname(sys.argv[0]) ] + sys.path
|
2006-07-12 21:18:49 +02:00
|
|
|
|
2008-10-09 13:58:23 +02:00
|
|
|
filename = sys.argv[0]
|
|
|
|
filedata = file(filename, 'r').read()
|
|
|
|
filecode = compile(filedata, filename, 'exec')
|
|
|
|
scope = { '__file__' : filename,
|
2007-01-03 19:16:22 +01:00
|
|
|
'__name__' : '__m5_main__' }
|
2006-07-12 21:21:23 +02:00
|
|
|
|
|
|
|
# we want readline if we're doing anything interactive
|
|
|
|
if options.interactive or options.pdb:
|
2007-02-09 23:39:56 +01:00
|
|
|
exec "import readline" in scope
|
2006-07-12 21:21:23 +02:00
|
|
|
|
|
|
|
# if pdb was requested, execfile the thing under pdb, otherwise,
|
|
|
|
# just do the execfile normally
|
|
|
|
if options.pdb:
|
2008-10-09 13:58:23 +02:00
|
|
|
import pdb
|
|
|
|
import traceback
|
|
|
|
|
|
|
|
pdb = pdb.Pdb()
|
|
|
|
try:
|
|
|
|
pdb.run(filecode, scope)
|
|
|
|
except SystemExit:
|
|
|
|
print "The program exited via sys.exit(). Exit status: ",
|
|
|
|
print sys.exc_info()[1]
|
|
|
|
except:
|
|
|
|
traceback.print_exc()
|
|
|
|
print "Uncaught exception. Entering post mortem debugging"
|
|
|
|
t = sys.exc_info()[2]
|
|
|
|
while t.tb_next is not None:
|
|
|
|
t = t.tb_next
|
|
|
|
pdb.interaction(t.tb_frame,t)
|
2006-07-12 21:21:23 +02:00
|
|
|
else:
|
2008-10-09 13:58:23 +02:00
|
|
|
exec filecode in scope
|
2006-07-11 05:00:13 +02:00
|
|
|
|
|
|
|
# once the script is done
|
|
|
|
if options.interactive:
|
|
|
|
interact = code.InteractiveConsole(scope)
|
|
|
|
interact.interact("M5 Interactive Console")
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
from pprint import pprint
|
|
|
|
|
2008-10-06 18:31:51 +02:00
|
|
|
# load the options.py config file to allow people to set their own
|
|
|
|
# default options
|
|
|
|
options_file = config.get('options.py')
|
|
|
|
if options_file:
|
|
|
|
scope = { 'options' : options }
|
|
|
|
execfile(options_file, scope)
|
|
|
|
|
|
|
|
arguments = options.parse_args()
|
2006-07-11 05:00:13 +02:00
|
|
|
|
|
|
|
print 'opts:'
|
|
|
|
pprint(options, indent=4)
|
|
|
|
print
|
|
|
|
|
|
|
|
print 'args:'
|
|
|
|
pprint(arguments, indent=4)
|