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

/openbsd-current/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFX86_64.h203 object::section_iterator SecI = *SectionOrError;
205 bool IsExtern = SecI == Obj.section_end();
230 findOrEmitSection(Obj, *SecI, SecI->isText(), ObjSectionToID))
/openbsd-current/gnu/llvm/llvm/tools/llvm-readobj/
H A DMachODumper.cpp569 section_iterator SecI = Obj->getRelocationSection(DR); local
570 if (SecI != Obj->section_end())
571 TargetName = unwrapOrError(Obj->getFileName(), SecI->getName());
681 section_iterator SecI = *SecIOrErr; local
682 if (SecI != Obj->section_end())
683 SectionName = unwrapOrError(Obj->getFileName(), SecI->getName());
/openbsd-current/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp144 section_iterator SecI = O.getRelocationRelocatedSection(RI); local
145 Value.Offset += RI->getOffset() + OffsetToNextPC + SecI->getAddress();
/openbsd-current/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp327 auto SecI = IndexToSection.find(SecIndex); local
328 assert(SecI != IndexToSection.end() && "SecIndex invalid");
329 auto &NSec = SecI->second;
/openbsd-current/gnu/llvm/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.cpp200 object::section_iterator SecI = *SecIOrErr; local
202 if (SecI == Obj->section_end())
204 const SectionRef &Sec = *SecI;
/openbsd-current/gnu/llvm/llvm/tools/llvm-profgen/
H A DProfiledBinary.cpp653 section_iterator SecI = unwrapOrError(Symbol.getSection(), FileName); local
654 if (SecI != Obj->section_end())
655 AllSymbols[*SecI].push_back(SymbolInfoTy(Addr, Name, ELF::STT_NOTYPE));
/openbsd-current/gnu/llvm/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp875 elf_section_iterator SecI = *SecIOrErr;
876 if (SecI != Obj.section_end()) {
877 uint32_t Type = SecI->getType();
878 uint64_t Flags = SecI->getFlags();
886 auto NameOrErr = SecI->getName();
926 section_iterator SecI = *SecIOrErr; local
927 const coff_section *Section = Obj.getCOFFSection(*SecI);
/openbsd-current/gnu/llvm/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp853 section_iterator SecI =
855 if (SecI == Obj.section_end())
858 AllSymbols[*SecI].emplace_back(Address, Name, SymbolType);
878 for (auto SecI : Obj.sections()) {
879 const WasmSection &Section = Obj.getWasmSection(SecI);
881 return SecI;
1357 section_iterator SecI = unwrapOrError(Symbol.getSection(), FileName);
1358 if (SecI != Obj.section_end())
1359 AllSymbols[*SecI].push_back(createSymbolInfo(Obj, Symbol));

Completed in 183 milliseconds