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/Support/ErrorHandling.h" 21 #include "llvm/Support/MemoryBuffer.h" 22 #include "llvm/Support/ManagedStatic.h" 23 #include "llvm/Support/raw_ostream.h" 24 #include "llvm/Target/TargetRegistry.h" 25 #include "llvm/System/Host.h" 26 #include "llvm/System/Path.h" 27 #include "llvm/ADT/OwningPtr.h" 28 #include "llvm/ADT/StringMap.h" 29 #include "llvm/ADT/SmallString.h" 30 #include "llvm/ADT/Twine.h" 31 #include "llvm/Config/config.h" 32 #include <set> 33 #include <cerrno> 34 #include <cstdlib> 35 using namespace llvm; 36 using namespace cl; 37 38 //===----------------------------------------------------------------------===// 39 // Template instantiations and anchors. 40 // 41 TEMPLATE_INSTANTIATION(class basic_parser<bool>); 42 TEMPLATE_INSTANTIATION(class basic_parser<boolOrDefault>); 43 TEMPLATE_INSTANTIATION(class basic_parser<int>); 44 TEMPLATE_INSTANTIATION(class basic_parser<unsigned>); 45 TEMPLATE_INSTANTIATION(class basic_parser<double>); 46 TEMPLATE_INSTANTIATION(class basic_parser<float>); 47 TEMPLATE_INSTANTIATION(class basic_parser<std::string>); 48 TEMPLATE_INSTANTIATION(class basic_parser<char>); 49 50 TEMPLATE_INSTANTIATION(class opt<unsigned>); 51 TEMPLATE_INSTANTIATION(class opt<int>); 52 TEMPLATE_INSTANTIATION(class opt<std::string>); 53 TEMPLATE_INSTANTIATION(class opt<char>); 54 TEMPLATE_INSTANTIATION(class opt<bool>); 55 56 void Option::anchor() {} 57 void basic_parser_impl::anchor() {} 58 void parser<bool>::anchor() {} 59 void parser<boolOrDefault>::anchor() {} 60 void parser<int>::anchor() {} 61 void parser<unsigned>::anchor() {} 62 void parser<double>::anchor() {} 63 void parser<float>::anchor() {} 64 void parser<std::string>::anchor() {} 65 void parser<char>::anchor() {} 66 67 //===----------------------------------------------------------------------===// 68 69 // Globals for name and overview of program. Program name is not a string to 70 // avoid static ctor/dtor issues. 71 static char ProgramName[80] = "<premain>"; 72 static const char *ProgramOverview = 0; 73 74 // This collects additional help to be printed. 75 static ManagedStatic<std::vector<const char*> > MoreHelp; 76 77 extrahelp::extrahelp(const char *Help) 78 : morehelp(Help) { 79 MoreHelp->push_back(Help); 80 } 81 82 static bool OptionListChanged = false; 83 84 // MarkOptionsChanged - Internal helper function. 85 void cl::MarkOptionsChanged() { 86 OptionListChanged = true; 87 } 88 89 /// RegisteredOptionList - This is the list of the command line options that 90 /// have statically constructed themselves. 91 static Option *RegisteredOptionList = 0; 92 93 void Option::addArgument() { 94 assert(NextRegistered == 0 && "argument multiply registered!"); 95 96 NextRegistered = RegisteredOptionList; 97 RegisteredOptionList = this; 98 MarkOptionsChanged(); 99 } 100 101 102 //===----------------------------------------------------------------------===// 103 // Basic, shared command line option processing machinery. 104 // 105 106 /// GetOptionInfo - Scan the list of registered options, turning them into data 107 /// structures that are easier to handle. 108 static void GetOptionInfo(std::vector<Option*> &PositionalOpts, 109 std::vector<Option*> &SinkOpts, 110 StringMap<Option*> &OptionsMap) { 111 std::vector<const char*> OptionNames; 112 Option *CAOpt = 0; // The ConsumeAfter option if it exists. 113 for (Option *O = RegisteredOptionList; O; O = O->getNextRegisteredOption()) { 114 // If this option wants to handle multiple option names, get the full set. 115 // This handles enum options like "-O1 -O2" etc. 116 O->getExtraOptionNames(OptionNames); 117 if (O->ArgStr[0]) 118 OptionNames.push_back(O->ArgStr); 119 120 // Handle named options. 121 for (size_t i = 0, e = OptionNames.size(); i != e; ++i) { 122 // Add argument to the argument map! 123 if (OptionsMap.GetOrCreateValue(OptionNames[i], O).second != O) { 124 errs() << ProgramName << ": CommandLine Error: Argument '" 125 << OptionNames[i] << "' defined more than once!\n"; 126 } 127 } 128 129 OptionNames.clear(); 130 131 // Remember information about positional options. 132 if (O->getFormattingFlag() == cl::Positional) 133 PositionalOpts.push_back(O); 134 else if (O->getMiscFlags() & cl::Sink) // Remember sink options 135 SinkOpts.push_back(O); 136 else if (O->getNumOccurrencesFlag() == cl::ConsumeAfter) { 137 if (CAOpt) 138 O->error("Cannot specify more than one option with cl::ConsumeAfter!"); 139 CAOpt = O; 140 } 141 } 142 143 if (CAOpt) 144 PositionalOpts.push_back(CAOpt); 145 146 // Make sure that they are in order of registration not backwards. 147 std::reverse(PositionalOpts.begin(), PositionalOpts.end()); 148 } 149 150 151 /// LookupOption - Lookup the option specified by the specified option on the 152 /// command line. If there is a value specified (after an equal sign) return 153 /// that as well. This assumes that leading dashes have already been stripped. 154 static Option *LookupOption(StringRef &Arg, StringRef &Value, 155 const StringMap<Option*> &OptionsMap) { 156 // Reject all dashes. 157 if (Arg.empty()) return 0; 158 159 size_t EqualPos = Arg.find('='); 160 161 // If we have an equals sign, remember the value. 162 if (EqualPos == StringRef::npos) { 163 // Look up the option. 164 StringMap<Option*>::const_iterator I = OptionsMap.find(Arg); 165 return I != OptionsMap.end() ? I->second : 0; 166 } 167 168 // If the argument before the = is a valid option name, we match. If not, 169 // return Arg unmolested. 170 StringMap<Option*>::const_iterator I = 171 OptionsMap.find(Arg.substr(0, EqualPos)); 172 if (I == OptionsMap.end()) return 0; 173 174 Value = Arg.substr(EqualPos+1); 175 Arg = Arg.substr(0, EqualPos); 176 return I->second; 177 } 178 179 180 181 /// ProvideOption - For Value, this differentiates between an empty value ("") 182 /// and a null value (StringRef()). The later is accepted for arguments that 183 /// don't allow a value (-foo) the former is rejected (-foo=). 184 static inline bool ProvideOption(Option *Handler, StringRef ArgName, 185 StringRef Value, int argc, char **argv, 186 int &i) { 187 // Is this a multi-argument option? 188 unsigned NumAdditionalVals = Handler->getNumAdditionalVals(); 189 190 // Enforce value requirements 191 switch (Handler->getValueExpectedFlag()) { 192 case ValueRequired: 193 if (Value.data() == 0) { // No value specified? 194 if (i+1 >= argc) 195 return Handler->error("requires a value!"); 196 // Steal the next argument, like for '-o filename' 197 Value = argv[++i]; 198 } 199 break; 200 case ValueDisallowed: 201 if (NumAdditionalVals > 0) 202 return Handler->error("multi-valued option specified" 203 " with ValueDisallowed modifier!"); 204 205 if (Value.data()) 206 return Handler->error("does not allow a value! '" + 207 Twine(Value) + "' specified."); 208 break; 209 case ValueOptional: 210 break; 211 212 default: 213 errs() << ProgramName 214 << ": Bad ValueMask flag! CommandLine usage error:" 215 << Handler->getValueExpectedFlag() << "\n"; 216 llvm_unreachable(0); 217 } 218 219 // If this isn't a multi-arg option, just run the handler. 220 if (NumAdditionalVals == 0) 221 return Handler->addOccurrence(i, ArgName, Value); 222 223 // If it is, run the handle several times. 224 bool MultiArg = false; 225 226 if (Value.data()) { 227 if (Handler->addOccurrence(i, ArgName, Value, MultiArg)) 228 return true; 229 --NumAdditionalVals; 230 MultiArg = true; 231 } 232 233 while (NumAdditionalVals > 0) { 234 if (i+1 >= argc) 235 return Handler->error("not enough values!"); 236 Value = argv[++i]; 237 238 if (Handler->addOccurrence(i, ArgName, Value, MultiArg)) 239 return true; 240 MultiArg = true; 241 --NumAdditionalVals; 242 } 243 return false; 244 } 245 246 static bool ProvidePositionalOption(Option *Handler, StringRef Arg, int i) { 247 int Dummy = i; 248 return ProvideOption(Handler, Handler->ArgStr, Arg, 0, 0, Dummy); 249 } 250 251 252 // Option predicates... 253 static inline bool isGrouping(const Option *O) { 254 return O->getFormattingFlag() == cl::Grouping; 255 } 256 static inline bool isPrefixedOrGrouping(const Option *O) { 257 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix; 258 } 259 260 // getOptionPred - Check to see if there are any options that satisfy the 261 // specified predicate with names that are the prefixes in Name. This is 262 // checked by progressively stripping characters off of the name, checking to 263 // see if there options that satisfy the predicate. If we find one, return it, 264 // otherwise return null. 265 // 266 static Option *getOptionPred(StringRef Name, size_t &Length, 267 bool (*Pred)(const Option*), 268 const StringMap<Option*> &OptionsMap) { 269 270 StringMap<Option*>::const_iterator OMI = OptionsMap.find(Name); 271 272 // Loop while we haven't found an option and Name still has at least two 273 // characters in it (so that the next iteration will not be the empty 274 // string. 275 while (OMI == OptionsMap.end() && Name.size() > 1) { 276 Name = Name.substr(0, Name.size()-1); // Chop off the last character. 277 OMI = OptionsMap.find(Name); 278 } 279 280 if (OMI != OptionsMap.end() && Pred(OMI->second)) { 281 Length = Name.size(); 282 return OMI->second; // Found one! 283 } 284 return 0; // No option found! 285 } 286 287 /// HandlePrefixedOrGroupedOption - The specified argument string (which started 288 /// with at least one '-') does not fully match an available option. Check to 289 /// see if this is a prefix or grouped option. If so, split arg into output an 290 /// Arg/Value pair and return the Option to parse it with. 291 static Option *HandlePrefixedOrGroupedOption(StringRef &Arg, StringRef &Value, 292 bool &ErrorParsing, 293 const StringMap<Option*> &OptionsMap) { 294 if (Arg.size() == 1) return 0; 295 296 // Do the lookup! 297 size_t Length = 0; 298 Option *PGOpt = getOptionPred(Arg, Length, isPrefixedOrGrouping, OptionsMap); 299 if (PGOpt == 0) return 0; 300 301 // If the option is a prefixed option, then the value is simply the 302 // rest of the name... so fall through to later processing, by 303 // setting up the argument name flags and value fields. 304 if (PGOpt->getFormattingFlag() == cl::Prefix) { 305 Value = Arg.substr(Length); 306 Arg = Arg.substr(0, Length); 307 assert(OptionsMap.count(Arg) && OptionsMap.find(Arg)->second == PGOpt); 308 return PGOpt; 309 } 310 311 // This must be a grouped option... handle them now. Grouping options can't 312 // have values. 313 assert(isGrouping(PGOpt) && "Broken getOptionPred!"); 314 315 do { 316 // Move current arg name out of Arg into OneArgName. 317 StringRef OneArgName = Arg.substr(0, Length); 318 Arg = Arg.substr(Length); 319 320 // Because ValueRequired is an invalid flag for grouped arguments, 321 // we don't need to pass argc/argv in. 322 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired && 323 "Option can not be cl::Grouping AND cl::ValueRequired!"); 324 int Dummy; 325 ErrorParsing |= ProvideOption(PGOpt, OneArgName, 326 StringRef(), 0, 0, Dummy); 327 328 // Get the next grouping option. 329 PGOpt = getOptionPred(Arg, Length, isGrouping, OptionsMap); 330 } while (PGOpt && Length != Arg.size()); 331 332 // Return the last option with Arg cut down to just the last one. 333 return PGOpt; 334 } 335 336 337 338 static bool RequiresValue(const Option *O) { 339 return O->getNumOccurrencesFlag() == cl::Required || 340 O->getNumOccurrencesFlag() == cl::OneOrMore; 341 } 342 343 static bool EatsUnboundedNumberOfValues(const Option *O) { 344 return O->getNumOccurrencesFlag() == cl::ZeroOrMore || 345 O->getNumOccurrencesFlag() == cl::OneOrMore; 346 } 347 348 /// ParseCStringVector - Break INPUT up wherever one or more 349 /// whitespace characters are found, and store the resulting tokens in 350 /// OUTPUT. The tokens stored in OUTPUT are dynamically allocated 351 /// using strdup(), so it is the caller's responsibility to free() 352 /// them later. 353 /// 354 static void ParseCStringVector(std::vector<char *> &OutputVector, 355 const char *Input) { 356 // Characters which will be treated as token separators: 357 StringRef Delims = " \v\f\t\r\n"; 358 359 StringRef WorkStr(Input); 360 while (!WorkStr.empty()) { 361 // If the first character is a delimiter, strip them off. 362 if (Delims.find(WorkStr[0]) != StringRef::npos) { 363 size_t Pos = WorkStr.find_first_not_of(Delims); 364 if (Pos == StringRef::npos) Pos = WorkStr.size(); 365 WorkStr = WorkStr.substr(Pos); 366 continue; 367 } 368 369 // Find position of first delimiter. 370 size_t Pos = WorkStr.find_first_of(Delims); 371 if (Pos == StringRef::npos) Pos = WorkStr.size(); 372 373 // Everything from 0 to Pos is the next word to copy. 374 char *NewStr = (char*)malloc(Pos+1); 375 memcpy(NewStr, WorkStr.data(), Pos); 376 NewStr[Pos] = 0; 377 OutputVector.push_back(NewStr); 378 } 379 } 380 381 /// ParseEnvironmentOptions - An alternative entry point to the 382 /// CommandLine library, which allows you to read the program's name 383 /// from the caller (as PROGNAME) and its command-line arguments from 384 /// an environment variable (whose name is given in ENVVAR). 385 /// 386 void cl::ParseEnvironmentOptions(const char *progName, const char *envVar, 387 const char *Overview, bool ReadResponseFiles) { 388 // Check args. 389 assert(progName && "Program name not specified"); 390 assert(envVar && "Environment variable name missing"); 391 392 // Get the environment variable they want us to parse options out of. 393 const char *envValue = getenv(envVar); 394 if (!envValue) 395 return; 396 397 // Get program's "name", which we wouldn't know without the caller 398 // telling us. 399 std::vector<char*> newArgv; 400 newArgv.push_back(strdup(progName)); 401 402 // Parse the value of the environment variable into a "command line" 403 // and hand it off to ParseCommandLineOptions(). 404 ParseCStringVector(newArgv, envValue); 405 int newArgc = static_cast<int>(newArgv.size()); 406 ParseCommandLineOptions(newArgc, &newArgv[0], Overview, ReadResponseFiles); 407 408 // Free all the strdup()ed strings. 409 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end(); 410 i != e; ++i) 411 free(*i); 412 } 413 414 415 /// ExpandResponseFiles - Copy the contents of argv into newArgv, 416 /// substituting the contents of the response files for the arguments 417 /// of type @file. 418 static void ExpandResponseFiles(unsigned argc, char** argv, 419 std::vector<char*>& newArgv) { 420 for (unsigned i = 1; i != argc; ++i) { 421 char *arg = argv[i]; 422 423 if (arg[0] == '@') { 424 sys::PathWithStatus respFile(++arg); 425 426 // Check that the response file is not empty (mmap'ing empty 427 // files can be problematic). 428 const sys::FileStatus *FileStat = respFile.getFileStatus(); 429 if (FileStat && FileStat->getSize() != 0) { 430 431 // Mmap the response file into memory. 432 OwningPtr<MemoryBuffer> 433 respFilePtr(MemoryBuffer::getFile(respFile.c_str())); 434 435 // If we could open the file, parse its contents, otherwise 436 // pass the @file option verbatim. 437 438 // TODO: we should also support recursive loading of response files, 439 // since this is how gcc behaves. (From their man page: "The file may 440 // itself contain additional @file options; any such options will be 441 // processed recursively.") 442 443 if (respFilePtr != 0) { 444 ParseCStringVector(newArgv, respFilePtr->getBufferStart()); 445 continue; 446 } 447 } 448 } 449 newArgv.push_back(strdup(arg)); 450 } 451 } 452 453 void cl::ParseCommandLineOptions(int argc, char **argv, 454 const char *Overview, bool ReadResponseFiles) { 455 // Process all registered options. 456 std::vector<Option*> PositionalOpts; 457 std::vector<Option*> SinkOpts; 458 StringMap<Option*> Opts; 459 GetOptionInfo(PositionalOpts, SinkOpts, Opts); 460 461 assert((!Opts.empty() || !PositionalOpts.empty()) && 462 "No options specified!"); 463 464 // Expand response files. 465 std::vector<char*> newArgv; 466 if (ReadResponseFiles) { 467 newArgv.push_back(strdup(argv[0])); 468 ExpandResponseFiles(argc, argv, newArgv); 469 argv = &newArgv[0]; 470 argc = static_cast<int>(newArgv.size()); 471 } 472 473 // Copy the program name into ProgName, making sure not to overflow it. 474 std::string ProgName = sys::Path(argv[0]).getLast(); 475 if (ProgName.size() > 79) ProgName.resize(79); 476 strcpy(ProgramName, ProgName.c_str()); 477 478 ProgramOverview = Overview; 479 bool ErrorParsing = false; 480 481 // Check out the positional arguments to collect information about them. 482 unsigned NumPositionalRequired = 0; 483 484 // Determine whether or not there are an unlimited number of positionals 485 bool HasUnlimitedPositionals = false; 486 487 Option *ConsumeAfterOpt = 0; 488 if (!PositionalOpts.empty()) { 489 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) { 490 assert(PositionalOpts.size() > 1 && 491 "Cannot specify cl::ConsumeAfter without a positional argument!"); 492 ConsumeAfterOpt = PositionalOpts[0]; 493 } 494 495 // Calculate how many positional values are _required_. 496 bool UnboundedFound = false; 497 for (size_t i = ConsumeAfterOpt != 0, e = PositionalOpts.size(); 498 i != e; ++i) { 499 Option *Opt = PositionalOpts[i]; 500 if (RequiresValue(Opt)) 501 ++NumPositionalRequired; 502 else if (ConsumeAfterOpt) { 503 // ConsumeAfter cannot be combined with "optional" positional options 504 // unless there is only one positional argument... 505 if (PositionalOpts.size() > 2) 506 ErrorParsing |= 507 Opt->error("error - this positional option will never be matched, " 508 "because it does not Require a value, and a " 509 "cl::ConsumeAfter option is active!"); 510 } else if (UnboundedFound && !Opt->ArgStr[0]) { 511 // This option does not "require" a value... Make sure this option is 512 // not specified after an option that eats all extra arguments, or this 513 // one will never get any! 514 // 515 ErrorParsing |= Opt->error("error - option can never match, because " 516 "another positional argument will match an " 517 "unbounded number of values, and this option" 518 " does not require a value!"); 519 } 520 UnboundedFound |= EatsUnboundedNumberOfValues(Opt); 521 } 522 HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt; 523 } 524 525 // PositionalVals - A vector of "positional" arguments we accumulate into 526 // the process at the end. 527 // 528 SmallVector<std::pair<StringRef,unsigned>, 4> PositionalVals; 529 530 // If the program has named positional arguments, and the name has been run 531 // across, keep track of which positional argument was named. Otherwise put 532 // the positional args into the PositionalVals list... 533 Option *ActivePositionalArg = 0; 534 535 // Loop over all of the arguments... processing them. 536 bool DashDashFound = false; // Have we read '--'? 537 for (int i = 1; i < argc; ++i) { 538 Option *Handler = 0; 539 StringRef Value; 540 StringRef ArgName = ""; 541 542 // If the option list changed, this means that some command line 543 // option has just been registered or deregistered. This can occur in 544 // response to things like -load, etc. If this happens, rescan the options. 545 if (OptionListChanged) { 546 PositionalOpts.clear(); 547 SinkOpts.clear(); 548 Opts.clear(); 549 GetOptionInfo(PositionalOpts, SinkOpts, Opts); 550 OptionListChanged = false; 551 } 552 553 // Check to see if this is a positional argument. This argument is 554 // considered to be positional if it doesn't start with '-', if it is "-" 555 // itself, or if we have seen "--" already. 556 // 557 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) { 558 // Positional argument! 559 if (ActivePositionalArg) { 560 ProvidePositionalOption(ActivePositionalArg, argv[i], i); 561 continue; // We are done! 562 } 563 564 if (!PositionalOpts.empty()) { 565 PositionalVals.push_back(std::make_pair(argv[i],i)); 566 567 // All of the positional arguments have been fulfulled, give the rest to 568 // the consume after option... if it's specified... 569 // 570 if (PositionalVals.size() >= NumPositionalRequired && 571 ConsumeAfterOpt != 0) { 572 for (++i; i < argc; ++i) 573 PositionalVals.push_back(std::make_pair(argv[i],i)); 574 break; // Handle outside of the argument processing loop... 575 } 576 577 // Delay processing positional arguments until the end... 578 continue; 579 } 580 } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 && 581 !DashDashFound) { 582 DashDashFound = true; // This is the mythical "--"? 583 continue; // Don't try to process it as an argument itself. 584 } else if (ActivePositionalArg && 585 (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) { 586 // If there is a positional argument eating options, check to see if this 587 // option is another positional argument. If so, treat it as an argument, 588 // otherwise feed it to the eating positional. 589 ArgName = argv[i]+1; 590 // Eat leading dashes. 591 while (!ArgName.empty() && ArgName[0] == '-') 592 ArgName = ArgName.substr(1); 593 594 Handler = LookupOption(ArgName, Value, Opts); 595 if (!Handler || Handler->getFormattingFlag() != cl::Positional) { 596 ProvidePositionalOption(ActivePositionalArg, argv[i], i); 597 continue; // We are done! 598 } 599 600 } else { // We start with a '-', must be an argument. 601 ArgName = argv[i]+1; 602 // Eat leading dashes. 603 while (!ArgName.empty() && ArgName[0] == '-') 604 ArgName = ArgName.substr(1); 605 606 Handler = LookupOption(ArgName, Value, Opts); 607 608 // Check to see if this "option" is really a prefixed or grouped argument. 609 if (Handler == 0) 610 Handler = HandlePrefixedOrGroupedOption(ArgName, Value, 611 ErrorParsing, Opts); 612 } 613 614 if (Handler == 0) { 615 if (SinkOpts.empty()) { 616 errs() << ProgramName << ": Unknown command line argument '" 617 << argv[i] << "'. Try: '" << argv[0] << " --help'\n"; 618 ErrorParsing = true; 619 } else { 620 for (std::vector<Option*>::iterator I = SinkOpts.begin(), 621 E = SinkOpts.end(); I != E ; ++I) 622 (*I)->addOccurrence(i, "", argv[i]); 623 } 624 continue; 625 } 626 627 // Check to see if this option accepts a comma separated list of values. If 628 // it does, we have to split up the value into multiple values. 629 if (Handler->getMiscFlags() & CommaSeparated) { 630 StringRef Val(Value); 631 StringRef::size_type Pos = Val.find(','); 632 633 while (Pos != StringRef::npos) { 634 // Process the portion before the comma. 635 ErrorParsing |= ProvideOption(Handler, ArgName, Val.substr(0, Pos), 636 argc, argv, i); 637 // Erase the portion before the comma, AND the comma. 638 Val = Val.substr(Pos+1); 639 Value.substr(Pos+1); // Increment the original value pointer as well. 640 641 // Check for another comma. 642 Pos = Val.find(','); 643 } 644 } 645 646 // If this is a named positional argument, just remember that it is the 647 // active one... 648 if (Handler->getFormattingFlag() == cl::Positional) 649 ActivePositionalArg = Handler; 650 else 651 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i); 652 } 653 654 // Check and handle positional arguments now... 655 if (NumPositionalRequired > PositionalVals.size()) { 656 errs() << ProgramName 657 << ": Not enough positional command line arguments specified!\n" 658 << "Must specify at least " << NumPositionalRequired 659 << " positional arguments: See: " << argv[0] << " --help\n"; 660 661 ErrorParsing = true; 662 } else if (!HasUnlimitedPositionals 663 && PositionalVals.size() > PositionalOpts.size()) { 664 errs() << ProgramName 665 << ": Too many positional arguments specified!\n" 666 << "Can specify at most " << PositionalOpts.size() 667 << " positional arguments: See: " << argv[0] << " --help\n"; 668 ErrorParsing = true; 669 670 } else if (ConsumeAfterOpt == 0) { 671 // Positional args have already been handled if ConsumeAfter is specified. 672 unsigned ValNo = 0, NumVals = static_cast<unsigned>(PositionalVals.size()); 673 for (size_t i = 0, e = PositionalOpts.size(); i != e; ++i) { 674 if (RequiresValue(PositionalOpts[i])) { 675 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first, 676 PositionalVals[ValNo].second); 677 ValNo++; 678 --NumPositionalRequired; // We fulfilled our duty... 679 } 680 681 // If we _can_ give this option more arguments, do so now, as long as we 682 // do not give it values that others need. 'Done' controls whether the 683 // option even _WANTS_ any more. 684 // 685 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required; 686 while (NumVals-ValNo > NumPositionalRequired && !Done) { 687 switch (PositionalOpts[i]->getNumOccurrencesFlag()) { 688 case cl::Optional: 689 Done = true; // Optional arguments want _at most_ one value 690 // FALL THROUGH 691 case cl::ZeroOrMore: // Zero or more will take all they can get... 692 case cl::OneOrMore: // One or more will take all they can get... 693 ProvidePositionalOption(PositionalOpts[i], 694 PositionalVals[ValNo].first, 695 PositionalVals[ValNo].second); 696 ValNo++; 697 break; 698 default: 699 llvm_unreachable("Internal error, unexpected NumOccurrences flag in " 700 "positional argument processing!"); 701 } 702 } 703 } 704 } else { 705 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size()); 706 unsigned ValNo = 0; 707 for (size_t j = 1, e = PositionalOpts.size(); j != e; ++j) 708 if (RequiresValue(PositionalOpts[j])) { 709 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j], 710 PositionalVals[ValNo].first, 711 PositionalVals[ValNo].second); 712 ValNo++; 713 } 714 715 // Handle the case where there is just one positional option, and it's 716 // optional. In this case, we want to give JUST THE FIRST option to the 717 // positional option and keep the rest for the consume after. The above 718 // loop would have assigned no values to positional options in this case. 719 // 720 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) { 721 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1], 722 PositionalVals[ValNo].first, 723 PositionalVals[ValNo].second); 724 ValNo++; 725 } 726 727 // Handle over all of the rest of the arguments to the 728 // cl::ConsumeAfter command line option... 729 for (; ValNo != PositionalVals.size(); ++ValNo) 730 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt, 731 PositionalVals[ValNo].first, 732 PositionalVals[ValNo].second); 733 } 734 735 // Loop over args and make sure all required args are specified! 736 for (StringMap<Option*>::iterator I = Opts.begin(), 737 E = Opts.end(); I != E; ++I) { 738 switch (I->second->getNumOccurrencesFlag()) { 739 case Required: 740 case OneOrMore: 741 if (I->second->getNumOccurrences() == 0) { 742 I->second->error("must be specified at least once!"); 743 ErrorParsing = true; 744 } 745 // Fall through 746 default: 747 break; 748 } 749 } 750 751 // Free all of the memory allocated to the map. Command line options may only 752 // be processed once! 753 Opts.clear(); 754 PositionalOpts.clear(); 755 MoreHelp->clear(); 756 757 // Free the memory allocated by ExpandResponseFiles. 758 if (ReadResponseFiles) { 759 // Free all the strdup()ed strings. 760 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end(); 761 i != e; ++i) 762 free (*i); 763 } 764 765 // If we had an error processing our arguments, don't let the program execute 766 if (ErrorParsing) exit(1); 767 } 768 769 //===----------------------------------------------------------------------===// 770 // Option Base class implementation 771 // 772 773 bool Option::error(const Twine &Message, StringRef ArgName) { 774 if (ArgName.data() == 0) ArgName = ArgStr; 775 if (ArgName.empty()) 776 errs() << HelpStr; // Be nice for positional arguments 777 else 778 errs() << ProgramName << ": for the -" << ArgName; 779 780 errs() << " option: " << Message << "\n"; 781 return true; 782 } 783 784 bool Option::addOccurrence(unsigned pos, StringRef ArgName, 785 StringRef Value, bool MultiArg) { 786 if (!MultiArg) 787 NumOccurrences++; // Increment the number of times we have been seen 788 789 switch (getNumOccurrencesFlag()) { 790 case Optional: 791 if (NumOccurrences > 1) 792 return error("may only occur zero or one times!", ArgName); 793 break; 794 case Required: 795 if (NumOccurrences > 1) 796 return error("must occur exactly one time!", ArgName); 797 // Fall through 798 case OneOrMore: 799 case ZeroOrMore: 800 case ConsumeAfter: break; 801 default: return error("bad num occurrences flag value!"); 802 } 803 804 return handleOccurrence(pos, ArgName, Value); 805 } 806 807 808 // getValueStr - Get the value description string, using "DefaultMsg" if nothing 809 // has been specified yet. 810 // 811 static const char *getValueStr(const Option &O, const char *DefaultMsg) { 812 if (O.ValueStr[0] == 0) return DefaultMsg; 813 return O.ValueStr; 814 } 815 816 //===----------------------------------------------------------------------===// 817 // cl::alias class implementation 818 // 819 820 // Return the width of the option tag for printing... 821 size_t alias::getOptionWidth() const { 822 return std::strlen(ArgStr)+6; 823 } 824 825 // Print out the option for the alias. 826 void alias::printOptionInfo(size_t GlobalWidth) const { 827 size_t L = std::strlen(ArgStr); 828 errs() << " -" << ArgStr; 829 errs().indent(GlobalWidth-L-6) << " - " << HelpStr << "\n"; 830 } 831 832 833 834 //===----------------------------------------------------------------------===// 835 // Parser Implementation code... 836 // 837 838 // basic_parser implementation 839 // 840 841 // Return the width of the option tag for printing... 842 size_t basic_parser_impl::getOptionWidth(const Option &O) const { 843 size_t Len = std::strlen(O.ArgStr); 844 if (const char *ValName = getValueName()) 845 Len += std::strlen(getValueStr(O, ValName))+3; 846 847 return Len + 6; 848 } 849 850 // printOptionInfo - Print out information about this option. The 851 // to-be-maintained width is specified. 852 // 853 void basic_parser_impl::printOptionInfo(const Option &O, 854 size_t GlobalWidth) const { 855 outs() << " -" << O.ArgStr; 856 857 if (const char *ValName = getValueName()) 858 outs() << "=<" << getValueStr(O, ValName) << '>'; 859 860 outs().indent(GlobalWidth-getOptionWidth(O)) << " - " << O.HelpStr << '\n'; 861 } 862 863 864 865 866 // parser<bool> implementation 867 // 868 bool parser<bool>::parse(Option &O, StringRef ArgName, 869 StringRef Arg, bool &Value) { 870 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" || 871 Arg == "1") { 872 Value = true; 873 return false; 874 } 875 876 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") { 877 Value = false; 878 return false; 879 } 880 return O.error("'" + Arg + 881 "' is invalid value for boolean argument! Try 0 or 1"); 882 } 883 884 // parser<boolOrDefault> implementation 885 // 886 bool parser<boolOrDefault>::parse(Option &O, StringRef ArgName, 887 StringRef Arg, boolOrDefault &Value) { 888 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" || 889 Arg == "1") { 890 Value = BOU_TRUE; 891 return false; 892 } 893 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") { 894 Value = BOU_FALSE; 895 return false; 896 } 897 898 return O.error("'" + Arg + 899 "' is invalid value for boolean argument! Try 0 or 1"); 900 } 901 902 // parser<int> implementation 903 // 904 bool parser<int>::parse(Option &O, StringRef ArgName, 905 StringRef Arg, int &Value) { 906 if (Arg.getAsInteger(0, Value)) 907 return O.error("'" + Arg + "' value invalid for integer argument!"); 908 return false; 909 } 910 911 // parser<unsigned> implementation 912 // 913 bool parser<unsigned>::parse(Option &O, StringRef ArgName, 914 StringRef Arg, unsigned &Value) { 915 916 if (Arg.getAsInteger(0, Value)) 917 return O.error("'" + Arg + "' value invalid for uint argument!"); 918 return false; 919 } 920 921 // parser<double>/parser<float> implementation 922 // 923 static bool parseDouble(Option &O, StringRef Arg, double &Value) { 924 SmallString<32> TmpStr(Arg.begin(), Arg.end()); 925 const char *ArgStart = TmpStr.c_str(); 926 char *End; 927 Value = strtod(ArgStart, &End); 928 if (*End != 0) 929 return O.error("'" + Arg + "' value invalid for floating point argument!"); 930 return false; 931 } 932 933 bool parser<double>::parse(Option &O, StringRef ArgName, 934 StringRef Arg, double &Val) { 935 return parseDouble(O, Arg, Val); 936 } 937 938 bool parser<float>::parse(Option &O, StringRef ArgName, 939 StringRef Arg, float &Val) { 940 double dVal; 941 if (parseDouble(O, Arg, dVal)) 942 return true; 943 Val = (float)dVal; 944 return false; 945 } 946 947 948 949 // generic_parser_base implementation 950 // 951 952 // findOption - Return the option number corresponding to the specified 953 // argument string. If the option is not found, getNumOptions() is returned. 954 // 955 unsigned generic_parser_base::findOption(const char *Name) { 956 unsigned e = getNumOptions(); 957 958 for (unsigned i = 0; i != e; ++i) { 959 if (strcmp(getOption(i), Name) == 0) 960 return i; 961 } 962 return e; 963 } 964 965 966 // Return the width of the option tag for printing... 967 size_t generic_parser_base::getOptionWidth(const Option &O) const { 968 if (O.hasArgStr()) { 969 size_t Size = std::strlen(O.ArgStr)+6; 970 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) 971 Size = std::max(Size, std::strlen(getOption(i))+8); 972 return Size; 973 } else { 974 size_t BaseSize = 0; 975 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) 976 BaseSize = std::max(BaseSize, std::strlen(getOption(i))+8); 977 return BaseSize; 978 } 979 } 980 981 // printOptionInfo - Print out information about this option. The 982 // to-be-maintained width is specified. 983 // 984 void generic_parser_base::printOptionInfo(const Option &O, 985 size_t GlobalWidth) const { 986 if (O.hasArgStr()) { 987 size_t L = std::strlen(O.ArgStr); 988 outs() << " -" << O.ArgStr; 989 outs().indent(GlobalWidth-L-6) << " - " << O.HelpStr << '\n'; 990 991 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) { 992 size_t NumSpaces = GlobalWidth-strlen(getOption(i))-8; 993 outs() << " =" << getOption(i); 994 outs().indent(NumSpaces) << " - " << getDescription(i) << '\n'; 995 } 996 } else { 997 if (O.HelpStr[0]) 998 outs() << " " << O.HelpStr << '\n'; 999 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) { 1000 size_t L = std::strlen(getOption(i)); 1001 outs() << " -" << getOption(i); 1002 outs().indent(GlobalWidth-L-8) << " - " << getDescription(i) << '\n'; 1003 } 1004 } 1005 } 1006 1007 1008 //===----------------------------------------------------------------------===// 1009 // --help and --help-hidden option implementation 1010 // 1011 1012 namespace { 1013 1014 class HelpPrinter { 1015 size_t MaxArgLen; 1016 const Option *EmptyArg; 1017 const bool ShowHidden; 1018 1019 // isHidden/isReallyHidden - Predicates to be used to filter down arg lists. 1020 inline static bool isHidden(Option *Opt) { 1021 return Opt->getOptionHiddenFlag() >= Hidden; 1022 } 1023 inline static bool isReallyHidden(Option *Opt) { 1024 return Opt->getOptionHiddenFlag() == ReallyHidden; 1025 } 1026 1027 public: 1028 explicit HelpPrinter(bool showHidden) : ShowHidden(showHidden) { 1029 EmptyArg = 0; 1030 } 1031 1032 void operator=(bool Value) { 1033 if (Value == false) return; 1034 1035 // Get all the options. 1036 std::vector<Option*> PositionalOpts; 1037 std::vector<Option*> SinkOpts; 1038 StringMap<Option*> OptMap; 1039 GetOptionInfo(PositionalOpts, SinkOpts, OptMap); 1040 1041 // Copy Options into a vector so we can sort them as we like... 1042 std::vector<Option*> Opts; 1043 for (StringMap<Option*>::iterator I = OptMap.begin(), E = OptMap.end(); 1044 I != E; ++I) { 1045 Opts.push_back(I->second); 1046 } 1047 1048 // Eliminate Hidden or ReallyHidden arguments, depending on ShowHidden 1049 Opts.erase(std::remove_if(Opts.begin(), Opts.end(), 1050 std::ptr_fun(ShowHidden ? isReallyHidden : isHidden)), 1051 Opts.end()); 1052 1053 // Eliminate duplicate entries in table (from enum flags options, f.e.) 1054 { // Give OptionSet a scope 1055 std::set<Option*> OptionSet; 1056 for (unsigned i = 0; i != Opts.size(); ++i) 1057 if (OptionSet.count(Opts[i]) == 0) 1058 OptionSet.insert(Opts[i]); // Add new entry to set 1059 else 1060 Opts.erase(Opts.begin()+i--); // Erase duplicate 1061 } 1062 1063 if (ProgramOverview) 1064 outs() << "OVERVIEW: " << ProgramOverview << "\n"; 1065 1066 outs() << "USAGE: " << ProgramName << " [options]"; 1067 1068 // Print out the positional options. 1069 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists... 1070 if (!PositionalOpts.empty() && 1071 PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter) 1072 CAOpt = PositionalOpts[0]; 1073 1074 for (size_t i = CAOpt != 0, e = PositionalOpts.size(); i != e; ++i) { 1075 if (PositionalOpts[i]->ArgStr[0]) 1076 outs() << " --" << PositionalOpts[i]->ArgStr; 1077 outs() << " " << PositionalOpts[i]->HelpStr; 1078 } 1079 1080 // Print the consume after option info if it exists... 1081 if (CAOpt) outs() << " " << CAOpt->HelpStr; 1082 1083 outs() << "\n\n"; 1084 1085 // Compute the maximum argument length... 1086 MaxArgLen = 0; 1087 for (size_t i = 0, e = Opts.size(); i != e; ++i) 1088 MaxArgLen = std::max(MaxArgLen, Opts[i]->getOptionWidth()); 1089 1090 outs() << "OPTIONS:\n"; 1091 for (size_t i = 0, e = Opts.size(); i != e; ++i) 1092 Opts[i]->printOptionInfo(MaxArgLen); 1093 1094 // Print any extra help the user has declared. 1095 for (std::vector<const char *>::iterator I = MoreHelp->begin(), 1096 E = MoreHelp->end(); I != E; ++I) 1097 outs() << *I; 1098 MoreHelp->clear(); 1099 1100 // Halt the program since help information was printed 1101 exit(1); 1102 } 1103 }; 1104 } // End anonymous namespace 1105 1106 // Define the two HelpPrinter instances that are used to print out help, or 1107 // help-hidden... 1108 // 1109 static HelpPrinter NormalPrinter(false); 1110 static HelpPrinter HiddenPrinter(true); 1111 1112 static cl::opt<HelpPrinter, true, parser<bool> > 1113 HOp("help", cl::desc("Display available options (--help-hidden for more)"), 1114 cl::location(NormalPrinter), cl::ValueDisallowed); 1115 1116 static cl::opt<HelpPrinter, true, parser<bool> > 1117 HHOp("help-hidden", cl::desc("Display all available options"), 1118 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed); 1119 1120 static void (*OverrideVersionPrinter)() = 0; 1121 1122 namespace { 1123 class VersionPrinter { 1124 public: 1125 void print() { 1126 outs() << "Low Level Virtual Machine (http://llvm.org/):\n" 1127 << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION; 1128 #ifdef LLVM_VERSION_INFO 1129 outs() << LLVM_VERSION_INFO; 1130 #endif 1131 outs() << "\n "; 1132 #ifndef __OPTIMIZE__ 1133 outs() << "DEBUG build"; 1134 #else 1135 outs() << "Optimized build"; 1136 #endif 1137 #ifndef NDEBUG 1138 outs() << " with assertions"; 1139 #endif 1140 outs() << ".\n" 1141 << " Built " << __DATE__ << " (" << __TIME__ << ").\n" 1142 << " Host: " << sys::getHostTriple() << '\n' 1143 << "\n" 1144 << " Registered Targets:\n"; 1145 1146 std::vector<std::pair<std::string, const Target*> > Targets; 1147 size_t Width = 0; 1148 for (TargetRegistry::iterator it = TargetRegistry::begin(), 1149 ie = TargetRegistry::end(); it != ie; ++it) { 1150 Targets.push_back(std::make_pair(it->getName(), &*it)); 1151 Width = std::max(Width, Targets.back().first.length()); 1152 } 1153 std::sort(Targets.begin(), Targets.end()); 1154 1155 for (unsigned i = 0, e = Targets.size(); i != e; ++i) { 1156 outs() << " " << Targets[i].first; 1157 outs().indent(Width - Targets[i].first.length()) << " - " 1158 << Targets[i].second->getShortDescription() << '\n'; 1159 } 1160 if (Targets.empty()) 1161 outs() << " (none)\n"; 1162 } 1163 void operator=(bool OptionWasSpecified) { 1164 if (OptionWasSpecified) { 1165 if (OverrideVersionPrinter == 0) { 1166 print(); 1167 exit(1); 1168 } else { 1169 (*OverrideVersionPrinter)(); 1170 exit(1); 1171 } 1172 } 1173 } 1174 }; 1175 } // End anonymous namespace 1176 1177 1178 // Define the --version option that prints out the LLVM version for the tool 1179 static VersionPrinter VersionPrinterInstance; 1180 1181 static cl::opt<VersionPrinter, true, parser<bool> > 1182 VersOp("version", cl::desc("Display the version of this program"), 1183 cl::location(VersionPrinterInstance), cl::ValueDisallowed); 1184 1185 // Utility function for printing the help message. 1186 void cl::PrintHelpMessage() { 1187 // This looks weird, but it actually prints the help message. The 1188 // NormalPrinter variable is a HelpPrinter and the help gets printed when 1189 // its operator= is invoked. That's because the "normal" usages of the 1190 // help printer is to be assigned true/false depending on whether the 1191 // --help option was given or not. Since we're circumventing that we have 1192 // to make it look like --help was given, so we assign true. 1193 NormalPrinter = true; 1194 } 1195 1196 /// Utility function for printing version number. 1197 void cl::PrintVersionMessage() { 1198 VersionPrinterInstance.print(); 1199 } 1200 1201 void cl::SetVersionPrinter(void (*func)()) { 1202 OverrideVersionPrinter = func; 1203 } 1204