Home
last modified time | relevance | path

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

12

/freebsd-14.2/contrib/llvm-project/lld/include/lld/Common/
H A DArgs.h19 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 llvm::SmallVector<StringRef, 0> getStrings(llvm::opt::InputArgList &args,
36 uint64_t getZOptionValue(llvm::opt::InputArgList &args, int id, StringRef key,
/freebsd-14.2/contrib/llvm-project/lld/Common/
H A DArgs.cpp26 static int64_t getInteger(opt::InputArgList &args, unsigned key, in getInteger()
44 int64_t lld::args::getInteger(opt::InputArgList &args, unsigned key, in getInteger()
49 int64_t lld::args::getHex(opt::InputArgList &args, unsigned key, in getHex()
54 SmallVector<StringRef, 0> lld::args::getStrings(opt::InputArgList &args, in getStrings()
62 uint64_t lld::args::getZOptionValue(opt::InputArgList &args, int id, in getZOptionValue()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Option/
H A DArgList.h389 class InputArgList final : public ArgList {
412 InputArgList() : NumInputArgStrings(0) {} in InputArgList() function
414 InputArgList(const char* const *ArgBegin, const char* const *ArgEnd);
416 InputArgList(InputArgList &&RHS) in InputArgList() function
421 InputArgList &operator=(InputArgList &&RHS) {
432 ~InputArgList() { releaseMemory(); } in ~InputArgList()
463 const InputArgList &BaseArgs;
470 DerivedArgList(const InputArgList &BaseArgs);
480 const InputArgList &getBaseArgs() const { in getBaseArgs()
H A DOptTable.h30 class InputArgList; variable
108 std::unique_ptr<Arg> parseOneArgGrouped(InputArgList &Args,
276 InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex,
280 InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex,
285 InputArgList
299 InputArgList parseArgs(int Argc, char *const *Argv, OptSpecifier Unknown,
/freebsd-14.2/contrib/llvm-project/lld/COFF/
H A DDriver.h50 llvm::opt::InputArgList args;
58 llvm::opt::InputArgList parse(llvm::ArrayRef<const char *> args);
61 llvm::opt::InputArgList parse(StringRef s) { return parse(tokenize(s)); } in parse()
115 void detectWinSysRoot(const llvm::opt::InputArgList &args);
126 std::string getMapFile(const llvm::opt::InputArgList &args,
163 void maybeExportMinGWSymbols(const llvm::opt::InputArgList &args);
H A DMinGW.h65 llvm::opt::InputArgList &args);
H A DDriver.cpp81 static std::pair<StringRef, StringRef> getOldNewOptions(opt::InputArgList &args, in getOldNewOptions()
96 getOldNewOptionsExtra(opt::InputArgList &args, unsigned id) { in getOldNewOptionsExtra()
577 void LinkerDriver::detectWinSysRoot(const opt::InputArgList &Args) { in detectWinSysRoot()
804 static std::string createResponseFile(const opt::InputArgList &args, in createResponseFile()
861 static unsigned parseDebugTypes(const opt::InputArgList &args) { in parseDebugTypes()
894 std::string LinkerDriver::getMapFile(const opt::InputArgList &args, in getMapFile()
1334 void LinkerDriver::maybeExportMinGWSymbols(const opt::InputArgList &args) { in maybeExportMinGWSymbols()
1386 std::optional<std::string> getReproduceFile(const opt::InputArgList &args) { in getReproduceFile()
1405 getVFS(const opt::InputArgList &args) { in getVFS()
1449 opt::InputArgList args = parser.parse(argsArr); in linkerMain()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Option/
H A DArgList.cpp206 void InputArgList::releaseMemory() { in releaseMemory()
212 InputArgList::InputArgList(const char* const *ArgBegin, in InputArgList() function in InputArgList
218 unsigned InputArgList::MakeIndex(StringRef String0) const { in MakeIndex()
228 unsigned InputArgList::MakeIndex(StringRef String0, in MakeIndex()
237 const char *InputArgList::MakeArgStringRef(StringRef Str) const { in MakeArgStringRef()
241 DerivedArgList::DerivedArgList(const InputArgList &BaseArgs) in DerivedArgList()
H A DOptTable.cpp345 std::unique_ptr<Arg> OptTable::parseOneArgGrouped(InputArgList &Args, in parseOneArgGrouped()
490 InputArgList OptTable::ParseArgs(ArrayRef<const char *> Args, in ParseArgs()
501 InputArgList OptTable::ParseArgs(ArrayRef<const char *> Args, in ParseArgs()
517 InputArgList OptTable::internalParseArgs( in internalParseArgs()
521 InputArgList Args(ArgArr.begin(), ArgArr.end()); in internalParseArgs()
572 InputArgList OptTable::parseArgs(int Argc, char *const *Argv, in parseArgs()
581 opt::InputArgList Args = ParseArgs(ArrayRef(NewArgv), MAI, MAC); in parseArgs()
/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DDriverUtils.cpp55 static void handleColorDiagnostics(opt::InputArgList &args) { in handleColorDiagnostics()
68 static cl::TokenizerCallback getQuotingStyle(opt::InputArgList &args) { in getQuotingStyle()
106 opt::InputArgList ELFOptTable::parse(ArrayRef<const char *> argv) { in parse()
115 opt::InputArgList args = this->ParseArgs(vec, missingIndex, missingCount); in parse()
159 std::string elf::createResponseFile(const opt::InputArgList &args) { in createResponseFile()
H A DDriver.cpp83 static void setConfigs(opt::InputArgList &args);
84 static void readConfigs(opt::InputArgList &args);
559 static void checkZOptions(opt::InputArgList &args) { in checkZOptions()
772 static int getMemtagMode(opt::InputArgList &args) { in getMemtagMode()
796 static ICFLevel getICF(opt::InputArgList &args) { in getICF()
871 getBuildId(opt::InputArgList &args) { in getBuildId()
1138 static bool getIsRela(opt::InputArgList &args) { in getIsRela()
1193 static void readConfigs(opt::InputArgList &args) { in readConfigs()
1727 static void setConfigs(opt::InputArgList &args) { in setConfigs()
2003 static void excludeLibs(opt::InputArgList &args) { in excludeLibs()
[all …]
H A DDriver.h22 llvm::opt::InputArgList parse(ArrayRef<const char *> argv);
34 std::string createResponseFile(const llvm::opt::InputArgList &args);
H A DConfig.h127 void createFiles(llvm::opt::InputArgList &args);
129 void link(llvm::opt::InputArgList &args);
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp330 static void symbolizeInput(const opt::InputArgList &Args, in symbolizeInput()
372 static opt::InputArgList parseOptions(int Argc, char *Argv[], bool IsAddr2Line, in parseOptions()
381 opt::InputArgList Args = in parseOptions()
402 static void parseIntArg(const opt::InputArgList &Args, int ID, T &Value) { in parseIntArg()
415 static FunctionNameKind decideHowToPrintFunctions(const opt::InputArgList &Args, in decideHowToPrintFunctions()
427 static std::optional<bool> parseColorArg(const opt::InputArgList &Args) { in parseColorArg()
438 static object::BuildID parseBuildIDArg(const opt::InputArgList &Args, int ID) { in parseBuildIDArg()
453 static void filterMarkup(const opt::InputArgList &Args, LLVMSymbolizer &Symbolizer) { in filterMarkup()
471 opt::InputArgList Args = parseOptions(argc, argv, IsAddr2Line, Saver, Tbl); in llvm_symbolizer_main()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/
H A DCompilation.h32 class InputArgList; variable
64 llvm::opt::InputArgList *Args;
137 llvm::opt::InputArgList *Args,
199 const llvm::opt::InputArgList &getInputArgs() const { return *Args; } in getInputArgs()
H A DDriver.h293 std::unique_ptr<llvm::opt::InputArgList> CfgOptions;
296 std::unique_ptr<llvm::opt::InputArgList> CLOptions;
340 TranslateInputArgs(const llvm::opt::InputArgList &Args) const;
457 llvm::opt::InputArgList ParseArgStrings(ArrayRef<const char *> Args,
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.h30 class InputArgList; variable
35 void parseMachOOptions(const llvm::opt::InputArgList &InputArgs);
/freebsd-14.2/contrib/llvm-project/lld/MachO/
H A DDriver.h31 llvm::opt::InputArgList parse(ArrayRef<const char *> argv);
47 std::string createResponseFile(const llvm::opt::InputArgList &args);
H A DDriverUtils.cpp62 static void handleColorDiagnostics(InputArgList &args) { in handleColorDiagnostics()
83 InputArgList MachOOptTable::parse(ArrayRef<const char *> argv) { in parse()
92 InputArgList args = ParseArgs(vec, missingIndex, missingCount); in parse()
138 std::string macho::createResponseFile(const InputArgList &args) { in createResponseFile()
H A DDriver.cpp67 static HeaderFileType getOutputType(const InputArgList &args) { in getOutputType()
161 getSearchPaths(unsigned optionCode, InputArgList &args, in getSearchPaths()
219 getFrameworkSearchPaths(InputArgList &args, in getFrameworkSearchPaths()
762 static TargetInfo *createTargetInfo(InputArgList &args) { in createTargetInfo()
876 static const char *getReproduceOption(InputArgList &args) { in getReproduceOption()
898 getOldNewOptionsExtra(opt::InputArgList &args, unsigned id) { in getOldNewOptionsExtra()
1007 static bool dataConstDefault(const InputArgList &args) { in dataConstDefault()
1040 static bool shouldEmitChainedFixups(const InputArgList &args) { in shouldEmitChainedFixups()
1127 static void handleSymbolPatterns(InputArgList &args, in handleSymbolPatterns()
1137 static void createFiles(const InputArgList &args) { in createFiles()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-strings/
H A Dllvm-strings.cpp81 static void parseIntArg(const opt::InputArgList &Args, int ID, T &Value) { in parseIntArg()
132 opt::InputArgList Args = in main()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DCOFFDirectiveParser.h38 Expected<opt::InputArgList> parse(StringRef Str);
H A DCOFFDirectiveParser.cpp54 Expected<opt::InputArgList> COFFDirectiveParser::parse(StringRef Str) { in parse()
/freebsd-14.2/contrib/llvm-project/lldb/tools/driver/
H A DDriver.h44 lldb::SBError ProcessArgs(const llvm::opt::InputArgList &args, bool &exiting);
/freebsd-14.2/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/
H A DLibDriver.cpp73 static std::vector<StringRef> getSearchPaths(opt::InputArgList *Args, in getSearchPaths()
127 static void doList(opt::InputArgList &Args) { in doList()
321 opt::InputArgList Args = in libDriverMain()

12