Home
last modified time | relevance | path

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

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