If a bunch of memory is allocated, used, and freed before moving on to the next round of allocation, I'd suggest using the simplest allocator possible:
class Allocator
typedef struct _allocator {
public:
Allocator(int bytes) : buffer_(new char[bytes])void* buffer;
int start;
int max;
} allocator;
void init_allocator(size_t size, start_(0allocator* alloc) { }
~Allocator() {
delete buffer_alloc->buffer = malloc(size);
alloc->start = 0;
alloc->max = size;
}
charvoid* alloc(int bytesallocator_malloc(allocator* alloc, size_t amount) {
charif (alloc->max - alloc->start < 0) return NULL;
void* pointer mem = buffer_ alloc->buffer + start_; buffer_ alloc->start;
alloc->start += bytes;
return pointermem;
}
void free(allocator_free(allocator* alloc) {
start_ alloc->start = 0; }
private:
char* memory_;
int start_;
}
;
Modulo ugliness for types, etc.
