Home
last modified time | relevance | path

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

/freebsd/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()
/freebsd/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()
684 if (SecI != Obj->section_end()) in printSymbol()
685 SectionName = unwrapOrError(Obj->getFileName(), SecI->getName()); in printSymbol()
681 section_iterator SecI = *SecIOrErr; printSymbol() local
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp143 section_iterator SecI = O.getRelocationRelocatedSection(RI); in makeValueAddendPCRel() local
144 Value.Offset += RI->getOffset() + OffsetToNextPC + SecI->getAddress(); in makeValueAddendPCRel()
/freebsd/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()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp328 auto SecI = IndexToSection.find(SecIndex); in addSectionStartSymAndBlock() local
329 assert(SecI != IndexToSection.end() && "SecIndex invalid"); in addSectionStartSymAndBlock()
330 auto &NSec = SecI->second; in addSectionStartSymAndBlock()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1236 section_iterator SecI = in addDynamicElfSymbols() local
1238 if (SecI == Obj.section_end()) in addDynamicElfSymbols()
1241 AllSymbols[*SecI].emplace_back(Address, Name, SymbolType); in addDynamicElfSymbols()
1261 for (auto SecI : Obj.sections()) { in getWasmCodeSection() local
1262 const WasmSection &Section = Obj.getWasmSection(SecI); in getWasmCodeSection()
1264 return SecI; in getWasmCodeSection()
1773 section_iterator SecI = unwrapOrError(Symbol.getSection(), FileName); in disassembleObject() local
1774 if (SecI != Obj.section_end()) { in disassembleObject()
1775 uint64_t SectionAddr = SecI->getAddress(); in disassembleObject()
1780 AllMappingSymbols[*SecI].emplace_back(Address - SectionAddr, in disassembleObject()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp888 elf_section_iterator SecI = *SecIOrErr; in getSymbolNMTypeChar() local
889 if (SecI != Obj.section_end()) { in getSymbolNMTypeChar()
890 uint32_t Type = SecI->getType(); in getSymbolNMTypeChar()
891 uint64_t Flags = SecI->getFlags(); in getSymbolNMTypeChar()
899 auto NameOrErr = SecI->getName(); in getSymbolNMTypeChar()
939 section_iterator SecI = *SecIOrErr; in getSymbolNMTypeChar() local
940 const coff_section *Section = Obj.getCOFFSection(*SecI); in getSymbolNMTypeChar()