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"
20 #include "DebugOptions.h"
22 #include "llvm-c/Support.h"
23 #include "llvm/ADT/ArrayRef.h"
24 #include "llvm/ADT/STLFunctionalExtras.h"
25 #include "llvm/ADT/SmallPtrSet.h"
26 #include "llvm/ADT/SmallString.h"
27 #include "llvm/ADT/StringExtras.h"
28 #include "llvm/ADT/StringMap.h"
29 #include "llvm/ADT/StringRef.h"
30 #include "llvm/ADT/Twine.h"
31 #include "llvm/Config/config.h"
32 #include "llvm/Support/ConvertUTF.h"
33 #include "llvm/Support/Debug.h"
34 #include "llvm/Support/Error.h"
35 #include "llvm/Support/ErrorHandling.h"
36 #include "llvm/Support/FileSystem.h"
37 #include "llvm/Support/ManagedStatic.h"
38 #include "llvm/Support/MemoryBuffer.h"
39 #include "llvm/Support/Path.h"
40 #include "llvm/Support/Process.h"
41 #include "llvm/Support/StringSaver.h"
42 #include "llvm/Support/VirtualFileSystem.h"
43 #include "llvm/Support/raw_ostream.h"
50 #define DEBUG_TYPE "commandline"
52 //===----------------------------------------------------------------------===//
53 // Template instantiations and anchors.
57 template class basic_parser
<bool>;
58 template class basic_parser
<boolOrDefault
>;
59 template class basic_parser
<int>;
60 template class basic_parser
<long>;
61 template class basic_parser
<long long>;
62 template class basic_parser
<unsigned>;
63 template class basic_parser
<unsigned long>;
64 template class basic_parser
<unsigned long long>;
65 template class basic_parser
<double>;
66 template class basic_parser
<float>;
67 template class basic_parser
<std::string
>;
68 template class basic_parser
<char>;
70 template class opt
<unsigned>;
71 template class opt
<int>;
72 template class opt
<std::string
>;
73 template class opt
<char>;
74 template class opt
<bool>;
78 // Pin the vtables to this file.
79 void GenericOptionValue::anchor() {}
80 void OptionValue
<boolOrDefault
>::anchor() {}
81 void OptionValue
<std::string
>::anchor() {}
82 void Option::anchor() {}
83 void basic_parser_impl::anchor() {}
84 void parser
<bool>::anchor() {}
85 void parser
<boolOrDefault
>::anchor() {}
86 void parser
<int>::anchor() {}
87 void parser
<long>::anchor() {}
88 void parser
<long long>::anchor() {}
89 void parser
<unsigned>::anchor() {}
90 void parser
<unsigned long>::anchor() {}
91 void parser
<unsigned long long>::anchor() {}
92 void parser
<double>::anchor() {}
93 void parser
<float>::anchor() {}
94 void parser
<std::string
>::anchor() {}
95 void parser
<char>::anchor() {}
97 //===----------------------------------------------------------------------===//
99 const static size_t DefaultPad
= 2;
101 static StringRef ArgPrefix
= "-";
102 static StringRef ArgPrefixLong
= "--";
103 static StringRef ArgHelpPrefix
= " - ";
105 static size_t argPlusPrefixesSize(StringRef ArgName
, size_t Pad
= DefaultPad
) {
106 size_t Len
= ArgName
.size();
108 return Len
+ Pad
+ ArgPrefix
.size() + ArgHelpPrefix
.size();
109 return Len
+ Pad
+ ArgPrefixLong
.size() + ArgHelpPrefix
.size();
112 static SmallString
<8> argPrefix(StringRef ArgName
, size_t Pad
= DefaultPad
) {
113 SmallString
<8> Prefix
;
114 for (size_t I
= 0; I
< Pad
; ++I
) {
115 Prefix
.push_back(' ');
117 Prefix
.append(ArgName
.size() > 1 ? ArgPrefixLong
: ArgPrefix
);
121 // Option predicates...
122 static inline bool isGrouping(const Option
*O
) {
123 return O
->getMiscFlags() & cl::Grouping
;
125 static inline bool isPrefixedOrGrouping(const Option
*O
) {
126 return isGrouping(O
) || O
->getFormattingFlag() == cl::Prefix
||
127 O
->getFormattingFlag() == cl::AlwaysPrefix
;
137 PrintArg(StringRef ArgName
, size_t Pad
= DefaultPad
) : ArgName(ArgName
), Pad(Pad
) {}
138 friend raw_ostream
&operator<<(raw_ostream
&OS
, const PrintArg
&);
141 raw_ostream
&operator<<(raw_ostream
&OS
, const PrintArg
& Arg
) {
142 OS
<< argPrefix(Arg
.ArgName
, Arg
.Pad
) << Arg
.ArgName
;
146 class CommandLineParser
{
148 // Globals for name and overview of program. Program name is not a string to
149 // avoid static ctor/dtor issues.
150 std::string ProgramName
;
151 StringRef ProgramOverview
;
153 // This collects additional help to be printed.
154 std::vector
<StringRef
> MoreHelp
;
156 // This collects Options added with the cl::DefaultOption flag. Since they can
157 // be overridden, they are not added to the appropriate SubCommands until
158 // ParseCommandLineOptions actually runs.
159 SmallVector
<Option
*, 4> DefaultOptions
;
161 // This collects the different option categories that have been registered.
162 SmallPtrSet
<OptionCategory
*, 16> RegisteredOptionCategories
;
164 // This collects the different subcommands that have been registered.
165 SmallPtrSet
<SubCommand
*, 4> RegisteredSubCommands
;
167 CommandLineParser() {
168 registerSubCommand(&SubCommand::getTopLevel());
169 registerSubCommand(&SubCommand::getAll());
172 void ResetAllOptionOccurrences();
174 bool ParseCommandLineOptions(int argc
, const char *const *argv
,
175 StringRef Overview
, raw_ostream
*Errs
= nullptr,
176 bool LongOptionsUseDoubleDash
= false);
178 void addLiteralOption(Option
&Opt
, SubCommand
*SC
, StringRef Name
) {
181 if (!SC
->OptionsMap
.insert(std::make_pair(Name
, &Opt
)).second
) {
182 errs() << ProgramName
<< ": CommandLine Error: Option '" << Name
183 << "' registered more than once!\n";
184 report_fatal_error("inconsistency in registered CommandLine options");
187 // If we're adding this to all sub-commands, add it to the ones that have
188 // already been registered.
189 if (SC
== &SubCommand::getAll()) {
190 for (auto *Sub
: RegisteredSubCommands
) {
193 addLiteralOption(Opt
, Sub
, Name
);
198 void addLiteralOption(Option
&Opt
, StringRef Name
) {
199 if (Opt
.Subs
.empty())
200 addLiteralOption(Opt
, &SubCommand::getTopLevel(), Name
);
202 for (auto *SC
: Opt
.Subs
)
203 addLiteralOption(Opt
, SC
, Name
);
207 void addOption(Option
*O
, SubCommand
*SC
) {
208 bool HadErrors
= false;
209 if (O
->hasArgStr()) {
210 // If it's a DefaultOption, check to make sure it isn't already there.
211 if (O
->isDefaultOption() && SC
->OptionsMap
.contains(O
->ArgStr
))
214 // Add argument to the argument map!
215 if (!SC
->OptionsMap
.insert(std::make_pair(O
->ArgStr
, O
)).second
) {
216 errs() << ProgramName
<< ": CommandLine Error: Option '" << O
->ArgStr
217 << "' registered more than once!\n";
222 // Remember information about positional options.
223 if (O
->getFormattingFlag() == cl::Positional
)
224 SC
->PositionalOpts
.push_back(O
);
225 else if (O
->getMiscFlags() & cl::Sink
) // Remember sink options
226 SC
->SinkOpts
.push_back(O
);
227 else if (O
->getNumOccurrencesFlag() == cl::ConsumeAfter
) {
228 if (SC
->ConsumeAfterOpt
) {
229 O
->error("Cannot specify more than one option with cl::ConsumeAfter!");
232 SC
->ConsumeAfterOpt
= O
;
235 // Fail hard if there were errors. These are strictly unrecoverable and
236 // indicate serious issues such as conflicting option names or an
238 // linked LLVM distribution.
240 report_fatal_error("inconsistency in registered CommandLine options");
242 // If we're adding this to all sub-commands, add it to the ones that have
243 // already been registered.
244 if (SC
== &SubCommand::getAll()) {
245 for (auto *Sub
: RegisteredSubCommands
) {
253 void addOption(Option
*O
, bool ProcessDefaultOption
= false) {
254 if (!ProcessDefaultOption
&& O
->isDefaultOption()) {
255 DefaultOptions
.push_back(O
);
259 if (O
->Subs
.empty()) {
260 addOption(O
, &SubCommand::getTopLevel());
262 for (auto *SC
: O
->Subs
)
267 void removeOption(Option
*O
, SubCommand
*SC
) {
268 SmallVector
<StringRef
, 16> OptionNames
;
269 O
->getExtraOptionNames(OptionNames
);
271 OptionNames
.push_back(O
->ArgStr
);
273 SubCommand
&Sub
= *SC
;
274 auto End
= Sub
.OptionsMap
.end();
275 for (auto Name
: OptionNames
) {
276 auto I
= Sub
.OptionsMap
.find(Name
);
277 if (I
!= End
&& I
->getValue() == O
)
278 Sub
.OptionsMap
.erase(I
);
281 if (O
->getFormattingFlag() == cl::Positional
)
282 for (auto *Opt
= Sub
.PositionalOpts
.begin();
283 Opt
!= Sub
.PositionalOpts
.end(); ++Opt
) {
285 Sub
.PositionalOpts
.erase(Opt
);
289 else if (O
->getMiscFlags() & cl::Sink
)
290 for (auto *Opt
= Sub
.SinkOpts
.begin(); Opt
!= Sub
.SinkOpts
.end(); ++Opt
) {
292 Sub
.SinkOpts
.erase(Opt
);
296 else if (O
== Sub
.ConsumeAfterOpt
)
297 Sub
.ConsumeAfterOpt
= nullptr;
300 void removeOption(Option
*O
) {
302 removeOption(O
, &SubCommand::getTopLevel());
304 if (O
->isInAllSubCommands()) {
305 for (auto *SC
: RegisteredSubCommands
)
308 for (auto *SC
: O
->Subs
)
314 bool hasOptions(const SubCommand
&Sub
) const {
315 return (!Sub
.OptionsMap
.empty() || !Sub
.PositionalOpts
.empty() ||
316 nullptr != Sub
.ConsumeAfterOpt
);
319 bool hasOptions() const {
320 for (const auto *S
: RegisteredSubCommands
) {
327 SubCommand
*getActiveSubCommand() { return ActiveSubCommand
; }
329 void updateArgStr(Option
*O
, StringRef NewName
, SubCommand
*SC
) {
330 SubCommand
&Sub
= *SC
;
331 if (!Sub
.OptionsMap
.insert(std::make_pair(NewName
, O
)).second
) {
332 errs() << ProgramName
<< ": CommandLine Error: Option '" << O
->ArgStr
333 << "' registered more than once!\n";
334 report_fatal_error("inconsistency in registered CommandLine options");
336 Sub
.OptionsMap
.erase(O
->ArgStr
);
339 void updateArgStr(Option
*O
, StringRef NewName
) {
341 updateArgStr(O
, NewName
, &SubCommand::getTopLevel());
343 if (O
->isInAllSubCommands()) {
344 for (auto *SC
: RegisteredSubCommands
)
345 updateArgStr(O
, NewName
, SC
);
347 for (auto *SC
: O
->Subs
)
348 updateArgStr(O
, NewName
, SC
);
353 void printOptionValues();
355 void registerCategory(OptionCategory
*cat
) {
356 assert(count_if(RegisteredOptionCategories
,
357 [cat
](const OptionCategory
*Category
) {
358 return cat
->getName() == Category
->getName();
360 "Duplicate option categories");
362 RegisteredOptionCategories
.insert(cat
);
365 void registerSubCommand(SubCommand
*sub
) {
366 assert(count_if(RegisteredSubCommands
,
367 [sub
](const SubCommand
*Sub
) {
368 return (!sub
->getName().empty()) &&
369 (Sub
->getName() == sub
->getName());
371 "Duplicate subcommands");
372 RegisteredSubCommands
.insert(sub
);
374 // For all options that have been registered for all subcommands, add the
375 // option to this subcommand now.
376 if (sub
!= &SubCommand::getAll()) {
377 for (auto &E
: SubCommand::getAll().OptionsMap
) {
378 Option
*O
= E
.second
;
379 if ((O
->isPositional() || O
->isSink() || O
->isConsumeAfter()) ||
383 addLiteralOption(*O
, sub
, E
.first());
388 void unregisterSubCommand(SubCommand
*sub
) {
389 RegisteredSubCommands
.erase(sub
);
392 iterator_range
<typename SmallPtrSet
<SubCommand
*, 4>::iterator
>
393 getRegisteredSubcommands() {
394 return make_range(RegisteredSubCommands
.begin(),
395 RegisteredSubCommands
.end());
399 ActiveSubCommand
= nullptr;
401 ProgramOverview
= StringRef();
404 RegisteredOptionCategories
.clear();
406 ResetAllOptionOccurrences();
407 RegisteredSubCommands
.clear();
409 SubCommand::getTopLevel().reset();
410 SubCommand::getAll().reset();
411 registerSubCommand(&SubCommand::getTopLevel());
412 registerSubCommand(&SubCommand::getAll());
414 DefaultOptions
.clear();
418 SubCommand
*ActiveSubCommand
= nullptr;
420 Option
*LookupOption(SubCommand
&Sub
, StringRef
&Arg
, StringRef
&Value
);
421 Option
*LookupLongOption(SubCommand
&Sub
, StringRef
&Arg
, StringRef
&Value
,
422 bool LongOptionsUseDoubleDash
, bool HaveDoubleDash
) {
423 Option
*Opt
= LookupOption(Sub
, Arg
, Value
);
424 if (Opt
&& LongOptionsUseDoubleDash
&& !HaveDoubleDash
&& !isGrouping(Opt
))
428 SubCommand
*LookupSubCommand(StringRef Name
);
433 static ManagedStatic
<CommandLineParser
> GlobalParser
;
435 void cl::AddLiteralOption(Option
&O
, StringRef Name
) {
436 GlobalParser
->addLiteralOption(O
, Name
);
439 extrahelp::extrahelp(StringRef Help
) : morehelp(Help
) {
440 GlobalParser
->MoreHelp
.push_back(Help
);
443 void Option::addArgument() {
444 GlobalParser
->addOption(this);
445 FullyInitialized
= true;
448 void Option::removeArgument() { GlobalParser
->removeOption(this); }
450 void Option::setArgStr(StringRef S
) {
451 if (FullyInitialized
)
452 GlobalParser
->updateArgStr(this, S
);
453 assert((S
.empty() || S
[0] != '-') && "Option can't start with '-");
455 if (ArgStr
.size() == 1)
456 setMiscFlag(Grouping
);
459 void Option::addCategory(OptionCategory
&C
) {
460 assert(!Categories
.empty() && "Categories cannot be empty.");
461 // Maintain backward compatibility by replacing the default GeneralCategory
462 // if it's still set. Otherwise, just add the new one. The GeneralCategory
463 // must be explicitly added if you want multiple categories that include it.
464 if (&C
!= &getGeneralCategory() && Categories
[0] == &getGeneralCategory())
466 else if (!is_contained(Categories
, &C
))
467 Categories
.push_back(&C
);
470 void Option::reset() {
473 if (isDefaultOption())
477 void OptionCategory::registerCategory() {
478 GlobalParser
->registerCategory(this);
481 // A special subcommand representing no subcommand. It is particularly important
482 // that this ManagedStatic uses constant initailization and not dynamic
483 // initialization because it is referenced from cl::opt constructors, which run
484 // dynamically in an arbitrary order.
485 LLVM_REQUIRE_CONSTANT_INITIALIZATION
486 ManagedStatic
<SubCommand
> llvm::cl::TopLevelSubCommand
;
488 // A special subcommand that can be used to put an option into all subcommands.
489 ManagedStatic
<SubCommand
> llvm::cl::AllSubCommands
;
491 SubCommand
&SubCommand::getTopLevel() { return *TopLevelSubCommand
; }
493 SubCommand
&SubCommand::getAll() { return *AllSubCommands
; }
495 void SubCommand::registerSubCommand() {
496 GlobalParser
->registerSubCommand(this);
499 void SubCommand::unregisterSubCommand() {
500 GlobalParser
->unregisterSubCommand(this);
503 void SubCommand::reset() {
504 PositionalOpts
.clear();
508 ConsumeAfterOpt
= nullptr;
511 SubCommand::operator bool() const {
512 return (GlobalParser
->getActiveSubCommand() == this);
515 //===----------------------------------------------------------------------===//
516 // Basic, shared command line option processing machinery.
519 /// LookupOption - Lookup the option specified by the specified option on the
520 /// command line. If there is a value specified (after an equal sign) return
521 /// that as well. This assumes that leading dashes have already been stripped.
522 Option
*CommandLineParser::LookupOption(SubCommand
&Sub
, StringRef
&Arg
,
524 // Reject all dashes.
527 assert(&Sub
!= &SubCommand::getAll());
529 size_t EqualPos
= Arg
.find('=');
531 // If we have an equals sign, remember the value.
532 if (EqualPos
== StringRef::npos
) {
533 // Look up the option.
534 return Sub
.OptionsMap
.lookup(Arg
);
537 // If the argument before the = is a valid option name and the option allows
538 // non-prefix form (ie is not AlwaysPrefix), we match. If not, signal match
539 // failure by returning nullptr.
540 auto I
= Sub
.OptionsMap
.find(Arg
.substr(0, EqualPos
));
541 if (I
== Sub
.OptionsMap
.end())
545 if (O
->getFormattingFlag() == cl::AlwaysPrefix
)
548 Value
= Arg
.substr(EqualPos
+ 1);
549 Arg
= Arg
.substr(0, EqualPos
);
553 SubCommand
*CommandLineParser::LookupSubCommand(StringRef Name
) {
555 return &SubCommand::getTopLevel();
556 for (auto *S
: RegisteredSubCommands
) {
557 if (S
== &SubCommand::getAll())
559 if (S
->getName().empty())
562 if (StringRef(S
->getName()) == StringRef(Name
))
565 return &SubCommand::getTopLevel();
568 /// LookupNearestOption - Lookup the closest match to the option specified by
569 /// the specified option on the command line. If there is a value specified
570 /// (after an equal sign) return that as well. This assumes that leading dashes
571 /// have already been stripped.
572 static Option
*LookupNearestOption(StringRef Arg
,
573 const StringMap
<Option
*> &OptionsMap
,
574 std::string
&NearestString
) {
575 // Reject all dashes.
579 // Split on any equal sign.
580 std::pair
<StringRef
, StringRef
> SplitArg
= Arg
.split('=');
581 StringRef
&LHS
= SplitArg
.first
; // LHS == Arg when no '=' is present.
582 StringRef
&RHS
= SplitArg
.second
;
584 // Find the closest match.
585 Option
*Best
= nullptr;
586 unsigned BestDistance
= 0;
587 for (StringMap
<Option
*>::const_iterator it
= OptionsMap
.begin(),
588 ie
= OptionsMap
.end();
590 Option
*O
= it
->second
;
591 // Do not suggest really hidden options (not shown in any help).
592 if (O
->getOptionHiddenFlag() == ReallyHidden
)
595 SmallVector
<StringRef
, 16> OptionNames
;
596 O
->getExtraOptionNames(OptionNames
);
598 OptionNames
.push_back(O
->ArgStr
);
600 bool PermitValue
= O
->getValueExpectedFlag() != cl::ValueDisallowed
;
601 StringRef Flag
= PermitValue
? LHS
: Arg
;
602 for (const auto &Name
: OptionNames
) {
603 unsigned Distance
= StringRef(Name
).edit_distance(
604 Flag
, /*AllowReplacements=*/true, /*MaxEditDistance=*/BestDistance
);
605 if (!Best
|| Distance
< BestDistance
) {
607 BestDistance
= Distance
;
608 if (RHS
.empty() || !PermitValue
)
609 NearestString
= std::string(Name
);
611 NearestString
= (Twine(Name
) + "=" + RHS
).str();
619 /// CommaSeparateAndAddOccurrence - A wrapper around Handler->addOccurrence()
620 /// that does special handling of cl::CommaSeparated options.
621 static bool CommaSeparateAndAddOccurrence(Option
*Handler
, unsigned pos
,
622 StringRef ArgName
, StringRef Value
,
623 bool MultiArg
= false) {
624 // Check to see if this option accepts a comma separated list of values. If
625 // it does, we have to split up the value into multiple values.
626 if (Handler
->getMiscFlags() & CommaSeparated
) {
627 StringRef
Val(Value
);
628 StringRef::size_type Pos
= Val
.find(',');
630 while (Pos
!= StringRef::npos
) {
631 // Process the portion before the comma.
632 if (Handler
->addOccurrence(pos
, ArgName
, Val
.substr(0, Pos
), MultiArg
))
634 // Erase the portion before the comma, AND the comma.
635 Val
= Val
.substr(Pos
+ 1);
636 // Check for another comma.
643 return Handler
->addOccurrence(pos
, ArgName
, Value
, MultiArg
);
646 /// ProvideOption - For Value, this differentiates between an empty value ("")
647 /// and a null value (StringRef()). The later is accepted for arguments that
648 /// don't allow a value (-foo) the former is rejected (-foo=).
649 static inline bool ProvideOption(Option
*Handler
, StringRef ArgName
,
650 StringRef Value
, int argc
,
651 const char *const *argv
, int &i
) {
652 // Is this a multi-argument option?
653 unsigned NumAdditionalVals
= Handler
->getNumAdditionalVals();
655 // Enforce value requirements
656 switch (Handler
->getValueExpectedFlag()) {
658 if (!Value
.data()) { // No value specified?
659 // If no other argument or the option only supports prefix form, we
660 // cannot look at the next argument.
661 if (i
+ 1 >= argc
|| Handler
->getFormattingFlag() == cl::AlwaysPrefix
)
662 return Handler
->error("requires a value!");
663 // Steal the next argument, like for '-o filename'
664 assert(argv
&& "null check");
665 Value
= StringRef(argv
[++i
]);
668 case ValueDisallowed
:
669 if (NumAdditionalVals
> 0)
670 return Handler
->error("multi-valued option specified"
671 " with ValueDisallowed modifier!");
674 return Handler
->error("does not allow a value! '" + Twine(Value
) +
681 // If this isn't a multi-arg option, just run the handler.
682 if (NumAdditionalVals
== 0)
683 return CommaSeparateAndAddOccurrence(Handler
, i
, ArgName
, Value
);
685 // If it is, run the handle several times.
686 bool MultiArg
= false;
689 if (CommaSeparateAndAddOccurrence(Handler
, i
, ArgName
, Value
, MultiArg
))
695 while (NumAdditionalVals
> 0) {
697 return Handler
->error("not enough values!");
698 assert(argv
&& "null check");
699 Value
= StringRef(argv
[++i
]);
701 if (CommaSeparateAndAddOccurrence(Handler
, i
, ArgName
, Value
, MultiArg
))
709 bool llvm::cl::ProvidePositionalOption(Option
*Handler
, StringRef Arg
, int i
) {
711 return ProvideOption(Handler
, Handler
->ArgStr
, Arg
, 0, nullptr, Dummy
);
714 // getOptionPred - Check to see if there are any options that satisfy the
715 // specified predicate with names that are the prefixes in Name. This is
716 // checked by progressively stripping characters off of the name, checking to
717 // see if there options that satisfy the predicate. If we find one, return it,
718 // otherwise return null.
720 static Option
*getOptionPred(StringRef Name
, size_t &Length
,
721 bool (*Pred
)(const Option
*),
722 const StringMap
<Option
*> &OptionsMap
) {
723 StringMap
<Option
*>::const_iterator OMI
= OptionsMap
.find(Name
);
724 if (OMI
!= OptionsMap
.end() && !Pred(OMI
->getValue()))
725 OMI
= OptionsMap
.end();
727 // Loop while we haven't found an option and Name still has at least two
728 // characters in it (so that the next iteration will not be the empty
730 while (OMI
== OptionsMap
.end() && Name
.size() > 1) {
731 Name
= Name
.substr(0, Name
.size() - 1); // Chop off the last character.
732 OMI
= OptionsMap
.find(Name
);
733 if (OMI
!= OptionsMap
.end() && !Pred(OMI
->getValue()))
734 OMI
= OptionsMap
.end();
737 if (OMI
!= OptionsMap
.end() && Pred(OMI
->second
)) {
738 Length
= Name
.size();
739 return OMI
->second
; // Found one!
741 return nullptr; // No option found!
744 /// HandlePrefixedOrGroupedOption - The specified argument string (which started
745 /// with at least one '-') does not fully match an available option. Check to
746 /// see if this is a prefix or grouped option. If so, split arg into output an
747 /// Arg/Value pair and return the Option to parse it with.
749 HandlePrefixedOrGroupedOption(StringRef
&Arg
, StringRef
&Value
,
751 const StringMap
<Option
*> &OptionsMap
) {
757 Option
*PGOpt
= getOptionPred(Arg
, Length
, isPrefixedOrGrouping
, OptionsMap
);
762 StringRef MaybeValue
=
763 (Length
< Arg
.size()) ? Arg
.substr(Length
) : StringRef();
764 Arg
= Arg
.substr(0, Length
);
765 assert(OptionsMap
.count(Arg
) && OptionsMap
.find(Arg
)->second
== PGOpt
);
767 // cl::Prefix options do not preserve '=' when used separately.
768 // The behavior for them with grouped options should be the same.
769 if (MaybeValue
.empty() || PGOpt
->getFormattingFlag() == cl::AlwaysPrefix
||
770 (PGOpt
->getFormattingFlag() == cl::Prefix
&& MaybeValue
[0] != '=')) {
775 if (MaybeValue
[0] == '=') {
776 Value
= MaybeValue
.substr(1);
780 // This must be a grouped option.
781 assert(isGrouping(PGOpt
) && "Broken getOptionPred!");
783 // Grouping options inside a group can't have values.
784 if (PGOpt
->getValueExpectedFlag() == cl::ValueRequired
) {
785 ErrorParsing
|= PGOpt
->error("may not occur within a group!");
789 // Because the value for the option is not required, we don't need to pass
792 ErrorParsing
|= ProvideOption(PGOpt
, Arg
, StringRef(), 0, nullptr, Dummy
);
794 // Get the next grouping option.
796 PGOpt
= getOptionPred(Arg
, Length
, isGrouping
, OptionsMap
);
799 // We could not find a grouping option in the remainder of Arg.
803 static bool RequiresValue(const Option
*O
) {
804 return O
->getNumOccurrencesFlag() == cl::Required
||
805 O
->getNumOccurrencesFlag() == cl::OneOrMore
;
808 static bool EatsUnboundedNumberOfValues(const Option
*O
) {
809 return O
->getNumOccurrencesFlag() == cl::ZeroOrMore
||
810 O
->getNumOccurrencesFlag() == cl::OneOrMore
;
813 static bool isWhitespace(char C
) {
814 return C
== ' ' || C
== '\t' || C
== '\r' || C
== '\n';
817 static bool isWhitespaceOrNull(char C
) {
818 return isWhitespace(C
) || C
== '\0';
821 static bool isQuote(char C
) { return C
== '\"' || C
== '\''; }
823 void cl::TokenizeGNUCommandLine(StringRef Src
, StringSaver
&Saver
,
824 SmallVectorImpl
<const char *> &NewArgv
,
826 SmallString
<128> Token
;
827 for (size_t I
= 0, E
= Src
.size(); I
!= E
; ++I
) {
828 // Consume runs of whitespace.
830 while (I
!= E
&& isWhitespace(Src
[I
])) {
831 // Mark the end of lines in response files.
832 if (MarkEOLs
&& Src
[I
] == '\n')
833 NewArgv
.push_back(nullptr);
842 // Backslash escapes the next character.
843 if (I
+ 1 < E
&& C
== '\\') {
844 ++I
; // Skip the escape.
845 Token
.push_back(Src
[I
]);
849 // Consume a quoted string.
852 while (I
!= E
&& Src
[I
] != C
) {
853 // Backslash escapes the next character.
854 if (Src
[I
] == '\\' && I
+ 1 != E
)
856 Token
.push_back(Src
[I
]);
864 // End the token if this is whitespace.
865 if (isWhitespace(C
)) {
867 NewArgv
.push_back(Saver
.save(Token
.str()).data());
868 // Mark the end of lines in response files.
869 if (MarkEOLs
&& C
== '\n')
870 NewArgv
.push_back(nullptr);
875 // This is a normal character. Append it.
879 // Append the last token after hitting EOF with no whitespace.
881 NewArgv
.push_back(Saver
.save(Token
.str()).data());
884 /// Backslashes are interpreted in a rather complicated way in the Windows-style
885 /// command line, because backslashes are used both to separate path and to
886 /// escape double quote. This method consumes runs of backslashes as well as the
887 /// following double quote if it's escaped.
889 /// * If an even number of backslashes is followed by a double quote, one
890 /// backslash is output for every pair of backslashes, and the last double
891 /// quote remains unconsumed. The double quote will later be interpreted as
892 /// the start or end of a quoted string in the main loop outside of this
895 /// * If an odd number of backslashes is followed by a double quote, one
896 /// backslash is output for every pair of backslashes, and a double quote is
897 /// output for the last pair of backslash-double quote. The double quote is
898 /// consumed in this case.
900 /// * Otherwise, backslashes are interpreted literally.
901 static size_t parseBackslash(StringRef Src
, size_t I
, SmallString
<128> &Token
) {
902 size_t E
= Src
.size();
903 int BackslashCount
= 0;
904 // Skip the backslashes.
908 } while (I
!= E
&& Src
[I
] == '\\');
910 bool FollowedByDoubleQuote
= (I
!= E
&& Src
[I
] == '"');
911 if (FollowedByDoubleQuote
) {
912 Token
.append(BackslashCount
/ 2, '\\');
913 if (BackslashCount
% 2 == 0)
915 Token
.push_back('"');
918 Token
.append(BackslashCount
, '\\');
922 // Windows treats whitespace, double quotes, and backslashes specially, except
923 // when parsing the first token of a full command line, in which case
924 // backslashes are not special.
925 static bool isWindowsSpecialChar(char C
) {
926 return isWhitespaceOrNull(C
) || C
== '\\' || C
== '\"';
928 static bool isWindowsSpecialCharInCommandName(char C
) {
929 return isWhitespaceOrNull(C
) || C
== '\"';
932 // Windows tokenization implementation. The implementation is designed to be
933 // inlined and specialized for the two user entry points.
934 static inline void tokenizeWindowsCommandLineImpl(
935 StringRef Src
, StringSaver
&Saver
, function_ref
<void(StringRef
)> AddToken
,
936 bool AlwaysCopy
, function_ref
<void()> MarkEOL
, bool InitialCommandName
) {
937 SmallString
<128> Token
;
939 // Sometimes, this function will be handling a full command line including an
940 // executable pathname at the start. In that situation, the initial pathname
941 // needs different handling from the following arguments, because when
942 // CreateProcess or cmd.exe scans the pathname, it doesn't treat \ as
943 // escaping the quote character, whereas when libc scans the rest of the
944 // command line, it does.
945 bool CommandName
= InitialCommandName
;
947 // Try to do as much work inside the state machine as possible.
948 enum { INIT
, UNQUOTED
, QUOTED
} State
= INIT
;
950 for (size_t I
= 0, E
= Src
.size(); I
< E
; ++I
) {
953 assert(Token
.empty() && "token should be empty in initial state");
954 // Eat whitespace before a token.
955 while (I
< E
&& isWhitespaceOrNull(Src
[I
])) {
960 // Stop if this was trailing whitespace.
965 while (I
< E
&& !isWindowsSpecialCharInCommandName(Src
[I
]))
968 while (I
< E
&& !isWindowsSpecialChar(Src
[I
]))
971 StringRef NormalChars
= Src
.slice(Start
, I
);
972 if (I
>= E
|| isWhitespaceOrNull(Src
[I
])) {
973 // No special characters: slice out the substring and start the next
974 // token. Copy the string if the caller asks us to.
975 AddToken(AlwaysCopy
? Saver
.save(NormalChars
) : NormalChars
);
976 if (I
< E
&& Src
[I
] == '\n') {
978 CommandName
= InitialCommandName
;
982 } else if (Src
[I
] == '\"') {
983 Token
+= NormalChars
;
985 } else if (Src
[I
] == '\\') {
986 assert(!CommandName
&& "or else we'd have treated it as a normal char");
987 Token
+= NormalChars
;
988 I
= parseBackslash(Src
, I
, Token
);
991 llvm_unreachable("unexpected special character");
997 if (isWhitespaceOrNull(Src
[I
])) {
998 // Whitespace means the end of the token. If we are in this state, the
999 // token must have contained a special character, so we must copy the
1001 AddToken(Saver
.save(Token
.str()));
1003 if (Src
[I
] == '\n') {
1004 CommandName
= InitialCommandName
;
1007 CommandName
= false;
1010 } else if (Src
[I
] == '\"') {
1012 } else if (Src
[I
] == '\\' && !CommandName
) {
1013 I
= parseBackslash(Src
, I
, Token
);
1015 Token
.push_back(Src
[I
]);
1020 if (Src
[I
] == '\"') {
1021 if (I
< (E
- 1) && Src
[I
+ 1] == '"') {
1022 // Consecutive double-quotes inside a quoted string implies one
1024 Token
.push_back('"');
1027 // Otherwise, end the quoted portion and return to the unquoted state.
1030 } else if (Src
[I
] == '\\' && !CommandName
) {
1031 I
= parseBackslash(Src
, I
, Token
);
1033 Token
.push_back(Src
[I
]);
1040 AddToken(Saver
.save(Token
.str()));
1043 void cl::TokenizeWindowsCommandLine(StringRef Src
, StringSaver
&Saver
,
1044 SmallVectorImpl
<const char *> &NewArgv
,
1046 auto AddToken
= [&](StringRef Tok
) { NewArgv
.push_back(Tok
.data()); };
1047 auto OnEOL
= [&]() {
1049 NewArgv
.push_back(nullptr);
1051 tokenizeWindowsCommandLineImpl(Src
, Saver
, AddToken
,
1052 /*AlwaysCopy=*/true, OnEOL
, false);
1055 void cl::TokenizeWindowsCommandLineNoCopy(StringRef Src
, StringSaver
&Saver
,
1056 SmallVectorImpl
<StringRef
> &NewArgv
) {
1057 auto AddToken
= [&](StringRef Tok
) { NewArgv
.push_back(Tok
); };
1058 auto OnEOL
= []() {};
1059 tokenizeWindowsCommandLineImpl(Src
, Saver
, AddToken
, /*AlwaysCopy=*/false,
1063 void cl::TokenizeWindowsCommandLineFull(StringRef Src
, StringSaver
&Saver
,
1064 SmallVectorImpl
<const char *> &NewArgv
,
1066 auto AddToken
= [&](StringRef Tok
) { NewArgv
.push_back(Tok
.data()); };
1067 auto OnEOL
= [&]() {
1069 NewArgv
.push_back(nullptr);
1071 tokenizeWindowsCommandLineImpl(Src
, Saver
, AddToken
,
1072 /*AlwaysCopy=*/true, OnEOL
, true);
1075 void cl::tokenizeConfigFile(StringRef Source
, StringSaver
&Saver
,
1076 SmallVectorImpl
<const char *> &NewArgv
,
1078 for (const char *Cur
= Source
.begin(); Cur
!= Source
.end();) {
1079 SmallString
<128> Line
;
1080 // Check for comment line.
1081 if (isWhitespace(*Cur
)) {
1082 while (Cur
!= Source
.end() && isWhitespace(*Cur
))
1087 while (Cur
!= Source
.end() && *Cur
!= '\n')
1091 // Find end of the current line.
1092 const char *Start
= Cur
;
1093 for (const char *End
= Source
.end(); Cur
!= End
; ++Cur
) {
1095 if (Cur
+ 1 != End
) {
1098 (*Cur
== '\r' && (Cur
+ 1 != End
) && Cur
[1] == '\n')) {
1099 Line
.append(Start
, Cur
- 1);
1105 } else if (*Cur
== '\n')
1109 Line
.append(Start
, Cur
);
1110 cl::TokenizeGNUCommandLine(Line
, Saver
, NewArgv
, MarkEOLs
);
1114 // It is called byte order marker but the UTF-8 BOM is actually not affected
1115 // by the host system's endianness.
1116 static bool hasUTF8ByteOrderMark(ArrayRef
<char> S
) {
1117 return (S
.size() >= 3 && S
[0] == '\xef' && S
[1] == '\xbb' && S
[2] == '\xbf');
1120 // Substitute <CFGDIR> with the file's base path.
1121 static void ExpandBasePaths(StringRef BasePath
, StringSaver
&Saver
,
1123 assert(sys::path::is_absolute(BasePath
));
1124 constexpr StringLiteral
Token("<CFGDIR>");
1125 const StringRef
ArgString(Arg
);
1127 SmallString
<128> ResponseFile
;
1128 StringRef::size_type StartPos
= 0;
1129 for (StringRef::size_type TokenPos
= ArgString
.find(Token
);
1130 TokenPos
!= StringRef::npos
;
1131 TokenPos
= ArgString
.find(Token
, StartPos
)) {
1132 // Token may appear more than once per arg (e.g. comma-separated linker
1133 // args). Support by using path-append on any subsequent appearances.
1134 const StringRef LHS
= ArgString
.substr(StartPos
, TokenPos
- StartPos
);
1135 if (ResponseFile
.empty())
1138 llvm::sys::path::append(ResponseFile
, LHS
);
1139 ResponseFile
.append(BasePath
);
1140 StartPos
= TokenPos
+ Token
.size();
1143 if (!ResponseFile
.empty()) {
1144 // Path-append the remaining arg substring if at least one token appeared.
1145 const StringRef Remaining
= ArgString
.substr(StartPos
);
1146 if (!Remaining
.empty())
1147 llvm::sys::path::append(ResponseFile
, Remaining
);
1148 Arg
= Saver
.save(ResponseFile
.str()).data();
1152 // FName must be an absolute path.
1153 Error
ExpansionContext::expandResponseFile(
1154 StringRef FName
, SmallVectorImpl
<const char *> &NewArgv
) {
1155 assert(sys::path::is_absolute(FName
));
1156 llvm::ErrorOr
<std::unique_ptr
<MemoryBuffer
>> MemBufOrErr
=
1157 FS
->getBufferForFile(FName
);
1159 std::error_code EC
= MemBufOrErr
.getError();
1160 return llvm::createStringError(EC
, Twine("cannot not open file '") + FName
+
1161 "': " + EC
.message());
1163 MemoryBuffer
&MemBuf
= *MemBufOrErr
.get();
1164 StringRef
Str(MemBuf
.getBufferStart(), MemBuf
.getBufferSize());
1166 // If we have a UTF-16 byte order mark, convert to UTF-8 for parsing.
1167 ArrayRef
<char> BufRef(MemBuf
.getBufferStart(), MemBuf
.getBufferEnd());
1168 std::string UTF8Buf
;
1169 if (hasUTF16ByteOrderMark(BufRef
)) {
1170 if (!convertUTF16ToUTF8String(BufRef
, UTF8Buf
))
1171 return llvm::createStringError(std::errc::illegal_byte_sequence
,
1172 "Could not convert UTF16 to UTF8");
1173 Str
= StringRef(UTF8Buf
);
1175 // If we see UTF-8 BOM sequence at the beginning of a file, we shall remove
1176 // these bytes before parsing.
1177 // Reference: http://en.wikipedia.org/wiki/UTF-8#Byte_order_mark
1178 else if (hasUTF8ByteOrderMark(BufRef
))
1179 Str
= StringRef(BufRef
.data() + 3, BufRef
.size() - 3);
1181 // Tokenize the contents into NewArgv.
1182 Tokenizer(Str
, Saver
, NewArgv
, MarkEOLs
);
1184 // Expanded file content may require additional transformations, like using
1185 // absolute paths instead of relative in '@file' constructs or expanding
1187 if (!RelativeNames
&& !InConfigFile
)
1188 return Error::success();
1190 StringRef BasePath
= llvm::sys::path::parent_path(FName
);
1191 for (const char *&Arg
: NewArgv
) {
1195 // Substitute <CFGDIR> with the file's base path.
1197 ExpandBasePaths(BasePath
, Saver
, Arg
);
1199 // Discover the case, when argument should be transformed into '@file' and
1200 // evaluate 'file' for it.
1201 StringRef
ArgStr(Arg
);
1203 bool ConfigInclusion
= false;
1204 if (ArgStr
.consume_front("@")) {
1206 if (!llvm::sys::path::is_relative(FileName
))
1208 } else if (ArgStr
.consume_front("--config=")) {
1210 ConfigInclusion
= true;
1215 // Update expansion construct.
1216 SmallString
<128> ResponseFile
;
1217 ResponseFile
.push_back('@');
1218 if (ConfigInclusion
&& !llvm::sys::path::has_parent_path(FileName
)) {
1219 SmallString
<128> FilePath
;
1220 if (!findConfigFile(FileName
, FilePath
))
1221 return createStringError(
1222 std::make_error_code(std::errc::no_such_file_or_directory
),
1223 "cannot not find configuration file: " + FileName
);
1224 ResponseFile
.append(FilePath
);
1226 ResponseFile
.append(BasePath
);
1227 llvm::sys::path::append(ResponseFile
, FileName
);
1229 Arg
= Saver
.save(ResponseFile
.str()).data();
1231 return Error::success();
1234 /// Expand response files on a command line recursively using the given
1235 /// StringSaver and tokenization strategy.
1236 Error
ExpansionContext::expandResponseFiles(
1237 SmallVectorImpl
<const char *> &Argv
) {
1238 struct ResponseFileRecord
{
1243 // To detect recursive response files, we maintain a stack of files and the
1244 // position of the last argument in the file. This position is updated
1245 // dynamically as we recursively expand files.
1246 SmallVector
<ResponseFileRecord
, 3> FileStack
;
1248 // Push a dummy entry that represents the initial command line, removing
1249 // the need to check for an empty list.
1250 FileStack
.push_back({"", Argv
.size()});
1252 // Don't cache Argv.size() because it can change.
1253 for (unsigned I
= 0; I
!= Argv
.size();) {
1254 while (I
== FileStack
.back().End
) {
1255 // Passing the end of a file's argument list, so we can remove it from the
1257 FileStack
.pop_back();
1260 const char *Arg
= Argv
[I
];
1261 // Check if it is an EOL marker
1262 if (Arg
== nullptr) {
1267 if (Arg
[0] != '@') {
1272 const char *FName
= Arg
+ 1;
1273 // Note that CurrentDir is only used for top-level rsp files, the rest will
1274 // always have an absolute path deduced from the containing file.
1275 SmallString
<128> CurrDir
;
1276 if (llvm::sys::path::is_relative(FName
)) {
1277 if (CurrentDir
.empty()) {
1278 if (auto CWD
= FS
->getCurrentWorkingDirectory()) {
1281 return createStringError(
1282 CWD
.getError(), Twine("cannot get absolute path for: ") + FName
);
1285 CurrDir
= CurrentDir
;
1287 llvm::sys::path::append(CurrDir
, FName
);
1288 FName
= CurrDir
.c_str();
1291 ErrorOr
<llvm::vfs::Status
> Res
= FS
->status(FName
);
1292 if (!Res
|| !Res
->exists()) {
1293 std::error_code EC
= Res
.getError();
1294 if (!InConfigFile
) {
1295 // If the specified file does not exist, leave '@file' unexpanded, as
1297 if (!EC
|| EC
== llvm::errc::no_such_file_or_directory
) {
1303 EC
= llvm::errc::no_such_file_or_directory
;
1304 return createStringError(EC
, Twine("cannot not open file '") + FName
+
1305 "': " + EC
.message());
1307 const llvm::vfs::Status
&FileStatus
= Res
.get();
1310 [FileStatus
, this](const ResponseFileRecord
&RFile
) -> ErrorOr
<bool> {
1311 ErrorOr
<llvm::vfs::Status
> RHS
= FS
->status(RFile
.File
);
1313 return RHS
.getError();
1314 return FileStatus
.equivalent(*RHS
);
1317 // Check for recursive response files.
1318 for (const auto &F
: drop_begin(FileStack
)) {
1319 if (ErrorOr
<bool> R
= IsEquivalent(F
)) {
1321 return createStringError(
1322 R
.getError(), Twine("recursive expansion of: '") + F
.File
+ "'");
1324 return createStringError(R
.getError(),
1325 Twine("cannot open file: ") + F
.File
);
1329 // Replace this response file argument with the tokenization of its
1330 // contents. Nested response files are expanded in subsequent iterations.
1331 SmallVector
<const char *, 0> ExpandedArgv
;
1332 if (Error Err
= expandResponseFile(FName
, ExpandedArgv
))
1335 for (ResponseFileRecord
&Record
: FileStack
) {
1336 // Increase the end of all active records by the number of newly expanded
1337 // arguments, minus the response file itself.
1338 Record
.End
+= ExpandedArgv
.size() - 1;
1341 FileStack
.push_back({FName
, I
+ ExpandedArgv
.size()});
1342 Argv
.erase(Argv
.begin() + I
);
1343 Argv
.insert(Argv
.begin() + I
, ExpandedArgv
.begin(), ExpandedArgv
.end());
1346 // If successful, the top of the file stack will mark the end of the Argv
1347 // stream. A failure here indicates a bug in the stack popping logic above.
1348 // Note that FileStack may have more than one element at this point because we
1349 // don't have a chance to pop the stack when encountering recursive files at
1350 // the end of the stream, so seeing that doesn't indicate a bug.
1351 assert(FileStack
.size() > 0 && Argv
.size() == FileStack
.back().End
);
1352 return Error::success();
1355 bool cl::expandResponseFiles(int Argc
, const char *const *Argv
,
1356 const char *EnvVar
, StringSaver
&Saver
,
1357 SmallVectorImpl
<const char *> &NewArgv
) {
1359 auto Tokenize
= cl::TokenizeWindowsCommandLine
;
1361 auto Tokenize
= cl::TokenizeGNUCommandLine
;
1363 // The environment variable specifies initial options.
1365 if (std::optional
<std::string
> EnvValue
= sys::Process::GetEnv(EnvVar
))
1366 Tokenize(*EnvValue
, Saver
, NewArgv
, /*MarkEOLs=*/false);
1368 // Command line options can override the environment variable.
1369 NewArgv
.append(Argv
+ 1, Argv
+ Argc
);
1370 ExpansionContext
ECtx(Saver
.getAllocator(), Tokenize
);
1371 if (Error Err
= ECtx
.expandResponseFiles(NewArgv
)) {
1372 errs() << toString(std::move(Err
)) << '\n';
1378 bool cl::ExpandResponseFiles(StringSaver
&Saver
, TokenizerCallback Tokenizer
,
1379 SmallVectorImpl
<const char *> &Argv
) {
1380 ExpansionContext
ECtx(Saver
.getAllocator(), Tokenizer
);
1381 if (Error Err
= ECtx
.expandResponseFiles(Argv
)) {
1382 errs() << toString(std::move(Err
)) << '\n';
1388 ExpansionContext::ExpansionContext(BumpPtrAllocator
&A
, TokenizerCallback T
)
1389 : Saver(A
), Tokenizer(T
), FS(vfs::getRealFileSystem().get()) {}
1391 bool ExpansionContext::findConfigFile(StringRef FileName
,
1392 SmallVectorImpl
<char> &FilePath
) {
1393 SmallString
<128> CfgFilePath
;
1394 const auto FileExists
= [this](SmallString
<128> Path
) -> bool {
1395 auto Status
= FS
->status(Path
);
1397 Status
->getType() == llvm::sys::fs::file_type::regular_file
;
1400 // If file name contains directory separator, treat it as a path to
1401 // configuration file.
1402 if (llvm::sys::path::has_parent_path(FileName
)) {
1403 CfgFilePath
= FileName
;
1404 if (llvm::sys::path::is_relative(FileName
) && FS
->makeAbsolute(CfgFilePath
))
1406 if (!FileExists(CfgFilePath
))
1408 FilePath
.assign(CfgFilePath
.begin(), CfgFilePath
.end());
1412 // Look for the file in search directories.
1413 for (const StringRef
&Dir
: SearchDirs
) {
1416 CfgFilePath
.assign(Dir
);
1417 llvm::sys::path::append(CfgFilePath
, FileName
);
1418 llvm::sys::path::native(CfgFilePath
);
1419 if (FileExists(CfgFilePath
)) {
1420 FilePath
.assign(CfgFilePath
.begin(), CfgFilePath
.end());
1428 Error
ExpansionContext::readConfigFile(StringRef CfgFile
,
1429 SmallVectorImpl
<const char *> &Argv
) {
1430 SmallString
<128> AbsPath
;
1431 if (sys::path::is_relative(CfgFile
)) {
1432 AbsPath
.assign(CfgFile
);
1433 if (std::error_code EC
= FS
->makeAbsolute(AbsPath
))
1434 return make_error
<StringError
>(
1435 EC
, Twine("cannot get absolute path for " + CfgFile
));
1436 CfgFile
= AbsPath
.str();
1438 InConfigFile
= true;
1439 RelativeNames
= true;
1440 if (Error Err
= expandResponseFile(CfgFile
, Argv
))
1442 return expandResponseFiles(Argv
);
1445 static void initCommonOptions();
1446 bool cl::ParseCommandLineOptions(int argc
, const char *const *argv
,
1447 StringRef Overview
, raw_ostream
*Errs
,
1449 bool LongOptionsUseDoubleDash
) {
1450 initCommonOptions();
1451 SmallVector
<const char *, 20> NewArgv
;
1453 StringSaver
Saver(A
);
1454 NewArgv
.push_back(argv
[0]);
1456 // Parse options from environment variable.
1458 if (std::optional
<std::string
> EnvValue
=
1459 sys::Process::GetEnv(StringRef(EnvVar
)))
1460 TokenizeGNUCommandLine(*EnvValue
, Saver
, NewArgv
);
1463 // Append options from command line.
1464 for (int I
= 1; I
< argc
; ++I
)
1465 NewArgv
.push_back(argv
[I
]);
1466 int NewArgc
= static_cast<int>(NewArgv
.size());
1468 // Parse all options.
1469 return GlobalParser
->ParseCommandLineOptions(NewArgc
, &NewArgv
[0], Overview
,
1470 Errs
, LongOptionsUseDoubleDash
);
1473 /// Reset all options at least once, so that we can parse different options.
1474 void CommandLineParser::ResetAllOptionOccurrences() {
1475 // Reset all option values to look like they have never been seen before.
1476 // Options might be reset twice (they can be reference in both OptionsMap
1477 // and one of the other members), but that does not harm.
1478 for (auto *SC
: RegisteredSubCommands
) {
1479 for (auto &O
: SC
->OptionsMap
)
1481 for (Option
*O
: SC
->PositionalOpts
)
1483 for (Option
*O
: SC
->SinkOpts
)
1485 if (SC
->ConsumeAfterOpt
)
1486 SC
->ConsumeAfterOpt
->reset();
1490 bool CommandLineParser::ParseCommandLineOptions(int argc
,
1491 const char *const *argv
,
1494 bool LongOptionsUseDoubleDash
) {
1495 assert(hasOptions() && "No options specified!");
1497 ProgramOverview
= Overview
;
1498 bool IgnoreErrors
= Errs
;
1501 bool ErrorParsing
= false;
1503 // Expand response files.
1504 SmallVector
<const char *, 20> newArgv(argv
, argv
+ argc
);
1507 auto Tokenize
= cl::TokenizeWindowsCommandLine
;
1509 auto Tokenize
= cl::TokenizeGNUCommandLine
;
1511 ExpansionContext
ECtx(A
, Tokenize
);
1512 if (Error Err
= ECtx
.expandResponseFiles(newArgv
)) {
1513 *Errs
<< toString(std::move(Err
)) << '\n';
1517 argc
= static_cast<int>(newArgv
.size());
1519 // Copy the program name into ProgName, making sure not to overflow it.
1520 ProgramName
= std::string(sys::path::filename(StringRef(argv
[0])));
1522 // Check out the positional arguments to collect information about them.
1523 unsigned NumPositionalRequired
= 0;
1525 // Determine whether or not there are an unlimited number of positionals
1526 bool HasUnlimitedPositionals
= false;
1529 SubCommand
*ChosenSubCommand
= &SubCommand::getTopLevel();
1530 if (argc
>= 2 && argv
[FirstArg
][0] != '-') {
1531 // If the first argument specifies a valid subcommand, start processing
1532 // options from the second argument.
1533 ChosenSubCommand
= LookupSubCommand(StringRef(argv
[FirstArg
]));
1534 if (ChosenSubCommand
!= &SubCommand::getTopLevel())
1537 GlobalParser
->ActiveSubCommand
= ChosenSubCommand
;
1539 assert(ChosenSubCommand
);
1540 auto &ConsumeAfterOpt
= ChosenSubCommand
->ConsumeAfterOpt
;
1541 auto &PositionalOpts
= ChosenSubCommand
->PositionalOpts
;
1542 auto &SinkOpts
= ChosenSubCommand
->SinkOpts
;
1543 auto &OptionsMap
= ChosenSubCommand
->OptionsMap
;
1545 for (auto *O
: DefaultOptions
) {
1549 if (ConsumeAfterOpt
) {
1550 assert(PositionalOpts
.size() > 0 &&
1551 "Cannot specify cl::ConsumeAfter without a positional argument!");
1553 if (!PositionalOpts
.empty()) {
1555 // Calculate how many positional values are _required_.
1556 bool UnboundedFound
= false;
1557 for (size_t i
= 0, e
= PositionalOpts
.size(); i
!= e
; ++i
) {
1558 Option
*Opt
= PositionalOpts
[i
];
1559 if (RequiresValue(Opt
))
1560 ++NumPositionalRequired
;
1561 else if (ConsumeAfterOpt
) {
1562 // ConsumeAfter cannot be combined with "optional" positional options
1563 // unless there is only one positional argument...
1564 if (PositionalOpts
.size() > 1) {
1566 Opt
->error("error - this positional option will never be matched, "
1567 "because it does not Require a value, and a "
1568 "cl::ConsumeAfter option is active!");
1569 ErrorParsing
= true;
1571 } else if (UnboundedFound
&& !Opt
->hasArgStr()) {
1572 // This option does not "require" a value... Make sure this option is
1573 // not specified after an option that eats all extra arguments, or this
1574 // one will never get any!
1577 Opt
->error("error - option can never match, because "
1578 "another positional argument will match an "
1579 "unbounded number of values, and this option"
1580 " does not require a value!");
1581 *Errs
<< ProgramName
<< ": CommandLine Error: Option '" << Opt
->ArgStr
1582 << "' is all messed up!\n";
1583 *Errs
<< PositionalOpts
.size();
1584 ErrorParsing
= true;
1586 UnboundedFound
|= EatsUnboundedNumberOfValues(Opt
);
1588 HasUnlimitedPositionals
= UnboundedFound
|| ConsumeAfterOpt
;
1591 // PositionalVals - A vector of "positional" arguments we accumulate into
1592 // the process at the end.
1594 SmallVector
<std::pair
<StringRef
, unsigned>, 4> PositionalVals
;
1596 // If the program has named positional arguments, and the name has been run
1597 // across, keep track of which positional argument was named. Otherwise put
1598 // the positional args into the PositionalVals list...
1599 Option
*ActivePositionalArg
= nullptr;
1601 // Loop over all of the arguments... processing them.
1602 bool DashDashFound
= false; // Have we read '--'?
1603 for (int i
= FirstArg
; i
< argc
; ++i
) {
1604 Option
*Handler
= nullptr;
1605 Option
*NearestHandler
= nullptr;
1606 std::string NearestHandlerString
;
1608 StringRef ArgName
= "";
1609 bool HaveDoubleDash
= false;
1611 // Check to see if this is a positional argument. This argument is
1612 // considered to be positional if it doesn't start with '-', if it is "-"
1613 // itself, or if we have seen "--" already.
1615 if (argv
[i
][0] != '-' || argv
[i
][1] == 0 || DashDashFound
) {
1616 // Positional argument!
1617 if (ActivePositionalArg
) {
1618 ProvidePositionalOption(ActivePositionalArg
, StringRef(argv
[i
]), i
);
1619 continue; // We are done!
1622 if (!PositionalOpts
.empty()) {
1623 PositionalVals
.push_back(std::make_pair(StringRef(argv
[i
]), i
));
1625 // All of the positional arguments have been fulfulled, give the rest to
1626 // the consume after option... if it's specified...
1628 if (PositionalVals
.size() >= NumPositionalRequired
&& ConsumeAfterOpt
) {
1629 for (++i
; i
< argc
; ++i
)
1630 PositionalVals
.push_back(std::make_pair(StringRef(argv
[i
]), i
));
1631 break; // Handle outside of the argument processing loop...
1634 // Delay processing positional arguments until the end...
1637 } else if (argv
[i
][0] == '-' && argv
[i
][1] == '-' && argv
[i
][2] == 0 &&
1639 DashDashFound
= true; // This is the mythical "--"?
1640 continue; // Don't try to process it as an argument itself.
1641 } else if (ActivePositionalArg
&&
1642 (ActivePositionalArg
->getMiscFlags() & PositionalEatsArgs
)) {
1643 // If there is a positional argument eating options, check to see if this
1644 // option is another positional argument. If so, treat it as an argument,
1645 // otherwise feed it to the eating positional.
1646 ArgName
= StringRef(argv
[i
] + 1);
1648 if (!ArgName
.empty() && ArgName
[0] == '-') {
1649 HaveDoubleDash
= true;
1650 ArgName
= ArgName
.substr(1);
1653 Handler
= LookupLongOption(*ChosenSubCommand
, ArgName
, Value
,
1654 LongOptionsUseDoubleDash
, HaveDoubleDash
);
1655 if (!Handler
|| Handler
->getFormattingFlag() != cl::Positional
) {
1656 ProvidePositionalOption(ActivePositionalArg
, StringRef(argv
[i
]), i
);
1657 continue; // We are done!
1659 } else { // We start with a '-', must be an argument.
1660 ArgName
= StringRef(argv
[i
] + 1);
1662 if (!ArgName
.empty() && ArgName
[0] == '-') {
1663 HaveDoubleDash
= true;
1664 ArgName
= ArgName
.substr(1);
1667 Handler
= LookupLongOption(*ChosenSubCommand
, ArgName
, Value
,
1668 LongOptionsUseDoubleDash
, HaveDoubleDash
);
1670 // Check to see if this "option" is really a prefixed or grouped argument.
1671 if (!Handler
&& !(LongOptionsUseDoubleDash
&& HaveDoubleDash
))
1672 Handler
= HandlePrefixedOrGroupedOption(ArgName
, Value
, ErrorParsing
,
1675 // Otherwise, look for the closest available option to report to the user
1676 // in the upcoming error.
1677 if (!Handler
&& SinkOpts
.empty())
1679 LookupNearestOption(ArgName
, OptionsMap
, NearestHandlerString
);
1683 if (SinkOpts
.empty()) {
1684 *Errs
<< ProgramName
<< ": Unknown command line argument '" << argv
[i
]
1685 << "'. Try: '" << argv
[0] << " --help'\n";
1687 if (NearestHandler
) {
1688 // If we know a near match, report it as well.
1689 *Errs
<< ProgramName
<< ": Did you mean '"
1690 << PrintArg(NearestHandlerString
, 0) << "'?\n";
1693 ErrorParsing
= true;
1695 for (Option
*SinkOpt
: SinkOpts
)
1696 SinkOpt
->addOccurrence(i
, "", StringRef(argv
[i
]));
1701 // If this is a named positional argument, just remember that it is the
1703 if (Handler
->getFormattingFlag() == cl::Positional
) {
1704 if ((Handler
->getMiscFlags() & PositionalEatsArgs
) && !Value
.empty()) {
1705 Handler
->error("This argument does not take a value.\n"
1706 "\tInstead, it consumes any positional arguments until "
1707 "the next recognized option.", *Errs
);
1708 ErrorParsing
= true;
1710 ActivePositionalArg
= Handler
;
1713 ErrorParsing
|= ProvideOption(Handler
, ArgName
, Value
, argc
, argv
, i
);
1716 // Check and handle positional arguments now...
1717 if (NumPositionalRequired
> PositionalVals
.size()) {
1718 *Errs
<< ProgramName
1719 << ": Not enough positional command line arguments specified!\n"
1720 << "Must specify at least " << NumPositionalRequired
1721 << " positional argument" << (NumPositionalRequired
> 1 ? "s" : "")
1722 << ": See: " << argv
[0] << " --help\n";
1724 ErrorParsing
= true;
1725 } else if (!HasUnlimitedPositionals
&&
1726 PositionalVals
.size() > PositionalOpts
.size()) {
1727 *Errs
<< ProgramName
<< ": Too many positional arguments specified!\n"
1728 << "Can specify at most " << PositionalOpts
.size()
1729 << " positional arguments: See: " << argv
[0] << " --help\n";
1730 ErrorParsing
= true;
1732 } else if (!ConsumeAfterOpt
) {
1733 // Positional args have already been handled if ConsumeAfter is specified.
1734 unsigned ValNo
= 0, NumVals
= static_cast<unsigned>(PositionalVals
.size());
1735 for (size_t i
= 0, e
= PositionalOpts
.size(); i
!= e
; ++i
) {
1736 if (RequiresValue(PositionalOpts
[i
])) {
1737 ProvidePositionalOption(PositionalOpts
[i
], PositionalVals
[ValNo
].first
,
1738 PositionalVals
[ValNo
].second
);
1740 --NumPositionalRequired
; // We fulfilled our duty...
1743 // If we _can_ give this option more arguments, do so now, as long as we
1744 // do not give it values that others need. 'Done' controls whether the
1745 // option even _WANTS_ any more.
1747 bool Done
= PositionalOpts
[i
]->getNumOccurrencesFlag() == cl::Required
;
1748 while (NumVals
- ValNo
> NumPositionalRequired
&& !Done
) {
1749 switch (PositionalOpts
[i
]->getNumOccurrencesFlag()) {
1751 Done
= true; // Optional arguments want _at most_ one value
1753 case cl::ZeroOrMore
: // Zero or more will take all they can get...
1754 case cl::OneOrMore
: // One or more will take all they can get...
1755 ProvidePositionalOption(PositionalOpts
[i
],
1756 PositionalVals
[ValNo
].first
,
1757 PositionalVals
[ValNo
].second
);
1761 llvm_unreachable("Internal error, unexpected NumOccurrences flag in "
1762 "positional argument processing!");
1767 assert(ConsumeAfterOpt
&& NumPositionalRequired
<= PositionalVals
.size());
1769 for (size_t J
= 0, E
= PositionalOpts
.size(); J
!= E
; ++J
)
1770 if (RequiresValue(PositionalOpts
[J
])) {
1771 ErrorParsing
|= ProvidePositionalOption(PositionalOpts
[J
],
1772 PositionalVals
[ValNo
].first
,
1773 PositionalVals
[ValNo
].second
);
1777 // Handle the case where there is just one positional option, and it's
1778 // optional. In this case, we want to give JUST THE FIRST option to the
1779 // positional option and keep the rest for the consume after. The above
1780 // loop would have assigned no values to positional options in this case.
1782 if (PositionalOpts
.size() == 1 && ValNo
== 0 && !PositionalVals
.empty()) {
1783 ErrorParsing
|= ProvidePositionalOption(PositionalOpts
[0],
1784 PositionalVals
[ValNo
].first
,
1785 PositionalVals
[ValNo
].second
);
1789 // Handle over all of the rest of the arguments to the
1790 // cl::ConsumeAfter command line option...
1791 for (; ValNo
!= PositionalVals
.size(); ++ValNo
)
1793 ProvidePositionalOption(ConsumeAfterOpt
, PositionalVals
[ValNo
].first
,
1794 PositionalVals
[ValNo
].second
);
1797 // Loop over args and make sure all required args are specified!
1798 for (const auto &Opt
: OptionsMap
) {
1799 switch (Opt
.second
->getNumOccurrencesFlag()) {
1802 if (Opt
.second
->getNumOccurrences() == 0) {
1803 Opt
.second
->error("must be specified at least once!");
1804 ErrorParsing
= true;
1812 // Now that we know if -debug is specified, we can use it.
1813 // Note that if ReadResponseFiles == true, this must be done before the
1814 // memory allocated for the expanded command line is free()d below.
1815 LLVM_DEBUG(dbgs() << "Args: ";
1816 for (int i
= 0; i
< argc
; ++i
) dbgs() << argv
[i
] << ' ';
1819 // Free all of the memory allocated to the map. Command line options may only
1820 // be processed once!
1823 // If we had an error processing our arguments, don't let the program execute
1832 //===----------------------------------------------------------------------===//
1833 // Option Base class implementation
1836 bool Option::error(const Twine
&Message
, StringRef ArgName
, raw_ostream
&Errs
) {
1837 if (!ArgName
.data())
1839 if (ArgName
.empty())
1840 Errs
<< HelpStr
; // Be nice for positional arguments
1842 Errs
<< GlobalParser
->ProgramName
<< ": for the " << PrintArg(ArgName
, 0);
1844 Errs
<< " option: " << Message
<< "\n";
1848 bool Option::addOccurrence(unsigned pos
, StringRef ArgName
, StringRef Value
,
1851 NumOccurrences
++; // Increment the number of times we have been seen
1853 return handleOccurrence(pos
, ArgName
, Value
);
1856 // getValueStr - Get the value description string, using "DefaultMsg" if nothing
1857 // has been specified yet.
1859 static StringRef
getValueStr(const Option
&O
, StringRef DefaultMsg
) {
1860 if (O
.ValueStr
.empty())
1865 //===----------------------------------------------------------------------===//
1866 // cl::alias class implementation
1869 // Return the width of the option tag for printing...
1870 size_t alias::getOptionWidth() const {
1871 return argPlusPrefixesSize(ArgStr
);
1874 void Option::printHelpStr(StringRef HelpStr
, size_t Indent
,
1875 size_t FirstLineIndentedBy
) {
1876 assert(Indent
>= FirstLineIndentedBy
);
1877 std::pair
<StringRef
, StringRef
> Split
= HelpStr
.split('\n');
1878 outs().indent(Indent
- FirstLineIndentedBy
)
1879 << ArgHelpPrefix
<< Split
.first
<< "\n";
1880 while (!Split
.second
.empty()) {
1881 Split
= Split
.second
.split('\n');
1882 outs().indent(Indent
) << Split
.first
<< "\n";
1886 void Option::printEnumValHelpStr(StringRef HelpStr
, size_t BaseIndent
,
1887 size_t FirstLineIndentedBy
) {
1888 const StringRef ValHelpPrefix
= " ";
1889 assert(BaseIndent
>= FirstLineIndentedBy
);
1890 std::pair
<StringRef
, StringRef
> Split
= HelpStr
.split('\n');
1891 outs().indent(BaseIndent
- FirstLineIndentedBy
)
1892 << ArgHelpPrefix
<< ValHelpPrefix
<< Split
.first
<< "\n";
1893 while (!Split
.second
.empty()) {
1894 Split
= Split
.second
.split('\n');
1895 outs().indent(BaseIndent
+ ValHelpPrefix
.size()) << Split
.first
<< "\n";
1899 // Print out the option for the alias.
1900 void alias::printOptionInfo(size_t GlobalWidth
) const {
1901 outs() << PrintArg(ArgStr
);
1902 printHelpStr(HelpStr
, GlobalWidth
, argPlusPrefixesSize(ArgStr
));
1905 //===----------------------------------------------------------------------===//
1906 // Parser Implementation code...
1909 // basic_parser implementation
1912 // Return the width of the option tag for printing...
1913 size_t basic_parser_impl::getOptionWidth(const Option
&O
) const {
1914 size_t Len
= argPlusPrefixesSize(O
.ArgStr
);
1915 auto ValName
= getValueName();
1916 if (!ValName
.empty()) {
1917 size_t FormattingLen
= 3;
1918 if (O
.getMiscFlags() & PositionalEatsArgs
)
1920 Len
+= getValueStr(O
, ValName
).size() + FormattingLen
;
1926 // printOptionInfo - Print out information about this option. The
1927 // to-be-maintained width is specified.
1929 void basic_parser_impl::printOptionInfo(const Option
&O
,
1930 size_t GlobalWidth
) const {
1931 outs() << PrintArg(O
.ArgStr
);
1933 auto ValName
= getValueName();
1934 if (!ValName
.empty()) {
1935 if (O
.getMiscFlags() & PositionalEatsArgs
) {
1936 outs() << " <" << getValueStr(O
, ValName
) << ">...";
1937 } else if (O
.getValueExpectedFlag() == ValueOptional
)
1938 outs() << "[=<" << getValueStr(O
, ValName
) << ">]";
1940 outs() << (O
.ArgStr
.size() == 1 ? " <" : "=<") << getValueStr(O
, ValName
)
1945 Option::printHelpStr(O
.HelpStr
, GlobalWidth
, getOptionWidth(O
));
1948 void basic_parser_impl::printOptionName(const Option
&O
,
1949 size_t GlobalWidth
) const {
1950 outs() << PrintArg(O
.ArgStr
);
1951 outs().indent(GlobalWidth
- O
.ArgStr
.size());
1954 // parser<bool> implementation
1956 bool parser
<bool>::parse(Option
&O
, StringRef ArgName
, StringRef Arg
,
1958 if (Arg
== "" || Arg
== "true" || Arg
== "TRUE" || Arg
== "True" ||
1964 if (Arg
== "false" || Arg
== "FALSE" || Arg
== "False" || Arg
== "0") {
1968 return O
.error("'" + Arg
+
1969 "' is invalid value for boolean argument! Try 0 or 1");
1972 // parser<boolOrDefault> implementation
1974 bool parser
<boolOrDefault
>::parse(Option
&O
, StringRef ArgName
, StringRef Arg
,
1975 boolOrDefault
&Value
) {
1976 if (Arg
== "" || Arg
== "true" || Arg
== "TRUE" || Arg
== "True" ||
1981 if (Arg
== "false" || Arg
== "FALSE" || Arg
== "False" || Arg
== "0") {
1986 return O
.error("'" + Arg
+
1987 "' is invalid value for boolean argument! Try 0 or 1");
1990 // parser<int> implementation
1992 bool parser
<int>::parse(Option
&O
, StringRef ArgName
, StringRef Arg
,
1994 if (Arg
.getAsInteger(0, Value
))
1995 return O
.error("'" + Arg
+ "' value invalid for integer argument!");
1999 // parser<long> implementation
2001 bool parser
<long>::parse(Option
&O
, StringRef ArgName
, StringRef Arg
,
2003 if (Arg
.getAsInteger(0, Value
))
2004 return O
.error("'" + Arg
+ "' value invalid for long argument!");
2008 // parser<long long> implementation
2010 bool parser
<long long>::parse(Option
&O
, StringRef ArgName
, StringRef Arg
,
2012 if (Arg
.getAsInteger(0, Value
))
2013 return O
.error("'" + Arg
+ "' value invalid for llong argument!");
2017 // parser<unsigned> implementation
2019 bool parser
<unsigned>::parse(Option
&O
, StringRef ArgName
, StringRef Arg
,
2022 if (Arg
.getAsInteger(0, Value
))
2023 return O
.error("'" + Arg
+ "' value invalid for uint argument!");
2027 // parser<unsigned long> implementation
2029 bool parser
<unsigned long>::parse(Option
&O
, StringRef ArgName
, StringRef Arg
,
2030 unsigned long &Value
) {
2032 if (Arg
.getAsInteger(0, Value
))
2033 return O
.error("'" + Arg
+ "' value invalid for ulong argument!");
2037 // parser<unsigned long long> implementation
2039 bool parser
<unsigned long long>::parse(Option
&O
, StringRef ArgName
,
2041 unsigned long long &Value
) {
2043 if (Arg
.getAsInteger(0, Value
))
2044 return O
.error("'" + Arg
+ "' value invalid for ullong argument!");
2048 // parser<double>/parser<float> implementation
2050 static bool parseDouble(Option
&O
, StringRef Arg
, double &Value
) {
2051 if (to_float(Arg
, Value
))
2053 return O
.error("'" + Arg
+ "' value invalid for floating point argument!");
2056 bool parser
<double>::parse(Option
&O
, StringRef ArgName
, StringRef Arg
,
2058 return parseDouble(O
, Arg
, Val
);
2061 bool parser
<float>::parse(Option
&O
, StringRef ArgName
, StringRef Arg
,
2064 if (parseDouble(O
, Arg
, dVal
))
2070 // generic_parser_base implementation
2073 // findOption - Return the option number corresponding to the specified
2074 // argument string. If the option is not found, getNumOptions() is returned.
2076 unsigned generic_parser_base::findOption(StringRef Name
) {
2077 unsigned e
= getNumOptions();
2079 for (unsigned i
= 0; i
!= e
; ++i
) {
2080 if (getOption(i
) == Name
)
2086 static StringRef EqValue
= "=<value>";
2087 static StringRef EmptyOption
= "<empty>";
2088 static StringRef OptionPrefix
= " =";
2089 static size_t getOptionPrefixesSize() {
2090 return OptionPrefix
.size() + ArgHelpPrefix
.size();
2093 static bool shouldPrintOption(StringRef Name
, StringRef Description
,
2095 return O
.getValueExpectedFlag() != ValueOptional
|| !Name
.empty() ||
2096 !Description
.empty();
2099 // Return the width of the option tag for printing...
2100 size_t generic_parser_base::getOptionWidth(const Option
&O
) const {
2101 if (O
.hasArgStr()) {
2103 argPlusPrefixesSize(O
.ArgStr
) + EqValue
.size();
2104 for (unsigned i
= 0, e
= getNumOptions(); i
!= e
; ++i
) {
2105 StringRef Name
= getOption(i
);
2106 if (!shouldPrintOption(Name
, getDescription(i
), O
))
2108 size_t NameSize
= Name
.empty() ? EmptyOption
.size() : Name
.size();
2109 Size
= std::max(Size
, NameSize
+ getOptionPrefixesSize());
2113 size_t BaseSize
= 0;
2114 for (unsigned i
= 0, e
= getNumOptions(); i
!= e
; ++i
)
2115 BaseSize
= std::max(BaseSize
, getOption(i
).size() + 8);
2120 // printOptionInfo - Print out information about this option. The
2121 // to-be-maintained width is specified.
2123 void generic_parser_base::printOptionInfo(const Option
&O
,
2124 size_t GlobalWidth
) const {
2125 if (O
.hasArgStr()) {
2126 // When the value is optional, first print a line just describing the
2127 // option without values.
2128 if (O
.getValueExpectedFlag() == ValueOptional
) {
2129 for (unsigned i
= 0, e
= getNumOptions(); i
!= e
; ++i
) {
2130 if (getOption(i
).empty()) {
2131 outs() << PrintArg(O
.ArgStr
);
2132 Option::printHelpStr(O
.HelpStr
, GlobalWidth
,
2133 argPlusPrefixesSize(O
.ArgStr
));
2139 outs() << PrintArg(O
.ArgStr
) << EqValue
;
2140 Option::printHelpStr(O
.HelpStr
, GlobalWidth
,
2142 argPlusPrefixesSize(O
.ArgStr
));
2143 for (unsigned i
= 0, e
= getNumOptions(); i
!= e
; ++i
) {
2144 StringRef OptionName
= getOption(i
);
2145 StringRef Description
= getDescription(i
);
2146 if (!shouldPrintOption(OptionName
, Description
, O
))
2148 size_t FirstLineIndent
= OptionName
.size() + getOptionPrefixesSize();
2149 outs() << OptionPrefix
<< OptionName
;
2150 if (OptionName
.empty()) {
2151 outs() << EmptyOption
;
2152 assert(FirstLineIndent
>= EmptyOption
.size());
2153 FirstLineIndent
+= EmptyOption
.size();
2155 if (!Description
.empty())
2156 Option::printEnumValHelpStr(Description
, GlobalWidth
, FirstLineIndent
);
2161 if (!O
.HelpStr
.empty())
2162 outs() << " " << O
.HelpStr
<< '\n';
2163 for (unsigned i
= 0, e
= getNumOptions(); i
!= e
; ++i
) {
2164 StringRef Option
= getOption(i
);
2165 outs() << " " << PrintArg(Option
);
2166 Option::printHelpStr(getDescription(i
), GlobalWidth
, Option
.size() + 8);
2171 static const size_t MaxOptWidth
= 8; // arbitrary spacing for printOptionDiff
2173 // printGenericOptionDiff - Print the value of this option and it's default.
2175 // "Generic" options have each value mapped to a name.
2176 void generic_parser_base::printGenericOptionDiff(
2177 const Option
&O
, const GenericOptionValue
&Value
,
2178 const GenericOptionValue
&Default
, size_t GlobalWidth
) const {
2179 outs() << " " << PrintArg(O
.ArgStr
);
2180 outs().indent(GlobalWidth
- O
.ArgStr
.size());
2182 unsigned NumOpts
= getNumOptions();
2183 for (unsigned i
= 0; i
!= NumOpts
; ++i
) {
2184 if (!Value
.compare(getOptionValue(i
)))
2187 outs() << "= " << getOption(i
);
2188 size_t L
= getOption(i
).size();
2189 size_t NumSpaces
= MaxOptWidth
> L
? MaxOptWidth
- L
: 0;
2190 outs().indent(NumSpaces
) << " (default: ";
2191 for (unsigned j
= 0; j
!= NumOpts
; ++j
) {
2192 if (!Default
.compare(getOptionValue(j
)))
2194 outs() << getOption(j
);
2200 outs() << "= *unknown option value*\n";
2203 // printOptionDiff - Specializations for printing basic value types.
2205 #define PRINT_OPT_DIFF(T) \
2206 void parser<T>::printOptionDiff(const Option &O, T V, OptionValue<T> D, \
2207 size_t GlobalWidth) const { \
2208 printOptionName(O, GlobalWidth); \
2211 raw_string_ostream SS(Str); \
2214 outs() << "= " << Str; \
2215 size_t NumSpaces = \
2216 MaxOptWidth > Str.size() ? MaxOptWidth - Str.size() : 0; \
2217 outs().indent(NumSpaces) << " (default: "; \
2219 outs() << D.getValue(); \
2221 outs() << "*no default*"; \
2225 PRINT_OPT_DIFF(bool)
2226 PRINT_OPT_DIFF(boolOrDefault
)
2228 PRINT_OPT_DIFF(long)
2229 PRINT_OPT_DIFF(long long)
2230 PRINT_OPT_DIFF(unsigned)
2231 PRINT_OPT_DIFF(unsigned long)
2232 PRINT_OPT_DIFF(unsigned long long)
2233 PRINT_OPT_DIFF(double)
2234 PRINT_OPT_DIFF(float)
2235 PRINT_OPT_DIFF(char)
2237 void parser
<std::string
>::printOptionDiff(const Option
&O
, StringRef V
,
2238 const OptionValue
<std::string
> &D
,
2239 size_t GlobalWidth
) const {
2240 printOptionName(O
, GlobalWidth
);
2241 outs() << "= " << V
;
2242 size_t NumSpaces
= MaxOptWidth
> V
.size() ? MaxOptWidth
- V
.size() : 0;
2243 outs().indent(NumSpaces
) << " (default: ";
2245 outs() << D
.getValue();
2247 outs() << "*no default*";
2251 // Print a placeholder for options that don't yet support printOptionDiff().
2252 void basic_parser_impl::printOptionNoValue(const Option
&O
,
2253 size_t GlobalWidth
) const {
2254 printOptionName(O
, GlobalWidth
);
2255 outs() << "= *cannot print option value*\n";
2258 //===----------------------------------------------------------------------===//
2259 // -help and -help-hidden option implementation
2262 static int OptNameCompare(const std::pair
<const char *, Option
*> *LHS
,
2263 const std::pair
<const char *, Option
*> *RHS
) {
2264 return strcmp(LHS
->first
, RHS
->first
);
2267 static int SubNameCompare(const std::pair
<const char *, SubCommand
*> *LHS
,
2268 const std::pair
<const char *, SubCommand
*> *RHS
) {
2269 return strcmp(LHS
->first
, RHS
->first
);
2272 // Copy Options into a vector so we can sort them as we like.
2273 static void sortOpts(StringMap
<Option
*> &OptMap
,
2274 SmallVectorImpl
<std::pair
<const char *, Option
*>> &Opts
,
2276 SmallPtrSet
<Option
*, 32> OptionSet
; // Duplicate option detection.
2278 for (StringMap
<Option
*>::iterator I
= OptMap
.begin(), E
= OptMap
.end();
2280 // Ignore really-hidden options.
2281 if (I
->second
->getOptionHiddenFlag() == ReallyHidden
)
2284 // Unless showhidden is set, ignore hidden flags.
2285 if (I
->second
->getOptionHiddenFlag() == Hidden
&& !ShowHidden
)
2288 // If we've already seen this option, don't add it to the list again.
2289 if (!OptionSet
.insert(I
->second
).second
)
2293 std::pair
<const char *, Option
*>(I
->getKey().data(), I
->second
));
2296 // Sort the options list alphabetically.
2297 array_pod_sort(Opts
.begin(), Opts
.end(), OptNameCompare
);
2301 sortSubCommands(const SmallPtrSetImpl
<SubCommand
*> &SubMap
,
2302 SmallVectorImpl
<std::pair
<const char *, SubCommand
*>> &Subs
) {
2303 for (auto *S
: SubMap
) {
2304 if (S
->getName().empty())
2306 Subs
.push_back(std::make_pair(S
->getName().data(), S
));
2308 array_pod_sort(Subs
.begin(), Subs
.end(), SubNameCompare
);
2315 const bool ShowHidden
;
2316 typedef SmallVector
<std::pair
<const char *, Option
*>, 128>
2317 StrOptionPairVector
;
2318 typedef SmallVector
<std::pair
<const char *, SubCommand
*>, 128>
2319 StrSubCommandPairVector
;
2320 // Print the options. Opts is assumed to be alphabetically sorted.
2321 virtual void printOptions(StrOptionPairVector
&Opts
, size_t MaxArgLen
) {
2322 for (size_t i
= 0, e
= Opts
.size(); i
!= e
; ++i
)
2323 Opts
[i
].second
->printOptionInfo(MaxArgLen
);
2326 void printSubCommands(StrSubCommandPairVector
&Subs
, size_t MaxSubLen
) {
2327 for (const auto &S
: Subs
) {
2328 outs() << " " << S
.first
;
2329 if (!S
.second
->getDescription().empty()) {
2330 outs().indent(MaxSubLen
- strlen(S
.first
));
2331 outs() << " - " << S
.second
->getDescription();
2338 explicit HelpPrinter(bool showHidden
) : ShowHidden(showHidden
) {}
2339 virtual ~HelpPrinter() = default;
2341 // Invoke the printer.
2342 void operator=(bool Value
) {
2347 // Halt the program since help information was printed
2352 SubCommand
*Sub
= GlobalParser
->getActiveSubCommand();
2353 auto &OptionsMap
= Sub
->OptionsMap
;
2354 auto &PositionalOpts
= Sub
->PositionalOpts
;
2355 auto &ConsumeAfterOpt
= Sub
->ConsumeAfterOpt
;
2357 StrOptionPairVector Opts
;
2358 sortOpts(OptionsMap
, Opts
, ShowHidden
);
2360 StrSubCommandPairVector Subs
;
2361 sortSubCommands(GlobalParser
->RegisteredSubCommands
, Subs
);
2363 if (!GlobalParser
->ProgramOverview
.empty())
2364 outs() << "OVERVIEW: " << GlobalParser
->ProgramOverview
<< "\n";
2366 if (Sub
== &SubCommand::getTopLevel()) {
2367 outs() << "USAGE: " << GlobalParser
->ProgramName
;
2368 if (Subs
.size() > 2)
2369 outs() << " [subcommand]";
2370 outs() << " [options]";
2372 if (!Sub
->getDescription().empty()) {
2373 outs() << "SUBCOMMAND '" << Sub
->getName()
2374 << "': " << Sub
->getDescription() << "\n\n";
2376 outs() << "USAGE: " << GlobalParser
->ProgramName
<< " " << Sub
->getName()
2380 for (auto *Opt
: PositionalOpts
) {
2381 if (Opt
->hasArgStr())
2382 outs() << " --" << Opt
->ArgStr
;
2383 outs() << " " << Opt
->HelpStr
;
2386 // Print the consume after option info if it exists...
2387 if (ConsumeAfterOpt
)
2388 outs() << " " << ConsumeAfterOpt
->HelpStr
;
2390 if (Sub
== &SubCommand::getTopLevel() && !Subs
.empty()) {
2391 // Compute the maximum subcommand length...
2392 size_t MaxSubLen
= 0;
2393 for (size_t i
= 0, e
= Subs
.size(); i
!= e
; ++i
)
2394 MaxSubLen
= std::max(MaxSubLen
, strlen(Subs
[i
].first
));
2397 outs() << "SUBCOMMANDS:\n\n";
2398 printSubCommands(Subs
, MaxSubLen
);
2400 outs() << " Type \"" << GlobalParser
->ProgramName
2401 << " <subcommand> --help\" to get more help on a specific "
2407 // Compute the maximum argument length...
2408 size_t MaxArgLen
= 0;
2409 for (size_t i
= 0, e
= Opts
.size(); i
!= e
; ++i
)
2410 MaxArgLen
= std::max(MaxArgLen
, Opts
[i
].second
->getOptionWidth());
2412 outs() << "OPTIONS:\n";
2413 printOptions(Opts
, MaxArgLen
);
2415 // Print any extra help the user has declared.
2416 for (const auto &I
: GlobalParser
->MoreHelp
)
2418 GlobalParser
->MoreHelp
.clear();
2422 class CategorizedHelpPrinter
: public HelpPrinter
{
2424 explicit CategorizedHelpPrinter(bool showHidden
) : HelpPrinter(showHidden
) {}
2426 // Helper function for printOptions().
2427 // It shall return a negative value if A's name should be lexicographically
2428 // ordered before B's name. It returns a value greater than zero if B's name
2429 // should be ordered before A's name, and it returns 0 otherwise.
2430 static int OptionCategoryCompare(OptionCategory
*const *A
,
2431 OptionCategory
*const *B
) {
2432 return (*A
)->getName().compare((*B
)->getName());
2435 // Make sure we inherit our base class's operator=()
2436 using HelpPrinter::operator=;
2439 void printOptions(StrOptionPairVector
&Opts
, size_t MaxArgLen
) override
{
2440 std::vector
<OptionCategory
*> SortedCategories
;
2441 DenseMap
<OptionCategory
*, std::vector
<Option
*>> CategorizedOptions
;
2443 // Collect registered option categories into vector in preparation for
2445 for (OptionCategory
*Category
: GlobalParser
->RegisteredOptionCategories
)
2446 SortedCategories
.push_back(Category
);
2448 // Sort the different option categories alphabetically.
2449 assert(SortedCategories
.size() > 0 && "No option categories registered!");
2450 array_pod_sort(SortedCategories
.begin(), SortedCategories
.end(),
2451 OptionCategoryCompare
);
2453 // Walk through pre-sorted options and assign into categories.
2454 // Because the options are already alphabetically sorted the
2455 // options within categories will also be alphabetically sorted.
2456 for (size_t I
= 0, E
= Opts
.size(); I
!= E
; ++I
) {
2457 Option
*Opt
= Opts
[I
].second
;
2458 for (auto &Cat
: Opt
->Categories
) {
2459 assert(llvm::is_contained(SortedCategories
, Cat
) &&
2460 "Option has an unregistered category");
2461 CategorizedOptions
[Cat
].push_back(Opt
);
2466 for (OptionCategory
*Category
: SortedCategories
) {
2467 // Hide empty categories for --help, but show for --help-hidden.
2468 const auto &CategoryOptions
= CategorizedOptions
[Category
];
2469 bool IsEmptyCategory
= CategoryOptions
.empty();
2470 if (!ShowHidden
&& IsEmptyCategory
)
2473 // Print category information.
2475 outs() << Category
->getName() << ":\n";
2477 // Check if description is set.
2478 if (!Category
->getDescription().empty())
2479 outs() << Category
->getDescription() << "\n\n";
2483 // When using --help-hidden explicitly state if the category has no
2484 // options associated with it.
2485 if (IsEmptyCategory
) {
2486 outs() << " This option category has no options.\n";
2489 // Loop over the options in the category and print.
2490 for (const Option
*Opt
: CategoryOptions
)
2491 Opt
->printOptionInfo(MaxArgLen
);
2496 // This wraps the Uncategorizing and Categorizing printers and decides
2497 // at run time which should be invoked.
2498 class HelpPrinterWrapper
{
2500 HelpPrinter
&UncategorizedPrinter
;
2501 CategorizedHelpPrinter
&CategorizedPrinter
;
2504 explicit HelpPrinterWrapper(HelpPrinter
&UncategorizedPrinter
,
2505 CategorizedHelpPrinter
&CategorizedPrinter
)
2506 : UncategorizedPrinter(UncategorizedPrinter
),
2507 CategorizedPrinter(CategorizedPrinter
) {}
2509 // Invoke the printer.
2510 void operator=(bool Value
);
2513 } // End anonymous namespace
2515 #if defined(__GNUC__)
2516 // GCC and GCC-compatible compilers define __OPTIMIZE__ when optimizations are
2518 # if defined(__OPTIMIZE__)
2519 # define LLVM_IS_DEBUG_BUILD 0
2521 # define LLVM_IS_DEBUG_BUILD 1
2523 #elif defined(_MSC_VER)
2524 // MSVC doesn't have a predefined macro indicating if optimizations are enabled.
2525 // Use _DEBUG instead. This macro actually corresponds to the choice between
2526 // debug and release CRTs, but it is a reasonable proxy.
2527 # if defined(_DEBUG)
2528 # define LLVM_IS_DEBUG_BUILD 1
2530 # define LLVM_IS_DEBUG_BUILD 0
2533 // Otherwise, for an unknown compiler, assume this is an optimized build.
2534 # define LLVM_IS_DEBUG_BUILD 0
2538 class VersionPrinter
{
2540 void print(std::vector
<VersionPrinterTy
> ExtraPrinters
= {}) {
2541 raw_ostream
&OS
= outs();
2542 #ifdef PACKAGE_VENDOR
2543 OS
<< PACKAGE_VENDOR
<< " ";
2545 OS
<< "LLVM (http://llvm.org/):\n ";
2547 OS
<< PACKAGE_NAME
<< " version " << PACKAGE_VERSION
<< "\n ";
2548 #if LLVM_IS_DEBUG_BUILD
2549 OS
<< "DEBUG build";
2551 OS
<< "Optimized build";
2554 OS
<< " with assertions";
2558 // Iterate over any registered extra printers and call them to add further
2560 if (!ExtraPrinters
.empty()) {
2561 for (const auto &I
: ExtraPrinters
)
2565 void operator=(bool OptionWasSpecified
);
2568 struct CommandLineCommonOptions
{
2569 // Declare the four HelpPrinter instances that are used to print out help, or
2570 // help-hidden as an uncategorized list or in categories.
2571 HelpPrinter UncategorizedNormalPrinter
{false};
2572 HelpPrinter UncategorizedHiddenPrinter
{true};
2573 CategorizedHelpPrinter CategorizedNormalPrinter
{false};
2574 CategorizedHelpPrinter CategorizedHiddenPrinter
{true};
2575 // Declare HelpPrinter wrappers that will decide whether or not to invoke
2576 // a categorizing help printer
2577 HelpPrinterWrapper WrappedNormalPrinter
{UncategorizedNormalPrinter
,
2578 CategorizedNormalPrinter
};
2579 HelpPrinterWrapper WrappedHiddenPrinter
{UncategorizedHiddenPrinter
,
2580 CategorizedHiddenPrinter
};
2581 // Define a category for generic options that all tools should have.
2582 cl::OptionCategory GenericCategory
{"Generic Options"};
2584 // Define uncategorized help printers.
2585 // --help-list is hidden by default because if Option categories are being
2586 // used then --help behaves the same as --help-list.
2587 cl::opt
<HelpPrinter
, true, parser
<bool>> HLOp
{
2590 "Display list of available options (--help-list-hidden for more)"),
2591 cl::location(UncategorizedNormalPrinter
),
2593 cl::ValueDisallowed
,
2594 cl::cat(GenericCategory
),
2595 cl::sub(SubCommand::getAll())};
2597 cl::opt
<HelpPrinter
, true, parser
<bool>> HLHOp
{
2599 cl::desc("Display list of all available options"),
2600 cl::location(UncategorizedHiddenPrinter
),
2602 cl::ValueDisallowed
,
2603 cl::cat(GenericCategory
),
2604 cl::sub(SubCommand::getAll())};
2606 // Define uncategorized/categorized help printers. These printers change their
2607 // behaviour at runtime depending on whether one or more Option categories
2608 // have been declared.
2609 cl::opt
<HelpPrinterWrapper
, true, parser
<bool>> HOp
{
2611 cl::desc("Display available options (--help-hidden for more)"),
2612 cl::location(WrappedNormalPrinter
),
2613 cl::ValueDisallowed
,
2614 cl::cat(GenericCategory
),
2615 cl::sub(SubCommand::getAll())};
2617 cl::alias HOpA
{"h", cl::desc("Alias for --help"), cl::aliasopt(HOp
),
2620 cl::opt
<HelpPrinterWrapper
, true, parser
<bool>> HHOp
{
2622 cl::desc("Display all available options"),
2623 cl::location(WrappedHiddenPrinter
),
2625 cl::ValueDisallowed
,
2626 cl::cat(GenericCategory
),
2627 cl::sub(SubCommand::getAll())};
2629 cl::opt
<bool> PrintOptions
{
2631 cl::desc("Print non-default options after command line parsing"),
2634 cl::cat(GenericCategory
),
2635 cl::sub(SubCommand::getAll())};
2637 cl::opt
<bool> PrintAllOptions
{
2638 "print-all-options",
2639 cl::desc("Print all option values after command line parsing"),
2642 cl::cat(GenericCategory
),
2643 cl::sub(SubCommand::getAll())};
2645 VersionPrinterTy OverrideVersionPrinter
= nullptr;
2647 std::vector
<VersionPrinterTy
> ExtraVersionPrinters
;
2649 // Define the --version option that prints out the LLVM version for the tool
2650 VersionPrinter VersionPrinterInstance
;
2652 cl::opt
<VersionPrinter
, true, parser
<bool>> VersOp
{
2653 "version", cl::desc("Display the version of this program"),
2654 cl::location(VersionPrinterInstance
), cl::ValueDisallowed
,
2655 cl::cat(GenericCategory
)};
2657 } // End anonymous namespace
2659 // Lazy-initialized global instance of options controlling the command-line
2660 // parser and general handling.
2661 static ManagedStatic
<CommandLineCommonOptions
> CommonOptions
;
2663 static void initCommonOptions() {
2665 initDebugCounterOptions();
2666 initGraphWriterOptions();
2667 initSignalsOptions();
2668 initStatisticOptions();
2670 initTypeSizeOptions();
2671 initWithColorOptions();
2673 initRandomSeedOptions();
2676 OptionCategory
&cl::getGeneralCategory() {
2677 // Initialise the general option category.
2678 static OptionCategory GeneralCategory
{"General options"};
2679 return GeneralCategory
;
2682 void VersionPrinter::operator=(bool OptionWasSpecified
) {
2683 if (!OptionWasSpecified
)
2686 if (CommonOptions
->OverrideVersionPrinter
!= nullptr) {
2687 CommonOptions
->OverrideVersionPrinter(outs());
2690 print(CommonOptions
->ExtraVersionPrinters
);
2695 void HelpPrinterWrapper::operator=(bool Value
) {
2699 // Decide which printer to invoke. If more than one option category is
2700 // registered then it is useful to show the categorized help instead of
2701 // uncategorized help.
2702 if (GlobalParser
->RegisteredOptionCategories
.size() > 1) {
2703 // unhide --help-list option so user can have uncategorized output if they
2705 CommonOptions
->HLOp
.setHiddenFlag(NotHidden
);
2707 CategorizedPrinter
= true; // Invoke categorized printer
2709 UncategorizedPrinter
= true; // Invoke uncategorized printer
2712 // Print the value of each option.
2713 void cl::PrintOptionValues() { GlobalParser
->printOptionValues(); }
2715 void CommandLineParser::printOptionValues() {
2716 if (!CommonOptions
->PrintOptions
&& !CommonOptions
->PrintAllOptions
)
2719 SmallVector
<std::pair
<const char *, Option
*>, 128> Opts
;
2720 sortOpts(ActiveSubCommand
->OptionsMap
, Opts
, /*ShowHidden*/ true);
2722 // Compute the maximum argument length...
2723 size_t MaxArgLen
= 0;
2724 for (size_t i
= 0, e
= Opts
.size(); i
!= e
; ++i
)
2725 MaxArgLen
= std::max(MaxArgLen
, Opts
[i
].second
->getOptionWidth());
2727 for (size_t i
= 0, e
= Opts
.size(); i
!= e
; ++i
)
2728 Opts
[i
].second
->printOptionValue(MaxArgLen
, CommonOptions
->PrintAllOptions
);
2731 // Utility function for printing the help message.
2732 void cl::PrintHelpMessage(bool Hidden
, bool Categorized
) {
2733 if (!Hidden
&& !Categorized
)
2734 CommonOptions
->UncategorizedNormalPrinter
.printHelp();
2735 else if (!Hidden
&& Categorized
)
2736 CommonOptions
->CategorizedNormalPrinter
.printHelp();
2737 else if (Hidden
&& !Categorized
)
2738 CommonOptions
->UncategorizedHiddenPrinter
.printHelp();
2740 CommonOptions
->CategorizedHiddenPrinter
.printHelp();
2743 /// Utility function for printing version number.
2744 void cl::PrintVersionMessage() {
2745 CommonOptions
->VersionPrinterInstance
.print(CommonOptions
->ExtraVersionPrinters
);
2748 void cl::SetVersionPrinter(VersionPrinterTy func
) {
2749 CommonOptions
->OverrideVersionPrinter
= func
;
2752 void cl::AddExtraVersionPrinter(VersionPrinterTy func
) {
2753 CommonOptions
->ExtraVersionPrinters
.push_back(func
);
2756 StringMap
<Option
*> &cl::getRegisteredOptions(SubCommand
&Sub
) {
2757 initCommonOptions();
2758 auto &Subs
= GlobalParser
->RegisteredSubCommands
;
2760 assert(Subs
.contains(&Sub
));
2761 return Sub
.OptionsMap
;
2764 iterator_range
<typename SmallPtrSet
<SubCommand
*, 4>::iterator
>
2765 cl::getRegisteredSubcommands() {
2766 return GlobalParser
->getRegisteredSubcommands();
2769 void cl::HideUnrelatedOptions(cl::OptionCategory
&Category
, SubCommand
&Sub
) {
2770 initCommonOptions();
2771 for (auto &I
: Sub
.OptionsMap
) {
2772 bool Unrelated
= true;
2773 for (auto &Cat
: I
.second
->Categories
) {
2774 if (Cat
== &Category
|| Cat
== &CommonOptions
->GenericCategory
)
2778 I
.second
->setHiddenFlag(cl::ReallyHidden
);
2782 void cl::HideUnrelatedOptions(ArrayRef
<const cl::OptionCategory
*> Categories
,
2784 initCommonOptions();
2785 for (auto &I
: Sub
.OptionsMap
) {
2786 bool Unrelated
= true;
2787 for (auto &Cat
: I
.second
->Categories
) {
2788 if (is_contained(Categories
, Cat
) ||
2789 Cat
== &CommonOptions
->GenericCategory
)
2793 I
.second
->setHiddenFlag(cl::ReallyHidden
);
2797 void cl::ResetCommandLineParser() { GlobalParser
->reset(); }
2798 void cl::ResetAllOptionOccurrences() {
2799 GlobalParser
->ResetAllOptionOccurrences();
2802 void LLVMParseCommandLineOptions(int argc
, const char *const *argv
,
2803 const char *Overview
) {
2804 llvm::cl::ParseCommandLineOptions(argc
, argv
, StringRef(Overview
),