| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
| H A D | RuntimeDyldMachOI386.h | 167 assert(SAI != Obj.section_end() && "Can't find section for address A"); in processSECTDIFFRelocation() 181 assert(SBI != Obj.section_end() && "Can't find section for address B"); in processSECTDIFFRelocation()
|
| H A D | RuntimeDyldMachOARM.h | 378 assert(SAI != MachO.section_end() && "Can't find section for address A"); in processHALFSECTDIFFRelocation() 392 assert(SBI != MachO.section_end() && "Can't find section for address B"); in processHALFSECTDIFFRelocation()
|
| H A D | RuntimeDyldCOFFI386.h | 88 if (Section == Obj.section_end()) { in processRelocationRef()
|
| H A D | RuntimeDyldCOFFX86_64.h | 206 const bool IsExtern = SecI == Obj.section_end(); in processRelocationRef()
|
| H A D | RuntimeDyldCOFFThumb.h | 105 if (Section == Obj.section_end()) { in processRelocationRef()
|
| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyld.cpp | 311 section_iterator SI = Obj.section_end(); in loadObjectImpl() 317 if (SI == Obj.section_end()) in loadObjectImpl() 349 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in loadObjectImpl() 481 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in computeTotalAllocSize() 575 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in computeGOTSize() 597 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in computeSectionStubBufSize()
|
| H A D | RuntimeDyldMachO.cpp | 76 assert(TargetSI != Obj.section_end() && "Can't find section for symbol"); in processScatteredVANILLA() 167 section_iterator SE = Obj.section_end(); in getSectionByAddress()
|
| H A D | RuntimeDyldELF.cpp | 603 for (section_iterator si = Obj.section_begin(), se = Obj.section_end(); in findOPDEntrySection() 606 if (RelSecI == Obj.section_end()) in findOPDEntrySection() 650 section_iterator TSI = Obj.section_end(); in findOPDEntrySection() 655 assert(TSI != Obj.section_end() && "TSI should refer to a valid section"); in findOPDEntrySection() 1159 if (si == Obj.section_end()) in processRelocationRef() 1869 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in finalizeLoad()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-objdump/ |
| H A D | llvm-objdump.cpp | 321 Object.section_end()); in begin() 324 return SectionFilterIterator(Predicate, Object.section_end(), in end() 325 Object.section_end()); in end() 655 while (I != 0 && SI != O->section_end()) { in printRelocationTargetName() 659 if (SI == O->section_end()) in printRelocationTargetName() 1247 if (SecI == Obj->section_end()) in addDynamicElfSymbols() 1390 if (Sec2 != Obj->section_end()) in disassembleObject() 1419 if (SecI != Obj->section_end()) in disassembleObject() 2031 if (Type == SymbolRef::ST_Debug && Section != O->section_end()) { in printSymbolTable() 2076 } else if (Section == O->section_end()) { in printSymbolTable()
|
| H A D | MachODump.cpp | 693 uint32_t nsects = O->section_end()->getRawDataRefImpl().d.a; in PrintRelocationEntries() 7816 if (Section == Obj->section_end()) in printMachOUnwindInfo()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Object/ |
| H A D | ObjectFile.h | 289 virtual section_iterator section_end() const = 0; 293 return section_iterator_range(section_begin(), section_end()); in sections()
|
| H A D | ELFObjectFile.h | 374 section_iterator section_end() const override; 632 return section_end(); in getSymbolSection() 814 return section_end(); in getRelocatedSection() 819 return section_end(); in getRelocatedSection() 1007 section_iterator ELFObjectFile<ELFT>::section_end() const { in section_end() function
|
| H A D | Wasm.h | 198 section_iterator section_end() const override;
|
| H A D | MachO.h | 363 section_iterator section_end() const override;
|
| H A D | COFF.h | 930 section_iterator section_end() const override;
|
| /freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/ |
| H A D | InputFile.cpp | 479 auto End = Value.File->obj().section_end(); in scanToNextDebugS() 505 return *SectionIter == Value.File->obj().section_end(); in isEnd()
|
| /freebsd-12.1/contrib/llvm/lib/Object/ |
| H A D | Object.cpp | 95 return (*unwrap(SI) == OB->getBinary()->section_end()) ? 1 : 0; in LLVMIsSectionIteratorAtEnd()
|
| H A D | COFFObjectFile.cpp | 253 return section_end(); in getSymbolSection() 865 section_iterator COFFObjectFile::section_end() const { in section_end() function in COFFObjectFile
|
| H A D | WasmObjectFile.cpp | 1255 return section_end(); in getSymbolSection() 1417 section_iterator WasmObjectFile::section_end() const { in section_end() function in WasmObjectFile
|
| H A D | MachOObjectFile.cpp | 1844 return section_end(); in getSymbolSection() 2470 section_iterator MachOObjectFile::section_end() const { in section_end() function in MachOObjectFile 4221 return *section_end(); in getAnyRelocationSection() 4224 return *section_end(); in getAnyRelocationSection()
|
| /freebsd-12.1/contrib/binutils/binutils/ |
| H A D | dwarf.c | 2293 unsigned char *section_end; in display_debug_loc() local 2306 section_end = start + bytes; in display_debug_loc() 2415 if (start + 2 * pointer_size > section_end) in display_debug_loc() 2442 if (start + 2 > section_end) in display_debug_loc() 2452 if (start + length > section_end) in display_debug_loc() 2664 unsigned char *section_end; in display_debug_ranges() local 2677 section_end = start + bytes; in display_debug_ranges()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-cxxdump/ |
| H A D | llvm-cxxdump.cpp | 174 if (Sec2 != Obj->section_end()) in dumpCXXData() 193 if (SecI == Obj->section_end()) in dumpCXXData()
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFContext.cpp | 1167 object::section_iterator RSec = Obj.section_end(); in getSymbolInfo() 1197 if (RSec != Obj.section_end()) in getSymbolInfo() 1207 if (L && RSec != Obj.section_end()) in getSymbolInfo() 1443 if (RelocatedSection == Obj.section_end()) in DWARFObjInMemory()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-readobj/ |
| H A D | MachODumper.cpp | 550 if (SecI != Obj->section_end()) { in printRelocation() 622 if (SecI != Obj->section_end()) in printSymbol()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-nm/ |
| H A D | llvm-nm.cpp | 499 if (Sec == MachO->section_end()) { in darwinPrintSymbol() 902 if (SecI != Obj.section_end()) { in getSymbolNMTypeChar() 1029 if (Sec == Obj.section_end()) in getSymbolNMTypeChar()
|