| /freebsd-12.1/contrib/llvm/tools/lld/ELF/ |
| H A D | Driver.h | 34 void readConfigs(llvm::opt::InputArgList &Args); 35 void createFiles(llvm::opt::InputArgList &Args); 37 template <class ELFT> void link(llvm::opt::InputArgList &Args); 52 llvm::opt::InputArgList parse(ArrayRef<const char *> Argv); 64 std::string createResponseFile(const llvm::opt::InputArgList &Args);
|
| H A D | Driver.cpp | 74 static void setConfigs(opt::InputArgList &Args); 363 static void checkZOptions(opt::InputArgList &Args) { in checkZOptions() 371 opt::InputArgList Args = Parser.parse(ArgsArr.slice(1)); in main() 453 static std::string getRpath(opt::InputArgList &Args) { in getRpath() 494 static Target2Policy getTarget2(opt::InputArgList &Args) { in getTarget2() 537 static ICFLevel getICF(opt::InputArgList &Args) { in getICF() 546 static StripPolicy getStrip(opt::InputArgList &Args) { in getStrip() 611 getBuildId(opt::InputArgList &Args) { in getBuildId() 751 void LinkerDriver::readConfigs(opt::InputArgList &Args) { in readConfigs() 1004 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() 157 std::string elf::createResponseFile(const opt::InputArgList &Args) { in createResponseFile()
|
| /freebsd-12.1/contrib/llvm/tools/lld/include/lld/Common/ |
| H A D | Args.h | 19 class InputArgList; variable 25 int getInteger(llvm::opt::InputArgList &Args, unsigned Key, int Default); 26 std::vector<StringRef> getStrings(llvm::opt::InputArgList &Args, int Id); 28 uint64_t getZOptionValue(llvm::opt::InputArgList &Args, int Id, StringRef Key,
|
| /freebsd-12.1/contrib/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() 435 const InputArgList &BaseArgs; 442 DerivedArgList(const InputArgList &BaseArgs); 452 const InputArgList &getBaseArgs() const { in getBaseArgs()
|
| H A D | OptTable.h | 29 class InputArgList; variable 213 InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex,
|
| /freebsd-12.1/contrib/llvm/lib/Option/ |
| H A D | ArgList.cpp | 212 void InputArgList::releaseMemory() { in releaseMemory() 218 InputArgList::InputArgList(const char* const *ArgBegin, in InputArgList() function in InputArgList 224 unsigned InputArgList::MakeIndex(StringRef String0) const { in MakeIndex() 234 unsigned InputArgList::MakeIndex(StringRef String0, in MakeIndex() 243 const char *InputArgList::MakeArgStringRef(StringRef Str) const { in MakeArgStringRef() 247 DerivedArgList::DerivedArgList(const InputArgList &BaseArgs) in DerivedArgList()
|
| H A D | OptTable.cpp | 383 InputArgList OptTable::ParseArgs(ArrayRef<const char *> ArgArr, in ParseArgs() 388 InputArgList Args(ArgArr.begin(), ArgArr.end()); in ParseArgs()
|
| /freebsd-12.1/contrib/llvm/tools/lld/COFF/ |
| H A D | Driver.h | 48 llvm::opt::InputArgList parseLINK(std::vector<const char *> Args); 51 llvm::opt::InputArgList parse(StringRef S) { return parse(tokenize(S)); } in parse() 56 std::pair<llvm::opt::InputArgList, std::vector<StringRef>> 61 llvm::opt::InputArgList parse(llvm::ArrayRef<const char *> Args);
|
| H A D | DriverUtils.cpp | 736 static void handleColorDiagnostics(opt::InputArgList &Args) { in handleColorDiagnostics() 756 static cl::TokenizerCallback getQuotingStyle(opt::InputArgList &Args) { in getQuotingStyle() 770 opt::InputArgList ArgParser::parse(ArrayRef<const char *> Argv) { in parse() 778 opt::InputArgList Args = Table.ParseArgs(Argv, MissingIndex, MissingCount); in parse() 818 std::pair<opt::InputArgList, std::vector<StringRef>> 834 opt::InputArgList Args = Table.ParseArgs(Rest, MissingIndex, MissingCount); in parseDirectives() 846 opt::InputArgList ArgParser::parseLINK(std::vector<const char *> Argv) { in parseLINK()
|
| H A D | Driver.cpp | 261 opt::InputArgList Args; in parseDirectives() 502 static std::string createResponseFile(const opt::InputArgList &Args, in createResponseFile() 539 static DebugKind parseDebugKind(const opt::InputArgList &Args) { in parseDebugKind() 567 static unsigned parseDebugTypes(const opt::InputArgList &Args) { in parseDebugTypes() 599 static std::string getMapFile(const opt::InputArgList &Args) { in getMapFile() 919 opt::InputArgList Args = Parser.parseLINK(ArgsArr); in link()
|
| /freebsd-12.1/contrib/llvm/tools/lld/Common/ |
| H A D | Args.cpp | 21 int lld::args::getInteger(opt::InputArgList &Args, unsigned Key, int Default) { in getInteger() 35 std::vector<StringRef> lld::args::getStrings(opt::InputArgList &Args, int Id) { in getStrings() 42 uint64_t lld::args::getZOptionValue(opt::InputArgList &Args, int Id, in getZOptionValue()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Driver/ |
| H A D | Compilation.h | 33 class InputArgList; variable 65 llvm::opt::InputArgList *Args; 130 llvm::opt::InputArgList *Args, 185 const llvm::opt::InputArgList &getInputArgs() const { return *Args; } in getInputArgs()
|
| H A D | Driver.h | 220 std::unique_ptr<llvm::opt::InputArgList> CfgOptions; 223 std::unique_ptr<llvm::opt::InputArgList> CLOptions; 253 TranslateInputArgs(const llvm::opt::InputArgList &Args) const; 361 llvm::opt::InputArgList ParseArgStrings(ArrayRef<const char *> Args,
|
| /freebsd-12.1/contrib/llvm/lib/ToolDrivers/llvm-lib/ |
| H A D | LibDriver.cpp | 58 static std::string getOutputPath(opt::InputArgList *Args, in getOutputPath() 67 static std::vector<StringRef> getSearchPaths(opt::InputArgList *Args, in getSearchPaths() 112 opt::InputArgList Args = in libDriverMain()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/tools/driver/ |
| H A D | Driver.h | 45 lldb::SBError ProcessArgs(const llvm::opt::InputArgList &args, bool &exiting);
|
| H A D | Driver.cpp | 245 SBError Driver::ProcessArgs(const opt::InputArgList &args, bool &exiting) { in ProcessArgs() 880 opt::InputArgList input_args = T.ParseArgs(arg_arr, MAI, MAC); in wmain()
|
| /freebsd-12.1/contrib/llvm/lib/ToolDrivers/llvm-dlltool/ |
| H A D | DlltoolDriver.cpp | 89 llvm::opt::InputArgList Args = in dlltoolDriverMain()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-objcopy/ |
| H A D | CopyConfig.cpp | 231 llvm::opt::InputArgList InputArgs = in parseObjcopyOptions() 398 llvm::opt::InputArgList InputArgs = in parseStripOptions()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/ |
| H A D | Compilation.cpp | 38 InputArgList *_Args, DerivedArgList *_TranslatedArgs, in Compilation()
|
| H A D | Driver.cpp | 169 InputArgList Driver::ParseArgStrings(ArrayRef<const char *> ArgStrings, in ParseArgStrings() 181 InputArgList Args = in ParseArgStrings() 303 DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const { in TranslateInputArgs() 743 CfgOptions = llvm::make_unique<InputArgList>( in readConfigFile() 937 CLOptions = llvm::make_unique<InputArgList>( in BuildCompilation() 946 InputArgList Args = std::move(HasConfigFile ? std::move(*CfgOptions) in BuildCompilation() 980 auto CLModePassThroughOptions = llvm::make_unique<InputArgList>( in BuildCompilation() 1067 std::unique_ptr<llvm::opt::InputArgList> UArgs = in BuildCompilation() 1068 llvm::make_unique<InputArgList>(std::move(Args)); in BuildCompilation()
|
| /freebsd-12.1/contrib/llvm/tools/clang/tools/driver/ |
| H A D | driver.cpp | 276 InputArgList Args = in CreateAndPopulateDiagOpts()
|
| H A D | cc1as_main.cpp | 178 InputArgList Args = OptTbl->ParseArgs(Argv, MissingArgIndex, MissingArgCount, in CreateFromArgs()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/ |
| H A D | InterpolatingCompilationDatabase.cpp | 141 llvm::opt::InputArgList ArgList; in TransferableCommand()
|
| H A D | Tooling.cpp | 295 llvm::opt::InputArgList ParsedArgs = Opts->ParseArgs( in run()
|