/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | EPCGenericRTDyldMemoryManager.cpp | 106 if (CodeAlign > EPC.getPageSize()) { in reserveAllocationSpace() 110 if (RODataAlign > EPC.getPageSize()) { in reserveAllocationSpace() 114 if (RWDataAlign > EPC.getPageSize()) { in reserveAllocationSpace() 121 TotalSize += alignTo(CodeSize, EPC.getPageSize()); in reserveAllocationSpace() 122 TotalSize += alignTo(RODataSize, EPC.getPageSize()); in reserveAllocationSpace() 123 TotalSize += alignTo(RWDataSize, EPC.getPageSize()); in reserveAllocationSpace() 147 *TargetAllocAddr, ExecutorAddrDiff(alignTo(CodeSize, EPC.getPageSize()))}; in reserveAllocationSpace() 150 ExecutorAddrDiff(alignTo(RODataSize, EPC.getPageSize()))}; in reserveAllocationSpace() 153 ExecutorAddrDiff(alignTo(RWDataSize, EPC.getPageSize()))}; in reserveAllocationSpace()
|
H A D | EPCGenericJITLinkMemoryManager.cpp | 53 Parent.EPC.getPageSize()), in finalize() 105 auto Pages = BL.getContiguousPageBasedLayoutSizes(EPC.getPageSize()); in allocate() 156 alignTo(Seg.ContentSize + Seg.ZeroFillSize, EPC.getPageSize())); in completeAllocation()
|
H A D | EPCIndirectionUtils.cpp | 87 (EPC.getPageSize() - ABI.getPointerSize()) / TrampolineSize; in EPCTrampolinePool() 111 auto PageSize = EPC.getPageSize(); in grow() 300 {ResolverSize, Align(EPC.getPageSize())}}}); in writeResolverBlock() 343 assert(EPC.getPageSize() > getABISupport().getStubSize() && in EPCIndirectionUtils() 356 auto PageSize = EPC.getPageSize(); in getIndirectStubs()
|
H A D | MapperJITLinkMemoryManager.cpp | 67 auto SegsSizes = BL.getContiguousPageBasedLayoutSizes(Mapper->getPageSize()); in allocate() 96 NextSegAddr += alignTo(TotalSize, Mapper->getPageSize()); in allocate()
|
H A D | MemoryMapper.cpp | 38 auto PageSize = sys::Process::getPageSize(); in Create() 208 auto PageSize = sys::Process::getPageSize(); in Create()
|
H A D | ExecutorProcessControl.cpp | 67 auto PageSize = sys::Process::getPageSize(); in Create()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | common.cpp | 16 uptr getPageSize(); 19 PageSizeCached = getPageSize(); in getPageSizeSlow()
|
H A D | trusty.cpp | 30 uptr getPageSize() { return getauxval(AT_PAGESZ); } 29 uptr getPageSize() { return getauxval(AT_PAGESZ); } getPageSize() function
|
H A D | linux.cpp | 43 uptr getPageSize() { return static_cast<uptr>(sysconf(_SC_PAGESIZE)); } 42 uptr getPageSize() { return static_cast<uptr>(sysconf(_SC_PAGESIZE)); } getPageSize() function
|
H A D | fuchsia.cpp | 27 uptr getPageSize() { return _zx_system_get_page_size(); } in getPageSize() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | MemoryMapper.h | 47 virtual unsigned int getPageSize() = 0; 88 unsigned int getPageSize() override { return PageSize; } in getPageSize() function 140 unsigned int getPageSize() override { return PageSize; } in getPageSize() function
|
H A D | ExecutorProcessControl.h | 215 unsigned getPageSize() const { return PageSize; } in getPageSize() function
|
H A D | Core.h | 1477 size_t getPageSize() const { return EPC->getPageSize(); } in getPageSize() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Process.h | 55 static Expected<unsigned> getPageSize(); 62 if (auto PageSize = getPageSize()) in getPageSizeEstimate()
|
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | Target.h | 84 virtual uint64_t getPageSize() const = 0;
|
H A D | SectionPriorities.cpp | 160 const uint64_t maxClusterSize = target->getPageSize(); in run()
|
H A D | Writer.cpp | 1073 uint64_t pageSize = target->getPageSize(); in finalizeAddresses() 1228 const uint64_t pageSize = target->getPageSize(); in buildFixupChains()
|
H A D | SyntheticSections.cpp | 92 size = alignToPowerOf2(size, target->getPageSize()); in getSize() 2357 segInfo->page_size = target->getPageSize(); in writeTo() 2489 const uint64_t pageSize = target->getPageSize(); in finalizeContents()
|
/freebsd/contrib/llvm-project/lld/MachO/Arch/ |
H A D | ARM64Common.h | 30 uint64_t getPageSize() const override { return 16 * 1024; } in getPageSize() function
|
H A D | X86_64.cpp | 45 uint64_t getPageSize() const override { return 4 * 1024; } in getPageSize() function
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/ |
H A D | SimpleRemoteEPCServer.cpp | 198 if (auto PageSize = sys::Process::getPageSize()) in sendSetupMessage()
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | ScriptParser.cpp | 116 Expr getPageSize(); 1273 Expr ScriptParser::getPageSize() { in getPageSize() function in ScriptParser 1286 return getPageSize(); in readConstant()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | JITLinkMemoryManager.cpp | 329 if (auto PageSize = sys::Process::getPageSize()) in Create()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/ |
H A D | Process.inc | 80 Expected<unsigned> Process::getPageSize() {
|
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/ |
H A D | Process.inc | 66 Expected<unsigned> Process::getPageSize() {
|