Searched refs:SecI (Results 1 - 8 of 8) sorted by relevance

/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldCOFF.cpp72 section_iterator SecI(Obj->section_end());
73 if (Sym.getSection(SecI))
76 if (SecI == Obj->section_end())
79 uint64_t SectionAddress = SecI->getAddress();
H A DRuntimeDyld.cpp127 section_iterator SecI(Obj->section_begin());
128 if (std::error_code EC = Sym.getSection(SecI))
131 if (SecI == Obj->section_end()) {
136 uint64_t SectionAddress = SecI->getAddress();
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFX86_64.h127 section_iterator SecI(Obj.section_end());
128 Symbol->getSection(SecI);
129 if (SecI == Obj.section_end())
131 bool IsCode = SecI->isText();
132 TargetSectionID = findOrEmitSection(Obj, *SecI, IsCode, ObjSectionToID);
/external/llvm/tools/llvm-readobj/
H A DELFDumper.cpp571 for (typename ELFO::Elf_Shdr_Iter SecI = Obj->begin_sections(),
573 SecI != SecE; ++SecI) {
576 const Elf_Shdr *Section = &*SecI;
622 for (typename ELFO::Elf_Shdr_Iter SecI = Obj->begin_sections(),
624 SecI != SecE; ++SecI) {
627 if (SecI->sh_type != ELF::SHT_REL && SecI->sh_type != ELF::SHT_RELA)
630 StringRef Name = errorOrDefault(Obj->getSectionName(&*SecI));
[all...]
H A DMachODumper.cpp562 section_iterator SecI(Obj->section_begin());
563 if (!error(Symbol.getSection(SecI)) && SecI != Obj->section_end())
564 error(SecI->getName(SectionName));
/external/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.cpp194 object::section_iterator SecI(Obj->section_begin());
195 if (error(Sym.getSection(SecI)))
198 if (SecI == Obj->section_end())
200 const SectionRef &Sec = *SecI;
/external/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp702 section_iterator SecI = Obj.section_end(); local
703 if (error(SymI->getSection(SecI)))
705 const coff_section *Section = Obj.getCOFFSection(*SecI);
/external/llvm/lib/Object/
H A DCOFFObjectFile.cpp266 section_iterator SecI = SecEnd; local
267 if (std::error_code EC = SymbI->getSection(SecI))
271 if (SecI == SecEnd)
274 if (!sectionContainsSymbol(SecI->getRawDataRefImpl(), Ref))

Completed in 133 milliseconds