Options.py revision 13731
19665Sandreas.hansson@arm.com# Copyright (c) 2013 ARM Limited
29665Sandreas.hansson@arm.com# All rights reserved.
39665Sandreas.hansson@arm.com#
49665Sandreas.hansson@arm.com# The license below extends only to copyright in the software and shall
59665Sandreas.hansson@arm.com# not be construed as granting a license to any other intellectual
69665Sandreas.hansson@arm.com# property including but not limited to intellectual property relating
79665Sandreas.hansson@arm.com# to a hardware implementation of the functionality of the software
89665Sandreas.hansson@arm.com# licensed hereunder.  You may use the software subject to the license
99665Sandreas.hansson@arm.com# terms below provided that you ensure that this notice is replicated
109665Sandreas.hansson@arm.com# unmodified and in its entirety in all distributions of the software,
119665Sandreas.hansson@arm.com# modified or unmodified, in source code or in binary form.
129665Sandreas.hansson@arm.com#
135353Svilas.sridharan@gmail.com# Copyright (c) 2006-2008 The Regents of The University of Michigan
143395Shsul@eecs.umich.edu# All rights reserved.
153395Shsul@eecs.umich.edu#
163395Shsul@eecs.umich.edu# Redistribution and use in source and binary forms, with or without
173395Shsul@eecs.umich.edu# modification, are permitted provided that the following conditions are
183395Shsul@eecs.umich.edu# met: redistributions of source code must retain the above copyright
193395Shsul@eecs.umich.edu# notice, this list of conditions and the following disclaimer;
203395Shsul@eecs.umich.edu# redistributions in binary form must reproduce the above copyright
213395Shsul@eecs.umich.edu# notice, this list of conditions and the following disclaimer in the
223395Shsul@eecs.umich.edu# documentation and/or other materials provided with the distribution;
233395Shsul@eecs.umich.edu# neither the name of the copyright holders nor the names of its
243395Shsul@eecs.umich.edu# contributors may be used to endorse or promote products derived from
253395Shsul@eecs.umich.edu# this software without specific prior written permission.
263395Shsul@eecs.umich.edu#
273395Shsul@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
283395Shsul@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
293395Shsul@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
303395Shsul@eecs.umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
313395Shsul@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
323395Shsul@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
333395Shsul@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
343395Shsul@eecs.umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
353395Shsul@eecs.umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
363395Shsul@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
373395Shsul@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
383395Shsul@eecs.umich.edu#
393395Shsul@eecs.umich.edu# Authors: Lisa Hsu
403395Shsul@eecs.umich.edu
418920Snilay@cs.wisc.eduimport m5
428920Snilay@cs.wisc.edufrom m5.defines import buildEnv
438920Snilay@cs.wisc.edufrom m5.objects import *
4411688Sandreas.hansson@arm.comfrom common.Benchmarks import *
457025SBrad.Beckmann@amd.com
4611688Sandreas.hansson@arm.comfrom common import CpuConfig
4713432Spau.cabre@metempsy.comfrom common import BPConfig
4811688Sandreas.hansson@arm.comfrom common import MemConfig
4911688Sandreas.hansson@arm.comfrom common import PlatformConfig
5010747SChris.Emmons@arm.com
519520SAndreas.Sandberg@ARM.comdef _listCpuTypes(option, opt, value, parser):
529520SAndreas.Sandberg@ARM.com    CpuConfig.print_cpu_list()
539520SAndreas.Sandberg@ARM.com    sys.exit(0)
549520SAndreas.Sandberg@ARM.com
5513432Spau.cabre@metempsy.comdef _listBPTypes(option, opt, value, parser):
5613432Spau.cabre@metempsy.com    BPConfig.print_bp_list()
5713432Spau.cabre@metempsy.com    sys.exit(0)
5813432Spau.cabre@metempsy.com
599665Sandreas.hansson@arm.comdef _listMemTypes(option, opt, value, parser):
609665Sandreas.hansson@arm.com    MemConfig.print_mem_list()
619665Sandreas.hansson@arm.com    sys.exit(0)
629665Sandreas.hansson@arm.com
6311238Sandreas.sandberg@arm.comdef _listPlatformTypes(option, opt, value, parser):
6411238Sandreas.sandberg@arm.com    PlatformConfig.print_platform_list()
6511238Sandreas.sandberg@arm.com    sys.exit(0)
6611238Sandreas.sandberg@arm.com
6711688Sandreas.hansson@arm.com# Add the very basic options that work also in the case of the no ISA
6811688Sandreas.hansson@arm.com# being used, and consequently no CPUs, but rather various types of
6911688Sandreas.hansson@arm.com# testers and traffic generators.
7011688Sandreas.hansson@arm.comdef addNoISAOptions(parser):
718920Snilay@cs.wisc.edu    parser.add_option("-n", "--num-cpus", type="int", default=1)
729827Sakash.bagdia@arm.com    parser.add_option("--sys-voltage", action="store", type="string",
739827Sakash.bagdia@arm.com                      default='1.0V',
749827Sakash.bagdia@arm.com                      help = """Top-level voltage for blocks running at system
759827Sakash.bagdia@arm.com                      power supply""")
769790Sakash.bagdia@arm.com    parser.add_option("--sys-clock", action="store", type="string",
779790Sakash.bagdia@arm.com                      default='1GHz',
789790Sakash.bagdia@arm.com                      help = """Top-level clock for blocks running at system
799790Sakash.bagdia@arm.com                      speed""")
8011688Sandreas.hansson@arm.com
8111688Sandreas.hansson@arm.com    # Memory Options
8211688Sandreas.hansson@arm.com    parser.add_option("--list-mem-types",
8311688Sandreas.hansson@arm.com                      action="callback", callback=_listMemTypes,
8411688Sandreas.hansson@arm.com                      help="List available memory types")
8511837Swendy.elsasser@arm.com    parser.add_option("--mem-type", type="choice", default="DDR3_1600_8x8",
8611688Sandreas.hansson@arm.com                      choices=MemConfig.mem_names(),
8711688Sandreas.hansson@arm.com                      help = "type of memory to use")
8811688Sandreas.hansson@arm.com    parser.add_option("--mem-channels", type="int", default=1,
8911688Sandreas.hansson@arm.com                      help = "number of memory channels")
9011688Sandreas.hansson@arm.com    parser.add_option("--mem-ranks", type="int", default=None,
9111688Sandreas.hansson@arm.com                      help = "number of memory ranks per channel")
9211688Sandreas.hansson@arm.com    parser.add_option("--mem-size", action="store", type="string",
9311688Sandreas.hansson@arm.com                      default="512MB",
9411688Sandreas.hansson@arm.com                      help="Specify the physical memory size (single memory)")
9511688Sandreas.hansson@arm.com
9611688Sandreas.hansson@arm.com
9711688Sandreas.hansson@arm.com    parser.add_option("--memchecker", action="store_true")
9811688Sandreas.hansson@arm.com
9911688Sandreas.hansson@arm.com    # Cache Options
10011688Sandreas.hansson@arm.com    parser.add_option("--external-memory-system", type="string",
10111688Sandreas.hansson@arm.com                      help="use external ports of this port_type for caches")
10211688Sandreas.hansson@arm.com    parser.add_option("--tlm-memory", type="string",
10311688Sandreas.hansson@arm.com                      help="use external port for SystemC TLM cosimulation")
10411688Sandreas.hansson@arm.com    parser.add_option("--caches", action="store_true")
10511688Sandreas.hansson@arm.com    parser.add_option("--l2cache", action="store_true")
10611688Sandreas.hansson@arm.com    parser.add_option("--num-dirs", type="int", default=1)
10711688Sandreas.hansson@arm.com    parser.add_option("--num-l2caches", type="int", default=1)
10811688Sandreas.hansson@arm.com    parser.add_option("--num-l3caches", type="int", default=1)
10911688Sandreas.hansson@arm.com    parser.add_option("--l1d_size", type="string", default="64kB")
11011688Sandreas.hansson@arm.com    parser.add_option("--l1i_size", type="string", default="32kB")
11111688Sandreas.hansson@arm.com    parser.add_option("--l2_size", type="string", default="2MB")
11211688Sandreas.hansson@arm.com    parser.add_option("--l3_size", type="string", default="16MB")
11311688Sandreas.hansson@arm.com    parser.add_option("--l1d_assoc", type="int", default=2)
11411688Sandreas.hansson@arm.com    parser.add_option("--l1i_assoc", type="int", default=2)
11511688Sandreas.hansson@arm.com    parser.add_option("--l2_assoc", type="int", default=8)
11611688Sandreas.hansson@arm.com    parser.add_option("--l3_assoc", type="int", default=16)
11711688Sandreas.hansson@arm.com    parser.add_option("--cacheline_size", type="int", default=64)
11811688Sandreas.hansson@arm.com
11911688Sandreas.hansson@arm.com    # Enable Ruby
12011688Sandreas.hansson@arm.com    parser.add_option("--ruby", action="store_true")
12111688Sandreas.hansson@arm.com
12211688Sandreas.hansson@arm.com    # Run duration options
12311688Sandreas.hansson@arm.com    parser.add_option("-m", "--abs-max-tick", type="int", default=m5.MaxTick,
12411688Sandreas.hansson@arm.com                      metavar="TICKS", help="Run to absolute simulated tick "
12511688Sandreas.hansson@arm.com                      "specified including ticks from a restored checkpoint")
12611688Sandreas.hansson@arm.com    parser.add_option("--rel-max-tick", type="int", default=None,
12711688Sandreas.hansson@arm.com                      metavar="TICKS", help="Simulate for specified number of"
12811688Sandreas.hansson@arm.com                      " ticks relative to the simulation start tick (e.g. if "
12911688Sandreas.hansson@arm.com                      "restoring a checkpoint)")
13011688Sandreas.hansson@arm.com    parser.add_option("--maxtime", type="float", default=None,
13111688Sandreas.hansson@arm.com                      help="Run to the specified absolute simulated time in "
13211688Sandreas.hansson@arm.com                      "seconds")
13313357Sciro.santilli@arm.com    parser.add_option("-P", "--param", action="append", default=[],
13413357Sciro.santilli@arm.com        help="Set a SimObject parameter relative to the root node. "
13513357Sciro.santilli@arm.com             "An extended Python multi range slicing syntax can be used "
13613357Sciro.santilli@arm.com             "for arrays. For example: "
13713357Sciro.santilli@arm.com             "'system.cpu[0,1,3:8:2].max_insts_all_threads = 42' "
13813357Sciro.santilli@arm.com             "sets max_insts_all_threads for cpus 0, 1, 3, 5 and 7 "
13913357Sciro.santilli@arm.com             "Direct parameters of the root object are not accessible, "
14013357Sciro.santilli@arm.com             "only parameters of its children.")
14111688Sandreas.hansson@arm.com
14211688Sandreas.hansson@arm.com# Add common options that assume a non-NULL ISA.
14311688Sandreas.hansson@arm.comdef addCommonOptions(parser):
14411688Sandreas.hansson@arm.com    # start by adding the base options that do not assume an ISA
14511688Sandreas.hansson@arm.com    addNoISAOptions(parser)
14611688Sandreas.hansson@arm.com
14711688Sandreas.hansson@arm.com    # system options
14811688Sandreas.hansson@arm.com    parser.add_option("--list-cpu-types",
14911688Sandreas.hansson@arm.com                      action="callback", callback=_listCpuTypes,
15011688Sandreas.hansson@arm.com                      help="List available CPU types")
15111995Sgabeblack@google.com    parser.add_option("--cpu-type", type="choice", default="AtomicSimpleCPU",
15211688Sandreas.hansson@arm.com                      choices=CpuConfig.cpu_names(),
15311688Sandreas.hansson@arm.com                      help = "type of cpu to run with")
15413432Spau.cabre@metempsy.com    parser.add_option("--list-bp-types",
15513432Spau.cabre@metempsy.com                      action="callback", callback=_listBPTypes,
15613432Spau.cabre@metempsy.com                      help="List available branch predictor types")
15713432Spau.cabre@metempsy.com    parser.add_option("--bp-type", type="choice", default=None,
15813432Spau.cabre@metempsy.com                      choices=BPConfig.bp_names(),
15913432Spau.cabre@metempsy.com                      help = """
16013432Spau.cabre@metempsy.com                      type of branch predictor to run with
16113432Spau.cabre@metempsy.com                      (if not set, use the default branch predictor of
16213432Spau.cabre@metempsy.com                      the selected CPU)""")
16311688Sandreas.hansson@arm.com    parser.add_option("--checker", action="store_true");
1649789Sakash.bagdia@arm.com    parser.add_option("--cpu-clock", action="store", type="string",
1659789Sakash.bagdia@arm.com                      default='2GHz',
1669789Sakash.bagdia@arm.com                      help="Clock for blocks running at CPU speed")
1679800Snilay@cs.wisc.edu    parser.add_option("--smt", action="store_true", default=False,
1689800Snilay@cs.wisc.edu                      help = """
1699800Snilay@cs.wisc.edu                      Only used if multiple programs are specified. If true,
1709800Snilay@cs.wisc.edu                      then the number of threads per cpu is same as the
1719800Snilay@cs.wisc.edu                      number of programs.""")
17211251Sradhika.jagtap@ARM.com    parser.add_option("--elastic-trace-en", action="store_true",
17311251Sradhika.jagtap@ARM.com                      help="""Enable capture of data dependency and instruction
17411251Sradhika.jagtap@ARM.com                      fetch traces using elastic trace probe.""")
17511251Sradhika.jagtap@ARM.com    # Trace file paths input to trace probe in a capture simulation and input
17611251Sradhika.jagtap@ARM.com    # to Trace CPU in a replay simulation
17711251Sradhika.jagtap@ARM.com    parser.add_option("--inst-trace-file", action="store", type="string",
17811251Sradhika.jagtap@ARM.com                      help="""Instruction fetch trace file input to
17911251Sradhika.jagtap@ARM.com                      Elastic Trace probe in a capture simulation and
18011251Sradhika.jagtap@ARM.com                      Trace CPU in a replay simulation""", default="")
18111251Sradhika.jagtap@ARM.com    parser.add_option("--data-trace-file", action="store", type="string",
18211251Sradhika.jagtap@ARM.com                      help="""Data dependency trace file input to
18311251Sradhika.jagtap@ARM.com                      Elastic Trace probe in a capture simulation and
18411251Sradhika.jagtap@ARM.com                      Trace CPU in a replay simulation""", default="")
1859800Snilay@cs.wisc.edu
18610037SARM gem5 Developers    parser.add_option("-l", "--lpae", action="store_true")
18710037SARM gem5 Developers    parser.add_option("-V", "--virtualisation", action="store_true")
18810037SARM gem5 Developers
18911626Smichael.lebeane@amd.com    # dist-gem5 options
19011626Smichael.lebeane@amd.com    parser.add_option("--dist", action="store_true",
19111626Smichael.lebeane@amd.com                      help="Parallel distributed gem5 simulation.")
19211703Smichael.lebeane@amd.com    parser.add_option("--dist-sync-on-pseudo-op", action="store_true",
19311703Smichael.lebeane@amd.com                      help="Use a pseudo-op to start dist-gem5 synchronization.")
19411626Smichael.lebeane@amd.com    parser.add_option("--is-switch", action="store_true",
19511626Smichael.lebeane@amd.com                      help="Select the network switch simulator process for a"\
19611626Smichael.lebeane@amd.com                      "distributed gem5 run")
19711626Smichael.lebeane@amd.com    parser.add_option("--dist-rank", default=0, action="store", type="int",
19811626Smichael.lebeane@amd.com                      help="Rank of this system within the dist gem5 run.")
19911626Smichael.lebeane@amd.com    parser.add_option("--dist-size", default=0, action="store", type="int",
20011626Smichael.lebeane@amd.com                      help="Number of gem5 processes within the dist gem5 run.")
20111626Smichael.lebeane@amd.com    parser.add_option("--dist-server-name",
20211626Smichael.lebeane@amd.com                      default="127.0.0.1",
20311626Smichael.lebeane@amd.com                      action="store", type="string",
20411626Smichael.lebeane@amd.com                      help="Name of the message server host\nDEFAULT: localhost")
20511626Smichael.lebeane@amd.com    parser.add_option("--dist-server-port",
20611626Smichael.lebeane@amd.com                      default=2200,
20711626Smichael.lebeane@amd.com                      action="store", type="int",
20811626Smichael.lebeane@amd.com                      help="Message server listen port\nDEFAULT: 2200")
20911626Smichael.lebeane@amd.com    parser.add_option("--dist-sync-repeat",
21011626Smichael.lebeane@amd.com                      default="0us",
21111626Smichael.lebeane@amd.com                      action="store", type="string",
21211626Smichael.lebeane@amd.com                      help="Repeat interval for synchronisation barriers among dist-gem5 processes\nDEFAULT: --ethernet-linkdelay")
21311626Smichael.lebeane@amd.com    parser.add_option("--dist-sync-start",
21411626Smichael.lebeane@amd.com                      default="5200000000000t",
21511626Smichael.lebeane@amd.com                      action="store", type="string",
21611626Smichael.lebeane@amd.com                      help="Time to schedule the first dist synchronisation barrier\nDEFAULT:5200000000000t")
21711626Smichael.lebeane@amd.com    parser.add_option("--ethernet-linkspeed", default="10Gbps",
21811626Smichael.lebeane@amd.com                        action="store", type="string",
21911626Smichael.lebeane@amd.com                        help="Link speed in bps\nDEFAULT: 10Gbps")
22011626Smichael.lebeane@amd.com    parser.add_option("--ethernet-linkdelay", default="10us",
22111626Smichael.lebeane@amd.com                      action="store", type="string",
22211626Smichael.lebeane@amd.com                      help="Link delay in seconds\nDEFAULT: 10us")
22311626Smichael.lebeane@amd.com
2248920Snilay@cs.wisc.edu    # Run duration options
2258920Snilay@cs.wisc.edu    parser.add_option("-I", "--maxinsts", action="store", type="int",
2268920Snilay@cs.wisc.edu                      default=None, help="""Total number of instructions to
2278920Snilay@cs.wisc.edu                                            simulate (default: run forever)""")
2288920Snilay@cs.wisc.edu    parser.add_option("--work-item-id", action="store", type="int",
2298920Snilay@cs.wisc.edu                      help="the specific work id for exit & checkpointing")
23010159Sgedare@rtems.org    parser.add_option("--num-work-ids", action="store", type="int",
23110159Sgedare@rtems.org                      help="Number of distinct work item types")
2328920Snilay@cs.wisc.edu    parser.add_option("--work-begin-cpu-id-exit", action="store", type="int",
2338920Snilay@cs.wisc.edu                      help="exit when work starts on the specified cpu")
2348920Snilay@cs.wisc.edu    parser.add_option("--work-end-exit-count", action="store", type="int",
2358920Snilay@cs.wisc.edu                      help="exit at specified work end count")
2368920Snilay@cs.wisc.edu    parser.add_option("--work-begin-exit-count", action="store", type="int",
2378920Snilay@cs.wisc.edu                      help="exit at specified work begin count")
2388920Snilay@cs.wisc.edu    parser.add_option("--init-param", action="store", type="int", default=0,
2398920Snilay@cs.wisc.edu                      help="""Parameter available in simulation with m5
2408920Snilay@cs.wisc.edu                              initparam""")
24110757SCurtis.Dunham@arm.com    parser.add_option("--initialize-only", action="store_true", default=False,
24210757SCurtis.Dunham@arm.com                      help="""Exit after initialization. Do not simulate time.
24310757SCurtis.Dunham@arm.com                              Useful when gem5 is run as a library.""")
2446776SBrad.Beckmann@amd.com
2459800Snilay@cs.wisc.edu    # Simpoint options
2469800Snilay@cs.wisc.edu    parser.add_option("--simpoint-profile", action="store_true",
2479800Snilay@cs.wisc.edu                      help="Enable basic block profiling for SimPoints")
2489800Snilay@cs.wisc.edu    parser.add_option("--simpoint-interval", type="int", default=10000000,
2499800Snilay@cs.wisc.edu                      help="SimPoint interval in num of instructions")
25010608Sdam.sunwoo@arm.com    parser.add_option("--take-simpoint-checkpoints", action="store", type="string",
25110608Sdam.sunwoo@arm.com        help="<simpoint file,weight file,interval-length,warmup-length>")
25210608Sdam.sunwoo@arm.com    parser.add_option("--restore-simpoint-checkpoint", action="store_true",
25310608Sdam.sunwoo@arm.com        help="restore from a simpoint checkpoint taken with " +
25410608Sdam.sunwoo@arm.com             "--take-simpoint-checkpoints")
2559800Snilay@cs.wisc.edu
2568920Snilay@cs.wisc.edu    # Checkpointing options
2578920Snilay@cs.wisc.edu    ###Note that performing checkpointing via python script files will override
2588920Snilay@cs.wisc.edu    ###checkpoint instructions built into binaries.
2598920Snilay@cs.wisc.edu    parser.add_option("--take-checkpoints", action="store", type="string",
2609357Sandreas.hansson@arm.com        help="<M,N> take checkpoints at tick M and every N ticks thereafter")
2618920Snilay@cs.wisc.edu    parser.add_option("--max-checkpoints", action="store", type="int",
2628920Snilay@cs.wisc.edu        help="the maximum number of checkpoints to drop", default=5)
2638920Snilay@cs.wisc.edu    parser.add_option("--checkpoint-dir", action="store", type="string",
2648920Snilay@cs.wisc.edu        help="Place all checkpoints in this absolute directory")
2658920Snilay@cs.wisc.edu    parser.add_option("-r", "--checkpoint-restore", action="store", type="int",
2668920Snilay@cs.wisc.edu        help="restore from checkpoint <N>")
2678920Snilay@cs.wisc.edu    parser.add_option("--checkpoint-at-end", action="store_true",
2688920Snilay@cs.wisc.edu                      help="take a checkpoint at end of run")
2698920Snilay@cs.wisc.edu    parser.add_option("--work-begin-checkpoint-count", action="store", type="int",
2708920Snilay@cs.wisc.edu                      help="checkpoint at specified work begin count")
2718920Snilay@cs.wisc.edu    parser.add_option("--work-end-checkpoint-count", action="store", type="int",
2728920Snilay@cs.wisc.edu                      help="checkpoint at specified work end count")
2738920Snilay@cs.wisc.edu    parser.add_option("--work-cpus-checkpoint-count", action="store", type="int",
2748920Snilay@cs.wisc.edu                      help="checkpoint and exit when active cpu count is reached")
2758920Snilay@cs.wisc.edu    parser.add_option("--restore-with-cpu", action="store", type="choice",
27611995Sgabeblack@google.com                      default="AtomicSimpleCPU", choices=CpuConfig.cpu_names(),
2778920Snilay@cs.wisc.edu                      help = "cpu type for restoring from a checkpoint")
2783395Shsul@eecs.umich.edu
2795361Srstrong@cs.ucsd.edu
2808920Snilay@cs.wisc.edu    # CPU Switching - default switch model goes from a checkpoint
2818920Snilay@cs.wisc.edu    # to a timing simple CPU with caches to warm up, then to detailed CPU for
2828920Snilay@cs.wisc.edu    # data measurement
2839151Satgutier@umich.edu    parser.add_option("--repeat-switch", action="store", type="int",
2849151Satgutier@umich.edu        default=None,
2859151Satgutier@umich.edu        help="switch back and forth between CPUs with period <N>")
2869151Satgutier@umich.edu    parser.add_option("-s", "--standard-switch", action="store", type="int",
2879151Satgutier@umich.edu        default=None,
2889151Satgutier@umich.edu        help="switch from timing to Detailed CPU after warmup period of <N>")
2899562Ssaidi@eecs.umich.edu    parser.add_option("-p", "--prog-interval", type="str",
2908920Snilay@cs.wisc.edu        help="CPU Progress Interval")
2918920Snilay@cs.wisc.edu
2928920Snilay@cs.wisc.edu    # Fastforwarding and simpoint related materials
2938920Snilay@cs.wisc.edu    parser.add_option("-W", "--warmup-insts", action="store", type="int",
2948920Snilay@cs.wisc.edu        default=None,
2958920Snilay@cs.wisc.edu        help="Warmup period in total instructions (requires --standard-switch)")
2968920Snilay@cs.wisc.edu    parser.add_option("--bench", action="store", type="string", default=None,
2978920Snilay@cs.wisc.edu        help="base names for --take-checkpoint and --checkpoint-restore")
2988920Snilay@cs.wisc.edu    parser.add_option("-F", "--fast-forward", action="store", type="string",
2998920Snilay@cs.wisc.edu        default=None,
3008920Snilay@cs.wisc.edu        help="Number of instructions to fast forward before switching")
3018920Snilay@cs.wisc.edu    parser.add_option("-S", "--simpoint", action="store_true", default=False,
3028920Snilay@cs.wisc.edu        help="""Use workload simpoints as an instruction offset for
3038920Snilay@cs.wisc.edu                --checkpoint-restore or --take-checkpoint.""")
3048920Snilay@cs.wisc.edu    parser.add_option("--at-instruction", action="store_true", default=False,
3058920Snilay@cs.wisc.edu        help="""Treat value of --checkpoint-restore or --take-checkpoint as a
3068920Snilay@cs.wisc.edu                number of instructions.""")
30710037SARM gem5 Developers    parser.add_option("--spec-input", default="ref", type="choice",
30810037SARM gem5 Developers                      choices=["ref", "test", "train", "smred", "mdred",
30910037SARM gem5 Developers                               "lgred"],
31010037SARM gem5 Developers                      help="Input set size for SPEC CPU2000 benchmarks.")
31110037SARM gem5 Developers    parser.add_option("--arm-iset", default="arm", type="choice",
31210037SARM gem5 Developers                      choices=["arm", "thumb", "aarch64"],
31310037SARM gem5 Developers                      help="ARM instruction set.")
31410037SARM gem5 Developers
3158920Snilay@cs.wisc.edu
3168920Snilay@cs.wisc.edudef addSEOptions(parser):
3178920Snilay@cs.wisc.edu    # Benchmark options
3188920Snilay@cs.wisc.edu    parser.add_option("-c", "--cmd", default="",
3198920Snilay@cs.wisc.edu                      help="The binary to run in syscall emulation mode.")
3208920Snilay@cs.wisc.edu    parser.add_option("-o", "--options", default="",
3218920Snilay@cs.wisc.edu                      help="""The options to pass to the binary, use " "
3228920Snilay@cs.wisc.edu                              around the entire string""")
32310803Sbrandon.potter@amd.com    parser.add_option("-e", "--env", default="",
32410803Sbrandon.potter@amd.com                      help="Initialize workload environment from text file.")
3258920Snilay@cs.wisc.edu    parser.add_option("-i", "--input", default="",
3268920Snilay@cs.wisc.edu                      help="Read stdin from a file.")
3278920Snilay@cs.wisc.edu    parser.add_option("--output", default="",
3288920Snilay@cs.wisc.edu                      help="Redirect stdout to a file.")
3298920Snilay@cs.wisc.edu    parser.add_option("--errout", default="",
3308920Snilay@cs.wisc.edu                      help="Redirect stderr to a file.")
3318920Snilay@cs.wisc.edu
3328920Snilay@cs.wisc.edudef addFSOptions(parser):
33311688Sandreas.hansson@arm.com    from FSConfig import os_types
33411688Sandreas.hansson@arm.com
3358920Snilay@cs.wisc.edu    # Simulation options
3368920Snilay@cs.wisc.edu    parser.add_option("--timesync", action="store_true",
3378920Snilay@cs.wisc.edu            help="Prevent simulated time from getting ahead of real time")
3388920Snilay@cs.wisc.edu
3398920Snilay@cs.wisc.edu    # System options
3408920Snilay@cs.wisc.edu    parser.add_option("--kernel", action="store", type="string")
34110747SChris.Emmons@arm.com    parser.add_option("--os-type", action="store", type="choice",
34213731Sandreas.sandberg@arm.com                      choices=os_types[str(buildEnv['TARGET_ISA'])],
34313731Sandreas.sandberg@arm.com                      default="linux",
34413731Sandreas.sandberg@arm.com                      help="Specifies type of OS to boot")
3458920Snilay@cs.wisc.edu    parser.add_option("--script", action="store", type="string")
3468920Snilay@cs.wisc.edu    parser.add_option("--frame-capture", action="store_true",
3478920Snilay@cs.wisc.edu            help="Stores changed frame buffers from the VNC server to compressed "\
3488920Snilay@cs.wisc.edu            "files in the gem5 output directory")
3498920Snilay@cs.wisc.edu
3508920Snilay@cs.wisc.edu    if buildEnv['TARGET_ISA'] == "arm":
3518920Snilay@cs.wisc.edu        parser.add_option("--bare-metal", action="store_true",
3528920Snilay@cs.wisc.edu                   help="Provide the raw system without the linux specific bits")
35311238Sandreas.sandberg@arm.com        parser.add_option("--list-machine-types",
35411238Sandreas.sandberg@arm.com                          action="callback", callback=_listPlatformTypes,
35511238Sandreas.sandberg@arm.com                      help="List available platform types")
3568920Snilay@cs.wisc.edu        parser.add_option("--machine-type", action="store", type="choice",
35711238Sandreas.sandberg@arm.com                choices=PlatformConfig.platform_names(),
35811238Sandreas.sandberg@arm.com                default="VExpress_EMM")
3599539Satgutier@umich.edu        parser.add_option("--dtb-filename", action="store", type="string",
3609539Satgutier@umich.edu              help="Specifies device tree blob file to use with device-tree-"\
3619539Satgutier@umich.edu              "enabled kernels")
36212079Sgedare@rtems.org        parser.add_option("--enable-security-extensions", action="store_true",
36312079Sgedare@rtems.org              help="Turn on the ARM Security Extensions")
3649935Sdam.sunwoo@arm.com        parser.add_option("--enable-context-switch-stats-dump", \
3659935Sdam.sunwoo@arm.com                action="store_true", help="Enable stats dump at context "\
3669935Sdam.sunwoo@arm.com                "switches and dump tasks file (required for Streamline)")
3679935Sdam.sunwoo@arm.com
3688920Snilay@cs.wisc.edu    # Benchmark options
3698920Snilay@cs.wisc.edu    parser.add_option("--dual", action="store_true",
3708920Snilay@cs.wisc.edu                      help="Simulate two systems attached with an ethernet link")
3718920Snilay@cs.wisc.edu    parser.add_option("-b", "--benchmark", action="store", type="string",
3728920Snilay@cs.wisc.edu                      dest="benchmark",
3738920Snilay@cs.wisc.edu                      help="Specify the benchmark to run. Available benchmarks: %s"\
3748920Snilay@cs.wisc.edu                      % DefinedBenchmarks)
3758920Snilay@cs.wisc.edu
3768920Snilay@cs.wisc.edu    # Metafile options
3778920Snilay@cs.wisc.edu    parser.add_option("--etherdump", action="store", type="string", dest="etherdump",
3788920Snilay@cs.wisc.edu                      help="Specify the filename to dump a pcap capture of the" \
3798920Snilay@cs.wisc.edu                      "ethernet traffic")
3808956Sjayneel@cs.wisc.edu
3818956Sjayneel@cs.wisc.edu    # Disk Image Options
3828956Sjayneel@cs.wisc.edu    parser.add_option("--disk-image", action="store", type="string", default=None,
3838956Sjayneel@cs.wisc.edu                      help="Path to the disk image to use.")
38410697SCurtis.Dunham@arm.com    parser.add_option("--root-device", action="store", type="string", default=None,
38510697SCurtis.Dunham@arm.com                      help="OS device name for root partition")
38610594Sgabeblack@google.com
38710594Sgabeblack@google.com    # Command line options
38810594Sgabeblack@google.com    parser.add_option("--command-line", action="store", type="string",
38910594Sgabeblack@google.com                      default=None,
39010594Sgabeblack@google.com                      help="Template for the kernel command line.")
39110594Sgabeblack@google.com    parser.add_option("--command-line-file", action="store",
39210594Sgabeblack@google.com                      default=None, type="string",
39310594Sgabeblack@google.com                      help="File with a template for the kernel command line")
394