Home
last modified time | relevance | path

Searched refs:isZeroFill (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyldChecker.h98 bool isZeroFill() const { in isZeroFill() function
118 assert(!isZeroFill() && "Can't get content for a zero-fill section"); in getContent()
124 assert(isZeroFill() && "Can't get zero-fill length for content section"); in getZeroFillLength()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DDWARFRecordSectionSplitter.cpp68 if (B.isZeroFill()) in processBlock()
H A DJITLink.cpp102 if (B.isZeroFill()) in isCStringBlock()
116 << (B.isZeroFill() ? "zero-fill" : "content") in operator <<()
326 if (B->isZeroFill()) in dump()
H A DJITLinkGeneric.h143 assert((!B->isZeroFill() || all_of(B->edges(), in fixUpBlocks()
H A DJITLinkMemoryManager.cpp34 if (LLVM_LIKELY(!B->isZeroFill())) in BasicLayout()
H A DEHFrameSupport.cpp117 if (B.isZeroFill()) in processBlock()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
H A DDebugInfoSupport.cpp60 if (Block->isZeroFill()) in getSectionData()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp897 if (SymInfo->isZeroFill()) in getSymbolLocalAddr()
992 if (SecInfo->isZeroFill()) in getSectionAddr()
1025 if (StubInfo->isZeroFill()) in getStubOrGOTAddrFor()
/freebsd/contrib/llvm-project/lld/MachO/
H A DInputSection.h274 inline bool isZeroFill(uint32_t flags) { in isZeroFill() function
H A DInputSection.cpp87 return isZeroFill(getFlags()) ? 0 : getSize(); in getFileSize()
H A DInputFiles.cpp356 ArrayRef<uint8_t> data = {isZeroFill(sec.flags) ? nullptr in parseSections()
906 if (isZeroFill(isec->getFlags())) { in parseSymbols()
H A DWriter.cpp1177 osec->fileOff = isZeroFill(osec->flags) ? 0 : fileOff; in assignAddresses()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h230 bool isZeroFill() const { return !Data; } in isZeroFill() function
321 assert((K == Edge::KeepAlive || !isZeroFill()) && in addEdge()
625 bool isSymbolZeroFill() const { return getBlock().isZeroFill(); } in isSymbolZeroFill()
1248 if (B.isZeroFill()) {
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DIndirectionUtils.cpp394 assert(!B.isZeroFill() && "expected content block"); in addFunctionPointerRelocationsToCurrentSymbol()