Searched refs:relocation_iterator (Results 1 - 14 of 14) sorted by relevance

/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.h65 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,
H A DRuntimeDyldELF.h111 relocation_iterator
112 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
H A DRuntimeDyldImpl.h329 virtual relocation_iterator
330 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
H A DRuntimeDyldMachO.cpp547 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,
H A DRuntimeDyld.cpp192 relocation_iterator I = SI->relocation_begin();
193 relocation_iterator E = SI->relocation_end();
H A DRuntimeDyldELF.cpp671 for (relocation_iterator i = si->relocation_begin(),
942 relocation_iterator RuntimeDyldELF::processRelocationRef(
943 unsigned SectionID, relocation_iterator RelI, ObjectImage &Obj,
/external/llvm/lib/Object/
H A DObject.cpp50 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));
H A DCOFFObjectFile.cpp351 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));
H A DMachOObjectFile.cpp818 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));
1628 relocation_iterator MachOObjectFile::section_rel_begin(unsigned Index) const {
1634 relocation_iterator MachOObjectFile::section_rel_end(unsigned Index) const {
/external/llvm/include/llvm/Object/
H A DObjectFile.h73 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 {
H A DMachO.h101 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;
H A DELFObjectFile.h99 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));
H A DCOFF.h399 relocation_iterator section_rel_begin(DataRefImpl Sec) const override;
400 relocation_iterator section_rel_end(DataRefImpl Sec) const override;
/external/llvm/tools/macho-dump/
H A Dmacho-dump.cpp99 for (relocation_iterator I = Obj.section_rel_begin(Index),

Completed in 2418 milliseconds