Home
last modified time | relevance | path

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

123

/openbsd-src/gnu/llvm/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,
/openbsd-src/gnu/llvm/lld/Common/
H A DArgs.cpp29 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 SmallVector<StringRef, 0> lld::args::getStrings(opt::InputArgList &args, in getStrings()
65 uint64_t lld::args::getZOptionValue(opt::InputArgList &args, int id, in getZOptionValue()
/openbsd-src/gnu/llvm/llvm/include/llvm/Option/
H A DArgList.h383 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 DOptTable.h30 class InputArgList; variable
89 std::unique_ptr<Arg> parseOneArgGrouped(InputArgList &Args,
230 InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex,
242 InputArgList parseArgs(int Argc, char *const *Argv, OptSpecifier Unknown,
/openbsd-src/gnu/llvm/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()
113 void detectWinSysRoot(const llvm::opt::InputArgList &args);
124 std::string getMapFile(const llvm::opt::InputArgList &args,
161 void maybeExportMinGWSymbols(const llvm::opt::InputArgList &args);
H A DMinGW.h65 llvm::opt::InputArgList &args);
/openbsd-src/gnu/llvm/llvm/lib/Option/
H A DArgList.cpp202 void InputArgList::releaseMemory() { in releaseMemory()
208 InputArgList::InputArgList(const char* const *ArgBegin, in InputArgList() function in InputArgList
214 unsigned InputArgList::MakeIndex(StringRef String0) const { in MakeIndex()
224 unsigned InputArgList::MakeIndex(StringRef String0, in MakeIndex()
233 const char *InputArgList::MakeArgStringRef(StringRef Str) const { in MakeArgStringRef()
237 DerivedArgList::DerivedArgList(const InputArgList &BaseArgs) in DerivedArgList()
H A DOptTable.cpp320 std::unique_ptr<Arg> OptTable::parseOneArgGrouped(InputArgList &Args, in parseOneArgGrouped()
447 InputArgList OptTable::ParseArgs(ArrayRef<const char *> ArgArr, in ParseArgs()
452 InputArgList Args(ArgArr.begin(), ArgArr.end()); in ParseArgs()
493 InputArgList OptTable::parseArgs(int Argc, char *const *Argv, in parseArgs()
502 opt::InputArgList Args = ParseArgs(ArrayRef(NewArgv), MAI, MAC); in parseArgs()
/openbsd-src/gnu/llvm/lld/ELF/
H A DDriver.cpp81 static void setConfigs(opt::InputArgList &args);
82 static void readConfigs(opt::InputArgList &args);
419 static const char *getReproduceOption(opt::InputArgList &args) { in getReproduceOption()
425 static bool hasZOption(opt::InputArgList &args, StringRef key) { in hasZOption()
432 static bool getZFlag(opt::InputArgList &args, StringRef k1, StringRef k2, in getZFlag()
443 static SeparateSegmentKind getZSeparate(opt::InputArgList &args) { in getZSeparate()
456 static GnuStackKind getZGnuStack(opt::InputArgList &args) { in getZGnuStack()
469 static uint8_t getZStartStopVisibility(opt::InputArgList &args) { in getZStartStopVisibility()
544 static void checkZOptions(opt::InputArgList &args) { in checkZOptions()
556 opt::InputArgList args = parser.parse(argsArr.slice(1)); in linkerMain()
[all …]
H A DDriverUtils.cpp57 static void handleColorDiagnostics(opt::InputArgList &args) { in handleColorDiagnostics()
70 static cl::TokenizerCallback getQuotingStyle(opt::InputArgList &args) { in getQuotingStyle()
108 opt::InputArgList ELFOptTable::parse(ArrayRef<const char *> argv) { in parse()
117 opt::InputArgList args = this->ParseArgs(vec, missingIndex, missingCount); in parse()
161 std::string elf::createResponseFile(const opt::InputArgList &args) { in createResponseFile()
H A DDriver.h22 llvm::opt::InputArgList parse(ArrayRef<const char *> argv);
34 std::string createResponseFile(const llvm::opt::InputArgList &args);
/openbsd-src/gnu/llvm/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp255 static void symbolizeInput(const opt::InputArgList &Args, in symbolizeInput()
292 static opt::InputArgList parseOptions(int Argc, char *Argv[], bool IsAddr2Line, in parseOptions()
301 opt::InputArgList Args = in parseOptions()
322 static void parseIntArg(const opt::InputArgList &Args, int ID, T &Value) { in parseIntArg()
335 static FunctionNameKind decideHowToPrintFunctions(const opt::InputArgList &Args, in decideHowToPrintFunctions()
347 static std::optional<bool> parseColorArg(const opt::InputArgList &Args) { in parseColorArg()
358 static object::BuildID parseBuildIDArg(const opt::InputArgList &Args, int ID) { in parseBuildIDArg()
373 static void filterMarkup(const opt::InputArgList &Args, LLVMSymbolizer &Symbolizer) { in filterMarkup()
393 opt::InputArgList Args = parseOptions(argc, argv, IsAddr2Line, Saver, Tbl); in main()
/openbsd-src/gnu/llvm/lld/wasm/
H A DDriver.cpp75 void createFiles(opt::InputArgList &args);
126 opt::InputArgList parse(ArrayRef<const char *> argv);
132 static void handleColorDiagnostics(opt::InputArgList &args) { in handleColorDiagnostics()
152 static cl::TokenizerCallback getQuotingStyle(opt::InputArgList &args) { in getQuotingStyle()
176 opt::InputArgList WasmOptTable::parse(ArrayRef<const char *> argv) { in parse()
185 opt::InputArgList args = this->ParseArgs(vec, missingIndex, missingCount); in parse()
331 void LinkerDriver::createFiles(opt::InputArgList &args) { in createFiles()
358 static StringRef getEntry(opt::InputArgList &args) { in getEntry()
374 static UnresolvedPolicy getUnresolvedSymbolPolicy(opt::InputArgList &args) { in getUnresolvedSymbolPolicy()
395 static void readConfigs(opt::InputArgList &args) { in readConfigs()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/Driver/
H A DCompilation.h32 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 DDriver.h284 std::unique_ptr<llvm::opt::InputArgList> CfgOptions;
287 std::unique_ptr<llvm::opt::InputArgList> CLOptions;
325 TranslateInputArgs(const llvm::opt::InputArgList &Args) const;
439 llvm::opt::InputArgList ParseArgStrings(ArrayRef<const char *> Args,
/openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/
H A DMachODump.h30 class InputArgList; variable
35 void parseMachOOptions(const llvm::opt::InputArgList &InputArgs);
/openbsd-src/gnu/llvm/lld/MachO/
H A DDriver.h31 llvm::opt::InputArgList parse(ArrayRef<const char *> argv);
45 std::string createResponseFile(const llvm::opt::InputArgList &args);
H A DDriverUtils.cpp58 static void handleColorDiagnostics(InputArgList &args) { in handleColorDiagnostics()
79 InputArgList MachOOptTable::parse(ArrayRef<const char *> argv) { in parse()
88 InputArgList args = ParseArgs(vec, missingIndex, missingCount); in parse()
134 std::string macho::createResponseFile(const InputArgList &args) { in createResponseFile()
H A DDriver.cpp67 static HeaderFileType getOutputType(const InputArgList &args) { in getOutputType()
156 getSearchPaths(unsigned optionCode, InputArgList &args, in getSearchPaths()
194 static std::vector<StringRef> getSystemLibraryRoots(InputArgList &args) { in getSystemLibraryRoots()
209 getLibrarySearchPaths(InputArgList &args, const std::vector<StringRef> &roots) { in getLibrarySearchPaths()
214 getFrameworkSearchPaths(InputArgList &args, in getFrameworkSearchPaths()
220 static llvm::CachePruningPolicy getLTOCachePolicy(InputArgList &args) { in getLTOCachePolicy()
736 static TargetInfo *createTargetInfo(InputArgList &args) { in createTargetInfo()
855 static const char *getReproduceOption(InputArgList &args) { in getReproduceOption()
862 static std::pair<StringRef, StringRef> getOldNewOptions(opt::InputArgList &args, in getOldNewOptions()
928 static std::vector<SectionAlign> parseSectAlign(const opt::InputArgList &args) { in parseSectAlign()
[all …]
/openbsd-src/gnu/llvm/lld/MinGW/
H A DDriver.cpp85 opt::InputArgList parse(ArrayRef<const char *> argv);
102 opt::InputArgList MinGWOptTable::parse(ArrayRef<const char *> argv) { in parse()
108 opt::InputArgList args = this->ParseArgs(vec, missingIndex, missingCount); in parse()
169 opt::InputArgList args = parser.parse(argsArr.slice(1)); in link()
/openbsd-src/gnu/llvm/llvm/tools/llvm-strings/
H A Dllvm-strings.cpp86 static void parseIntArg(const opt::InputArgList &Args, int ID, T &Value) { in parseIntArg()
137 opt::InputArgList Args = in main()
/openbsd-src/gnu/llvm/llvm/tools/dsymutil/
H A Ddsymutil.cpp125 static Expected<std::vector<std::string>> getInputs(opt::InputArgList &Args, in getInputs()
213 getAccelTableKind(opt::InputArgList &Args) { in getAccelTableKind()
234 static Expected<ReproducerMode> getReproducerMode(opt::InputArgList &Args) { in getReproducerMode()
256 static Expected<DWARFVerify> getVerifyKind(opt::InputArgList &Args) { in getVerifyKind()
279 static Expected<DsymutilOptions> getOptions(opt::InputArgList &Args) { in getOptions()
561 opt::InputArgList Args = T.ParseArgs(ArgsArr, MAI, MAC); in main()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
H A DCOFFDirectiveParser.h38 Expected<opt::InputArgList> parse(StringRef Str);
/openbsd-src/gnu/llvm/llvm/lib/ToolDrivers/llvm-lib/
H A DLibDriver.cpp71 static std::vector<StringRef> getSearchPaths(opt::InputArgList *Args, in getSearchPaths()
113 static void doList(opt::InputArgList& Args) { in doList()
279 opt::InputArgList Args = in libDriverMain()
/openbsd-src/gnu/llvm/lldb/tools/driver/
H A DDriver.h44 lldb::SBError ProcessArgs(const llvm::opt::InputArgList &args, bool &exiting);

123