Home
last modified time | relevance | path

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

/external/llvm-project/llvm/include/llvm/ExecutionEngine/
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()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/
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()
/external/llvm-project/lld/MachO/
DInputSection.h63 inline bool isZeroFill(uint32_t flags) { in isZeroFill() function
DInputSection.cpp30 return isZeroFill(flags) ? 0 : getSize(); in getFileSize()
DWriter.cpp170 if (!isZeroFill(osec->flags)) { in writeTo()
528 if (isZeroFill(osec->flags)) in sectionOrder()
637 osec->fileOff = isZeroFill(osec->flags) ? 0 : fileOff; in assignAddresses()
DInputFiles.cpp169 isec->data = {isZeroFill(sec.flags) ? nullptr : buf + sec.offset, in parseSections()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DJITLink.cpp95 << (B.isZeroFill() ? "zero-fill" : "content") in operator <<()
165 B.isZeroFill() in splitBlock()
DEHFrameSupport.cpp73 if (B.isZeroFill()) in processBlock()
176 if (B.isZeroFill()) in processBlock()
DJITLinkGeneric.cpp144 if (!B->isZeroFill()) in layOutBlocks()
/external/llvm-project/llvm/lib/ExecutionEngine/JITLink/
DJITLink.cpp97 << (B.isZeroFill() ? "zero-fill" : "content") in operator <<()
192 B.isZeroFill() in splitBlock()
DEHFrameSupport.cpp75 if (B.isZeroFill()) in processBlock()
178 if (B.isZeroFill()) in processBlock()
DJITLinkGeneric.cpp186 if (!B->isZeroFill()) in layOutBlocks()
/external/llvm-project/llvm/examples/OrcV2Examples/LLJITWithObjectLinkingLayerPlugin/
DLLJITWithObjectLinkingLayerPlugin.cpp96 if (B->isZeroFill()) in printLinkGraph()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldChecker.cpp744 if (SymInfo->isZeroFill()) in getSymbolLocalAddr()
809 if (SecInfo->isZeroFill()) in getSectionAddr()
839 if (StubInfo->isZeroFill()) in getStubOrGOTAddrFor()
/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldChecker.cpp755 if (SymInfo->isZeroFill()) in getSymbolLocalAddr()
820 if (SecInfo->isZeroFill()) in getSectionAddr()
850 if (StubInfo->isZeroFill()) in getStubOrGOTAddrFor()
/external/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
DJITLink.h186 bool isZeroFill() const { return !Data; } in isZeroFill() function
474 bool isSymbolZeroFill() const { return getBlock().isZeroFill(); } in isSymbolZeroFill()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/JITLink/
DJITLink.h185 bool isZeroFill() const { return !Data; } in isZeroFill() function
467 bool isSymbolZeroFill() const { return getBlock().isZeroFill(); } in isSymbolZeroFill()
/external/llvm-project/llvm/tools/llvm-jitlink/
Dllvm-jitlink.cpp290 bool IsZeroFill = Sym->getBlock().isZeroFill(); in dumpSectionContents()