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

  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.h 65 relocation_iterator processSECTDIFFRelocation(
67 relocation_iterator RelI,
71 relocation_iterator processI386ScatteredVANILLA(
73 relocation_iterator RelI,
98 relocation_iterator
99 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
RuntimeDyldELF.h 111 relocation_iterator
112 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
RuntimeDyldImpl.h 329 virtual relocation_iterator
330 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
RuntimeDyldMachO.cpp 547 relocation_iterator RuntimeDyldMachO::processSECTDIFFRelocation(
549 relocation_iterator RelI,
612 relocation_iterator RuntimeDyldMachO::processI386ScatteredVANILLA(
614 relocation_iterator RelI,
653 relocation_iterator RuntimeDyldMachO::processRelocationRef(
654 unsigned SectionID, relocation_iterator RelI, ObjectImage &Obj,
RuntimeDyld.cpp 192 relocation_iterator I = SI->relocation_begin();
193 relocation_iterator E = SI->relocation_end();
RuntimeDyldELF.cpp 671 for (relocation_iterator i = si->relocation_begin(),
    [all...]
  /external/llvm/lib/Object/
Object.cpp 50 inline relocation_iterator *unwrap(LLVMRelocationIteratorRef SI) {
51 return reinterpret_cast<relocation_iterator*>(SI);
55 wrap(const relocation_iterator *SI) {
57 (const_cast<relocation_iterator*>(SI));
156 relocation_iterator SI = (*unwrap(Section))->relocation_begin();
157 return wrap(new relocation_iterator(SI));
COFFObjectFile.cpp 351 relocation_iterator COFFObjectFile::section_rel_begin(DataRefImpl Ref) const {
366 return relocation_iterator(RelocationRef(Ret, this));
383 relocation_iterator COFFObjectFile::section_rel_end(DataRefImpl Ref) const {
394 return relocation_iterator(RelocationRef(Ret, this));
    [all...]
MachOObjectFile.cpp 818 relocation_iterator MachOObjectFile::section_rel_begin(DataRefImpl Sec) const {
822 return relocation_iterator(RelocationRef(Ret, this));
825 relocation_iterator
839 return relocation_iterator(RelocationRef(Ret, this));
    [all...]
  /external/llvm/include/llvm/Object/
ObjectFile.h 73 typedef content_iterator<RelocationRef> relocation_iterator; typedef in namespace:llvm::object
114 relocation_iterator relocation_begin() const;
115 relocation_iterator relocation_end() const;
116 iterator_range<relocation_iterator> relocations() const {
117 return iterator_range<relocation_iterator>(relocation_begin(),
269 virtual relocation_iterator section_rel_begin(DataRefImpl Sec) const = 0;
270 virtual relocation_iterator section_rel_end(DataRefImpl Sec) const = 0;
468 inline relocation_iterator SectionRef::relocation_begin() const {
472 inline relocation_iterator SectionRef::relocation_end() const {
MachO.h 101 relocation_iterator section_rel_begin(DataRefImpl Sec) const override;
102 relocation_iterator section_rel_end(DataRefImpl Sec) const override;
151 relocation_iterator section_rel_begin(unsigned Index) const;
152 relocation_iterator section_rel_end(unsigned Index) const;
ELFObjectFile.h 99 relocation_iterator section_rel_begin(DataRefImpl Sec) const override;
100 relocation_iterator section_rel_end(DataRefImpl Sec) const override;
489 relocation_iterator
495 return relocation_iterator(RelocationRef(RelData, this));
499 relocation_iterator
510 return relocation_iterator(RelocationRef(RelData, this));
    [all...]
COFF.h 399 relocation_iterator section_rel_begin(DataRefImpl Sec) const override;
400 relocation_iterator section_rel_end(DataRefImpl Sec) const override;
  /external/llvm/tools/macho-dump/
macho-dump.cpp 99 for (relocation_iterator I = Obj.section_rel_begin(Index),

Completed in 319 milliseconds