show/hide this revision's text 2 added 166 characters in body

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.

show/hide this revision's text 1

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 {
  public:
    Allocator(int bytes) : buffer_(new char[bytes]), start_(0) { }
    ~Allocator() { delete buffer_; }
    char* alloc(int bytes) { char* pointer = buffer_ + start_; buffer_ += bytes; return pointer; }
    void free() { start_ = 0; }

  private:
    char* memory_;
    int start_;
};

Modulo ugliness for types, etc.