Home
last modified time | relevance | path

Searched refs:section_end (Results 1 – 25 of 32) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h108 Object.section_end()); in begin()
111 return SectionFilterIterator(Predicate, Object.section_end(), in end()
112 Object.section_end()); in end()
H A Dllvm-objdump.cpp716 if (SecI == Obj->section_end()) in addDynamicElfSymbols()
848 if (Relocated == Obj.section_end() || !checkSectionFilter(*Relocated).Keep) in getRelocsMap()
1157 if (SecI != Obj->section_end()) in disassembleObject()
1608 if (SymSI && *SymSI != Obj->section_end() && in disassembleObject()
1974 ? O->section_end() in printSymbol()
1979 if (Type == SymbolRef::ST_Debug && Section != O->section_end()) { in printSymbol()
1997 if ((Section != O->section_end() || Absolute) && !Weak) in printSymbol()
2036 } else if (Section == O->section_end()) { in printSymbol()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp319 section_iterator SI = Obj.section_end(); in loadObjectImpl()
325 if (SI == Obj.section_end()) in loadObjectImpl()
358 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in loadObjectImpl()
427 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in loadObjectImpl()
539 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in computeTotalAllocSize()
644 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in computeGOTSize()
670 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in computeSectionStubBufSize()
H A DRuntimeDyldMachO.cpp75 assert(TargetSI != Obj.section_end() && "Can't find section for symbol"); in processScatteredVANILLA()
166 section_iterator SE = Obj.section_end(); in getSectionByAddress()
H A DRuntimeDyldELF.cpp672 for (section_iterator si = Obj.section_begin(), se = Obj.section_end(); in findOPDEntrySection()
680 if (RelSecI == Obj.section_end()) in findOPDEntrySection()
725 section_iterator TSI = Obj.section_end(); in findOPDEntrySection()
730 assert(TSI != Obj.section_end() && "TSI should refer to a valid section"); in findOPDEntrySection()
1238 if (si == Obj.section_end()) in processRelocationRef()
1950 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in finalizeLoad()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOI386.h169 assert(SAI != Obj.section_end() && "Can't find section for address A"); in processSECTDIFFRelocation()
183 assert(SBI != Obj.section_end() && "Can't find section for address B"); in processSECTDIFFRelocation()
H A DRuntimeDyldMachOARM.h380 assert(SAI != MachO.section_end() && "Can't find section for address A"); in processHALFSECTDIFFRelocation()
394 assert(SBI != MachO.section_end() && "Can't find section for address B"); in processHALFSECTDIFFRelocation()
H A DRuntimeDyldCOFFI386.h56 bool IsExtern = Section == Obj.section_end(); in processRelocationRef()
H A DRuntimeDyldCOFFX86_64.h205 bool IsExtern = SecI == Obj.section_end(); in processRelocationRef()
H A DRuntimeDyldCOFFThumb.h106 bool IsExtern = Section == Obj.section_end(); in processRelocationRef()
H A DRuntimeDyldCOFFAArch64.h165 bool IsExtern = Section == Obj.section_end(); in processRelocationRef()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DObject.cpp160 return (*unwrap(SI) == OF->section_end()) ? 1 : 0; in LLVMObjectFileIsSectionIteratorAtEnd()
211 return (*unwrap(SI) == OB->getBinary()->section_end()) ? 1 : 0; in LLVMIsSectionIteratorAtEnd()
H A DXCOFFObjectFile.cpp230 return section_end(); in getSymbolSection()
429 section_iterator XCOFFObjectFile::section_end() const { in section_end() function in llvm::object::XCOFFObjectFile
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DInputFile.cpp483 auto End = Value.File->obj().section_end(); in scanToNextDebugS()
509 return *SectionIter == Value.File->obj().section_end(); in isEnd()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DObjectFile.h319 virtual section_iterator section_end() const = 0;
323 return section_iterator_range(section_begin(), section_end()); in sections()
H A DELFObjectFile.h425 section_iterator section_end() const override;
786 return section_end(); in getSymbolSection()
981 return section_end(); in getRelocatedSection()
1148 section_iterator ELFObjectFile<ELFT>::section_end() const { in section_end() function
H A DWasm.h205 section_iterator section_end() const override;
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.cpp183 if (Sec2 != Obj->section_end()) in dumpCXXData()
202 if (SecI == Obj->section_end()) in dumpCXXData()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1439 object::section_iterator RSec = Obj.section_end(); in getSymbolInfo()
1469 if (RSec != Obj.section_end()) in getSymbolInfo()
1479 if (L && RSec != Obj.section_end()) in getSymbolInfo()
1691 Obj.isRelocatableObject() ? *SecOrErr : Obj.section_end(); in DWARFObjInMemory()
1738 if (RelocatedSection == Obj.section_end()) in DWARFObjInMemory()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayer.cpp221 if (*Sec == COFFObj->section_end()) in onObjLoad()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp275 if (*SectOrErr != Obj.section_end()) in notifyObjectLoaded()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp280 if (Sec == Obj.section_end()) in notifyObjectLoaded()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolizableObjectFile.cpp156 if (!Sec || Obj.section_end() == *Sec) { in addSymbol()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp428 if (Sec == MachO->section_end()) { in darwinPrintSymbol()
827 if (SecI != Obj.section_end()) { in getSymbolNMTypeChar()
938 if (Sec == Obj.section_end()) in getSymbolNMTypeChar()
1021 if (*SecIOrErr == ELFObj->section_end()) in getNMSectionTagAndName()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DMachODumper.cpp561 if (SecI != Obj->section_end()) in printRelocation()
640 if (SecI != Obj->section_end()) in printSymbol()

12