Searched refs:RelocationRef (Results 1 – 10 of 10) sorted by relevance
/external/llvm/include/llvm/Object/ |
D | RelocVisitor.h | 49 RelocToApply visit(uint32_t RelocType, RelocationRef R, uint64_t SecAddr = 0, 119 RelocToApply visitELF_386_NONE(RelocationRef R) { in visitELF_386_NONE() 125 RelocToApply visitELF_386_32(RelocationRef R, uint64_t Value) { in visitELF_386_32() 131 RelocToApply visitELF_386_PC32(RelocationRef R, uint64_t Value, in visitELF_386_PC32() 141 RelocToApply visitELF_X86_64_NONE(RelocationRef R) { in visitELF_X86_64_NONE() 144 RelocToApply visitELF_X86_64_64(RelocationRef R, uint64_t Value) { in visitELF_X86_64_64() 149 RelocToApply visitELF_X86_64_PC32(RelocationRef R, uint64_t Value, in visitELF_X86_64_PC32() 157 RelocToApply visitELF_X86_64_32(RelocationRef R, uint64_t Value) { in visitELF_X86_64_32() 163 RelocToApply visitELF_X86_64_32S(RelocationRef R, uint64_t Value) { in visitELF_X86_64_32S() 171 RelocToApply visitELF_PPC64_ADDR32(RelocationRef R, uint64_t Value) { in visitELF_PPC64_ADDR32() [all …]
|
D | ObjectFile.h | 95 class RelocationRef { 100 RelocationRef() : OwningObject(NULL) { } in RelocationRef() function 102 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner); 104 bool operator==(const RelocationRef &Other) const; 106 error_code getNext(RelocationRef &Result) const; 132 typedef content_iterator<RelocationRef> relocation_iterator; 332 friend class RelocationRef; variable 334 RelocationRef &Res) const = 0; 544 inline RelocationRef::RelocationRef(DataRefImpl RelocationP, in RelocationRef() function 549 inline bool RelocationRef::operator==(const RelocationRef &Other) const { [all …]
|
D | MachO.h | 91 RelocationRef &Res) const;
|
D | COFF.h | 141 RelocationRef &Res) const;
|
D | ELF.h | 690 RelocationRef &Res) const; 1394 return relocation_iterator(RelocationRef(RelData, this)); 1411 return relocation_iterator(RelocationRef(RelData, this)); 1417 RelocationRef &Result) const { 1439 Result = RelocationRef(Rel, this);
|
/external/llvm/tools/llvm-objdump/ |
D | llvm-objdump.h | 23 class RelocationRef; variable 32 bool RelocAddressLess(object::RelocationRef a, object::RelocationRef b);
|
D | COFFDump.cpp | 173 static error_code resolveSymbol(const std::vector<RelocationRef> &Rels, in resolveSymbol() 175 for (std::vector<RelocationRef>::const_iterator I = Rels.begin(), in resolveSymbol() 193 const std::vector<RelocationRef> &Rels, in getSectionContents() 209 static error_code resolveSymbolName(const std::vector<RelocationRef> &Rels, in resolveSymbolName() 218 const std::vector<RelocationRef> &Rels, in printCOFFSymbolAddress() 254 std::vector<RelocationRef> Rels; in printCOFFUnwindInfo()
|
D | llvm-objdump.cpp | 187 bool llvm::RelocAddressLess(RelocationRef a, RelocationRef b) { in RelocAddressLess() 243 std::vector<RelocationRef> Rels; in DisassembleObject() 326 std::vector<RelocationRef>::const_iterator rel_cur = Rels.begin(); in DisassembleObject() 327 std::vector<RelocationRef>::const_iterator rel_end = Rels.end(); in DisassembleObject()
|
/external/llvm/lib/Object/ |
D | COFFObjectFile.cpp | 416 return relocation_iterator(RelocationRef(ret, this)); in getSectionRelBegin() 430 return relocation_iterator(RelocationRef(ret, this)); in getSectionRelEnd() 702 RelocationRef &Res) const { in getRelocationNext() 705 Res = RelocationRef(Rel, this); in getRelocationNext()
|
D | MachOObjectFile.cpp | 689 return relocation_iterator(RelocationRef(ret, this)); in getSectionRelBegin() 705 return relocation_iterator(RelocationRef(ret, this)); in getSectionRelEnd() 738 RelocationRef &Res) const { in getRelocationNext() 740 Res = RelocationRef(Rel, this); in getRelocationNext()
|