| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /*
- * Copyright (c) 2012-2014 Daniele Bartolini and individual contributors.
- * License: https://github.com/taylor001/crown/blob/master/LICENSE
- */
- #pragma once
- #include "allocator.h"
- namespace crown
- {
- /// Allocates memory linearly in a stack-like fashion from a
- /// predefined chunk. All deallocations must occur in LIFO
- /// order.
- ///
- /// @ingroup Memory
- class StackAllocator : public Allocator
- {
- public:
- StackAllocator(void* start, size_t size);
- ~StackAllocator();
- /// @copydoc Allocator::allocate()
- void* allocate(size_t size, size_t align = Allocator::DEFAULT_ALIGN);
- /// @copydoc Allocator::deallocate()
- /// @note
- /// Deallocations must occur in LIFO order i.e. the
- /// last allocation must be freed for first.
- void deallocate(void* data);
- /// @copydoc Allocator::allocated_size()
- size_t allocated_size();
- private:
- struct Header
- {
- uint32_t offset;
- uint32_t alloc_id;
- };
- void* _physical_start;
- size_t _total_size;
- void* _top;
- uint32_t _allocation_count;
- };
- } // namespace crown
|