| /llvm-project-15.0.7/llvm/unittests/Option/ |
| H A D | OptionParsingTest.cpp | 70 InputArgList AL = T.ParseArgs(Args, MAI, MAC); in TEST() 119 InputArgList AL = T.ParseArgs(Args, MAI, MAC, in TEST() 147 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST() 156 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST() 167 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST() 177 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST() 187 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST() 198 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST() 214 InputArgList AL = T.ParseArgs(MyArgs, MAI, MAC); in TEST() 385 InputArgList AL = T.ParseArgs(Args, MAI, MAC); in TEST() [all …]
|
| /llvm-project-15.0.7/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,
|
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/lld/ELF/ |
| H A D | Driver.h | 32 void createFiles(llvm::opt::InputArgList &args); 34 void link(llvm::opt::InputArgList &args); 56 llvm::opt::InputArgList parse(ArrayRef<const char *> argv); 68 std::string createResponseFile(const llvm::opt::InputArgList &args);
|
| H A D | DriverUtils.cpp | 54 static void handleColorDiagnostics(opt::InputArgList &args) { in handleColorDiagnostics() 67 static cl::TokenizerCallback getQuotingStyle(opt::InputArgList &args) { in getQuotingStyle() 105 opt::InputArgList ELFOptTable::parse(ArrayRef<const char *> argv) { in parse() 114 opt::InputArgList args = this->ParseArgs(vec, missingIndex, missingCount); in parse() 158 std::string elf::createResponseFile(const opt::InputArgList &args) { in createResponseFile()
|
| H A D | Driver.cpp | 80 static void setConfigs(opt::InputArgList &args); 81 static void readConfigs(opt::InputArgList &args); 506 static void checkZOptions(opt::InputArgList &args) { in checkZOptions() 709 static int getMemtagMode(opt::InputArgList &args) { in getMemtagMode() 731 static ICFLevel getICF(opt::InputArgList &args) { in getICF() 806 getBuildId(opt::InputArgList &args) { in getBuildId() 989 static bool getIsRela(opt::InputArgList &args) { in getIsRela() 1022 static void readConfigs(opt::InputArgList &args) { in readConfigs() 1493 static void setConfigs(opt::InputArgList &args) { in setConfigs() 1765 static void excludeLibs(opt::InputArgList &args) { in excludeLibs() [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/Option/ |
| H A D | ArgList.h | 383 class InputArgList final : public ArgList { 406 InputArgList() : NumInputArgStrings(0) {} in InputArgList() function 408 InputArgList(const char* const *ArgBegin, const char* const *ArgEnd); 410 InputArgList(InputArgList &&RHS) in InputArgList() function 415 InputArgList &operator=(InputArgList &&RHS) { 424 ~InputArgList() { releaseMemory(); } in ~InputArgList() 455 const InputArgList &BaseArgs; 462 DerivedArgList(const InputArgList &BaseArgs); 472 const InputArgList &getBaseArgs() const { in getBaseArgs()
|
| H A D | OptTable.h | 30 class InputArgList; variable 86 std::unique_ptr<Arg> parseOneArgGrouped(InputArgList &Args, 225 InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex, 237 InputArgList parseArgs(int Argc, char *const *Argv, OptSpecifier Unknown,
|
| /llvm-project-15.0.7/llvm/lib/Option/ |
| H A D | ArgList.cpp | 203 void InputArgList::releaseMemory() { in releaseMemory() 209 InputArgList::InputArgList(const char* const *ArgBegin, in InputArgList() function in InputArgList 215 unsigned InputArgList::MakeIndex(StringRef String0) const { in MakeIndex() 225 unsigned InputArgList::MakeIndex(StringRef String0, in MakeIndex() 234 const char *InputArgList::MakeArgStringRef(StringRef Str) const { in MakeArgStringRef() 238 DerivedArgList::DerivedArgList(const InputArgList &BaseArgs) in DerivedArgList()
|
| H A D | OptTable.cpp | 339 std::unique_ptr<Arg> OptTable::parseOneArgGrouped(InputArgList &Args, in parseOneArgGrouped() 463 InputArgList OptTable::ParseArgs(ArrayRef<const char *> ArgArr, in ParseArgs() 468 InputArgList Args(ArgArr.begin(), ArgArr.end()); in ParseArgs() 509 InputArgList OptTable::parseArgs(int Argc, char *const *Argv, in parseArgs() 518 opt::InputArgList Args = ParseArgs(makeArrayRef(NewArgv), MAI, MAC); in parseArgs()
|
| /llvm-project-15.0.7/lld/COFF/ |
| H A D | Driver.h | 58 llvm::opt::InputArgList args; 64 llvm::opt::InputArgList parse(llvm::ArrayRef<const char *> args); 67 llvm::opt::InputArgList parse(StringRef s) { return parse(tokenize(s)); } in parse() 117 void detectWinSysRoot(const llvm::opt::InputArgList &args); 129 void maybeExportMinGWSymbols(const llvm::opt::InputArgList &args);
|
| H A D | MinGW.h | 62 llvm::opt::InputArgList &args);
|
| /llvm-project-15.0.7/llvm/tools/llvm-symbolizer/ |
| H A D | llvm-symbolizer.cpp | 250 static void symbolizeInput(const opt::InputArgList &Args, in symbolizeInput() 287 static opt::InputArgList parseOptions(int Argc, char *Argv[], bool IsAddr2Line, in parseOptions() 296 opt::InputArgList Args = in parseOptions() 317 static void parseIntArg(const opt::InputArgList &Args, int ID, T &Value) { in parseIntArg() 330 static FunctionNameKind decideHowToPrintFunctions(const opt::InputArgList &Args, in decideHowToPrintFunctions() 342 static Optional<bool> parseColorArg(const opt::InputArgList &Args) { in parseColorArg() 353 static SmallVector<uint8_t> parseBuildIDArg(const opt::InputArgList &Args, in parseBuildIDArg() 369 static void filterMarkup(const opt::InputArgList &Args, LLVMSymbolizer &Symbolizer) { in filterMarkup() 389 opt::InputArgList Args = parseOptions(argc, argv, IsAddr2Line, Saver, Tbl); in main()
|
| /llvm-project-15.0.7/lld/wasm/ |
| H A D | Driver.cpp | 73 void createFiles(opt::InputArgList &args); 121 opt::InputArgList parse(ArrayRef<const char *> argv); 127 static void handleColorDiagnostics(opt::InputArgList &args) { in handleColorDiagnostics() 147 static cl::TokenizerCallback getQuotingStyle(opt::InputArgList &args) { in getQuotingStyle() 170 opt::InputArgList WasmOptTable::parse(ArrayRef<const char *> argv) { in parse() 294 void LinkerDriver::createFiles(opt::InputArgList &args) { in createFiles() 315 static StringRef getEntry(opt::InputArgList &args) { in getEntry() 352 static void readConfigs(opt::InputArgList &args) { in readConfigs() 482 static void checkOptions(opt::InputArgList &args) { in checkOptions() 834 static void checkZOptions(opt::InputArgList &args) { in checkZOptions() [all …]
|
| /llvm-project-15.0.7/clang/include/clang/Driver/ |
| H A D | Compilation.h | 32 class InputArgList; variable 64 llvm::opt::InputArgList *Args; 134 llvm::opt::InputArgList *Args, 196 const llvm::opt::InputArgList &getInputArgs() const { return *Args; } in getInputArgs()
|
| H A D | Driver.h | 271 std::unique_ptr<llvm::opt::InputArgList> CfgOptions; 274 std::unique_ptr<llvm::opt::InputArgList> CLOptions; 312 TranslateInputArgs(const llvm::opt::InputArgList &Args) const; 424 llvm::opt::InputArgList ParseArgStrings(ArrayRef<const char *> Args,
|
| /llvm-project-15.0.7/llvm/tools/llvm-objdump/ |
| H A D | MachODump.h | 28 class InputArgList; variable 33 void parseMachOOptions(const llvm::opt::InputArgList &InputArgs);
|
| /llvm-project-15.0.7/lld/MachO/ |
| H A D | Driver.h | 32 llvm::opt::InputArgList parse(ArrayRef<const char *> argv); 46 std::string createResponseFile(const llvm::opt::InputArgList &args);
|
| H A D | DriverUtils.cpp | 55 static void handleColorDiagnostics(InputArgList &args) { in handleColorDiagnostics() 76 InputArgList MachOOptTable::parse(ArrayRef<const char *> argv) { in parse() 85 InputArgList args = ParseArgs(vec, missingIndex, missingCount); in parse() 131 std::string macho::createResponseFile(const InputArgList &args) { in createResponseFile()
|
| H A D | Driver.cpp | 66 static HeaderFileType getOutputType(const InputArgList &args) { in getOutputType() 155 getSearchPaths(unsigned optionCode, InputArgList &args, in getSearchPaths() 193 static std::vector<StringRef> getSystemLibraryRoots(InputArgList &args) { in getSystemLibraryRoots() 213 getFrameworkSearchPaths(InputArgList &args, in getFrameworkSearchPaths() 219 static llvm::CachePruningPolicy getLTOCachePolicy(InputArgList &args) { in getLTOCachePolicy() 709 static TargetInfo *createTargetInfo(InputArgList &args) { in createTargetInfo() 820 static const char *getReproduceOption(InputArgList &args) { in getReproduceOption() 916 static bool dataConstDefault(const InputArgList &args) { in dataConstDefault() 994 static void handleSymbolPatterns(InputArgList &args, in handleSymbolPatterns() 1004 static void createFiles(const InputArgList &args) { in createFiles() [all …]
|
| /llvm-project-15.0.7/lld/MinGW/ |
| H A D | Driver.cpp | 81 opt::InputArgList parse(ArrayRef<const char *> argv); 98 opt::InputArgList MinGWOptTable::parse(ArrayRef<const char *> argv) { in parse() 104 opt::InputArgList args = this->ParseArgs(vec, missingIndex, missingCount); in parse() 164 opt::InputArgList args = parser.parse(argsArr.slice(1)); in link()
|
| /llvm-project-15.0.7/llvm/tools/llvm-strings/ |
| H A D | llvm-strings.cpp | 81 static void parseIntArg(const opt::InputArgList &Args, int ID, T &Value) { in parseIntArg() 132 opt::InputArgList Args = in main()
|
| /llvm-project-15.0.7/llvm/tools/dsymutil/ |
| H A D | dsymutil.cpp | 122 static Expected<std::vector<std::string>> getInputs(opt::InputArgList &Args, in getInputs() 210 getAccelTableKind(opt::InputArgList &Args) { in getAccelTableKind() 231 static Expected<ReproducerMode> getReproducerMode(opt::InputArgList &Args) { in getReproducerMode() 253 static Expected<DWARFVerify> getVerifyKind(opt::InputArgList &Args) { in getVerifyKind() 276 static Expected<DsymutilOptions> getOptions(opt::InputArgList &Args) { in getOptions() 557 opt::InputArgList Args = T.ParseArgs(ArgsArr, MAI, MAC); in dsymutil_main()
|
| /llvm-project-15.0.7/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() 276 opt::InputArgList Args = in libDriverMain()
|
| /llvm-project-15.0.7/lldb/tools/driver/ |
| H A D | Driver.h | 44 lldb::SBError ProcessArgs(const llvm::opt::InputArgList &args, bool &exiting);
|