Home
last modified time | relevance | path

Searched refs:RelocationRef (Results 1 – 25 of 43) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DObjectFile.h53 class RelocationRef {
58 RelocationRef() = default;
59 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
61 bool operator==(const RelocationRef &Other) const;
78 using relocation_iterator = content_iterator<RelocationRef>;
288 friend class RelocationRef; variable
608 inline RelocationRef::RelocationRef(DataRefImpl RelocationP, in RelocationRef() function
613 inline bool RelocationRef::operator==(const RelocationRef &Other) const {
617 inline void RelocationRef::moveNext() { in moveNext()
621 inline uint64_t RelocationRef::getOffset() const { in getOffset()
[all …]
H A DRelocationResolver.h26 class RelocationRef; variable
37 const RelocationRef &R, uint64_t S,
H A DGOFFObjectFile.h107 return relocation_iterator(RelocationRef(Sec, this)); in section_rel_begin()
110 return relocation_iterator(RelocationRef(Sec, this)); in section_rel_end()
H A DELFObjectFile.h231 class ELFRelocationRef : public RelocationRef {
233 ELFRelocationRef(const RelocationRef &B) : RelocationRef(B) { in ELFRelocationRef()
234 assert(isa<ELFObjectFileBase>(RelocationRef::getObject())); in ELFRelocationRef()
238 return cast<ELFObjectFileBase>(RelocationRef::getObject()); in getObject()
249 : relocation_iterator(RelocationRef( in elf_relocation_iterator()
1036 return relocation_iterator(RelocationRef()); in section_rel_begin()
1058 return relocation_iterator(RelocationRef(RelData, this)); in section_rel_begin()
1069 return relocation_iterator(RelocationRef(RelData, this)); in section_rel_end()
1082 return relocation_iterator(RelocationRef(RelData, this)); in section_rel_end()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFRelocMap.h23 object::RelocationRef Reloc;
25 std::optional<object::RelocationRef> Reloc2;
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DWasmDump.h21 class RelocationRef; variable
27 const object::RelocationRef &RelRef,
H A DELFDump.h22 class RelocationRef; variable
28 const object::RelocationRef &Rel,
H A DCOFFDump.h21 class RelocationRef; variable
26 const object::RelocationRef &Rel,
H A Dllvm-objdump.h31 class RelocationRef; variable
119 bool isRelocAddressLess(object::RelocationRef A, object::RelocationRef B);
H A DMachODump.h25 class RelocationRef; variable
65 const object::RelocationRef &RelRef,
H A DCOFFDump.cpp360 static Error resolveSymbol(const std::vector<RelocationRef> &Rels, in resolveSymbol()
378 const std::vector<RelocationRef> &Rels, uint64_t Offset, in getSectionContents()
392 static Error resolveSymbolName(const std::vector<RelocationRef> &Rels, in resolveSymbolName()
405 const std::vector<RelocationRef> &Rels, in printCOFFSymbolAddress()
613 std::vector<RelocationRef> &Rels, in getPDataSection()
641 const RelocationRef &Rel, in getCOFFRelocationValueString()
720 const std::vector<RelocationRef> &Rels) { in printRuntimeFunctionRels()
771 std::vector<RelocationRef> Rels; in printCOFFUnwindInfo()
H A DXCOFFDump.h35 const object::RelocationRef &RelRef,
H A DWasmDump.cpp45 const RelocationRef &RelRef, in getWasmRelocationValueString()
H A DELFDump.cpp98 const RelocationRef &RelRef, in getRelocationValueString()
173 const RelocationRef &Rel, in getELFRelocationValueString()
366 for (const RelocationRef &Reloc : Section.relocations()) { in printDynamicRelocations()
H A Dllvm-objdump.cpp536 bool objdump::isRelocAddressLess(RelocationRef A, RelocationRef B) { in isRelocAddressLess()
540 static Error getRelocationValueString(const RelocationRef &Rel, in getRelocationValueString()
561 static bool getHidden(RelocationRef RelRef) { in getHidden()
640 const RelocationRef &Rel, uint64_t Address, in printRelocation()
677 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst()
779 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst()
853 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst()
906 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst()
929 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst()
983 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp70 void printRelocation(const SectionRef &Section, const RelocationRef &Reloc);
84 const RelocationRef &Reloc) { in printRelocation()
130 for (const RelocationRef &Reloc : Section.relocations()) { in printRelocations()
210 for (const RelocationRef &Reloc : Section.relocations()) in printSectionHeaders()
H A Dllvm-readobj.h22 class RelocationRef; variable
H A DMachODumper.cpp69 void printRelocation(const RelocationRef &Reloc);
71 void printRelocation(const MachOObjectFile *Obj, const RelocationRef &Reloc);
503 for (const RelocationRef &Reloc : Section.relocations()) in printSectionHeaders()
530 for (const RelocationRef &Reloc : Section.relocations()) { in printRelocations()
547 void MachODumper::printRelocation(const RelocationRef &Reloc) { in printRelocation()
552 const RelocationRef &Reloc) { in printRelocation()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.h214 bool relocationNeedsGot(const RelocationRef &R) const override;
215 bool relocationNeedsStub(const RelocationRef &R) const override;
227 const RelocationRef &GetAddrRelocation);
H A DRuntimeDyldCOFF.h49 bool relocationNeedsDLLImportStub(const RelocationRef &R) const override;
H A DRuntimeDyldImpl.h444 virtual bool relocationNeedsGot(const RelocationRef &R) const { in relocationNeedsGot()
449 virtual bool relocationNeedsStub(const RelocationRef &R) const { in relocationNeedsStub()
454 virtual bool relocationNeedsDLLImportStub(const RelocationRef &R) const { in relocationNeedsDLLImportStub()
H A DRuntimeDyldCOFF.cpp122 const RelocationRef &R) const { in relocationNeedsDLLImportStub()
/freebsd/contrib/llvm-project/lld/ELF/
H A DDWARF.cpp128 return RelocAddrEntry{secIndex, RelocationRef(d, nullptr), in findAux()
129 val, std::optional<object::RelocationRef>(), in findAux()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp532 return relocation_iterator(RelocationRef()); in section_rel_begin()
542 return relocation_iterator(RelocationRef()); in section_rel_begin()
546 return relocation_iterator(RelocationRef(Ret, this)); in section_rel_begin()
558 return relocation_iterator(RelocationRef()); in section_rel_end()
568 return relocation_iterator(RelocationRef()); in section_rel_end()
572 return relocation_iterator(RelocationRef(Ret, this)); in section_rel_end()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.h120 std::vector<llvm::object::RelocationRef>>;

12