:github_url: https://github.com/nyx-org/gaia .. _program_listing_file_vm_heap.hpp: Program Listing for File heap.hpp ================================= |exhale_lsh| :ref:`Return to documentation for file ` (``vm/heap.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp /* SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include #define HEAP_ACCOUNTING_ENABLED 1 namespace Gaia::Vm { extern "C" void *malloc(size_t bytes); extern "C" void free(void *ptr); extern "C" void *realloc(void *ptr, size_t newsize); struct VirtualAllocator { public: uintptr_t map(size_t length); void unmap(uintptr_t address, size_t length); }; using MemoryAllocator = frg::slab_allocator; using MemoryPool = frg::slab_pool; struct HeapAllocator { static void *allocate(size_t size) { return operator new(size); } static void deallocate(void *ptr, size_t size) { (void)size; free(ptr); } static void free(void *ptr) { operator delete(ptr); } }; MemoryAllocator &get_allocator(); using String = frg::string; template using Vector = frg::vector; template using UniquePtr = frg::unique_ptr; enum Subsystem { UNKNOWN, SCHED, DEV, FS, VM, }; void dump_heap_stats(); } // namespace Gaia::Vm void *operator new(size_t size, Gaia::Vm::Subsystem subsystem); void *operator new[](size_t size, Gaia::Vm::Subsystem subsystem);