/external/llvm/include/llvm/MC/ |
MCRelocationInfo.h | 12 // (object::RelocationRef), or provided through the C API. 24 class RelocationRef; 43 virtual const MCExpr *createExprForRelocation(object::RelocationRef Rel);
|
MCObjectSymbolizer.h | 41 const object::RelocationRef *findRelocationAt(uint64_t Addr); 72 typedef DenseMap<uint64_t, object::RelocationRef> AddrToRelocMap;
|
/external/llvm/tools/llvm-objdump/ |
llvm-objdump.h | 22 class RelocationRef; 30 bool RelocAddressLess(object::RelocationRef a, object::RelocationRef b);
|
COFFDump.cpp | 175 static std::error_code resolveSymbol(const std::vector<RelocationRef> &Rels, 177 for (std::vector<RelocationRef>::const_iterator I = Rels.begin(), 197 const std::vector<RelocationRef> &Rels, uint64_t Offset, 213 static std::error_code resolveSymbolName(const std::vector<RelocationRef> &Rels, 224 const std::vector<RelocationRef> &Rels, 381 std::vector<RelocationRef> &Rels, 391 for (const RelocationRef &Reloc : Section.relocations()) 478 const std::vector<RelocationRef> &Rels) { 531 std::vector<RelocationRef> Rels;
|
llvm-objdump.cpp | 267 bool llvm::RelocAddressLess(RelocationRef a, RelocationRef b) { 446 std::vector<RelocationRef> Rels; 449 for (const RelocationRef &Reloc : RelocSec.relocations()) { 487 std::vector<RelocationRef>::const_iterator rel_cur = Rels.begin(); 488 std::vector<RelocationRef>::const_iterator rel_end = Rels.end(); 571 for (const RelocationRef &Reloc : Section.relocations()) {
|
MachODump.cpp | 329 for (const RelocationRef &Reloc : Sections[SectIdx].relocations()) {
|
/external/llvm/include/llvm/Object/ |
RelocVisitor.h | 49 RelocToApply visit(uint32_t RelocType, RelocationRef R, uint64_t SecAddr = 0, 175 int64_t getAddend32LE(RelocationRef R) { 183 int64_t getAddend64LE(RelocationRef R) { 191 int64_t getAddend32BE(RelocationRef R) { 199 int64_t getAddend64BE(RelocationRef R) { 209 RelocToApply visitELF_386_NONE(RelocationRef R) { 215 RelocToApply visitELF_386_32(RelocationRef R, uint64_t Value) { 220 RelocToApply visitELF_386_PC32(RelocationRef R, uint64_t Value, 229 RelocToApply visitELF_X86_64_NONE(RelocationRef R) { 232 RelocToApply visitELF_X86_64_64(RelocationRef R, uint64_t Value) [all...] |
ObjectFile.h | 34 /// RelocationRef - This is a value type class that represents a single 36 class RelocationRef { 41 RelocationRef() : OwningObject(nullptr) { } 43 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner); 45 bool operator==(const RelocationRef &Other) const; 73 typedef content_iterator<RelocationRef> relocation_iterator; 273 // Same as above for RelocationRef. 274 friend class RelocationRef; 484 /// RelocationRef 485 inline RelocationRef::RelocationRef(DataRefImpl RelocationP [all...] |
ELFObjectFile.h | 495 return relocation_iterator(RelocationRef(RelData, this)); 510 return relocation_iterator(RelocationRef(RelData, this)); 959 inline std::error_code getELFRelocationAddend(const RelocationRef R, [all...] |
COFF.h | 433 const coff_relocation *getCOFFRelocation(const RelocationRef &Reloc) const;
|
/external/llvm/tools/llvm-readobj/ |
llvm-readobj.h | 18 class RelocationRef; 23 bool relocAddressLess(object::RelocationRef A, 24 object::RelocationRef B);
|
MachODumper.cpp | 44 void printRelocation(const RelocationRef &Reloc); 46 void printRelocation(const MachOObjectFile *Obj, const RelocationRef &Reloc); 253 for (const RelocationRef &Reloc : Section.relocations()) 288 for (const RelocationRef &Reloc : Section.relocations()) { 305 void MachODumper::printRelocation(const RelocationRef &Reloc) { 310 const RelocationRef &Reloc) {
|
llvm-readobj.cpp | 159 bool relocAddressLess(RelocationRef a, RelocationRef b) {
|
COFFDumper.cpp | 61 void printRelocation(const SectionRef &Section, const RelocationRef &Reloc); 77 typedef DenseMap<const coff_section*, std::vector<RelocationRef> > RelocMapTy; 327 for (const RelocationRef &Reloc : S.relocations()) 624 for (const RelocationRef &Reloc : Sec.relocations()) 663 for (const RelocationRef &Reloc : Section.relocations()) { 681 const RelocationRef &Reloc) { [all...] |
/external/llvm/lib/MC/ |
MCRelocationInfo.cpp | 25 MCRelocationInfo::createExprForRelocation(object::RelocationRef Rel) {
|
/external/llvm/lib/MC/MCAnalysis/ |
MCObjectSymbolizer.cpp | 102 if (const RelocationRef *R = findRelocationAt(Address)) { 143 if (const RelocationRef *R = findRelocationAt(Address + Offset)) { 226 const RelocationRef *MCObjectSymbolizer::findRelocationAt(uint64_t Addr) { 260 for (const RelocationRef &Reloc : Section.relocations()) {
|
/external/llvm/lib/Target/X86/MCTargetDesc/ |
X86ELFRelocationInfo.cpp | 28 const MCExpr *createExprForRelocation(RelocationRef Rel) override {
|
X86MachORelocationInfo.cpp | 27 const MCExpr *createExprForRelocation(RelocationRef Rel) override {
|
/external/llvm/lib/Object/ |
COFFObjectFile.cpp | 366 return relocation_iterator(RelocationRef(Ret, this)); 394 return relocation_iterator(RelocationRef(Ret, this)); 896 COFFObjectFile::getCOFFRelocation(const RelocationRef &Reloc) const { [all...] |
MachOObjectFile.cpp | 822 return relocation_iterator(RelocationRef(Ret, this)); 839 return relocation_iterator(RelocationRef(Ret, this)); [all...] |
/external/llvm/lib/DebugInfo/ |
DWARFContext.cpp | 720 for (const RelocationRef &Reloc : Section.relocations()) {
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
RuntimeDyld.cpp | 336 for (const RelocationRef &Reloc : SI->relocations()) {
|