Home
last modified time | relevance | path

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

12

/freebsd/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/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/contrib/llvm-project/llvm/include/llvm/Option/
H A DArgList.h393 class InputArgList final : public ArgList {
416 InputArgList() : NumInputArgStrings(0) {} in InputArgList() function
418 InputArgList(const char* const *ArgBegin, const char* const *ArgEnd);
420 InputArgList(InputArgList &&RHS) in InputArgList() function
425 InputArgList &operator=(InputArgList &&RHS) {
436 ~InputArgList() { releaseMemory(); } in ~InputArgList()
467 const InputArgList &BaseArgs;
474 DerivedArgList(const InputArgList &BaseArgs);
484 const InputArgList &getBaseArgs() const { in getBaseArgs()
H A DOptTable.h30 class InputArgList; variable
119 std::unique_ptr<Arg> parseOneArgGrouped(InputArgList &Args,
300 InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex,
304 InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex,
309 InputArgList
323 InputArgList parseArgs(int Argc, char *const *Argv, OptSpecifier Unknown,
/freebsd/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()
568 void LinkerDriver::detectWinSysRoot(const opt::InputArgList &Args) { in detectWinSysRoot()
795 static std::string createResponseFile(const opt::InputArgList &args, in createResponseFile()
852 static unsigned parseDebugTypes(const opt::InputArgList &args) { in parseDebugTypes()
885 std::string LinkerDriver::getMapFile(const opt::InputArgList &args, in getMapFile()
1326 void LinkerDriver::maybeExportMinGWSymbols(const opt::InputArgList &args) { in maybeExportMinGWSymbols()
1378 std::optional<std::string> getReproduceFile(const opt::InputArgList &args) { in getReproduceFile()
1397 getVFS(const opt::InputArgList &args) { in getVFS()
1441 opt::InputArgList args = parser.parse(argsArr); in linkerMain()
/freebsd/contrib/llvm-project/llvm/lib/Option/
H A DArgList.cpp206 void InputArgList::releaseMemory() { in dump()
207 // An InputArgList always owns its arguments.
212 InputArgList::InputArgList(const char* const *ArgBegin, in releaseMemory()
218 unsigned InputArgList::MakeIndex(StringRef String0) const { in InputArgList()
228 unsigned InputArgList::MakeIndex(StringRef String0, in MakeIndex()
237 const char *InputArgList::MakeArgStringRef(StringRef Str) const { in MakeIndex()
241 DerivedArgList::DerivedArgList(const InputArgList &BaseArgs) in MakeArgStringRef()
215 InputArgList::InputArgList(const char* const *ArgBegin, InputArgList() function in InputArgList
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/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.cpp84 static void setConfigs(opt::InputArgList &args);
85 static void readConfigs(opt::InputArgList &args);
481 static const char *getReproduceOption(opt::InputArgList &args) { in getReproduceOption()
487 static bool hasZOption(opt::InputArgList &args, StringRef key) { in hasZOption()
497 static bool getZFlag(opt::InputArgList &args, StringRef k1, StringRef k2, in getZFlag()
512 static SeparateSegmentKind getZSeparate(opt::InputArgList &args) { in getZSeparate()
529 static GnuStackKind getZGnuStack(opt::InputArgList &args) { in getZGnuStack()
546 static uint8_t getZStartStopVisibility(opt::InputArgList &args) { in getZStartStopVisibility()
568 static GcsPolicy getZGcs(opt::InputArgList &args) { in getZGcs()
588 static void checkZOptions(opt::InputArgList &args) { in checkZOptions()
[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.h130 void createFiles(llvm::opt::InputArgList &args);
132 template <class ELFT> void link(llvm::opt::InputArgList &args);
/freebsd/contrib/llvm-project/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp330 static void symbolizeInput(const opt::InputArgList &Args, in symbolizeInput()
380 static opt::InputArgList parseOptions(int Argc, char *Argv[], bool IsAddr2Line, in parseOptions()
389 opt::InputArgList Args = in parseOptions()
410 static void parseIntArg(const opt::InputArgList &Args, int ID, T &Value) { in parseIntArg()
423 static FunctionNameKind decideHowToPrintFunctions(const opt::InputArgList &Args, in decideHowToPrintFunctions()
435 static std::optional<bool> parseColorArg(const opt::InputArgList &Args) { in parseColorArg()
446 static object::BuildID parseBuildIDArg(const opt::InputArgList &Args, int ID) { in parseBuildIDArg()
461 static void filterMarkup(const opt::InputArgList &Args, LLVMSymbolizer &Symbolizer) { in filterMarkup()
479 opt::InputArgList Args = parseOptions(argc, argv, IsAddr2Line, Saver, Tbl); in llvm_symbolizer_main()
/freebsd/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.h301 std::unique_ptr<llvm::opt::InputArgList> CfgOptions;
304 std::unique_ptr<llvm::opt::InputArgList> CLOptions;
351 TranslateInputArgs(const llvm::opt::InputArgList &Args) const;
465 llvm::opt::InputArgList ParseArgStrings(ArrayRef<const char *> Args,
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.h30 class InputArgList; variable
35 void parseMachOOptions(const llvm::opt::InputArgList &InputArgs);
/freebsd/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 DDriver.cpp68 static HeaderFileType getOutputType(const InputArgList &args) { in getOutputType()
162 getSearchPaths(unsigned optionCode, InputArgList &args, in getSearchPaths()
200 static std::vector<StringRef> getSystemLibraryRoots(InputArgList &args) { in getSystemLibraryRoots()
215 getLibrarySearchPaths(InputArgList &args, const std::vector<StringRef> &roots) { in getLibrarySearchPaths()
220 getFrameworkSearchPaths(InputArgList &args, in getFrameworkSearchPaths()
226 static llvm::CachePruningPolicy getLTOCachePolicy(InputArgList &args) { in getLTOCachePolicy()
797 static TargetInfo *createTargetInfo(InputArgList &args) { in createTargetInfo()
911 static const char *getReproduceOption(InputArgList &args) { in getReproduceOption()
918 static std::pair<StringRef, StringRef> getOldNewOptions(opt::InputArgList &args, in getOldNewOptions()
933 getOldNewOptionsExtra(opt::InputArgList &args, unsigned id) { in getOldNewOptionsExtra()
[all …]
H A DDriverUtils.cpp72 static void handleColorDiagnostics(InputArgList &args) { in handleColorDiagnostics()
93 InputArgList MachOOptTable::parse(ArrayRef<const char *> argv) { in parse()
102 InputArgList args = ParseArgs(vec, missingIndex, missingCount); in parse()
148 std::string macho::createResponseFile(const InputArgList &args) { in createResponseFile()
/freebsd/contrib/llvm-project/llvm/tools/llvm-strings/
H A Dllvm-strings.cpp81 static void parseIntArg(const opt::InputArgList &Args, int ID, T &Value) {
132 opt::InputArgList Args =
/freebsd/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) {
/freebsd/contrib/llvm-project/lldb/tools/driver/
H A DDriver.h44 lldb::SBError ProcessArgs(const llvm::opt::InputArgList &args, bool &exiting);
/freebsd/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/
H A DLibDriver.cpp73 static std::vector<StringRef> getSearchPaths(opt::InputArgList *Args, in getSearchPaths()
128 static void doList(opt::InputArgList &Args) { in doList()
322 opt::InputArgList Args = in libDriverMain()

12