blob: 0f93483c1c777e559de782e7a674700523db1d1b [file] [log] [blame]
njn20242342005-05-16 23:31:24 +00001
2/*--------------------------------------------------------------------*/
3/*--- Command line options. pub_tool_options.h ---*/
4/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
Elliott Hughesed398002017-06-21 14:41:24 -070010 Copyright (C) 2000-2017 Julian Seward
njn20242342005-05-16 23:31:24 +000011 jseward@acm.org
12
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
27
28 The GNU General Public License is contained in the file COPYING.
29*/
30
31#ifndef __PUB_TOOL_OPTIONS_H
32#define __PUB_TOOL_OPTIONS_H
33
florian535fb1b2013-09-15 13:54:34 +000034#include "pub_tool_basics.h" // for VG_ macro
sewardjf9b5b7d2005-07-26 23:47:00 +000035#include "libvex.h" // for VexControl
36
37
njn83df0b62009-02-25 01:01:05 +000038// Higher-level command-line option recognisers; use in if/else chains.
39// Note that they assign a value to the 'qq_var' argument. So often they
40// can be used like this:
41//
42// if VG_STR_CLO(arg, "--foo", clo_foo) { }
43//
44// But if you want to do further checking or processing, you can do this:
45//
46// if VG_STR_CLO(arg, "--foo", clo_foo) { <further checking or processing> }
47//
48// They use GNU statement expressions to do the qq_var assignment within a
49// conditional expression.
njn20242342005-05-16 23:31:24 +000050
njn83df0b62009-02-25 01:01:05 +000051// String argument, eg. --foo=yes or --foo=no
njn20242342005-05-16 23:31:24 +000052#define VG_BOOL_CLO(qq_arg, qq_option, qq_var) \
njn83df0b62009-02-25 01:01:05 +000053 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \
54 ({ \
florian19f91bb2012-11-10 22:29:54 +000055 const HChar* val = &(qq_arg)[ VG_(strlen)(qq_option)+1 ]; \
njn83df0b62009-02-25 01:01:05 +000056 if VG_STREQ(val, "yes") (qq_var) = True; \
57 else if VG_STREQ(val, "no") (qq_var) = False; \
sewardj36f3c792011-05-17 16:29:29 +000058 else VG_(fmsg_bad_option)(qq_arg, "Invalid boolean value '%s'" \
59 " (should be 'yes' or 'no')\n", val); \
njn83df0b62009-02-25 01:01:05 +000060 True; \
61 }) \
62 )
njn20242342005-05-16 23:31:24 +000063
njn83df0b62009-02-25 01:01:05 +000064// String argument, eg. --foo=bar
njn20242342005-05-16 23:31:24 +000065#define VG_STR_CLO(qq_arg, qq_option, qq_var) \
njn83df0b62009-02-25 01:01:05 +000066 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \
67 ({ \
florian19f91bb2012-11-10 22:29:54 +000068 const HChar* val = &(qq_arg)[ VG_(strlen)(qq_option)+1 ]; \
njn83df0b62009-02-25 01:01:05 +000069 (qq_var) = val; \
70 True; \
71 }) \
72 )
njn20242342005-05-16 23:31:24 +000073
philippeec905f72014-08-17 20:03:51 +000074// UInt enum set arg, eg. --foo=fubar,bar,baz or --foo=none
75// or --foo=all (if qq_all is True)
76#define VG_USETGEN_CLO(qq_arg, qq_option, qq_vals, qq_var, qq_all) \
77 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \
78 ({ \
79 const HChar* val = &(qq_arg)[ VG_(strlen)(qq_option)+1 ]; \
80 if (!VG_(parse_enum_set)(qq_vals, \
81 qq_all,/*allow_all*/ \
82 val, \
83 &(qq_var))) \
84 VG_(fmsg_bad_option)(qq_arg, "%s is an invalid %s set\n", \
85 val, qq_option+2); \
86 True; \
87 }) \
88 )
89
90// UInt enum set arg, eg. --foo=fubar,bar,baz or --foo=none or --foo=all
91#define VG_USET_CLO(qq_arg, qq_option, qq_vals, qq_var) \
92 VG_USETGEN_CLO((qq_arg), qq_option, (qq_vals), (qq_var), True)
93
94/* Same as VG_USET_CLO but not allowing --foo=all.
95 To be used when some or all of the enum set are mutually eXclusive. */
96#define VG_USETX_CLO(qq_arg, qq_option, qq_vals, qq_var) \
97 VG_USETGEN_CLO((qq_arg), qq_option, (qq_vals), (qq_var), False)
98
njn83df0b62009-02-25 01:01:05 +000099// Unbounded integer arg, eg. --foo=10
100#define VG_INT_CLO(qq_arg, qq_option, qq_var) \
101 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \
102 ({ \
florian19f91bb2012-11-10 22:29:54 +0000103 const HChar* val = &(qq_arg)[ VG_(strlen)(qq_option)+1 ]; \
104 HChar* s; \
njn83df0b62009-02-25 01:01:05 +0000105 Long n = VG_(strtoll10)( val, &s ); \
njnea5d2352007-11-11 21:58:21 +0000106 (qq_var) = n; \
njn83df0b62009-02-25 01:01:05 +0000107 /* Check for non-numeralness, or overflow. */ \
florian5b99e662014-11-29 14:41:32 +0000108 if ('\0' != s[0] || (qq_var) != n) VG_(fmsg_bad_option)(qq_arg, \
109 "Invalid integer value '%s'\n", val); \
njn83df0b62009-02-25 01:01:05 +0000110 True; \
111 }) \
112 )
njn20242342005-05-16 23:31:24 +0000113
njn83df0b62009-02-25 01:01:05 +0000114// Bounded integer arg, eg. --foo=10 ; if the value exceeds the bounds it
115// causes an abort. 'qq_base' can be 10 or 16.
116#define VG_BINTN_CLO(qq_base, qq_arg, qq_option, qq_var, qq_lo, qq_hi) \
117 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \
118 ({ \
florian19f91bb2012-11-10 22:29:54 +0000119 const HChar* val = &(qq_arg)[ VG_(strlen)(qq_option)+1 ]; \
120 HChar* s; \
njn83df0b62009-02-25 01:01:05 +0000121 Long n = VG_(strtoll##qq_base)( val, &s ); \
njn62721e92007-11-11 22:15:58 +0000122 (qq_var) = n; \
njnb1cc5d62010-07-06 04:05:23 +0000123 /* MMM: separate the two cases, and explain the problem; likewise */ \
124 /* for all the other macros in this file. */ \
njn83df0b62009-02-25 01:01:05 +0000125 /* Check for non-numeralness, or overflow. */ \
126 /* Nb: it will overflow if qq_var is unsigned and qq_val is negative! */ \
florian5b99e662014-11-29 14:41:32 +0000127 if ('\0' != s[0] || (qq_var) != n) VG_(fmsg_bad_option)(qq_arg, \
128 "Invalid integer value '%s'\n", val); \
njn83df0b62009-02-25 01:01:05 +0000129 /* Check bounds. */ \
130 if ((qq_var) < (qq_lo) || (qq_var) > (qq_hi)) { \
njnb1cc5d62010-07-06 04:05:23 +0000131 VG_(fmsg_bad_option)(qq_arg, \
132 "'%s' argument must be between %lld and %lld\n", \
133 (qq_option), (Long)(qq_lo), (Long)(qq_hi)); \
njn83df0b62009-02-25 01:01:05 +0000134 } \
135 True; \
136 }) \
137 )
njn20242342005-05-16 23:31:24 +0000138
njn83df0b62009-02-25 01:01:05 +0000139// Bounded decimal integer arg, eg. --foo=100
140#define VG_BINT_CLO(qq_arg, qq_option, qq_var, qq_lo, qq_hi) \
141 VG_BINTN_CLO(10, (qq_arg), qq_option, (qq_var), (qq_lo), (qq_hi))
142
143// Bounded hexadecimal integer arg, eg. --foo=0x1fa8
sewardjeb0fa932007-11-30 21:41:40 +0000144#define VG_BHEX_CLO(qq_arg, qq_option, qq_var, qq_lo, qq_hi) \
njn83df0b62009-02-25 01:01:05 +0000145 VG_BINTN_CLO(16, (qq_arg), qq_option, (qq_var), (qq_lo), (qq_hi))
sewardjeb0fa932007-11-30 21:41:40 +0000146
njn83df0b62009-02-25 01:01:05 +0000147// Double (decimal) arg, eg. --foo=4.6
148// XXX: there's not VG_BDBL_CLO because we don't have a good way of printing
149// floats at the moment!
njn62721e92007-11-11 22:15:58 +0000150#define VG_DBL_CLO(qq_arg, qq_option, qq_var) \
njn83df0b62009-02-25 01:01:05 +0000151 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \
152 ({ \
florian19f91bb2012-11-10 22:29:54 +0000153 const HChar* val = &(qq_arg)[ VG_(strlen)(qq_option)+1 ]; \
154 HChar* s; \
njn83df0b62009-02-25 01:01:05 +0000155 double n = VG_(strtod)( val, &s ); \
njn62721e92007-11-11 22:15:58 +0000156 (qq_var) = n; \
157 /* Check for non-numeralness */ \
florian5b99e662014-11-29 14:41:32 +0000158 if ('\0' != s[0]) VG_(fmsg_bad_option)(qq_arg, \
159 "Invalid floating point value '%s'\n",val); \
njn83df0b62009-02-25 01:01:05 +0000160 True; \
161 }) \
162 )
njn62721e92007-11-11 22:15:58 +0000163
njn83df0b62009-02-25 01:01:05 +0000164// Arg whose value is denoted by the exact presence of the given string;
165// if it matches, qq_var is assigned the value in qq_val.
166#define VG_XACT_CLO(qq_arg, qq_option, qq_var, qq_val) \
167 (VG_STREQ((qq_arg), (qq_option)) && \
168 ({ \
169 (qq_var) = (qq_val); \
170 True; \
171 }) \
172 )
sewardjf767d962007-02-12 17:47:14 +0000173
sewardj8d47a612015-02-05 12:59:46 +0000174// Arg that can be one of a set of strings, as specified in an NULL
175// terminated array. Returns the index of the string in |qq_ix|, or
176// aborts if not found.
177#define VG_STRINDEX_CLO(qq_arg, qq_option, qq_strings, qq_ix) \
178 (VG_STREQN(VG_(strlen)(qq_option)+1, qq_arg, qq_option"=") && \
179 ({ \
180 const HChar* val = &(qq_arg)[ VG_(strlen)(qq_option)+1 ]; \
181 for (qq_ix = 0; (qq_strings)[qq_ix]; qq_ix++) { \
182 if (VG_STREQ(val, (qq_strings)[qq_ix])) \
183 break; \
184 } \
185 if ((qq_strings)[qq_ix] == NULL) \
186 VG_(fmsg_bad_option)(qq_arg, \
187 "Invalid string '%s' in '%s'\n", val, qq_arg); \
188 True; \
189 }) \
190 )
191
njn20242342005-05-16 23:31:24 +0000192/* Verbosity level: 0 = silent, 1 (default), > 1 = more verbose. */
sewardj71bc3cb2005-05-19 00:25:45 +0000193extern Int VG_(clo_verbosity);
njn20242342005-05-16 23:31:24 +0000194
sewardj2d9e8742009-08-07 15:46:56 +0000195/* Show tool and core statistics */
196extern Bool VG_(clo_stats);
197
sewardj3b290482011-05-06 21:02:55 +0000198/* wait for vgdb/gdb after reporting that amount of error.
199 Note that this is the initial value provided from the command line.
200 The real value is maintained in VG_(dyn_vgdb_error) and
201 can be changed dynamically.*/
202extern Int VG_(clo_vgdb_error);
203
philippecffe2a52014-01-11 13:56:48 +0000204/* If user has provided the --vgdb-prefix command line option,
205 VG_(arg_vgdb_prefix) points at the provided argument (including the
206 '--vgdb-prefix=' string).
207 Otherwise, it is NULL.
208 Typically, this is used by tools to produce user message with the
209 expected vgdb prefix argument, if the user has changed the default. */
210extern const HChar *VG_(arg_vgdb_prefix);
211
sewardj71bc3cb2005-05-19 00:25:45 +0000212/* Emit all messages as XML? default: NO */
213/* If clo_xml is set, various other options are set in a non-default
214 way. See vg_main.c and mc_main.c. */
215extern Bool VG_(clo_xml);
njn20242342005-05-16 23:31:24 +0000216
sewardj768db0e2005-07-19 14:18:56 +0000217/* An arbitrary user-supplied string which is copied into the
218 XML output, in between <usercomment> tags. */
florian19f91bb2012-11-10 22:29:54 +0000219extern const HChar* VG_(clo_xml_user_comment);
sewardj768db0e2005-07-19 14:18:56 +0000220
sewardjf9b5b7d2005-07-26 23:47:00 +0000221/* Vex iropt control. Tool-visible so tools can make Vex optimise
222 less aggressively if that is needed (callgrind needs this). */
223extern VexControl VG_(clo_vex_control);
sewardj8d47a612015-02-05 12:59:46 +0000224extern VexRegisterUpdates VG_(clo_px_file_backed);
sewardjf9b5b7d2005-07-26 23:47:00 +0000225
Elliott Hughesed398002017-06-21 14:41:24 -0700226extern Int VG_(clo_redzone_size);
227
228typedef
229 enum {
230 Vg_XTMemory_None, // Do not do any xtree memory profiling.
231 Vg_XTMemory_Allocs, // Currently allocated size xtree memory profiling
232 Vg_XTMemory_Full, // Full profiling : Current allocated size, total
233 // allocated size, nr of blocks, total freed size, ...
234 }
235 VgXTMemory;
236// Tools that replace malloc can optionally implement memory profiling
237// following the value of VG_(clo_xtree_profile_memory) to produce a report
238// at the end of execution.
239extern VgXTMemory VG_(clo_xtree_memory);
240/* Holds the filename to use for xtree memory profiling output, before expansion
241 of %p and %q templates. */
242extern const HChar* VG_(clo_xtree_memory_file);
243/* Compress strings in xtree dumps. */
244extern Bool VG_(clo_xtree_compress_strings);
245
florian5914aec2014-08-11 15:48:51 +0000246/* Number of parents of a backtrace. Default: 12 */
sewardjda098592008-01-09 18:37:41 +0000247extern Int VG_(clo_backtrace_size);
248
njn68824432009-02-10 06:48:00 +0000249/* Continue stack traces below main()? Default: NO */
250extern Bool VG_(clo_show_below_main);
251
252
sewardj5eed7412008-11-17 12:45:01 +0000253/* Used to expand file names. "option_name" is the option name, eg.
njn374a36d2007-11-23 01:41:32 +0000254 "--log-file". 'format' is what follows, eg. "cachegrind.out.%p". In
255 'format':
256 - "%p" is replaced with PID.
257 - "%q{QUAL}" is replaced with the environment variable $QUAL. If $QUAL
258 isn't set, we abort. If the "{QUAL}" part is malformed, we abort.
259 - "%%" is replaced with "%".
260 Anything else after '%' causes an abort.
njn2dd08f52007-11-23 22:37:35 +0000261 If the format specifies a relative file name, it's put in the program's
262 initial working directory. If it specifies an absolute file name (ie.
263 starts with '/') then it is put there.
sewardj5eed7412008-11-17 12:45:01 +0000264
265 Note that "option_name" has no effect on the returned string: the
266 returned string depends only on "format" and the PIDs and
267 environment variables that it references (if any). "option_name" is
268 merely used in printing error messages, if an error message needs
269 to be printed due to malformedness of the "format" argument.
njn374a36d2007-11-23 01:41:32 +0000270*/
florian19f91bb2012-11-10 22:29:54 +0000271extern HChar* VG_(expand_file_name)(const HChar* option_name,
272 const HChar* format);
sewardj6893d652006-10-15 01:25:13 +0000273
njn20242342005-05-16 23:31:24 +0000274#endif // __PUB_TOOL_OPTIONS_H
275
276/*--------------------------------------------------------------------*/
277/*--- end ---*/
278/*--------------------------------------------------------------------*/