Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ !
H A DRuntimeDyldCOFFX86_64.h210 object::section_iterator SecI = *SectionOrError; in processRelocationRef() local
212 bool IsExtern = SecI == Obj.section_end(); in processRelocationRef()
237 findOrEmitSection(Obj, *SecI, SecI->isText(), ObjSectionToID)) in processRelocationRef()
/src/contrib/llvm-project/llvm/tools/llvm-readobj/ !
H A DMachODumper.cpp569 section_iterator SecI = Obj->getRelocationSection(DR); in printRelocation() local
570 if (SecI != Obj->section_end()) in printRelocation()
571 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()
/src/contrib/llvm-project/llvm/tools/llvm-objdump/ !
H A Dllvm-objdump.cpp1170 section_iterator SecI = in addDynamicElfSymbols() local
1172 if (SecI == Obj.section_end()) in addDynamicElfSymbols()
1175 AllSymbols[*SecI].emplace_back(Address, Name, SymbolType); in addDynamicElfSymbols()
1195 for (auto SecI : Obj.sections()) { in getWasmCodeSection() local
1196 const WasmSection &Section = Obj.getWasmSection(SecI); in getWasmCodeSection()
1198 return SecI; in getWasmCodeSection()
1720 section_iterator SecI = unwrapOrError(Symbol.getSection(), FileName); in disassembleObject() local
1721 if (SecI != Obj.section_end()) { in disassembleObject()
1722 uint64_t SectionAddr = SecI->getAddress(); in disassembleObject()
1727 AllMappingSymbols[*SecI].emplace_back(Address - SectionAddr, in disassembleObject()
[all …]
/src/contrib/llvm-project/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()
/src/contrib/llvm-project/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()
/src/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ !
H A DMachOLinkGraphBuilder.cpp337 auto SecI = IndexToSection.find(SecIndex); in addSectionStartSymAndBlock() local
338 assert(SecI != IndexToSection.end() && "SecIndex invalid"); in addSectionStartSymAndBlock()
339 auto &NSec = SecI->second; in addSectionStartSymAndBlock()
/src/contrib/llvm-project/llvm/tools/llvm-nm/ !
H A Dllvm-nm.cpp886 elf_section_iterator SecI = *SecIOrErr; in getSymbolNMTypeChar() local
887 if (SecI != Obj.section_end()) { in getSymbolNMTypeChar()
888 uint32_t Type = SecI->getType(); in getSymbolNMTypeChar()
889 uint64_t Flags = SecI->getFlags(); in getSymbolNMTypeChar()
897 auto NameOrErr = SecI->getName(); in getSymbolNMTypeChar()
937 section_iterator SecI = *SecIOrErr; in getSymbolNMTypeChar() local
938 const coff_section *Section = Obj.getCOFFSection(*SecI); in getSymbolNMTypeChar()