HomeSort by relevance Sort by last modified time
    Searched refs:RelocationRef (Results 1 - 23 of 23) sorted by null

  /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 35 typedef DenseMap<uint64_t, object::RelocationRef> AddrToRelocMap;
  /external/llvm/tools/llvm-objdump/
llvm-objdump.h 23 class RelocationRef;
32 bool RelocAddressLess(object::RelocationRef a, object::RelocationRef b);
COFFDump.cpp 173 static error_code resolveSymbol(const std::vector<RelocationRef> &Rels,
175 for (std::vector<RelocationRef>::const_iterator I = Rels.begin(),
193 const std::vector<RelocationRef> &Rels,
209 static error_code resolveSymbolName(const std::vector<RelocationRef> &Rels,
218 const std::vector<RelocationRef> &Rels,
254 std::vector<RelocationRef> Rels;
llvm-objdump.cpp 252 bool llvm::RelocAddressLess(RelocationRef a, RelocationRef b) {
399 std::vector<RelocationRef> Rels;
442 std::vector<RelocationRef>::const_iterator rel_cur = Rels.begin();
443 std::vector<RelocationRef>::const_iterator rel_end = Rels.end();
  /external/llvm/include/llvm/Object/
RelocVisitor.h 50 RelocToApply visit(uint32_t RelocType, RelocationRef R, uint64_t SecAddr = 0,
137 int64_t getAddend32LE(RelocationRef R) {
145 int64_t getAddend64LE(RelocationRef R) {
153 int64_t getAddend32BE(RelocationRef R) {
161 int64_t getAddend64BE(RelocationRef R) {
171 RelocToApply visitELF_386_NONE(RelocationRef R) {
177 RelocToApply visitELF_386_32(RelocationRef R, uint64_t Value) {
182 RelocToApply visitELF_386_PC32(RelocationRef R, uint64_t Value,
191 RelocToApply visitELF_X86_64_NONE(RelocationRef R) {
194 RelocToApply visitELF_X86_64_64(RelocationRef R, uint64_t Value)
    [all...]
ObjectFile.h 90 /// RelocationRef - This is a value type class that represents a single
92 class RelocationRef {
97 RelocationRef() : OwningObject(NULL) { }
99 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
101 bool operator==(const RelocationRef &Other) const;
103 error_code getNext(RelocationRef &Result) const;
129 typedef content_iterator<RelocationRef> relocation_iterator;
329 // Same as above for RelocationRef.
330 friend class RelocationRef;
332 RelocationRef &Res) const = 0
    [all...]
MachO.h 98 RelocationRef &Res) const;
COFF.h 246 RelocationRef &Res) const;
ELF.h 711 RelocationRef &Res) const;
    [all...]
  /external/llvm/tools/llvm-readobj/
llvm-readobj.h 18 class RelocationRef;
25 bool relocAddressLess(object::RelocationRef A,
26 object::RelocationRef B);
COFFDumper.cpp 70 const std::vector<RelocationRef> &Rels);
75 const std::vector<RelocationRef> &Rels);
82 const std::vector<RelocationRef> &Rels,
88 const std::vector<RelocationRef> &Rels,
93 typedef DenseMap<const coff_section*, std::vector<RelocationRef> > RelocMapTy;
97 std::vector<RelocationRef> EmptyRelocs;
196 static error_code resolveSymbol(const std::vector<RelocationRef> &Rels,
198 for (std::vector<RelocationRef>::const_iterator RelI = Rels.begin(),
217 static error_code resolveSymbolName(const std::vector<RelocationRef> &Rels,
477 static std::string formatSymbol(const std::vector<RelocationRef> &Rels
    [all...]
llvm-readobj.cpp 144 bool relocAddressLess(RelocationRef a, RelocationRef b) {
  /external/llvm/lib/MC/
MCRelocationInfo.cpp 25 MCRelocationInfo::createExprForRelocation(object::RelocationRef Rel) {
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachORelocationInfo.cpp 27 const MCExpr *createExprForRelocation(RelocationRef Rel) {
75 RelocationRef RelNext;
X86ELFRelocationInfo.cpp 28 const MCExpr *createExprForRelocation(RelocationRef Rel) {
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.h 62 RelocationRef RelI,
RuntimeDyldELF.h 92 RelocationRef RelI,
RuntimeDyldImpl.h 287 RelocationRef RelI,
RuntimeDyldMachO.cpp 280 RelocationRef RelI,
RuntimeDyldELF.cpp 785 RelocationRef RelI,
    [all...]
  /external/llvm/lib/Object/
COFFObjectFile.cpp 417 return relocation_iterator(RelocationRef(ret, this));
431 return relocation_iterator(RelocationRef(ret, this));
741 RelocationRef &Res) const {
744 Res = RelocationRef(Rel, this);
MachOObjectFile.cpp 829 return relocation_iterator(RelocationRef(Ret, this));
851 return relocation_iterator(RelocationRef(Ret, this));
855 RelocationRef &Res) const {
859 Res = RelocationRef(Rel, this);
    [all...]

Completed in 681 milliseconds