Options.py revision 13958:1945df12e5b0
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
9# terms below provided that you ensure that this notice is replicated
10# unmodified and in its entirety in all distributions of the software,
11# modified or unmodified, in source code or in binary form.
12#
13# Copyright (c) 2006-2008 The Regents of The University of Michigan
14# All rights reserved.
15#
16# Redistribution and use in source and binary forms, with or without
17# modification, are permitted provided that the following conditions are
18# met: redistributions of source code must retain the above copyright
19# notice, this list of conditions and the following disclaimer;
20# redistributions in binary form must reproduce the above copyright
21# notice, this list of conditions and the following disclaimer in the
22# documentation and/or other materials provided with the distribution;
23# neither the name of the copyright holders nor the names of its
24# contributors may be used to endorse or promote products derived from
25# this software without specific prior written permission.
26#
27# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38#
39# Authors: Lisa Hsu
40
41from __future__ import print_function
42from __future__ import absolute_import
43
44import m5
45from m5.defines import buildEnv
46from m5.objects import *
47
48from .Benchmarks import *
49from . import CpuConfig
50from . import BPConfig
51from . import HWPConfig
52from . import MemConfig
53from . import PlatformConfig
54
55def _listCpuTypes(option, opt, value, parser):
56    CpuConfig.print_cpu_list()
57    sys.exit(0)
58
59def _listBPTypes(option, opt, value, parser):
60    BPConfig.print_bp_list()
61    sys.exit(0)
62
63def _listHWPTypes(option, opt, value, parser):
64    HWPConfig.print_hwp_list()
65    sys.exit(0)
66
67def _listIndirectBPTypes(option, opt, value, parser):
68    BPConfig.print_indirect_bp_list()
69    sys.exit(0)
70
71def _listMemTypes(option, opt, value, parser):
72    MemConfig.print_mem_list()
73    sys.exit(0)
74
75def _listPlatformTypes(option, opt, value, parser):
76    PlatformConfig.print_platform_list()
77    sys.exit(0)
78
79# Add the very basic options that work also in the case of the no ISA
80# being used, and consequently no CPUs, but rather various types of
81# testers and traffic generators.
82def addNoISAOptions(parser):
83    parser.add_option("-n", "--num-cpus", type="int", default=1)
84    parser.add_option("--sys-voltage", action="store", type="string",
85                      default='1.0V',
86                      help = """Top-level voltage for blocks running at system
87                      power supply""")
88    parser.add_option("--sys-clock", action="store", type="string",
89                      default='1GHz',
90                      help = """Top-level clock for blocks running at system
91                      speed""")
92
93    # Memory Options
94    parser.add_option("--list-mem-types",
95                      action="callback", callback=_listMemTypes,
96                      help="List available memory types")
97    parser.add_option("--mem-type", type="choice", default="DDR3_1600_8x8",
98                      choices=MemConfig.mem_names(),
99                      help = "type of memory to use")
100    parser.add_option("--mem-channels", type="int", default=1,
101                      help = "number of memory channels")
102    parser.add_option("--mem-ranks", type="int", default=None,
103                      help = "number of memory ranks per channel")
104    parser.add_option("--mem-size", action="store", type="string",
105                      default="512MB",
106                      help="Specify the physical memory size (single memory)")
107
108
109    parser.add_option("--memchecker", action="store_true")
110
111    # Cache Options
112    parser.add_option("--external-memory-system", type="string",
113                      help="use external ports of this port_type for caches")
114    parser.add_option("--tlm-memory", type="string",
115                      help="use external port for SystemC TLM cosimulation")
116    parser.add_option("--caches", action="store_true")
117    parser.add_option("--l2cache", action="store_true")
118    parser.add_option("--num-dirs", type="int", default=1)
119    parser.add_option("--num-l2caches", type="int", default=1)
120    parser.add_option("--num-l3caches", type="int", default=1)
121    parser.add_option("--l1d_size", type="string", default="64kB")
122    parser.add_option("--l1i_size", type="string", default="32kB")
123    parser.add_option("--l2_size", type="string", default="2MB")
124    parser.add_option("--l3_size", type="string", default="16MB")
125    parser.add_option("--l1d_assoc", type="int", default=2)
126    parser.add_option("--l1i_assoc", type="int", default=2)
127    parser.add_option("--l2_assoc", type="int", default=8)
128    parser.add_option("--l3_assoc", type="int", default=16)
129    parser.add_option("--cacheline_size", type="int", default=64)
130
131    # Enable Ruby
132    parser.add_option("--ruby", action="store_true")
133
134    # Run duration options
135    parser.add_option("-m", "--abs-max-tick", type="int", default=m5.MaxTick,
136                      metavar="TICKS", help="Run to absolute simulated tick "
137                      "specified including ticks from a restored checkpoint")
138    parser.add_option("--rel-max-tick", type="int", default=None,
139                      metavar="TICKS", help="Simulate for specified number of"
140                      " ticks relative to the simulation start tick (e.g. if "
141                      "restoring a checkpoint)")
142    parser.add_option("--maxtime", type="float", default=None,
143                      help="Run to the specified absolute simulated time in "
144                      "seconds")
145    parser.add_option("-P", "--param", action="append", default=[],
146        help="Set a SimObject parameter relative to the root node. "
147             "An extended Python multi range slicing syntax can be used "
148             "for arrays. For example: "
149             "'system.cpu[0,1,3:8:2].max_insts_all_threads = 42' "
150             "sets max_insts_all_threads for cpus 0, 1, 3, 5 and 7 "
151             "Direct parameters of the root object are not accessible, "
152             "only parameters of its children.")
153
154# Add common options that assume a non-NULL ISA.
155def addCommonOptions(parser):
156    # start by adding the base options that do not assume an ISA
157    addNoISAOptions(parser)
158
159    # system options
160    parser.add_option("--list-cpu-types",
161                      action="callback", callback=_listCpuTypes,
162                      help="List available CPU types")
163    parser.add_option("--cpu-type", type="choice", default="AtomicSimpleCPU",
164                      choices=CpuConfig.cpu_names(),
165                      help = "type of cpu to run with")
166    parser.add_option("--list-bp-types",
167                      action="callback", callback=_listBPTypes,
168                      help="List available branch predictor types")
169    parser.add_option("--list-indirect-bp-types",
170                      action="callback", callback=_listIndirectBPTypes,
171                      help="List available indirect branch predictor types")
172    parser.add_option("--bp-type", type="choice", default=None,
173                      choices=BPConfig.bp_names(),
174                      help = """
175                      type of branch predictor to run with
176                      (if not set, use the default branch predictor of
177                      the selected CPU)""")
178    parser.add_option("--indirect-bp-type", type="choice",
179                      default="SimpleIndirectPredictor",
180                      choices=BPConfig.indirect_bp_names(),
181                      help = "type of indirect branch predictor to run with")
182    parser.add_option("--list-hwp-types",
183                      action="callback", callback=_listHWPTypes,
184                      help="List available hardware prefetcher types")
185    parser.add_option("--l1i-hwp-type", type="choice", default=None,
186                      choices=HWPConfig.hwp_names(),
187                      help = """
188                      type of hardware prefetcher to use with the L1
189                      instruction cache.
190                      (if not set, use the default prefetcher of
191                      the selected cache)""")
192    parser.add_option("--l1d-hwp-type", type="choice", default=None,
193                      choices=HWPConfig.hwp_names(),
194                      help = """
195                      type of hardware prefetcher to use with the L1
196                      data cache.
197                      (if not set, use the default prefetcher of
198                      the selected cache)""")
199    parser.add_option("--l2-hwp-type", type="choice", default=None,
200                      choices=HWPConfig.hwp_names(),
201                      help = """
202                      type of hardware prefetcher to use with the L2 cache.
203                      (if not set, use the default prefetcher of
204                      the selected cache)""")
205    parser.add_option("--checker", action="store_true");
206    parser.add_option("--cpu-clock", action="store", type="string",
207                      default='2GHz',
208                      help="Clock for blocks running at CPU speed")
209    parser.add_option("--smt", action="store_true", default=False,
210                      help = """
211                      Only used if multiple programs are specified. If true,
212                      then the number of threads per cpu is same as the
213                      number of programs.""")
214    parser.add_option("--elastic-trace-en", action="store_true",
215                      help="""Enable capture of data dependency and instruction
216                      fetch traces using elastic trace probe.""")
217    # Trace file paths input to trace probe in a capture simulation and input
218    # to Trace CPU in a replay simulation
219    parser.add_option("--inst-trace-file", action="store", type="string",
220                      help="""Instruction fetch trace file input to
221                      Elastic Trace probe in a capture simulation and
222                      Trace CPU in a replay simulation""", default="")
223    parser.add_option("--data-trace-file", action="store", type="string",
224                      help="""Data dependency trace file input to
225                      Elastic Trace probe in a capture simulation and
226                      Trace CPU in a replay simulation""", default="")
227
228    parser.add_option("-l", "--lpae", action="store_true")
229    parser.add_option("-V", "--virtualisation", action="store_true")
230
231    # dist-gem5 options
232    parser.add_option("--dist", action="store_true",
233                      help="Parallel distributed gem5 simulation.")
234    parser.add_option("--dist-sync-on-pseudo-op", action="store_true",
235                      help="Use a pseudo-op to start dist-gem5 synchronization.")
236    parser.add_option("--is-switch", action="store_true",
237                      help="Select the network switch simulator process for a"\
238                      "distributed gem5 run")
239    parser.add_option("--dist-rank", default=0, action="store", type="int",
240                      help="Rank of this system within the dist gem5 run.")
241    parser.add_option("--dist-size", default=0, action="store", type="int",
242                      help="Number of gem5 processes within the dist gem5 run.")
243    parser.add_option("--dist-server-name",
244                      default="127.0.0.1",
245                      action="store", type="string",
246                      help="Name of the message server host\nDEFAULT: localhost")
247    parser.add_option("--dist-server-port",
248                      default=2200,
249                      action="store", type="int",
250                      help="Message server listen port\nDEFAULT: 2200")
251    parser.add_option("--dist-sync-repeat",
252                      default="0us",
253                      action="store", type="string",
254                      help="Repeat interval for synchronisation barriers among dist-gem5 processes\nDEFAULT: --ethernet-linkdelay")
255    parser.add_option("--dist-sync-start",
256                      default="5200000000000t",
257                      action="store", type="string",
258                      help="Time to schedule the first dist synchronisation barrier\nDEFAULT:5200000000000t")
259    parser.add_option("--ethernet-linkspeed", default="10Gbps",
260                        action="store", type="string",
261                        help="Link speed in bps\nDEFAULT: 10Gbps")
262    parser.add_option("--ethernet-linkdelay", default="10us",
263                      action="store", type="string",
264                      help="Link delay in seconds\nDEFAULT: 10us")
265
266    # Run duration options
267    parser.add_option("-I", "--maxinsts", action="store", type="int",
268                      default=None, help="""Total number of instructions to
269                                            simulate (default: run forever)""")
270    parser.add_option("--work-item-id", action="store", type="int",
271                      help="the specific work id for exit & checkpointing")
272    parser.add_option("--num-work-ids", action="store", type="int",
273                      help="Number of distinct work item types")
274    parser.add_option("--work-begin-cpu-id-exit", action="store", type="int",
275                      help="exit when work starts on the specified cpu")
276    parser.add_option("--work-end-exit-count", action="store", type="int",
277                      help="exit at specified work end count")
278    parser.add_option("--work-begin-exit-count", action="store", type="int",
279                      help="exit at specified work begin count")
280    parser.add_option("--init-param", action="store", type="int", default=0,
281                      help="""Parameter available in simulation with m5
282                              initparam""")
283    parser.add_option("--initialize-only", action="store_true", default=False,
284                      help="""Exit after initialization. Do not simulate time.
285                              Useful when gem5 is run as a library.""")
286
287    # Simpoint options
288    parser.add_option("--simpoint-profile", action="store_true",
289                      help="Enable basic block profiling for SimPoints")
290    parser.add_option("--simpoint-interval", type="int", default=10000000,
291                      help="SimPoint interval in num of instructions")
292    parser.add_option("--take-simpoint-checkpoints", action="store", type="string",
293        help="<simpoint file,weight file,interval-length,warmup-length>")
294    parser.add_option("--restore-simpoint-checkpoint", action="store_true",
295        help="restore from a simpoint checkpoint taken with " +
296             "--take-simpoint-checkpoints")
297
298    # Checkpointing options
299    ###Note that performing checkpointing via python script files will override
300    ###checkpoint instructions built into binaries.
301    parser.add_option("--take-checkpoints", action="store", type="string",
302        help="<M,N> take checkpoints at tick M and every N ticks thereafter")
303    parser.add_option("--max-checkpoints", action="store", type="int",
304        help="the maximum number of checkpoints to drop", default=5)
305    parser.add_option("--checkpoint-dir", action="store", type="string",
306        help="Place all checkpoints in this absolute directory")
307    parser.add_option("-r", "--checkpoint-restore", action="store", type="int",
308        help="restore from checkpoint <N>")
309    parser.add_option("--checkpoint-at-end", action="store_true",
310                      help="take a checkpoint at end of run")
311    parser.add_option("--work-begin-checkpoint-count", action="store", type="int",
312                      help="checkpoint at specified work begin count")
313    parser.add_option("--work-end-checkpoint-count", action="store", type="int",
314                      help="checkpoint at specified work end count")
315    parser.add_option("--work-cpus-checkpoint-count", action="store", type="int",
316                      help="checkpoint and exit when active cpu count is reached")
317    parser.add_option("--restore-with-cpu", action="store", type="choice",
318                      default="AtomicSimpleCPU", choices=CpuConfig.cpu_names(),
319                      help = "cpu type for restoring from a checkpoint")
320
321
322    # CPU Switching - default switch model goes from a checkpoint
323    # to a timing simple CPU with caches to warm up, then to detailed CPU for
324    # data measurement
325    parser.add_option("--repeat-switch", action="store", type="int",
326        default=None,
327        help="switch back and forth between CPUs with period <N>")
328    parser.add_option("-s", "--standard-switch", action="store", type="int",
329        default=None,
330        help="switch from timing to Detailed CPU after warmup period of <N>")
331    parser.add_option("-p", "--prog-interval", type="str",
332        help="CPU Progress Interval")
333
334    # Fastforwarding and simpoint related materials
335    parser.add_option("-W", "--warmup-insts", action="store", type="int",
336        default=None,
337        help="Warmup period in total instructions (requires --standard-switch)")
338    parser.add_option("--bench", action="store", type="string", default=None,
339        help="base names for --take-checkpoint and --checkpoint-restore")
340    parser.add_option("-F", "--fast-forward", action="store", type="string",
341        default=None,
342        help="Number of instructions to fast forward before switching")
343    parser.add_option("-S", "--simpoint", action="store_true", default=False,
344        help="""Use workload simpoints as an instruction offset for
345                --checkpoint-restore or --take-checkpoint.""")
346    parser.add_option("--at-instruction", action="store_true", default=False,
347        help="""Treat value of --checkpoint-restore or --take-checkpoint as a
348                number of instructions.""")
349    parser.add_option("--spec-input", default="ref", type="choice",
350                      choices=["ref", "test", "train", "smred", "mdred",
351                               "lgred"],
352                      help="Input set size for SPEC CPU2000 benchmarks.")
353    parser.add_option("--arm-iset", default="arm", type="choice",
354                      choices=["arm", "thumb", "aarch64"],
355                      help="ARM instruction set.")
356
357
358def addSEOptions(parser):
359    # Benchmark options
360    parser.add_option("-c", "--cmd", default="",
361                      help="The binary to run in syscall emulation mode.")
362    parser.add_option("-o", "--options", default="",
363                      help="""The options to pass to the binary, use " "
364                              around the entire string""")
365    parser.add_option("-e", "--env", default="",
366                      help="Initialize workload environment from text file.")
367    parser.add_option("-i", "--input", default="",
368                      help="Read stdin from a file.")
369    parser.add_option("--output", default="",
370                      help="Redirect stdout to a file.")
371    parser.add_option("--errout", default="",
372                      help="Redirect stderr to a file.")
373    parser.add_option("--chroot", action="store", type="string", default="/",
374                      help="The chroot option allows a user to alter the "    \
375                           "search path for processes running in SE mode. "   \
376                           "Normally, the search path would begin at the "    \
377                           "root of the filesystem (i.e. /). With chroot, "   \
378                           "a user can force the process to begin looking at" \
379                           "some other location (i.e. /home/user/rand_dir)."  \
380                           "The intended use is to trick sophisticated "      \
381                           "software which queries the __HOST__ filesystem "  \
382                           "for information or functionality. Instead of "    \
383                           "finding files on the __HOST__ filesystem, the "   \
384                           "process will find the user's replacment files.")
385
386
387def addFSOptions(parser):
388    from .FSConfig import os_types
389
390    # Simulation options
391    parser.add_option("--timesync", action="store_true",
392            help="Prevent simulated time from getting ahead of real time")
393
394    # System options
395    parser.add_option("--kernel", action="store", type="string")
396    parser.add_option("--os-type", action="store", type="choice",
397                      choices=os_types[str(buildEnv['TARGET_ISA'])],
398                      default="linux",
399                      help="Specifies type of OS to boot")
400    parser.add_option("--script", action="store", type="string")
401    parser.add_option("--frame-capture", action="store_true",
402            help="Stores changed frame buffers from the VNC server to compressed "\
403            "files in the gem5 output directory")
404
405    if buildEnv['TARGET_ISA'] == "arm":
406        parser.add_option("--bare-metal", action="store_true",
407                   help="Provide the raw system without the linux specific bits")
408        parser.add_option("--list-machine-types",
409                          action="callback", callback=_listPlatformTypes,
410                      help="List available platform types")
411        parser.add_option("--machine-type", action="store", type="choice",
412                choices=PlatformConfig.platform_names(),
413                default="VExpress_EMM")
414        parser.add_option("--dtb-filename", action="store", type="string",
415              help="Specifies device tree blob file to use with device-tree-"\
416              "enabled kernels")
417        parser.add_option("--enable-security-extensions", action="store_true",
418              help="Turn on the ARM Security Extensions")
419        parser.add_option("--enable-context-switch-stats-dump", \
420                action="store_true", help="Enable stats dump at context "\
421                "switches and dump tasks file (required for Streamline)")
422
423    # Benchmark options
424    parser.add_option("--dual", action="store_true",
425                      help="Simulate two systems attached with an ethernet link")
426    parser.add_option("-b", "--benchmark", action="store", type="string",
427                      dest="benchmark",
428                      help="Specify the benchmark to run. Available benchmarks: %s"\
429                      % DefinedBenchmarks)
430
431    # Metafile options
432    parser.add_option("--etherdump", action="store", type="string", dest="etherdump",
433                      help="Specify the filename to dump a pcap capture of the" \
434                      "ethernet traffic")
435
436    # Disk Image Options
437    parser.add_option("--disk-image", action="store", type="string", default=None,
438                      help="Path to the disk image to use.")
439    parser.add_option("--root-device", action="store", type="string", default=None,
440                      help="OS device name for root partition")
441
442    # Command line options
443    parser.add_option("--command-line", action="store", type="string",
444                      default=None,
445                      help="Template for the kernel command line.")
446    parser.add_option("--command-line-file", action="store",
447                      default=None, type="string",
448                      help="File with a template for the kernel command line")
449