Searched refs:SectionRef (Results 1 - 11 of 11) sorted by relevance

/external/llvm/include/llvm/Object/
H A DObjectFile.h134 /// SectionRef - This is a value type class that represents a single section in
136 class SectionRef { class in namespace:llvm::object
142 SectionRef() : OwningObject(NULL) { } function in class:llvm::object::SectionRef
144 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
146 bool operator==(const SectionRef &Other) const;
147 bool operator <(const SectionRef &Other) const;
149 error_code getNext(SectionRef &Result) const;
174 typedef content_iterator<SectionRef> section_iterator;
179 friend class SectionRef;
241 friend class SectionRef;
450 inline SectionRef::SectionRef(DataRefImpl SectionP, function in class:llvm::object::SectionRef
[all...]
H A DCOFF.h120 virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const;
H A DMachO.h66 virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const;
H A DELF.h550 virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const;
1035 Res = section_iterator(SectionRef(Sec, this));
1042 ::getSectionNext(DataRefImpl Sec, SectionRef &Result) const {
1046 Result = SectionRef(Sec, this);
2001 return section_iterator(SectionRef(ret, this));
2011 return section_iterator(SectionRef(ret, this));
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DObjectImage.h46 virtual void updateSectionAddress(const object::SectionRef &Sec,
H A DRuntimeDyldImpl.h130 typedef std::map<SectionRef, unsigned> ObjSectionToIDMap;
201 const SectionRef &Section,
210 const SectionRef &Section,
H A DRuntimeDyldELF.cpp52 void updateSectionAddress(const SectionRef &Sec, uint64_t Addr);
90 virtual void updateSectionAddress(const SectionRef &Sec, uint64_t Addr)
121 const SectionRef &Sec,
H A DRuntimeDyld.cpp219 const SectionRef &Section,
299 const SectionRef &Section,
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp110 static void DumpAddress(uint64_t Address, ArrayRef<SectionRef> Sections,
205 std::vector<SectionRef> &Sections,
215 SectionRef SR = *SI;
294 std::vector<SectionRef> Sections;
319 ArrayRef<SectionRef> DebugSections = Sections;
320 std::vector<SectionRef> DSYMSections;
/external/llvm/lib/Object/
H A DCOFFObjectFile.cpp288 Result = section_iterator(SectionRef(Sec, this));
294 SectionRef &Result) const {
298 Result = SectionRef(Sec, this);
533 return section_iterator(SectionRef(ret, this));
539 return section_iterator(SectionRef(ret, this));
H A DMachOObjectFile.cpp330 Res = section_iterator(SectionRef(Sections[index-1], this));
429 SectionRef &Result) const {
432 Result = SectionRef(DRI, this);
670 return section_iterator(SectionRef(DRI, this));
676 return section_iterator(SectionRef(DRI, this));

Completed in 241 milliseconds