Remove some calls to std::move.
[oota-llvm.git] / lib / Support / CommandLine.cpp
1 //===-- CommandLine.cpp - Command line parser implementation --------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This class implements a command line argument processor that is useful when
11 // creating a tool.  It provides a simple, minimalistic interface that is easily
12 // extensible and supports nonlocal (library) command line options.
13 //
14 // Note that rather than trying to figure out what this code does, you could try
15 // reading the library documentation located in docs/CommandLine.html
16 //
17 //===----------------------------------------------------------------------===//
18
19 #include "llvm/Support/CommandLine.h"
20 #include "llvm/ADT/ArrayRef.h"
21 #include "llvm/ADT/SmallPtrSet.h"
22 #include "llvm/ADT/SmallString.h"
23 #include "llvm/ADT/StringMap.h"
24 #include "llvm/ADT/Twine.h"
25 #include "llvm/Config/config.h"
26 #include "llvm/Support/ConvertUTF.h"
27 #include "llvm/Support/Debug.h"
28 #include "llvm/Support/ErrorHandling.h"
29 #include "llvm/Support/Host.h"
30 #include "llvm/Support/ManagedStatic.h"
31 #include "llvm/Support/MemoryBuffer.h"
32 #include "llvm/Support/Path.h"
33 #include "llvm/Support/raw_ostream.h"
34 #include <cerrno>
35 #include <cstdlib>
36 #include <map>
37 #include <system_error>
38 using namespace llvm;
39 using namespace cl;
40
41 #define DEBUG_TYPE "commandline"
42
43 //===----------------------------------------------------------------------===//
44 // Template instantiations and anchors.
45 //
46 namespace llvm { namespace cl {
47 TEMPLATE_INSTANTIATION(class basic_parser<bool>);
48 TEMPLATE_INSTANTIATION(class basic_parser<boolOrDefault>);
49 TEMPLATE_INSTANTIATION(class basic_parser<int>);
50 TEMPLATE_INSTANTIATION(class basic_parser<unsigned>);
51 TEMPLATE_INSTANTIATION(class basic_parser<unsigned long long>);
52 TEMPLATE_INSTANTIATION(class basic_parser<double>);
53 TEMPLATE_INSTANTIATION(class basic_parser<float>);
54 TEMPLATE_INSTANTIATION(class basic_parser<std::string>);
55 TEMPLATE_INSTANTIATION(class basic_parser<char>);
56
57 TEMPLATE_INSTANTIATION(class opt<unsigned>);
58 TEMPLATE_INSTANTIATION(class opt<int>);
59 TEMPLATE_INSTANTIATION(class opt<std::string>);
60 TEMPLATE_INSTANTIATION(class opt<char>);
61 TEMPLATE_INSTANTIATION(class opt<bool>);
62 } } // end namespace llvm::cl
63
64 // Pin the vtables to this file.
65 void GenericOptionValue::anchor() {}
66 void OptionValue<boolOrDefault>::anchor() {}
67 void OptionValue<std::string>::anchor() {}
68 void Option::anchor() {}
69 void basic_parser_impl::anchor() {}
70 void parser<bool>::anchor() {}
71 void parser<boolOrDefault>::anchor() {}
72 void parser<int>::anchor() {}
73 void parser<unsigned>::anchor() {}
74 void parser<unsigned long long>::anchor() {}
75 void parser<double>::anchor() {}
76 void parser<float>::anchor() {}
77 void parser<std::string>::anchor() {}
78 void parser<char>::anchor() {}
79 void StringSaver::anchor() {}
80
81 //===----------------------------------------------------------------------===//
82
83 // Globals for name and overview of program.  Program name is not a string to
84 // avoid static ctor/dtor issues.
85 static char ProgramName[80] = "<premain>";
86 static const char *ProgramOverview = nullptr;
87
88 // This collects additional help to be printed.
89 static ManagedStatic<std::vector<const char*> > MoreHelp;
90
91 extrahelp::extrahelp(const char *Help)
92   : morehelp(Help) {
93   MoreHelp->push_back(Help);
94 }
95
96 static bool OptionListChanged = false;
97
98 // MarkOptionsChanged - Internal helper function.
99 void cl::MarkOptionsChanged() {
100   OptionListChanged = true;
101 }
102
103 /// RegisteredOptionList - This is the list of the command line options that
104 /// have statically constructed themselves.
105 static Option *RegisteredOptionList = nullptr;
106
107 void Option::addArgument() {
108   assert(!NextRegistered && "argument multiply registered!");
109
110   NextRegistered = RegisteredOptionList;
111   RegisteredOptionList = this;
112   MarkOptionsChanged();
113 }
114
115 void Option::removeArgument() {
116   assert(NextRegistered && "argument never registered");
117   assert(RegisteredOptionList == this && "argument is not the last registered");
118   RegisteredOptionList = NextRegistered;
119   MarkOptionsChanged();
120 }
121
122 // This collects the different option categories that have been registered.
123 typedef SmallPtrSet<OptionCategory*,16> OptionCatSet;
124 static ManagedStatic<OptionCatSet> RegisteredOptionCategories;
125
126 // Initialise the general option category.
127 OptionCategory llvm::cl::GeneralCategory("General options");
128
129 void OptionCategory::registerCategory() {
130   assert(std::count_if(RegisteredOptionCategories->begin(),
131                        RegisteredOptionCategories->end(),
132                        [this](const OptionCategory *Category) {
133                          return getName() == Category->getName();
134                        }) == 0 && "Duplicate option categories");
135
136   RegisteredOptionCategories->insert(this);
137 }
138
139 //===----------------------------------------------------------------------===//
140 // Basic, shared command line option processing machinery.
141 //
142
143 /// GetOptionInfo - Scan the list of registered options, turning them into data
144 /// structures that are easier to handle.
145 static void GetOptionInfo(SmallVectorImpl<Option*> &PositionalOpts,
146                           SmallVectorImpl<Option*> &SinkOpts,
147                           StringMap<Option*> &OptionsMap) {
148   bool HadErrors = false;
149   SmallVector<const char*, 16> OptionNames;
150   Option *CAOpt = nullptr;  // The ConsumeAfter option if it exists.
151   for (Option *O = RegisteredOptionList; O; O = O->getNextRegisteredOption()) {
152     // If this option wants to handle multiple option names, get the full set.
153     // This handles enum options like "-O1 -O2" etc.
154     O->getExtraOptionNames(OptionNames);
155     if (O->ArgStr[0])
156       OptionNames.push_back(O->ArgStr);
157
158     // Handle named options.
159     for (size_t i = 0, e = OptionNames.size(); i != e; ++i) {
160       // Add argument to the argument map!
161       if (OptionsMap.GetOrCreateValue(OptionNames[i], O).second != O) {
162         errs() << ProgramName << ": CommandLine Error: Option '"
163                << OptionNames[i] << "' registered more than once!\n";
164         HadErrors = true;
165       }
166     }
167
168     OptionNames.clear();
169
170     // Remember information about positional options.
171     if (O->getFormattingFlag() == cl::Positional)
172       PositionalOpts.push_back(O);
173     else if (O->getMiscFlags() & cl::Sink) // Remember sink options
174       SinkOpts.push_back(O);
175     else if (O->getNumOccurrencesFlag() == cl::ConsumeAfter) {
176       if (CAOpt) {
177         O->error("Cannot specify more than one option with cl::ConsumeAfter!");
178         HadErrors = true;
179       }
180       CAOpt = O;
181     }
182   }
183
184   if (CAOpt)
185     PositionalOpts.push_back(CAOpt);
186
187   // Make sure that they are in order of registration not backwards.
188   std::reverse(PositionalOpts.begin(), PositionalOpts.end());
189
190   // Fail hard if there were errors. These are strictly unrecoverable and
191   // indicate serious issues such as conflicting option names or an incorrectly
192   // linked LLVM distribution.
193   if (HadErrors)
194     report_fatal_error("inconsistency in registered CommandLine options");
195 }
196
197
198 /// LookupOption - Lookup the option specified by the specified option on the
199 /// command line.  If there is a value specified (after an equal sign) return
200 /// that as well.  This assumes that leading dashes have already been stripped.
201 static Option *LookupOption(StringRef &Arg, StringRef &Value,
202                             const StringMap<Option*> &OptionsMap) {
203   // Reject all dashes.
204   if (Arg.empty()) return nullptr;
205
206   size_t EqualPos = Arg.find('=');
207
208   // If we have an equals sign, remember the value.
209   if (EqualPos == StringRef::npos) {
210     // Look up the option.
211     StringMap<Option*>::const_iterator I = OptionsMap.find(Arg);
212     return I != OptionsMap.end() ? I->second : nullptr;
213   }
214
215   // If the argument before the = is a valid option name, we match.  If not,
216   // return Arg unmolested.
217   StringMap<Option*>::const_iterator I =
218     OptionsMap.find(Arg.substr(0, EqualPos));
219   if (I == OptionsMap.end()) return nullptr;
220
221   Value = Arg.substr(EqualPos+1);
222   Arg = Arg.substr(0, EqualPos);
223   return I->second;
224 }
225
226 /// LookupNearestOption - Lookup the closest match to the option specified by
227 /// the specified option on the command line.  If there is a value specified
228 /// (after an equal sign) return that as well.  This assumes that leading dashes
229 /// have already been stripped.
230 static Option *LookupNearestOption(StringRef Arg,
231                                    const StringMap<Option*> &OptionsMap,
232                                    std::string &NearestString) {
233   // Reject all dashes.
234   if (Arg.empty()) return nullptr;
235
236   // Split on any equal sign.
237   std::pair<StringRef, StringRef> SplitArg = Arg.split('=');
238   StringRef &LHS = SplitArg.first;  // LHS == Arg when no '=' is present.
239   StringRef &RHS = SplitArg.second;
240
241   // Find the closest match.
242   Option *Best = nullptr;
243   unsigned BestDistance = 0;
244   for (StringMap<Option*>::const_iterator it = OptionsMap.begin(),
245          ie = OptionsMap.end(); it != ie; ++it) {
246     Option *O = it->second;
247     SmallVector<const char*, 16> OptionNames;
248     O->getExtraOptionNames(OptionNames);
249     if (O->ArgStr[0])
250       OptionNames.push_back(O->ArgStr);
251
252     bool PermitValue = O->getValueExpectedFlag() != cl::ValueDisallowed;
253     StringRef Flag = PermitValue ? LHS : Arg;
254     for (size_t i = 0, e = OptionNames.size(); i != e; ++i) {
255       StringRef Name = OptionNames[i];
256       unsigned Distance = StringRef(Name).edit_distance(
257         Flag, /*AllowReplacements=*/true, /*MaxEditDistance=*/BestDistance);
258       if (!Best || Distance < BestDistance) {
259         Best = O;
260         BestDistance = Distance;
261         if (RHS.empty() || !PermitValue)
262           NearestString = OptionNames[i];
263         else
264           NearestString = std::string(OptionNames[i]) + "=" + RHS.str();
265       }
266     }
267   }
268
269   return Best;
270 }
271
272 /// CommaSeparateAndAddOccurrence - A wrapper around Handler->addOccurrence()
273 /// that does special handling of cl::CommaSeparated options.
274 static bool CommaSeparateAndAddOccurrence(Option *Handler, unsigned pos,
275                                           StringRef ArgName, StringRef Value,
276                                           bool MultiArg = false) {
277   // Check to see if this option accepts a comma separated list of values.  If
278   // it does, we have to split up the value into multiple values.
279   if (Handler->getMiscFlags() & CommaSeparated) {
280     StringRef Val(Value);
281     StringRef::size_type Pos = Val.find(',');
282
283     while (Pos != StringRef::npos) {
284       // Process the portion before the comma.
285       if (Handler->addOccurrence(pos, ArgName, Val.substr(0, Pos), MultiArg))
286         return true;
287       // Erase the portion before the comma, AND the comma.
288       Val = Val.substr(Pos+1);
289       Value.substr(Pos+1);  // Increment the original value pointer as well.
290       // Check for another comma.
291       Pos = Val.find(',');
292     }
293
294     Value = Val;
295   }
296
297   if (Handler->addOccurrence(pos, ArgName, Value, MultiArg))
298     return true;
299
300   return false;
301 }
302
303 /// ProvideOption - For Value, this differentiates between an empty value ("")
304 /// and a null value (StringRef()).  The later is accepted for arguments that
305 /// don't allow a value (-foo) the former is rejected (-foo=).
306 static inline bool ProvideOption(Option *Handler, StringRef ArgName,
307                                  StringRef Value, int argc,
308                                  const char *const *argv, int &i) {
309   // Is this a multi-argument option?
310   unsigned NumAdditionalVals = Handler->getNumAdditionalVals();
311
312   // Enforce value requirements
313   switch (Handler->getValueExpectedFlag()) {
314   case ValueRequired:
315     if (!Value.data()) { // No value specified?
316       if (i+1 >= argc)
317         return Handler->error("requires a value!");
318       // Steal the next argument, like for '-o filename'
319       Value = argv[++i];
320     }
321     break;
322   case ValueDisallowed:
323     if (NumAdditionalVals > 0)
324       return Handler->error("multi-valued option specified"
325                             " with ValueDisallowed modifier!");
326
327     if (Value.data())
328       return Handler->error("does not allow a value! '" +
329                             Twine(Value) + "' specified.");
330     break;
331   case ValueOptional:
332     break;
333   }
334
335   // If this isn't a multi-arg option, just run the handler.
336   if (NumAdditionalVals == 0)
337     return CommaSeparateAndAddOccurrence(Handler, i, ArgName, Value);
338
339   // If it is, run the handle several times.
340   bool MultiArg = false;
341
342   if (Value.data()) {
343     if (CommaSeparateAndAddOccurrence(Handler, i, ArgName, Value, MultiArg))
344       return true;
345     --NumAdditionalVals;
346     MultiArg = true;
347   }
348
349   while (NumAdditionalVals > 0) {
350     if (i+1 >= argc)
351       return Handler->error("not enough values!");
352     Value = argv[++i];
353
354     if (CommaSeparateAndAddOccurrence(Handler, i, ArgName, Value, MultiArg))
355       return true;
356     MultiArg = true;
357     --NumAdditionalVals;
358   }
359   return false;
360 }
361
362 static bool ProvidePositionalOption(Option *Handler, StringRef Arg, int i) {
363   int Dummy = i;
364   return ProvideOption(Handler, Handler->ArgStr, Arg, 0, nullptr, Dummy);
365 }
366
367
368 // Option predicates...
369 static inline bool isGrouping(const Option *O) {
370   return O->getFormattingFlag() == cl::Grouping;
371 }
372 static inline bool isPrefixedOrGrouping(const Option *O) {
373   return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
374 }
375
376 // getOptionPred - Check to see if there are any options that satisfy the
377 // specified predicate with names that are the prefixes in Name.  This is
378 // checked by progressively stripping characters off of the name, checking to
379 // see if there options that satisfy the predicate.  If we find one, return it,
380 // otherwise return null.
381 //
382 static Option *getOptionPred(StringRef Name, size_t &Length,
383                              bool (*Pred)(const Option*),
384                              const StringMap<Option*> &OptionsMap) {
385
386   StringMap<Option*>::const_iterator OMI = OptionsMap.find(Name);
387
388   // Loop while we haven't found an option and Name still has at least two
389   // characters in it (so that the next iteration will not be the empty
390   // string.
391   while (OMI == OptionsMap.end() && Name.size() > 1) {
392     Name = Name.substr(0, Name.size()-1);   // Chop off the last character.
393     OMI = OptionsMap.find(Name);
394   }
395
396   if (OMI != OptionsMap.end() && Pred(OMI->second)) {
397     Length = Name.size();
398     return OMI->second;    // Found one!
399   }
400   return nullptr;          // No option found!
401 }
402
403 /// HandlePrefixedOrGroupedOption - The specified argument string (which started
404 /// with at least one '-') does not fully match an available option.  Check to
405 /// see if this is a prefix or grouped option.  If so, split arg into output an
406 /// Arg/Value pair and return the Option to parse it with.
407 static Option *HandlePrefixedOrGroupedOption(StringRef &Arg, StringRef &Value,
408                                              bool &ErrorParsing,
409                                          const StringMap<Option*> &OptionsMap) {
410   if (Arg.size() == 1) return nullptr;
411
412   // Do the lookup!
413   size_t Length = 0;
414   Option *PGOpt = getOptionPred(Arg, Length, isPrefixedOrGrouping, OptionsMap);
415   if (!PGOpt) return nullptr;
416
417   // If the option is a prefixed option, then the value is simply the
418   // rest of the name...  so fall through to later processing, by
419   // setting up the argument name flags and value fields.
420   if (PGOpt->getFormattingFlag() == cl::Prefix) {
421     Value = Arg.substr(Length);
422     Arg = Arg.substr(0, Length);
423     assert(OptionsMap.count(Arg) && OptionsMap.find(Arg)->second == PGOpt);
424     return PGOpt;
425   }
426
427   // This must be a grouped option... handle them now.  Grouping options can't
428   // have values.
429   assert(isGrouping(PGOpt) && "Broken getOptionPred!");
430
431   do {
432     // Move current arg name out of Arg into OneArgName.
433     StringRef OneArgName = Arg.substr(0, Length);
434     Arg = Arg.substr(Length);
435
436     // Because ValueRequired is an invalid flag for grouped arguments,
437     // we don't need to pass argc/argv in.
438     assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
439            "Option can not be cl::Grouping AND cl::ValueRequired!");
440     int Dummy = 0;
441     ErrorParsing |= ProvideOption(PGOpt, OneArgName,
442                                   StringRef(), 0, nullptr, Dummy);
443
444     // Get the next grouping option.
445     PGOpt = getOptionPred(Arg, Length, isGrouping, OptionsMap);
446   } while (PGOpt && Length != Arg.size());
447
448   // Return the last option with Arg cut down to just the last one.
449   return PGOpt;
450 }
451
452
453
454 static bool RequiresValue(const Option *O) {
455   return O->getNumOccurrencesFlag() == cl::Required ||
456          O->getNumOccurrencesFlag() == cl::OneOrMore;
457 }
458
459 static bool EatsUnboundedNumberOfValues(const Option *O) {
460   return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
461          O->getNumOccurrencesFlag() == cl::OneOrMore;
462 }
463
464 static bool isWhitespace(char C) {
465   return strchr(" \t\n\r\f\v", C);
466 }
467
468 static bool isQuote(char C) {
469   return C == '\"' || C == '\'';
470 }
471
472 static bool isGNUSpecial(char C) {
473   return strchr("\\\"\' ", C);
474 }
475
476 void cl::TokenizeGNUCommandLine(StringRef Src, StringSaver &Saver,
477                                 SmallVectorImpl<const char *> &NewArgv) {
478   SmallString<128> Token;
479   for (size_t I = 0, E = Src.size(); I != E; ++I) {
480     // Consume runs of whitespace.
481     if (Token.empty()) {
482       while (I != E && isWhitespace(Src[I]))
483         ++I;
484       if (I == E) break;
485     }
486
487     // Backslashes can escape backslashes, spaces, and other quotes.  Otherwise
488     // they are literal.  This makes it much easier to read Windows file paths.
489     if (I + 1 < E && Src[I] == '\\' && isGNUSpecial(Src[I + 1])) {
490       ++I;  // Skip the escape.
491       Token.push_back(Src[I]);
492       continue;
493     }
494
495     // Consume a quoted string.
496     if (isQuote(Src[I])) {
497       char Quote = Src[I++];
498       while (I != E && Src[I] != Quote) {
499         // Backslashes are literal, unless they escape a special character.
500         if (Src[I] == '\\' && I + 1 != E && isGNUSpecial(Src[I + 1]))
501           ++I;
502         Token.push_back(Src[I]);
503         ++I;
504       }
505       if (I == E) break;
506       continue;
507     }
508
509     // End the token if this is whitespace.
510     if (isWhitespace(Src[I])) {
511       if (!Token.empty())
512         NewArgv.push_back(Saver.SaveString(Token.c_str()));
513       Token.clear();
514       continue;
515     }
516
517     // This is a normal character.  Append it.
518     Token.push_back(Src[I]);
519   }
520
521   // Append the last token after hitting EOF with no whitespace.
522   if (!Token.empty())
523     NewArgv.push_back(Saver.SaveString(Token.c_str()));
524 }
525
526 /// Backslashes are interpreted in a rather complicated way in the Windows-style
527 /// command line, because backslashes are used both to separate path and to
528 /// escape double quote. This method consumes runs of backslashes as well as the
529 /// following double quote if it's escaped.
530 ///
531 ///  * If an even number of backslashes is followed by a double quote, one
532 ///    backslash is output for every pair of backslashes, and the last double
533 ///    quote remains unconsumed. The double quote will later be interpreted as
534 ///    the start or end of a quoted string in the main loop outside of this
535 ///    function.
536 ///
537 ///  * If an odd number of backslashes is followed by a double quote, one
538 ///    backslash is output for every pair of backslashes, and a double quote is
539 ///    output for the last pair of backslash-double quote. The double quote is
540 ///    consumed in this case.
541 ///
542 ///  * Otherwise, backslashes are interpreted literally.
543 static size_t parseBackslash(StringRef Src, size_t I, SmallString<128> &Token) {
544   size_t E = Src.size();
545   int BackslashCount = 0;
546   // Skip the backslashes.
547   do {
548     ++I;
549     ++BackslashCount;
550   } while (I != E && Src[I] == '\\');
551
552   bool FollowedByDoubleQuote = (I != E && Src[I] == '"');
553   if (FollowedByDoubleQuote) {
554     Token.append(BackslashCount / 2, '\\');
555     if (BackslashCount % 2 == 0)
556       return I - 1;
557     Token.push_back('"');
558     return I;
559   }
560   Token.append(BackslashCount, '\\');
561   return I - 1;
562 }
563
564 void cl::TokenizeWindowsCommandLine(StringRef Src, StringSaver &Saver,
565                                     SmallVectorImpl<const char *> &NewArgv) {
566   SmallString<128> Token;
567
568   // This is a small state machine to consume characters until it reaches the
569   // end of the source string.
570   enum { INIT, UNQUOTED, QUOTED } State = INIT;
571   for (size_t I = 0, E = Src.size(); I != E; ++I) {
572     // INIT state indicates that the current input index is at the start of
573     // the string or between tokens.
574     if (State == INIT) {
575       if (isWhitespace(Src[I]))
576         continue;
577       if (Src[I] == '"') {
578         State = QUOTED;
579         continue;
580       }
581       if (Src[I] == '\\') {
582         I = parseBackslash(Src, I, Token);
583         State = UNQUOTED;
584         continue;
585       }
586       Token.push_back(Src[I]);
587       State = UNQUOTED;
588       continue;
589     }
590
591     // UNQUOTED state means that it's reading a token not quoted by double
592     // quotes.
593     if (State == UNQUOTED) {
594       // Whitespace means the end of the token.
595       if (isWhitespace(Src[I])) {
596         NewArgv.push_back(Saver.SaveString(Token.c_str()));
597         Token.clear();
598         State = INIT;
599         continue;
600       }
601       if (Src[I] == '"') {
602         State = QUOTED;
603         continue;
604       }
605       if (Src[I] == '\\') {
606         I = parseBackslash(Src, I, Token);
607         continue;
608       }
609       Token.push_back(Src[I]);
610       continue;
611     }
612
613     // QUOTED state means that it's reading a token quoted by double quotes.
614     if (State == QUOTED) {
615       if (Src[I] == '"') {
616         State = UNQUOTED;
617         continue;
618       }
619       if (Src[I] == '\\') {
620         I = parseBackslash(Src, I, Token);
621         continue;
622       }
623       Token.push_back(Src[I]);
624     }
625   }
626   // Append the last token after hitting EOF with no whitespace.
627   if (!Token.empty())
628     NewArgv.push_back(Saver.SaveString(Token.c_str()));
629 }
630
631 static bool ExpandResponseFile(const char *FName, StringSaver &Saver,
632                                TokenizerCallback Tokenizer,
633                                SmallVectorImpl<const char *> &NewArgv) {
634   ErrorOr<std::unique_ptr<MemoryBuffer>> MemBufOrErr =
635       MemoryBuffer::getFile(FName);
636   if (!MemBufOrErr)
637     return false;
638   MemoryBuffer &MemBuf = *MemBufOrErr.get();
639   StringRef Str(MemBuf.getBufferStart(), MemBuf.getBufferSize());
640
641   // If we have a UTF-16 byte order mark, convert to UTF-8 for parsing.
642   ArrayRef<char> BufRef(MemBuf.getBufferStart(), MemBuf.getBufferEnd());
643   std::string UTF8Buf;
644   if (hasUTF16ByteOrderMark(BufRef)) {
645     if (!convertUTF16ToUTF8String(BufRef, UTF8Buf))
646       return false;
647     Str = StringRef(UTF8Buf);
648   }
649
650   // Tokenize the contents into NewArgv.
651   Tokenizer(Str, Saver, NewArgv);
652
653   return true;
654 }
655
656 /// \brief Expand response files on a command line recursively using the given
657 /// StringSaver and tokenization strategy.
658 bool cl::ExpandResponseFiles(StringSaver &Saver, TokenizerCallback Tokenizer,
659                              SmallVectorImpl<const char *> &Argv) {
660   unsigned RspFiles = 0;
661   bool AllExpanded = true;
662
663   // Don't cache Argv.size() because it can change.
664   for (unsigned I = 0; I != Argv.size(); ) {
665     const char *Arg = Argv[I];
666     if (Arg[0] != '@') {
667       ++I;
668       continue;
669     }
670
671     // If we have too many response files, leave some unexpanded.  This avoids
672     // crashing on self-referential response files.
673     if (RspFiles++ > 20)
674       return false;
675
676     // Replace this response file argument with the tokenization of its
677     // contents.  Nested response files are expanded in subsequent iterations.
678     // FIXME: If a nested response file uses a relative path, is it relative to
679     // the cwd of the process or the response file?
680     SmallVector<const char *, 0> ExpandedArgv;
681     if (!ExpandResponseFile(Arg + 1, Saver, Tokenizer, ExpandedArgv)) {
682       // We couldn't read this file, so we leave it in the argument stream and
683       // move on.
684       AllExpanded = false;
685       ++I;
686       continue;
687     }
688     Argv.erase(Argv.begin() + I);
689     Argv.insert(Argv.begin() + I, ExpandedArgv.begin(), ExpandedArgv.end());
690   }
691   return AllExpanded;
692 }
693
694 namespace {
695   class StrDupSaver : public StringSaver {
696     std::vector<char*> Dups;
697   public:
698     ~StrDupSaver() {
699       for (std::vector<char *>::iterator I = Dups.begin(), E = Dups.end();
700            I != E; ++I) {
701         char *Dup = *I;
702         free(Dup);
703       }
704     }
705     const char *SaveString(const char *Str) override {
706       char *Dup = strdup(Str);
707       Dups.push_back(Dup);
708       return Dup;
709     }
710   };
711 }
712
713 /// ParseEnvironmentOptions - An alternative entry point to the
714 /// CommandLine library, which allows you to read the program's name
715 /// from the caller (as PROGNAME) and its command-line arguments from
716 /// an environment variable (whose name is given in ENVVAR).
717 ///
718 void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
719                                  const char *Overview) {
720   // Check args.
721   assert(progName && "Program name not specified");
722   assert(envVar && "Environment variable name missing");
723
724   // Get the environment variable they want us to parse options out of.
725   const char *envValue = getenv(envVar);
726   if (!envValue)
727     return;
728
729   // Get program's "name", which we wouldn't know without the caller
730   // telling us.
731   SmallVector<const char *, 20> newArgv;
732   StrDupSaver Saver;
733   newArgv.push_back(Saver.SaveString(progName));
734
735   // Parse the value of the environment variable into a "command line"
736   // and hand it off to ParseCommandLineOptions().
737   TokenizeGNUCommandLine(envValue, Saver, newArgv);
738   int newArgc = static_cast<int>(newArgv.size());
739   ParseCommandLineOptions(newArgc, &newArgv[0], Overview);
740 }
741
742 void cl::ParseCommandLineOptions(int argc, const char * const *argv,
743                                  const char *Overview) {
744   // Process all registered options.
745   SmallVector<Option*, 4> PositionalOpts;
746   SmallVector<Option*, 4> SinkOpts;
747   StringMap<Option*> Opts;
748   GetOptionInfo(PositionalOpts, SinkOpts, Opts);
749
750   assert((!Opts.empty() || !PositionalOpts.empty()) &&
751          "No options specified!");
752
753   // Expand response files.
754   SmallVector<const char *, 20> newArgv;
755   for (int i = 0; i != argc; ++i)
756     newArgv.push_back(argv[i]);
757   StrDupSaver Saver;
758   ExpandResponseFiles(Saver, TokenizeGNUCommandLine, newArgv);
759   argv = &newArgv[0];
760   argc = static_cast<int>(newArgv.size());
761
762   // Copy the program name into ProgName, making sure not to overflow it.
763   StringRef ProgName = sys::path::filename(argv[0]);
764   size_t Len = std::min(ProgName.size(), size_t(79));
765   memcpy(ProgramName, ProgName.data(), Len);
766   ProgramName[Len] = '\0';
767
768   ProgramOverview = Overview;
769   bool ErrorParsing = false;
770
771   // Check out the positional arguments to collect information about them.
772   unsigned NumPositionalRequired = 0;
773
774   // Determine whether or not there are an unlimited number of positionals
775   bool HasUnlimitedPositionals = false;
776
777   Option *ConsumeAfterOpt = nullptr;
778   if (!PositionalOpts.empty()) {
779     if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
780       assert(PositionalOpts.size() > 1 &&
781              "Cannot specify cl::ConsumeAfter without a positional argument!");
782       ConsumeAfterOpt = PositionalOpts[0];
783     }
784
785     // Calculate how many positional values are _required_.
786     bool UnboundedFound = false;
787     for (size_t i = ConsumeAfterOpt ? 1 : 0, e = PositionalOpts.size();
788          i != e; ++i) {
789       Option *Opt = PositionalOpts[i];
790       if (RequiresValue(Opt))
791         ++NumPositionalRequired;
792       else if (ConsumeAfterOpt) {
793         // ConsumeAfter cannot be combined with "optional" positional options
794         // unless there is only one positional argument...
795         if (PositionalOpts.size() > 2)
796           ErrorParsing |=
797             Opt->error("error - this positional option will never be matched, "
798                        "because it does not Require a value, and a "
799                        "cl::ConsumeAfter option is active!");
800       } else if (UnboundedFound && !Opt->ArgStr[0]) {
801         // This option does not "require" a value...  Make sure this option is
802         // not specified after an option that eats all extra arguments, or this
803         // one will never get any!
804         //
805         ErrorParsing |= Opt->error("error - option can never match, because "
806                                    "another positional argument will match an "
807                                    "unbounded number of values, and this option"
808                                    " does not require a value!");
809       }
810       UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
811     }
812     HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt;
813   }
814
815   // PositionalVals - A vector of "positional" arguments we accumulate into
816   // the process at the end.
817   //
818   SmallVector<std::pair<StringRef,unsigned>, 4> PositionalVals;
819
820   // If the program has named positional arguments, and the name has been run
821   // across, keep track of which positional argument was named.  Otherwise put
822   // the positional args into the PositionalVals list...
823   Option *ActivePositionalArg = nullptr;
824
825   // Loop over all of the arguments... processing them.
826   bool DashDashFound = false;  // Have we read '--'?
827   for (int i = 1; i < argc; ++i) {
828     Option *Handler = nullptr;
829     Option *NearestHandler = nullptr;
830     std::string NearestHandlerString;
831     StringRef Value;
832     StringRef ArgName = "";
833
834     // If the option list changed, this means that some command line
835     // option has just been registered or deregistered.  This can occur in
836     // response to things like -load, etc.  If this happens, rescan the options.
837     if (OptionListChanged) {
838       PositionalOpts.clear();
839       SinkOpts.clear();
840       Opts.clear();
841       GetOptionInfo(PositionalOpts, SinkOpts, Opts);
842       OptionListChanged = false;
843     }
844
845     // Check to see if this is a positional argument.  This argument is
846     // considered to be positional if it doesn't start with '-', if it is "-"
847     // itself, or if we have seen "--" already.
848     //
849     if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
850       // Positional argument!
851       if (ActivePositionalArg) {
852         ProvidePositionalOption(ActivePositionalArg, argv[i], i);
853         continue;  // We are done!
854       }
855
856       if (!PositionalOpts.empty()) {
857         PositionalVals.push_back(std::make_pair(argv[i],i));
858
859         // All of the positional arguments have been fulfulled, give the rest to
860         // the consume after option... if it's specified...
861         //
862         if (PositionalVals.size() >= NumPositionalRequired && ConsumeAfterOpt) {
863           for (++i; i < argc; ++i)
864             PositionalVals.push_back(std::make_pair(argv[i],i));
865           break;   // Handle outside of the argument processing loop...
866         }
867
868         // Delay processing positional arguments until the end...
869         continue;
870       }
871     } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 &&
872                !DashDashFound) {
873       DashDashFound = true;  // This is the mythical "--"?
874       continue;              // Don't try to process it as an argument itself.
875     } else if (ActivePositionalArg &&
876                (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) {
877       // If there is a positional argument eating options, check to see if this
878       // option is another positional argument.  If so, treat it as an argument,
879       // otherwise feed it to the eating positional.
880       ArgName = argv[i]+1;
881       // Eat leading dashes.
882       while (!ArgName.empty() && ArgName[0] == '-')
883         ArgName = ArgName.substr(1);
884
885       Handler = LookupOption(ArgName, Value, Opts);
886       if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
887         ProvidePositionalOption(ActivePositionalArg, argv[i], i);
888         continue;  // We are done!
889       }
890
891     } else {     // We start with a '-', must be an argument.
892       ArgName = argv[i]+1;
893       // Eat leading dashes.
894       while (!ArgName.empty() && ArgName[0] == '-')
895         ArgName = ArgName.substr(1);
896
897       Handler = LookupOption(ArgName, Value, Opts);
898
899       // Check to see if this "option" is really a prefixed or grouped argument.
900       if (!Handler)
901         Handler = HandlePrefixedOrGroupedOption(ArgName, Value,
902                                                 ErrorParsing, Opts);
903
904       // Otherwise, look for the closest available option to report to the user
905       // in the upcoming error.
906       if (!Handler && SinkOpts.empty())
907         NearestHandler = LookupNearestOption(ArgName, Opts,
908                                              NearestHandlerString);
909     }
910
911     if (!Handler) {
912       if (SinkOpts.empty()) {
913         errs() << ProgramName << ": Unknown command line argument '"
914              << argv[i] << "'.  Try: '" << argv[0] << " -help'\n";
915
916         if (NearestHandler) {
917           // If we know a near match, report it as well.
918           errs() << ProgramName << ": Did you mean '-"
919                  << NearestHandlerString << "'?\n";
920         }
921
922         ErrorParsing = true;
923       } else {
924         for (SmallVectorImpl<Option*>::iterator I = SinkOpts.begin(),
925                E = SinkOpts.end(); I != E ; ++I)
926           (*I)->addOccurrence(i, "", argv[i]);
927       }
928       continue;
929     }
930
931     // If this is a named positional argument, just remember that it is the
932     // active one...
933     if (Handler->getFormattingFlag() == cl::Positional)
934       ActivePositionalArg = Handler;
935     else
936       ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
937   }
938
939   // Check and handle positional arguments now...
940   if (NumPositionalRequired > PositionalVals.size()) {
941     errs() << ProgramName
942          << ": Not enough positional command line arguments specified!\n"
943          << "Must specify at least " << NumPositionalRequired
944          << " positional arguments: See: " << argv[0] << " -help\n";
945
946     ErrorParsing = true;
947   } else if (!HasUnlimitedPositionals &&
948              PositionalVals.size() > PositionalOpts.size()) {
949     errs() << ProgramName
950          << ": Too many positional arguments specified!\n"
951          << "Can specify at most " << PositionalOpts.size()
952          << " positional arguments: See: " << argv[0] << " -help\n";
953     ErrorParsing = true;
954
955   } else if (!ConsumeAfterOpt) {
956     // Positional args have already been handled if ConsumeAfter is specified.
957     unsigned ValNo = 0, NumVals = static_cast<unsigned>(PositionalVals.size());
958     for (size_t i = 0, e = PositionalOpts.size(); i != e; ++i) {
959       if (RequiresValue(PositionalOpts[i])) {
960         ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first,
961                                 PositionalVals[ValNo].second);
962         ValNo++;
963         --NumPositionalRequired;  // We fulfilled our duty...
964       }
965
966       // If we _can_ give this option more arguments, do so now, as long as we
967       // do not give it values that others need.  'Done' controls whether the
968       // option even _WANTS_ any more.
969       //
970       bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
971       while (NumVals-ValNo > NumPositionalRequired && !Done) {
972         switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
973         case cl::Optional:
974           Done = true;          // Optional arguments want _at most_ one value
975           // FALL THROUGH
976         case cl::ZeroOrMore:    // Zero or more will take all they can get...
977         case cl::OneOrMore:     // One or more will take all they can get...
978           ProvidePositionalOption(PositionalOpts[i],
979                                   PositionalVals[ValNo].first,
980                                   PositionalVals[ValNo].second);
981           ValNo++;
982           break;
983         default:
984           llvm_unreachable("Internal error, unexpected NumOccurrences flag in "
985                  "positional argument processing!");
986         }
987       }
988     }
989   } else {
990     assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
991     unsigned ValNo = 0;
992     for (size_t j = 1, e = PositionalOpts.size(); j != e; ++j)
993       if (RequiresValue(PositionalOpts[j])) {
994         ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
995                                                 PositionalVals[ValNo].first,
996                                                 PositionalVals[ValNo].second);
997         ValNo++;
998       }
999
1000     // Handle the case where there is just one positional option, and it's
1001     // optional.  In this case, we want to give JUST THE FIRST option to the
1002     // positional option and keep the rest for the consume after.  The above
1003     // loop would have assigned no values to positional options in this case.
1004     //
1005     if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) {
1006       ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
1007                                               PositionalVals[ValNo].first,
1008                                               PositionalVals[ValNo].second);
1009       ValNo++;
1010     }
1011
1012     // Handle over all of the rest of the arguments to the
1013     // cl::ConsumeAfter command line option...
1014     for (; ValNo != PositionalVals.size(); ++ValNo)
1015       ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
1016                                               PositionalVals[ValNo].first,
1017                                               PositionalVals[ValNo].second);
1018   }
1019
1020   // Loop over args and make sure all required args are specified!
1021   for (const auto &Opt : Opts) {
1022     switch (Opt.second->getNumOccurrencesFlag()) {
1023     case Required:
1024     case OneOrMore:
1025       if (Opt.second->getNumOccurrences() == 0) {
1026         Opt.second->error("must be specified at least once!");
1027         ErrorParsing = true;
1028       }
1029       // Fall through
1030     default:
1031       break;
1032     }
1033   }
1034
1035   // Now that we know if -debug is specified, we can use it.
1036   // Note that if ReadResponseFiles == true, this must be done before the
1037   // memory allocated for the expanded command line is free()d below.
1038   DEBUG(dbgs() << "Args: ";
1039         for (int i = 0; i < argc; ++i)
1040           dbgs() << argv[i] << ' ';
1041         dbgs() << '\n';
1042        );
1043
1044   // Free all of the memory allocated to the map.  Command line options may only
1045   // be processed once!
1046   Opts.clear();
1047   PositionalOpts.clear();
1048   MoreHelp->clear();
1049
1050   // If we had an error processing our arguments, don't let the program execute
1051   if (ErrorParsing) exit(1);
1052 }
1053
1054 //===----------------------------------------------------------------------===//
1055 // Option Base class implementation
1056 //
1057
1058 bool Option::error(const Twine &Message, StringRef ArgName) {
1059   if (!ArgName.data()) ArgName = ArgStr;
1060   if (ArgName.empty())
1061     errs() << HelpStr;  // Be nice for positional arguments
1062   else
1063     errs() << ProgramName << ": for the -" << ArgName;
1064
1065   errs() << " option: " << Message << "\n";
1066   return true;
1067 }
1068
1069 bool Option::addOccurrence(unsigned pos, StringRef ArgName,
1070                            StringRef Value, bool MultiArg) {
1071   if (!MultiArg)
1072     NumOccurrences++;   // Increment the number of times we have been seen
1073
1074   switch (getNumOccurrencesFlag()) {
1075   case Optional:
1076     if (NumOccurrences > 1)
1077       return error("may only occur zero or one times!", ArgName);
1078     break;
1079   case Required:
1080     if (NumOccurrences > 1)
1081       return error("must occur exactly one time!", ArgName);
1082     // Fall through
1083   case OneOrMore:
1084   case ZeroOrMore:
1085   case ConsumeAfter: break;
1086   }
1087
1088   return handleOccurrence(pos, ArgName, Value);
1089 }
1090
1091
1092 // getValueStr - Get the value description string, using "DefaultMsg" if nothing
1093 // has been specified yet.
1094 //
1095 static const char *getValueStr(const Option &O, const char *DefaultMsg) {
1096   if (O.ValueStr[0] == 0) return DefaultMsg;
1097   return O.ValueStr;
1098 }
1099
1100 //===----------------------------------------------------------------------===//
1101 // cl::alias class implementation
1102 //
1103
1104 // Return the width of the option tag for printing...
1105 size_t alias::getOptionWidth() const {
1106   return std::strlen(ArgStr)+6;
1107 }
1108
1109 static void printHelpStr(StringRef HelpStr, size_t Indent,
1110                          size_t FirstLineIndentedBy) {
1111   std::pair<StringRef, StringRef> Split = HelpStr.split('\n');
1112   outs().indent(Indent - FirstLineIndentedBy) << " - " << Split.first << "\n";
1113   while (!Split.second.empty()) {
1114     Split = Split.second.split('\n');
1115     outs().indent(Indent) << Split.first << "\n";
1116   }
1117 }
1118
1119 // Print out the option for the alias.
1120 void alias::printOptionInfo(size_t GlobalWidth) const {
1121   outs() << "  -" << ArgStr;
1122   printHelpStr(HelpStr, GlobalWidth, std::strlen(ArgStr) + 6);
1123 }
1124
1125 //===----------------------------------------------------------------------===//
1126 // Parser Implementation code...
1127 //
1128
1129 // basic_parser implementation
1130 //
1131
1132 // Return the width of the option tag for printing...
1133 size_t basic_parser_impl::getOptionWidth(const Option &O) const {
1134   size_t Len = std::strlen(O.ArgStr);
1135   if (const char *ValName = getValueName())
1136     Len += std::strlen(getValueStr(O, ValName))+3;
1137
1138   return Len + 6;
1139 }
1140
1141 // printOptionInfo - Print out information about this option.  The
1142 // to-be-maintained width is specified.
1143 //
1144 void basic_parser_impl::printOptionInfo(const Option &O,
1145                                         size_t GlobalWidth) const {
1146   outs() << "  -" << O.ArgStr;
1147
1148   if (const char *ValName = getValueName())
1149     outs() << "=<" << getValueStr(O, ValName) << '>';
1150
1151   printHelpStr(O.HelpStr, GlobalWidth, getOptionWidth(O));
1152 }
1153
1154 void basic_parser_impl::printOptionName(const Option &O,
1155                                         size_t GlobalWidth) const {
1156   outs() << "  -" << O.ArgStr;
1157   outs().indent(GlobalWidth-std::strlen(O.ArgStr));
1158 }
1159
1160
1161 // parser<bool> implementation
1162 //
1163 bool parser<bool>::parse(Option &O, StringRef ArgName,
1164                          StringRef Arg, bool &Value) {
1165   if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
1166       Arg == "1") {
1167     Value = true;
1168     return false;
1169   }
1170
1171   if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
1172     Value = false;
1173     return false;
1174   }
1175   return O.error("'" + Arg +
1176                  "' is invalid value for boolean argument! Try 0 or 1");
1177 }
1178
1179 // parser<boolOrDefault> implementation
1180 //
1181 bool parser<boolOrDefault>::parse(Option &O, StringRef ArgName,
1182                                   StringRef Arg, boolOrDefault &Value) {
1183   if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
1184       Arg == "1") {
1185     Value = BOU_TRUE;
1186     return false;
1187   }
1188   if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
1189     Value = BOU_FALSE;
1190     return false;
1191   }
1192
1193   return O.error("'" + Arg +
1194                  "' is invalid value for boolean argument! Try 0 or 1");
1195 }
1196
1197 // parser<int> implementation
1198 //
1199 bool parser<int>::parse(Option &O, StringRef ArgName,
1200                         StringRef Arg, int &Value) {
1201   if (Arg.getAsInteger(0, Value))
1202     return O.error("'" + Arg + "' value invalid for integer argument!");
1203   return false;
1204 }
1205
1206 // parser<unsigned> implementation
1207 //
1208 bool parser<unsigned>::parse(Option &O, StringRef ArgName,
1209                              StringRef Arg, unsigned &Value) {
1210
1211   if (Arg.getAsInteger(0, Value))
1212     return O.error("'" + Arg + "' value invalid for uint argument!");
1213   return false;
1214 }
1215
1216 // parser<unsigned long long> implementation
1217 //
1218 bool parser<unsigned long long>::parse(Option &O, StringRef ArgName,
1219                                       StringRef Arg, unsigned long long &Value){
1220
1221   if (Arg.getAsInteger(0, Value))
1222     return O.error("'" + Arg + "' value invalid for uint argument!");
1223   return false;
1224 }
1225
1226 // parser<double>/parser<float> implementation
1227 //
1228 static bool parseDouble(Option &O, StringRef Arg, double &Value) {
1229   SmallString<32> TmpStr(Arg.begin(), Arg.end());
1230   const char *ArgStart = TmpStr.c_str();
1231   char *End;
1232   Value = strtod(ArgStart, &End);
1233   if (*End != 0)
1234     return O.error("'" + Arg + "' value invalid for floating point argument!");
1235   return false;
1236 }
1237
1238 bool parser<double>::parse(Option &O, StringRef ArgName,
1239                            StringRef Arg, double &Val) {
1240   return parseDouble(O, Arg, Val);
1241 }
1242
1243 bool parser<float>::parse(Option &O, StringRef ArgName,
1244                           StringRef Arg, float &Val) {
1245   double dVal;
1246   if (parseDouble(O, Arg, dVal))
1247     return true;
1248   Val = (float)dVal;
1249   return false;
1250 }
1251
1252
1253
1254 // generic_parser_base implementation
1255 //
1256
1257 // findOption - Return the option number corresponding to the specified
1258 // argument string.  If the option is not found, getNumOptions() is returned.
1259 //
1260 unsigned generic_parser_base::findOption(const char *Name) {
1261   unsigned e = getNumOptions();
1262
1263   for (unsigned i = 0; i != e; ++i) {
1264     if (strcmp(getOption(i), Name) == 0)
1265       return i;
1266   }
1267   return e;
1268 }
1269
1270
1271 // Return the width of the option tag for printing...
1272 size_t generic_parser_base::getOptionWidth(const Option &O) const {
1273   if (O.hasArgStr()) {
1274     size_t Size = std::strlen(O.ArgStr)+6;
1275     for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
1276       Size = std::max(Size, std::strlen(getOption(i))+8);
1277     return Size;
1278   } else {
1279     size_t BaseSize = 0;
1280     for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
1281       BaseSize = std::max(BaseSize, std::strlen(getOption(i))+8);
1282     return BaseSize;
1283   }
1284 }
1285
1286 // printOptionInfo - Print out information about this option.  The
1287 // to-be-maintained width is specified.
1288 //
1289 void generic_parser_base::printOptionInfo(const Option &O,
1290                                           size_t GlobalWidth) const {
1291   if (O.hasArgStr()) {
1292     outs() << "  -" << O.ArgStr;
1293     printHelpStr(O.HelpStr, GlobalWidth, std::strlen(O.ArgStr) + 6);
1294
1295     for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
1296       size_t NumSpaces = GlobalWidth-strlen(getOption(i))-8;
1297       outs() << "    =" << getOption(i);
1298       outs().indent(NumSpaces) << " -   " << getDescription(i) << '\n';
1299     }
1300   } else {
1301     if (O.HelpStr[0])
1302       outs() << "  " << O.HelpStr << '\n';
1303     for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
1304       const char *Option = getOption(i);
1305       outs() << "    -" << Option;
1306       printHelpStr(getDescription(i), GlobalWidth, std::strlen(Option) + 8);
1307     }
1308   }
1309 }
1310
1311 static const size_t MaxOptWidth = 8; // arbitrary spacing for printOptionDiff
1312
1313 // printGenericOptionDiff - Print the value of this option and it's default.
1314 //
1315 // "Generic" options have each value mapped to a name.
1316 void generic_parser_base::
1317 printGenericOptionDiff(const Option &O, const GenericOptionValue &Value,
1318                        const GenericOptionValue &Default,
1319                        size_t GlobalWidth) const {
1320   outs() << "  -" << O.ArgStr;
1321   outs().indent(GlobalWidth-std::strlen(O.ArgStr));
1322
1323   unsigned NumOpts = getNumOptions();
1324   for (unsigned i = 0; i != NumOpts; ++i) {
1325     if (Value.compare(getOptionValue(i)))
1326       continue;
1327
1328     outs() << "= " << getOption(i);
1329     size_t L = std::strlen(getOption(i));
1330     size_t NumSpaces = MaxOptWidth > L ? MaxOptWidth - L : 0;
1331     outs().indent(NumSpaces) << " (default: ";
1332     for (unsigned j = 0; j != NumOpts; ++j) {
1333       if (Default.compare(getOptionValue(j)))
1334         continue;
1335       outs() << getOption(j);
1336       break;
1337     }
1338     outs() << ")\n";
1339     return;
1340   }
1341   outs() << "= *unknown option value*\n";
1342 }
1343
1344 // printOptionDiff - Specializations for printing basic value types.
1345 //
1346 #define PRINT_OPT_DIFF(T)                                               \
1347   void parser<T>::                                                      \
1348   printOptionDiff(const Option &O, T V, OptionValue<T> D,               \
1349                   size_t GlobalWidth) const {                           \
1350     printOptionName(O, GlobalWidth);                                    \
1351     std::string Str;                                                    \
1352     {                                                                   \
1353       raw_string_ostream SS(Str);                                       \
1354       SS << V;                                                          \
1355     }                                                                   \
1356     outs() << "= " << Str;                                              \
1357     size_t NumSpaces = MaxOptWidth > Str.size() ? MaxOptWidth - Str.size() : 0;\
1358     outs().indent(NumSpaces) << " (default: ";                          \
1359     if (D.hasValue())                                                   \
1360       outs() << D.getValue();                                           \
1361     else                                                                \
1362       outs() << "*no default*";                                         \
1363     outs() << ")\n";                                                    \
1364   }                                                                     \
1365
1366 PRINT_OPT_DIFF(bool)
1367 PRINT_OPT_DIFF(boolOrDefault)
1368 PRINT_OPT_DIFF(int)
1369 PRINT_OPT_DIFF(unsigned)
1370 PRINT_OPT_DIFF(unsigned long long)
1371 PRINT_OPT_DIFF(double)
1372 PRINT_OPT_DIFF(float)
1373 PRINT_OPT_DIFF(char)
1374
1375 void parser<std::string>::
1376 printOptionDiff(const Option &O, StringRef V, OptionValue<std::string> D,
1377                 size_t GlobalWidth) const {
1378   printOptionName(O, GlobalWidth);
1379   outs() << "= " << V;
1380   size_t NumSpaces = MaxOptWidth > V.size() ? MaxOptWidth - V.size() : 0;
1381   outs().indent(NumSpaces) << " (default: ";
1382   if (D.hasValue())
1383     outs() << D.getValue();
1384   else
1385     outs() << "*no default*";
1386   outs() << ")\n";
1387 }
1388
1389 // Print a placeholder for options that don't yet support printOptionDiff().
1390 void basic_parser_impl::
1391 printOptionNoValue(const Option &O, size_t GlobalWidth) const {
1392   printOptionName(O, GlobalWidth);
1393   outs() << "= *cannot print option value*\n";
1394 }
1395
1396 //===----------------------------------------------------------------------===//
1397 // -help and -help-hidden option implementation
1398 //
1399
1400 static int OptNameCompare(const void *LHS, const void *RHS) {
1401   typedef std::pair<const char *, Option*> pair_ty;
1402
1403   return strcmp(((const pair_ty*)LHS)->first, ((const pair_ty*)RHS)->first);
1404 }
1405
1406 // Copy Options into a vector so we can sort them as we like.
1407 static void
1408 sortOpts(StringMap<Option*> &OptMap,
1409          SmallVectorImpl< std::pair<const char *, Option*> > &Opts,
1410          bool ShowHidden) {
1411   SmallPtrSet<Option*, 128> OptionSet;  // Duplicate option detection.
1412
1413   for (StringMap<Option*>::iterator I = OptMap.begin(), E = OptMap.end();
1414        I != E; ++I) {
1415     // Ignore really-hidden options.
1416     if (I->second->getOptionHiddenFlag() == ReallyHidden)
1417       continue;
1418
1419     // Unless showhidden is set, ignore hidden flags.
1420     if (I->second->getOptionHiddenFlag() == Hidden && !ShowHidden)
1421       continue;
1422
1423     // If we've already seen this option, don't add it to the list again.
1424     if (!OptionSet.insert(I->second))
1425       continue;
1426
1427     Opts.push_back(std::pair<const char *, Option*>(I->getKey().data(),
1428                                                     I->second));
1429   }
1430
1431   // Sort the options list alphabetically.
1432   qsort(Opts.data(), Opts.size(), sizeof(Opts[0]), OptNameCompare);
1433 }
1434
1435 namespace {
1436
1437 class HelpPrinter {
1438 protected:
1439   const bool ShowHidden;
1440   typedef SmallVector<std::pair<const char *, Option*>,128> StrOptionPairVector;
1441   // Print the options. Opts is assumed to be alphabetically sorted.
1442   virtual void printOptions(StrOptionPairVector &Opts, size_t MaxArgLen) {
1443     for (size_t i = 0, e = Opts.size(); i != e; ++i)
1444       Opts[i].second->printOptionInfo(MaxArgLen);
1445   }
1446
1447 public:
1448   explicit HelpPrinter(bool showHidden) : ShowHidden(showHidden) {}
1449   virtual ~HelpPrinter() {}
1450
1451   // Invoke the printer.
1452   void operator=(bool Value) {
1453     if (Value == false) return;
1454
1455     // Get all the options.
1456     SmallVector<Option*, 4> PositionalOpts;
1457     SmallVector<Option*, 4> SinkOpts;
1458     StringMap<Option*> OptMap;
1459     GetOptionInfo(PositionalOpts, SinkOpts, OptMap);
1460
1461     StrOptionPairVector Opts;
1462     sortOpts(OptMap, Opts, ShowHidden);
1463
1464     if (ProgramOverview)
1465       outs() << "OVERVIEW: " << ProgramOverview << "\n";
1466
1467     outs() << "USAGE: " << ProgramName << " [options]";
1468
1469     // Print out the positional options.
1470     Option *CAOpt = nullptr;   // The cl::ConsumeAfter option, if it exists...
1471     if (!PositionalOpts.empty() &&
1472         PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
1473       CAOpt = PositionalOpts[0];
1474
1475     for (size_t i = CAOpt != nullptr, e = PositionalOpts.size(); i != e; ++i) {
1476       if (PositionalOpts[i]->ArgStr[0])
1477         outs() << " --" << PositionalOpts[i]->ArgStr;
1478       outs() << " " << PositionalOpts[i]->HelpStr;
1479     }
1480
1481     // Print the consume after option info if it exists...
1482     if (CAOpt) outs() << " " << CAOpt->HelpStr;
1483
1484     outs() << "\n\n";
1485
1486     // Compute the maximum argument length...
1487     size_t MaxArgLen = 0;
1488     for (size_t i = 0, e = Opts.size(); i != e; ++i)
1489       MaxArgLen = std::max(MaxArgLen, Opts[i].second->getOptionWidth());
1490
1491     outs() << "OPTIONS:\n";
1492     printOptions(Opts, MaxArgLen);
1493
1494     // Print any extra help the user has declared.
1495     for (std::vector<const char *>::iterator I = MoreHelp->begin(),
1496                                              E = MoreHelp->end();
1497          I != E; ++I)
1498       outs() << *I;
1499     MoreHelp->clear();
1500
1501     // Halt the program since help information was printed
1502     exit(0);
1503   }
1504 };
1505
1506 class CategorizedHelpPrinter : public HelpPrinter {
1507 public:
1508   explicit CategorizedHelpPrinter(bool showHidden) : HelpPrinter(showHidden) {}
1509
1510   // Helper function for printOptions().
1511   // It shall return true if A's name should be lexographically
1512   // ordered before B's name. It returns false otherwise.
1513   static bool OptionCategoryCompare(OptionCategory *A, OptionCategory *B) {
1514     return strcmp(A->getName(), B->getName()) < 0;
1515   }
1516
1517   // Make sure we inherit our base class's operator=()
1518   using HelpPrinter::operator= ;
1519
1520 protected:
1521   void printOptions(StrOptionPairVector &Opts, size_t MaxArgLen) override {
1522     std::vector<OptionCategory *> SortedCategories;
1523     std::map<OptionCategory *, std::vector<Option *> > CategorizedOptions;
1524
1525     // Collect registered option categories into vector in preparation for
1526     // sorting.
1527     for (OptionCatSet::const_iterator I = RegisteredOptionCategories->begin(),
1528                                       E = RegisteredOptionCategories->end();
1529          I != E; ++I) {
1530       SortedCategories.push_back(*I);
1531     }
1532
1533     // Sort the different option categories alphabetically.
1534     assert(SortedCategories.size() > 0 && "No option categories registered!");
1535     std::sort(SortedCategories.begin(), SortedCategories.end(),
1536               OptionCategoryCompare);
1537
1538     // Create map to empty vectors.
1539     for (std::vector<OptionCategory *>::const_iterator
1540              I = SortedCategories.begin(),
1541              E = SortedCategories.end();
1542          I != E; ++I)
1543       CategorizedOptions[*I] = std::vector<Option *>();
1544
1545     // Walk through pre-sorted options and assign into categories.
1546     // Because the options are already alphabetically sorted the
1547     // options within categories will also be alphabetically sorted.
1548     for (size_t I = 0, E = Opts.size(); I != E; ++I) {
1549       Option *Opt = Opts[I].second;
1550       assert(CategorizedOptions.count(Opt->Category) > 0 &&
1551              "Option has an unregistered category");
1552       CategorizedOptions[Opt->Category].push_back(Opt);
1553     }
1554
1555     // Now do printing.
1556     for (std::vector<OptionCategory *>::const_iterator
1557              Category = SortedCategories.begin(),
1558              E = SortedCategories.end();
1559          Category != E; ++Category) {
1560       // Hide empty categories for -help, but show for -help-hidden.
1561       bool IsEmptyCategory = CategorizedOptions[*Category].size() == 0;
1562       if (!ShowHidden && IsEmptyCategory)
1563         continue;
1564
1565       // Print category information.
1566       outs() << "\n";
1567       outs() << (*Category)->getName() << ":\n";
1568
1569       // Check if description is set.
1570       if ((*Category)->getDescription() != nullptr)
1571         outs() << (*Category)->getDescription() << "\n\n";
1572       else
1573         outs() << "\n";
1574
1575       // When using -help-hidden explicitly state if the category has no
1576       // options associated with it.
1577       if (IsEmptyCategory) {
1578         outs() << "  This option category has no options.\n";
1579         continue;
1580       }
1581       // Loop over the options in the category and print.
1582       for (std::vector<Option *>::const_iterator
1583                Opt = CategorizedOptions[*Category].begin(),
1584                E = CategorizedOptions[*Category].end();
1585            Opt != E; ++Opt)
1586         (*Opt)->printOptionInfo(MaxArgLen);
1587     }
1588   }
1589 };
1590
1591 // This wraps the Uncategorizing and Categorizing printers and decides
1592 // at run time which should be invoked.
1593 class HelpPrinterWrapper {
1594 private:
1595   HelpPrinter &UncategorizedPrinter;
1596   CategorizedHelpPrinter &CategorizedPrinter;
1597
1598 public:
1599   explicit HelpPrinterWrapper(HelpPrinter &UncategorizedPrinter,
1600                               CategorizedHelpPrinter &CategorizedPrinter) :
1601     UncategorizedPrinter(UncategorizedPrinter),
1602     CategorizedPrinter(CategorizedPrinter) { }
1603
1604   // Invoke the printer.
1605   void operator=(bool Value);
1606 };
1607
1608 } // End anonymous namespace
1609
1610 // Declare the four HelpPrinter instances that are used to print out help, or
1611 // help-hidden as an uncategorized list or in categories.
1612 static HelpPrinter UncategorizedNormalPrinter(false);
1613 static HelpPrinter UncategorizedHiddenPrinter(true);
1614 static CategorizedHelpPrinter CategorizedNormalPrinter(false);
1615 static CategorizedHelpPrinter CategorizedHiddenPrinter(true);
1616
1617
1618 // Declare HelpPrinter wrappers that will decide whether or not to invoke
1619 // a categorizing help printer
1620 static HelpPrinterWrapper WrappedNormalPrinter(UncategorizedNormalPrinter,
1621                                                CategorizedNormalPrinter);
1622 static HelpPrinterWrapper WrappedHiddenPrinter(UncategorizedHiddenPrinter,
1623                                                CategorizedHiddenPrinter);
1624
1625 // Define uncategorized help printers.
1626 // -help-list is hidden by default because if Option categories are being used
1627 // then -help behaves the same as -help-list.
1628 static cl::opt<HelpPrinter, true, parser<bool> >
1629 HLOp("help-list",
1630      cl::desc("Display list of available options (-help-list-hidden for more)"),
1631      cl::location(UncategorizedNormalPrinter), cl::Hidden, cl::ValueDisallowed);
1632
1633 static cl::opt<HelpPrinter, true, parser<bool> >
1634 HLHOp("help-list-hidden",
1635      cl::desc("Display list of all available options"),
1636      cl::location(UncategorizedHiddenPrinter), cl::Hidden, cl::ValueDisallowed);
1637
1638 // Define uncategorized/categorized help printers. These printers change their
1639 // behaviour at runtime depending on whether one or more Option categories have
1640 // been declared.
1641 static cl::opt<HelpPrinterWrapper, true, parser<bool> >
1642 HOp("help", cl::desc("Display available options (-help-hidden for more)"),
1643     cl::location(WrappedNormalPrinter), cl::ValueDisallowed);
1644
1645 static cl::opt<HelpPrinterWrapper, true, parser<bool> >
1646 HHOp("help-hidden", cl::desc("Display all available options"),
1647      cl::location(WrappedHiddenPrinter), cl::Hidden, cl::ValueDisallowed);
1648
1649
1650
1651 static cl::opt<bool>
1652 PrintOptions("print-options",
1653              cl::desc("Print non-default options after command line parsing"),
1654              cl::Hidden, cl::init(false));
1655
1656 static cl::opt<bool>
1657 PrintAllOptions("print-all-options",
1658                 cl::desc("Print all option values after command line parsing"),
1659                 cl::Hidden, cl::init(false));
1660
1661 void HelpPrinterWrapper::operator=(bool Value) {
1662   if (Value == false)
1663     return;
1664
1665   // Decide which printer to invoke. If more than one option category is
1666   // registered then it is useful to show the categorized help instead of
1667   // uncategorized help.
1668   if (RegisteredOptionCategories->size() > 1) {
1669     // unhide -help-list option so user can have uncategorized output if they
1670     // want it.
1671     HLOp.setHiddenFlag(NotHidden);
1672
1673     CategorizedPrinter = true; // Invoke categorized printer
1674   }
1675   else
1676     UncategorizedPrinter = true; // Invoke uncategorized printer
1677 }
1678
1679 // Print the value of each option.
1680 void cl::PrintOptionValues() {
1681   if (!PrintOptions && !PrintAllOptions) return;
1682
1683   // Get all the options.
1684   SmallVector<Option*, 4> PositionalOpts;
1685   SmallVector<Option*, 4> SinkOpts;
1686   StringMap<Option*> OptMap;
1687   GetOptionInfo(PositionalOpts, SinkOpts, OptMap);
1688
1689   SmallVector<std::pair<const char *, Option*>, 128> Opts;
1690   sortOpts(OptMap, Opts, /*ShowHidden*/true);
1691
1692   // Compute the maximum argument length...
1693   size_t MaxArgLen = 0;
1694   for (size_t i = 0, e = Opts.size(); i != e; ++i)
1695     MaxArgLen = std::max(MaxArgLen, Opts[i].second->getOptionWidth());
1696
1697   for (size_t i = 0, e = Opts.size(); i != e; ++i)
1698     Opts[i].second->printOptionValue(MaxArgLen, PrintAllOptions);
1699 }
1700
1701 static void (*OverrideVersionPrinter)() = nullptr;
1702
1703 static std::vector<void (*)()>* ExtraVersionPrinters = nullptr;
1704
1705 namespace {
1706 class VersionPrinter {
1707 public:
1708   void print() {
1709     raw_ostream &OS = outs();
1710     OS << "LLVM (http://llvm.org/):\n"
1711        << "  " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
1712 #ifdef LLVM_VERSION_INFO
1713     OS << " " << LLVM_VERSION_INFO;
1714 #endif
1715     OS << "\n  ";
1716 #ifndef __OPTIMIZE__
1717     OS << "DEBUG build";
1718 #else
1719     OS << "Optimized build";
1720 #endif
1721 #ifndef NDEBUG
1722     OS << " with assertions";
1723 #endif
1724     std::string CPU = sys::getHostCPUName();
1725     if (CPU == "generic") CPU = "(unknown)";
1726     OS << ".\n"
1727 #if (ENABLE_TIMESTAMPS == 1)
1728        << "  Built " << __DATE__ << " (" << __TIME__ << ").\n"
1729 #endif
1730        << "  Default target: " << sys::getDefaultTargetTriple() << '\n'
1731        << "  Host CPU: " << CPU << '\n';
1732   }
1733   void operator=(bool OptionWasSpecified) {
1734     if (!OptionWasSpecified) return;
1735
1736     if (OverrideVersionPrinter != nullptr) {
1737       (*OverrideVersionPrinter)();
1738       exit(0);
1739     }
1740     print();
1741
1742     // Iterate over any registered extra printers and call them to add further
1743     // information.
1744     if (ExtraVersionPrinters != nullptr) {
1745       outs() << '\n';
1746       for (std::vector<void (*)()>::iterator I = ExtraVersionPrinters->begin(),
1747                                              E = ExtraVersionPrinters->end();
1748            I != E; ++I)
1749         (*I)();
1750     }
1751
1752     exit(0);
1753   }
1754 };
1755 } // End anonymous namespace
1756
1757
1758 // Define the --version option that prints out the LLVM version for the tool
1759 static VersionPrinter VersionPrinterInstance;
1760
1761 static cl::opt<VersionPrinter, true, parser<bool> >
1762 VersOp("version", cl::desc("Display the version of this program"),
1763     cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1764
1765 // Utility function for printing the help message.
1766 void cl::PrintHelpMessage(bool Hidden, bool Categorized) {
1767   // This looks weird, but it actually prints the help message. The Printers are
1768   // types of HelpPrinter and the help gets printed when its operator= is
1769   // invoked. That's because the "normal" usages of the help printer is to be
1770   // assigned true/false depending on whether -help or -help-hidden was given or
1771   // not.  Since we're circumventing that we have to make it look like -help or
1772   // -help-hidden were given, so we assign true.
1773
1774   if (!Hidden && !Categorized)
1775     UncategorizedNormalPrinter = true;
1776   else if (!Hidden && Categorized)
1777     CategorizedNormalPrinter = true;
1778   else if (Hidden && !Categorized)
1779     UncategorizedHiddenPrinter = true;
1780   else
1781     CategorizedHiddenPrinter = true;
1782 }
1783
1784 /// Utility function for printing version number.
1785 void cl::PrintVersionMessage() {
1786   VersionPrinterInstance.print();
1787 }
1788
1789 void cl::SetVersionPrinter(void (*func)()) {
1790   OverrideVersionPrinter = func;
1791 }
1792
1793 void cl::AddExtraVersionPrinter(void (*func)()) {
1794   if (!ExtraVersionPrinters)
1795     ExtraVersionPrinters = new std::vector<void (*)()>;
1796
1797   ExtraVersionPrinters->push_back(func);
1798 }
1799
1800 void cl::getRegisteredOptions(StringMap<Option*> &Map)
1801 {
1802   // Get all the options.
1803   SmallVector<Option*, 4> PositionalOpts; //NOT USED
1804   SmallVector<Option*, 4> SinkOpts;  //NOT USED
1805   assert(Map.size() == 0 && "StringMap must be empty");
1806   GetOptionInfo(PositionalOpts, SinkOpts, Map);
1807   return;
1808 }