1 //===-- CommandLine.cpp - Command line parser implementation --------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This class implements a command line argument processor that is useful when
10 // creating a tool. It provides a simple, minimalistic interface that is easily
11 // extensible and supports nonlocal (library) command line options.
13 // Note that rather than trying to figure out what this code does, you could try
14 // reading the library documentation located in docs/CommandLine.html
16 //===----------------------------------------------------------------------===//
18 #include "llvm/Support/CommandLine.h"
19 #include "llvm-c/Support.h"
20 #include "llvm/ADT/ArrayRef.h"
21 #include "llvm/ADT/Optional.h"
22 #include "llvm/ADT/STLExtras.h"
23 #include "llvm/ADT/SmallPtrSet.h"
24 #include "llvm/ADT/SmallString.h"
25 #include "llvm/ADT/StringExtras.h"
26 #include "llvm/ADT/StringMap.h"
27 #include "llvm/ADT/Triple.h"
28 #include "llvm/ADT/Twine.h"
29 #include "llvm/Config/config.h"
30 #include "llvm/Support/ConvertUTF.h"
31 #include "llvm/Support/Debug.h"
32 #include "llvm/Support/ErrorHandling.h"
33 #include "llvm/Support/FileSystem.h"
34 #include "llvm/Support/Host.h"
35 #include "llvm/Support/ManagedStatic.h"
36 #include "llvm/Support/MemoryBuffer.h"
37 #include "llvm/Support/Path.h"
38 #include "llvm/Support/Process.h"
39 #include "llvm/Support/StringSaver.h"
40 #include "llvm/Support/raw_ostream.h"
46 #define DEBUG_TYPE "commandline"
48 //===----------------------------------------------------------------------===//
49 // Template instantiations and anchors.
53 template class basic_parser
<bool>;
54 template class basic_parser
<boolOrDefault
>;
55 template class basic_parser
<int>;
56 template class basic_parser
<unsigned>;
57 template class basic_parser
<unsigned long long>;
58 template class basic_parser
<double>;
59 template class basic_parser
<float>;
60 template class basic_parser
<std::string
>;
61 template class basic_parser
<char>;
63 template class opt
<unsigned>;
64 template class opt
<int>;
65 template class opt
<std::string
>;
66 template class opt
<char>;
67 template class opt
<bool>;
69 } // end namespace llvm::cl
71 // Pin the vtables to this file.
72 void GenericOptionValue::anchor() {}
73 void OptionValue
<boolOrDefault
>::anchor() {}
74 void OptionValue
<std::string
>::anchor() {}
75 void Option::anchor() {}
76 void basic_parser_impl::anchor() {}
77 void parser
<bool>::anchor() {}
78 void parser
<boolOrDefault
>::anchor() {}
79 void parser
<int>::anchor() {}
80 void parser
<unsigned>::anchor() {}
81 void parser
<unsigned long long>::anchor() {}
82 void parser
<double>::anchor() {}
83 void parser
<float>::anchor() {}
84 void parser
<std::string
>::anchor() {}
85 void parser
<char>::anchor() {}
87 //===----------------------------------------------------------------------===//
91 class CommandLineParser
{
93 // Globals for name and overview of program. Program name is not a string to
94 // avoid static ctor/dtor issues.
95 std::string ProgramName
;
96 StringRef ProgramOverview
;
98 // This collects additional help to be printed.
99 std::vector
<StringRef
> MoreHelp
;
101 // This collects the different option categories that have been registered.
102 SmallPtrSet
<OptionCategory
*, 16> RegisteredOptionCategories
;
104 // This collects the different subcommands that have been registered.
105 SmallPtrSet
<SubCommand
*, 4> RegisteredSubCommands
;
107 CommandLineParser() : ActiveSubCommand(nullptr) {
108 registerSubCommand(&*TopLevelSubCommand
);
109 registerSubCommand(&*AllSubCommands
);
112 void ResetAllOptionOccurrences();
114 bool ParseCommandLineOptions(int argc
, const char *const *argv
,
115 StringRef Overview
, raw_ostream
*Errs
= nullptr);
117 void addLiteralOption(Option
&Opt
, SubCommand
*SC
, StringRef Name
) {
120 if (!SC
->OptionsMap
.insert(std::make_pair(Name
, &Opt
)).second
) {
121 errs() << ProgramName
<< ": CommandLine Error: Option '" << Name
122 << "' registered more than once!\n";
123 report_fatal_error("inconsistency in registered CommandLine options");
126 // If we're adding this to all sub-commands, add it to the ones that have
127 // already been registered.
128 if (SC
== &*AllSubCommands
) {
129 for (const auto &Sub
: RegisteredSubCommands
) {
132 addLiteralOption(Opt
, Sub
, Name
);
137 void addLiteralOption(Option
&Opt
, StringRef Name
) {
138 if (Opt
.Subs
.empty())
139 addLiteralOption(Opt
, &*TopLevelSubCommand
, Name
);
141 for (auto SC
: Opt
.Subs
)
142 addLiteralOption(Opt
, SC
, Name
);
146 void addOption(Option
*O
, SubCommand
*SC
) {
147 bool HadErrors
= false;
148 if (O
->hasArgStr()) {
149 // Add argument to the argument map!
150 if (!SC
->OptionsMap
.insert(std::make_pair(O
->ArgStr
, O
)).second
) {
151 errs() << ProgramName
<< ": CommandLine Error: Option '" << O
->ArgStr
152 << "' registered more than once!\n";
157 // Remember information about positional options.
158 if (O
->getFormattingFlag() == cl::Positional
)
159 SC
->PositionalOpts
.push_back(O
);
160 else if (O
->getMiscFlags() & cl::Sink
) // Remember sink options
161 SC
->SinkOpts
.push_back(O
);
162 else if (O
->getNumOccurrencesFlag() == cl::ConsumeAfter
) {
163 if (SC
->ConsumeAfterOpt
) {
164 O
->error("Cannot specify more than one option with cl::ConsumeAfter!");
167 SC
->ConsumeAfterOpt
= O
;
170 // Fail hard if there were errors. These are strictly unrecoverable and
171 // indicate serious issues such as conflicting option names or an
173 // linked LLVM distribution.
175 report_fatal_error("inconsistency in registered CommandLine options");
177 // If we're adding this to all sub-commands, add it to the ones that have
178 // already been registered.
179 if (SC
== &*AllSubCommands
) {
180 for (const auto &Sub
: RegisteredSubCommands
) {
188 void addOption(Option
*O
) {
189 if (O
->Subs
.empty()) {
190 addOption(O
, &*TopLevelSubCommand
);
192 for (auto SC
: O
->Subs
)
197 void removeOption(Option
*O
, SubCommand
*SC
) {
198 SmallVector
<StringRef
, 16> OptionNames
;
199 O
->getExtraOptionNames(OptionNames
);
201 OptionNames
.push_back(O
->ArgStr
);
203 SubCommand
&Sub
= *SC
;
204 for (auto Name
: OptionNames
)
205 Sub
.OptionsMap
.erase(Name
);
207 if (O
->getFormattingFlag() == cl::Positional
)
208 for (auto Opt
= Sub
.PositionalOpts
.begin();
209 Opt
!= Sub
.PositionalOpts
.end(); ++Opt
) {
211 Sub
.PositionalOpts
.erase(Opt
);
215 else if (O
->getMiscFlags() & cl::Sink
)
216 for (auto Opt
= Sub
.SinkOpts
.begin(); Opt
!= Sub
.SinkOpts
.end(); ++Opt
) {
218 Sub
.SinkOpts
.erase(Opt
);
222 else if (O
== Sub
.ConsumeAfterOpt
)
223 Sub
.ConsumeAfterOpt
= nullptr;
226 void removeOption(Option
*O
) {
228 removeOption(O
, &*TopLevelSubCommand
);
230 if (O
->isInAllSubCommands()) {
231 for (auto SC
: RegisteredSubCommands
)
234 for (auto SC
: O
->Subs
)
240 bool hasOptions(const SubCommand
&Sub
) const {
241 return (!Sub
.OptionsMap
.empty() || !Sub
.PositionalOpts
.empty() ||
242 nullptr != Sub
.ConsumeAfterOpt
);
245 bool hasOptions() const {
246 for (const auto &S
: RegisteredSubCommands
) {
253 SubCommand
*getActiveSubCommand() { return ActiveSubCommand
; }
255 void updateArgStr(Option
*O
, StringRef NewName
, SubCommand
*SC
) {
256 SubCommand
&Sub
= *SC
;
257 if (!Sub
.OptionsMap
.insert(std::make_pair(NewName
, O
)).second
) {
258 errs() << ProgramName
<< ": CommandLine Error: Option '" << O
->ArgStr
259 << "' registered more than once!\n";
260 report_fatal_error("inconsistency in registered CommandLine options");
262 Sub
.OptionsMap
.erase(O
->ArgStr
);
265 void updateArgStr(Option
*O
, StringRef NewName
) {
267 updateArgStr(O
, NewName
, &*TopLevelSubCommand
);
269 for (auto SC
: O
->Subs
)
270 updateArgStr(O
, NewName
, SC
);
274 void printOptionValues();
276 void registerCategory(OptionCategory
*cat
) {
277 assert(count_if(RegisteredOptionCategories
,
278 [cat
](const OptionCategory
*Category
) {
279 return cat
->getName() == Category
->getName();
281 "Duplicate option categories");
283 RegisteredOptionCategories
.insert(cat
);
286 void registerSubCommand(SubCommand
*sub
) {
287 assert(count_if(RegisteredSubCommands
,
288 [sub
](const SubCommand
*Sub
) {
289 return (!sub
->getName().empty()) &&
290 (Sub
->getName() == sub
->getName());
292 "Duplicate subcommands");
293 RegisteredSubCommands
.insert(sub
);
295 // For all options that have been registered for all subcommands, add the
296 // option to this subcommand now.
297 if (sub
!= &*AllSubCommands
) {
298 for (auto &E
: AllSubCommands
->OptionsMap
) {
299 Option
*O
= E
.second
;
300 if ((O
->isPositional() || O
->isSink() || O
->isConsumeAfter()) ||
304 addLiteralOption(*O
, sub
, E
.first());
309 void unregisterSubCommand(SubCommand
*sub
) {
310 RegisteredSubCommands
.erase(sub
);
313 iterator_range
<typename SmallPtrSet
<SubCommand
*, 4>::iterator
>
314 getRegisteredSubcommands() {
315 return make_range(RegisteredSubCommands
.begin(),
316 RegisteredSubCommands
.end());
320 ActiveSubCommand
= nullptr;
322 ProgramOverview
= StringRef();
325 RegisteredOptionCategories
.clear();
327 ResetAllOptionOccurrences();
328 RegisteredSubCommands
.clear();
330 TopLevelSubCommand
->reset();
331 AllSubCommands
->reset();
332 registerSubCommand(&*TopLevelSubCommand
);
333 registerSubCommand(&*AllSubCommands
);
337 SubCommand
*ActiveSubCommand
;
339 Option
*LookupOption(SubCommand
&Sub
, StringRef
&Arg
, StringRef
&Value
);
340 SubCommand
*LookupSubCommand(StringRef Name
);
345 static ManagedStatic
<CommandLineParser
> GlobalParser
;
347 void cl::AddLiteralOption(Option
&O
, StringRef Name
) {
348 GlobalParser
->addLiteralOption(O
, Name
);
351 extrahelp::extrahelp(StringRef Help
) : morehelp(Help
) {
352 GlobalParser
->MoreHelp
.push_back(Help
);
355 void Option::addArgument() {
356 GlobalParser
->addOption(this);
357 FullyInitialized
= true;
360 void Option::removeArgument() { GlobalParser
->removeOption(this); }
362 void Option::setArgStr(StringRef S
) {
363 if (FullyInitialized
)
364 GlobalParser
->updateArgStr(this, S
);
365 assert((S
.empty() || S
[0] != '-') && "Option can't start with '-");
369 // Initialise the general option category.
370 OptionCategory
llvm::cl::GeneralCategory("General options");
372 void OptionCategory::registerCategory() {
373 GlobalParser
->registerCategory(this);
376 // A special subcommand representing no subcommand
377 ManagedStatic
<SubCommand
> llvm::cl::TopLevelSubCommand
;
379 // A special subcommand that can be used to put an option into all subcommands.
380 ManagedStatic
<SubCommand
> llvm::cl::AllSubCommands
;
382 void SubCommand::registerSubCommand() {
383 GlobalParser
->registerSubCommand(this);
386 void SubCommand::unregisterSubCommand() {
387 GlobalParser
->unregisterSubCommand(this);
390 void SubCommand::reset() {
391 PositionalOpts
.clear();
395 ConsumeAfterOpt
= nullptr;
398 SubCommand::operator bool() const {
399 return (GlobalParser
->getActiveSubCommand() == this);
402 //===----------------------------------------------------------------------===//
403 // Basic, shared command line option processing machinery.
406 /// LookupOption - Lookup the option specified by the specified option on the
407 /// command line. If there is a value specified (after an equal sign) return
408 /// that as well. This assumes that leading dashes have already been stripped.
409 Option
*CommandLineParser::LookupOption(SubCommand
&Sub
, StringRef
&Arg
,
411 // Reject all dashes.
414 assert(&Sub
!= &*AllSubCommands
);
416 size_t EqualPos
= Arg
.find('=');
418 // If we have an equals sign, remember the value.
419 if (EqualPos
== StringRef::npos
) {
420 // Look up the option.
421 auto I
= Sub
.OptionsMap
.find(Arg
);
422 if (I
== Sub
.OptionsMap
.end())
425 return I
!= Sub
.OptionsMap
.end() ? I
->second
: nullptr;
428 // If the argument before the = is a valid option name and the option allows
429 // non-prefix form (ie is not AlwaysPrefix), we match. If not, signal match
430 // failure by returning nullptr.
431 auto I
= Sub
.OptionsMap
.find(Arg
.substr(0, EqualPos
));
432 if (I
== Sub
.OptionsMap
.end())
436 if (O
->getFormattingFlag() == cl::AlwaysPrefix
)
439 Value
= Arg
.substr(EqualPos
+ 1);
440 Arg
= Arg
.substr(0, EqualPos
);
444 SubCommand
*CommandLineParser::LookupSubCommand(StringRef Name
) {
446 return &*TopLevelSubCommand
;
447 for (auto S
: RegisteredSubCommands
) {
448 if (S
== &*AllSubCommands
)
450 if (S
->getName().empty())
453 if (StringRef(S
->getName()) == StringRef(Name
))
456 return &*TopLevelSubCommand
;
459 /// LookupNearestOption - Lookup the closest match to the option specified by
460 /// the specified option on the command line. If there is a value specified
461 /// (after an equal sign) return that as well. This assumes that leading dashes
462 /// have already been stripped.
463 static Option
*LookupNearestOption(StringRef Arg
,
464 const StringMap
<Option
*> &OptionsMap
,
465 std::string
&NearestString
) {
466 // Reject all dashes.
470 // Split on any equal sign.
471 std::pair
<StringRef
, StringRef
> SplitArg
= Arg
.split('=');
472 StringRef
&LHS
= SplitArg
.first
; // LHS == Arg when no '=' is present.
473 StringRef
&RHS
= SplitArg
.second
;
475 // Find the closest match.
476 Option
*Best
= nullptr;
477 unsigned BestDistance
= 0;
478 for (StringMap
<Option
*>::const_iterator it
= OptionsMap
.begin(),
479 ie
= OptionsMap
.end();
481 Option
*O
= it
->second
;
482 SmallVector
<StringRef
, 16> OptionNames
;
483 O
->getExtraOptionNames(OptionNames
);
485 OptionNames
.push_back(O
->ArgStr
);
487 bool PermitValue
= O
->getValueExpectedFlag() != cl::ValueDisallowed
;
488 StringRef Flag
= PermitValue
? LHS
: Arg
;
489 for (auto Name
: OptionNames
) {
490 unsigned Distance
= StringRef(Name
).edit_distance(
491 Flag
, /*AllowReplacements=*/true, /*MaxEditDistance=*/BestDistance
);
492 if (!Best
|| Distance
< BestDistance
) {
494 BestDistance
= Distance
;
495 if (RHS
.empty() || !PermitValue
)
496 NearestString
= Name
;
498 NearestString
= (Twine(Name
) + "=" + RHS
).str();
506 /// CommaSeparateAndAddOccurrence - A wrapper around Handler->addOccurrence()
507 /// that does special handling of cl::CommaSeparated options.
508 static bool CommaSeparateAndAddOccurrence(Option
*Handler
, unsigned pos
,
509 StringRef ArgName
, StringRef Value
,
510 bool MultiArg
= false) {
511 // Check to see if this option accepts a comma separated list of values. If
512 // it does, we have to split up the value into multiple values.
513 if (Handler
->getMiscFlags() & CommaSeparated
) {
514 StringRef
Val(Value
);
515 StringRef::size_type Pos
= Val
.find(',');
517 while (Pos
!= StringRef::npos
) {
518 // Process the portion before the comma.
519 if (Handler
->addOccurrence(pos
, ArgName
, Val
.substr(0, Pos
), MultiArg
))
521 // Erase the portion before the comma, AND the comma.
522 Val
= Val
.substr(Pos
+ 1);
523 // Check for another comma.
530 return Handler
->addOccurrence(pos
, ArgName
, Value
, MultiArg
);
533 /// ProvideOption - For Value, this differentiates between an empty value ("")
534 /// and a null value (StringRef()). The later is accepted for arguments that
535 /// don't allow a value (-foo) the former is rejected (-foo=).
536 static inline bool ProvideOption(Option
*Handler
, StringRef ArgName
,
537 StringRef Value
, int argc
,
538 const char *const *argv
, int &i
) {
539 // Is this a multi-argument option?
540 unsigned NumAdditionalVals
= Handler
->getNumAdditionalVals();
542 // Enforce value requirements
543 switch (Handler
->getValueExpectedFlag()) {
545 if (!Value
.data()) { // No value specified?
546 // If no other argument or the option only supports prefix form, we
547 // cannot look at the next argument.
548 if (i
+ 1 >= argc
|| Handler
->getFormattingFlag() == cl::AlwaysPrefix
)
549 return Handler
->error("requires a value!");
550 // Steal the next argument, like for '-o filename'
551 assert(argv
&& "null check");
552 Value
= StringRef(argv
[++i
]);
555 case ValueDisallowed
:
556 if (NumAdditionalVals
> 0)
557 return Handler
->error("multi-valued option specified"
558 " with ValueDisallowed modifier!");
561 return Handler
->error("does not allow a value! '" + Twine(Value
) +
568 // If this isn't a multi-arg option, just run the handler.
569 if (NumAdditionalVals
== 0)
570 return CommaSeparateAndAddOccurrence(Handler
, i
, ArgName
, Value
);
572 // If it is, run the handle several times.
573 bool MultiArg
= false;
576 if (CommaSeparateAndAddOccurrence(Handler
, i
, ArgName
, Value
, MultiArg
))
582 while (NumAdditionalVals
> 0) {
584 return Handler
->error("not enough values!");
585 assert(argv
&& "null check");
586 Value
= StringRef(argv
[++i
]);
588 if (CommaSeparateAndAddOccurrence(Handler
, i
, ArgName
, Value
, MultiArg
))
596 static bool ProvidePositionalOption(Option
*Handler
, StringRef Arg
, int i
) {
598 return ProvideOption(Handler
, Handler
->ArgStr
, Arg
, 0, nullptr, Dummy
);
601 // Option predicates...
602 static inline bool isGrouping(const Option
*O
) {
603 return O
->getFormattingFlag() == cl::Grouping
;
605 static inline bool isPrefixedOrGrouping(const Option
*O
) {
606 return isGrouping(O
) || O
->getFormattingFlag() == cl::Prefix
||
607 O
->getFormattingFlag() == cl::AlwaysPrefix
;
610 // getOptionPred - Check to see if there are any options that satisfy the
611 // specified predicate with names that are the prefixes in Name. This is
612 // checked by progressively stripping characters off of the name, checking to
613 // see if there options that satisfy the predicate. If we find one, return it,
614 // otherwise return null.
616 static Option
*getOptionPred(StringRef Name
, size_t &Length
,
617 bool (*Pred
)(const Option
*),
618 const StringMap
<Option
*> &OptionsMap
) {
620 StringMap
<Option
*>::const_iterator OMI
= OptionsMap
.find(Name
);
622 // Loop while we haven't found an option and Name still has at least two
623 // characters in it (so that the next iteration will not be the empty
625 while (OMI
== OptionsMap
.end() && Name
.size() > 1) {
626 Name
= Name
.substr(0, Name
.size() - 1); // Chop off the last character.
627 OMI
= OptionsMap
.find(Name
);
630 if (OMI
!= OptionsMap
.end() && Pred(OMI
->second
)) {
631 Length
= Name
.size();
632 return OMI
->second
; // Found one!
634 return nullptr; // No option found!
637 /// HandlePrefixedOrGroupedOption - The specified argument string (which started
638 /// with at least one '-') does not fully match an available option. Check to
639 /// see if this is a prefix or grouped option. If so, split arg into output an
640 /// Arg/Value pair and return the Option to parse it with.
642 HandlePrefixedOrGroupedOption(StringRef
&Arg
, StringRef
&Value
,
644 const StringMap
<Option
*> &OptionsMap
) {
650 Option
*PGOpt
= getOptionPred(Arg
, Length
, isPrefixedOrGrouping
, OptionsMap
);
654 // If the option is a prefixed option, then the value is simply the
655 // rest of the name... so fall through to later processing, by
656 // setting up the argument name flags and value fields.
657 if (PGOpt
->getFormattingFlag() == cl::Prefix
||
658 PGOpt
->getFormattingFlag() == cl::AlwaysPrefix
) {
659 Value
= Arg
.substr(Length
);
660 Arg
= Arg
.substr(0, Length
);
661 assert(OptionsMap
.count(Arg
) && OptionsMap
.find(Arg
)->second
== PGOpt
);
665 // This must be a grouped option... handle them now. Grouping options can't
667 assert(isGrouping(PGOpt
) && "Broken getOptionPred!");
670 // Move current arg name out of Arg into OneArgName.
671 StringRef OneArgName
= Arg
.substr(0, Length
);
672 Arg
= Arg
.substr(Length
);
674 // Because ValueRequired is an invalid flag for grouped arguments,
675 // we don't need to pass argc/argv in.
676 assert(PGOpt
->getValueExpectedFlag() != cl::ValueRequired
&&
677 "Option can not be cl::Grouping AND cl::ValueRequired!");
680 ProvideOption(PGOpt
, OneArgName
, StringRef(), 0, nullptr, Dummy
);
682 // Get the next grouping option.
683 PGOpt
= getOptionPred(Arg
, Length
, isGrouping
, OptionsMap
);
684 } while (PGOpt
&& Length
!= Arg
.size());
686 // Return the last option with Arg cut down to just the last one.
690 static bool RequiresValue(const Option
*O
) {
691 return O
->getNumOccurrencesFlag() == cl::Required
||
692 O
->getNumOccurrencesFlag() == cl::OneOrMore
;
695 static bool EatsUnboundedNumberOfValues(const Option
*O
) {
696 return O
->getNumOccurrencesFlag() == cl::ZeroOrMore
||
697 O
->getNumOccurrencesFlag() == cl::OneOrMore
;
700 static bool isWhitespace(char C
) {
701 return C
== ' ' || C
== '\t' || C
== '\r' || C
== '\n';
704 static bool isWhitespaceOrNull(char C
) {
705 return isWhitespace(C
) || C
== '\0';
708 static bool isQuote(char C
) { return C
== '\"' || C
== '\''; }
710 void cl::TokenizeGNUCommandLine(StringRef Src
, StringSaver
&Saver
,
711 SmallVectorImpl
<const char *> &NewArgv
,
713 SmallString
<128> Token
;
714 for (size_t I
= 0, E
= Src
.size(); I
!= E
; ++I
) {
715 // Consume runs of whitespace.
717 while (I
!= E
&& isWhitespace(Src
[I
])) {
718 // Mark the end of lines in response files
719 if (MarkEOLs
&& Src
[I
] == '\n')
720 NewArgv
.push_back(nullptr);
729 // Backslash escapes the next character.
730 if (I
+ 1 < E
&& C
== '\\') {
731 ++I
; // Skip the escape.
732 Token
.push_back(Src
[I
]);
736 // Consume a quoted string.
739 while (I
!= E
&& Src
[I
] != C
) {
740 // Backslash escapes the next character.
741 if (Src
[I
] == '\\' && I
+ 1 != E
)
743 Token
.push_back(Src
[I
]);
751 // End the token if this is whitespace.
752 if (isWhitespace(C
)) {
754 NewArgv
.push_back(Saver
.save(StringRef(Token
)).data());
759 // This is a normal character. Append it.
763 // Append the last token after hitting EOF with no whitespace.
765 NewArgv
.push_back(Saver
.save(StringRef(Token
)).data());
766 // Mark the end of response files
768 NewArgv
.push_back(nullptr);
771 /// Backslashes are interpreted in a rather complicated way in the Windows-style
772 /// command line, because backslashes are used both to separate path and to
773 /// escape double quote. This method consumes runs of backslashes as well as the
774 /// following double quote if it's escaped.
776 /// * If an even number of backslashes is followed by a double quote, one
777 /// backslash is output for every pair of backslashes, and the last double
778 /// quote remains unconsumed. The double quote will later be interpreted as
779 /// the start or end of a quoted string in the main loop outside of this
782 /// * If an odd number of backslashes is followed by a double quote, one
783 /// backslash is output for every pair of backslashes, and a double quote is
784 /// output for the last pair of backslash-double quote. The double quote is
785 /// consumed in this case.
787 /// * Otherwise, backslashes are interpreted literally.
788 static size_t parseBackslash(StringRef Src
, size_t I
, SmallString
<128> &Token
) {
789 size_t E
= Src
.size();
790 int BackslashCount
= 0;
791 // Skip the backslashes.
795 } while (I
!= E
&& Src
[I
] == '\\');
797 bool FollowedByDoubleQuote
= (I
!= E
&& Src
[I
] == '"');
798 if (FollowedByDoubleQuote
) {
799 Token
.append(BackslashCount
/ 2, '\\');
800 if (BackslashCount
% 2 == 0)
802 Token
.push_back('"');
805 Token
.append(BackslashCount
, '\\');
809 void cl::TokenizeWindowsCommandLine(StringRef Src
, StringSaver
&Saver
,
810 SmallVectorImpl
<const char *> &NewArgv
,
812 SmallString
<128> Token
;
814 // This is a small state machine to consume characters until it reaches the
815 // end of the source string.
816 enum { INIT
, UNQUOTED
, QUOTED
} State
= INIT
;
817 for (size_t I
= 0, E
= Src
.size(); I
!= E
; ++I
) {
820 // INIT state indicates that the current input index is at the start of
821 // the string or between tokens.
823 if (isWhitespaceOrNull(C
)) {
824 // Mark the end of lines in response files
825 if (MarkEOLs
&& C
== '\n')
826 NewArgv
.push_back(nullptr);
834 I
= parseBackslash(Src
, I
, Token
);
843 // UNQUOTED state means that it's reading a token not quoted by double
845 if (State
== UNQUOTED
) {
846 // Whitespace means the end of the token.
847 if (isWhitespaceOrNull(C
)) {
848 NewArgv
.push_back(Saver
.save(StringRef(Token
)).data());
851 // Mark the end of lines in response files
852 if (MarkEOLs
&& C
== '\n')
853 NewArgv
.push_back(nullptr);
861 I
= parseBackslash(Src
, I
, Token
);
868 // QUOTED state means that it's reading a token quoted by double quotes.
869 if (State
== QUOTED
) {
875 I
= parseBackslash(Src
, I
, Token
);
881 // Append the last token after hitting EOF with no whitespace.
883 NewArgv
.push_back(Saver
.save(StringRef(Token
)).data());
884 // Mark the end of response files
886 NewArgv
.push_back(nullptr);
889 void cl::tokenizeConfigFile(StringRef Source
, StringSaver
&Saver
,
890 SmallVectorImpl
<const char *> &NewArgv
,
892 for (const char *Cur
= Source
.begin(); Cur
!= Source
.end();) {
893 SmallString
<128> Line
;
894 // Check for comment line.
895 if (isWhitespace(*Cur
)) {
896 while (Cur
!= Source
.end() && isWhitespace(*Cur
))
901 while (Cur
!= Source
.end() && *Cur
!= '\n')
905 // Find end of the current line.
906 const char *Start
= Cur
;
907 for (const char *End
= Source
.end(); Cur
!= End
; ++Cur
) {
909 if (Cur
+ 1 != End
) {
912 (*Cur
== '\r' && (Cur
+ 1 != End
) && Cur
[1] == '\n')) {
913 Line
.append(Start
, Cur
- 1);
919 } else if (*Cur
== '\n')
923 Line
.append(Start
, Cur
);
924 cl::TokenizeGNUCommandLine(Line
, Saver
, NewArgv
, MarkEOLs
);
928 // It is called byte order marker but the UTF-8 BOM is actually not affected
929 // by the host system's endianness.
930 static bool hasUTF8ByteOrderMark(ArrayRef
<char> S
) {
931 return (S
.size() >= 3 && S
[0] == '\xef' && S
[1] == '\xbb' && S
[2] == '\xbf');
934 static bool ExpandResponseFile(StringRef FName
, StringSaver
&Saver
,
935 TokenizerCallback Tokenizer
,
936 SmallVectorImpl
<const char *> &NewArgv
,
937 bool MarkEOLs
, bool RelativeNames
) {
938 ErrorOr
<std::unique_ptr
<MemoryBuffer
>> MemBufOrErr
=
939 MemoryBuffer::getFile(FName
);
942 MemoryBuffer
&MemBuf
= *MemBufOrErr
.get();
943 StringRef
Str(MemBuf
.getBufferStart(), MemBuf
.getBufferSize());
945 // If we have a UTF-16 byte order mark, convert to UTF-8 for parsing.
946 ArrayRef
<char> BufRef(MemBuf
.getBufferStart(), MemBuf
.getBufferEnd());
948 if (hasUTF16ByteOrderMark(BufRef
)) {
949 if (!convertUTF16ToUTF8String(BufRef
, UTF8Buf
))
951 Str
= StringRef(UTF8Buf
);
953 // If we see UTF-8 BOM sequence at the beginning of a file, we shall remove
954 // these bytes before parsing.
955 // Reference: http://en.wikipedia.org/wiki/UTF-8#Byte_order_mark
956 else if (hasUTF8ByteOrderMark(BufRef
))
957 Str
= StringRef(BufRef
.data() + 3, BufRef
.size() - 3);
959 // Tokenize the contents into NewArgv.
960 Tokenizer(Str
, Saver
, NewArgv
, MarkEOLs
);
962 // If names of nested response files should be resolved relative to including
963 // file, replace the included response file names with their full paths
964 // obtained by required resolution.
966 for (unsigned I
= 0; I
< NewArgv
.size(); ++I
)
968 StringRef Arg
= NewArgv
[I
];
969 if (Arg
.front() == '@') {
970 StringRef FileName
= Arg
.drop_front();
971 if (llvm::sys::path::is_relative(FileName
)) {
972 SmallString
<128> ResponseFile
;
973 ResponseFile
.append(1, '@');
974 if (llvm::sys::path::is_relative(FName
)) {
975 SmallString
<128> curr_dir
;
976 llvm::sys::fs::current_path(curr_dir
);
977 ResponseFile
.append(curr_dir
.str());
979 llvm::sys::path::append(
980 ResponseFile
, llvm::sys::path::parent_path(FName
), FileName
);
981 NewArgv
[I
] = Saver
.save(ResponseFile
.c_str()).data();
989 /// Expand response files on a command line recursively using the given
990 /// StringSaver and tokenization strategy.
991 bool cl::ExpandResponseFiles(StringSaver
&Saver
, TokenizerCallback Tokenizer
,
992 SmallVectorImpl
<const char *> &Argv
,
993 bool MarkEOLs
, bool RelativeNames
) {
994 unsigned RspFiles
= 0;
995 bool AllExpanded
= true;
997 // Don't cache Argv.size() because it can change.
998 for (unsigned I
= 0; I
!= Argv
.size();) {
999 const char *Arg
= Argv
[I
];
1000 // Check if it is an EOL marker
1001 if (Arg
== nullptr) {
1005 if (Arg
[0] != '@') {
1010 // If we have too many response files, leave some unexpanded. This avoids
1011 // crashing on self-referential response files.
1012 if (RspFiles
++ > 20)
1015 // Replace this response file argument with the tokenization of its
1016 // contents. Nested response files are expanded in subsequent iterations.
1017 SmallVector
<const char *, 0> ExpandedArgv
;
1018 if (!ExpandResponseFile(Arg
+ 1, Saver
, Tokenizer
, ExpandedArgv
,
1019 MarkEOLs
, RelativeNames
)) {
1020 // We couldn't read this file, so we leave it in the argument stream and
1022 AllExpanded
= false;
1026 Argv
.erase(Argv
.begin() + I
);
1027 Argv
.insert(Argv
.begin() + I
, ExpandedArgv
.begin(), ExpandedArgv
.end());
1032 bool cl::readConfigFile(StringRef CfgFile
, StringSaver
&Saver
,
1033 SmallVectorImpl
<const char *> &Argv
) {
1034 if (!ExpandResponseFile(CfgFile
, Saver
, cl::tokenizeConfigFile
, Argv
,
1035 /*MarkEOLs*/ false, /*RelativeNames*/ true))
1037 return ExpandResponseFiles(Saver
, cl::tokenizeConfigFile
, Argv
,
1038 /*MarkEOLs*/ false, /*RelativeNames*/ true);
1041 /// ParseEnvironmentOptions - An alternative entry point to the
1042 /// CommandLine library, which allows you to read the program's name
1043 /// from the caller (as PROGNAME) and its command-line arguments from
1044 /// an environment variable (whose name is given in ENVVAR).
1046 void cl::ParseEnvironmentOptions(const char *progName
, const char *envVar
,
1047 const char *Overview
) {
1049 assert(progName
&& "Program name not specified");
1050 assert(envVar
&& "Environment variable name missing");
1052 // Get the environment variable they want us to parse options out of.
1053 llvm::Optional
<std::string
> envValue
= sys::Process::GetEnv(StringRef(envVar
));
1057 // Get program's "name", which we wouldn't know without the caller
1059 SmallVector
<const char *, 20> newArgv
;
1061 StringSaver
Saver(A
);
1062 newArgv
.push_back(Saver
.save(progName
).data());
1064 // Parse the value of the environment variable into a "command line"
1065 // and hand it off to ParseCommandLineOptions().
1066 TokenizeGNUCommandLine(*envValue
, Saver
, newArgv
);
1067 int newArgc
= static_cast<int>(newArgv
.size());
1068 ParseCommandLineOptions(newArgc
, &newArgv
[0], StringRef(Overview
));
1071 bool cl::ParseCommandLineOptions(int argc
, const char *const *argv
,
1072 StringRef Overview
, raw_ostream
*Errs
,
1073 const char *EnvVar
) {
1074 SmallVector
<const char *, 20> NewArgv
;
1076 StringSaver
Saver(A
);
1077 NewArgv
.push_back(argv
[0]);
1079 // Parse options from environment variable.
1081 if (llvm::Optional
<std::string
> EnvValue
=
1082 sys::Process::GetEnv(StringRef(EnvVar
)))
1083 TokenizeGNUCommandLine(*EnvValue
, Saver
, NewArgv
);
1086 // Append options from command line.
1087 for (int I
= 1; I
< argc
; ++I
)
1088 NewArgv
.push_back(argv
[I
]);
1089 int NewArgc
= static_cast<int>(NewArgv
.size());
1091 // Parse all options.
1092 return GlobalParser
->ParseCommandLineOptions(NewArgc
, &NewArgv
[0], Overview
,
1096 void CommandLineParser::ResetAllOptionOccurrences() {
1097 // So that we can parse different command lines multiple times in succession
1098 // we reset all option values to look like they have never been seen before.
1099 for (auto SC
: RegisteredSubCommands
) {
1100 for (auto &O
: SC
->OptionsMap
)
1105 bool CommandLineParser::ParseCommandLineOptions(int argc
,
1106 const char *const *argv
,
1108 raw_ostream
*Errs
) {
1109 assert(hasOptions() && "No options specified!");
1111 // Expand response files.
1112 SmallVector
<const char *, 20> newArgv(argv
, argv
+ argc
);
1114 StringSaver
Saver(A
);
1115 ExpandResponseFiles(Saver
,
1116 Triple(sys::getProcessTriple()).isOSWindows() ?
1117 cl::TokenizeWindowsCommandLine
: cl::TokenizeGNUCommandLine
,
1120 argc
= static_cast<int>(newArgv
.size());
1122 // Copy the program name into ProgName, making sure not to overflow it.
1123 ProgramName
= sys::path::filename(StringRef(argv
[0]));
1125 ProgramOverview
= Overview
;
1126 bool IgnoreErrors
= Errs
;
1129 bool ErrorParsing
= false;
1131 // Check out the positional arguments to collect information about them.
1132 unsigned NumPositionalRequired
= 0;
1134 // Determine whether or not there are an unlimited number of positionals
1135 bool HasUnlimitedPositionals
= false;
1138 SubCommand
*ChosenSubCommand
= &*TopLevelSubCommand
;
1139 if (argc
>= 2 && argv
[FirstArg
][0] != '-') {
1140 // If the first argument specifies a valid subcommand, start processing
1141 // options from the second argument.
1142 ChosenSubCommand
= LookupSubCommand(StringRef(argv
[FirstArg
]));
1143 if (ChosenSubCommand
!= &*TopLevelSubCommand
)
1146 GlobalParser
->ActiveSubCommand
= ChosenSubCommand
;
1148 assert(ChosenSubCommand
);
1149 auto &ConsumeAfterOpt
= ChosenSubCommand
->ConsumeAfterOpt
;
1150 auto &PositionalOpts
= ChosenSubCommand
->PositionalOpts
;
1151 auto &SinkOpts
= ChosenSubCommand
->SinkOpts
;
1152 auto &OptionsMap
= ChosenSubCommand
->OptionsMap
;
1154 if (ConsumeAfterOpt
) {
1155 assert(PositionalOpts
.size() > 0 &&
1156 "Cannot specify cl::ConsumeAfter without a positional argument!");
1158 if (!PositionalOpts
.empty()) {
1160 // Calculate how many positional values are _required_.
1161 bool UnboundedFound
= false;
1162 for (size_t i
= 0, e
= PositionalOpts
.size(); i
!= e
; ++i
) {
1163 Option
*Opt
= PositionalOpts
[i
];
1164 if (RequiresValue(Opt
))
1165 ++NumPositionalRequired
;
1166 else if (ConsumeAfterOpt
) {
1167 // ConsumeAfter cannot be combined with "optional" positional options
1168 // unless there is only one positional argument...
1169 if (PositionalOpts
.size() > 1) {
1171 Opt
->error("error - this positional option will never be matched, "
1172 "because it does not Require a value, and a "
1173 "cl::ConsumeAfter option is active!");
1174 ErrorParsing
= true;
1176 } else if (UnboundedFound
&& !Opt
->hasArgStr()) {
1177 // This option does not "require" a value... Make sure this option is
1178 // not specified after an option that eats all extra arguments, or this
1179 // one will never get any!
1182 Opt
->error("error - option can never match, because "
1183 "another positional argument will match an "
1184 "unbounded number of values, and this option"
1185 " does not require a value!");
1186 *Errs
<< ProgramName
<< ": CommandLine Error: Option '" << Opt
->ArgStr
1187 << "' is all messed up!\n";
1188 *Errs
<< PositionalOpts
.size();
1189 ErrorParsing
= true;
1191 UnboundedFound
|= EatsUnboundedNumberOfValues(Opt
);
1193 HasUnlimitedPositionals
= UnboundedFound
|| ConsumeAfterOpt
;
1196 // PositionalVals - A vector of "positional" arguments we accumulate into
1197 // the process at the end.
1199 SmallVector
<std::pair
<StringRef
, unsigned>, 4> PositionalVals
;
1201 // If the program has named positional arguments, and the name has been run
1202 // across, keep track of which positional argument was named. Otherwise put
1203 // the positional args into the PositionalVals list...
1204 Option
*ActivePositionalArg
= nullptr;
1206 // Loop over all of the arguments... processing them.
1207 bool DashDashFound
= false; // Have we read '--'?
1208 for (int i
= FirstArg
; i
< argc
; ++i
) {
1209 Option
*Handler
= nullptr;
1210 Option
*NearestHandler
= nullptr;
1211 std::string NearestHandlerString
;
1213 StringRef ArgName
= "";
1215 // Check to see if this is a positional argument. This argument is
1216 // considered to be positional if it doesn't start with '-', if it is "-"
1217 // itself, or if we have seen "--" already.
1219 if (argv
[i
][0] != '-' || argv
[i
][1] == 0 || DashDashFound
) {
1220 // Positional argument!
1221 if (ActivePositionalArg
) {
1222 ProvidePositionalOption(ActivePositionalArg
, StringRef(argv
[i
]), i
);
1223 continue; // We are done!
1226 if (!PositionalOpts
.empty()) {
1227 PositionalVals
.push_back(std::make_pair(StringRef(argv
[i
]), i
));
1229 // All of the positional arguments have been fulfulled, give the rest to
1230 // the consume after option... if it's specified...
1232 if (PositionalVals
.size() >= NumPositionalRequired
&& ConsumeAfterOpt
) {
1233 for (++i
; i
< argc
; ++i
)
1234 PositionalVals
.push_back(std::make_pair(StringRef(argv
[i
]), i
));
1235 break; // Handle outside of the argument processing loop...
1238 // Delay processing positional arguments until the end...
1241 } else if (argv
[i
][0] == '-' && argv
[i
][1] == '-' && argv
[i
][2] == 0 &&
1243 DashDashFound
= true; // This is the mythical "--"?
1244 continue; // Don't try to process it as an argument itself.
1245 } else if (ActivePositionalArg
&&
1246 (ActivePositionalArg
->getMiscFlags() & PositionalEatsArgs
)) {
1247 // If there is a positional argument eating options, check to see if this
1248 // option is another positional argument. If so, treat it as an argument,
1249 // otherwise feed it to the eating positional.
1250 ArgName
= StringRef(argv
[i
] + 1);
1251 // Eat leading dashes.
1252 while (!ArgName
.empty() && ArgName
[0] == '-')
1253 ArgName
= ArgName
.substr(1);
1255 Handler
= LookupOption(*ChosenSubCommand
, ArgName
, Value
);
1256 if (!Handler
|| Handler
->getFormattingFlag() != cl::Positional
) {
1257 ProvidePositionalOption(ActivePositionalArg
, StringRef(argv
[i
]), i
);
1258 continue; // We are done!
1261 } else { // We start with a '-', must be an argument.
1262 ArgName
= StringRef(argv
[i
] + 1);
1263 // Eat leading dashes.
1264 while (!ArgName
.empty() && ArgName
[0] == '-')
1265 ArgName
= ArgName
.substr(1);
1267 Handler
= LookupOption(*ChosenSubCommand
, ArgName
, Value
);
1269 // Check to see if this "option" is really a prefixed or grouped argument.
1271 Handler
= HandlePrefixedOrGroupedOption(ArgName
, Value
, ErrorParsing
,
1274 // Otherwise, look for the closest available option to report to the user
1275 // in the upcoming error.
1276 if (!Handler
&& SinkOpts
.empty())
1278 LookupNearestOption(ArgName
, OptionsMap
, NearestHandlerString
);
1282 if (SinkOpts
.empty()) {
1283 *Errs
<< ProgramName
<< ": Unknown command line argument '" << argv
[i
]
1284 << "'. Try: '" << argv
[0] << " -help'\n";
1286 if (NearestHandler
) {
1287 // If we know a near match, report it as well.
1288 *Errs
<< ProgramName
<< ": Did you mean '-" << NearestHandlerString
1292 ErrorParsing
= true;
1294 for (SmallVectorImpl
<Option
*>::iterator I
= SinkOpts
.begin(),
1297 (*I
)->addOccurrence(i
, "", StringRef(argv
[i
]));
1302 // If this is a named positional argument, just remember that it is the
1304 if (Handler
->getFormattingFlag() == cl::Positional
) {
1305 if ((Handler
->getMiscFlags() & PositionalEatsArgs
) && !Value
.empty()) {
1306 Handler
->error("This argument does not take a value.\n"
1307 "\tInstead, it consumes any positional arguments until "
1308 "the next recognized option.", *Errs
);
1309 ErrorParsing
= true;
1311 ActivePositionalArg
= Handler
;
1314 ErrorParsing
|= ProvideOption(Handler
, ArgName
, Value
, argc
, argv
, i
);
1317 // Check and handle positional arguments now...
1318 if (NumPositionalRequired
> PositionalVals
.size()) {
1319 *Errs
<< ProgramName
1320 << ": Not enough positional command line arguments specified!\n"
1321 << "Must specify at least " << NumPositionalRequired
1322 << " positional argument" << (NumPositionalRequired
> 1 ? "s" : "")
1323 << ": See: " << argv
[0] << " -help\n";
1325 ErrorParsing
= true;
1326 } else if (!HasUnlimitedPositionals
&&
1327 PositionalVals
.size() > PositionalOpts
.size()) {
1328 *Errs
<< ProgramName
<< ": Too many positional arguments specified!\n"
1329 << "Can specify at most " << PositionalOpts
.size()
1330 << " positional arguments: See: " << argv
[0] << " -help\n";
1331 ErrorParsing
= true;
1333 } else if (!ConsumeAfterOpt
) {
1334 // Positional args have already been handled if ConsumeAfter is specified.
1335 unsigned ValNo
= 0, NumVals
= static_cast<unsigned>(PositionalVals
.size());
1336 for (size_t i
= 0, e
= PositionalOpts
.size(); i
!= e
; ++i
) {
1337 if (RequiresValue(PositionalOpts
[i
])) {
1338 ProvidePositionalOption(PositionalOpts
[i
], PositionalVals
[ValNo
].first
,
1339 PositionalVals
[ValNo
].second
);
1341 --NumPositionalRequired
; // We fulfilled our duty...
1344 // If we _can_ give this option more arguments, do so now, as long as we
1345 // do not give it values that others need. 'Done' controls whether the
1346 // option even _WANTS_ any more.
1348 bool Done
= PositionalOpts
[i
]->getNumOccurrencesFlag() == cl::Required
;
1349 while (NumVals
- ValNo
> NumPositionalRequired
&& !Done
) {
1350 switch (PositionalOpts
[i
]->getNumOccurrencesFlag()) {
1352 Done
= true; // Optional arguments want _at most_ one value
1354 case cl::ZeroOrMore
: // Zero or more will take all they can get...
1355 case cl::OneOrMore
: // One or more will take all they can get...
1356 ProvidePositionalOption(PositionalOpts
[i
],
1357 PositionalVals
[ValNo
].first
,
1358 PositionalVals
[ValNo
].second
);
1362 llvm_unreachable("Internal error, unexpected NumOccurrences flag in "
1363 "positional argument processing!");
1368 assert(ConsumeAfterOpt
&& NumPositionalRequired
<= PositionalVals
.size());
1370 for (size_t j
= 1, e
= PositionalOpts
.size(); j
!= e
; ++j
)
1371 if (RequiresValue(PositionalOpts
[j
])) {
1372 ErrorParsing
|= ProvidePositionalOption(PositionalOpts
[j
],
1373 PositionalVals
[ValNo
].first
,
1374 PositionalVals
[ValNo
].second
);
1378 // Handle the case where there is just one positional option, and it's
1379 // optional. In this case, we want to give JUST THE FIRST option to the
1380 // positional option and keep the rest for the consume after. The above
1381 // loop would have assigned no values to positional options in this case.
1383 if (PositionalOpts
.size() == 1 && ValNo
== 0 && !PositionalVals
.empty()) {
1384 ErrorParsing
|= ProvidePositionalOption(PositionalOpts
[0],
1385 PositionalVals
[ValNo
].first
,
1386 PositionalVals
[ValNo
].second
);
1390 // Handle over all of the rest of the arguments to the
1391 // cl::ConsumeAfter command line option...
1392 for (; ValNo
!= PositionalVals
.size(); ++ValNo
)
1394 ProvidePositionalOption(ConsumeAfterOpt
, PositionalVals
[ValNo
].first
,
1395 PositionalVals
[ValNo
].second
);
1398 // Loop over args and make sure all required args are specified!
1399 for (const auto &Opt
: OptionsMap
) {
1400 switch (Opt
.second
->getNumOccurrencesFlag()) {
1403 if (Opt
.second
->getNumOccurrences() == 0) {
1404 Opt
.second
->error("must be specified at least once!");
1405 ErrorParsing
= true;
1413 // Now that we know if -debug is specified, we can use it.
1414 // Note that if ReadResponseFiles == true, this must be done before the
1415 // memory allocated for the expanded command line is free()d below.
1416 LLVM_DEBUG(dbgs() << "Args: ";
1417 for (int i
= 0; i
< argc
; ++i
) dbgs() << argv
[i
] << ' ';
1420 // Free all of the memory allocated to the map. Command line options may only
1421 // be processed once!
1424 // If we had an error processing our arguments, don't let the program execute
1433 //===----------------------------------------------------------------------===//
1434 // Option Base class implementation
1437 bool Option::error(const Twine
&Message
, StringRef ArgName
, raw_ostream
&Errs
) {
1438 if (!ArgName
.data())
1440 if (ArgName
.empty())
1441 Errs
<< HelpStr
; // Be nice for positional arguments
1443 Errs
<< GlobalParser
->ProgramName
<< ": for the -" << ArgName
;
1445 Errs
<< " option: " << Message
<< "\n";
1449 bool Option::addOccurrence(unsigned pos
, StringRef ArgName
, StringRef Value
,
1452 NumOccurrences
++; // Increment the number of times we have been seen
1454 switch (getNumOccurrencesFlag()) {
1456 if (NumOccurrences
> 1)
1457 return error("may only occur zero or one times!", ArgName
);
1460 if (NumOccurrences
> 1)
1461 return error("must occur exactly one time!", ArgName
);
1469 return handleOccurrence(pos
, ArgName
, Value
);
1472 // getValueStr - Get the value description string, using "DefaultMsg" if nothing
1473 // has been specified yet.
1475 static StringRef
getValueStr(const Option
&O
, StringRef DefaultMsg
) {
1476 if (O
.ValueStr
.empty())
1481 static StringRef ArgPrefix
= " -";
1482 static StringRef ArgHelpPrefix
= " - ";
1483 static size_t ArgPrefixesSize
= ArgPrefix
.size() + ArgHelpPrefix
.size();
1485 //===----------------------------------------------------------------------===//
1486 // cl::alias class implementation
1489 // Return the width of the option tag for printing...
1490 size_t alias::getOptionWidth() const { return ArgStr
.size() + ArgPrefixesSize
; }
1492 void Option::printHelpStr(StringRef HelpStr
, size_t Indent
,
1493 size_t FirstLineIndentedBy
) {
1494 assert(Indent
>= FirstLineIndentedBy
);
1495 std::pair
<StringRef
, StringRef
> Split
= HelpStr
.split('\n');
1496 outs().indent(Indent
- FirstLineIndentedBy
)
1497 << ArgHelpPrefix
<< Split
.first
<< "\n";
1498 while (!Split
.second
.empty()) {
1499 Split
= Split
.second
.split('\n');
1500 outs().indent(Indent
) << Split
.first
<< "\n";
1504 // Print out the option for the alias.
1505 void alias::printOptionInfo(size_t GlobalWidth
) const {
1506 outs() << ArgPrefix
<< ArgStr
;
1507 printHelpStr(HelpStr
, GlobalWidth
, ArgStr
.size() + ArgPrefixesSize
);
1510 //===----------------------------------------------------------------------===//
1511 // Parser Implementation code...
1514 // basic_parser implementation
1517 // Return the width of the option tag for printing...
1518 size_t basic_parser_impl::getOptionWidth(const Option
&O
) const {
1519 size_t Len
= O
.ArgStr
.size();
1520 auto ValName
= getValueName();
1521 if (!ValName
.empty()) {
1522 size_t FormattingLen
= 3;
1523 if (O
.getMiscFlags() & PositionalEatsArgs
)
1525 Len
+= getValueStr(O
, ValName
).size() + FormattingLen
;
1528 return Len
+ ArgPrefixesSize
;
1531 // printOptionInfo - Print out information about this option. The
1532 // to-be-maintained width is specified.
1534 void basic_parser_impl::printOptionInfo(const Option
&O
,
1535 size_t GlobalWidth
) const {
1536 outs() << ArgPrefix
<< O
.ArgStr
;
1538 auto ValName
= getValueName();
1539 if (!ValName
.empty()) {
1540 if (O
.getMiscFlags() & PositionalEatsArgs
) {
1541 outs() << " <" << getValueStr(O
, ValName
) << ">...";
1543 outs() << "=<" << getValueStr(O
, ValName
) << '>';
1547 Option::printHelpStr(O
.HelpStr
, GlobalWidth
, getOptionWidth(O
));
1550 void basic_parser_impl::printOptionName(const Option
&O
,
1551 size_t GlobalWidth
) const {
1552 outs() << ArgPrefix
<< O
.ArgStr
;
1553 outs().indent(GlobalWidth
- O
.ArgStr
.size());
1556 // parser<bool> implementation
1558 bool parser
<bool>::parse(Option
&O
, StringRef ArgName
, StringRef Arg
,
1560 if (Arg
== "" || Arg
== "true" || Arg
== "TRUE" || Arg
== "True" ||
1566 if (Arg
== "false" || Arg
== "FALSE" || Arg
== "False" || Arg
== "0") {
1570 return O
.error("'" + Arg
+
1571 "' is invalid value for boolean argument! Try 0 or 1");
1574 // parser<boolOrDefault> implementation
1576 bool parser
<boolOrDefault
>::parse(Option
&O
, StringRef ArgName
, StringRef Arg
,
1577 boolOrDefault
&Value
) {
1578 if (Arg
== "" || Arg
== "true" || Arg
== "TRUE" || Arg
== "True" ||
1583 if (Arg
== "false" || Arg
== "FALSE" || Arg
== "False" || Arg
== "0") {
1588 return O
.error("'" + Arg
+
1589 "' is invalid value for boolean argument! Try 0 or 1");
1592 // parser<int> implementation
1594 bool parser
<int>::parse(Option
&O
, StringRef ArgName
, StringRef Arg
,
1596 if (Arg
.getAsInteger(0, Value
))
1597 return O
.error("'" + Arg
+ "' value invalid for integer argument!");
1601 // parser<unsigned> implementation
1603 bool parser
<unsigned>::parse(Option
&O
, StringRef ArgName
, StringRef Arg
,
1606 if (Arg
.getAsInteger(0, Value
))
1607 return O
.error("'" + Arg
+ "' value invalid for uint argument!");
1611 // parser<unsigned long long> implementation
1613 bool parser
<unsigned long long>::parse(Option
&O
, StringRef ArgName
,
1615 unsigned long long &Value
) {
1617 if (Arg
.getAsInteger(0, Value
))
1618 return O
.error("'" + Arg
+ "' value invalid for uint argument!");
1622 // parser<double>/parser<float> implementation
1624 static bool parseDouble(Option
&O
, StringRef Arg
, double &Value
) {
1625 if (to_float(Arg
, Value
))
1627 return O
.error("'" + Arg
+ "' value invalid for floating point argument!");
1630 bool parser
<double>::parse(Option
&O
, StringRef ArgName
, StringRef Arg
,
1632 return parseDouble(O
, Arg
, Val
);
1635 bool parser
<float>::parse(Option
&O
, StringRef ArgName
, StringRef Arg
,
1638 if (parseDouble(O
, Arg
, dVal
))
1644 // generic_parser_base implementation
1647 // findOption - Return the option number corresponding to the specified
1648 // argument string. If the option is not found, getNumOptions() is returned.
1650 unsigned generic_parser_base::findOption(StringRef Name
) {
1651 unsigned e
= getNumOptions();
1653 for (unsigned i
= 0; i
!= e
; ++i
) {
1654 if (getOption(i
) == Name
)
1660 static StringRef EqValue
= "=<value>";
1661 static StringRef EmptyOption
= "<empty>";
1662 static StringRef OptionPrefix
= " =";
1663 static size_t OptionPrefixesSize
= OptionPrefix
.size() + ArgHelpPrefix
.size();
1665 static bool shouldPrintOption(StringRef Name
, StringRef Description
,
1667 return O
.getValueExpectedFlag() != ValueOptional
|| !Name
.empty() ||
1668 !Description
.empty();
1671 // Return the width of the option tag for printing...
1672 size_t generic_parser_base::getOptionWidth(const Option
&O
) const {
1673 if (O
.hasArgStr()) {
1674 size_t Size
= O
.ArgStr
.size() + ArgPrefixesSize
+ EqValue
.size();
1675 for (unsigned i
= 0, e
= getNumOptions(); i
!= e
; ++i
) {
1676 StringRef Name
= getOption(i
);
1677 if (!shouldPrintOption(Name
, getDescription(i
), O
))
1679 size_t NameSize
= Name
.empty() ? EmptyOption
.size() : Name
.size();
1680 Size
= std::max(Size
, NameSize
+ OptionPrefixesSize
);
1684 size_t BaseSize
= 0;
1685 for (unsigned i
= 0, e
= getNumOptions(); i
!= e
; ++i
)
1686 BaseSize
= std::max(BaseSize
, getOption(i
).size() + 8);
1691 // printOptionInfo - Print out information about this option. The
1692 // to-be-maintained width is specified.
1694 void generic_parser_base::printOptionInfo(const Option
&O
,
1695 size_t GlobalWidth
) const {
1696 if (O
.hasArgStr()) {
1697 // When the value is optional, first print a line just describing the
1698 // option without values.
1699 if (O
.getValueExpectedFlag() == ValueOptional
) {
1700 for (unsigned i
= 0, e
= getNumOptions(); i
!= e
; ++i
) {
1701 if (getOption(i
).empty()) {
1702 outs() << ArgPrefix
<< O
.ArgStr
;
1703 Option::printHelpStr(O
.HelpStr
, GlobalWidth
,
1704 O
.ArgStr
.size() + ArgPrefixesSize
);
1710 outs() << ArgPrefix
<< O
.ArgStr
<< EqValue
;
1711 Option::printHelpStr(O
.HelpStr
, GlobalWidth
,
1712 O
.ArgStr
.size() + EqValue
.size() + ArgPrefixesSize
);
1713 for (unsigned i
= 0, e
= getNumOptions(); i
!= e
; ++i
) {
1714 StringRef OptionName
= getOption(i
);
1715 StringRef Description
= getDescription(i
);
1716 if (!shouldPrintOption(OptionName
, Description
, O
))
1718 assert(GlobalWidth
>= OptionName
.size() + OptionPrefixesSize
);
1719 size_t NumSpaces
= GlobalWidth
- OptionName
.size() - OptionPrefixesSize
;
1720 outs() << OptionPrefix
<< OptionName
;
1721 if (OptionName
.empty()) {
1722 outs() << EmptyOption
;
1723 assert(NumSpaces
>= EmptyOption
.size());
1724 NumSpaces
-= EmptyOption
.size();
1726 if (!Description
.empty())
1727 outs().indent(NumSpaces
) << ArgHelpPrefix
<< " " << Description
;
1731 if (!O
.HelpStr
.empty())
1732 outs() << " " << O
.HelpStr
<< '\n';
1733 for (unsigned i
= 0, e
= getNumOptions(); i
!= e
; ++i
) {
1734 auto Option
= getOption(i
);
1735 outs() << " -" << Option
;
1736 Option::printHelpStr(getDescription(i
), GlobalWidth
, Option
.size() + 8);
1741 static const size_t MaxOptWidth
= 8; // arbitrary spacing for printOptionDiff
1743 // printGenericOptionDiff - Print the value of this option and it's default.
1745 // "Generic" options have each value mapped to a name.
1746 void generic_parser_base::printGenericOptionDiff(
1747 const Option
&O
, const GenericOptionValue
&Value
,
1748 const GenericOptionValue
&Default
, size_t GlobalWidth
) const {
1749 outs() << " -" << O
.ArgStr
;
1750 outs().indent(GlobalWidth
- O
.ArgStr
.size());
1752 unsigned NumOpts
= getNumOptions();
1753 for (unsigned i
= 0; i
!= NumOpts
; ++i
) {
1754 if (Value
.compare(getOptionValue(i
)))
1757 outs() << "= " << getOption(i
);
1758 size_t L
= getOption(i
).size();
1759 size_t NumSpaces
= MaxOptWidth
> L
? MaxOptWidth
- L
: 0;
1760 outs().indent(NumSpaces
) << " (default: ";
1761 for (unsigned j
= 0; j
!= NumOpts
; ++j
) {
1762 if (Default
.compare(getOptionValue(j
)))
1764 outs() << getOption(j
);
1770 outs() << "= *unknown option value*\n";
1773 // printOptionDiff - Specializations for printing basic value types.
1775 #define PRINT_OPT_DIFF(T) \
1776 void parser<T>::printOptionDiff(const Option &O, T V, OptionValue<T> D, \
1777 size_t GlobalWidth) const { \
1778 printOptionName(O, GlobalWidth); \
1781 raw_string_ostream SS(Str); \
1784 outs() << "= " << Str; \
1785 size_t NumSpaces = \
1786 MaxOptWidth > Str.size() ? MaxOptWidth - Str.size() : 0; \
1787 outs().indent(NumSpaces) << " (default: "; \
1789 outs() << D.getValue(); \
1791 outs() << "*no default*"; \
1795 PRINT_OPT_DIFF(bool)
1796 PRINT_OPT_DIFF(boolOrDefault
)
1798 PRINT_OPT_DIFF(unsigned)
1799 PRINT_OPT_DIFF(unsigned long long)
1800 PRINT_OPT_DIFF(double)
1801 PRINT_OPT_DIFF(float)
1802 PRINT_OPT_DIFF(char)
1804 void parser
<std::string
>::printOptionDiff(const Option
&O
, StringRef V
,
1805 const OptionValue
<std::string
> &D
,
1806 size_t GlobalWidth
) const {
1807 printOptionName(O
, GlobalWidth
);
1808 outs() << "= " << V
;
1809 size_t NumSpaces
= MaxOptWidth
> V
.size() ? MaxOptWidth
- V
.size() : 0;
1810 outs().indent(NumSpaces
) << " (default: ";
1812 outs() << D
.getValue();
1814 outs() << "*no default*";
1818 // Print a placeholder for options that don't yet support printOptionDiff().
1819 void basic_parser_impl::printOptionNoValue(const Option
&O
,
1820 size_t GlobalWidth
) const {
1821 printOptionName(O
, GlobalWidth
);
1822 outs() << "= *cannot print option value*\n";
1825 //===----------------------------------------------------------------------===//
1826 // -help and -help-hidden option implementation
1829 static int OptNameCompare(const std::pair
<const char *, Option
*> *LHS
,
1830 const std::pair
<const char *, Option
*> *RHS
) {
1831 return strcmp(LHS
->first
, RHS
->first
);
1834 static int SubNameCompare(const std::pair
<const char *, SubCommand
*> *LHS
,
1835 const std::pair
<const char *, SubCommand
*> *RHS
) {
1836 return strcmp(LHS
->first
, RHS
->first
);
1839 // Copy Options into a vector so we can sort them as we like.
1840 static void sortOpts(StringMap
<Option
*> &OptMap
,
1841 SmallVectorImpl
<std::pair
<const char *, Option
*>> &Opts
,
1843 SmallPtrSet
<Option
*, 32> OptionSet
; // Duplicate option detection.
1845 for (StringMap
<Option
*>::iterator I
= OptMap
.begin(), E
= OptMap
.end();
1847 // Ignore really-hidden options.
1848 if (I
->second
->getOptionHiddenFlag() == ReallyHidden
)
1851 // Unless showhidden is set, ignore hidden flags.
1852 if (I
->second
->getOptionHiddenFlag() == Hidden
&& !ShowHidden
)
1855 // If we've already seen this option, don't add it to the list again.
1856 if (!OptionSet
.insert(I
->second
).second
)
1860 std::pair
<const char *, Option
*>(I
->getKey().data(), I
->second
));
1863 // Sort the options list alphabetically.
1864 array_pod_sort(Opts
.begin(), Opts
.end(), OptNameCompare
);
1868 sortSubCommands(const SmallPtrSetImpl
<SubCommand
*> &SubMap
,
1869 SmallVectorImpl
<std::pair
<const char *, SubCommand
*>> &Subs
) {
1870 for (const auto &S
: SubMap
) {
1871 if (S
->getName().empty())
1873 Subs
.push_back(std::make_pair(S
->getName().data(), S
));
1875 array_pod_sort(Subs
.begin(), Subs
.end(), SubNameCompare
);
1882 const bool ShowHidden
;
1883 typedef SmallVector
<std::pair
<const char *, Option
*>, 128>
1884 StrOptionPairVector
;
1885 typedef SmallVector
<std::pair
<const char *, SubCommand
*>, 128>
1886 StrSubCommandPairVector
;
1887 // Print the options. Opts is assumed to be alphabetically sorted.
1888 virtual void printOptions(StrOptionPairVector
&Opts
, size_t MaxArgLen
) {
1889 for (size_t i
= 0, e
= Opts
.size(); i
!= e
; ++i
)
1890 Opts
[i
].second
->printOptionInfo(MaxArgLen
);
1893 void printSubCommands(StrSubCommandPairVector
&Subs
, size_t MaxSubLen
) {
1894 for (const auto &S
: Subs
) {
1895 outs() << " " << S
.first
;
1896 if (!S
.second
->getDescription().empty()) {
1897 outs().indent(MaxSubLen
- strlen(S
.first
));
1898 outs() << " - " << S
.second
->getDescription();
1905 explicit HelpPrinter(bool showHidden
) : ShowHidden(showHidden
) {}
1906 virtual ~HelpPrinter() {}
1908 // Invoke the printer.
1909 void operator=(bool Value
) {
1914 // Halt the program since help information was printed
1919 SubCommand
*Sub
= GlobalParser
->getActiveSubCommand();
1920 auto &OptionsMap
= Sub
->OptionsMap
;
1921 auto &PositionalOpts
= Sub
->PositionalOpts
;
1922 auto &ConsumeAfterOpt
= Sub
->ConsumeAfterOpt
;
1924 StrOptionPairVector Opts
;
1925 sortOpts(OptionsMap
, Opts
, ShowHidden
);
1927 StrSubCommandPairVector Subs
;
1928 sortSubCommands(GlobalParser
->RegisteredSubCommands
, Subs
);
1930 if (!GlobalParser
->ProgramOverview
.empty())
1931 outs() << "OVERVIEW: " << GlobalParser
->ProgramOverview
<< "\n";
1933 if (Sub
== &*TopLevelSubCommand
) {
1934 outs() << "USAGE: " << GlobalParser
->ProgramName
;
1935 if (Subs
.size() > 2)
1936 outs() << " [subcommand]";
1937 outs() << " [options]";
1939 if (!Sub
->getDescription().empty()) {
1940 outs() << "SUBCOMMAND '" << Sub
->getName()
1941 << "': " << Sub
->getDescription() << "\n\n";
1943 outs() << "USAGE: " << GlobalParser
->ProgramName
<< " " << Sub
->getName()
1947 for (auto Opt
: PositionalOpts
) {
1948 if (Opt
->hasArgStr())
1949 outs() << " --" << Opt
->ArgStr
;
1950 outs() << " " << Opt
->HelpStr
;
1953 // Print the consume after option info if it exists...
1954 if (ConsumeAfterOpt
)
1955 outs() << " " << ConsumeAfterOpt
->HelpStr
;
1957 if (Sub
== &*TopLevelSubCommand
&& !Subs
.empty()) {
1958 // Compute the maximum subcommand length...
1959 size_t MaxSubLen
= 0;
1960 for (size_t i
= 0, e
= Subs
.size(); i
!= e
; ++i
)
1961 MaxSubLen
= std::max(MaxSubLen
, strlen(Subs
[i
].first
));
1964 outs() << "SUBCOMMANDS:\n\n";
1965 printSubCommands(Subs
, MaxSubLen
);
1967 outs() << " Type \"" << GlobalParser
->ProgramName
1968 << " <subcommand> -help\" to get more help on a specific "
1974 // Compute the maximum argument length...
1975 size_t MaxArgLen
= 0;
1976 for (size_t i
= 0, e
= Opts
.size(); i
!= e
; ++i
)
1977 MaxArgLen
= std::max(MaxArgLen
, Opts
[i
].second
->getOptionWidth());
1979 outs() << "OPTIONS:\n";
1980 printOptions(Opts
, MaxArgLen
);
1982 // Print any extra help the user has declared.
1983 for (auto I
: GlobalParser
->MoreHelp
)
1985 GlobalParser
->MoreHelp
.clear();
1989 class CategorizedHelpPrinter
: public HelpPrinter
{
1991 explicit CategorizedHelpPrinter(bool showHidden
) : HelpPrinter(showHidden
) {}
1993 // Helper function for printOptions().
1994 // It shall return a negative value if A's name should be lexicographically
1995 // ordered before B's name. It returns a value greater than zero if B's name
1996 // should be ordered before A's name, and it returns 0 otherwise.
1997 static int OptionCategoryCompare(OptionCategory
*const *A
,
1998 OptionCategory
*const *B
) {
1999 return (*A
)->getName().compare((*B
)->getName());
2002 // Make sure we inherit our base class's operator=()
2003 using HelpPrinter::operator=;
2006 void printOptions(StrOptionPairVector
&Opts
, size_t MaxArgLen
) override
{
2007 std::vector
<OptionCategory
*> SortedCategories
;
2008 std::map
<OptionCategory
*, std::vector
<Option
*>> CategorizedOptions
;
2010 // Collect registered option categories into vector in preparation for
2012 for (auto I
= GlobalParser
->RegisteredOptionCategories
.begin(),
2013 E
= GlobalParser
->RegisteredOptionCategories
.end();
2015 SortedCategories
.push_back(*I
);
2018 // Sort the different option categories alphabetically.
2019 assert(SortedCategories
.size() > 0 && "No option categories registered!");
2020 array_pod_sort(SortedCategories
.begin(), SortedCategories
.end(),
2021 OptionCategoryCompare
);
2023 // Create map to empty vectors.
2024 for (std::vector
<OptionCategory
*>::const_iterator
2025 I
= SortedCategories
.begin(),
2026 E
= SortedCategories
.end();
2028 CategorizedOptions
[*I
] = std::vector
<Option
*>();
2030 // Walk through pre-sorted options and assign into categories.
2031 // Because the options are already alphabetically sorted the
2032 // options within categories will also be alphabetically sorted.
2033 for (size_t I
= 0, E
= Opts
.size(); I
!= E
; ++I
) {
2034 Option
*Opt
= Opts
[I
].second
;
2035 assert(CategorizedOptions
.count(Opt
->Category
) > 0 &&
2036 "Option has an unregistered category");
2037 CategorizedOptions
[Opt
->Category
].push_back(Opt
);
2041 for (std::vector
<OptionCategory
*>::const_iterator
2042 Category
= SortedCategories
.begin(),
2043 E
= SortedCategories
.end();
2044 Category
!= E
; ++Category
) {
2045 // Hide empty categories for -help, but show for -help-hidden.
2046 const auto &CategoryOptions
= CategorizedOptions
[*Category
];
2047 bool IsEmptyCategory
= CategoryOptions
.empty();
2048 if (!ShowHidden
&& IsEmptyCategory
)
2051 // Print category information.
2053 outs() << (*Category
)->getName() << ":\n";
2055 // Check if description is set.
2056 if (!(*Category
)->getDescription().empty())
2057 outs() << (*Category
)->getDescription() << "\n\n";
2061 // When using -help-hidden explicitly state if the category has no
2062 // options associated with it.
2063 if (IsEmptyCategory
) {
2064 outs() << " This option category has no options.\n";
2067 // Loop over the options in the category and print.
2068 for (const Option
*Opt
: CategoryOptions
)
2069 Opt
->printOptionInfo(MaxArgLen
);
2074 // This wraps the Uncategorizing and Categorizing printers and decides
2075 // at run time which should be invoked.
2076 class HelpPrinterWrapper
{
2078 HelpPrinter
&UncategorizedPrinter
;
2079 CategorizedHelpPrinter
&CategorizedPrinter
;
2082 explicit HelpPrinterWrapper(HelpPrinter
&UncategorizedPrinter
,
2083 CategorizedHelpPrinter
&CategorizedPrinter
)
2084 : UncategorizedPrinter(UncategorizedPrinter
),
2085 CategorizedPrinter(CategorizedPrinter
) {}
2087 // Invoke the printer.
2088 void operator=(bool Value
);
2091 } // End anonymous namespace
2093 // Declare the four HelpPrinter instances that are used to print out help, or
2094 // help-hidden as an uncategorized list or in categories.
2095 static HelpPrinter
UncategorizedNormalPrinter(false);
2096 static HelpPrinter
UncategorizedHiddenPrinter(true);
2097 static CategorizedHelpPrinter
CategorizedNormalPrinter(false);
2098 static CategorizedHelpPrinter
CategorizedHiddenPrinter(true);
2100 // Declare HelpPrinter wrappers that will decide whether or not to invoke
2101 // a categorizing help printer
2102 static HelpPrinterWrapper
WrappedNormalPrinter(UncategorizedNormalPrinter
,
2103 CategorizedNormalPrinter
);
2104 static HelpPrinterWrapper
WrappedHiddenPrinter(UncategorizedHiddenPrinter
,
2105 CategorizedHiddenPrinter
);
2107 // Define a category for generic options that all tools should have.
2108 static cl::OptionCategory
GenericCategory("Generic Options");
2110 // Define uncategorized help printers.
2111 // -help-list is hidden by default because if Option categories are being used
2112 // then -help behaves the same as -help-list.
2113 static cl::opt
<HelpPrinter
, true, parser
<bool>> HLOp(
2115 cl::desc("Display list of available options (-help-list-hidden for more)"),
2116 cl::location(UncategorizedNormalPrinter
), cl::Hidden
, cl::ValueDisallowed
,
2117 cl::cat(GenericCategory
), cl::sub(*AllSubCommands
));
2119 static cl::opt
<HelpPrinter
, true, parser
<bool>>
2120 HLHOp("help-list-hidden", cl::desc("Display list of all available options"),
2121 cl::location(UncategorizedHiddenPrinter
), cl::Hidden
,
2122 cl::ValueDisallowed
, cl::cat(GenericCategory
),
2123 cl::sub(*AllSubCommands
));
2125 // Define uncategorized/categorized help printers. These printers change their
2126 // behaviour at runtime depending on whether one or more Option categories have
2128 static cl::opt
<HelpPrinterWrapper
, true, parser
<bool>>
2129 HOp("help", cl::desc("Display available options (-help-hidden for more)"),
2130 cl::location(WrappedNormalPrinter
), cl::ValueDisallowed
,
2131 cl::cat(GenericCategory
), cl::sub(*AllSubCommands
));
2133 static cl::opt
<HelpPrinterWrapper
, true, parser
<bool>>
2134 HHOp("help-hidden", cl::desc("Display all available options"),
2135 cl::location(WrappedHiddenPrinter
), cl::Hidden
, cl::ValueDisallowed
,
2136 cl::cat(GenericCategory
), cl::sub(*AllSubCommands
));
2138 static cl::opt
<bool> PrintOptions(
2140 cl::desc("Print non-default options after command line parsing"),
2141 cl::Hidden
, cl::init(false), cl::cat(GenericCategory
),
2142 cl::sub(*AllSubCommands
));
2144 static cl::opt
<bool> PrintAllOptions(
2145 "print-all-options",
2146 cl::desc("Print all option values after command line parsing"), cl::Hidden
,
2147 cl::init(false), cl::cat(GenericCategory
), cl::sub(*AllSubCommands
));
2149 void HelpPrinterWrapper::operator=(bool Value
) {
2153 // Decide which printer to invoke. If more than one option category is
2154 // registered then it is useful to show the categorized help instead of
2155 // uncategorized help.
2156 if (GlobalParser
->RegisteredOptionCategories
.size() > 1) {
2157 // unhide -help-list option so user can have uncategorized output if they
2159 HLOp
.setHiddenFlag(NotHidden
);
2161 CategorizedPrinter
= true; // Invoke categorized printer
2163 UncategorizedPrinter
= true; // Invoke uncategorized printer
2166 // Print the value of each option.
2167 void cl::PrintOptionValues() { GlobalParser
->printOptionValues(); }
2169 void CommandLineParser::printOptionValues() {
2170 if (!PrintOptions
&& !PrintAllOptions
)
2173 SmallVector
<std::pair
<const char *, Option
*>, 128> Opts
;
2174 sortOpts(ActiveSubCommand
->OptionsMap
, Opts
, /*ShowHidden*/ true);
2176 // Compute the maximum argument length...
2177 size_t MaxArgLen
= 0;
2178 for (size_t i
= 0, e
= Opts
.size(); i
!= e
; ++i
)
2179 MaxArgLen
= std::max(MaxArgLen
, Opts
[i
].second
->getOptionWidth());
2181 for (size_t i
= 0, e
= Opts
.size(); i
!= e
; ++i
)
2182 Opts
[i
].second
->printOptionValue(MaxArgLen
, PrintAllOptions
);
2185 static VersionPrinterTy OverrideVersionPrinter
= nullptr;
2187 static std::vector
<VersionPrinterTy
> *ExtraVersionPrinters
= nullptr;
2190 class VersionPrinter
{
2193 raw_ostream
&OS
= outs();
2194 #ifdef PACKAGE_VENDOR
2195 OS
<< PACKAGE_VENDOR
<< " ";
2197 OS
<< "LLVM (http://llvm.org/):\n ";
2199 OS
<< PACKAGE_NAME
<< " version " << PACKAGE_VERSION
;
2200 #ifdef LLVM_VERSION_INFO
2201 OS
<< " " << LLVM_VERSION_INFO
;
2204 #ifndef __OPTIMIZE__
2205 OS
<< "DEBUG build";
2207 OS
<< "Optimized build";
2210 OS
<< " with assertions";
2212 #if LLVM_VERSION_PRINTER_SHOW_HOST_TARGET_INFO
2213 std::string CPU
= sys::getHostCPUName();
2214 if (CPU
== "generic")
2217 << " Default target: " << sys::getDefaultTargetTriple() << '\n'
2218 << " Host CPU: " << CPU
;
2222 void operator=(bool OptionWasSpecified
) {
2223 if (!OptionWasSpecified
)
2226 if (OverrideVersionPrinter
!= nullptr) {
2227 OverrideVersionPrinter(outs());
2232 // Iterate over any registered extra printers and call them to add further
2234 if (ExtraVersionPrinters
!= nullptr) {
2236 for (auto I
: *ExtraVersionPrinters
)
2243 } // End anonymous namespace
2245 // Define the --version option that prints out the LLVM version for the tool
2246 static VersionPrinter VersionPrinterInstance
;
2248 static cl::opt
<VersionPrinter
, true, parser
<bool>>
2249 VersOp("version", cl::desc("Display the version of this program"),
2250 cl::location(VersionPrinterInstance
), cl::ValueDisallowed
,
2251 cl::cat(GenericCategory
));
2253 // Utility function for printing the help message.
2254 void cl::PrintHelpMessage(bool Hidden
, bool Categorized
) {
2255 if (!Hidden
&& !Categorized
)
2256 UncategorizedNormalPrinter
.printHelp();
2257 else if (!Hidden
&& Categorized
)
2258 CategorizedNormalPrinter
.printHelp();
2259 else if (Hidden
&& !Categorized
)
2260 UncategorizedHiddenPrinter
.printHelp();
2262 CategorizedHiddenPrinter
.printHelp();
2265 /// Utility function for printing version number.
2266 void cl::PrintVersionMessage() { VersionPrinterInstance
.print(); }
2268 void cl::SetVersionPrinter(VersionPrinterTy func
) { OverrideVersionPrinter
= func
; }
2270 void cl::AddExtraVersionPrinter(VersionPrinterTy func
) {
2271 if (!ExtraVersionPrinters
)
2272 ExtraVersionPrinters
= new std::vector
<VersionPrinterTy
>;
2274 ExtraVersionPrinters
->push_back(func
);
2277 StringMap
<Option
*> &cl::getRegisteredOptions(SubCommand
&Sub
) {
2278 auto &Subs
= GlobalParser
->RegisteredSubCommands
;
2280 assert(is_contained(Subs
, &Sub
));
2281 return Sub
.OptionsMap
;
2284 iterator_range
<typename SmallPtrSet
<SubCommand
*, 4>::iterator
>
2285 cl::getRegisteredSubcommands() {
2286 return GlobalParser
->getRegisteredSubcommands();
2289 void cl::HideUnrelatedOptions(cl::OptionCategory
&Category
, SubCommand
&Sub
) {
2290 for (auto &I
: Sub
.OptionsMap
) {
2291 if (I
.second
->Category
!= &Category
&&
2292 I
.second
->Category
!= &GenericCategory
)
2293 I
.second
->setHiddenFlag(cl::ReallyHidden
);
2297 void cl::HideUnrelatedOptions(ArrayRef
<const cl::OptionCategory
*> Categories
,
2299 auto CategoriesBegin
= Categories
.begin();
2300 auto CategoriesEnd
= Categories
.end();
2301 for (auto &I
: Sub
.OptionsMap
) {
2302 if (std::find(CategoriesBegin
, CategoriesEnd
, I
.second
->Category
) ==
2304 I
.second
->Category
!= &GenericCategory
)
2305 I
.second
->setHiddenFlag(cl::ReallyHidden
);
2309 void cl::ResetCommandLineParser() { GlobalParser
->reset(); }
2310 void cl::ResetAllOptionOccurrences() {
2311 GlobalParser
->ResetAllOptionOccurrences();
2314 void LLVMParseCommandLineOptions(int argc
, const char *const *argv
,
2315 const char *Overview
) {
2316 llvm::cl::ParseCommandLineOptions(argc
, argv
, StringRef(Overview
),