Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyldChecker.h90 bool isZeroFill() const { in isZeroFill() function
110 assert(!isZeroFill() && "Can't get content for a zero-fill section"); in getContent()
116 assert(isZeroFill() && "Can't get zero-fill length for content section"); in getZeroFillLength()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
H A DJITLink.cpp95 << (B.isZeroFill() ? "zero-fill" : "content") in operator <<()
163 B.isZeroFill() in splitBlock()
269 if (B->isZeroFill()) in dump()
H A DDWARFRecordSectionSplitter.cpp68 if (B.isZeroFill()) in processBlock()
H A DJITLinkGeneric.h131 assert((!B->isZeroFill() || all_of(B->edges(), in fixUpBlocks()
H A DJITLinkMemoryManager.cpp33 if (LLVM_LIKELY(!B->isZeroFill())) in BasicLayout()
H A DEHFrameSupport.cpp119 if (B.isZeroFill()) in processBlock()
/openbsd-src/gnu/llvm/llvm/examples/OrcV2Examples/LLJITWithObjectLinkingLayerPlugin/
H A DLLJITWithObjectLinkingLayerPlugin.cpp97 if (B.isZeroFill()) { in printBlockContent()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp780 if (SymInfo->isZeroFill()) in getSymbolLocalAddr()
845 if (SecInfo->isZeroFill()) in getSectionAddr()
875 if (StubInfo->isZeroFill()) in getStubOrGOTAddrFor()
/openbsd-src/gnu/llvm/lld/MachO/
H A DInputSection.h263 inline bool isZeroFill(uint32_t flags) { in isZeroFill() function
H A DInputSection.cpp42 return isZeroFill(getFlags()) ? 0 : getSize(); in getFileSize()
H A DInputFiles.cpp336 ArrayRef<uint8_t> data = {isZeroFill(sec.flags) ? nullptr in parseSections()
902 if (isZeroFill(isec->getFlags())) { in parseSymbols()
H A DWriter.cpp1126 osec->fileOff = isZeroFill(osec->flags) ? 0 : fileOff; in assignAddresses()
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h223 bool isZeroFill() const { return !Data; } in isZeroFill() function
308 assert((K == Edge::KeepAlive || !isZeroFill()) && in addEdge()
579 bool isSymbolZeroFill() const { return getBlock().isZeroFill(); } in isSymbolZeroFill()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DIndirectionUtils.cpp416 assert(!B.isZeroFill() && "expected content block"); in addFunctionPointerRelocationsToCurrentSymbol()
/openbsd-src/gnu/llvm/llvm/tools/llvm-jitlink/
H A Dllvm-jitlink.cpp433 bool IsZeroFill = Sym->getBlock().isZeroFill(); in dumpSectionContents()
/openbsd-src/gnu/llvm/llvm/docs/
H A DJITLink.rst217 and not for zero-fill blocks (use ``isZeroFill`` to check, and prefer