/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | COFFDump.cpp | 342 static Error resolveSymbol(const std::vector<RelocationRef> &Rels, in resolveSymbol() argument 344 for (auto &R : Rels) { in resolveSymbol() 360 const std::vector<RelocationRef> &Rels, uint64_t Offset, in getSectionContents() argument 363 if (Error E = resolveSymbol(Rels, Offset, Sym)) in getSectionContents() 374 static Error resolveSymbolName(const std::vector<RelocationRef> &Rels, in resolveSymbolName() argument 377 if (Error EC = resolveSymbol(Rels, Offset, Sym)) in resolveSymbolName() 387 const std::vector<RelocationRef> &Rels, in printCOFFSymbolAddress() argument 390 if (!resolveSymbolName(Rels, Offset, Sym)) { in printCOFFSymbolAddress() 595 std::vector<RelocationRef> &Rels, in getPDataSection() argument 603 append_range(Rels, Sectio in getPDataSection() 702 printRuntimeFunctionRels(const COFFObjectFile * Obj,const RuntimeFunction & RF,uint64_t SectionOffset,const std::vector<RelocationRef> & Rels) printRuntimeFunctionRels() argument 753 std::vector<RelocationRef> Rels; printCOFFUnwindInfo() local [all...] |
H A D | llvm-objdump.cpp | 678 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument 717 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument 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() argument 840 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument 863 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument 917 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument 955 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument 1936 std::vector<RelocationRef> Rels = RelocMap[Section]; in disassembleObject() local [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | ELF.cpp | 411 std::vector<Elf_Rel> Rels; in decodeCrel() local 422 Rels.resize(Count); in decodeCrel() 430 Rels[I].r_offset = Crel.r_offset; in decodeCrel() 431 Rels[I++].setSymbolAndType(Crel.r_symidx, Crel.r_type, false); in decodeCrel() 436 return std::make_pair(std::move(Rels), std::move(Relas)); in decodeCrel()
|
H A D | ELFObjectFile.cpp | 849 auto handleRels = [&](iterator_range<relocation_iterator> Rels, in getPltEntries() 851 for (const auto &R : Rels) { in getPltEntries()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
H A D | ELFObject.cpp | 1898 Expected<typename ELFFile<ELFT>::Elf_Rel_Range> Rels = in readSections() local 1900 if (!Rels) in readSections() 1901 return Rels.takeError(); in readSections() 1903 if (Error Err = initRelocations(RelSec, *Rels)) in readSections()
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | Relocations.cpp | 2407 template <class ELFT, class Rels> 2409 InputSection *sec, Rels rels) { in scanCrossRefs()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | ELFDumper.cpp | 3229 Elf_Rel_Range Rels = unwrapOrError(FileName, Obj.rels(*PltRelSec)); in getPltSym() local 3231 Obj.getRelocationSymbol(Rels[Offset], PltSymTable)); in getPltSym() 3233 Elf_Rela_Range Rels = unwrapOrError(FileName, Obj.relas(*PltRelSec)); in getPltSym() local 3235 Obj.getRelocationSymbol(Rels[Offset], PltSymTable)); in getPltSym()
|