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

  /external/llvm/include/llvm/Object/
ObjectFile.h 132 /// SectionRef - This is a value type class that represents a single section in
134 class SectionRef {
140 SectionRef() : OwningObject(NULL) { }
142 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
144 bool operator==(const SectionRef &Other) const;
145 bool operator <(const SectionRef &Other) const;
147 error_code getNext(SectionRef &Result) const;
172 typedef content_iterator<SectionRef> section_iterator;
177 friend class SectionRef;
239 friend class SectionRef;
    [all...]
MachO.h 66 virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const;
COFF.h 120 virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const;
ELF.h 543 virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const;
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
ObjectImage.h 46 virtual void updateSectionAddress(const object::SectionRef &Sec,
RuntimeDyldImpl.h 106 typedef std::map<SectionRef, unsigned> ObjSectionToIDMap;
168 const SectionRef &Section,
177 const SectionRef &Section,
RuntimeDyldELF.cpp 53 void updateSectionAddress(const SectionRef &Sec, uint64_t Addr);
91 virtual void updateSectionAddress(const SectionRef &Sec, uint64_t Addr)
122 const SectionRef &Sec,
RuntimeDyld.cpp 215 const SectionRef &Section,
295 const SectionRef &Section,
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 110 static void DumpAddress(uint64_t Address, ArrayRef<SectionRef> Sections,
205 std::vector<SectionRef> &Sections,
215 SectionRef SR = *SI;
292 std::vector<SectionRef> Sections;
317 ArrayRef<SectionRef> DebugSections = Sections;
318 std::vector<SectionRef> DSYMSections;
  /external/llvm/lib/Object/
COFFObjectFile.cpp 286 Result = section_iterator(SectionRef(Sec, this));
292 SectionRef &Result) const {
296 Result = SectionRef(Sec, this);
531 return section_iterator(SectionRef(ret, this));
537 return section_iterator(SectionRef(ret, this));
MachOObjectFile.cpp 330 Res = section_iterator(SectionRef(Sections[index-1], this));
429 SectionRef &Result) const {
432 Result = SectionRef(DRI, this);
668 return section_iterator(SectionRef(DRI, this));
674 return section_iterator(SectionRef(DRI, this));
    [all...]

Completed in 577 milliseconds