Home
last modified time | relevance | path

Searched refs:InputArgList (Results 1 – 25 of 27) sorted by relevance

12

/freebsd-12.1/contrib/llvm/tools/lld/ELF/
H A DDriver.h34 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 DDriver.cpp74 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 DDriverUtils.cpp57 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 DArgs.h19 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 DArgList.h367 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 DOptTable.h29 class InputArgList; variable
213 InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex,
/freebsd-12.1/contrib/llvm/lib/Option/
H A DArgList.cpp212 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 DOptTable.cpp383 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 DDriver.h48 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 DDriverUtils.cpp736 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 DDriver.cpp261 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 DArgs.cpp21 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 DCompilation.h33 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 DDriver.h220 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 DLibDriver.cpp58 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 DDriver.h45 lldb::SBError ProcessArgs(const llvm::opt::InputArgList &args, bool &exiting);
H A DDriver.cpp245 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 DDlltoolDriver.cpp89 llvm::opt::InputArgList Args = in dlltoolDriverMain()
/freebsd-12.1/contrib/llvm/tools/llvm-objcopy/
H A DCopyConfig.cpp231 llvm::opt::InputArgList InputArgs = in parseObjcopyOptions()
398 llvm::opt::InputArgList InputArgs = in parseStripOptions()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/
H A DCompilation.cpp38 InputArgList *_Args, DerivedArgList *_TranslatedArgs, in Compilation()
H A DDriver.cpp169 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 Ddriver.cpp276 InputArgList Args = in CreateAndPopulateDiagOpts()
H A Dcc1as_main.cpp178 InputArgList Args = OptTbl->ParseArgs(Argv, MissingArgIndex, MissingArgCount, in CreateFromArgs()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/
H A DInterpolatingCompilationDatabase.cpp141 llvm::opt::InputArgList ArgList; in TransferableCommand()
H A DTooling.cpp295 llvm::opt::InputArgList ParsedArgs = Opts->ParseArgs( in run()

12