Home
last modified time | relevance | path

Searched refs:ZeroFillBlocks (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.cpp37 Seg.ZeroFillBlocks.push_back(B); in BasicLayout()
55 llvm::sort(Seg.ZeroFillBlocks, CompareBlocks); in BasicLayout()
64 for (auto *B : Seg.ZeroFillBlocks) { in BasicLayout()
106 assert(!(Seg.ContentBlocks.empty() && Seg.ZeroFillBlocks.empty()) && in apply()
127 for (auto *B : Seg.ZeroFillBlocks) { in apply()
136 Seg.ZeroFillBlocks.clear(); in apply()
/src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.h235 std::vector<Block *> ContentBlocks, ZeroFillBlocks; variable