#pragma once #include "gp_config.hpp" #include "gp/algorithm/min_max.hpp" #include "gp/algorithm/tmp_manip.hpp" #include "gp/buffer.hpp" #include "gp/math/integer_math.hpp" #include namespace gp { template class arena { page_allocator allocator; gp::buffer data; size_t next; size_t count; public: arena() : next(0) , count(0) , data(gp::buffer(nullptr,nullptr)) {} arena(size_t sz) : next(0) , count(0) , data(nullptr,nullptr) { if constexpr (gp::has_allocator_interface::value) { if(sz!=0) { auto v=allocator.allocate(sz); if(v!=nullptr) { data=gp::buffer(reinterpret_cast(v),reinterpret_cast(v)+sz); } } } } arena(char* pos,size_t sz) : next(0) , count(0) , data(pos,pos+sz) {} void* allocate(size_t sz) { size_t align = gp::min((1 << gp::math::log2(sz)), 16); size_t padding = align - (reinterpret_cast(data.begin().data + next)) % align; auto ret=data.begin()+padding+next; if(data.contains(ret)) { count++; next+=padding+sz; return ret.data; } else { return nullptr; } } constexpr bool try_reallocate(void*, size_t) { return false; } bool deallocate(void* ptr) { if(data.contains((char*)ptr)) { count--; if(count==0) { for(auto& i : data) { i=0; } next=0; } return true; } return false; } ~arena() { if constexpr(gp::has_allocator_interface::value) { allocator.deallocate(&data[0]); } } }; }