Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DObjectFile.h52 class RelocationRef {
57 RelocationRef() = default;
58 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
60 bool operator==(const RelocationRef &Other) const;
77 using relocation_iterator = content_iterator<RelocationRef>;
287 friend class RelocationRef; variable
607 inline RelocationRef::RelocationRef(DataRefImpl RelocationP, in RelocationRef() function
612 inline bool RelocationRef::operator==(const RelocationRef &Other) const {
616 inline void RelocationRef::moveNext() { in moveNext()
620 inline uint64_t RelocationRef::getOffset() const { in getOffset()
[all …]
H A DRelocationResolver.h25 class RelocationRef; variable
35 uint64_t resolveRelocation(RelocationResolver Resolver, const RelocationRef &R,
H A DGOFFObjectFile.h106 return relocation_iterator(RelocationRef(Sec, this)); in section_rel_begin()
109 return relocation_iterator(RelocationRef(Sec, this)); in section_rel_end()
H A DELFObjectFile.h228 class ELFRelocationRef : public RelocationRef {
230 ELFRelocationRef(const RelocationRef &B) : RelocationRef(B) { in ELFRelocationRef()
231 assert(isa<ELFObjectFileBase>(RelocationRef::getObject())); in ELFRelocationRef()
235 return cast<ELFObjectFileBase>(RelocationRef::getObject()); in getObject()
246 : relocation_iterator(RelocationRef( in elf_relocation_iterator()
1031 return relocation_iterator(RelocationRef()); in section_rel_begin()
1053 return relocation_iterator(RelocationRef(RelData, this)); in section_rel_begin()
1064 return relocation_iterator(RelocationRef(RelData, this)); in section_rel_end()
1077 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.h33 class RelocationRef;
119 bool isRelocAddressLess(object::RelocationRef A, object::RelocationRef B);
32 class RelocationRef; global() variable
H A DMachODump.h25 class RelocationRef; variable
65 const object::RelocationRef &RelRef,
H A DCOFFDump.cpp342 static Error resolveSymbol(const std::vector<RelocationRef> &Rels, in resolveSymbol()
360 const std::vector<RelocationRef> &Rels, uint64_t Offset, in getSectionContents()
374 static Error resolveSymbolName(const std::vector<RelocationRef> &Rels, in resolveSymbolName()
387 const std::vector<RelocationRef> &Rels, in printCOFFSymbolAddress()
595 std::vector<RelocationRef> &Rels, in getPDataSection()
623 const RelocationRef &Rel, in getCOFFRelocationValueString()
702 const std::vector<RelocationRef> &Rels) { in printRuntimeFunctionRels()
753 std::vector<RelocationRef> Rels; in printCOFFUnwindInfo()
H A DXCOFFDump.h35 const object::RelocationRef &RelRef,
H A Dllvm-objdump.cpp537 bool objdump::isRelocAddressLess(RelocationRef A, RelocationRef B) { in isRelocAddressLess()
541 static Error getRelocationValueString(const RelocationRef &Rel, in getRelocationValueString()
562 static bool getHidden(RelocationRef RelRef) { in getHidden()
641 const RelocationRef &Rel, uint64_t Address, in printRelocation()
678 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst()
717 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst()
741 std::vector<RelocationRef>::const_iterator RelCur = Rels->begin(); in printInst()
742 std::vector<RelocationRef>::const_iterator RelEnd = Rels->end(); in printInst()
787 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst()
840 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst()
[all …]
H A DWasmDump.cpp45 const RelocationRef &RelRef, in getWasmRelocationValueString()
H A DELFDump.cpp91 const RelocationRef &RelRef, in getRelocationValueString()
166 const RelocationRef &Rel, in getELFRelocationValueString()
350 for (const RelocationRef &Reloc : Section.relocations()) { in printDynamicRelocations()
/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()
H A DCOFFDumper.cpp117 void printRelocation(const SectionRef &Section, const RelocationRef &Reloc,
182 typedef DenseMap<const coff_section*, std::vector<RelocationRef> > RelocMapTy;
651 llvm::sort(RelocMap[Section], [](RelocationRef L, RelocationRef R) { in cacheRelocations()
1534 for (const RelocationRef &Reloc : Sec.relocations()) in printSectionHeaders()
1565 for (const RelocationRef &Reloc : Section.relocations()) { in printRelocations()
1583 const RelocationRef &Reloc, uint64_t Bias) { in printRelocation()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.h195 bool relocationNeedsGot(const RelocationRef &R) const override;
196 bool relocationNeedsStub(const RelocationRef &R) const override;
208 const RelocationRef &GetAddrRelocation);
H A DRuntimeDyldImpl.h449 virtual bool relocationNeedsGot(const RelocationRef &R) const { in relocationNeedsGot()
454 virtual bool relocationNeedsStub(const RelocationRef &R) const { in relocationNeedsStub()
/freebsd/contrib/llvm-project/lld/ELF/
H A DDWARF.cpp130 return RelocAddrEntry{secIndex, RelocationRef(d, nullptr), in findAux()
131 val, std::optional<object::RelocationRef>(), in findAux()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp527 return relocation_iterator(RelocationRef()); in section_rel_begin()
537 return relocation_iterator(RelocationRef()); in section_rel_begin()
541 return relocation_iterator(RelocationRef(Ret, this)); in section_rel_begin()
553 return relocation_iterator(RelocationRef()); in section_rel_end()
563 return relocation_iterator(RelocationRef()); in section_rel_end()
567 return relocation_iterator(RelocationRef(Ret, this)); in section_rel_end()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.cpp170 for (const RelocationRef &Relocacion : Section.relocations()) in cacheRelocations()
174 llvm::sort(RelocMap[CoffSection], [](RelocationRef L, RelocationRef R) { in cacheRelocations()
186 for (const RelocationRef &Relocation : Relocations) { in resolveSymbol()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.h120 std::vector<llvm::object::RelocationRef>>;

12