Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFX86_64.h203 object::section_iterator SecI = *SectionOrError; in processRelocationRef() local
205 bool IsExtern = SecI == Obj.section_end(); in processRelocationRef()
230 findOrEmitSection(Obj, *SecI, SecI->isText(), ObjSectionToID)) in processRelocationRef()
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DMachODumper.cpp571 section_iterator SecI = Obj->getRelocationSection(DR); in printRelocation() local
572 if (SecI != Obj->section_end()) in printRelocation()
573 TargetName = unwrapOrError(Obj->getFileName(), SecI->getName()); in printRelocation()
683 section_iterator SecI = *SecIOrErr; in printSymbol() local
684 if (SecI != Obj->section_end()) in printSymbol()
685 SectionName = unwrapOrError(Obj->getFileName(), SecI->getName()); in printSymbol()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp144 section_iterator SecI = O.getRelocationRelocatedSection(RI); in makeValueAddendPCRel() local
145 Value.Offset += RI->getOffset() + OffsetToNextPC + SecI->getAddress(); in makeValueAddendPCRel()
/llvm-project-15.0.7/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.cpp200 object::section_iterator SecI = *SecIOrErr; in dumpCXXData() local
202 if (SecI == Obj->section_end()) in dumpCXXData()
204 const SectionRef &Sec = *SecI; in dumpCXXData()
/llvm-project-15.0.7/llvm/tools/llvm-profgen/
H A DProfiledBinary.cpp576 section_iterator SecI = unwrapOrError(Symbol.getSection(), FileName); in disassemble() local
577 if (SecI != Obj->section_end()) in disassemble()
578 AllSymbols[*SecI].push_back(SymbolInfoTy(Addr, Name, ELF::STT_NOTYPE)); in disassemble()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp323 auto SecI = IndexToSection.find(SecIndex); in addSectionStartSymAndBlock() local
324 assert(SecI != IndexToSection.end() && "SecIndex invalid"); in addSectionStartSymAndBlock()
325 auto &NSec = SecI->second; in addSectionStartSymAndBlock()
/llvm-project-15.0.7/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp868 elf_section_iterator SecI = *SecIOrErr; in getSymbolNMTypeChar() local
869 if (SecI != Obj.section_end()) { in getSymbolNMTypeChar()
870 uint32_t Type = SecI->getType(); in getSymbolNMTypeChar()
871 uint64_t Flags = SecI->getFlags(); in getSymbolNMTypeChar()
879 auto NameOrErr = SecI->getName(); in getSymbolNMTypeChar()
919 section_iterator SecI = *SecIOrErr; in getSymbolNMTypeChar() local
920 const coff_section *Section = Obj.getCOFFSection(*SecI); in getSymbolNMTypeChar()
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp823 section_iterator SecI = in addDynamicElfSymbols() local
825 if (SecI == Obj.section_end()) in addDynamicElfSymbols()
828 AllSymbols[*SecI].emplace_back(Address, Name, SymbolType); in addDynamicElfSymbols()
848 for (auto SecI : Obj.sections()) { in getWasmCodeSection() local
849 const WasmSection &Section = Obj.getWasmSection(SecI); in getWasmCodeSection()
851 return SecI; in getWasmCodeSection()
1307 section_iterator SecI = unwrapOrError(Symbol.getSection(), FileName); in disassembleObject() local
1308 if (SecI != Obj.section_end()) in disassembleObject()
1309 AllSymbols[*SecI].push_back(createSymbolInfo(Obj, Symbol)); in disassembleObject()