// File: lzham_mem.h // LZHAM is in the Public Domain. Please see the Public Domain declaration at the end of include/lzham.h #pragma once namespace lzham { void lzham_mem_init(); void* lzham_malloc(size_t size, size_t* pActual_size = NULL); void* lzham_realloc(void* p, size_t size, size_t* pActual_size = NULL, bool movable = true); void lzham_free(void* p); size_t lzham_msize(void* p); template inline T* lzham_new() { T* p = static_cast(lzham_malloc(sizeof(T))); if (!p) return NULL; if (LZHAM_IS_SCALAR_TYPE(T)) return p; return helpers::construct(p); } template inline T* lzham_new(const A& init0) { T* p = static_cast(lzham_malloc(sizeof(T))); if (!p) return NULL; return new (static_cast(p)) T(init0); } template inline T* lzham_new(const A& init0, const B& init1) { T* p = static_cast(lzham_malloc(sizeof(T))); if (!p) return NULL; return new (static_cast(p)) T(init0, init1); } template inline T* lzham_new(const A& init0, const B& init1, const C& init2) { T* p = static_cast(lzham_malloc(sizeof(T))); if (!p) return NULL; return new (static_cast(p)) T(init0, init1, init2); } template inline T* lzham_new(const A& init0, const B& init1, const C& init2, const D& init3) { T* p = static_cast(lzham_malloc(sizeof(T))); if (!p) return NULL; return new (static_cast(p)) T(init0, init1, init2, init3); } template inline T* lzham_new_array(uint32 num) { if (!num) num = 1; uint8* q = static_cast(lzham_malloc(LZHAM_MIN_ALLOC_ALIGNMENT + sizeof(T) * num)); if (!q) return NULL; T* p = reinterpret_cast(q + LZHAM_MIN_ALLOC_ALIGNMENT); reinterpret_cast(p)[-1] = num; reinterpret_cast(p)[-2] = ~num; if (!LZHAM_IS_SCALAR_TYPE(T)) { helpers::construct_array(p, num); } return p; } template inline void lzham_delete(T* p) { if (p) { if (!LZHAM_IS_SCALAR_TYPE(T)) { helpers::destruct(p); } lzham_free(p); } } template inline void lzham_delete_array(T* p) { if (p) { const uint32 num = reinterpret_cast(p)[-1]; const uint32 num_check = reinterpret_cast(p)[-2]; LZHAM_ASSERT(num && (num == ~num_check)); if (num == ~num_check) { if (!LZHAM_IS_SCALAR_TYPE(T)) { helpers::destruct_array(p, num); } lzham_free(reinterpret_cast(p) - LZHAM_MIN_ALLOC_ALIGNMENT); } } } void lzham_print_mem_stats(); } // namespace lzham