/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);
|
/external/llvm/include/llvm/Object/ |
RelocVisitor.h | 52 RelocToApply visit(uint32_t RelocType, RelocationRef R, uint64_t Value = 0) { 70 RelocToApply visitELF(uint32_t RelocType, RelocationRef R, uint64_t Value) { 205 RelocToApply visitCOFF(uint32_t RelocType, RelocationRef R, uint64_t Value) { 228 RelocToApply visitMachO(uint32_t RelocType, RelocationRef R, uint64_t Value) { 242 int64_t getELFAddend(RelocationRef R) { 249 uint8_t getLengthMachO64(RelocationRef R) { 257 RelocToApply visitELF_386_NONE(RelocationRef R) { 263 RelocToApply visitELF_386_32(RelocationRef R, uint64_t Value) { 267 RelocToApply visitELF_386_PC32(RelocationRef R, uint64_t Value) { 273 RelocToApply visitELF_X86_64_NONE(RelocationRef R) [all...] |
ObjectFile.h | 40 class RelocationRef { 45 RelocationRef() : OwningObject(nullptr) { } 47 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner); 49 bool operator==(const RelocationRef &Other) const; 65 typedef content_iterator<RelocationRef> relocation_iterator; 226 // Same as above for RelocationRef. 227 friend class RelocationRef; 417 /// RelocationRef 418 inline RelocationRef::RelocationRef(DataRefImpl RelocationP [all...] |
ELFObjectFile.h | 140 class ELFRelocationRef : public RelocationRef { 142 ELFRelocationRef(const RelocationRef &B) : RelocationRef(B) { 143 assert(isa<ELFObjectFileBase>(RelocationRef::getObject())); 147 return cast<ELFObjectFileBase>(RelocationRef::getObject()); 158 : relocation_iterator(RelocationRef( 612 return relocation_iterator(RelocationRef(RelData, this)); 625 return relocation_iterator(RelocationRef(RelData, this)); 637 return relocation_iterator(RelocationRef(RelData, this));
|
COFF.h | 689 const coff_relocation *getCOFFRelocation(const RelocationRef &Reloc) const;
|
/external/llvm/lib/MC/MCDisassembler/ |
MCRelocationInfo.cpp | 25 MCRelocationInfo::createExprForRelocation(object::RelocationRef Rel) {
|
/external/llvm/tools/llvm-readobj/ |
llvm-readobj.h | 19 class RelocationRef; 25 bool relocAddressLess(object::RelocationRef A, 26 object::RelocationRef B);
|
MachODumper.cpp | 57 void printRelocation(const RelocationRef &Reloc); 59 void printRelocation(const MachOObjectFile *Obj, const RelocationRef &Reloc); 472 for (const RelocationRef &Reloc : Section.relocations()) 507 for (const RelocationRef &Reloc : Section.relocations()) { 524 void MachODumper::printRelocation(const RelocationRef &Reloc) { 529 const RelocationRef &Reloc) {
|
COFFDumper.cpp | 67 void printRelocation(const SectionRef &Section, const RelocationRef &Reloc); 92 typedef DenseMap<const coff_section*, std::vector<RelocationRef> > RelocMapTy; 352 for (const RelocationRef &Reloc : S.relocations()) 775 for (const RelocationRef &Reloc : Sec.relocations()) 809 for (const RelocationRef &Reloc : Section.relocations()) [all...] |
llvm-readobj.cpp | 247 bool relocAddressLess(RelocationRef a, RelocationRef b) {
|
/external/llvm/tools/llvm-objdump/ |
llvm-objdump.h | 21 class RelocationRef; 59 bool RelocAddressLess(object::RelocationRef a, object::RelocationRef b);
|
COFFDump.cpp | 177 static std::error_code resolveSymbol(const std::vector<RelocationRef> &Rels, 179 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, 226 const std::vector<RelocationRef> &Rels, 375 std::vector<RelocationRef> &Rels, 384 for (const RelocationRef &Reloc : Section.relocations()) 470 const std::vector<RelocationRef> &Rels) { 518 std::vector<RelocationRef> Rels;
|
llvm-objdump.cpp | 293 bool llvm::RelocAddressLess(RelocationRef a, RelocationRef b) { 379 const RelocationRef &RelRef, 493 const RelocationRef &Rel, 506 const RelocationRef &Rel, 583 const RelocationRef &RelRef, 760 static std::error_code getRelocationValueString(const RelocationRef &Rel, 774 static bool getHidden(RelocationRef RelRef) { [all...] |
MachODump.cpp | 774 for (const RelocationRef &Reloc : Section.relocations()) { [all...] |
/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/ExecutionEngine/RuntimeDyld/ |
RuntimeDyldELF.h | 155 bool relocationNeedsStub(const RelocationRef &R) const override;
|
RuntimeDyldImpl.h | 425 virtual bool relocationNeedsStub(const RelocationRef &R) const {
|
RuntimeDyld.cpp | 435 for (const RelocationRef &Reloc : SI->relocations()) [all...] |
RuntimeDyldELF.cpp | [all...] |
/external/llvm/tools/llvm-cxxdump/ |
llvm-cxxdump.cpp | 76 for (const object::RelocationRef &Reloc : SR.relocations()) { 100 for (const object::RelocationRef &Reloc : SR.relocations()) {
|
/external/llvm/lib/Object/ |
COFFObjectFile.cpp | 369 return relocation_iterator(RelocationRef(Ret, this)); 379 return relocation_iterator(RelocationRef(Ret, this)); [all...] |
MachOObjectFile.cpp | 583 return relocation_iterator(RelocationRef(Ret, this)); 600 return relocation_iterator(RelocationRef(Ret, this)); [all...] |
/external/llvm/lib/DebugInfo/DWARF/ |
DWARFContext.cpp | 731 for (const RelocationRef &Reloc : Section.relocations()) {
|
/external/llvm/tools/dsymutil/ |
DwarfLinker.cpp | [all...] |