blob: ab2826d789f2f43777128d9ae30e28a40164470f [file] [log] [blame]
Bill Wendling26f1f002012-08-08 08:21:24 +00001==============================
2CommandLine 2.0 Library Manual
3==============================
4
Tobias Grosserfe9b1612013-05-02 14:59:52 +00005.. contents::
6 :local:
7
Bill Wendling26f1f002012-08-08 08:21:24 +00008Introduction
9============
10
11This document describes the CommandLine argument processing library. It will
12show you how to use it, and what it can do. The CommandLine library uses a
13declarative approach to specifying the command line options that your program
14takes. By default, these options declarations implicitly hold the value parsed
15for the option declared (of course this `can be changed`_).
16
17Although there are a **lot** of command line argument parsing libraries out
18there in many different languages, none of them fit well with what I needed. By
19looking at the features and problems of other libraries, I designed the
20CommandLine library to have the following features:
21
22#. Speed: The CommandLine library is very quick and uses little resources. The
23 parsing time of the library is directly proportional to the number of
24 arguments parsed, not the number of options recognized. Additionally,
25 command line argument values are captured transparently into user defined
26 global variables, which can be accessed like any other variable (and with the
27 same performance).
28
29#. Type Safe: As a user of CommandLine, you don't have to worry about
30 remembering the type of arguments that you want (is it an int? a string? a
31 bool? an enum?) and keep casting it around. Not only does this help prevent
32 error prone constructs, it also leads to dramatically cleaner source code.
33
34#. No subclasses required: To use CommandLine, you instantiate variables that
35 correspond to the arguments that you would like to capture, you don't
36 subclass a parser. This means that you don't have to write **any**
37 boilerplate code.
38
39#. Globally accessible: Libraries can specify command line arguments that are
40 automatically enabled in any tool that links to the library. This is
41 possible because the application doesn't have to keep a list of arguments to
42 pass to the parser. This also makes supporting `dynamically loaded options`_
43 trivial.
44
45#. Cleaner: CommandLine supports enum and other types directly, meaning that
46 there is less error and more security built into the library. You don't have
47 to worry about whether your integral command line argument accidentally got
48 assigned a value that is not valid for your enum type.
49
50#. Powerful: The CommandLine library supports many different types of arguments,
51 from simple `boolean flags`_ to `scalars arguments`_ (`strings`_,
52 `integers`_, `enums`_, `doubles`_), to `lists of arguments`_. This is
53 possible because CommandLine is...
54
55#. Extensible: It is very simple to add a new argument type to CommandLine.
56 Simply specify the parser that you want to use with the command line option
57 when you declare it. `Custom parsers`_ are no problem.
58
59#. Labor Saving: The CommandLine library cuts down on the amount of grunt work
60 that you, the user, have to do. For example, it automatically provides a
61 ``-help`` option that shows the available command line options for your tool.
62 Additionally, it does most of the basic correctness checking for you.
63
64#. Capable: The CommandLine library can handle lots of different forms of
65 options often found in real programs. For example, `positional`_ arguments,
66 ``ls`` style `grouping`_ options (to allow processing '``ls -lad``'
67 naturally), ``ld`` style `prefix`_ options (to parse '``-lmalloc
68 -L/usr/lib``'), and interpreter style options.
69
70This document will hopefully let you jump in and start using CommandLine in your
71utility quickly and painlessly. Additionally it should be a simple reference
Chris Lattner045a73e2013-01-10 21:24:04 +000072manual to figure out how stuff works.
Bill Wendling26f1f002012-08-08 08:21:24 +000073
74Quick Start Guide
75=================
76
77This section of the manual runs through a simple CommandLine'ification of a
78basic compiler tool. This is intended to show you how to jump into using the
79CommandLine library in your own program, and show you some of the cool things it
80can do.
81
82To start out, you need to include the CommandLine header file into your program:
83
84.. code-block:: c++
85
86 #include "llvm/Support/CommandLine.h"
87
88Additionally, you need to add this as the first line of your main program:
89
90.. code-block:: c++
91
92 int main(int argc, char **argv) {
93 cl::ParseCommandLineOptions(argc, argv);
94 ...
95 }
96
97... which actually parses the arguments and fills in the variable declarations.
98
99Now that you are ready to support command line arguments, we need to tell the
100system which ones we want, and what type of arguments they are. The CommandLine
101library uses a declarative syntax to model command line arguments with the
102global variable declarations that capture the parsed values. This means that
103for every command line option that you would like to support, there should be a
104global variable declaration to capture the result. For example, in a compiler,
105we would like to support the Unix-standard '``-o <filename>``' option to specify
106where to put the output. With the CommandLine library, this is represented like
107this:
108
109.. _scalars arguments:
110.. _here:
111
112.. code-block:: c++
113
114 cl::opt<string> OutputFilename("o", cl::desc("Specify output filename"), cl::value_desc("filename"));
115
116This declares a global variable "``OutputFilename``" that is used to capture the
117result of the "``o``" argument (first parameter). We specify that this is a
118simple scalar option by using the "``cl::opt``" template (as opposed to the
119"``cl::list``" template), and tell the CommandLine library that the data
120type that we are parsing is a string.
121
122The second and third parameters (which are optional) are used to specify what to
123output for the "``-help``" option. In this case, we get a line that looks like
124this:
125
126::
127
128 USAGE: compiler [options]
129
130 OPTIONS:
Don Hintonb85f74a2019-04-15 17:18:10 +0000131 -h - Alias for -help
Bill Wendling26f1f002012-08-08 08:21:24 +0000132 -help - display available options (-help-hidden for more)
133 -o <filename> - Specify output filename
134
135Because we specified that the command line option should parse using the
136``string`` data type, the variable declared is automatically usable as a real
137string in all contexts that a normal C++ string object may be used. For
138example:
139
140.. code-block:: c++
141
142 ...
143 std::ofstream Output(OutputFilename.c_str());
144 if (Output.good()) ...
145 ...
146
147There are many different options that you can use to customize the command line
148option handling library, but the above example shows the general interface to
149these options. The options can be specified in any order, and are specified
150with helper functions like `cl::desc(...)`_, so there are no positional
151dependencies to remember. The available options are discussed in detail in the
152`Reference Guide`_.
153
154Continuing the example, we would like to have our compiler take an input
155filename as well as an output filename, but we do not want the input filename to
156be specified with a hyphen (ie, not ``-filename.c``). To support this style of
157argument, the CommandLine library allows for `positional`_ arguments to be
158specified for the program. These positional arguments are filled with command
159line parameters that are not in option form. We use this feature like this:
160
161.. code-block:: c++
162
163
164 cl::opt<string> InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-"));
165
166This declaration indicates that the first positional argument should be treated
167as the input filename. Here we use the `cl::init`_ option to specify an initial
168value for the command line option, which is used if the option is not specified
169(if you do not specify a `cl::init`_ modifier for an option, then the default
170constructor for the data type is used to initialize the value). Command line
171options default to being optional, so if we would like to require that the user
172always specify an input filename, we would add the `cl::Required`_ flag, and we
173could eliminate the `cl::init`_ modifier, like this:
174
175.. code-block:: c++
176
177 cl::opt<string> InputFilename(cl::Positional, cl::desc("<input file>"), cl::Required);
178
179Again, the CommandLine library does not require the options to be specified in
180any particular order, so the above declaration is equivalent to:
181
182.. code-block:: c++
183
184 cl::opt<string> InputFilename(cl::Positional, cl::Required, cl::desc("<input file>"));
185
186By simply adding the `cl::Required`_ flag, the CommandLine library will
187automatically issue an error if the argument is not specified, which shifts all
188of the command line option verification code out of your application into the
189library. This is just one example of how using flags can alter the default
190behaviour of the library, on a per-option basis. By adding one of the
191declarations above, the ``-help`` option synopsis is now extended to:
192
193::
194
195 USAGE: compiler [options] <input file>
196
197 OPTIONS:
Don Hintonb85f74a2019-04-15 17:18:10 +0000198 -h - Alias for -help
Bill Wendling26f1f002012-08-08 08:21:24 +0000199 -help - display available options (-help-hidden for more)
200 -o <filename> - Specify output filename
201
202... indicating that an input filename is expected.
203
204Boolean Arguments
205-----------------
206
207In addition to input and output filenames, we would like the compiler example to
208support three boolean flags: "``-f``" to force writing binary output to a
209terminal, "``--quiet``" to enable quiet mode, and "``-q``" for backwards
210compatibility with some of our users. We can support these by declaring options
211of boolean type like this:
212
213.. code-block:: c++
214
215 cl::opt<bool> Force ("f", cl::desc("Enable binary output on terminals"));
216 cl::opt<bool> Quiet ("quiet", cl::desc("Don't print informational messages"));
217 cl::opt<bool> Quiet2("q", cl::desc("Don't print informational messages"), cl::Hidden);
218
219This does what you would expect: it declares three boolean variables
220("``Force``", "``Quiet``", and "``Quiet2``") to recognize these options. Note
221that the "``-q``" option is specified with the "`cl::Hidden`_" flag. This
222modifier prevents it from being shown by the standard "``-help``" output (note
223that it is still shown in the "``-help-hidden``" output).
224
225The CommandLine library uses a `different parser`_ for different data types.
226For example, in the string case, the argument passed to the option is copied
227literally into the content of the string variable... we obviously cannot do that
228in the boolean case, however, so we must use a smarter parser. In the case of
229the boolean parser, it allows no options (in which case it assigns the value of
230true to the variable), or it allows the values "``true``" or "``false``" to be
231specified, allowing any of the following inputs:
232
233::
234
235 compiler -f # No value, 'Force' == true
236 compiler -f=true # Value specified, 'Force' == true
237 compiler -f=TRUE # Value specified, 'Force' == true
238 compiler -f=FALSE # Value specified, 'Force' == false
239
240... you get the idea. The `bool parser`_ just turns the string values into
241boolean values, and rejects things like '``compiler -f=foo``'. Similarly, the
242`float`_, `double`_, and `int`_ parsers work like you would expect, using the
243'``strtol``' and '``strtod``' C library calls to parse the string value into the
244specified data type.
245
246With the declarations above, "``compiler -help``" emits this:
247
248::
249
250 USAGE: compiler [options] <input file>
251
252 OPTIONS:
253 -f - Enable binary output on terminals
254 -o - Override output filename
255 -quiet - Don't print informational messages
256 -help - display available options (-help-hidden for more)
257
258and "``compiler -help-hidden``" prints this:
259
260::
261
262 USAGE: compiler [options] <input file>
263
264 OPTIONS:
265 -f - Enable binary output on terminals
266 -o - Override output filename
267 -q - Don't print informational messages
268 -quiet - Don't print informational messages
269 -help - display available options (-help-hidden for more)
270
271This brief example has shown you how to use the '`cl::opt`_' class to parse
272simple scalar command line arguments. In addition to simple scalar arguments,
273the CommandLine library also provides primitives to support CommandLine option
274`aliases`_, and `lists`_ of options.
275
276.. _aliases:
277
278Argument Aliases
279----------------
280
281So far, the example works well, except for the fact that we need to check the
282quiet condition like this now:
283
284.. code-block:: c++
285
286 ...
287 if (!Quiet && !Quiet2) printInformationalMessage(...);
288 ...
289
290... which is a real pain! Instead of defining two values for the same
291condition, we can use the "`cl::alias`_" class to make the "``-q``" option an
292**alias** for the "``-quiet``" option, instead of providing a value itself:
293
294.. code-block:: c++
295
296 cl::opt<bool> Force ("f", cl::desc("Overwrite output files"));
297 cl::opt<bool> Quiet ("quiet", cl::desc("Don't print informational messages"));
298 cl::alias QuietA("q", cl::desc("Alias for -quiet"), cl::aliasopt(Quiet));
299
300The third line (which is the only one we modified from above) defines a "``-q``"
301alias that updates the "``Quiet``" variable (as specified by the `cl::aliasopt`_
302modifier) whenever it is specified. Because aliases do not hold state, the only
303thing the program has to query is the ``Quiet`` variable now. Another nice
304feature of aliases is that they automatically hide themselves from the ``-help``
305output (although, again, they are still visible in the ``-help-hidden output``).
306
307Now the application code can simply use:
308
309.. code-block:: c++
310
311 ...
312 if (!Quiet) printInformationalMessage(...);
313 ...
314
315... which is much nicer! The "`cl::alias`_" can be used to specify an
316alternative name for any variable type, and has many uses.
317
318.. _unnamed alternatives using the generic parser:
319
320Selecting an alternative from a set of possibilities
321----------------------------------------------------
322
323So far we have seen how the CommandLine library handles builtin types like
324``std::string``, ``bool`` and ``int``, but how does it handle things it doesn't
325know about, like enums or '``int*``'s?
326
327The answer is that it uses a table-driven generic parser (unless you specify
328your own parser, as described in the `Extension Guide`_). This parser maps
329literal strings to whatever type is required, and requires you to tell it what
330this mapping should be.
331
332Let's say that we would like to add four optimization levels to our optimizer,
333using the standard flags "``-g``", "``-O0``", "``-O1``", and "``-O2``". We
334could easily implement this with boolean options like above, but there are
335several problems with this strategy:
336
337#. A user could specify more than one of the options at a time, for example,
338 "``compiler -O3 -O2``". The CommandLine library would not be able to catch
339 this erroneous input for us.
340
341#. We would have to test 4 different variables to see which ones are set.
342
343#. This doesn't map to the numeric levels that we want... so we cannot easily
344 see if some level >= "``-O1``" is enabled.
345
346To cope with these problems, we can use an enum value, and have the CommandLine
347library fill it in with the appropriate level directly, which is used like this:
348
349.. code-block:: c++
350
351 enum OptLevel {
352 g, O1, O2, O3
353 };
354
355 cl::opt<OptLevel> OptimizationLevel(cl::desc("Choose optimization level:"),
356 cl::values(
357 clEnumVal(g , "No optimizations, enable debugging"),
358 clEnumVal(O1, "Enable trivial optimizations"),
359 clEnumVal(O2, "Enable default optimizations"),
Mehdi Amini732afdd2016-10-08 19:41:06 +0000360 clEnumVal(O3, "Enable expensive optimizations")));
Bill Wendling26f1f002012-08-08 08:21:24 +0000361
362 ...
363 if (OptimizationLevel >= O2) doPartialRedundancyElimination(...);
364 ...
365
366This declaration defines a variable "``OptimizationLevel``" of the
367"``OptLevel``" enum type. This variable can be assigned any of the values that
Mehdi Aminied767062016-10-10 17:13:14 +0000368are listed in the declaration. The CommandLine library enforces that
Bill Wendling26f1f002012-08-08 08:21:24 +0000369the user can only specify one of the options, and it ensure that only valid enum
370values can be specified. The "``clEnumVal``" macros ensure that the command
371line arguments matched the enum values. With this option added, our help output
372now is:
373
374::
375
376 USAGE: compiler [options] <input file>
377
378 OPTIONS:
379 Choose optimization level:
380 -g - No optimizations, enable debugging
381 -O1 - Enable trivial optimizations
382 -O2 - Enable default optimizations
383 -O3 - Enable expensive optimizations
384 -f - Enable binary output on terminals
385 -help - display available options (-help-hidden for more)
386 -o <filename> - Specify output filename
387 -quiet - Don't print informational messages
388
389In this case, it is sort of awkward that flag names correspond directly to enum
390names, because we probably don't want a enum definition named "``g``" in our
391program. Because of this, we can alternatively write this example like this:
392
393.. code-block:: c++
394
395 enum OptLevel {
396 Debug, O1, O2, O3
397 };
398
399 cl::opt<OptLevel> OptimizationLevel(cl::desc("Choose optimization level:"),
400 cl::values(
401 clEnumValN(Debug, "g", "No optimizations, enable debugging"),
402 clEnumVal(O1 , "Enable trivial optimizations"),
403 clEnumVal(O2 , "Enable default optimizations"),
Mehdi Amini732afdd2016-10-08 19:41:06 +0000404 clEnumVal(O3 , "Enable expensive optimizations")));
Bill Wendling26f1f002012-08-08 08:21:24 +0000405
406 ...
407 if (OptimizationLevel == Debug) outputDebugInfo(...);
408 ...
409
410By using the "``clEnumValN``" macro instead of "``clEnumVal``", we can directly
411specify the name that the flag should get. In general a direct mapping is nice,
412but sometimes you can't or don't want to preserve the mapping, which is when you
413would use it.
414
415Named Alternatives
416------------------
417
418Another useful argument form is a named alternative style. We shall use this
419style in our compiler to specify different debug levels that can be used.
420Instead of each debug level being its own switch, we want to support the
421following options, of which only one can be specified at a time:
422"``--debug-level=none``", "``--debug-level=quick``",
423"``--debug-level=detailed``". To do this, we use the exact same format as our
424optimization level flags, but we also specify an option name. For this case,
425the code looks like this:
426
427.. code-block:: c++
428
429 enum DebugLev {
430 nodebuginfo, quick, detailed
431 };
432
433 // Enable Debug Options to be specified on the command line
434 cl::opt<DebugLev> DebugLevel("debug_level", cl::desc("Set the debugging level:"),
435 cl::values(
436 clEnumValN(nodebuginfo, "none", "disable debug information"),
437 clEnumVal(quick, "enable quick debug information"),
Mehdi Amini732afdd2016-10-08 19:41:06 +0000438 clEnumVal(detailed, "enable detailed debug information")));
Bill Wendling26f1f002012-08-08 08:21:24 +0000439
440This definition defines an enumerated command line variable of type "``enum
441DebugLev``", which works exactly the same way as before. The difference here is
442just the interface exposed to the user of your program and the help output by
443the "``-help``" option:
444
445::
446
447 USAGE: compiler [options] <input file>
448
449 OPTIONS:
450 Choose optimization level:
451 -g - No optimizations, enable debugging
452 -O1 - Enable trivial optimizations
453 -O2 - Enable default optimizations
454 -O3 - Enable expensive optimizations
455 -debug_level - Set the debugging level:
456 =none - disable debug information
457 =quick - enable quick debug information
458 =detailed - enable detailed debug information
459 -f - Enable binary output on terminals
460 -help - display available options (-help-hidden for more)
461 -o <filename> - Specify output filename
462 -quiet - Don't print informational messages
463
464Again, the only structural difference between the debug level declaration and
465the optimization level declaration is that the debug level declaration includes
466an option name (``"debug_level"``), which automatically changes how the library
467processes the argument. The CommandLine library supports both forms so that you
468can choose the form most appropriate for your application.
469
470.. _lists:
471
472Parsing a list of options
473-------------------------
474
475Now that we have the standard run-of-the-mill argument types out of the way,
476lets get a little wild and crazy. Lets say that we want our optimizer to accept
477a **list** of optimizations to perform, allowing duplicates. For example, we
478might want to run: "``compiler -dce -constprop -inline -dce -strip``". In this
479case, the order of the arguments and the number of appearances is very
480important. This is what the "``cl::list``" template is for. First, start by
481defining an enum of the optimizations that you would like to perform:
482
483.. code-block:: c++
484
485 enum Opts {
486 // 'inline' is a C++ keyword, so name it 'inlining'
487 dce, constprop, inlining, strip
488 };
489
490Then define your "``cl::list``" variable:
491
492.. code-block:: c++
493
494 cl::list<Opts> OptimizationList(cl::desc("Available Optimizations:"),
495 cl::values(
496 clEnumVal(dce , "Dead Code Elimination"),
497 clEnumVal(constprop , "Constant Propagation"),
498 clEnumValN(inlining, "inline", "Procedure Integration"),
Mehdi Amini732afdd2016-10-08 19:41:06 +0000499 clEnumVal(strip , "Strip Symbols")));
Bill Wendling26f1f002012-08-08 08:21:24 +0000500
501This defines a variable that is conceptually of the type
502"``std::vector<enum Opts>``". Thus, you can access it with standard vector
503methods:
504
505.. code-block:: c++
506
507 for (unsigned i = 0; i != OptimizationList.size(); ++i)
508 switch (OptimizationList[i])
509 ...
510
511... to iterate through the list of options specified.
512
513Note that the "``cl::list``" template is completely general and may be used with
514any data types or other arguments that you can use with the "``cl::opt``"
515template. One especially useful way to use a list is to capture all of the
516positional arguments together if there may be more than one specified. In the
517case of a linker, for example, the linker takes several '``.o``' files, and
518needs to capture them into a list. This is naturally specified as:
519
520.. code-block:: c++
521
522 ...
523 cl::list<std::string> InputFilenames(cl::Positional, cl::desc("<Input files>"), cl::OneOrMore);
524 ...
525
526This variable works just like a "``vector<string>``" object. As such, accessing
527the list is simple, just like above. In this example, we used the
528`cl::OneOrMore`_ modifier to inform the CommandLine library that it is an error
529if the user does not specify any ``.o`` files on our command line. Again, this
530just reduces the amount of checking we have to do.
531
532Collecting options as a set of flags
533------------------------------------
534
535Instead of collecting sets of options in a list, it is also possible to gather
536information for enum values in a **bit vector**. The representation used by the
537`cl::bits`_ class is an ``unsigned`` integer. An enum value is represented by a
5380/1 in the enum's ordinal value bit position. 1 indicating that the enum was
539specified, 0 otherwise. As each specified value is parsed, the resulting enum's
540bit is set in the option's bit vector:
541
542.. code-block:: c++
543
544 bits |= 1 << (unsigned)enum;
545
546Options that are specified multiple times are redundant. Any instances after
547the first are discarded.
548
549Reworking the above list example, we could replace `cl::list`_ with `cl::bits`_:
550
551.. code-block:: c++
552
553 cl::bits<Opts> OptimizationBits(cl::desc("Available Optimizations:"),
554 cl::values(
555 clEnumVal(dce , "Dead Code Elimination"),
556 clEnumVal(constprop , "Constant Propagation"),
557 clEnumValN(inlining, "inline", "Procedure Integration"),
Mehdi Amini732afdd2016-10-08 19:41:06 +0000558 clEnumVal(strip , "Strip Symbols")));
Bill Wendling26f1f002012-08-08 08:21:24 +0000559
560To test to see if ``constprop`` was specified, we can use the ``cl:bits::isSet``
561function:
562
563.. code-block:: c++
564
565 if (OptimizationBits.isSet(constprop)) {
566 ...
567 }
568
569It's also possible to get the raw bit vector using the ``cl::bits::getBits``
570function:
571
572.. code-block:: c++
573
574 unsigned bits = OptimizationBits.getBits();
575
576Finally, if external storage is used, then the location specified must be of
577**type** ``unsigned``. In all other ways a `cl::bits`_ option is equivalent to a
578`cl::list`_ option.
579
580.. _additional extra text:
581
582Adding freeform text to help output
583-----------------------------------
584
585As our program grows and becomes more mature, we may decide to put summary
586information about what it does into the help output. The help output is styled
587to look similar to a Unix ``man`` page, providing concise information about a
588program. Unix ``man`` pages, however often have a description about what the
589program does. To add this to your CommandLine program, simply pass a third
590argument to the `cl::ParseCommandLineOptions`_ call in main. This additional
591argument is then printed as the overview information for your program, allowing
592you to include any additional information that you want. For example:
593
594.. code-block:: c++
595
596 int main(int argc, char **argv) {
597 cl::ParseCommandLineOptions(argc, argv, " CommandLine compiler example\n\n"
598 " This program blah blah blah...\n");
599 ...
600 }
601
602would yield the help output:
603
604::
605
606 **OVERVIEW: CommandLine compiler example
607
608 This program blah blah blah...**
609
610 USAGE: compiler [options] <input file>
611
612 OPTIONS:
613 ...
614 -help - display available options (-help-hidden for more)
615 -o <filename> - Specify output filename
616
Andrew Trick1fc397f2013-05-07 17:34:35 +0000617.. _grouping options into categories:
618
Andrew Trick0537a982013-05-06 21:56:23 +0000619Grouping options into categories
620--------------------------------
621
622If our program has a large number of options it may become difficult for users
623of our tool to navigate the output of ``-help``. To alleviate this problem we
624can put our options into categories. This can be done by declaring option
625categories (`cl::OptionCategory`_ objects) and then placing our options into
626these categories using the `cl::cat`_ option attribute. For example:
627
628.. code-block:: c++
629
630 cl::OptionCategory StageSelectionCat("Stage Selection Options",
631 "These control which stages are run.");
632
633 cl::opt<bool> Preprocessor("E",cl::desc("Run preprocessor stage."),
634 cl::cat(StageSelectionCat));
635
636 cl::opt<bool> NoLink("c",cl::desc("Run all stages except linking."),
637 cl::cat(StageSelectionCat));
638
639The output of ``-help`` will become categorized if an option category is
640declared. The output looks something like ::
641
642 OVERVIEW: This is a small program to demo the LLVM CommandLine API
643 USAGE: Sample [options]
644
645 OPTIONS:
646
647 General options:
648
649 -help - Display available options (-help-hidden for more)
650 -help-list - Display list of available options (-help-list-hidden for more)
651
652
653 Stage Selection Options:
654 These control which stages are run.
655
656 -E - Run preprocessor stage.
657 -c - Run all stages except linking.
658
659In addition to the behaviour of ``-help`` changing when an option category is
660declared, the command line option ``-help-list`` becomes visible which will
661print the command line options as uncategorized list.
662
663Note that Options that are not explicitly categorized will be placed in the
664``cl::GeneralCategory`` category.
665
Bill Wendling26f1f002012-08-08 08:21:24 +0000666.. _Reference Guide:
667
668Reference Guide
669===============
670
671Now that you know the basics of how to use the CommandLine library, this section
672will give you the detailed information you need to tune how command line options
673work, as well as information on more "advanced" command line option processing
674capabilities.
675
676.. _positional:
677.. _positional argument:
678.. _Positional Arguments:
679.. _Positional arguments section:
680.. _positional options:
681
682Positional Arguments
683--------------------
684
685Positional arguments are those arguments that are not named, and are not
686specified with a hyphen. Positional arguments should be used when an option is
687specified by its position alone. For example, the standard Unix ``grep`` tool
688takes a regular expression argument, and an optional filename to search through
689(which defaults to standard input if a filename is not specified). Using the
690CommandLine library, this would be specified as:
691
692.. code-block:: c++
693
694 cl::opt<string> Regex (cl::Positional, cl::desc("<regular expression>"), cl::Required);
695 cl::opt<string> Filename(cl::Positional, cl::desc("<input file>"), cl::init("-"));
696
697Given these two option declarations, the ``-help`` output for our grep
698replacement would look like this:
699
700::
701
702 USAGE: spiffygrep [options] <regular expression> <input file>
703
704 OPTIONS:
705 -help - display available options (-help-hidden for more)
706
707... and the resultant program could be used just like the standard ``grep``
708tool.
709
710Positional arguments are sorted by their order of construction. This means that
711command line options will be ordered according to how they are listed in a .cpp
712file, but will not have an ordering defined if the positional arguments are
713defined in multiple .cpp files. The fix for this problem is simply to define
714all of your positional arguments in one .cpp file.
715
716Specifying positional options with hyphens
717^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
718
719Sometimes you may want to specify a value to your positional argument that
720starts with a hyphen (for example, searching for '``-foo``' in a file). At
721first, you will have trouble doing this, because it will try to find an argument
722named '``-foo``', and will fail (and single quotes will not save you). Note
723that the system ``grep`` has the same problem:
724
725::
726
727 $ spiffygrep '-foo' test.txt
728 Unknown command line argument '-foo'. Try: spiffygrep -help'
729
730 $ grep '-foo' test.txt
731 grep: illegal option -- f
732 grep: illegal option -- o
733 grep: illegal option -- o
734 Usage: grep -hblcnsviw pattern file . . .
735
736The solution for this problem is the same for both your tool and the system
737version: use the '``--``' marker. When the user specifies '``--``' on the
738command line, it is telling the program that all options after the '``--``'
739should be treated as positional arguments, not options. Thus, we can use it
740like this:
741
742::
743
744 $ spiffygrep -- -foo test.txt
745 ...output...
746
747Determining absolute position with getPosition()
748^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
749
750Sometimes an option can affect or modify the meaning of another option. For
751example, consider ``gcc``'s ``-x LANG`` option. This tells ``gcc`` to ignore the
752suffix of subsequent positional arguments and force the file to be interpreted
753as if it contained source code in language ``LANG``. In order to handle this
754properly, you need to know the absolute position of each argument, especially
755those in lists, so their interaction(s) can be applied correctly. This is also
756useful for options like ``-llibname`` which is actually a positional argument
757that starts with a dash.
758
759So, generally, the problem is that you have two ``cl::list`` variables that
760interact in some way. To ensure the correct interaction, you can use the
761``cl::list::getPosition(optnum)`` method. This method returns the absolute
762position (as found on the command line) of the ``optnum`` item in the
763``cl::list``.
764
765The idiom for usage is like this:
766
767.. code-block:: c++
768
769 static cl::list<std::string> Files(cl::Positional, cl::OneOrMore);
770 static cl::list<std::string> Libraries("l", cl::ZeroOrMore);
771
772 int main(int argc, char**argv) {
773 // ...
774 std::vector<std::string>::iterator fileIt = Files.begin();
775 std::vector<std::string>::iterator libIt = Libraries.begin();
776 unsigned libPos = 0, filePos = 0;
777 while ( 1 ) {
778 if ( libIt != Libraries.end() )
779 libPos = Libraries.getPosition( libIt - Libraries.begin() );
780 else
781 libPos = 0;
782 if ( fileIt != Files.end() )
783 filePos = Files.getPosition( fileIt - Files.begin() );
784 else
785 filePos = 0;
786
787 if ( filePos != 0 && (libPos == 0 || filePos < libPos) ) {
788 // Source File Is next
789 ++fileIt;
790 }
791 else if ( libPos != 0 && (filePos == 0 || libPos < filePos) ) {
792 // Library is next
793 ++libIt;
794 }
795 else
796 break; // we're done with the list
797 }
798 }
799
800Note that, for compatibility reasons, the ``cl::opt`` also supports an
801``unsigned getPosition()`` option that will provide the absolute position of
802that option. You can apply the same approach as above with a ``cl::opt`` and a
803``cl::list`` option as you can with two lists.
804
805.. _interpreter style options:
806.. _cl::ConsumeAfter:
807.. _this section for more information:
808
809The ``cl::ConsumeAfter`` modifier
810^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
811
812The ``cl::ConsumeAfter`` `formatting option`_ is used to construct programs that
813use "interpreter style" option processing. With this style of option
814processing, all arguments specified after the last positional argument are
815treated as special interpreter arguments that are not interpreted by the command
816line argument.
817
818As a concrete example, lets say we are developing a replacement for the standard
819Unix Bourne shell (``/bin/sh``). To run ``/bin/sh``, first you specify options
820to the shell itself (like ``-x`` which turns on trace output), then you specify
821the name of the script to run, then you specify arguments to the script. These
822arguments to the script are parsed by the Bourne shell command line option
823processor, but are not interpreted as options to the shell itself. Using the
824CommandLine library, we would specify this as:
825
826.. code-block:: c++
827
828 cl::opt<string> Script(cl::Positional, cl::desc("<input script>"), cl::init("-"));
829 cl::list<string> Argv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
830 cl::opt<bool> Trace("x", cl::desc("Enable trace output"));
831
832which automatically provides the help output:
833
834::
835
836 USAGE: spiffysh [options] <input script> <program arguments>...
837
838 OPTIONS:
839 -help - display available options (-help-hidden for more)
840 -x - Enable trace output
841
842At runtime, if we run our new shell replacement as ```spiffysh -x test.sh -a -x
843-y bar``', the ``Trace`` variable will be set to true, the ``Script`` variable
844will be set to "``test.sh``", and the ``Argv`` list will contain ``["-a", "-x",
845"-y", "bar"]``, because they were specified after the last positional argument
846(which is the script name).
847
848There are several limitations to when ``cl::ConsumeAfter`` options can be
849specified. For example, only one ``cl::ConsumeAfter`` can be specified per
850program, there must be at least one `positional argument`_ specified, there must
851not be any `cl::list`_ positional arguments, and the ``cl::ConsumeAfter`` option
852should be a `cl::list`_ option.
853
854.. _can be changed:
855.. _Internal vs External Storage:
856
857Internal vs External Storage
858----------------------------
859
860By default, all command line options automatically hold the value that they
861parse from the command line. This is very convenient in the common case,
862especially when combined with the ability to define command line options in the
863files that use them. This is called the internal storage model.
864
865Sometimes, however, it is nice to separate the command line option processing
866code from the storage of the value parsed. For example, lets say that we have a
867'``-debug``' option that we would like to use to enable debug information across
868the entire body of our program. In this case, the boolean value controlling the
869debug code should be globally accessible (in a header file, for example) yet the
870command line option processing code should not be exposed to all of these
871clients (requiring lots of .cpp files to ``#include CommandLine.h``).
872
873To do this, set up your .h file with your option, like this for example:
874
875.. code-block:: c++
876
877 // DebugFlag.h - Get access to the '-debug' command line option
878 //
879
880 // DebugFlag - This boolean is set to true if the '-debug' command line option
881 // is specified. This should probably not be referenced directly, instead, use
882 // the DEBUG macro below.
883 //
884 extern bool DebugFlag;
885
886 // DEBUG macro - This macro should be used by code to emit debug information.
887 // In the '-debug' option is specified on the command line, and if this is a
888 // debug build, then the code specified as the option to the macro will be
889 // executed. Otherwise it will not be.
890 #ifdef NDEBUG
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000891 #define LLVM_DEBUG(X)
Bill Wendling26f1f002012-08-08 08:21:24 +0000892 #else
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000893 #define LLVM_DEBUG(X) do { if (DebugFlag) { X; } } while (0)
Bill Wendling26f1f002012-08-08 08:21:24 +0000894 #endif
895
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000896This allows clients to blissfully use the ``LLVM_DEBUG()`` macro, or the
Bill Wendling26f1f002012-08-08 08:21:24 +0000897``DebugFlag`` explicitly if they want to. Now we just need to be able to set
898the ``DebugFlag`` boolean when the option is set. To do this, we pass an
899additional argument to our command line argument processor, and we specify where
900to fill in with the `cl::location`_ attribute:
901
902.. code-block:: c++
903
904 bool DebugFlag; // the actual value
905 static cl::opt<bool, true> // The parser
906 Debug("debug", cl::desc("Enable debug output"), cl::Hidden, cl::location(DebugFlag));
907
908In the above example, we specify "``true``" as the second argument to the
909`cl::opt`_ template, indicating that the template should not maintain a copy of
910the value itself. In addition to this, we specify the `cl::location`_
911attribute, so that ``DebugFlag`` is automatically set.
912
913Option Attributes
914-----------------
915
916This section describes the basic attributes that you can specify on options.
917
918* The option name attribute (which is required for all options, except
919 `positional options`_) specifies what the option name is. This option is
920 specified in simple double quotes:
921
922 .. code-block:: c++
923
Hans Wennborg0c14cf92013-07-10 22:09:22 +0000924 cl::opt<bool> Quiet("quiet");
Bill Wendling26f1f002012-08-08 08:21:24 +0000925
926.. _cl::desc(...):
927
928* The **cl::desc** attribute specifies a description for the option to be
Alexander Kornienko72a196a2013-05-10 17:15:51 +0000929 shown in the ``-help`` output for the program. This attribute supports
930 multi-line descriptions with lines separated by '\n'.
Bill Wendling26f1f002012-08-08 08:21:24 +0000931
932.. _cl::value_desc:
933
934* The **cl::value_desc** attribute specifies a string that can be used to
935 fine tune the ``-help`` output for a command line option. Look `here`_ for an
936 example.
937
938.. _cl::init:
939
940* The **cl::init** attribute specifies an initial value for a `scalar`_
941 option. If this attribute is not specified then the command line option value
942 defaults to the value created by the default constructor for the
943 type.
944
945 .. warning::
946
947 If you specify both **cl::init** and **cl::location** for an option, you
948 must specify **cl::location** first, so that when the command-line parser
949 sees **cl::init**, it knows where to put the initial value. (You will get an
950 error at runtime if you don't put them in the right order.)
951
952.. _cl::location:
953
954* The **cl::location** attribute where to store the value for a parsed command
955 line option if using external storage. See the section on `Internal vs
956 External Storage`_ for more information.
957
958.. _cl::aliasopt:
959
960* The **cl::aliasopt** attribute specifies which option a `cl::alias`_ option is
961 an alias for.
962
963.. _cl::values:
964
965* The **cl::values** attribute specifies the string-to-value mapping to be used
Mehdi Aminied767062016-10-10 17:13:14 +0000966 by the generic parser. It takes a list of (option, value, description)
967 triplets that specify the option name, the value mapped to, and the
968 description shown in the ``-help`` for the tool. Because the generic parser
969 is used most frequently with enum values, two macros are often useful:
Bill Wendling26f1f002012-08-08 08:21:24 +0000970
971 #. The **clEnumVal** macro is used as a nice simple way to specify a triplet
972 for an enum. This macro automatically makes the option name be the same as
973 the enum name. The first option to the macro is the enum, the second is
974 the description for the command line option.
975
976 #. The **clEnumValN** macro is used to specify macro options where the option
977 name doesn't equal the enum name. For this macro, the first argument is
978 the enum value, the second is the flag name, and the second is the
979 description.
980
981 You will get a compile time error if you try to use cl::values with a parser
982 that does not support it.
983
984.. _cl::multi_val:
985
986* The **cl::multi_val** attribute specifies that this option takes has multiple
987 values (example: ``-sectalign segname sectname sectvalue``). This attribute
988 takes one unsigned argument - the number of values for the option. This
989 attribute is valid only on ``cl::list`` options (and will fail with compile
990 error if you try to use it with other option types). It is allowed to use all
991 of the usual modifiers on multi-valued options (besides
992 ``cl::ValueDisallowed``, obviously).
993
Andrew Trick0537a982013-05-06 21:56:23 +0000994.. _cl::cat:
995
996* The **cl::cat** attribute specifies the option category that the option
997 belongs to. The category should be a `cl::OptionCategory`_ object.
998
Don Hinton65559952019-12-06 14:40:21 -0800999.. _cl::callback:
1000
1001* The **cl::callback** attribute specifies a callback function that is
1002 called when an option is seen, and can be used to set other options,
1003 as in option B implies option A. If the option is a `cl::list`_,
1004 and `cl::CommaSeparated`_ is also specified, the callback will fire
1005 once for each value. This could be used to validate combinations or
1006 selectively set other options.
1007
1008 .. code-block:: c++
1009
1010 cl::opt<bool> OptA("a", cl::desc("option a"));
1011 cl::opt<bool> OptB(
1012 "b", cl::desc("option b -- This option turns on option a"),
1013 cl::callback([&](const bool &) { OptA = true; }));
1014 cl::list<std::string, cl::list<std::string>> List(
1015 "list",
1016 cl::desc("option list -- This option turns on options a when "
1017 "'foo' is included in list"),
1018 cl::CommaSeparated,
1019 cl::callback([&](const std::string &Str) {
1020 if (Str == "foo")
1021 OptA = true;
1022 }));
1023
Bill Wendling26f1f002012-08-08 08:21:24 +00001024Option Modifiers
1025----------------
1026
1027Option modifiers are the flags and expressions that you pass into the
1028constructors for `cl::opt`_ and `cl::list`_. These modifiers give you the
1029ability to tweak how options are parsed and how ``-help`` output is generated to
1030fit your application well.
1031
1032These options fall into five main categories:
1033
1034#. Hiding an option from ``-help`` output
1035
1036#. Controlling the number of occurrences required and allowed
1037
1038#. Controlling whether or not a value must be specified
1039
1040#. Controlling other formatting options
1041
1042#. Miscellaneous option modifiers
1043
1044It is not possible to specify two options from the same category (you'll get a
1045runtime error) to a single option, except for options in the miscellaneous
1046category. The CommandLine library specifies defaults for all of these settings
1047that are the most useful in practice and the most common, which mean that you
1048usually shouldn't have to worry about these.
1049
1050Hiding an option from ``-help`` output
1051^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1052
1053The ``cl::NotHidden``, ``cl::Hidden``, and ``cl::ReallyHidden`` modifiers are
1054used to control whether or not an option appears in the ``-help`` and
1055``-help-hidden`` output for the compiled program:
1056
1057.. _cl::NotHidden:
1058
1059* The **cl::NotHidden** modifier (which is the default for `cl::opt`_ and
1060 `cl::list`_ options) indicates the option is to appear in both help
1061 listings.
1062
1063.. _cl::Hidden:
1064
1065* The **cl::Hidden** modifier (which is the default for `cl::alias`_ options)
1066 indicates that the option should not appear in the ``-help`` output, but
1067 should appear in the ``-help-hidden`` output.
1068
1069.. _cl::ReallyHidden:
1070
1071* The **cl::ReallyHidden** modifier indicates that the option should not appear
1072 in any help output.
1073
1074Controlling the number of occurrences required and allowed
1075^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1076
1077This group of options is used to control how many time an option is allowed (or
1078required) to be specified on the command line of your program. Specifying a
1079value for this setting allows the CommandLine library to do error checking for
1080you.
1081
1082The allowed values for this option group are:
1083
1084.. _cl::Optional:
1085
1086* The **cl::Optional** modifier (which is the default for the `cl::opt`_ and
1087 `cl::alias`_ classes) indicates that your program will allow either zero or
1088 one occurrence of the option to be specified.
1089
1090.. _cl::ZeroOrMore:
1091
1092* The **cl::ZeroOrMore** modifier (which is the default for the `cl::list`_
1093 class) indicates that your program will allow the option to be specified zero
1094 or more times.
1095
1096.. _cl::Required:
1097
1098* The **cl::Required** modifier indicates that the specified option must be
1099 specified exactly one time.
1100
1101.. _cl::OneOrMore:
1102
1103* The **cl::OneOrMore** modifier indicates that the option must be specified at
1104 least one time.
1105
1106* The **cl::ConsumeAfter** modifier is described in the `Positional arguments
1107 section`_.
1108
1109If an option is not specified, then the value of the option is equal to the
1110value specified by the `cl::init`_ attribute. If the ``cl::init`` attribute is
1111not specified, the option value is initialized with the default constructor for
1112the data type.
1113
1114If an option is specified multiple times for an option of the `cl::opt`_ class,
1115only the last value will be retained.
1116
1117Controlling whether or not a value must be specified
1118^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1119
1120This group of options is used to control whether or not the option allows a
1121value to be present. In the case of the CommandLine library, a value is either
1122specified with an equal sign (e.g. '``-index-depth=17``') or as a trailing
1123string (e.g. '``-o a.out``').
1124
1125The allowed values for this option group are:
1126
1127.. _cl::ValueOptional:
1128
1129* The **cl::ValueOptional** modifier (which is the default for ``bool`` typed
1130 options) specifies that it is acceptable to have a value, or not. A boolean
1131 argument can be enabled just by appearing on the command line, or it can have
1132 an explicit '``-foo=true``'. If an option is specified with this mode, it is
1133 illegal for the value to be provided without the equal sign. Therefore
1134 '``-foo true``' is illegal. To get this behavior, you must use
1135 the `cl::ValueRequired`_ modifier.
1136
1137.. _cl::ValueRequired:
1138
1139* The **cl::ValueRequired** modifier (which is the default for all other types
1140 except for `unnamed alternatives using the generic parser`_) specifies that a
1141 value must be provided. This mode informs the command line library that if an
1142 option is not provides with an equal sign, that the next argument provided
1143 must be the value. This allows things like '``-o a.out``' to work.
1144
1145.. _cl::ValueDisallowed:
1146
1147* The **cl::ValueDisallowed** modifier (which is the default for `unnamed
1148 alternatives using the generic parser`_) indicates that it is a runtime error
1149 for the user to specify a value. This can be provided to disallow users from
1150 providing options to boolean options (like '``-foo=true``').
1151
1152In general, the default values for this option group work just like you would
1153want them to. As mentioned above, you can specify the `cl::ValueDisallowed`_
1154modifier to a boolean argument to restrict your command line parser. These
1155options are mostly useful when `extending the library`_.
1156
1157.. _formatting option:
1158
1159Controlling other formatting options
1160^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1161
1162The formatting option group is used to specify that the command line option has
1163special abilities and is otherwise different from other command line arguments.
1164As usual, you can only specify one of these arguments at most.
1165
1166.. _cl::NormalFormatting:
1167
1168* The **cl::NormalFormatting** modifier (which is the default all options)
1169 specifies that this option is "normal".
1170
1171.. _cl::Positional:
1172
1173* The **cl::Positional** modifier specifies that this is a positional argument
1174 that does not have a command line option associated with it. See the
1175 `Positional Arguments`_ section for more information.
1176
1177* The **cl::ConsumeAfter** modifier specifies that this option is used to
1178 capture "interpreter style" arguments. See `this section for more
1179 information`_.
1180
1181.. _prefix:
1182.. _cl::Prefix:
1183
1184* The **cl::Prefix** modifier specifies that this option prefixes its value.
1185 With 'Prefix' options, the equal sign does not separate the value from the
1186 option name specified. Instead, the value is everything after the prefix,
1187 including any equal sign if present. This is useful for processing odd
1188 arguments like ``-lmalloc`` and ``-L/usr/lib`` in a linker tool or
1189 ``-DNAME=value`` in a compiler tool. Here, the '``l``', '``D``' and '``L``'
1190 options are normal string (or list) options, that have the **cl::Prefix**
1191 modifier added to allow the CommandLine library to recognize them. Note that
1192 **cl::Prefix** options must not have the **cl::ValueDisallowed** modifier
1193 specified.
1194
1195.. _grouping:
1196.. _cl::Grouping:
1197
Igor Kudrina38432c2019-03-01 09:22:42 +00001198Controlling options grouping
1199^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1200
1201The **cl::Grouping** modifier can be combined with any formatting types except
1202for `cl::Positional`_. It is used to implement Unix-style tools (like ``ls``)
1203that have lots of single letter arguments, but only require a single dash.
1204For example, the '``ls -labF``' command actually enables four different options,
1205all of which are single letters.
1206
1207Note that **cl::Grouping** options can have values only if they are used
1208separately or at the end of the groups. For `cl::ValueRequired`_, it is
1209a runtime error if such an option is used elsewhere in the group.
Bill Wendling26f1f002012-08-08 08:21:24 +00001210
1211The CommandLine library does not restrict how you use the **cl::Prefix** or
1212**cl::Grouping** modifiers, but it is possible to specify ambiguous argument
1213settings. Thus, it is possible to have multiple letter options that are prefix
1214or grouping options, and they will still work as designed.
1215
1216To do this, the CommandLine library uses a greedy algorithm to parse the input
1217option into (potentially multiple) prefix and grouping options. The strategy
1218basically looks like this:
1219
1220::
1221
1222 parse(string OrigInput) {
1223
Igor Kudrina38432c2019-03-01 09:22:42 +00001224 1. string Input = OrigInput;
1225 2. if (isOption(Input)) return getOption(Input).parse(); // Normal option
1226 3. while (!Input.empty() && !isOption(Input)) Input.pop_back(); // Remove the last letter
1227 4. while (!Input.empty()) {
1228 string MaybeValue = OrigInput.substr(Input.length())
1229 if (getOption(Input).isPrefix())
1230 return getOption(Input).parse(MaybeValue)
1231 if (!MaybeValue.empty() && MaybeValue[0] == '=')
1232 return getOption(Input).parse(MaybeValue.substr(1))
1233 if (!getOption(Input).isGrouping())
1234 return error()
1235 getOption(Input).parse()
1236 Input = OrigInput = MaybeValue
1237 while (!Input.empty() && !isOption(Input)) Input.pop_back();
1238 if (!Input.empty() && !getOption(Input).isGrouping())
1239 return error()
Bill Wendling26f1f002012-08-08 08:21:24 +00001240 }
Igor Kudrina38432c2019-03-01 09:22:42 +00001241 5. if (!OrigInput.empty()) error();
Bill Wendling26f1f002012-08-08 08:21:24 +00001242
1243 }
1244
1245Miscellaneous option modifiers
1246^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1247
1248The miscellaneous option modifiers are the only flags where you can specify more
1249than one flag from the set: they are not mutually exclusive. These flags
1250specify boolean properties that modify the option.
1251
1252.. _cl::CommaSeparated:
1253
1254* The **cl::CommaSeparated** modifier indicates that any commas specified for an
1255 option's value should be used to split the value up into multiple values for
1256 the option. For example, these two options are equivalent when
1257 ``cl::CommaSeparated`` is specified: "``-foo=a -foo=b -foo=c``" and
1258 "``-foo=a,b,c``". This option only makes sense to be used in a case where the
1259 option is allowed to accept one or more values (i.e. it is a `cl::list`_
1260 option).
1261
Don Hinton6ee3fef2019-04-26 15:22:21 +00001262.. _cl::DefaultOption:
1263
1264* The **cl::DefaultOption** modifier is used to specify that the option is a
1265 default that can be overridden by application specific parsers. For example,
1266 the ``-help`` alias, ``-h``, is registered this way, so it can be overridden
1267 by applications that need to use the ``-h`` option for another purpose,
1268 either as a regular option or an alias for another option.
1269
Bill Wendling26f1f002012-08-08 08:21:24 +00001270.. _cl::PositionalEatsArgs:
1271
1272* The **cl::PositionalEatsArgs** modifier (which only applies to positional
1273 arguments, and only makes sense for lists) indicates that positional argument
1274 should consume any strings after it (including strings that start with a "-")
1275 up until another recognized positional argument. For example, if you have two
1276 "eating" positional arguments, "``pos1``" and "``pos2``", the string "``-pos1
1277 -foo -bar baz -pos2 -bork``" would cause the "``-foo -bar -baz``" strings to
1278 be applied to the "``-pos1``" option and the "``-bork``" string to be applied
1279 to the "``-pos2``" option.
1280
1281.. _cl::Sink:
1282
1283* The **cl::Sink** modifier is used to handle unknown options. If there is at
1284 least one option with ``cl::Sink`` modifier specified, the parser passes
1285 unrecognized option strings to it as values instead of signaling an error. As
1286 with ``cl::CommaSeparated``, this modifier only makes sense with a `cl::list`_
1287 option.
1288
Bill Wendling26f1f002012-08-08 08:21:24 +00001289.. _response files:
1290
1291Response files
1292^^^^^^^^^^^^^^
1293
1294Some systems, such as certain variants of Microsoft Windows and some older
1295Unices have a relatively low limit on command-line length. It is therefore
1296customary to use the so-called 'response files' to circumvent this
1297restriction. These files are mentioned on the command-line (using the "@file")
1298syntax. The program reads these files and inserts the contents into argv,
Dave Leed44afff2017-09-20 22:41:34 +00001299thereby working around the command-line length limits.
Bill Wendling26f1f002012-08-08 08:21:24 +00001300
1301Top-Level Classes and Functions
1302-------------------------------
1303
1304Despite all of the built-in flexibility, the CommandLine option library really
Tim Northover75b5db32019-11-19 20:46:20 +00001305only consists of one function `cl::ParseCommandLineOptions`_ and three main
Bill Wendling26f1f002012-08-08 08:21:24 +00001306classes: `cl::opt`_, `cl::list`_, and `cl::alias`_. This section describes
1307these three classes in detail.
1308
Andrew Trick7cb710d2013-05-06 21:56:35 +00001309.. _cl::getRegisteredOptions:
1310
1311The ``cl::getRegisteredOptions`` function
1312^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1313
1314The ``cl::getRegisteredOptions`` function is designed to give a programmer
Alp Tokerf907b892013-12-05 05:44:44 +00001315access to declared non-positional command line options so that how they appear
Andrew Trick7cb710d2013-05-06 21:56:35 +00001316in ``-help`` can be modified prior to calling `cl::ParseCommandLineOptions`_.
1317Note this method should not be called during any static initialisation because
1318it cannot be guaranteed that all options will have been initialised. Hence it
1319should be called from ``main``.
1320
1321This function can be used to gain access to options declared in libraries that
Hiroshi Inoue78edad12019-06-25 07:24:27 +00001322the tool writer may not have direct access to.
Andrew Trick7cb710d2013-05-06 21:56:35 +00001323
1324The function retrieves a :ref:`StringMap <dss_stringmap>` that maps the option
1325string (e.g. ``-help``) to an ``Option*``.
1326
1327Here is an example of how the function could be used:
1328
1329.. code-block:: c++
1330
1331 using namespace llvm;
1332 int main(int argc, char **argv) {
1333 cl::OptionCategory AnotherCategory("Some options");
1334
Brian Gesiak2980b0a2016-11-07 02:43:01 +00001335 StringMap<cl::Option*> &Map = cl::getRegisteredOptions();
Andrew Trick7cb710d2013-05-06 21:56:35 +00001336
1337 //Unhide useful option and put it in a different category
1338 assert(Map.count("print-all-options") > 0);
1339 Map["print-all-options"]->setHiddenFlag(cl::NotHidden);
1340 Map["print-all-options"]->setCategory(AnotherCategory);
1341
1342 //Hide an option we don't want to see
1343 assert(Map.count("enable-no-infs-fp-math") > 0);
1344 Map["enable-no-infs-fp-math"]->setHiddenFlag(cl::Hidden);
1345
1346 //Change --version to --show-version
1347 assert(Map.count("version") > 0);
1348 Map["version"]->setArgStr("show-version");
1349
1350 //Change --help description
1351 assert(Map.count("help") > 0);
1352 Map["help"]->setDescription("Shows help");
1353
1354 cl::ParseCommandLineOptions(argc, argv, "This is a small program to demo the LLVM CommandLine API");
1355 ...
1356 }
1357
1358
Bill Wendling26f1f002012-08-08 08:21:24 +00001359.. _cl::ParseCommandLineOptions:
1360
1361The ``cl::ParseCommandLineOptions`` function
1362^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1363
1364The ``cl::ParseCommandLineOptions`` function is designed to be called directly
1365from ``main``, and is used to fill in the values of all of the command line
1366option variables once ``argc`` and ``argv`` are available.
1367
1368The ``cl::ParseCommandLineOptions`` function requires two parameters (``argc``
1369and ``argv``), but may also take an optional third parameter which holds
Dave Leed44afff2017-09-20 22:41:34 +00001370`additional extra text`_ to emit when the ``-help`` option is invoked.
Bill Wendling26f1f002012-08-08 08:21:24 +00001371
1372.. _cl::ParseEnvironmentOptions:
1373
1374The ``cl::ParseEnvironmentOptions`` function
1375^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1376
1377The ``cl::ParseEnvironmentOptions`` function has mostly the same effects as
1378`cl::ParseCommandLineOptions`_, except that it is designed to take values for
1379options from an environment variable, for those cases in which reading the
1380command line is not convenient or desired. It fills in the values of all the
1381command line option variables just like `cl::ParseCommandLineOptions`_ does.
1382
1383It takes four parameters: the name of the program (since ``argv`` may not be
1384available, it can't just look in ``argv[0]``), the name of the environment
Dave Leed44afff2017-09-20 22:41:34 +00001385variable to examine, and the optional `additional extra text`_ to emit when the
1386``-help`` option is invoked.
Bill Wendling26f1f002012-08-08 08:21:24 +00001387
1388``cl::ParseEnvironmentOptions`` will break the environment variable's value up
1389into words and then process them using `cl::ParseCommandLineOptions`_.
1390**Note:** Currently ``cl::ParseEnvironmentOptions`` does not support quoting, so
1391an environment variable containing ``-option "foo bar"`` will be parsed as three
1392words, ``-option``, ``"foo``, and ``bar"``, which is different from what you
1393would get from the shell with the same input.
1394
1395The ``cl::SetVersionPrinter`` function
1396^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1397
1398The ``cl::SetVersionPrinter`` function is designed to be called directly from
1399``main`` and *before* ``cl::ParseCommandLineOptions``. Its use is optional. It
1400simply arranges for a function to be called in response to the ``--version``
1401option instead of having the ``CommandLine`` library print out the usual version
1402string for LLVM. This is useful for programs that are not part of LLVM but wish
1403to use the ``CommandLine`` facilities. Such programs should just define a small
1404function that takes no arguments and returns ``void`` and that prints out
1405whatever version information is appropriate for the program. Pass the address of
1406that function to ``cl::SetVersionPrinter`` to arrange for it to be called when
1407the ``--version`` option is given by the user.
1408
1409.. _cl::opt:
1410.. _scalar:
1411
1412The ``cl::opt`` class
1413^^^^^^^^^^^^^^^^^^^^^
1414
1415The ``cl::opt`` class is the class used to represent scalar command line
1416options, and is the one used most of the time. It is a templated class which
1417can take up to three arguments (all except for the first have default values
1418though):
1419
1420.. code-block:: c++
1421
1422 namespace cl {
1423 template <class DataType, bool ExternalStorage = false,
1424 class ParserClass = parser<DataType> >
1425 class opt;
1426 }
1427
1428The first template argument specifies what underlying data type the command line
1429argument is, and is used to select a default parser implementation. The second
1430template argument is used to specify whether the option should contain the
1431storage for the option (the default) or whether external storage should be used
1432to contain the value parsed for the option (see `Internal vs External Storage`_
1433for more information).
1434
1435The third template argument specifies which parser to use. The default value
1436selects an instantiation of the ``parser`` class based on the underlying data
1437type of the option. In general, this default works well for most applications,
1438so this option is only used when using a `custom parser`_.
1439
1440.. _lists of arguments:
1441.. _cl::list:
1442
1443The ``cl::list`` class
1444^^^^^^^^^^^^^^^^^^^^^^
1445
1446The ``cl::list`` class is the class used to represent a list of command line
1447options. It too is a templated class which can take up to three arguments:
1448
1449.. code-block:: c++
1450
1451 namespace cl {
1452 template <class DataType, class Storage = bool,
1453 class ParserClass = parser<DataType> >
1454 class list;
1455 }
1456
1457This class works the exact same as the `cl::opt`_ class, except that the second
1458argument is the **type** of the external storage, not a boolean value. For this
1459class, the marker type '``bool``' is used to indicate that internal storage
1460should be used.
1461
1462.. _cl::bits:
1463
1464The ``cl::bits`` class
1465^^^^^^^^^^^^^^^^^^^^^^
1466
1467The ``cl::bits`` class is the class used to represent a list of command line
1468options in the form of a bit vector. It is also a templated class which can
1469take up to three arguments:
1470
1471.. code-block:: c++
1472
1473 namespace cl {
1474 template <class DataType, class Storage = bool,
1475 class ParserClass = parser<DataType> >
1476 class bits;
1477 }
1478
1479This class works the exact same as the `cl::list`_ class, except that the second
1480argument must be of **type** ``unsigned`` if external storage is used.
1481
1482.. _cl::alias:
1483
1484The ``cl::alias`` class
1485^^^^^^^^^^^^^^^^^^^^^^^
1486
1487The ``cl::alias`` class is a nontemplated class that is used to form aliases for
1488other arguments.
1489
1490.. code-block:: c++
1491
1492 namespace cl {
1493 class alias;
1494 }
1495
1496The `cl::aliasopt`_ attribute should be used to specify which option this is an
1497alias for. Alias arguments default to being `cl::Hidden`_, and use the aliased
1498options parser to do the conversion from string to data.
1499
1500.. _cl::extrahelp:
1501
1502The ``cl::extrahelp`` class
1503^^^^^^^^^^^^^^^^^^^^^^^^^^^
1504
1505The ``cl::extrahelp`` class is a nontemplated class that allows extra help text
1506to be printed out for the ``-help`` option.
1507
1508.. code-block:: c++
1509
1510 namespace cl {
1511 struct extrahelp;
1512 }
1513
1514To use the extrahelp, simply construct one with a ``const char*`` parameter to
1515the constructor. The text passed to the constructor will be printed at the
1516bottom of the help message, verbatim. Note that multiple ``cl::extrahelp``
1517**can** be used, but this practice is discouraged. If your tool needs to print
1518additional help information, put all that help into a single ``cl::extrahelp``
1519instance.
1520
1521For example:
1522
1523.. code-block:: c++
1524
1525 cl::extrahelp("\nADDITIONAL HELP:\n\n This is the extra help\n");
1526
Andrew Trick0537a982013-05-06 21:56:23 +00001527.. _cl::OptionCategory:
1528
1529The ``cl::OptionCategory`` class
1530^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1531
1532The ``cl::OptionCategory`` class is a simple class for declaring
1533option categories.
1534
1535.. code-block:: c++
1536
1537 namespace cl {
1538 class OptionCategory;
1539 }
1540
1541An option category must have a name and optionally a description which are
1542passed to the constructor as ``const char*``.
1543
1544Note that declaring an option category and associating it with an option before
1545parsing options (e.g. statically) will change the output of ``-help`` from
1546uncategorized to categorized. If an option category is declared but not
1547associated with an option then it will be hidden from the output of ``-help``
1548but will be shown in the output of ``-help-hidden``.
1549
Bill Wendling26f1f002012-08-08 08:21:24 +00001550.. _different parser:
1551.. _discussed previously:
1552
1553Builtin parsers
1554---------------
1555
1556Parsers control how the string value taken from the command line is translated
1557into a typed value, suitable for use in a C++ program. By default, the
1558CommandLine library uses an instance of ``parser<type>`` if the command line
1559option specifies that it uses values of type '``type``'. Because of this,
1560custom option processing is specified with specializations of the '``parser``'
1561class.
1562
1563The CommandLine library provides the following builtin parser specializations,
1564which are sufficient for most applications. It can, however, also be extended to
1565work with new data types and new ways of interpreting the same data. See the
1566`Writing a Custom Parser`_ for more details on this type of library extension.
1567
1568.. _enums:
1569.. _cl::parser:
1570
1571* The generic ``parser<t>`` parser can be used to map strings values to any data
1572 type, through the use of the `cl::values`_ property, which specifies the
1573 mapping information. The most common use of this parser is for parsing enum
1574 values, which allows you to use the CommandLine library for all of the error
1575 checking to make sure that only valid enum values are specified (as opposed to
1576 accepting arbitrary strings). Despite this, however, the generic parser class
1577 can be used for any data type.
1578
1579.. _boolean flags:
1580.. _bool parser:
1581
1582* The **parser<bool> specialization** is used to convert boolean strings to a
1583 boolean value. Currently accepted strings are "``true``", "``TRUE``",
1584 "``True``", "``1``", "``false``", "``FALSE``", "``False``", and "``0``".
1585
1586* The **parser<boolOrDefault> specialization** is used for cases where the value
1587 is boolean, but we also need to know whether the option was specified at all.
1588 boolOrDefault is an enum with 3 values, BOU_UNSET, BOU_TRUE and BOU_FALSE.
1589 This parser accepts the same strings as **``parser<bool>``**.
1590
1591.. _strings:
1592
1593* The **parser<string> specialization** simply stores the parsed string into the
1594 string value specified. No conversion or modification of the data is
1595 performed.
1596
1597.. _integers:
1598.. _int:
1599
1600* The **parser<int> specialization** uses the C ``strtol`` function to parse the
1601 string input. As such, it will accept a decimal number (with an optional '+'
1602 or '-' prefix) which must start with a non-zero digit. It accepts octal
1603 numbers, which are identified with a '``0``' prefix digit, and hexadecimal
1604 numbers with a prefix of '``0x``' or '``0X``'.
1605
1606.. _doubles:
1607.. _float:
1608.. _double:
1609
1610* The **parser<double>** and **parser<float> specializations** use the standard
1611 C ``strtod`` function to convert floating point strings into floating point
1612 values. As such, a broad range of string formats is supported, including
1613 exponential notation (ex: ``1.7e15``) and properly supports locales.
1614
1615.. _Extension Guide:
1616.. _extending the library:
1617
1618Extension Guide
1619===============
1620
1621Although the CommandLine library has a lot of functionality built into it
1622already (as discussed previously), one of its true strengths lie in its
1623extensibility. This section discusses how the CommandLine library works under
1624the covers and illustrates how to do some simple, common, extensions.
1625
1626.. _Custom parsers:
1627.. _custom parser:
1628.. _Writing a Custom Parser:
1629
1630Writing a custom parser
1631-----------------------
1632
1633One of the simplest and most common extensions is the use of a custom parser.
1634As `discussed previously`_, parsers are the portion of the CommandLine library
1635that turns string input from the user into a particular parsed data type,
1636validating the input in the process.
1637
1638There are two ways to use a new parser:
1639
1640#. Specialize the `cl::parser`_ template for your custom data type.
1641
1642 This approach has the advantage that users of your custom data type will
1643 automatically use your custom parser whenever they define an option with a
1644 value type of your data type. The disadvantage of this approach is that it
1645 doesn't work if your fundamental data type is something that is already
1646 supported.
1647
1648#. Write an independent class, using it explicitly from options that need it.
1649
1650 This approach works well in situations where you would line to parse an
1651 option using special syntax for a not-very-special data-type. The drawback
1652 of this approach is that users of your parser have to be aware that they are
1653 using your parser instead of the builtin ones.
1654
1655To guide the discussion, we will discuss a custom parser that accepts file
1656sizes, specified with an optional unit after the numeric size. For example, we
1657would like to parse "102kb", "41M", "1G" into the appropriate integer value. In
1658this case, the underlying data type we want to parse into is '``unsigned``'. We
1659choose approach #2 above because we don't want to make this the default for all
1660``unsigned`` options.
1661
1662To start out, we declare our new ``FileSizeParser`` class:
1663
1664.. code-block:: c++
1665
Paul Robinsonfd989c92014-10-13 21:11:22 +00001666 struct FileSizeParser : public cl::parser<unsigned> {
Bill Wendling26f1f002012-08-08 08:21:24 +00001667 // parse - Return true on error.
Paul Robinsonfd989c92014-10-13 21:11:22 +00001668 bool parse(cl::Option &O, StringRef ArgName, const std::string &ArgValue,
Bill Wendling26f1f002012-08-08 08:21:24 +00001669 unsigned &Val);
1670 };
1671
Paul Robinsonfd989c92014-10-13 21:11:22 +00001672Our new class inherits from the ``cl::parser`` template class to fill in
Bill Wendling26f1f002012-08-08 08:21:24 +00001673the default, boiler plate code for us. We give it the data type that we parse
1674into, the last argument to the ``parse`` method, so that clients of our custom
1675parser know what object type to pass in to the parse method. (Here we declare
1676that we parse into '``unsigned``' variables.)
1677
1678For most purposes, the only method that must be implemented in a custom parser
1679is the ``parse`` method. The ``parse`` method is called whenever the option is
1680invoked, passing in the option itself, the option name, the string to parse, and
1681a reference to a return value. If the string to parse is not well-formed, the
1682parser should output an error message and return true. Otherwise it should
1683return false and set '``Val``' to the parsed value. In our example, we
1684implement ``parse`` as:
1685
1686.. code-block:: c++
1687
Paul Robinsonfd989c92014-10-13 21:11:22 +00001688 bool FileSizeParser::parse(cl::Option &O, StringRef ArgName,
Bill Wendling26f1f002012-08-08 08:21:24 +00001689 const std::string &Arg, unsigned &Val) {
1690 const char *ArgStart = Arg.c_str();
1691 char *End;
1692
1693 // Parse integer part, leaving 'End' pointing to the first non-integer char
1694 Val = (unsigned)strtol(ArgStart, &End, 0);
1695
1696 while (1) {
1697 switch (*End++) {
1698 case 0: return false; // No error
1699 case 'i': // Ignore the 'i' in KiB if people use that
1700 case 'b': case 'B': // Ignore B suffix
1701 break;
1702
1703 case 'g': case 'G': Val *= 1024*1024*1024; break;
1704 case 'm': case 'M': Val *= 1024*1024; break;
1705 case 'k': case 'K': Val *= 1024; break;
1706
1707 default:
1708 // Print an error message if unrecognized character!
1709 return O.error("'" + Arg + "' value invalid for file size argument!");
1710 }
1711 }
1712 }
1713
1714This function implements a very simple parser for the kinds of strings we are
1715interested in. Although it has some holes (it allows "``123KKK``" for example),
1716it is good enough for this example. Note that we use the option itself to print
1717out the error message (the ``error`` method always returns true) in order to get
1718a nice error message (shown below). Now that we have our parser class, we can
1719use it like this:
1720
1721.. code-block:: c++
1722
1723 static cl::opt<unsigned, false, FileSizeParser>
1724 MFS("max-file-size", cl::desc("Maximum file size to accept"),
1725 cl::value_desc("size"));
1726
1727Which adds this to the output of our program:
1728
1729::
1730
1731 OPTIONS:
1732 -help - display available options (-help-hidden for more)
1733 ...
Paul Robinsonfd989c92014-10-13 21:11:22 +00001734 -max-file-size=<size> - Maximum file size to accept
Bill Wendling26f1f002012-08-08 08:21:24 +00001735
1736And we can test that our parse works correctly now (the test program just prints
1737out the max-file-size argument value):
1738
1739::
1740
1741 $ ./test
1742 MFS: 0
1743 $ ./test -max-file-size=123MB
1744 MFS: 128974848
1745 $ ./test -max-file-size=3G
1746 MFS: 3221225472
1747 $ ./test -max-file-size=dog
1748 -max-file-size option: 'dog' value invalid for file size argument!
1749
1750It looks like it works. The error message that we get is nice and helpful, and
1751we seem to accept reasonable file sizes. This wraps up the "custom parser"
1752tutorial.
1753
1754Exploiting external storage
1755---------------------------
1756
1757Several of the LLVM libraries define static ``cl::opt`` instances that will
1758automatically be included in any program that links with that library. This is
1759a feature. However, sometimes it is necessary to know the value of the command
1760line option outside of the library. In these cases the library does or should
1761provide an external storage location that is accessible to users of the
1762library. Examples of this include the ``llvm::DebugFlag`` exported by the
1763``lib/Support/Debug.cpp`` file and the ``llvm::TimePassesIsEnabled`` flag
Gabor Buella61ff2862018-04-30 10:18:11 +00001764exported by the ``lib/IR/PassManager.cpp`` file.
Bill Wendling26f1f002012-08-08 08:21:24 +00001765
1766.. todo::
1767
1768 TODO: complete this section
1769
1770.. _dynamically loaded options:
1771
1772Dynamically adding command line options
Jonathan Roelofsb032e042015-07-24 00:29:50 +00001773---------------------------------------
Bill Wendling26f1f002012-08-08 08:21:24 +00001774
1775.. todo::
1776
1777 TODO: fill in this section