Searched refs:Rels (Results 1 – 2 of 2) sorted by relevance
/external/llvm/tools/llvm-objdump/ |
D | COFFDump.cpp | 175 static std::error_code resolveSymbol(const std::vector<RelocationRef> &Rels, in resolveSymbol() argument 177 for (std::vector<RelocationRef>::const_iterator I = Rels.begin(), in resolveSymbol() 178 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() 224 const std::vector<RelocationRef> &Rels, in printCOFFSymbolAddress() argument 227 if (!resolveSymbolName(Rels, Offset, Sym)) { in printCOFFSymbolAddress() 378 std::vector<RelocationRef> &Rels, in getPDataSection() argument [all …]
|
D | llvm-objdump.cpp | 330 std::vector<RelocationRef> Rels; in DisassembleObject() local 334 Rels.push_back(Reloc); in DisassembleObject() 340 std::sort(Rels.begin(), Rels.end(), RelocAddressLess); in DisassembleObject() 373 std::vector<RelocationRef>::const_iterator rel_cur = Rels.begin(); in DisassembleObject() 374 std::vector<RelocationRef>::const_iterator rel_end = Rels.end(); in DisassembleObject()
|