main.py revision 5802
12889Sbinkertn@umich.edu# Copyright (c) 2005 The Regents of The University of Michigan
22889Sbinkertn@umich.edu# All rights reserved.
32889Sbinkertn@umich.edu#
42889Sbinkertn@umich.edu# Redistribution and use in source and binary forms, with or without
52889Sbinkertn@umich.edu# modification, are permitted provided that the following conditions are
62889Sbinkertn@umich.edu# met: redistributions of source code must retain the above copyright
72889Sbinkertn@umich.edu# notice, this list of conditions and the following disclaimer;
82889Sbinkertn@umich.edu# redistributions in binary form must reproduce the above copyright
92889Sbinkertn@umich.edu# notice, this list of conditions and the following disclaimer in the
102889Sbinkertn@umich.edu# documentation and/or other materials provided with the distribution;
112889Sbinkertn@umich.edu# neither the name of the copyright holders nor the names of its
122889Sbinkertn@umich.edu# contributors may be used to endorse or promote products derived from
132889Sbinkertn@umich.edu# this software without specific prior written permission.
142889Sbinkertn@umich.edu#
152889Sbinkertn@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
162889Sbinkertn@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
172889Sbinkertn@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
182889Sbinkertn@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
192889Sbinkertn@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
202889Sbinkertn@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
212889Sbinkertn@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
222889Sbinkertn@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
232889Sbinkertn@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
242889Sbinkertn@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
252889Sbinkertn@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
262889Sbinkertn@umich.edu#
272889Sbinkertn@umich.edu# Authors: Nathan Binkert
282889Sbinkertn@umich.edu
294850Snate@binkert.orgimport code
304850Snate@binkert.orgimport datetime
314850Snate@binkert.orgimport os
324850Snate@binkert.orgimport socket
334850Snate@binkert.orgimport sys
344850Snate@binkert.org
355467Snate@binkert.orgfrom util import attrdict
365471Snate@binkert.orgimport config
375470Snate@binkert.orgfrom options import OptionParser
382889Sbinkertn@umich.edu
392889Sbinkertn@umich.edu__all__ = [ 'options', 'arguments', 'main' ]
402889Sbinkertn@umich.edu
414053Sbinkertn@umich.edudef print_list(items, indent=4):
424053Sbinkertn@umich.edu    line = ' ' * indent
434053Sbinkertn@umich.edu    for i,item in enumerate(items):
444053Sbinkertn@umich.edu        if len(line) + len(item) > 76:
454053Sbinkertn@umich.edu            print line
464053Sbinkertn@umich.edu            line = ' ' * indent
474053Sbinkertn@umich.edu
484053Sbinkertn@umich.edu        if i < len(items) - 1:
494053Sbinkertn@umich.edu            line += '%s, ' % item
504053Sbinkertn@umich.edu        else:
514053Sbinkertn@umich.edu            line += item
524053Sbinkertn@umich.edu            print line
534053Sbinkertn@umich.edu
545470Snate@binkert.orgusage="%prog [m5 options] script.py [script options]"
555470Snate@binkert.orgversion="%prog 2.0"
565470Snate@binkert.orgbrief_copyright='''
575470Snate@binkert.orgCopyright (c) 2001-2008
585470Snate@binkert.orgThe Regents of The University of Michigan
595470Snate@binkert.orgAll Rights Reserved
605470Snate@binkert.org'''
612889Sbinkertn@umich.edu
625470Snate@binkert.orgoptions = OptionParser(usage=usage, version=version,
635470Snate@binkert.org                       description=brief_copyright)
645470Snate@binkert.orgadd_option = options.add_option
655470Snate@binkert.orgset_group = options.set_group
665470Snate@binkert.orgusage = options.usage
672889Sbinkertn@umich.edu
682889Sbinkertn@umich.edu# Help options
692889Sbinkertn@umich.eduadd_option('-A', "--authors", action="store_true", default=False,
702889Sbinkertn@umich.edu    help="Show author information")
714850Snate@binkert.orgadd_option('-B', "--build-info", action="store_true", default=False,
724850Snate@binkert.org    help="Show build information")
732889Sbinkertn@umich.eduadd_option('-C', "--copyright", action="store_true", default=False,
742889Sbinkertn@umich.edu    help="Show full copyright information")
752889Sbinkertn@umich.eduadd_option('-R', "--readme", action="store_true", default=False,
762889Sbinkertn@umich.edu    help="Show the readme")
772889Sbinkertn@umich.eduadd_option('-N', "--release-notes", action="store_true", default=False,
782889Sbinkertn@umich.edu    help="Show the release notes")
792889Sbinkertn@umich.edu
802889Sbinkertn@umich.edu# Options for configuring the base simulator
815773Snate@binkert.orgadd_option('-d', "--outdir", metavar="DIR", default="m5out",
822889Sbinkertn@umich.edu    help="Set the output directory to DIR [Default: %default]")
835524Sstever@gmail.comadd_option('-r', "--redirect-stdout", action="store_true", default=False,
845524Sstever@gmail.com           help="Redirect stdout (& stderr, without -e) to file")
855524Sstever@gmail.comadd_option('-e', "--redirect-stderr", action="store_true", default=False,
865524Sstever@gmail.com           help="Redirect stderr to file")
875524Sstever@gmail.comadd_option("--stdout-file", metavar="FILE", default="simout",
885524Sstever@gmail.com           help="Filename for -r redirection [Default: %default]")
895524Sstever@gmail.comadd_option("--stderr-file", metavar="FILE", default="simerr",
905524Sstever@gmail.com           help="Filename for -e redirection [Default: %default]")
912889Sbinkertn@umich.eduadd_option('-i', "--interactive", action="store_true", default=False,
922889Sbinkertn@umich.edu    help="Invoke the interactive interpreter after running the script")
932899Sbinkertn@umich.eduadd_option("--pdb", action="store_true", default=False,
942899Sbinkertn@umich.edu    help="Invoke the python debugger before running the script")
952889Sbinkertn@umich.eduadd_option('-p', "--path", metavar="PATH[:PATH]", action='append', split=':',
962889Sbinkertn@umich.edu    help="Prepend PATH to the system path when invoking the script")
972889Sbinkertn@umich.eduadd_option('-q', "--quiet", action="count", default=0,
982889Sbinkertn@umich.edu    help="Reduce verbosity")
992889Sbinkertn@umich.eduadd_option('-v', "--verbose", action="count", default=0,
1002889Sbinkertn@umich.edu    help="Increase verbosity")
1012889Sbinkertn@umich.edu
1022889Sbinkertn@umich.edu# Statistics options
1032889Sbinkertn@umich.eduset_group("Statistics Options")
1045773Snate@binkert.orgadd_option("--stats-file", metavar="FILE", default="stats.txt",
1052889Sbinkertn@umich.edu    help="Sets the output file for statistics [Default: %default]")
1062889Sbinkertn@umich.edu
1075773Snate@binkert.org# Configuration Options
1085773Snate@binkert.orgset_group("Configuration Options")
1095773Snate@binkert.orgadd_option("--dump-config", metavar="FILE", default="config.ini",
1105773Snate@binkert.org    help="Dump configuration output file [Default: %default]")
1115773Snate@binkert.org
1122889Sbinkertn@umich.edu# Debugging options
1132889Sbinkertn@umich.eduset_group("Debugging Options")
1142889Sbinkertn@umich.eduadd_option("--debug-break", metavar="TIME[,TIME]", action='append', split=',',
1152889Sbinkertn@umich.edu    help="Cycle to create a breakpoint")
1165512SMichael.Adler@intel.comadd_option("--remote-gdb-port", type='int', default=7000,
1175512SMichael.Adler@intel.com    help="Remote gdb base port")
1182889Sbinkertn@umich.edu
1192889Sbinkertn@umich.edu# Tracing options
1202889Sbinkertn@umich.eduset_group("Trace Options")
1214053Sbinkertn@umich.eduadd_option("--trace-help", action='store_true',
1224053Sbinkertn@umich.edu    help="Print help on trace flags")
1232889Sbinkertn@umich.eduadd_option("--trace-flags", metavar="FLAG[,FLAG]", action='append', split=',',
1244053Sbinkertn@umich.edu    help="Sets the flags for tracing (-FLAG disables a flag)")
1254044Sbinkertn@umich.eduadd_option("--trace-start", metavar="TIME", type='int',
1264044Sbinkertn@umich.edu    help="Start tracing at TIME (must be in ticks)")
1272889Sbinkertn@umich.eduadd_option("--trace-file", metavar="FILE", default="cout",
1282889Sbinkertn@umich.edu    help="Sets the output file for tracing [Default: %default]")
1292889Sbinkertn@umich.eduadd_option("--trace-ignore", metavar="EXPR", action='append', split=':',
1302889Sbinkertn@umich.edu    help="Ignore EXPR sim objects")
1312889Sbinkertn@umich.edu
1325473Snate@binkert.org# Help options
1335473Snate@binkert.orgset_group("Help Options")
1345473Snate@binkert.orgadd_option("--list-sim-objects", action='store_true', default=False,
1355473Snate@binkert.org    help="List all built-in SimObjects, their parameters and default values")
1365473Snate@binkert.org
1372889Sbinkertn@umich.edudef main():
1385801Snate@binkert.org    import core
1395801Snate@binkert.org    import debug
1405801Snate@binkert.org    import defines
1414167Sbinkertn@umich.edu    import event
1424042Sbinkertn@umich.edu    import info
1435801Snate@binkert.org    import stats
1445799Snate@binkert.org    import trace
1455799Snate@binkert.org
1465799Snate@binkert.org    def check_tracing():
1475799Snate@binkert.org        if defines.TRACING_ON:
1485799Snate@binkert.org            return
1495799Snate@binkert.org
1505802Snate@binkert.org        fatal("Tracing is not enabled.  Compile with TRACING_ON")
1512889Sbinkertn@umich.edu
1525472Snate@binkert.org    # load the options.py config file to allow people to set their own
1535472Snate@binkert.org    # default options
1545472Snate@binkert.org    options_file = config.get('options.py')
1555472Snate@binkert.org    if options_file:
1565472Snate@binkert.org        scope = { 'options' : options }
1575472Snate@binkert.org        execfile(options_file, scope)
1585472Snate@binkert.org
1595470Snate@binkert.org    arguments = options.parse_args()
1602889Sbinkertn@umich.edu
1615524Sstever@gmail.com    if not os.path.isdir(options.outdir):
1625524Sstever@gmail.com        os.makedirs(options.outdir)
1635524Sstever@gmail.com
1645524Sstever@gmail.com    # These filenames are used only if the redirect_std* options are set
1655524Sstever@gmail.com    stdout_file = os.path.join(options.outdir, options.stdout_file)
1665524Sstever@gmail.com    stderr_file = os.path.join(options.outdir, options.stderr_file)
1675524Sstever@gmail.com
1685524Sstever@gmail.com    # Print redirection notices here before doing any redirection
1695524Sstever@gmail.com    if options.redirect_stdout and not options.redirect_stderr:
1705524Sstever@gmail.com        print "Redirecting stdout and stderr to", stdout_file
1715524Sstever@gmail.com    else:
1725524Sstever@gmail.com        if options.redirect_stdout:
1735524Sstever@gmail.com            print "Redirecting stdout to", stdout_file
1745524Sstever@gmail.com        if options.redirect_stderr:
1755524Sstever@gmail.com            print "Redirecting stderr to", stderr_file
1765524Sstever@gmail.com
1775524Sstever@gmail.com    # Now redirect stdout/stderr as desired
1785524Sstever@gmail.com    if options.redirect_stdout:
1795524Sstever@gmail.com        redir_fd = os.open(stdout_file, os. O_WRONLY | os.O_CREAT | os.O_TRUNC)
1805524Sstever@gmail.com        os.dup2(redir_fd, sys.stdout.fileno())
1815524Sstever@gmail.com        if not options.redirect_stderr:
1825524Sstever@gmail.com            os.dup2(redir_fd, sys.stderr.fileno())
1835524Sstever@gmail.com
1845524Sstever@gmail.com    if options.redirect_stderr:
1855524Sstever@gmail.com        redir_fd = os.open(stderr_file, os. O_WRONLY | os.O_CREAT | os.O_TRUNC)
1865524Sstever@gmail.com        os.dup2(redir_fd, sys.stderr.fileno())
1875524Sstever@gmail.com
1882889Sbinkertn@umich.edu    done = False
1894850Snate@binkert.org
1904850Snate@binkert.org    if options.build_info:
1914850Snate@binkert.org        done = True
1924850Snate@binkert.org        print 'Build information:'
1934850Snate@binkert.org        print
1945801Snate@binkert.org        print 'compiled %s' % defines.compileDate;
1955801Snate@binkert.org        print "revision %s:%s" % (defines.hgRev, defines.hgId)
1965801Snate@binkert.org        print "commit date %s" % defines.hgDate
1974850Snate@binkert.org        print 'build options:'
1985801Snate@binkert.org        keys = defines.buildEnv.keys()
1994850Snate@binkert.org        keys.sort()
2004850Snate@binkert.org        for key in keys:
2015801Snate@binkert.org            val = defines.buildEnv[key]
2024850Snate@binkert.org            print '    %s = %s' % (key, val)
2034850Snate@binkert.org        print
2044850Snate@binkert.org
2052889Sbinkertn@umich.edu    if options.copyright:
2062889Sbinkertn@umich.edu        done = True
2072889Sbinkertn@umich.edu        print info.LICENSE
2082889Sbinkertn@umich.edu        print
2092889Sbinkertn@umich.edu
2102889Sbinkertn@umich.edu    if options.authors:
2112889Sbinkertn@umich.edu        done = True
2122889Sbinkertn@umich.edu        print 'Author information:'
2132889Sbinkertn@umich.edu        print
2142889Sbinkertn@umich.edu        print info.AUTHORS
2152889Sbinkertn@umich.edu        print
2162889Sbinkertn@umich.edu
2172889Sbinkertn@umich.edu    if options.readme:
2182889Sbinkertn@umich.edu        done = True
2192889Sbinkertn@umich.edu        print 'Readme:'
2202889Sbinkertn@umich.edu        print
2212889Sbinkertn@umich.edu        print info.README
2222889Sbinkertn@umich.edu        print
2232889Sbinkertn@umich.edu
2242889Sbinkertn@umich.edu    if options.release_notes:
2252889Sbinkertn@umich.edu        done = True
2262889Sbinkertn@umich.edu        print 'Release Notes:'
2272889Sbinkertn@umich.edu        print
2282889Sbinkertn@umich.edu        print info.RELEASE_NOTES
2292889Sbinkertn@umich.edu        print
2302889Sbinkertn@umich.edu
2314053Sbinkertn@umich.edu    if options.trace_help:
2324053Sbinkertn@umich.edu        done = True
2335799Snate@binkert.org        check_tracing()
2345799Snate@binkert.org        trace.help()
2354053Sbinkertn@umich.edu
2365473Snate@binkert.org    if options.list_sim_objects:
2375473Snate@binkert.org        import SimObject
2385473Snate@binkert.org        done = True
2395473Snate@binkert.org        print "SimObjects:"
2405473Snate@binkert.org        objects = SimObject.allClasses.keys()
2415473Snate@binkert.org        objects.sort()
2425473Snate@binkert.org        for name in objects:
2435473Snate@binkert.org            obj = SimObject.allClasses[name]
2445473Snate@binkert.org            print "    %s" % obj
2455473Snate@binkert.org            params = obj._params.keys()
2465473Snate@binkert.org            params.sort()
2475473Snate@binkert.org            for pname in params:
2485473Snate@binkert.org                param = obj._params[pname]
2495473Snate@binkert.org                default = getattr(param, 'default', '')
2505473Snate@binkert.org                print "        %s" % pname
2515473Snate@binkert.org                if default:
2525473Snate@binkert.org                    print "            default: %s" % default
2535473Snate@binkert.org                print "            desc: %s" % param.desc
2545473Snate@binkert.org                print
2555473Snate@binkert.org            print
2565473Snate@binkert.org
2572889Sbinkertn@umich.edu    if done:
2582889Sbinkertn@umich.edu        sys.exit(0)
2592889Sbinkertn@umich.edu
2605470Snate@binkert.org    # setting verbose and quiet at the same time doesn't make sense
2615470Snate@binkert.org    if options.verbose > 0 and options.quiet > 0:
2625470Snate@binkert.org        options.usage(2)
2635470Snate@binkert.org
2645470Snate@binkert.org    verbose = options.verbose - options.quiet
2652889Sbinkertn@umich.edu    if options.verbose >= 0:
2662889Sbinkertn@umich.edu        print "M5 Simulator System"
2672889Sbinkertn@umich.edu        print brief_copyright
2682889Sbinkertn@umich.edu        print
2695801Snate@binkert.org
2705801Snate@binkert.org        print "M5 compiled %s" % defines.compileDate;
2715801Snate@binkert.org        print "M5 revision %s:%s" % (defines.hgRev, defines.hgId)
2725801Snate@binkert.org        print "M5 commit date %s" % defines.hgDate
2735456Ssaidi@eecs.umich.edu
2745528Sstever@gmail.com        print "M5 started %s" % datetime.datetime.now().strftime("%b %e %Y %X")
2755528Sstever@gmail.com        print "M5 executing on %s" % socket.gethostname()
2765528Sstever@gmail.com
2772967Sktlim@umich.edu        print "command line:",
2782967Sktlim@umich.edu        for argv in sys.argv:
2792967Sktlim@umich.edu            print argv,
2802967Sktlim@umich.edu        print
2812889Sbinkertn@umich.edu
2822889Sbinkertn@umich.edu    # check to make sure we can find the listed script
2832889Sbinkertn@umich.edu    if not arguments or not os.path.isfile(arguments[0]):
2842922Sktlim@umich.edu        if arguments and not os.path.isfile(arguments[0]):
2852922Sktlim@umich.edu            print "Script %s not found" % arguments[0]
2864053Sbinkertn@umich.edu
2875470Snate@binkert.org        options.usage(2)
2882889Sbinkertn@umich.edu
2892889Sbinkertn@umich.edu    # tell C++ about output directory
2905801Snate@binkert.org    core.setOutputDir(options.outdir)
2912889Sbinkertn@umich.edu
2922889Sbinkertn@umich.edu    # update the system path with elements from the -p option
2932889Sbinkertn@umich.edu    sys.path[0:0] = options.path
2942889Sbinkertn@umich.edu
2952889Sbinkertn@umich.edu    # set stats options
2965801Snate@binkert.org    stats.initText(options.stats_file)
2972889Sbinkertn@umich.edu
2982889Sbinkertn@umich.edu    # set debugging options
2995801Snate@binkert.org    debug.setRemoteGDBPort(options.remote_gdb_port)
3003645Sbinkertn@umich.edu    for when in options.debug_break:
3015801Snate@binkert.org        debug.schedBreakCycle(int(when))
3022889Sbinkertn@umich.edu
3035586Snate@binkert.org    if options.trace_flags:
3045799Snate@binkert.org        check_tracing()
3054053Sbinkertn@umich.edu
3065586Snate@binkert.org        on_flags = []
3075586Snate@binkert.org        off_flags = []
3085586Snate@binkert.org        for flag in options.trace_flags:
3095586Snate@binkert.org            off = False
3105586Snate@binkert.org            if flag.startswith('-'):
3115586Snate@binkert.org                flag = flag[1:]
3125586Snate@binkert.org                off = True
3135799Snate@binkert.org            if flag not in trace.flags.all and flag != "All":
3145586Snate@binkert.org                print >>sys.stderr, "invalid trace flag '%s'" % flag
3155586Snate@binkert.org                sys.exit(1)
3164053Sbinkertn@umich.edu
3175586Snate@binkert.org            if off:
3185586Snate@binkert.org                off_flags.append(flag)
3195586Snate@binkert.org            else:
3205586Snate@binkert.org                on_flags.append(flag)
3214042Sbinkertn@umich.edu
3225586Snate@binkert.org        for flag in on_flags:
3235799Snate@binkert.org            trace.set(flag)
3245586Snate@binkert.org
3255586Snate@binkert.org        for flag in off_flags:
3265799Snate@binkert.org            trace.clear(flag)
3274053Sbinkertn@umich.edu
3284074Sbinkertn@umich.edu    if options.trace_start:
3295799Snate@binkert.org        check_tracing()
3305799Snate@binkert.org        e = event.create(trace.enable)
3315606Snate@binkert.org        event.mainq.schedule(e, options.trace_start)
3324074Sbinkertn@umich.edu    else:
3335799Snate@binkert.org        trace.enable()
3344042Sbinkertn@umich.edu
3355799Snate@binkert.org    trace.output(options.trace_file)
3364042Sbinkertn@umich.edu
3374042Sbinkertn@umich.edu    for ignore in options.trace_ignore:
3385799Snate@binkert.org        check_tracing()
3395799Snate@binkert.org        trace.ignore(ignore)
3402889Sbinkertn@umich.edu
3412889Sbinkertn@umich.edu    sys.argv = arguments
3422889Sbinkertn@umich.edu    sys.path = [ os.path.dirname(sys.argv[0]) ] + sys.path
3432891Sbinkertn@umich.edu
3445604Snate@binkert.org    filename = sys.argv[0]
3455604Snate@binkert.org    filedata = file(filename, 'r').read()
3465604Snate@binkert.org    filecode = compile(filedata, filename, 'exec')
3475604Snate@binkert.org    scope = { '__file__' : filename,
3483887Sbinkertn@umich.edu              '__name__' : '__m5_main__' }
3492899Sbinkertn@umich.edu
3502899Sbinkertn@umich.edu    # we want readline if we're doing anything interactive
3512899Sbinkertn@umich.edu    if options.interactive or options.pdb:
3524042Sbinkertn@umich.edu        exec "import readline" in scope
3532899Sbinkertn@umich.edu
3542899Sbinkertn@umich.edu    # if pdb was requested, execfile the thing under pdb, otherwise,
3552899Sbinkertn@umich.edu    # just do the execfile normally
3562899Sbinkertn@umich.edu    if options.pdb:
3575604Snate@binkert.org        import pdb
3585604Snate@binkert.org        import traceback
3595604Snate@binkert.org
3605604Snate@binkert.org        pdb = pdb.Pdb()
3615604Snate@binkert.org        try:
3625604Snate@binkert.org            pdb.run(filecode, scope)
3635604Snate@binkert.org        except SystemExit:
3645604Snate@binkert.org            print "The program exited via sys.exit(). Exit status: ",
3655604Snate@binkert.org            print sys.exc_info()[1]
3665604Snate@binkert.org        except:
3675604Snate@binkert.org            traceback.print_exc()
3685604Snate@binkert.org            print "Uncaught exception. Entering post mortem debugging"
3695604Snate@binkert.org            t = sys.exc_info()[2]
3705604Snate@binkert.org            while t.tb_next is not None:
3715604Snate@binkert.org                t = t.tb_next
3725604Snate@binkert.org                pdb.interaction(t.tb_frame,t)
3732899Sbinkertn@umich.edu    else:
3745604Snate@binkert.org        exec filecode in scope
3752889Sbinkertn@umich.edu
3762889Sbinkertn@umich.edu    # once the script is done
3772889Sbinkertn@umich.edu    if options.interactive:
3782889Sbinkertn@umich.edu        interact = code.InteractiveConsole(scope)
3792889Sbinkertn@umich.edu        interact.interact("M5 Interactive Console")
3802889Sbinkertn@umich.edu
3812889Sbinkertn@umich.eduif __name__ == '__main__':
3822889Sbinkertn@umich.edu    from pprint import pprint
3832889Sbinkertn@umich.edu
3845586Snate@binkert.org    # load the options.py config file to allow people to set their own
3855586Snate@binkert.org    # default options
3865586Snate@binkert.org    options_file = config.get('options.py')
3875586Snate@binkert.org    if options_file:
3885586Snate@binkert.org        scope = { 'options' : options }
3895586Snate@binkert.org        execfile(options_file, scope)
3905586Snate@binkert.org
3915586Snate@binkert.org    arguments = options.parse_args()
3922889Sbinkertn@umich.edu
3932889Sbinkertn@umich.edu    print 'opts:'
3942889Sbinkertn@umich.edu    pprint(options, indent=4)
3952889Sbinkertn@umich.edu    print
3962889Sbinkertn@umich.edu
3972889Sbinkertn@umich.edu    print 'args:'
3982889Sbinkertn@umich.edu    pprint(arguments, indent=4)
399