|
LLVM
3.7.0
|
#include "llvm/Support/CommandLine.h"#include "llvm-c/Support.h"#include "llvm/ADT/ArrayRef.h"#include "llvm/ADT/STLExtras.h"#include "llvm/ADT/SmallPtrSet.h"#include "llvm/ADT/SmallString.h"#include "llvm/ADT/StringMap.h"#include "llvm/ADT/Twine.h"#include "llvm/Config/config.h"#include "llvm/Support/ConvertUTF.h"#include "llvm/Support/Debug.h"#include "llvm/Support/ErrorHandling.h"#include "llvm/Support/Host.h"#include "llvm/Support/ManagedStatic.h"#include "llvm/Support/MemoryBuffer.h"#include "llvm/Support/Path.h"#include "llvm/Support/StringSaver.h"#include "llvm/Support/raw_ostream.h"#include <cstdlib>#include <map>Go to the source code of this file.
Namespaces | |
| llvm | |
| Compute iterated dominance frontiers using a linear time algorithm. | |
| llvm::cl | |
| cl Namespace - This namespace contains all of the command line option processing machinery. | |
Macros | |
| #define | DEBUG_TYPE "commandline" |
| #define | PRINT_OPT_DIFF(T) |
Functions | |
| static Option * | LookupNearestOption (StringRef Arg, const StringMap< Option * > &OptionsMap, std::string &NearestString) |
| LookupNearestOption - Lookup the closest match to the option specified by the specified option on the command line. More... | |
| static bool | CommaSeparateAndAddOccurrence (Option *Handler, unsigned pos, StringRef ArgName, StringRef Value, bool MultiArg=false) |
| CommaSeparateAndAddOccurrence - A wrapper around Handler->addOccurrence() that does special handling of cl::CommaSeparated options. More... | |
| static bool | ProvideOption (Option *Handler, StringRef ArgName, StringRef Value, int argc, const char *const *argv, int &i) |
| ProvideOption - For Value, this differentiates between an empty value ("") and a null value (StringRef()). More... | |
| static bool | ProvidePositionalOption (Option *Handler, StringRef Arg, int i) |
| static bool | isGrouping (const Option *O) |
| static bool | isPrefixedOrGrouping (const Option *O) |
| static Option * | getOptionPred (StringRef Name, size_t &Length, bool(*Pred)(const Option *), const StringMap< Option * > &OptionsMap) |
| static Option * | HandlePrefixedOrGroupedOption (StringRef &Arg, StringRef &Value, bool &ErrorParsing, const StringMap< Option * > &OptionsMap) |
| HandlePrefixedOrGroupedOption - The specified argument string (which started with at least one '-') does not fully match an available option. More... | |
| static bool | RequiresValue (const Option *O) |
| static bool | EatsUnboundedNumberOfValues (const Option *O) |
| static bool | isWhitespace (char C) |
| static bool | isQuote (char C) |
| static bool | isGNUSpecial (char C) |
| static size_t | parseBackslash (StringRef Src, size_t I, SmallString< 128 > &Token) |
| Backslashes are interpreted in a rather complicated way in the Windows-style command line, because backslashes are used both to separate path and to escape double quote. More... | |
| static bool | hasUTF8ByteOrderMark (ArrayRef< char > S) |
| static bool | ExpandResponseFile (const char *FName, StringSaver &Saver, TokenizerCallback Tokenizer, SmallVectorImpl< const char * > &NewArgv, bool MarkEOLs=false) |
| static const char * | getValueStr (const Option &O, const char *DefaultMsg) |
| static void | printHelpStr (StringRef HelpStr, size_t Indent, size_t FirstLineIndentedBy) |
| static bool | parseDouble (Option &O, StringRef Arg, double &Value) |
| static int | OptNameCompare (const std::pair< const char *, Option * > *LHS, const std::pair< const char *, Option * > *RHS) |
| static void | sortOpts (StringMap< Option * > &OptMap, SmallVectorImpl< std::pair< const char *, Option * >> &Opts, bool ShowHidden) |
| static HelpPrinter | UncategorizedNormalPrinter (false) |
| static HelpPrinter | UncategorizedHiddenPrinter (true) |
| static CategorizedHelpPrinter | CategorizedNormalPrinter (false) |
| static CategorizedHelpPrinter | CategorizedHiddenPrinter (true) |
| static HelpPrinterWrapper | WrappedNormalPrinter (UncategorizedNormalPrinter, CategorizedNormalPrinter) |
| static HelpPrinterWrapper | WrappedHiddenPrinter (UncategorizedHiddenPrinter, CategorizedHiddenPrinter) |
| void | LLVMParseCommandLineOptions (int argc, const char *const *argv, const char *Overview) |
| This function parses the given arguments using the LLVM command line parser. More... | |
Variables | |
| static ManagedStatic < CommandLineParser > | GlobalParser |
| static const size_t | MaxOptWidth = 8 |
| static cl::OptionCategory | GenericCategory ("Generic Options") |
| static cl::opt< HelpPrinter, true, parser< bool > > | HLOp ("help-list", cl::desc("Display list of available options (-help-list-hidden for more)"), cl::location(UncategorizedNormalPrinter), cl::Hidden, cl::ValueDisallowed, cl::cat(GenericCategory)) |
| static cl::opt< HelpPrinter, true, parser< bool > > | HLHOp ("help-list-hidden", cl::desc("Display list of all available options"), cl::location(UncategorizedHiddenPrinter), cl::Hidden, cl::ValueDisallowed, cl::cat(GenericCategory)) |
| static cl::opt < HelpPrinterWrapper, true, parser< bool > > | HOp ("help", cl::desc("Display available options (-help-hidden for more)"), cl::location(WrappedNormalPrinter), cl::ValueDisallowed, cl::cat(GenericCategory)) |
| static cl::opt < HelpPrinterWrapper, true, parser< bool > > | HHOp ("help-hidden", cl::desc("Display all available options"), cl::location(WrappedHiddenPrinter), cl::Hidden, cl::ValueDisallowed, cl::cat(GenericCategory)) |
| static cl::opt< bool > | PrintOptions ("print-options", cl::desc("Print non-default options after command line parsing"), cl::Hidden, cl::init(false), cl::cat(GenericCategory)) |
| static cl::opt< bool > | PrintAllOptions ("print-all-options", cl::desc("Print all option values after command line parsing"), cl::Hidden, cl::init(false), cl::cat(GenericCategory)) |
| static void(* | OverrideVersionPrinter )() = nullptr |
| static std::vector< void(*)()> * | ExtraVersionPrinters = nullptr |
| static VersionPrinter | VersionPrinterInstance |
| static cl::opt< VersionPrinter, true, parser< bool > > | VersOp ("version", cl::desc("Display the version of this program"), cl::location(VersionPrinterInstance), cl::ValueDisallowed, cl::cat(GenericCategory)) |
| #define DEBUG_TYPE "commandline" |
Definition at line 42 of file CommandLine.cpp.
| #define PRINT_OPT_DIFF | ( | T | ) |
Definition at line 1393 of file CommandLine.cpp.
|
static |
Referenced by llvm::cl::PrintHelpMessage().
|
static |
Referenced by llvm::cl::PrintHelpMessage().
|
static |
CommaSeparateAndAddOccurrence - A wrapper around Handler->addOccurrence() that does special handling of cl::CommaSeparated options.
Definition at line 326 of file CommandLine.cpp.
References llvm::cl::Option::addOccurrence(), llvm::cl::CommaSeparated, llvm::StringRef::find(), llvm::cl::Option::getMiscFlags(), llvm::StringRef::npos, and llvm::StringRef::substr().
Referenced by ProvideOption().
Definition at line 513 of file CommandLine.cpp.
References llvm::cl::Option::getNumOccurrencesFlag(), llvm::cl::OneOrMore, and llvm::cl::ZeroOrMore.
|
static |
Definition at line 706 of file CommandLine.cpp.
References llvm::convertUTF16ToUTF8String(), llvm::ErrorOr< T >::get(), llvm::MemoryBuffer::getBufferEnd(), llvm::MemoryBuffer::getBufferSize(), llvm::MemoryBuffer::getBufferStart(), llvm::MemoryBuffer::getFile(), llvm::hasUTF16ByteOrderMark(), and hasUTF8ByteOrderMark().
Referenced by llvm::cl::ExpandResponseFiles().
|
static |
Definition at line 435 of file CommandLine.cpp.
References llvm::StringMap< ValueTy, AllocatorTy >::end(), llvm::StringMap< ValueTy, AllocatorTy >::find(), llvm::StringMapEntry< ValueTy >::second, llvm::StringRef::size(), and llvm::StringRef::substr().
Referenced by HandlePrefixedOrGroupedOption().
Definition at line 1147 of file CommandLine.cpp.
References llvm::cl::Option::ValueStr.
Referenced by llvm::cl::basic_parser_impl::getOptionWidth(), and llvm::cl::basic_parser_impl::printOptionInfo().
|
static |
HandlePrefixedOrGroupedOption - The specified argument string (which started with at least one '-') does not fully match an available option.
Check to see if this is a prefix or grouped option. If so, split arg into output an Arg/Value pair and return the Option to parse it with.
Definition at line 461 of file CommandLine.cpp.
References llvm::StringMap< ValueTy, AllocatorTy >::count(), llvm::NVPTXISD::Dummy, llvm::StringMap< ValueTy, AllocatorTy >::find(), llvm::cl::Option::getFormattingFlag(), getOptionPred(), llvm::cl::Option::getValueExpectedFlag(), isGrouping(), isPrefixedOrGrouping(), llvm::cl::Prefix, ProvideOption(), llvm::StringRef::size(), llvm::StringRef::substr(), and llvm::cl::ValueRequired.
Definition at line 702 of file CommandLine.cpp.
References llvm::ArrayRef< T >::size().
Referenced by ExpandResponseFile().
|
static |
Definition at line 522 of file CommandLine.cpp.
Referenced by llvm::cl::TokenizeGNUCommandLine().
Definition at line 422 of file CommandLine.cpp.
References llvm::cl::Option::getFormattingFlag(), and llvm::cl::Grouping.
Referenced by HandlePrefixedOrGroupedOption(), and isPrefixedOrGrouping().
Definition at line 425 of file CommandLine.cpp.
References llvm::cl::Option::getFormattingFlag(), isGrouping(), and llvm::cl::Prefix.
Referenced by HandlePrefixedOrGroupedOption().
|
static |
Definition at line 520 of file CommandLine.cpp.
Referenced by llvm::cl::TokenizeGNUCommandLine().
|
static |
Definition at line 518 of file CommandLine.cpp.
Referenced by llvm::cl::TokenizeGNUCommandLine(), and llvm::cl::TokenizeWindowsCommandLine().
This function parses the given arguments using the LLVM command line parser.
Note that the only stable thing about this function is its signature; you cannot rely on any particular set of command line arguments being interpreted the same way across LLVM versions.
Definition at line 1855 of file CommandLine.cpp.
References llvm::cl::ParseCommandLineOptions().
|
static |
LookupNearestOption - Lookup the closest match to the option specified by the specified option on the command line.
If there is a value specified (after an equal sign) return that as well. This assumes that leading dashes have already been stripped.
Definition at line 280 of file CommandLine.cpp.
References llvm::cl::Option::ArgStr, llvm::StringMap< ValueTy, AllocatorTy >::begin(), llvm::StringRef::edit_distance(), llvm::StringRef::empty(), llvm::StringMap< ValueTy, AllocatorTy >::end(), llvm::cl::Option::getExtraOptionNames(), llvm::cl::Option::getValueExpectedFlag(), llvm::SmallVectorTemplateBase< T, isPodLike >::push_back(), llvm::SmallVectorTemplateCommon< T, typename >::size(), llvm::StringRef::split(), and llvm::cl::ValueDisallowed.
|
static |
Definition at line 1447 of file CommandLine.cpp.
Referenced by sortOpts().
|
static |
Backslashes are interpreted in a rather complicated way in the Windows-style command line, because backslashes are used both to separate path and to escape double quote.
This method consumes runs of backslashes as well as the following double quote if it's escaped.
Definition at line 601 of file CommandLine.cpp.
References llvm::SmallString< InternalLen >::append(), I, llvm::SmallVectorTemplateBase< T, isPodLike >::push_back(), and llvm::StringRef::size().
Referenced by llvm::cl::TokenizeWindowsCommandLine().
Definition at line 1279 of file CommandLine.cpp.
References llvm::StringRef::begin(), llvm::SmallString< InternalLen >::c_str(), llvm::StringRef::end(), and llvm::cl::Option::error().
|
static |
Definition at line 1160 of file CommandLine.cpp.
References llvm::raw_ostream::indent(), llvm::outs(), Split(), and llvm::StringRef::split().
Referenced by llvm::cl::generic_parser_base::printOptionInfo(), and llvm::cl::basic_parser_impl::printOptionInfo().
|
inlinestatic |
ProvideOption - For Value, this differentiates between an empty value ("") and a null value (StringRef()).
The later is accepted for arguments that don't allow a value (-foo) the former is rejected (-foo=).
Definition at line 358 of file CommandLine.cpp.
References CommaSeparateAndAddOccurrence(), llvm::StringRef::data(), llvm::cl::Option::error(), llvm::cl::Option::getNumAdditionalVals(), llvm::cl::Option::getValueExpectedFlag(), llvm::cl::ValueDisallowed, llvm::cl::ValueOptional, and llvm::cl::ValueRequired.
Referenced by HandlePrefixedOrGroupedOption(), and ProvidePositionalOption().
Definition at line 416 of file CommandLine.cpp.
References llvm::cl::Option::ArgStr, llvm::NVPTXISD::Dummy, and ProvideOption().
Definition at line 508 of file CommandLine.cpp.
References llvm::cl::Option::getNumOccurrencesFlag(), llvm::cl::OneOrMore, and llvm::cl::Required.
|
static |
Definition at line 1453 of file CommandLine.cpp.
References llvm::array_pod_sort(), llvm::StringMap< ValueTy, AllocatorTy >::begin(), llvm::StringRef::data(), llvm::StringMap< ValueTy, AllocatorTy >::end(), llvm::StringMapEntry< ValueTy >::getKey(), llvm::cl::Hidden, I, llvm::SmallPtrSetImpl< PtrType >::insert(), OptNameCompare(), llvm::cl::ReallyHidden, and llvm::StringMapEntry< ValueTy >::second.
|
static |
Referenced by llvm::cl::PrintHelpMessage().
|
static |
Referenced by llvm::cl::PrintHelpMessage().
|
static |
|
static |
|
static |
Definition at line 1737 of file CommandLine.cpp.
Referenced by llvm::cl::AddExtraVersionPrinter().
|
static |
Referenced by llvm::cl::HideUnrelatedOptions().
|
static |
Definition at line 213 of file CommandLine.cpp.
Referenced by llvm::cl::Option::addArgument(), llvm::cl::AddLiteralOption(), llvm::cl::Option::error(), llvm::cl::extrahelp::extrahelp(), llvm::cl::getRegisteredOptions(), llvm::cl::HideUnrelatedOptions(), llvm::cl::ParseCommandLineOptions(), llvm::cl::PrintOptionValues(), llvm::cl::Option::removeArgument(), and llvm::cl::Option::setArgStr().
|
static |
|
static |
|
static |
|
static |
|
static |
Definition at line 1359 of file CommandLine.cpp.
Referenced by llvm::cl::generic_parser_base::printGenericOptionDiff().
|
static |
Definition at line 1735 of file CommandLine.cpp.
Referenced by llvm::cl::SetVersionPrinter().
|
static |
|
static |
|
static |
Definition at line 1794 of file CommandLine.cpp.
Referenced by llvm::cl::PrintVersionMessage().
|
static |
1.8.6