Options.py (10747:3fe41011333d) Options.py (10757:8a4040874157)
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

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

145 help="exit when work starts on the specified cpu")
146 parser.add_option("--work-end-exit-count", action="store", type="int",
147 help="exit at specified work end count")
148 parser.add_option("--work-begin-exit-count", action="store", type="int",
149 help="exit at specified work begin count")
150 parser.add_option("--init-param", action="store", type="int", default=0,
151 help="""Parameter available in simulation with m5
152 initparam""")
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

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

145 help="exit when work starts on the specified cpu")
146 parser.add_option("--work-end-exit-count", action="store", type="int",
147 help="exit at specified work end count")
148 parser.add_option("--work-begin-exit-count", action="store", type="int",
149 help="exit at specified work begin count")
150 parser.add_option("--init-param", action="store", type="int", default=0,
151 help="""Parameter available in simulation with m5
152 initparam""")
153 parser.add_option("--initialize-only", action="store_true", default=False,
154 help="""Exit after initialization. Do not simulate time.
155 Useful when gem5 is run as a library.""")
153
154 # Simpoint options
155 parser.add_option("--simpoint-profile", action="store_true",
156 help="Enable basic block profiling for SimPoints")
157 parser.add_option("--simpoint-interval", type="int", default=10000000,
158 help="SimPoint interval in num of instructions")
159 parser.add_option("--take-simpoint-checkpoints", action="store", type="string",
160 help="<simpoint file,weight file,interval-length,warmup-length>")

--- 131 unchanged lines hidden ---
156
157 # Simpoint options
158 parser.add_option("--simpoint-profile", action="store_true",
159 help="Enable basic block profiling for SimPoints")
160 parser.add_option("--simpoint-interval", type="int", default=10000000,
161 help="SimPoint interval in num of instructions")
162 parser.add_option("--take-simpoint-checkpoints", action="store", type="string",
163 help="<simpoint file,weight file,interval-length,warmup-length>")

--- 131 unchanged lines hidden ---