Searched refs:relocation_iterator (Results 1 – 14 of 14) sorted by relevance
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | 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,
|
D | RuntimeDyldELF.h | 111 relocation_iterator 112 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
|
D | RuntimeDyldMachO.cpp | 547 relocation_iterator RuntimeDyldMachO::processSECTDIFFRelocation( in processSECTDIFFRelocation() 549 relocation_iterator RelI, in processSECTDIFFRelocation() 612 relocation_iterator RuntimeDyldMachO::processI386ScatteredVANILLA( in processI386ScatteredVANILLA() 614 relocation_iterator RelI, in processI386ScatteredVANILLA() 653 relocation_iterator RuntimeDyldMachO::processRelocationRef( in processRelocationRef() 654 unsigned SectionID, relocation_iterator RelI, ObjectImage &Obj, in processRelocationRef()
|
D | RuntimeDyldImpl.h | 329 virtual relocation_iterator 330 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
|
D | RuntimeDyld.cpp | 192 relocation_iterator I = SI->relocation_begin(); in loadObject() 193 relocation_iterator E = SI->relocation_end(); in loadObject()
|
D | RuntimeDyldELF.cpp | 671 for (relocation_iterator i = si->relocation_begin(), in findOPDEntrySection() 942 relocation_iterator RuntimeDyldELF::processRelocationRef( in processRelocationRef() 943 unsigned SectionID, relocation_iterator RelI, ObjectImage &Obj, in processRelocationRef()
|
/external/llvm/lib/Object/ |
D | Object.cpp | 50 inline relocation_iterator *unwrap(LLVMRelocationIteratorRef SI) { in unwrap() 51 return reinterpret_cast<relocation_iterator*>(SI); in unwrap() 55 wrap(const relocation_iterator *SI) { in wrap() 57 (const_cast<relocation_iterator*>(SI)); in wrap() 156 relocation_iterator SI = (*unwrap(Section))->relocation_begin(); in LLVMGetRelocations() 157 return wrap(new relocation_iterator(SI)); in LLVMGetRelocations()
|
D | COFFObjectFile.cpp | 351 relocation_iterator COFFObjectFile::section_rel_begin(DataRefImpl Ref) const { in section_rel_begin() 366 return relocation_iterator(RelocationRef(Ret, this)); in section_rel_begin() 383 relocation_iterator COFFObjectFile::section_rel_end(DataRefImpl Ref) const { in section_rel_end() 394 return relocation_iterator(RelocationRef(Ret, this)); in section_rel_end()
|
D | MachOObjectFile.cpp | 818 relocation_iterator MachOObjectFile::section_rel_begin(DataRefImpl Sec) const { in section_rel_begin() 822 return relocation_iterator(RelocationRef(Ret, this)); in section_rel_begin() 825 relocation_iterator 839 return relocation_iterator(RelocationRef(Ret, this)); in section_rel_end() 1628 relocation_iterator MachOObjectFile::section_rel_begin(unsigned Index) const { in section_rel_begin() 1634 relocation_iterator MachOObjectFile::section_rel_end(unsigned Index) const { in section_rel_end()
|
/external/llvm/include/llvm/Object/ |
D | ObjectFile.h | 73 typedef content_iterator<RelocationRef> relocation_iterator; typedef 114 relocation_iterator relocation_begin() const; 115 relocation_iterator relocation_end() const; 116 iterator_range<relocation_iterator> relocations() const { in relocations() 117 return iterator_range<relocation_iterator>(relocation_begin(), in relocations() 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 { in relocation_begin() 472 inline relocation_iterator SectionRef::relocation_end() const { in relocation_end()
|
D | 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;
|
D | 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)); in section_rel_begin() 499 relocation_iterator 510 return relocation_iterator(RelocationRef(RelData, this)); in section_rel_end()
|
D | 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/ |
D | macho-dump.cpp | 99 for (relocation_iterator I = Obj.section_rel_begin(Index), in DumpSectionData()
|