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

  /external/llvm/include/llvm/Object/
ObjectFile.h 131 /// SectionRef - This is a value type class that represents a single section in
133 class SectionRef;
134 typedef content_iterator<SectionRef> section_iterator;
135 class SectionRef {
141 SectionRef() : OwningObject(NULL) { }
143 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
145 bool operator==(const SectionRef &Other) const;
146 bool operator<(const SectionRef &Other) const;
148 error_code getNext(SectionRef &Result) const;
179 friend class SectionRef;
    [all...]
MachO.h 78 virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const;
160 SectionRef getRelocationSection(const macho::RelocationEntry &RE) const;
COFF.h 226 virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const;
ELF.h 690 virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const;
    [all...]
  /external/llvm/include/llvm/MC/
MCObjectSymbolizer.h 36 typedef std::vector<object::SectionRef> SortedSectionList;
49 void insertSection(object::SectionRef Section);
  /external/llvm/include/llvm/ExecutionEngine/
ObjectImage.h 46 virtual void updateSectionAddress(const object::SectionRef &Sec,
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
ObjectImageCommon.h 65 virtual void updateSectionAddress(const object::SectionRef &Sec,
RuntimeDyldImpl.h 135 typedef std::map<SectionRef, unsigned> ObjSectionToIDMap;
252 const SectionRef &Section,
261 const SectionRef &Section,
RuntimeDyld.cpp 214 const SectionRef &Section,
320 const SectionRef &Section,
RuntimeDyldELF.cpp 61 void updateSectionAddress(const SectionRef &Sec, uint64_t Addr);
96 virtual void updateSectionAddress(const SectionRef &Sec, uint64_t Addr)
127 void DyldELFObject<ELFT>::updateSectionAddress(const SectionRef &Sec,
    [all...]
RuntimeDyldMachO.cpp 325 SectionRef Sec = MachO->getRelocationSection(RE);
  /external/llvm/lib/Object/
ObjectFile.cpp 37 return section_iterator(SectionRef(Sec, this));
COFFObjectFile.cpp 289 Result = section_iterator(SectionRef(Sec, this));
300 SectionRef &Result) const {
304 Result = SectionRef(Sec, this);
564 return section_iterator(SectionRef(ret, this));
570 return section_iterator(SectionRef(ret, this));
MachOObjectFile.cpp 657 Res = section_iterator(SectionRef(DRI, this));
669 SectionRef &Res) const {
671 Res = SectionRef(Sec, this);
    [all...]
  /external/llvm/lib/MC/
MCObjectSymbolizer.cpp 46 const SectionRef &S = *SI;
181 static bool SectionStartsBefore(const SectionRef &S, uint64_t Addr) {
201 void MCObjectSymbolizer::insertSection(SectionRef Sec) {
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 153 std::vector<SectionRef> &Sections,
164 SectionRef SR = *SI;
255 std::vector<SectionRef> Sections;

Completed in 2991 milliseconds