| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
| D | AMDGPUELFObjectWriter.cpp | 46 if (SymA->getSymbol().getName() == "SCRATCH_RSRC_DWORD0" || in getRelocType() 47 SymA->getSymbol().getName() == "SCRATCH_RSRC_DWORD1") in getRelocType() 83 if (SymA->getSymbol().isUndefined()) { in getRelocType() 85 SymA->getSymbol().getName() + "'"); in getRelocType()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
| D | ARMMachObjectWriter.cpp | 161 const MCSymbol *A = &Target.getSymA()->getSymbol(); in RecordARMScatteredHalfRelocation() 176 const MCSymbol *SB = &B->getSymbol(); in RecordARMScatteredHalfRelocation() 180 "symbol '" + B->getSymbol().getName() + in RecordARMScatteredHalfRelocation() 187 Value2 = Writer->getSymbolAddress(B->getSymbol(), Layout); in RecordARMScatteredHalfRelocation() 275 const MCSymbol *A = &Target.getSymA()->getSymbol(); in RecordARMScatteredRelocation() 291 const MCSymbol *SB = &B->getSymbol(); in RecordARMScatteredRelocation() 295 "symbol '" + B->getSymbol().getName() + in RecordARMScatteredRelocation() 302 Value2 = Writer->getSymbolAddress(B->getSymbol(), Layout); in RecordARMScatteredRelocation() 409 A = &Target.getSymA()->getSymbol(); in recordRelocation()
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/ |
| D | SValExplainer.h | 39 if (auto S = dyn_cast<SymbolRegionValue>(R->getSymbol())) in isThisObject() 62 return Visit(SR->getSymbol()); in VisitLocMemRegionVal() 76 return Visit(V.getSymbol()); in VisitNonLocSymbolVal() 148 if (R->getSymbol()->getType() in VisitSymbolicRegion() 150 return "object at " + Visit(R->getSymbol()); in VisitSymbolicRegion() 153 return "heap segment that starts at " + Visit(R->getSymbol()); in VisitSymbolicRegion() 154 return "pointee of " + Visit(R->getSymbol()); in VisitSymbolicRegion()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| D | SVals.cpp | 48 SymbolRef sym = SV->getSymbol(); in hasConjuredSymbol() 56 SymbolRef sym = SR->getSymbol(); in hasConjuredSymbol() 93 return SymR->getSymbol(); in getAsLocSymbol() 109 return SymR->getSymbol(); in getLocSymbolInBase() 126 return X->getSymbol(); in getAsSymbol() 181 return Visit(SV.getSymbol()); in VisitNonLocSymbolVal() 184 return Visit(SR->getSymbol()); in VisitSymbolicRegion() 359 os << castAs<nonloc::SymbolVal>().getSymbol(); in dumpToStream()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/ |
| D | MipsMCInstLower.cpp | 125 Symbol = MO.getMBB()->getSymbol(); in LowerSymbolOperand() 129 Symbol = AsmPrinter.getSymbol(MO.getGlobal()); in LowerSymbolOperand() 207 const MCSymbolRefExpr *Sym1 = MCSymbolRefExpr::create(BB1->getSymbol(), *Ctx); in createSub() 208 const MCSymbolRefExpr *Sym2 = MCSymbolRefExpr::create(BB2->getSymbol(), *Ctx); in createSub() 242 MCSymbolRefExpr::create(MI->getOperand(1).getMBB()->getSymbol(), *Ctx); in lowerLongBranchLUi() 284 MCSymbolRefExpr::create(MI->getOperand(2).getMBB()->getSymbol(), *Ctx); in lowerLongBranchADDiu()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
| D | X86MachObjectWriter.cpp | 145 const MCSymbol *A = &Target.getSymA()->getSymbol(); in RecordX86_64Relocation() 150 const MCSymbol *B = &Target.getSymB()->getSymbol(); in RecordX86_64Relocation() 217 const MCSymbol *Symbol = &Target.getSymA()->getSymbol(); in RecordX86_64Relocation() 377 const MCSymbol *A = &Target.getSymA()->getSymbol(); in recordScatteredRelocation() 393 const MCSymbol *SB = &B->getSymbol(); in recordScatteredRelocation() 488 Writer->getSymbolAddress(SymB->getSymbol(), Layout) + in recordTLVPRelocation() 500 Writer->addRelocation(&SymA->getSymbol(), Fragment->getParent(), MRE); in recordTLVPRelocation() 533 A = &Target.getSymA()->getSymbol(); in RecordX86Relocation()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
| D | WebAssemblyWasmObjectWriter.cpp | 49 if (SyExp->getSymbol().isInSection()) in getTargetSection() 50 return &SyExp->getSymbol().getSection(); in getTargetSection() 71 auto& SymA = cast<MCSymbolWasm>(RefA->getSymbol()); in getRelocType()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/ |
| D | MCObjectWriter.cpp | 27 const MCSymbol &SA = A->getSymbol(); in isSymbolRefDifferenceFullyResolved() 28 const MCSymbol &SB = B->getSymbol(); in isSymbolRefDifferenceFullyResolved()
|
| D | MCFragment.cpp | 131 if (!getLabelOffset(Layout, A->getSymbol(), ReportError, ValA)) in getSymbolOffsetImpl() 139 if (!getLabelOffset(Layout, B->getSymbol(), ReportError, ValB)) in getSymbolOffsetImpl() 173 Expr->getLoc(), Twine("symbol '") + RefB->getSymbol().getName() + in getBaseSymbol() 182 const MCSymbol &ASym = A->getSymbol(); in getBaseSymbol() 474 OS << " Sym:" << F->getSymbol(); in dump()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AVR/ |
| D | AVRAsmPrinter.cpp | 75 O << getSymbol(MO.getGlobal()); in printOperand() 81 O << *MO.getMBB()->getSymbol(); in printOperand() 188 const MCExpr *Expr = MCSymbolRefExpr::create(getSymbol(GV), Ctx); in lowerConstant()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/MSP430/ |
| D | MSP430AsmPrinter.cpp | 72 getSymbol(MO.getGlobal())->print(O, MAI); in PrintSymbolOperand() 92 MO.getMBB()->getSymbol()->print(O, MAI); in printOperand() 171 const MCSymbol *FunctionSymbol = getSymbol(F); in EmitInterruptVectorSection()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| D | MismatchedIteratorChecker.cpp | 209 if (isa<SymbolConjured>(ContSym->getSymbol())) in verifyMatch() 225 if (isa<SymbolConjured>(ContSym->getSymbol())) in verifyMatch() 255 if (isa<SymbolConjured>(ContSym->getSymbol())) in verifyMatch() 265 if (isa<SymbolConjured>(ContSym->getSymbol())) in verifyMatch()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/ |
| D | X86TargetObjectFile.cpp | 25 const MCSymbol *Sym = TM.getSymbol(GV); in getTTypeGlobalReference() 39 return TM.getSymbol(GV); in getCFIPersonalitySymbol()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| D | NVPTXAsmPrinter.cpp | 251 MO.getMBB()->getSymbol(), OutContext)); in lowerOperand() 257 MCOp = GetSymbolRef(getSymbol(MO.getGlobal())); in lowerOperand() 610 getSymbol(F)->print(O, MAI); in emitDeclaration() 1142 getSymbol(GVar)->print(O, MAI); in printModuleLevelGV() 1192 getSymbol(GVar)->print(O, MAI); in printModuleLevelGV() 1197 getSymbol(GVar)->print(O, MAI); in printModuleLevelGV() 1204 getSymbol(GVar)->print(O, MAI); in printModuleLevelGV() 1214 getSymbol(GVar)->print(O, MAI); in printModuleLevelGV() 1223 getSymbol(GVar)->print(O, MAI); in printModuleLevelGV() 1328 getSymbol(GVar)->print(O, MAI); in emitPTXGlobalVariable() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/BPF/ |
| D | BPFMCInstLower.cpp | 28 return Printer.getSymbol(MO.getGlobal()); in GetGlobalAddressSymbol() 69 MCSymbolRefExpr::create(MO.getMBB()->getSymbol(), Ctx)); in Lower()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| D | ELF.h | 1192 Elf32_Word getSymbol() const { return (r_info >> 8); } in getSymbol() function 1195 void setType(unsigned char t) { setSymbolAndType(getSymbol(), t); } in setType() 1209 Elf32_Word getSymbol() const { return (r_info >> 8); } in getSymbol() function 1212 void setType(unsigned char t) { setSymbolAndType(getSymbol(), t); } in setType() 1228 Elf64_Word getSymbol() const { return (r_info >> 32); } in getSymbol() function 1231 void setType(Elf64_Word t) { setSymbolAndType(getSymbol(), t); } in setType() 1245 Elf64_Word getSymbol() const { return (r_info >> 32); } in getSymbol() function 1248 void setType(Elf64_Word t) { setSymbolAndType(getSymbol(), t); } in setType()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| D | AArch64TargetObjectFile.cpp | 41 const MCSymbol *Sym = TM.getSymbol(GV); in getTTypeGlobalReference() 57 return TM.getSymbol(GV); in getCFIPersonalitySymbol()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Sparc/ |
| D | SparcMCInstLower.cpp | 40 Symbol = MO.getMBB()->getSymbol(); in LowerSymbolOperand() 44 Symbol = AP.getSymbol(MO.getGlobal()); in LowerSymbolOperand()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| D | WinCFGuard.cpp | 95 if (MCSymbol *impSym = lookupImpSymbol(Asm->getSymbol(&F))) { in endModule() 104 GFIDsEntries.push_back(Asm->getSymbol(&F)); in endModule()
|
| D | AsmPrinter.cpp | 492 MCSymbol *AsmPrinter::getSymbol(const GlobalValue *GV) const { in getSymbol() function in AsmPrinter 493 return TM.getSymbol(GV); in getSymbol() 510 return TM.getSymbol(&GV); in getSymbolPreferLocal() 531 if (GlobalGOTEquivs.count(getSymbol(GV))) in emitGlobalVariable() 543 MCSymbol *GVSym = getSymbol(GV); in emitGlobalVariable() 1157 MBB.isEntryBlock() ? FunctionSymbol : MBB.getSymbol(); in emitBBAddrMapSection() 1588 const MCSymbol *GOTEquivSym = getSymbol(&G); in computeGlobalGOTEquivs() 1615 MCSymbol *Name = getSymbol(&GIS); in emitGlobalIndirectSymbol() 1739 MCSymbol *Name = getSymbol(&F); in doFinalization() 1842 OutStreamer->emitSymbolAttribute(getSymbol(&GO), MCSA_WeakReference); in doFinalization() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/lld/COFF/ |
| D | ICF.cpp | 159 Symbol *b1 = a->file->getSymbol(r1.SymbolTableIndex); in equalsConstant() 160 Symbol *b2 = b->file->getSymbol(r2.SymbolTableIndex); in equalsConstant() 185 Symbol *b1 = a->file->getSymbol(r1.SymbolTableIndex); in equalsVariable() 186 Symbol *b2 = b->file->getSymbol(r2.SymbolTableIndex); in equalsVariable()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
| D | AArch64MachObjectWriter.cpp | 185 Target.getSymA()->getSymbol().getName() + in recordRelocation() 220 const MCSymbol *A = &Target.getSymA()->getSymbol(); in recordRelocation() 223 const MCSymbol *B = &Target.getSymB()->getSymbol(); in recordRelocation() 301 const MCSymbol *Symbol = &Target.getSymA()->getSymbol(); in recordRelocation()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Object/ |
| D | ELFObjectFile.h | 402 Expected<const Elf_Sym *> getSymbol(DataRefImpl Sym) const { in getSymbol() function 490 Expected<const Elf_Sym *> SymOrErr = getSymbol(Sym); in getSymbolName() 535 Expected<const Elf_Sym *> SymOrErr = getSymbol(Symb); in getSymbolValueImpl() 561 Expected<const Elf_Sym *> SymOrErr = getSymbol(Symb); in getSymbolAddress() 601 Expected<const Elf_Sym *> SymOrErr = getSymbol(Symb); in getSymbolAlignment() 620 Expected<const Elf_Sym *> SymOrErr = getSymbol(Sym); in getSymbolSize() 633 Expected<const Elf_Sym *> SymOrErr = getSymbol(Symb); in getSymbolBinding() 641 Expected<const Elf_Sym *> SymOrErr = getSymbol(Symb); in getSymbolOther() 649 Expected<const Elf_Sym *> SymOrErr = getSymbol(Symb); in getSymbolELFType() 658 Expected<const Elf_Sym *> SymOrErr = getSymbol(Symb); in getSymbolType() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/VE/ |
| D | VEMCInstLower.cpp | 63 return LowerSymbolOperand(MI, MO, AP.getSymbol(MO.getGlobal()), AP); in LowerOperand() 69 return LowerSymbolOperand(MI, MO, MO.getMBB()->getSymbol(), AP); in LowerOperand()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| D | SystemZMCInstLower.cpp | 42 Symbol = MO.getMBB()->getSymbol(); in getExpr() 47 Symbol = AsmPrinter.getSymbol(MO.getGlobal()); in getExpr()
|