Searched refs:Rels (Results 1 – 2 of 2) sorted by relevance
/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() 375 std::vector<RelocationRef> &Rels, in getPDataSection() argument [all …]
|
D | llvm-objdump.cpp | 955 std::vector<RelocationRef> Rels; in DisassembleObject() local 959 Rels.push_back(Reloc); in DisassembleObject() 965 std::sort(Rels.begin(), Rels.end(), RelocAddressLess); in DisassembleObject() 994 std::vector<RelocationRef>::const_iterator rel_cur = Rels.begin(); in DisassembleObject() 995 std::vector<RelocationRef>::const_iterator rel_end = Rels.end(); in DisassembleObject()
|