Options.py revision 13774
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 4113774Sandreas.sandberg@arm.comfrom __future__ import print_function 4213774Sandreas.sandberg@arm.comfrom __future__ import absolute_import 4313774Sandreas.sandberg@arm.com 448920Snilay@cs.wisc.eduimport m5 458920Snilay@cs.wisc.edufrom m5.defines import buildEnv 468920Snilay@cs.wisc.edufrom m5.objects import * 477025SBrad.Beckmann@amd.com 4813774Sandreas.sandberg@arm.comfrom .Benchmarks import * 4913774Sandreas.sandberg@arm.comfrom . import CpuConfig 5013774Sandreas.sandberg@arm.comfrom . import BPConfig 5113774Sandreas.sandberg@arm.comfrom . import MemConfig 5213774Sandreas.sandberg@arm.comfrom . import PlatformConfig 5310747SChris.Emmons@arm.com 549520SAndreas.Sandberg@ARM.comdef _listCpuTypes(option, opt, value, parser): 559520SAndreas.Sandberg@ARM.com CpuConfig.print_cpu_list() 569520SAndreas.Sandberg@ARM.com sys.exit(0) 579520SAndreas.Sandberg@ARM.com 5813432Spau.cabre@metempsy.comdef _listBPTypes(option, opt, value, parser): 5913432Spau.cabre@metempsy.com BPConfig.print_bp_list() 6013432Spau.cabre@metempsy.com sys.exit(0) 6113432Spau.cabre@metempsy.com 629665Sandreas.hansson@arm.comdef _listMemTypes(option, opt, value, parser): 639665Sandreas.hansson@arm.com MemConfig.print_mem_list() 649665Sandreas.hansson@arm.com sys.exit(0) 659665Sandreas.hansson@arm.com 6611238Sandreas.sandberg@arm.comdef _listPlatformTypes(option, opt, value, parser): 6711238Sandreas.sandberg@arm.com PlatformConfig.print_platform_list() 6811238Sandreas.sandberg@arm.com sys.exit(0) 6911238Sandreas.sandberg@arm.com 7011688Sandreas.hansson@arm.com# Add the very basic options that work also in the case of the no ISA 7111688Sandreas.hansson@arm.com# being used, and consequently no CPUs, but rather various types of 7211688Sandreas.hansson@arm.com# testers and traffic generators. 7311688Sandreas.hansson@arm.comdef addNoISAOptions(parser): 748920Snilay@cs.wisc.edu parser.add_option("-n", "--num-cpus", type="int", default=1) 759827Sakash.bagdia@arm.com parser.add_option("--sys-voltage", action="store", type="string", 769827Sakash.bagdia@arm.com default='1.0V', 779827Sakash.bagdia@arm.com help = """Top-level voltage for blocks running at system 789827Sakash.bagdia@arm.com power supply""") 799790Sakash.bagdia@arm.com parser.add_option("--sys-clock", action="store", type="string", 809790Sakash.bagdia@arm.com default='1GHz', 819790Sakash.bagdia@arm.com help = """Top-level clock for blocks running at system 829790Sakash.bagdia@arm.com speed""") 8311688Sandreas.hansson@arm.com 8411688Sandreas.hansson@arm.com # Memory Options 8511688Sandreas.hansson@arm.com parser.add_option("--list-mem-types", 8611688Sandreas.hansson@arm.com action="callback", callback=_listMemTypes, 8711688Sandreas.hansson@arm.com help="List available memory types") 8811837Swendy.elsasser@arm.com parser.add_option("--mem-type", type="choice", default="DDR3_1600_8x8", 8911688Sandreas.hansson@arm.com choices=MemConfig.mem_names(), 9011688Sandreas.hansson@arm.com help = "type of memory to use") 9111688Sandreas.hansson@arm.com parser.add_option("--mem-channels", type="int", default=1, 9211688Sandreas.hansson@arm.com help = "number of memory channels") 9311688Sandreas.hansson@arm.com parser.add_option("--mem-ranks", type="int", default=None, 9411688Sandreas.hansson@arm.com help = "number of memory ranks per channel") 9511688Sandreas.hansson@arm.com parser.add_option("--mem-size", action="store", type="string", 9611688Sandreas.hansson@arm.com default="512MB", 9711688Sandreas.hansson@arm.com help="Specify the physical memory size (single memory)") 9811688Sandreas.hansson@arm.com 9911688Sandreas.hansson@arm.com 10011688Sandreas.hansson@arm.com parser.add_option("--memchecker", action="store_true") 10111688Sandreas.hansson@arm.com 10211688Sandreas.hansson@arm.com # Cache Options 10311688Sandreas.hansson@arm.com parser.add_option("--external-memory-system", type="string", 10411688Sandreas.hansson@arm.com help="use external ports of this port_type for caches") 10511688Sandreas.hansson@arm.com parser.add_option("--tlm-memory", type="string", 10611688Sandreas.hansson@arm.com help="use external port for SystemC TLM cosimulation") 10711688Sandreas.hansson@arm.com parser.add_option("--caches", action="store_true") 10811688Sandreas.hansson@arm.com parser.add_option("--l2cache", action="store_true") 10911688Sandreas.hansson@arm.com parser.add_option("--num-dirs", type="int", default=1) 11011688Sandreas.hansson@arm.com parser.add_option("--num-l2caches", type="int", default=1) 11111688Sandreas.hansson@arm.com parser.add_option("--num-l3caches", type="int", default=1) 11211688Sandreas.hansson@arm.com parser.add_option("--l1d_size", type="string", default="64kB") 11311688Sandreas.hansson@arm.com parser.add_option("--l1i_size", type="string", default="32kB") 11411688Sandreas.hansson@arm.com parser.add_option("--l2_size", type="string", default="2MB") 11511688Sandreas.hansson@arm.com parser.add_option("--l3_size", type="string", default="16MB") 11611688Sandreas.hansson@arm.com parser.add_option("--l1d_assoc", type="int", default=2) 11711688Sandreas.hansson@arm.com parser.add_option("--l1i_assoc", type="int", default=2) 11811688Sandreas.hansson@arm.com parser.add_option("--l2_assoc", type="int", default=8) 11911688Sandreas.hansson@arm.com parser.add_option("--l3_assoc", type="int", default=16) 12011688Sandreas.hansson@arm.com parser.add_option("--cacheline_size", type="int", default=64) 12111688Sandreas.hansson@arm.com 12211688Sandreas.hansson@arm.com # Enable Ruby 12311688Sandreas.hansson@arm.com parser.add_option("--ruby", action="store_true") 12411688Sandreas.hansson@arm.com 12511688Sandreas.hansson@arm.com # Run duration options 12611688Sandreas.hansson@arm.com parser.add_option("-m", "--abs-max-tick", type="int", default=m5.MaxTick, 12711688Sandreas.hansson@arm.com metavar="TICKS", help="Run to absolute simulated tick " 12811688Sandreas.hansson@arm.com "specified including ticks from a restored checkpoint") 12911688Sandreas.hansson@arm.com parser.add_option("--rel-max-tick", type="int", default=None, 13011688Sandreas.hansson@arm.com metavar="TICKS", help="Simulate for specified number of" 13111688Sandreas.hansson@arm.com " ticks relative to the simulation start tick (e.g. if " 13211688Sandreas.hansson@arm.com "restoring a checkpoint)") 13311688Sandreas.hansson@arm.com parser.add_option("--maxtime", type="float", default=None, 13411688Sandreas.hansson@arm.com help="Run to the specified absolute simulated time in " 13511688Sandreas.hansson@arm.com "seconds") 13613357Sciro.santilli@arm.com parser.add_option("-P", "--param", action="append", default=[], 13713357Sciro.santilli@arm.com help="Set a SimObject parameter relative to the root node. " 13813357Sciro.santilli@arm.com "An extended Python multi range slicing syntax can be used " 13913357Sciro.santilli@arm.com "for arrays. For example: " 14013357Sciro.santilli@arm.com "'system.cpu[0,1,3:8:2].max_insts_all_threads = 42' " 14113357Sciro.santilli@arm.com "sets max_insts_all_threads for cpus 0, 1, 3, 5 and 7 " 14213357Sciro.santilli@arm.com "Direct parameters of the root object are not accessible, " 14313357Sciro.santilli@arm.com "only parameters of its children.") 14411688Sandreas.hansson@arm.com 14511688Sandreas.hansson@arm.com# Add common options that assume a non-NULL ISA. 14611688Sandreas.hansson@arm.comdef addCommonOptions(parser): 14711688Sandreas.hansson@arm.com # start by adding the base options that do not assume an ISA 14811688Sandreas.hansson@arm.com addNoISAOptions(parser) 14911688Sandreas.hansson@arm.com 15011688Sandreas.hansson@arm.com # system options 15111688Sandreas.hansson@arm.com parser.add_option("--list-cpu-types", 15211688Sandreas.hansson@arm.com action="callback", callback=_listCpuTypes, 15311688Sandreas.hansson@arm.com help="List available CPU types") 15411995Sgabeblack@google.com parser.add_option("--cpu-type", type="choice", default="AtomicSimpleCPU", 15511688Sandreas.hansson@arm.com choices=CpuConfig.cpu_names(), 15611688Sandreas.hansson@arm.com help = "type of cpu to run with") 15713432Spau.cabre@metempsy.com parser.add_option("--list-bp-types", 15813432Spau.cabre@metempsy.com action="callback", callback=_listBPTypes, 15913432Spau.cabre@metempsy.com help="List available branch predictor types") 16013432Spau.cabre@metempsy.com parser.add_option("--bp-type", type="choice", default=None, 16113432Spau.cabre@metempsy.com choices=BPConfig.bp_names(), 16213432Spau.cabre@metempsy.com help = """ 16313432Spau.cabre@metempsy.com type of branch predictor to run with 16413432Spau.cabre@metempsy.com (if not set, use the default branch predictor of 16513432Spau.cabre@metempsy.com the selected CPU)""") 16611688Sandreas.hansson@arm.com parser.add_option("--checker", action="store_true"); 1679789Sakash.bagdia@arm.com parser.add_option("--cpu-clock", action="store", type="string", 1689789Sakash.bagdia@arm.com default='2GHz', 1699789Sakash.bagdia@arm.com help="Clock for blocks running at CPU speed") 1709800Snilay@cs.wisc.edu parser.add_option("--smt", action="store_true", default=False, 1719800Snilay@cs.wisc.edu help = """ 1729800Snilay@cs.wisc.edu Only used if multiple programs are specified. If true, 1739800Snilay@cs.wisc.edu then the number of threads per cpu is same as the 1749800Snilay@cs.wisc.edu number of programs.""") 17511251Sradhika.jagtap@ARM.com parser.add_option("--elastic-trace-en", action="store_true", 17611251Sradhika.jagtap@ARM.com help="""Enable capture of data dependency and instruction 17711251Sradhika.jagtap@ARM.com fetch traces using elastic trace probe.""") 17811251Sradhika.jagtap@ARM.com # Trace file paths input to trace probe in a capture simulation and input 17911251Sradhika.jagtap@ARM.com # to Trace CPU in a replay simulation 18011251Sradhika.jagtap@ARM.com parser.add_option("--inst-trace-file", action="store", type="string", 18111251Sradhika.jagtap@ARM.com help="""Instruction fetch trace file input to 18211251Sradhika.jagtap@ARM.com Elastic Trace probe in a capture simulation and 18311251Sradhika.jagtap@ARM.com Trace CPU in a replay simulation""", default="") 18411251Sradhika.jagtap@ARM.com parser.add_option("--data-trace-file", action="store", type="string", 18511251Sradhika.jagtap@ARM.com help="""Data dependency trace file input to 18611251Sradhika.jagtap@ARM.com Elastic Trace probe in a capture simulation and 18711251Sradhika.jagtap@ARM.com Trace CPU in a replay simulation""", default="") 1889800Snilay@cs.wisc.edu 18910037SARM gem5 Developers parser.add_option("-l", "--lpae", action="store_true") 19010037SARM gem5 Developers parser.add_option("-V", "--virtualisation", action="store_true") 19110037SARM gem5 Developers 19211626Smichael.lebeane@amd.com # dist-gem5 options 19311626Smichael.lebeane@amd.com parser.add_option("--dist", action="store_true", 19411626Smichael.lebeane@amd.com help="Parallel distributed gem5 simulation.") 19511703Smichael.lebeane@amd.com parser.add_option("--dist-sync-on-pseudo-op", action="store_true", 19611703Smichael.lebeane@amd.com help="Use a pseudo-op to start dist-gem5 synchronization.") 19711626Smichael.lebeane@amd.com parser.add_option("--is-switch", action="store_true", 19811626Smichael.lebeane@amd.com help="Select the network switch simulator process for a"\ 19911626Smichael.lebeane@amd.com "distributed gem5 run") 20011626Smichael.lebeane@amd.com parser.add_option("--dist-rank", default=0, action="store", type="int", 20111626Smichael.lebeane@amd.com help="Rank of this system within the dist gem5 run.") 20211626Smichael.lebeane@amd.com parser.add_option("--dist-size", default=0, action="store", type="int", 20311626Smichael.lebeane@amd.com help="Number of gem5 processes within the dist gem5 run.") 20411626Smichael.lebeane@amd.com parser.add_option("--dist-server-name", 20511626Smichael.lebeane@amd.com default="127.0.0.1", 20611626Smichael.lebeane@amd.com action="store", type="string", 20711626Smichael.lebeane@amd.com help="Name of the message server host\nDEFAULT: localhost") 20811626Smichael.lebeane@amd.com parser.add_option("--dist-server-port", 20911626Smichael.lebeane@amd.com default=2200, 21011626Smichael.lebeane@amd.com action="store", type="int", 21111626Smichael.lebeane@amd.com help="Message server listen port\nDEFAULT: 2200") 21211626Smichael.lebeane@amd.com parser.add_option("--dist-sync-repeat", 21311626Smichael.lebeane@amd.com default="0us", 21411626Smichael.lebeane@amd.com action="store", type="string", 21511626Smichael.lebeane@amd.com help="Repeat interval for synchronisation barriers among dist-gem5 processes\nDEFAULT: --ethernet-linkdelay") 21611626Smichael.lebeane@amd.com parser.add_option("--dist-sync-start", 21711626Smichael.lebeane@amd.com default="5200000000000t", 21811626Smichael.lebeane@amd.com action="store", type="string", 21911626Smichael.lebeane@amd.com help="Time to schedule the first dist synchronisation barrier\nDEFAULT:5200000000000t") 22011626Smichael.lebeane@amd.com parser.add_option("--ethernet-linkspeed", default="10Gbps", 22111626Smichael.lebeane@amd.com action="store", type="string", 22211626Smichael.lebeane@amd.com help="Link speed in bps\nDEFAULT: 10Gbps") 22311626Smichael.lebeane@amd.com parser.add_option("--ethernet-linkdelay", default="10us", 22411626Smichael.lebeane@amd.com action="store", type="string", 22511626Smichael.lebeane@amd.com help="Link delay in seconds\nDEFAULT: 10us") 22611626Smichael.lebeane@amd.com 2278920Snilay@cs.wisc.edu # Run duration options 2288920Snilay@cs.wisc.edu parser.add_option("-I", "--maxinsts", action="store", type="int", 2298920Snilay@cs.wisc.edu default=None, help="""Total number of instructions to 2308920Snilay@cs.wisc.edu simulate (default: run forever)""") 2318920Snilay@cs.wisc.edu parser.add_option("--work-item-id", action="store", type="int", 2328920Snilay@cs.wisc.edu help="the specific work id for exit & checkpointing") 23310159Sgedare@rtems.org parser.add_option("--num-work-ids", action="store", type="int", 23410159Sgedare@rtems.org help="Number of distinct work item types") 2358920Snilay@cs.wisc.edu parser.add_option("--work-begin-cpu-id-exit", action="store", type="int", 2368920Snilay@cs.wisc.edu help="exit when work starts on the specified cpu") 2378920Snilay@cs.wisc.edu parser.add_option("--work-end-exit-count", action="store", type="int", 2388920Snilay@cs.wisc.edu help="exit at specified work end count") 2398920Snilay@cs.wisc.edu parser.add_option("--work-begin-exit-count", action="store", type="int", 2408920Snilay@cs.wisc.edu help="exit at specified work begin count") 2418920Snilay@cs.wisc.edu parser.add_option("--init-param", action="store", type="int", default=0, 2428920Snilay@cs.wisc.edu help="""Parameter available in simulation with m5 2438920Snilay@cs.wisc.edu initparam""") 24410757SCurtis.Dunham@arm.com parser.add_option("--initialize-only", action="store_true", default=False, 24510757SCurtis.Dunham@arm.com help="""Exit after initialization. Do not simulate time. 24610757SCurtis.Dunham@arm.com Useful when gem5 is run as a library.""") 2476776SBrad.Beckmann@amd.com 2489800Snilay@cs.wisc.edu # Simpoint options 2499800Snilay@cs.wisc.edu parser.add_option("--simpoint-profile", action="store_true", 2509800Snilay@cs.wisc.edu help="Enable basic block profiling for SimPoints") 2519800Snilay@cs.wisc.edu parser.add_option("--simpoint-interval", type="int", default=10000000, 2529800Snilay@cs.wisc.edu help="SimPoint interval in num of instructions") 25310608Sdam.sunwoo@arm.com parser.add_option("--take-simpoint-checkpoints", action="store", type="string", 25410608Sdam.sunwoo@arm.com help="<simpoint file,weight file,interval-length,warmup-length>") 25510608Sdam.sunwoo@arm.com parser.add_option("--restore-simpoint-checkpoint", action="store_true", 25610608Sdam.sunwoo@arm.com help="restore from a simpoint checkpoint taken with " + 25710608Sdam.sunwoo@arm.com "--take-simpoint-checkpoints") 2589800Snilay@cs.wisc.edu 2598920Snilay@cs.wisc.edu # Checkpointing options 2608920Snilay@cs.wisc.edu ###Note that performing checkpointing via python script files will override 2618920Snilay@cs.wisc.edu ###checkpoint instructions built into binaries. 2628920Snilay@cs.wisc.edu parser.add_option("--take-checkpoints", action="store", type="string", 2639357Sandreas.hansson@arm.com help="<M,N> take checkpoints at tick M and every N ticks thereafter") 2648920Snilay@cs.wisc.edu parser.add_option("--max-checkpoints", action="store", type="int", 2658920Snilay@cs.wisc.edu help="the maximum number of checkpoints to drop", default=5) 2668920Snilay@cs.wisc.edu parser.add_option("--checkpoint-dir", action="store", type="string", 2678920Snilay@cs.wisc.edu help="Place all checkpoints in this absolute directory") 2688920Snilay@cs.wisc.edu parser.add_option("-r", "--checkpoint-restore", action="store", type="int", 2698920Snilay@cs.wisc.edu help="restore from checkpoint <N>") 2708920Snilay@cs.wisc.edu parser.add_option("--checkpoint-at-end", action="store_true", 2718920Snilay@cs.wisc.edu help="take a checkpoint at end of run") 2728920Snilay@cs.wisc.edu parser.add_option("--work-begin-checkpoint-count", action="store", type="int", 2738920Snilay@cs.wisc.edu help="checkpoint at specified work begin count") 2748920Snilay@cs.wisc.edu parser.add_option("--work-end-checkpoint-count", action="store", type="int", 2758920Snilay@cs.wisc.edu help="checkpoint at specified work end count") 2768920Snilay@cs.wisc.edu parser.add_option("--work-cpus-checkpoint-count", action="store", type="int", 2778920Snilay@cs.wisc.edu help="checkpoint and exit when active cpu count is reached") 2788920Snilay@cs.wisc.edu parser.add_option("--restore-with-cpu", action="store", type="choice", 27911995Sgabeblack@google.com default="AtomicSimpleCPU", choices=CpuConfig.cpu_names(), 2808920Snilay@cs.wisc.edu help = "cpu type for restoring from a checkpoint") 2813395Shsul@eecs.umich.edu 2825361Srstrong@cs.ucsd.edu 2838920Snilay@cs.wisc.edu # CPU Switching - default switch model goes from a checkpoint 2848920Snilay@cs.wisc.edu # to a timing simple CPU with caches to warm up, then to detailed CPU for 2858920Snilay@cs.wisc.edu # data measurement 2869151Satgutier@umich.edu parser.add_option("--repeat-switch", action="store", type="int", 2879151Satgutier@umich.edu default=None, 2889151Satgutier@umich.edu help="switch back and forth between CPUs with period <N>") 2899151Satgutier@umich.edu parser.add_option("-s", "--standard-switch", action="store", type="int", 2909151Satgutier@umich.edu default=None, 2919151Satgutier@umich.edu help="switch from timing to Detailed CPU after warmup period of <N>") 2929562Ssaidi@eecs.umich.edu parser.add_option("-p", "--prog-interval", type="str", 2938920Snilay@cs.wisc.edu help="CPU Progress Interval") 2948920Snilay@cs.wisc.edu 2958920Snilay@cs.wisc.edu # Fastforwarding and simpoint related materials 2968920Snilay@cs.wisc.edu parser.add_option("-W", "--warmup-insts", action="store", type="int", 2978920Snilay@cs.wisc.edu default=None, 2988920Snilay@cs.wisc.edu help="Warmup period in total instructions (requires --standard-switch)") 2998920Snilay@cs.wisc.edu parser.add_option("--bench", action="store", type="string", default=None, 3008920Snilay@cs.wisc.edu help="base names for --take-checkpoint and --checkpoint-restore") 3018920Snilay@cs.wisc.edu parser.add_option("-F", "--fast-forward", action="store", type="string", 3028920Snilay@cs.wisc.edu default=None, 3038920Snilay@cs.wisc.edu help="Number of instructions to fast forward before switching") 3048920Snilay@cs.wisc.edu parser.add_option("-S", "--simpoint", action="store_true", default=False, 3058920Snilay@cs.wisc.edu help="""Use workload simpoints as an instruction offset for 3068920Snilay@cs.wisc.edu --checkpoint-restore or --take-checkpoint.""") 3078920Snilay@cs.wisc.edu parser.add_option("--at-instruction", action="store_true", default=False, 3088920Snilay@cs.wisc.edu help="""Treat value of --checkpoint-restore or --take-checkpoint as a 3098920Snilay@cs.wisc.edu number of instructions.""") 31010037SARM gem5 Developers parser.add_option("--spec-input", default="ref", type="choice", 31110037SARM gem5 Developers choices=["ref", "test", "train", "smred", "mdred", 31210037SARM gem5 Developers "lgred"], 31310037SARM gem5 Developers help="Input set size for SPEC CPU2000 benchmarks.") 31410037SARM gem5 Developers parser.add_option("--arm-iset", default="arm", type="choice", 31510037SARM gem5 Developers choices=["arm", "thumb", "aarch64"], 31610037SARM gem5 Developers help="ARM instruction set.") 31710037SARM gem5 Developers 3188920Snilay@cs.wisc.edu 3198920Snilay@cs.wisc.edudef addSEOptions(parser): 3208920Snilay@cs.wisc.edu # Benchmark options 3218920Snilay@cs.wisc.edu parser.add_option("-c", "--cmd", default="", 3228920Snilay@cs.wisc.edu help="The binary to run in syscall emulation mode.") 3238920Snilay@cs.wisc.edu parser.add_option("-o", "--options", default="", 3248920Snilay@cs.wisc.edu help="""The options to pass to the binary, use " " 3258920Snilay@cs.wisc.edu around the entire string""") 32610803Sbrandon.potter@amd.com parser.add_option("-e", "--env", default="", 32710803Sbrandon.potter@amd.com help="Initialize workload environment from text file.") 3288920Snilay@cs.wisc.edu parser.add_option("-i", "--input", default="", 3298920Snilay@cs.wisc.edu help="Read stdin from a file.") 3308920Snilay@cs.wisc.edu parser.add_option("--output", default="", 3318920Snilay@cs.wisc.edu help="Redirect stdout to a file.") 3328920Snilay@cs.wisc.edu parser.add_option("--errout", default="", 3338920Snilay@cs.wisc.edu help="Redirect stderr to a file.") 3348920Snilay@cs.wisc.edu 3358920Snilay@cs.wisc.edudef addFSOptions(parser): 33613774Sandreas.sandberg@arm.com from .FSConfig import os_types 33711688Sandreas.hansson@arm.com 3388920Snilay@cs.wisc.edu # Simulation options 3398920Snilay@cs.wisc.edu parser.add_option("--timesync", action="store_true", 3408920Snilay@cs.wisc.edu help="Prevent simulated time from getting ahead of real time") 3418920Snilay@cs.wisc.edu 3428920Snilay@cs.wisc.edu # System options 3438920Snilay@cs.wisc.edu parser.add_option("--kernel", action="store", type="string") 34410747SChris.Emmons@arm.com parser.add_option("--os-type", action="store", type="choice", 34513731Sandreas.sandberg@arm.com choices=os_types[str(buildEnv['TARGET_ISA'])], 34613731Sandreas.sandberg@arm.com default="linux", 34713731Sandreas.sandberg@arm.com help="Specifies type of OS to boot") 3488920Snilay@cs.wisc.edu parser.add_option("--script", action="store", type="string") 3498920Snilay@cs.wisc.edu parser.add_option("--frame-capture", action="store_true", 3508920Snilay@cs.wisc.edu help="Stores changed frame buffers from the VNC server to compressed "\ 3518920Snilay@cs.wisc.edu "files in the gem5 output directory") 3528920Snilay@cs.wisc.edu 3538920Snilay@cs.wisc.edu if buildEnv['TARGET_ISA'] == "arm": 3548920Snilay@cs.wisc.edu parser.add_option("--bare-metal", action="store_true", 3558920Snilay@cs.wisc.edu help="Provide the raw system without the linux specific bits") 35611238Sandreas.sandberg@arm.com parser.add_option("--list-machine-types", 35711238Sandreas.sandberg@arm.com action="callback", callback=_listPlatformTypes, 35811238Sandreas.sandberg@arm.com help="List available platform types") 3598920Snilay@cs.wisc.edu parser.add_option("--machine-type", action="store", type="choice", 36011238Sandreas.sandberg@arm.com choices=PlatformConfig.platform_names(), 36111238Sandreas.sandberg@arm.com default="VExpress_EMM") 3629539Satgutier@umich.edu parser.add_option("--dtb-filename", action="store", type="string", 3639539Satgutier@umich.edu help="Specifies device tree blob file to use with device-tree-"\ 3649539Satgutier@umich.edu "enabled kernels") 36512079Sgedare@rtems.org parser.add_option("--enable-security-extensions", action="store_true", 36612079Sgedare@rtems.org help="Turn on the ARM Security Extensions") 3679935Sdam.sunwoo@arm.com parser.add_option("--enable-context-switch-stats-dump", \ 3689935Sdam.sunwoo@arm.com action="store_true", help="Enable stats dump at context "\ 3699935Sdam.sunwoo@arm.com "switches and dump tasks file (required for Streamline)") 3709935Sdam.sunwoo@arm.com 3718920Snilay@cs.wisc.edu # Benchmark options 3728920Snilay@cs.wisc.edu parser.add_option("--dual", action="store_true", 3738920Snilay@cs.wisc.edu help="Simulate two systems attached with an ethernet link") 3748920Snilay@cs.wisc.edu parser.add_option("-b", "--benchmark", action="store", type="string", 3758920Snilay@cs.wisc.edu dest="benchmark", 3768920Snilay@cs.wisc.edu help="Specify the benchmark to run. Available benchmarks: %s"\ 3778920Snilay@cs.wisc.edu % DefinedBenchmarks) 3788920Snilay@cs.wisc.edu 3798920Snilay@cs.wisc.edu # Metafile options 3808920Snilay@cs.wisc.edu parser.add_option("--etherdump", action="store", type="string", dest="etherdump", 3818920Snilay@cs.wisc.edu help="Specify the filename to dump a pcap capture of the" \ 3828920Snilay@cs.wisc.edu "ethernet traffic") 3838956Sjayneel@cs.wisc.edu 3848956Sjayneel@cs.wisc.edu # Disk Image Options 3858956Sjayneel@cs.wisc.edu parser.add_option("--disk-image", action="store", type="string", default=None, 3868956Sjayneel@cs.wisc.edu help="Path to the disk image to use.") 38710697SCurtis.Dunham@arm.com parser.add_option("--root-device", action="store", type="string", default=None, 38810697SCurtis.Dunham@arm.com help="OS device name for root partition") 38910594Sgabeblack@google.com 39010594Sgabeblack@google.com # Command line options 39110594Sgabeblack@google.com parser.add_option("--command-line", action="store", type="string", 39210594Sgabeblack@google.com default=None, 39310594Sgabeblack@google.com help="Template for the kernel command line.") 39410594Sgabeblack@google.com parser.add_option("--command-line-file", action="store", 39510594Sgabeblack@google.com default=None, type="string", 39610594Sgabeblack@google.com help="File with a template for the kernel command line") 397