HomeSort by: relevance | last modified time | path
    Searched refs:section_iterator (Results 1 - 25 of 41) sorted by relevancy

1 2

  /src/external/gpl3/gdb.old/dist/gdb/
objfiles.h 654 class section_iterator class in struct:objfile
657 section_iterator (const section_iterator &) = default;
658 section_iterator (section_iterator &&) = default;
659 section_iterator &operator= (const section_iterator &) = default;
660 section_iterator &operator= (section_iterator &&) = default;
662 typedef section_iterator self_type
685 section_iterator (obj_section *iter, obj_section *end) function in class:objfile::section_iterator
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
llvm-objdump.h 74 llvm::object::section_iterator const &I,
75 llvm::object::section_iterator const &E)
96 llvm::object::section_iterator Iterator;
97 llvm::object::section_iterator End;
  /src/external/apache2/llvm/dist/llvm/lib/Object/
Object.cpp 32 inline section_iterator *unwrap(LLVMSectionIteratorRef SI) {
33 return reinterpret_cast<section_iterator*>(SI);
37 wrap(const section_iterator *SI) {
39 (const_cast<section_iterator*>(SI));
154 return wrap(new section_iterator(sections.begin()));
200 section_iterator SI = OB->getBinary()->section_begin();
201 return wrap(new section_iterator(SI));
220 Expected<section_iterator> SecOrErr = (*unwrap(Sym))->getSection();
ObjectFile.cpp 48 Expected<section_iterator> SymSec = S.getSection();
101 Expected<section_iterator>
103 return section_iterator(SectionRef(Sec, this));
XCOFFObjectFile.cpp 223 Expected<section_iterator>
235 return section_iterator(SectionRef(ExpSec.get(), this));
421 section_iterator XCOFFObjectFile::section_begin() const {
424 return section_iterator(SectionRef(DRI, this));
427 section_iterator XCOFFObjectFile::section_end() const {
431 return section_iterator(SectionRef(DRI, this));
COFFObjectFile.cpp 246 Expected<section_iterator>
256 return section_iterator(SectionRef(Ret, this));
915 section_iterator COFFObjectFile::section_begin() const {
918 return section_iterator(SectionRef(Ret, this));
921 section_iterator COFFObjectFile::section_end() const {
926 return section_iterator(SectionRef(Ret, this));
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
ObjectFile.h 47 using section_iterator = content_iterator<SectionRef>;
135 Expected<section_iterator> getRelocatedSection() const;
199 Expected<section_iterator> getSection() const;
253 virtual Expected<section_iterator>
280 virtual Expected<section_iterator> getRelocatedSection(DataRefImpl Sec) const;
315 virtual section_iterator section_begin() const = 0;
316 virtual section_iterator section_end() const = 0;
318 using section_iterator_range = iterator_range<section_iterator>;
406 inline Expected<section_iterator> SymbolRef::getSection() const {
519 inline Expected<section_iterator> SectionRef::getRelocatedSection() const
    [all...]
ELFObjectFile.h 124 class elf_section_iterator : public section_iterator {
126 elf_section_iterator(const section_iterator &B) : section_iterator(B) {
131 return static_cast<const ELFSectionRef *>(section_iterator::operator->());
135 return static_cast<const ELFSectionRef &>(section_iterator::operator*());
273 Expected<section_iterator> getSymbolSection(const Elf_Sym *Symb,
275 Expected<section_iterator> getSymbolSection(DataRefImpl Symb) const override;
296 Expected<section_iterator>
424 section_iterator section_begin() const override;
425 section_iterator section_end() const override
    [all...]
Wasm.h 176 Expected<section_iterator> getSymbolSection(DataRefImpl Symb) const override;
204 section_iterator section_begin() const override;
205 section_iterator section_end() const override;
XCOFFObjectFile.h 283 Expected<section_iterator> getSymbolSection(DataRefImpl Symb) const override;
313 section_iterator section_begin() const override;
314 section_iterator section_end() const override;
MachO.h 291 Expected<section_iterator> getSymbolSection(DataRefImpl Symb) const override;
338 section_iterator getRelocationSection(DataRefImpl Rel) const;
348 section_iterator getRelocationRelocatedSection(relocation_iterator Rel) const;
360 section_iterator section_begin() const override;
361 section_iterator section_end() const override;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 74 section_iterator TargetSI = getSectionByAddress(Obj, SymbolBaseAddr);
144 section_iterator SecI = O.getRelocationRelocatedSection(RI);
162 section_iterator
165 section_iterator SI = Obj.section_begin();
166 section_iterator SE = Obj.section_end();
RuntimeDyld.cpp 319 section_iterator SI = Obj.section_end();
358 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
362 Expected<section_iterator> RelSecOrErr = SI->getRelocatedSection();
366 section_iterator RelocatedSection = *RelSecOrErr;
427 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
539 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
644 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
670 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
673 Expected<section_iterator> RelSecOrErr = SI->getRelocatedSection();
677 section_iterator RelSecI = *RelSecOrErr
    [all...]
RuntimeDyldMachO.h 112 static section_iterator getSectionByAddress(const MachOObjectFile &Obj,
RuntimeDyldELF.cpp 672 for (section_iterator si = Obj.section_begin(), se = Obj.section_end();
675 Expected<section_iterator> RelSecOrErr = si->getRelocatedSection();
679 section_iterator RelSecI = *RelSecOrErr;
725 section_iterator TSI = Obj.section_end();
1234 section_iterator si = *SectionOrErr;
1947 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
1950 Expected<section_iterator> RelSecOrErr = SI->getRelocatedSection();
1955 section_iterator RelocatedSection = *RelSecOrErr;
  /src/external/gpl3/gdb/dist/gdb/
objfiles.h 660 /* Filter function for section_iterator. */
667 using section_iterator = filtered_iterator<obj_section *, filter_out_null_bfd_section>;
672 iterator_range<section_iterator> sections () const
674 return (iterator_range<section_iterator>
675 (section_iterator (sections_start, sections_end),
676 section_iterator (sections_end, sections_end)));
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
InputFile.h 148 Optional<object::section_iterator> SectionIter;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
ProfiledBinary.cpp 176 for (section_iterator SI = Obj->section_begin(), SE = Obj->section_end();
189 for (section_iterator SI = Obj->section_begin(), SE = Obj->section_end();
362 section_iterator SecI = unwrapOrError(Symbol.getSection(), FileName);
375 for (section_iterator SI = Obj->section_begin(), SE = Obj->section_end();
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldMachOI386.h 168 section_iterator SAI = getSectionByAddress(Obj, AddrA);
182 section_iterator SBI = getSectionByAddress(Obj, AddrB);
RuntimeDyldMachOARM.h 379 section_iterator SAI = getSectionByAddress(MachO, AddrA);
393 section_iterator SBI = getSectionByAddress(MachO, AddrB);
RuntimeDyldCOFFX86_64.h 203 object::section_iterator SecI = *SectionOrError;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/
SymbolizableObjectFile.cpp 42 for (section_iterator Section : Obj->sections()) {
155 Expected<section_iterator> Sec = Symbol.getSection();
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cxxdump/
llvm-cxxdump.cpp 177 Expected<section_iterator> ErrOrSec = Section.getRelocatedSection();
181 section_iterator Sec2 = *ErrOrSec;
197 Expected<object::section_iterator> SecIOrErr = Sym.getSection();
199 object::section_iterator SecI = *SecIOrErr;
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
MachODebugMapParser.cpp 548 section_iterator Section = MainBinary.section_end();
571 Expected<section_iterator> SectionOrErr = Sym.getSection();
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/JITLink/
JITLink.h 766 using section_iterator = pointee_iterator<SectionList::iterator>;
1015 iterator_range<section_iterator> sections() {
1016 return make_range(section_iterator(Sections.begin()),
1017 section_iterator(Sections.end()));

Completed in 74 milliseconds

1 2