Home
last modified time | relevance | path

Searched refs:SecI (Results 1 – 6 of 6) sorted by relevance

/minix/external/bsd/llvm/dist/llvm/tools/llvm-readobj/
H A DELFDumper.cpp569 for (typename ELFO::Elf_Shdr_Iter SecI = Obj->begin_sections(), in printSections() local
571 SecI != SecE; ++SecI) { in printSections()
574 const Elf_Shdr *Section = &*SecI; in printSections()
620 for (typename ELFO::Elf_Shdr_Iter SecI = Obj->begin_sections(), in printRelocations() local
622 SecI != SecE; ++SecI) { in printRelocations()
625 if (SecI->sh_type != ELF::SHT_REL && SecI->sh_type != ELF::SHT_RELA) in printRelocations()
628 StringRef Name = errorOrDefault(Obj->getSectionName(&*SecI)); in printRelocations()
633 printRelocations(&*SecI); in printRelocations()
H A DMachODumper.cpp562 section_iterator SecI(Obj->section_begin()); in printSymbol() local
563 if (!error(Symbol.getSection(SecI)) && SecI != Obj->section_end()) in printSymbol()
564 error(SecI->getName(SectionName)); in printSymbol()
/minix/external/bsd/llvm/dist/llvm/tools/llvm-vtabledump/
H A Dllvm-vtabledump.cpp175 object::section_iterator SecI(Obj->section_begin()); in dumpVTables() local
176 if (error(Sym.getSection(SecI))) in dumpVTables()
179 if (SecI == Obj->section_end()) in dumpVTables()
181 const SectionRef &Sec = *SecI; in dumpVTables()
/minix/external/bsd/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp124 section_iterator SecI(Obj->section_begin()); in getOffset() local
125 if (std::error_code EC = Sym.getSection(SecI)) in getOffset()
128 if (SecI == Obj->section_end()) { in getOffset()
133 uint64_t SectionAddress = SecI->getAddress(); in getOffset()
/minix/external/bsd/llvm/dist/llvm/lib/Object/
H A DCOFFObjectFile.cpp264 section_iterator SecI = SecEnd; in getSymbolSize() local
265 if (std::error_code EC = SymbI->getSection(SecI)) in getSymbolSize()
269 if (SecI == SecEnd) in getSymbolSize()
272 if (!sectionContainsSymbol(SecI->getRawDataRefImpl(), Ref)) in getSymbolSize()
/minix/external/bsd/llvm/dist/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp710 section_iterator SecI = Obj.section_end(); in getSymbolNMTypeChar() local
711 if (error(SymI->getSection(SecI))) in getSymbolNMTypeChar()
713 const coff_section *Section = Obj.getCOFFSection(*SecI); in getSymbolNMTypeChar()