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

12

/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.h60 /// Given a relocation_iterator for a non-scattered relocation, construct a
67 const relocation_iterator &RI) const {
83 Expected<relocation_iterator>
84 processScatteredVANILLA(unsigned SectionID, relocation_iterator RelI,
99 const relocation_iterator &RI,
105 const relocation_iterator &RI,
H A DRuntimeDyldMachO.cpp53 Expected<relocation_iterator>
55 unsigned SectionID, relocation_iterator RelI,
96 const ObjectFile &BaseTObj, const relocation_iterator &RI,
139 const relocation_iterator &RI,
H A DRuntimeDyldELF.h169 Expected<relocation_iterator>
170 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
H A DRuntimeDyldImpl.h394 virtual Expected<relocation_iterator>
395 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
/external/llvm/lib/Object/
H A DObject.cpp51 inline relocation_iterator *unwrap(LLVMRelocationIteratorRef SI) {
52 return reinterpret_cast<relocation_iterator*>(SI);
56 wrap(const relocation_iterator *SI) {
58 (const_cast<relocation_iterator*>(SI));
166 relocation_iterator SI = (*unwrap(Section))->relocation_begin();
167 return wrap(new relocation_iterator(SI));
H A DMachOObjectFile.cpp717 relocation_iterator MachOObjectFile::section_rel_begin(DataRefImpl Sec) const {
721 return relocation_iterator(RelocationRef(Ret, this));
724 relocation_iterator
738 return relocation_iterator(RelocationRef(Ret, this));
1076 MachOObjectFile::getRelocationRelocatedSection(relocation_iterator Rel) const {
1303 relocation_iterator MachOObjectFile::section_rel_begin(unsigned Index) const {
1309 relocation_iterator MachOObjectFile::section_rel_end(unsigned Index) const {
H A DCOFFObjectFile.cpp365 relocation_iterator COFFObjectFile::section_rel_begin(DataRefImpl Ref) const {
372 return relocation_iterator(RelocationRef(Ret, this));
375 relocation_iterator COFFObjectFile::section_rel_end(DataRefImpl Ref) const {
382 return relocation_iterator(RelocationRef(Ret, this));
/external/llvm/include/llvm/Object/
H A DObjectFile.h65 typedef content_iterator<RelocationRef> relocation_iterator; typedef in namespace:llvm::object
102 relocation_iterator relocation_begin() const;
103 relocation_iterator relocation_end() const;
104 iterator_range<relocation_iterator> relocations() const {
226 virtual relocation_iterator section_rel_begin(DataRefImpl Sec) const = 0;
227 virtual relocation_iterator section_rel_end(DataRefImpl Sec) const = 0;
411 inline relocation_iterator SectionRef::relocation_begin() const {
415 inline relocation_iterator SectionRef::relocation_end() const {
H A DELFObjectFile.h163 class elf_relocation_iterator : public relocation_iterator {
165 elf_relocation_iterator(const relocation_iterator &B)
166 : relocation_iterator(RelocationRef(
171 relocation_iterator::operator->());
176 relocation_iterator::operator*());
235 relocation_iterator section_rel_begin(DataRefImpl Sec) const override;
236 relocation_iterator section_rel_end(DataRefImpl Sec) const override;
627 relocation_iterator
633 return relocation_iterator(RelocationRef(RelData, this));
637 relocation_iterator
[all...]
H A DMachO.h231 relocation_iterator section_rel_begin(DataRefImpl Sec) const override;
232 relocation_iterator section_rel_end(DataRefImpl Sec) const override;
246 section_iterator getRelocationRelocatedSection(relocation_iterator Rel) const;
268 relocation_iterator section_rel_begin(unsigned Index) const;
269 relocation_iterator section_rel_end(unsigned Index) const;
H A DCOFF.h743 relocation_iterator section_rel_begin(DataRefImpl Sec) const override;
744 relocation_iterator section_rel_end(DataRefImpl Sec) const override;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOI386.h34 Expected<relocation_iterator>
35 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
143 Expected<relocation_iterator>
144 processSECTDIFFRelocation(unsigned SectionID, relocation_iterator RelI,
H A DRuntimeDyldMachOX86_64.h34 Expected<relocation_iterator>
35 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
158 Expected<relocation_iterator>
159 processSubtractRelocation(unsigned SectionID, relocation_iterator RelI,
H A DRuntimeDyldCOFFX86_64.h109 Expected<relocation_iterator>
111 relocation_iterator RelI,
H A DRuntimeDyldMachOARM.h53 Expected<relocation_iterator>
54 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
217 Expected<relocation_iterator>
218 processHALFSECTDIFFRelocation(unsigned SectionID, relocation_iterator RelI,
H A DRuntimeDyldMachOAArch64.h245 Expected<relocation_iterator>
246 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
420 Expected<relocation_iterator>
421 processSubtractRelocation(unsigned SectionID, relocation_iterator RelI,
H A DRuntimeDyldCOFFI386.h37 Expected<relocation_iterator>
39 relocation_iterator RelI,
H A DRuntimeDyldCOFFThumb.h37 Expected<relocation_iterator>
39 relocation_iterator RelI,
/external/swiftshader/third_party/LLVM/include/llvm/Object/
H A DObjectFile.h161 typedef content_iterator<RelocationRef> relocation_iterator; typedef in namespace:llvm::object
196 relocation_iterator begin_relocations() const;
197 relocation_iterator end_relocations() const;
250 virtual relocation_iterator getSectionRelBegin(DataRefImpl Sec) const = 0;
251 virtual relocation_iterator getSectionRelEnd(DataRefImpl Sec) const = 0;
406 inline relocation_iterator SectionRef::begin_relocations() const {
410 inline relocation_iterator SectionRef::end_relocations() const {
H A DMachO.h63 virtual relocation_iterator getSectionRelBegin(DataRefImpl Sec) const;
64 virtual relocation_iterator getSectionRelEnd(DataRefImpl Sec) const;
H A DCOFF.h116 virtual relocation_iterator getSectionRelBegin(DataRefImpl Sec) const;
117 virtual relocation_iterator getSectionRelEnd(DataRefImpl Sec) const;
/external/swiftshader/third_party/LLVM/lib/Object/
H A DCOFFObjectFile.cpp383 relocation_iterator COFFObjectFile::getSectionRelBegin(DataRefImpl Sec) const {
392 return relocation_iterator(RelocationRef(ret, this));
395 relocation_iterator COFFObjectFile::getSectionRelEnd(DataRefImpl Sec) const {
407 return relocation_iterator(RelocationRef(ret, this));
H A DMachOObjectFile.cpp484 relocation_iterator MachOObjectFile::getSectionRelBegin(DataRefImpl Sec) const {
488 return relocation_iterator(RelocationRef(ret, this));
490 relocation_iterator MachOObjectFile::getSectionRelEnd(DataRefImpl Sec) const {
504 return relocation_iterator(RelocationRef(ret, this));
H A DELFObjectFile.cpp347 virtual relocation_iterator getSectionRelBegin(DataRefImpl Sec) const;
348 virtual relocation_iterator getSectionRelEnd(DataRefImpl Sec) const;
758 relocation_iterator ELFObjectFile<target_endianness, is64Bits>
769 return relocation_iterator(RelocationRef(RelData, this));
773 relocation_iterator ELFObjectFile<target_endianness, is64Bits>
787 return relocation_iterator(RelocationRef(RelData, this));
/external/swiftshader/third_party/LLVM/tools/llvm-objdump/
H A Dllvm-objdump.cpp198 for (relocation_iterator ri = i->begin_relocations(),
330 for (relocation_iterator ri = si->begin_relocations(),

Completed in 863 milliseconds

12