| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | ObjectFile.h | 74 DataRefImpl getRawDataRefImpl() const; 142 DataRefImpl getRawDataRefImpl() const; 213 : basic_symbol_iterator(SymbolRef(B->getRawDataRefImpl(), in symbol_iterator() 462 return getObject()->getSymbolName(getRawDataRefImpl()); in getName() 466 return getObject()->getSymbolAddress(getRawDataRefImpl()); in getAddress() 470 return getObject()->getSymbolValue(getRawDataRefImpl()); in getValue() 474 return getObject()->getSymbolAlignment(getRawDataRefImpl()); in getAlignment() 478 return getObject()->getCommonSymbolSize(getRawDataRefImpl()); in getCommonSize() 482 return getObject()->getSymbolSection(getRawDataRefImpl()); in getSection() 486 return getObject()->getSymbolType(getRawDataRefImpl()); in getType() [all …]
|
| H A D | GOFFObjectFile.h | 142 return getObject()->getSymbolFlags(getRawDataRefImpl()); in getSymbolGOFFFlags() 146 return getObject()->getSymbolType(getRawDataRefImpl()); in getSymbolGOFFType() 150 return getObject()->getSymbolSize(getRawDataRefImpl()); in getSize()
|
| H A D | XCOFFObjectFile.h | 805 return reinterpret_cast<const XCOFFSymbolEntry32 *>(getRawDataRefImpl().p); 809 return reinterpret_cast<const XCOFFSymbolEntry64 *>(getRawDataRefImpl().p); 817 return reinterpret_cast<const XCOFFSymbolEntry32 *>(getRawDataRefImpl().p) 822 return reinterpret_cast<const XCOFFSymbolEntry64 *>(getRawDataRefImpl().p) 827 return getObject()->getSymbolSize(getRawDataRefImpl()); 832 ? reinterpret_cast<const XCOFFSymbolEntry64 *>(getRawDataRefImpl().p)->X \ 833 : reinterpret_cast<const XCOFFSymbolEntry32 *>(getRawDataRefImpl().p)->X 858 return getRawDataRefImpl().p;
|
| H A D | ELFObjectFile.h | 144 return getObject()->getSectionType(getRawDataRefImpl()); in getType() 148 return getObject()->getSectionFlags(getRawDataRefImpl()); in getFlags() 152 return getObject()->getSectionOffset(getRawDataRefImpl()); in getOffset() 182 return getObject()->getSymbolSize(getRawDataRefImpl()); in getSize() 186 return getObject()->getSymbolBinding(getRawDataRefImpl()); in getBinding() 190 return getObject()->getSymbolOther(getRawDataRefImpl()); in getOther() 194 return getObject()->getSymbolELFType(getRawDataRefImpl()); in getELFType() 209 const DataRefImpl &DRIA = A.getRawDataRefImpl(); 210 const DataRefImpl &DRIB = B.getRawDataRefImpl(); 219 : symbol_iterator(SymbolRef(B->getRawDataRefImpl(), in elf_symbol_iterator() [all …]
|
| H A D | SymbolicFile.h | 140 DataRefImpl getRawDataRefImpl() const; 211 inline DataRefImpl BasicSymbolRef::getRawDataRefImpl() const { in getRawDataRefImpl() function
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
| H A D | RuntimeDyldMachOX86_64.h | 40 Obj.getRelocation(RelI->getRawDataRefImpl()); in processRelocationRef() 163 Obj.getRelocation(RelI->getRawDataRefImpl()); in processSubtractRelocation() 176 Obj.getRelocation(RelI->getRawDataRefImpl()); in processSubtractRelocation() 203 RelInfo = Obj.getRelocation(RelI->getRawDataRefImpl()); in processSubtractRelocation()
|
| H A D | RuntimeDyldMachOI386.h | 40 Obj.getRelocation(RelI->getRawDataRefImpl()); in processRelocationRef() 151 Obj.getRelocation(RelI->getRawDataRefImpl()); in processSECTDIFFRelocation() 164 Obj.getRelocation(RelI->getRawDataRefImpl()); in processSECTDIFFRelocation() 215 MachO::section Sec32 = Obj.getSection(JTSection.getRawDataRefImpl()); in populateJumpTable()
|
| H A D | RuntimeDyldMachOARM.h | 107 Obj.getRelocation(RelI->getRawDataRefImpl()); in processRelocationRef() 350 MachO.getRelocation(RelI->getRawDataRefImpl()); in processHALFSECTDIFFRelocation() 376 MachO.getRelocation(RelI->getRawDataRefImpl()); in processHALFSECTDIFFRelocation()
|
| H A D | RuntimeDyldMachOAArch64.h | 280 Obj.getRelocation(RelI->getRawDataRefImpl()); in processRelocationRef() 299 RelInfo = Obj.getRelocation(RelI->getRawDataRefImpl()); in processRelocationRef() 486 Obj.getRelocation(RelI->getRawDataRefImpl()); in processSubtractRelocation()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-nm/ |
| H A D | llvm-nm.cpp | 243 if (Sym.getRawDataRefImpl().p) in isDefined() 338 DataRefImpl SymDRI = S.Sym.getRawDataRefImpl(); in darwinPrintSymbol() 387 if (S.Sym.getRawDataRefImpl().p) { in darwinPrintSymbol() 388 if (MachO->getIndirectName(S.Sym.getRawDataRefImpl(), IndirectName)) in darwinPrintSymbol() 452 if (S.Sym.getRawDataRefImpl().p) { in darwinPrintSymbol() 454 MachO->getSymbolSection(S.Sym.getRawDataRefImpl()); in darwinPrintSymbol() 468 DataRefImpl Ref = Sec->getRawDataRefImpl(); in darwinPrintSymbol() 526 if (S.Sym.getRawDataRefImpl().p) { in darwinPrintSymbol() 527 if (MachO->getIndirectName(S.Sym.getRawDataRefImpl(), IndirectName)) in darwinPrintSymbol() 598 DataRefImpl SymDRI = S.Sym.getRawDataRefImpl(); in darwinPrintStab() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
| H A D | MachOReader.cpp | 87 MachOObj.getSectionContents(SecRef->getRawDataRefImpl()); in extractSections() 96 for (auto RI = MachOObj.section_rel_begin(SecRef->getRawDataRefImpl()), in extractSections() 97 RE = MachOObj.section_rel_end(SecRef->getRawDataRefImpl()); in extractSections() 101 R.Info = MachOObj.getRelocation(RI->getRawDataRefImpl()); in extractSections() 239 Symbol.getRawDataRefImpl())) in readSymbolTable() 241 Symbol.getRawDataRefImpl()))); in readSymbolTable()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | XCOFFLinkGraphBuilder.cpp | 194 Obj.toSymbolRef(Sym.getRawDataRefImpl()); in getXCOFFSymbolContainingSymbolRef() 229 OS << " (idx: " << Obj.getSymbolIndex(Sym.getRawDataRefImpl().p) << ")"; in printSymbolEntry() 233 << Obj.getSymbolIndex(ParentSym->getRawDataRefImpl().p) << ")"; in printSymbolEntry() 367 auto SymbolIndex = Obj.getSymbolIndex(Symbol.getRawDataRefImpl().p); in processRelocations()
|
| H A D | MachOLinkGraphBuilder.cpp | 124 auto SecIndex = Obj.getSectionIndex(SecRef.getRawDataRefImpl()); in createNormalizedSections() 128 Obj.getSection64(SecRef.getRawDataRefImpl()); in createNormalizedSections() 141 const MachO::section &Sec32 = Obj.getSection(SecRef.getRawDataRefImpl()); in createNormalizedSections() 232 unsigned SymbolIndex = Obj.getSymbolIndex(SymRef.getRawDataRefImpl()); in createNormalizedSymbols() 241 Obj.getSymbol64TableEntry(SymRef.getRawDataRefImpl()); in createNormalizedSymbols() 249 Obj.getSymbolTableEntry(SymRef.getRawDataRefImpl()); in createNormalizedSymbols()
|
| H A D | MachOLinkGraphBuilder.h | 171 getObject().getRelocation(RelItr->getRawDataRefImpl()); in getRelocationInfo()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | ELFDump.cpp | 101 DataRefImpl Rel = RelRef.getRawDataRefImpl(); in getRelocationValueString() 137 Obj->getSymbol(SI->getRawDataRefImpl()); in getRelocationValueString() 147 Obj->getSection((*SymSI)->getRawDataRefImpl()); in getRelocationValueString() 198 ->getSection(Sec.getRawDataRefImpl())))) in getSectionLMA()
|
| H A D | XCOFFDump.cpp | 385 const XCOFFSymbolRef SymRef = Obj.toSymbolRef(Sym.getRawDataRefImpl()); in getXCOFFSymbolCsectSMC() 400 const XCOFFSymbolRef SymRef = Obj.toSymbolRef(Sym.getRawDataRefImpl()); in getXCOFFSymbolContainingSymbolRef() 415 const XCOFFSymbolRef SymRef = Obj.toSymbolRef(Sym.getRawDataRefImpl()); in isLabel()
|
| H A D | llvm-objdump.cpp | 567 DataRefImpl Rel = RelRef.getRawDataRefImpl(); in getHidden() 1197 return unwrapOrError(Elf32LEObj->getSymbol(Sym.getRawDataRefImpl()), in getElfSymbolType() 1201 return unwrapOrError(Elf64LEObj->getSymbol(Sym.getRawDataRefImpl()), in getElfSymbolType() 1205 return unwrapOrError(Elf32BEObj->getSymbol(Sym.getRawDataRefImpl()), in getElfSymbolType() 1209 return unwrapOrError(Elf64BEObj->getSymbol(Sym.getRawDataRefImpl()), in getElfSymbolType() 1228 Address = unwrapOrError(Obj.getSymbol(Symbol.getRawDataRefImpl()), in addDynamicElfSymbols() 1485 DataRefImpl SymbolDRI = Symbol.getRawDataRefImpl(); in createSymbolInfo() 1669 DataRefImpl DR = Section.getRawDataRefImpl(); in getSegmentName() 1799 DataRefImpl SymDRI = Symbol.getRawDataRefImpl(); in disassembleObject() 2500 RelCur->getRawDataRefImpl().p); in disassembleObject() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyldMachO.cpp | 61 Obj.getRelocation(RelI->getRawDataRefImpl()); in processScatteredVANILLA() 103 Obj.getRelocation(RI->getRawDataRefImpl()); in getRelocationValueRef() 187 MachO::section Sec32 = Obj.getSection(PTSection.getRawDataRefImpl()); in populateIndirectSymbolPointersSection()
|
| H A D | RuntimeDyldMachO.h | 65 Obj.getRelocation(RI->getRawDataRefImpl()); in getRelocationEntry()
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | RelocationResolver.cpp | 884 return Elf32LEObj->getRelSection(R.getRawDataRefImpl())->sh_type; in resolveRelocation() 886 return Elf64LEObj->getRelSection(R.getRawDataRefImpl())->sh_type; in resolveRelocation() 888 return Elf32BEObj->getRelSection(R.getRawDataRefImpl())->sh_type; in resolveRelocation() 890 return Elf64BEObj->getRelSection(R.getRawDataRefImpl())->sh_type; in resolveRelocation() 915 R.getRawDataRefImpl().p); in resolveRelocation()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | MachODumper.cpp | 476 getSection(Obj, Section.getRawDataRefImpl(), MOSection); in printSectionHeaders() 477 DataRefImpl DR = Section.getRawDataRefImpl(); in printSectionHeaders() 557 DataRefImpl DR = Reloc.getRawDataRefImpl(); in printRelocation() 623 ? Obj->getSymbol64TableEntry(Symbol.getRawDataRefImpl()).n_type in getSymbolType() 624 : Obj->getSymbolTableEntry(Symbol.getRawDataRefImpl()).n_type; in getSymbolType() 670 getSymbol(Obj, Symbol.getRawDataRefImpl(), MOSymbol); in printSymbol()
|
| H A D | WasmDumper.cpp | 222 WasmSymbol Symbol = Obj->getWasmSymbol(Sym.getRawDataRefImpl()); in printSymbol()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | ObjectFileInterface.cpp | 85 auto SegName = Obj.getSectionFinalSegmentName(Sec.getRawDataRefImpl()); in getMachOObjectFileSymbolInfo() 86 auto SecName = cantFail(Obj.getSectionName(Sec.getRawDataRefImpl())); in getMachOObjectFileSymbolInfo()
|
| H A D | MachO.cpp | 262 MachOObj->getSectionFinalSegmentName(Sec.getRawDataRefImpl()); in operator ()()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/XCOFF/ |
| H A D | XCOFFReader.cpp | 54 DataRefImpl SymbolDRI = Sym.getRawDataRefImpl(); in readSymbols()
|