Home
last modified time | relevance | path

Searched refs:Rels (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp178 static Error resolveSymbol(const std::vector<RelocationRef> &Rels, in resolveSymbol() argument
180 for (auto &R : Rels) { in resolveSymbol()
196 const std::vector<RelocationRef> &Rels, uint64_t Offset, in getSectionContents() argument
199 if (Error E = resolveSymbol(Rels, Offset, Sym)) in getSectionContents()
210 static Error resolveSymbolName(const std::vector<RelocationRef> &Rels, in resolveSymbolName() argument
213 if (Error EC = resolveSymbol(Rels, Offset, Sym)) in resolveSymbolName()
223 const std::vector<RelocationRef> &Rels, in printCOFFSymbolAddress() argument
226 if (!resolveSymbolName(Rels, Offset, Sym)) { in printCOFFSymbolAddress()
449 std::vector<RelocationRef> &Rels, in getPDataSection() argument
457 append_range(Rels, Section.relocations()); in getPDataSection()
[all …]
H A Dllvm-objdump.cpp467 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument
518 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument
542 std::vector<RelocationRef>::const_iterator RelCur = Rels->begin(); in printInst()
543 std::vector<RelocationRef>::const_iterator RelEnd = Rels->end(); in printInst()
588 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument
640 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument
1229 std::vector<RelocationRef> Rels = RelocMap[Section]; in disassembleObject() local
1230 std::vector<RelocationRef>::const_iterator RelCur = Rels.begin(); in disassembleObject()
1231 std::vector<RelocationRef>::const_iterator RelEnd = Rels.end(); in disassembleObject()
1402 "", *STI, &SP, Obj->getFileName(), &Rels, LVP); in disassembleObject()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Delf2yaml.cpp1066 auto Rels = Obj.rels(*Shdr); in dumpRelocSection() local
1067 if (!Rels) in dumpRelocSection()
1068 return Rels.takeError(); in dumpRelocSection()
1069 for (const Elf_Rel &Rel : *Rels) { in dumpRelocSection()
1076 auto Rels = Obj.relas(*Shdr); in dumpRelocSection() local
1077 if (!Rels) in dumpRelocSection()
1078 return Rels.takeError(); in dumpRelocSection()
1079 for (const Elf_Rela &Rel : *Rels) { in dumpRelocSection()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
H A DObject.cpp1858 Expected<typename ELFFile<ELFT>::Elf_Rel_Range> Rels = in readSections() local
1860 if (!Rels) in readSections()
1861 return Rels.takeError(); in readSections()
1863 if (Error Err = initRelocations(RelSec, Obj.SymbolTable, *Rels)) in readSections()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DELFDumper.cpp2911 Elf_Rel_Range Rels = unwrapOrError(FileName, Obj.rels(*PltRelSec)); in getPltSym() local
2913 Obj.getRelocationSymbol(Rels[Offset], PltSymTable)); in getPltSym()
2915 Elf_Rela_Range Rels = unwrapOrError(FileName, Obj.relas(*PltRelSec)); in getPltSym() local
2917 Obj.getRelocationSymbol(Rels[Offset], PltSymTable)); in getPltSym()