mpd/src/util/HugeAllocator.cxx

100 lines
1.8 KiB
C++
Raw Normal View History

// SPDX-License-Identifier: BSD-2-Clause
// author: Max Kellermann <max.kellermann@gmail.com>
2013-01-04 14:54:49 +01:00
#include "HugeAllocator.hxx"
2022-04-26 20:18:07 +02:00
#include "system/VmaName.hxx"
2013-01-04 14:54:49 +01:00
#include <new>
2013-01-04 14:54:49 +01:00
#ifdef __linux__
#include <sys/mman.h>
#include <unistd.h>
#else
#include <stdlib.h>
#endif
#ifdef __linux__
/**
* Round up the parameter, make it page-aligned.
*/
[[gnu::const]]
2013-01-04 14:54:49 +01:00
static size_t
AlignToPageSize(size_t size) noexcept
2013-01-04 14:54:49 +01:00
{
static const long page_size = sysconf(_SC_PAGESIZE);
if (page_size <= 0)
2013-01-04 14:54:49 +01:00
return size;
size_t ps(page_size);
return (size + ps - 1) / ps * ps;
}
std::span<std::byte>
HugeAllocate(size_t size)
2013-01-04 14:54:49 +01:00
{
size = AlignToPageSize(size);
constexpr int flags = MAP_ANONYMOUS|MAP_PRIVATE|MAP_NORESERVE;
void *p = mmap(nullptr, size,
PROT_READ|PROT_WRITE, flags,
-1, 0);
if (p == (void *)-1)
throw std::bad_alloc();
2013-01-04 14:54:49 +01:00
#ifdef MADV_HUGEPAGE
/* allow the Linux kernel to use "Huge Pages", which reduces page
table overhead for this big chunk of data */
madvise(p, size, MADV_HUGEPAGE);
#endif
return {(std::byte *)p, size};
2013-01-04 14:54:49 +01:00
}
void
2016-06-17 17:51:27 +02:00
HugeFree(void *p, size_t size) noexcept
2013-01-04 14:54:49 +01:00
{
munmap(p, AlignToPageSize(size));
}
2022-04-26 20:18:07 +02:00
void
HugeSetName(void *p, size_t size, const char *name) noexcept
{
SetVmaName(p, size, name);
}
void
HugeForkCow(void *p, size_t size, bool enable) noexcept
{
#ifdef MADV_DONTFORK
madvise(p, AlignToPageSize(size),
enable ? MADV_DOFORK : MADV_DONTFORK);
#endif
}
2013-01-04 14:54:49 +01:00
void
2016-06-17 17:51:27 +02:00
HugeDiscard(void *p, size_t size) noexcept
2013-01-04 14:54:49 +01:00
{
#ifdef MADV_DONTNEED
madvise(p, AlignToPageSize(size), MADV_DONTNEED);
#endif
}
#elif defined(_WIN32)
std::span<std::byte>
HugeAllocate(size_t size)
{
// TODO: use MEM_LARGE_PAGES
void *p = VirtualAlloc(nullptr, size,
MEM_COMMIT|MEM_RESERVE,
PAGE_READWRITE);
if (p == nullptr)
throw std::bad_alloc();
// TODO: round size up to the page size
return {(std::byte *)p, size};
}
2013-01-04 14:54:49 +01:00
#endif