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

  /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 187 bool llvm::RelocAddressLess(RelocationRef a, RelocationRef b) {
243 std::vector<RelocationRef> Rels;
326 std::vector<RelocationRef>::const_iterator rel_cur = Rels.begin();
327 std::vector<RelocationRef>::const_iterator rel_end = Rels.end();
  /external/llvm/include/llvm/Object/
RelocVisitor.h 49 RelocToApply visit(uint32_t RelocType, RelocationRef R, uint64_t SecAddr = 0,
119 RelocToApply visitELF_386_NONE(RelocationRef R) {
125 RelocToApply visitELF_386_32(RelocationRef R, uint64_t Value) {
131 RelocToApply visitELF_386_PC32(RelocationRef R, uint64_t Value,
141 RelocToApply visitELF_X86_64_NONE(RelocationRef R) {
144 RelocToApply visitELF_X86_64_64(RelocationRef R, uint64_t Value) {
149 RelocToApply visitELF_X86_64_PC32(RelocationRef R, uint64_t Value,
157 RelocToApply visitELF_X86_64_32(RelocationRef R, uint64_t Value) {
163 RelocToApply visitELF_X86_64_32S(RelocationRef R, uint64_t Value) {
171 RelocToApply visitELF_PPC64_ADDR32(RelocationRef R, uint64_t Value)
    [all...]
ObjectFile.h 93 /// RelocationRef - This is a value type class that represents a single
95 class RelocationRef {
100 RelocationRef() : OwningObject(NULL) { }
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;
331 // Same as above for RelocationRef.
332 friend class RelocationRef;
334 RelocationRef &Res) const = 0
    [all...]
COFF.h 141 RelocationRef &Res) const;
MachO.h 91 RelocationRef &Res) const;
ELF.h 690 RelocationRef &Res) const;
    [all...]
  /external/llvm/lib/Object/
COFFObjectFile.cpp 416 return relocation_iterator(RelocationRef(ret, this));
430 return relocation_iterator(RelocationRef(ret, this));
702 RelocationRef &Res) const {
705 Res = RelocationRef(Rel, this);
MachOObjectFile.cpp 689 return relocation_iterator(RelocationRef(ret, this));
705 return relocation_iterator(RelocationRef(ret, this));
738 RelocationRef &Res) const {
740 Res = RelocationRef(Rel, this);
    [all...]

Completed in 239 milliseconds