Home
last modified time | relevance | path

Searched refs:ZeroFillSize (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DEPCGenericJITLinkMemoryManager.cpp31 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 DMapperJITLinkMemoryManager.cpp91 auto TotalSize = Seg.ContentSize + Seg.ZeroFillSize; in allocate()
101 SI.ZeroFillSize = Seg.ZeroFillSize; in allocate()
H A DMemoryMapper.cpp74 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 DJITLinkMemoryManager.cpp69 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 DJITLinkMemoryManager.h212 /// 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 DMemoryMapper.h35 size_t ZeroFillSize; member