| /freebsd-13.1/contrib/llvm-project/lld/include/lld/Common/ |
| H A D | Args.h | 19 class InputArgList; variable 28 int64_t getInteger(llvm::opt::InputArgList &args, unsigned key, 31 int64_t getHex(llvm::opt::InputArgList &args, unsigned key, int64_t Default); 33 std::vector<StringRef> getStrings(llvm::opt::InputArgList &args, int id); 35 uint64_t getZOptionValue(llvm::opt::InputArgList &args, int id, StringRef key,
|
| /freebsd-13.1/contrib/llvm-project/lld/Common/ |
| H A D | Args.cpp | 29 static int64_t getInteger(opt::InputArgList &args, unsigned key, in getInteger() 47 int64_t lld::args::getInteger(opt::InputArgList &args, unsigned key, in getInteger() 52 int64_t lld::args::getHex(opt::InputArgList &args, unsigned key, in getHex() 57 std::vector<StringRef> lld::args::getStrings(opt::InputArgList &args, int id) { in getStrings() 64 uint64_t lld::args::getZOptionValue(opt::InputArgList &args, int id, in getZOptionValue()
|
| /freebsd-13.1/contrib/llvm-project/lld/ELF/ |
| H A D | Driver.h | 34 void createFiles(llvm::opt::InputArgList &args); 36 template <class ELFT> void link(llvm::opt::InputArgList &args); 55 llvm::opt::InputArgList parse(ArrayRef<const char *> argv); 67 std::string createResponseFile(const llvm::opt::InputArgList &args);
|
| H A D | Driver.cpp | 77 static void setConfigs(opt::InputArgList &args); 78 static void readConfigs(opt::InputArgList &args); 469 static void checkZOptions(opt::InputArgList &args) { in checkZOptions() 587 static std::string getRpath(opt::InputArgList &args) { in getRpath() 693 static ICFLevel getICF(opt::InputArgList &args) { in getICF() 766 static bool getP10StubOpt(opt::InputArgList &args) { in getP10StubOpt() 782 getBuildId(opt::InputArgList &args) { in getBuildId() 969 static bool getIsRela(opt::InputArgList &args) { in getIsRela() 997 static void readConfigs(opt::InputArgList &args) { in readConfigs() 1408 static void setConfigs(opt::InputArgList &args) { in setConfigs() [all …]
|
| H A D | DriverUtils.cpp | 57 static void handleColorDiagnostics(opt::InputArgList &args) { in handleColorDiagnostics() 77 static cl::TokenizerCallback getQuotingStyle(opt::InputArgList &args) { in getQuotingStyle() 115 opt::InputArgList ELFOptTable::parse(ArrayRef<const char *> argv) { in parse() 124 opt::InputArgList args = this->ParseArgs(vec, missingIndex, missingCount); in parse() 169 std::string elf::createResponseFile(const opt::InputArgList &args) { in createResponseFile()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Option/ |
| H A D | ArgList.h | 367 class InputArgList final : public ArgList { 390 InputArgList() : NumInputArgStrings(0) {} in InputArgList() function 392 InputArgList(const char* const *ArgBegin, const char* const *ArgEnd); 394 InputArgList(InputArgList &&RHS) in InputArgList() function 399 InputArgList &operator=(InputArgList &&RHS) { 408 ~InputArgList() { releaseMemory(); } in ~InputArgList() 439 const InputArgList &BaseArgs; 446 DerivedArgList(const InputArgList &BaseArgs); 456 const InputArgList &getBaseArgs() const { in getBaseArgs()
|
| H A D | OptTable.h | 30 class InputArgList; variable 86 Arg *parseOneArgGrouped(InputArgList &Args, unsigned &Index) const; 224 InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex, 236 InputArgList parseArgs(int Argc, char *const *Argv, OptSpecifier Unknown,
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Option/ |
| H A D | ArgList.cpp | 196 void InputArgList::releaseMemory() { in releaseMemory() 202 InputArgList::InputArgList(const char* const *ArgBegin, in InputArgList() function in InputArgList 208 unsigned InputArgList::MakeIndex(StringRef String0) const { in MakeIndex() 218 unsigned InputArgList::MakeIndex(StringRef String0, in MakeIndex() 227 const char *InputArgList::MakeArgStringRef(StringRef Str) const { in MakeArgStringRef() 231 DerivedArgList::DerivedArgList(const InputArgList &BaseArgs) in DerivedArgList()
|
| H A D | OptTable.cpp | 340 Arg *OptTable::parseOneArgGrouped(InputArgList &Args, unsigned &Index) const { in parseOneArgGrouped() 450 InputArgList OptTable::ParseArgs(ArrayRef<const char *> ArgArr, in ParseArgs() 455 InputArgList Args(ArgArr.begin(), ArgArr.end()); in ParseArgs() 496 InputArgList OptTable::parseArgs(int Argc, char *const *Argv, in parseArgs() 505 opt::InputArgList Args = ParseArgs(makeArrayRef(NewArgv), MAI, MAC); in parseArgs()
|
| /freebsd-13.1/contrib/llvm-project/lld/COFF/ |
| H A D | Driver.h | 56 llvm::opt::InputArgList args; 62 llvm::opt::InputArgList parse(llvm::ArrayRef<const char *> args); 65 llvm::opt::InputArgList parse(StringRef s) { return parse(tokenize(s)); } in parse() 116 void maybeExportMinGWSymbols(const llvm::opt::InputArgList &args);
|
| H A D | MinGW.h | 56 std::vector<WrappedSymbol> addWrappedSymbols(llvm::opt::InputArgList &args);
|
| H A D | DriverUtils.cpp | 786 static void handleColorDiagnostics(opt::InputArgList &args) { in handleColorDiagnostics() 806 static cl::TokenizerCallback getQuotingStyle(opt::InputArgList &args) { in getQuotingStyle() 820 opt::InputArgList ArgParser::parse(ArrayRef<const char *> argv) { in parse() 829 opt::InputArgList args = optTable.ParseArgs(argv, missingIndex, missingCount); in parse()
|
| H A D | Driver.cpp | 107 static std::pair<StringRef, StringRef> getOldNewOptions(opt::InputArgList &args, in getOldNewOptions() 641 static std::string createResponseFile(const opt::InputArgList &args, in createResponseFile() 712 static DebugKind parseDebugKind(const opt::InputArgList &args) { in parseDebugKind() 741 static unsigned parseDebugTypes(const opt::InputArgList &args) { in parseDebugTypes() 774 static std::string getMapFile(const opt::InputArgList &args, in getMapFile() 1205 void LinkerDriver::maybeExportMinGWSymbols(const opt::InputArgList &args) { in maybeExportMinGWSymbols() 1250 Optional<std::string> getReproduceFile(const opt::InputArgList &args) { in getReproduceFile() 1290 opt::InputArgList args = parser.parse(argsArr); in linkerMain()
|
| H A D | MinGW.cpp | 195 lld::coff::addWrappedSymbols(opt::InputArgList &args) { in addWrappedSymbols()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | Compilation.h | 32 class InputArgList; variable 64 llvm::opt::InputArgList *Args; 134 llvm::opt::InputArgList *Args, 189 const llvm::opt::InputArgList &getInputArgs() const { return *Args; } in getInputArgs()
|
| H A D | Driver.h | 241 std::unique_ptr<llvm::opt::InputArgList> CfgOptions; 244 std::unique_ptr<llvm::opt::InputArgList> CLOptions; 271 TranslateInputArgs(const llvm::opt::InputArgList &Args) const; 385 llvm::opt::InputArgList ParseArgStrings(ArrayRef<const char *> Args,
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-symbolizer/ |
| H A D | llvm-symbolizer.cpp | 150 static void symbolizeInput(const opt::InputArgList &Args, uint64_t AdjustVMA, in symbolizeInput() 207 static opt::InputArgList parseOptions(int Argc, char *Argv[], bool IsAddr2Line, in parseOptions() 216 opt::InputArgList Args = in parseOptions() 237 static void parseIntArg(const opt::InputArgList &Args, int ID, T &Value) { in parseIntArg() 250 static FunctionNameKind decideHowToPrintFunctions(const opt::InputArgList &Args, in decideHowToPrintFunctions() 270 opt::InputArgList Args = parseOptions(argc, argv, IsAddr2Line, Saver, Tbl); in main()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | MachODump.h | 28 class InputArgList; variable 33 void parseMachOOptions(const llvm::opt::InputArgList &InputArgs);
|
| /freebsd-13.1/contrib/llvm-project/lld/MachO/ |
| H A D | Driver.h | 38 llvm::opt::InputArgList parse(ArrayRef<const char *> argv); 52 std::string createResponseFile(const llvm::opt::InputArgList &args);
|
| H A D | Driver.cpp | 65 static HeaderFileType getOutputType(const InputArgList &args) { in getOutputType() 134 getSearchPaths(unsigned optionCode, InputArgList &args, in getSearchPaths() 172 static std::vector<StringRef> getSystemLibraryRoots(InputArgList &args) { in getSystemLibraryRoots() 192 getFrameworkSearchPaths(InputArgList &args, in getFrameworkSearchPaths() 198 static llvm::CachePruningPolicy getLTOCachePolicy(InputArgList &args) { in getLTOCachePolicy() 694 static TargetInfo *createTargetInfo(InputArgList &args) { in createTargetInfo() 804 static const char *getReproduceOption(InputArgList &args) { in getReproduceOption() 900 static bool dataConstDefault(const InputArgList &args) { in dataConstDefault() 962 static void handleSymbolPatterns(InputArgList &args, in handleSymbolPatterns() 984 void createFiles(const InputArgList &args) { in createFiles() [all …]
|
| H A D | DriverUtils.cpp | 57 static void handleColorDiagnostics(InputArgList &args) { in handleColorDiagnostics() 78 InputArgList MachOOptTable::parse(ArrayRef<const char *> argv) { in parse() 87 InputArgList args = ParseArgs(vec, missingIndex, missingCount); in parse() 132 std::string macho::createResponseFile(const InputArgList &args) { in createResponseFile()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-strings/ |
| H A D | llvm-strings.cpp | 82 static void parseIntArg(const opt::InputArgList &Args, int ID, T &Value) { in parseIntArg() 132 opt::InputArgList Args = in main()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/ |
| H A D | LibDriver.cpp | 68 static std::vector<StringRef> getSearchPaths(opt::InputArgList *Args, in getSearchPaths() 110 static void doList(opt::InputArgList& Args) { in doList() 275 opt::InputArgList Args = in libDriverMain()
|
| /freebsd-13.1/contrib/llvm-project/lldb/tools/driver/ |
| H A D | Driver.h | 44 lldb::SBError ProcessArgs(const llvm::opt::InputArgList &args, bool &exiting);
|
| H A D | Driver.cpp | 185 SBError Driver::ProcessArgs(const opt::InputArgList &args, bool &exiting) { in ProcessArgs() 789 opt::InputArgList &input_args) { in InitializeReproducer() 884 opt::InputArgList input_args = in main()
|