Searched refs:ZeroFillSize (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | EPCGenericJITLinkMemoryManager.cpp | 31 SegInfo() : WorkingMem(nullptr), ContentSize(0), ZeroFillSize(0) {} in SegInfo() 36 uint64_t ZeroFillSize; member 52 alignTo(KV.second.ContentSize + KV.second.ZeroFillSize, in finalize() 156 alignTo(Seg.ContentSize + Seg.ZeroFillSize, EPC.getPageSize())); in completeAllocation() 160 SegInfo.ZeroFillSize = Seg.ZeroFillSize; in completeAllocation()
|
H A D | MapperJITLinkMemoryManager.cpp | 91 auto TotalSize = Seg.ContentSize + Seg.ZeroFillSize; in allocate() 101 SI.ZeroFillSize = Seg.ZeroFillSize; in allocate()
|
H A D | MemoryMapper.cpp | 74 auto Size = Segment.ContentSize + Segment.ZeroFillSize; in initialize() 83 Segment.ZeroFillSize); in initialize() 343 std::memset(Base + Segment.ContentSize, 0, Segment.ZeroFillSize); in initialize() 349 SegReq.Size = Segment.ContentSize + Segment.ZeroFillSize; in initialize()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | JITLinkMemoryManager.cpp | 69 Seg.ZeroFillSize = SegEndOffset - Seg.ContentSize; in BasicLayout() 74 << ", zero-fill-size=" << formatv("{0:x}", Seg.ZeroFillSize) in BasicLayout() 92 uint64_t SegSize = alignTo(Seg.ContentSize + Seg.ZeroFillSize, PageSize); in getContiguousPageBasedLayoutSizes() 310 alignTo(Seg.ContentSize + Seg.ZeroFillSize, MemMgr.PageSize); in applyProtections() 429 SegAddr += alignTo(Seg.ContentSize + Seg.ZeroFillSize, PageSize); in allocate()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
H A D | JITLinkMemoryManager.h | 212 /// The Alignment, ContentSize and ZeroFillSize of each segment will be 225 : ContentSize(0), ZeroFillSize(0), Addr(0), WorkingMem(nullptr), in Segment() 229 uint64_t ZeroFillSize; variable
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | MemoryMapper.h | 35 size_t ZeroFillSize; member
|