Home
last modified time | relevance | path

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

/external/llvm/tools/llvm-objdump/
DCOFFDump.cpp177 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 …]
Dllvm-objdump.cpp1090 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/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/
DCOFFDump.cpp174 static std::error_code resolveSymbol(const std::vector<RelocationRef> &Rels, in resolveSymbol() argument
176 for (auto &R : Rels) { in resolveSymbol()
192 const std::vector<RelocationRef> &Rels, uint64_t Offset, in getSectionContents() argument
195 if (std::error_code EC = resolveSymbol(Rels, Offset, Sym)) in getSectionContents()
208 static std::error_code resolveSymbolName(const std::vector<RelocationRef> &Rels, in resolveSymbolName() argument
211 if (std::error_code EC = resolveSymbol(Rels, Offset, Sym)) in resolveSymbolName()
221 const std::vector<RelocationRef> &Rels, in printCOFFSymbolAddress() argument
224 if (!resolveSymbolName(Rels, Offset, Sym)) { in printCOFFSymbolAddress()
443 std::vector<RelocationRef> &Rels, in getPDataSection() argument
453 Rels.push_back(Reloc); in getPDataSection()
[all …]
Dllvm-objdump.cpp987 std::vector<RelocationRef> *Rels = nullptr) { in printInst() argument
1020 std::vector<RelocationRef> *Rels) override { in printInst() argument
1041 std::vector<RelocationRef>::const_iterator rel_cur = Rels->begin(); in printInst()
1042 std::vector<RelocationRef>::const_iterator rel_end = Rels->end(); in printInst()
1095 std::vector<RelocationRef> *Rels) override { in printInst() argument
1147 std::vector<RelocationRef> *Rels) override { in printInst() argument
1430 std::vector<RelocationRef> Rels; in DisassembleObject() local
1434 Rels.push_back(Reloc); in DisassembleObject()
1440 llvm::sort(Rels.begin(), Rels.end(), RelocAddressLess); in DisassembleObject()
1470 std::vector<RelocationRef>::const_iterator rel_cur = Rels.begin(); in DisassembleObject()
[all …]
/external/swiftshader/third_party/LLVM/tools/llvm-objdump/
Dllvm-objdump.cpp196 std::vector<RelocationRef> Rels; in DisassembleObject() local
202 Rels.push_back(*ri); in DisassembleObject()
207 std::sort(Rels.begin(), Rels.end(), RelocAddressLess); in DisassembleObject()
258 std::vector<RelocationRef>::const_iterator rel_cur = Rels.begin(); in DisassembleObject()
259 std::vector<RelocationRef>::const_iterator rel_end = Rels.end(); in DisassembleObject()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Delf2yaml.cpp372 auto Rels = Obj.rels(Shdr); in dumpRelSection() local
373 if (!Rels) in dumpRelSection()
374 return errorToErrorCode(Rels.takeError()); in dumpRelSection()
375 for (const Elf_Rel &Rel : *Rels) { in dumpRelSection()
399 auto Rels = Obj.relas(Shdr); in dumpRelaSection() local
400 if (!Rels) in dumpRelaSection()
401 return errorToErrorCode(Rels.takeError()); in dumpRelaSection()
402 for (const Elf_Rela &Rel : *Rels) { in dumpRelaSection()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DELFDumper.cpp2241 Elf_Rel_Range Rels = unwrapOrError(Obj->rels(PltRelSec)); in getPltSym() local
2242 return unwrapOrError(Obj->getRelocationSymbol(&Rels[Offset], PltSymTable)); in getPltSym()
2244 Elf_Rela_Range Rels = unwrapOrError(Obj->relas(PltRelSec)); in getPltSym() local
2245 return unwrapOrError(Obj->getRelocationSymbol(&Rels[Offset], PltSymTable)); in getPltSym()