| /freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | COFFDump.cpp | 360 static Error resolveSymbol(const std::vector<RelocationRef> &Rels, in resolveSymbol() argument 362 for (auto &R : Rels) { in resolveSymbol() 378 const std::vector<RelocationRef> &Rels, uint64_t Offset, in getSectionContents() argument 381 if (Error E = resolveSymbol(Rels, Offset, Sym)) in getSectionContents() 392 static Error resolveSymbolName(const std::vector<RelocationRef> &Rels, in resolveSymbolName() argument 395 if (Error EC = resolveSymbol(Rels, Offset, Sym)) in resolveSymbolName() 405 const std::vector<RelocationRef> &Rels, in printCOFFSymbolAddress() argument 408 if (!resolveSymbolName(Rels, Offset, Sym)) { in printCOFFSymbolAddress() 613 std::vector<RelocationRef> &Rels, in getPDataSection() argument 621 append_range(Rels, Section.relocations()); in getPDataSection() [all …]
|
| H A D | llvm-objdump.cpp | 677 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument 779 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument 853 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument 906 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument 929 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument 983 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument 1021 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument 2014 std::vector<RelocationRef> Rels = RelocMap[Section]; in disassembleObject() local 2015 std::vector<RelocationRef>::const_iterator RelCur = Rels.begin(); in disassembleObject() 2016 std::vector<RelocationRef>::const_iterator RelEnd = Rels.end(); in disassembleObject() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | ELF.cpp | 413 std::vector<Elf_Rel> Rels; in decodeCrel() local 424 Rels.resize(Count); in decodeCrel() 432 Rels[I].r_offset = Crel.r_offset; in decodeCrel() 433 Rels[I++].setSymbolAndType(Crel.r_symidx, Crel.r_type, false); in decodeCrel() 438 return std::make_pair(std::move(Rels), std::move(Relas)); in decodeCrel()
|
| H A D | ELFObjectFile.cpp | 894 auto handleRels = [&](iterator_range<relocation_iterator> Rels, in getPltEntries() 896 for (const auto &R : Rels) { in getPltEntries()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
| H A D | ELFObject.cpp | 1895 Expected<typename ELFFile<ELFT>::Elf_Rel_Range> Rels = in readSections() local 1897 if (!Rels) in readSections() 1898 return Rels.takeError(); in readSections() 1900 if (Error Err = initRelocations(RelSec, *Rels)) in readSections()
|
| /freebsd/contrib/llvm-project/lld/ELF/ |
| H A D | Relocations.cpp | 2571 template <class ELFT, class Rels> 2573 OutputSection *osec, InputSection *sec, Rels rels) { in scanCrossRefs()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | ELFDumper.cpp | 3292 Elf_Rel_Range Rels = unwrapOrError(FileName, Obj.rels(*PltRelSec)); in getPltSym() local 3294 Obj.getRelocationSymbol(Rels[Offset], PltSymTable)); in getPltSym() 3296 Elf_Rela_Range Rels = unwrapOrError(FileName, Obj.relas(*PltRelSec)); in getPltSym() local 3298 Obj.getRelocationSymbol(Rels[Offset], PltSymTable)); in getPltSym()
|