Reserves a contiguous slice of virtual memory committing just a portion of it. More...
#include <VirtualMemory.h>
Public Member Functions | |
bool | reserve (size_t maxCapacityInBytes) |
Reserves a large block of virtual memory of size maxCapacityInBytes. More... | |
bool | release () |
Reclaims the entire virtual memory block (reserved with VirtualMemory::reserve) More... | |
bool | commit (size_t newCapacityBytes) |
Ensures at least newCapacityBytes to be committed / accessible from the large maxCapacityInBytes block. More... | |
bool | shrink (size_t newCapacityBytes) |
Reclaims all unused pages past newCapacityBytes (previously committed with VirtualMemory::commit) More... | |
Static Public Member Functions | |
static size_t | roundUpToPageSize (size_t size) |
Round up the passed in size to system memory page size. More... | |
static size_t | getSystemPageSize () |
Obtains system memory page size. More... | |
Public Attributes | |
size_t | reservedCapacityBytes = 0 |
Maximum amount of reserved memory that can be committed. More... | |
size_t | committedCapacityBytes = 0 |
Current amount of committed memory. More... | |
void * | memory = nullptr |
Pointer to start of reserved memory. More... | |
Reserves a contiguous slice of virtual memory committing just a portion of it.
This class is useful on 64-bit systems where the address space is so large that it's feasible reserving large chunks of memory to commit and de-commit (shrink) as needed.
Reservation ensures that the returned address will not change and will be sized in multiples of system page size.
bool SC::VirtualMemory::commit | ( | size_t | newCapacityBytes | ) |
Ensures at least newCapacityBytes to be committed / accessible from the large maxCapacityInBytes block.
newCapacityBytes | Indicates how much of the reserved virtual address space that must be accessible |
|
static |
Obtains system memory page size.
bool SC::VirtualMemory::release | ( | ) |
Reclaims the entire virtual memory block (reserved with VirtualMemory::reserve)
bool SC::VirtualMemory::reserve | ( | size_t | maxCapacityInBytes | ) |
Reserves a large block of virtual memory of size maxCapacityInBytes.
maxCapacityInBytes | Size of the reserved amount of virtual address space |
Round up the passed in size to system memory page size.
bool SC::VirtualMemory::shrink | ( | size_t | newCapacityBytes | ) |
Reclaims all unused pages past newCapacityBytes (previously committed with VirtualMemory::commit)
size_t SC::VirtualMemory::committedCapacityBytes = 0 |
Current amount of committed memory.
void* SC::VirtualMemory::memory = nullptr |
Pointer to start of reserved memory.
size_t SC::VirtualMemory::reservedCapacityBytes = 0 |
Maximum amount of reserved memory that can be committed.