main.py (11161:15492f220f16) main.py (11299:72046b9b3323)
1# Copyright (c) 2005 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

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

89 help="Dump configuration output file [Default: %default]")
90 option("--json-config", metavar="FILE", default="config.json",
91 help="Create JSON output of the configuration [Default: %default]")
92 option("--dot-config", metavar="FILE", default="config.dot",
93 help="Create DOT & pdf outputs of the configuration [Default: %default]")
94
95 # Debugging options
96 group("Debugging Options")
1# Copyright (c) 2005 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

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

89 help="Dump configuration output file [Default: %default]")
90 option("--json-config", metavar="FILE", default="config.json",
91 help="Create JSON output of the configuration [Default: %default]")
92 option("--dot-config", metavar="FILE", default="config.dot",
93 help="Create DOT & pdf outputs of the configuration [Default: %default]")
94
95 # Debugging options
96 group("Debugging Options")
97 option("--debug-break", metavar="TIME[,TIME]", action='append', split=',',
98 help="Tick to create a breakpoint")
97 option("--debug-break", metavar="TICK[,TICK]", action='append', split=',',
98 help="Create breakpoint(s) at TICK(s) " \
99 "(kills process if no debugger attached)")
99 option("--debug-help", action='store_true',
100 help="Print help on debug flags")
101 option("--debug-flags", metavar="FLAG[,FLAG]", action='append', split=',',
102 help="Sets the flags for debug output (-FLAG disables a flag)")
100 option("--debug-help", action='store_true',
101 help="Print help on debug flags")
102 option("--debug-flags", metavar="FLAG[,FLAG]", action='append', split=',',
103 help="Sets the flags for debug output (-FLAG disables a flag)")
103 option("--debug-start", metavar="TIME", type='int',
104 help="Start debug output at TIME (must be in ticks)")
104 option("--debug-start", metavar="TICK", type='int',
105 help="Start debug output at TICK (must be in ticks)")
105 option("--debug-file", metavar="FILE", default="cout",
106 help="Sets the output file for debug [Default: %default]")
107 option("--debug-ignore", metavar="EXPR", action='append', split=':',
108 help="Ignore EXPR sim objects")
109 option("--remote-gdb-port", type='int', default=7000,
110 help="Remote gdb base port (set to 0 to disable listening)")
111
112 # Help options

--- 293 unchanged lines hidden ---
106 option("--debug-file", metavar="FILE", default="cout",
107 help="Sets the output file for debug [Default: %default]")
108 option("--debug-ignore", metavar="EXPR", action='append', split=':',
109 help="Ignore EXPR sim objects")
110 option("--remote-gdb-port", type='int', default=7000,
111 help="Remote gdb base port (set to 0 to disable listening)")
112
113 # Help options

--- 293 unchanged lines hidden ---