Options.py (9836:4411b4e0c03a) Options.py (9909:0679c3554ba3)
1# Copyright (c) 2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 101 unchanged lines hidden (view full) ---

110 parser.add_option("--l2_assoc", type="int", default=8)
111 parser.add_option("--l3_assoc", type="int", default=16)
112 parser.add_option("--cacheline_size", type="int", default=64)
113
114 # Enable Ruby
115 parser.add_option("--ruby", action="store_true")
116
117 # Run duration options
1# Copyright (c) 2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 101 unchanged lines hidden (view full) ---

110 parser.add_option("--l2_assoc", type="int", default=8)
111 parser.add_option("--l3_assoc", type="int", default=16)
112 parser.add_option("--cacheline_size", type="int", default=64)
113
114 # Enable Ruby
115 parser.add_option("--ruby", action="store_true")
116
117 # Run duration options
118 parser.add_option("-m", "--abs-max-tick", type="int", default=None,
118 parser.add_option("-m", "--abs-max-tick", type="int", default=m5.MaxTick,
119 metavar="TICKS", help="Run to absolute simulated tick " \
120 "specified including ticks from a restored checkpoint")
121 parser.add_option("--rel-max-tick", type="int", default=None,
122 metavar="TICKS", help="Simulate for specified number of" \
123 " ticks relative to the simulation start tick (e.g. if " \
124 "restoring a checkpoint)")
125 parser.add_option("--maxtime", type="float", default=None,
126 help="Run to the specified absolute simulated time in " \

--- 124 unchanged lines hidden ---
119 metavar="TICKS", help="Run to absolute simulated tick " \
120 "specified including ticks from a restored checkpoint")
121 parser.add_option("--rel-max-tick", type="int", default=None,
122 metavar="TICKS", help="Simulate for specified number of" \
123 " ticks relative to the simulation start tick (e.g. if " \
124 "restoring a checkpoint)")
125 parser.add_option("--maxtime", type="float", default=None,
126 help="Run to the specified absolute simulated time in " \

--- 124 unchanged lines hidden ---