/external/llvm/tools/llvm-objdump/ |
D | COFFDump.cpp | 177 static std::error_code resolveSymbol(const std::vector<RelocationRef> &Rels, in resolveSymbol() argument 179 for (std::vector<RelocationRef>::const_iterator I = Rels.begin(), in resolveSymbol() 180 E = Rels.end(); in resolveSymbol() 197 const std::vector<RelocationRef> &Rels, uint64_t Offset, in getSectionContents() argument 200 if (std::error_code EC = resolveSymbol(Rels, Offset, Sym)) in getSectionContents() 213 static std::error_code resolveSymbolName(const std::vector<RelocationRef> &Rels, in resolveSymbolName() argument 216 if (std::error_code EC = resolveSymbol(Rels, Offset, Sym)) in resolveSymbolName() 226 const std::vector<RelocationRef> &Rels, in printCOFFSymbolAddress() argument 229 if (!resolveSymbolName(Rels, Offset, Sym)) { in printCOFFSymbolAddress() 448 std::vector<RelocationRef> &Rels, in getPDataSection() argument [all …]
|
D | llvm-objdump.cpp | 1090 std::vector<RelocationRef> Rels; in DisassembleObject() local 1094 Rels.push_back(Reloc); in DisassembleObject() 1100 std::sort(Rels.begin(), Rels.end(), RelocAddressLess); in DisassembleObject() 1129 std::vector<RelocationRef>::const_iterator rel_cur = Rels.begin(); in DisassembleObject() 1130 std::vector<RelocationRef>::const_iterator rel_end = Rels.end(); in DisassembleObject()
|
/external/llvm-project/llvm/tools/llvm-objdump/ |
D | COFFDump.cpp | 178 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 458 Rels.push_back(Reloc); in getPDataSection() [all …]
|
D | llvm-objdump.cpp | 1134 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument 1185 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument 1209 std::vector<RelocationRef>::const_iterator RelCur = Rels->begin(); in printInst() 1210 std::vector<RelocationRef>::const_iterator RelEnd = Rels->end(); in printInst() 1255 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument 1307 StringRef ObjectFilename, std::vector<RelocationRef> *Rels, in printInst() argument 1830 std::vector<RelocationRef> Rels = RelocMap[Section]; in disassembleObject() local 1831 std::vector<RelocationRef>::const_iterator RelCur = Rels.begin(); in disassembleObject() 1832 std::vector<RelocationRef>::const_iterator RelEnd = Rels.end(); in disassembleObject() 2003 "", *STI, &SP, Obj->getFileName(), &Rels, LVP); in disassembleObject()
|
/external/llvm-project/clang-tools-extra/clangd/index/dex/ |
D | Dex.cpp | 27 RelationSlab Rels) { in build() argument 32 return std::make_unique<Dex>(Data.first, Data.second, Rels, std::move(Data), in build()
|
/external/llvm-project/llvm/tools/obj2yaml/ |
D | elf2yaml.cpp | 1077 auto Rels = Obj.rels(*Shdr); in dumpRelocSection() local 1078 if (!Rels) in dumpRelocSection() 1079 return Rels.takeError(); in dumpRelocSection() 1080 for (const Elf_Rel &Rel : *Rels) { in dumpRelocSection() 1087 auto Rels = Obj.relas(*Shdr); in dumpRelocSection() local 1088 if (!Rels) in dumpRelocSection() 1089 return Rels.takeError(); in dumpRelocSection() 1090 for (const Elf_Rela &Rel : *Rels) { in dumpRelocSection()
|
/external/llvm-project/clang-tools-extra/clangd/unittests/ |
D | FileIndexTests.cpp | 97 std::unique_ptr<RelationSlab> relSlab(llvm::ArrayRef<const Relation> Rels) { in relSlab() argument 99 for (auto &Rel : Rels) in relSlab()
|
/external/llvm-project/llvm/tools/llvm-objcopy/ELF/ |
D | Object.cpp | 1850 Expected<typename ELFFile<ELFT>::Elf_Rel_Range> Rels = in readSections() local 1852 if (!Rels) in readSections() 1853 return Rels.takeError(); in readSections() 1855 if (Error Err = initRelocations(RelSec, Obj.SymbolTable, *Rels)) in readSections()
|
/external/llvm-project/llvm/tools/llvm-readobj/ |
D | ELFDumper.cpp | 3226 Elf_Rel_Range Rels = unwrapOrError(FileName, Obj.rels(*PltRelSec)); in getPltSym() local 3228 Obj.getRelocationSymbol(Rels[Offset], PltSymTable)); in getPltSym() 3230 Elf_Rela_Range Rels = unwrapOrError(FileName, Obj.relas(*PltRelSec)); in getPltSym() local 3232 Obj.getRelocationSymbol(Rels[Offset], PltSymTable)); in getPltSym()
|