| /freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | COFFAsmParser.cpp | 298 if (getParser().parseSymbol(Sym)) in parseDirectiveSymbolAttribute() 453 if (getParser().parseSymbol(Sym)) in parseDirectiveDef() 496 if (getParser().parseSymbol(Symbol)) in parseDirectiveSecRel32() 524 if (getParser().parseSymbol(Symbol)) in parseDirectiveRVA() 552 if (getParser().parseSymbol(Symbol)) in parseDirectiveSafeSEH() 565 if (getParser().parseSymbol(Symbol)) in parseDirectiveSecIdx() 578 if (getParser().parseSymbol(Symbol)) in parseDirectiveSymIdx() 591 if (getParser().parseSymbol(Symbol)) in parseDirectiveSecNum() 604 if (getParser().parseSymbol(Symbol)) in parseDirectiveSecOffset() 665 if (getParser().parseSymbol(Symbol)) in parseSEHDirectiveStartProc() [all …]
|
| H A D | MCAsmParserExtension.cpp | 53 MCSymbol *FromSym = getContext().parseSymbol(From); in parseDirectiveCGProfile() 54 MCSymbol *ToSym = getContext().parseSymbol(To); in parseDirectiveCGProfile()
|
| H A D | WasmAsmParser.cpp | 217 if (Parser->parseSymbol(Sym)) in parseDirectiveSize() 244 getStreamer().getContext().parseSymbol(Lexer->getTok().getString())); in parseDirectiveType() 296 if (getParser().parseSymbol(Sym)) in ParseDirectiveSymbolAttribute()
|
| H A D | MCAsmParser.cpp | 166 bool MCAsmParser::parseSymbol(MCSymbol *&Res) { in parseSymbol() function in MCAsmParser 171 Res = getContext().parseSymbol(Name); in parseSymbol()
|
| H A D | ELFAsmParser.cpp | 167 MCSymbol *Sym = getContext().parseSymbol(Name); in parseDirectiveSymbolAttribute() 201 if (getParser().parseSymbol(Sym)) in parseDirectiveSize() 714 if (getParser().parseSymbol(Sym)) in parseDirectiveType() 790 if (getParser().parseSymbol(OriginalSym)) in parseDirectiveSymver() 852 if (getParser().parseSymbol(Alias)) in parseDirectiveWeakref() 861 if (getParser().parseSymbol(Sym)) in parseDirectiveWeakref()
|
| H A D | DarwinAsmParser.cpp | 505 if (getParser().parseSymbol(Sym)) in parseDirectiveAltEntry() 522 if (getParser().parseSymbol(Sym)) in parseDirectiveDesc() 558 if (getParser().parseSymbol(Sym)) in parseDirectiveIndirectSymbol() 630 if (getParser().parseSymbol(Sym)) in parseDirectiveLsym() 820 if (getParser().parseSymbol(Sym)) in parseDirectiveTBSS() 902 if (getParser().parseSymbol(Sym)) in parseDirectiveZerofill()
|
| H A D | COFFMasmParser.cpp | 448 if (getParser().parseSymbol(Sym)) in parseDirectiveProc() 514 MCSymbol *Alias = getContext().parseSymbol(AliasName); in parseDirectiveAlias() 515 MCSymbol *Actual = getContext().parseSymbol(ActualName); in parseDirectiveAlias()
|
| H A D | AsmParser.cpp | 1225 Sym = getContext().parseSymbol(MAI.isHLASM() ? SymbolName.upper() in parsePrimaryExpr() 1857 Sym = getContext().parseSymbol(IDVal); in parseStatement() 3904 check(parseSymbol(FnStartSym), Loc, "expected identifier in directive") || in parseDirectiveCVLinetable() 3906 check(parseSymbol(FnEndSym), Loc, "expected identifier in directive")) in parseDirectiveCVLinetable() 3927 check(parseSymbol(FnStartSym), Loc, "expected identifier") || in parseDirectiveCVInlineLinetable() 3929 check(parseSymbol(FnEndSym), Loc, "expected identifier")) in parseDirectiveCVInlineLinetable() 3956 if (parseSymbol(GapStartSym)) in parseDirectiveCVDefRange() 3961 if (parseSymbol(GapEndSym)) in parseDirectiveCVDefRange() 4100 if (parseSymbol(ProcSym)) in parseDirectiveCVFPOData() 4325 check(parseSymbol(Sym), "expected identifier in directive") || parseEOL()) in parseDirectiveCFIPersonalityOrLsda() [all …]
|
| H A D | MasmParser.cpp | 1483 Sym = getContext().parseSymbol(SymbolName); in parsePrimaryExpr() 1968 Sym = getContext().parseSymbol(IDVal); in parseStatement() 3012 auto *Sym = getContext().parseSymbol(Var.Name); in parseDirectiveEquate() 3320 MCSymbol *Sym = getContext().parseSymbol(Name); in parseDirectiveNamedValue() 3511 MCSymbol *Sym = getContext().parseSymbol(Name); in parseDirectiveNamedRealValue() 4005 MCSymbol *Sym = getContext().parseSymbol(Name); in parseDirectiveNamedStructValue() 4508 if (parseSymbol(Sym)) in parseDirectiveExtern() 4541 if (parseSymbol(Sym)) in parseDirectiveSymbolAttribute() 4566 if (parseSymbol(Sym)) in parseDirectiveComm()
|
| /freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
| H A D | Utils.cpp | 230 SimpleSymbol AliasSym = parseSymbol(Alias); in parseAliasList() 231 SimpleSymbol BaseSym = parseSymbol(Symbol); in parseAliasList()
|
| H A D | Symbol.cpp | 75 SimpleSymbol parseSymbol(StringRef SymName) { in parseSymbol() function
|
| H A D | RecordVisitor.cpp | 31 auto [SymName, SymKind, InterfaceType] = parseSymbol(GR.getName()); in visitGlobal()
|
| H A D | RecordsSlice.cpp | 26 auto [APIName, SymKind, InterfaceType] = parseSymbol(Name); in addRecord()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyldChecker.cpp | 137 std::tie(Token, Remaining) = parseSymbol(Expr); in getTokenForError() 226 std::pair<StringRef, StringRef> parseSymbol(StringRef Expr) const { in parseSymbol() function in llvm::RuntimeDyldCheckerExprEval 246 std::tie(Symbol, RemainingExpr) = parseSymbol(RemainingExpr); in evalDecodeOperand() 349 std::tie(Symbol, RemainingExpr) = parseSymbol(RemainingExpr); in evalNextPC() 406 std::tie(Symbol, RemainingExpr) = parseSymbol(RemainingExpr); in evalStubOrGOTAddr() 480 std::tie(Symbol, RemainingExpr) = parseSymbol(Expr); in evalIdentifierExpr()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
| H A D | Symbol.h | 194 LLVM_ABI SimpleSymbol parseSymbol(StringRef SymName);
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/MCParser/ |
| H A D | MCAsmParser.h | 283 bool parseSymbol(MCSymbol *&Res);
|
| /freebsd/contrib/llvm-project/clang/lib/InstallAPI/ |
| H A D | DylibVerifier.cpp | 592 SimpleSymbol Sym = parseSymbol(R->getName()); in verify() 757 SimpleSymbol Sym = parseSymbol(R.getName()); in visitGlobal()
|
| /freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/ |
| H A D | DylibReader.cpp | 483 auto Sym = parseSymbol(Name); in accumulateLocs()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCContext.h | 494 LLVM_ABI MCSymbol *parseSymbol(const Twine &Name);
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCContext.cpp | 240 MCSymbol *MCContext::parseSymbol(const Twine &Name) { in parseSymbol() function in MCContext
|