2015-11-13 17:17:37 +11:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2015-11-13 17:17:37 +11:00
|
|
|
*
|
|
|
|
* Copyright 2015 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
2017-08-29 16:53:11 +10:00
|
|
|
#ifndef CRUFT_UTIL_ALLOC_RAW_LINEAR_HPP
|
|
|
|
#define CRUFT_UTIL_ALLOC_RAW_LINEAR_HPP
|
2015-11-13 17:17:37 +11:00
|
|
|
|
2018-03-02 12:18:20 +11:00
|
|
|
#include "../../view.hpp"
|
2018-05-10 13:53:06 +10:00
|
|
|
#include "../../pointer.hpp"
|
2018-03-02 12:18:20 +11:00
|
|
|
|
2015-11-13 17:17:37 +11:00
|
|
|
#include <cstddef>
|
2017-08-30 15:13:43 +10:00
|
|
|
#include <iterator>
|
2015-11-13 17:17:37 +11:00
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
namespace cruft::alloc::raw {
|
2015-11-19 15:03:57 +11:00
|
|
|
// allocate progressively across a buffer without concern for deallocation.
|
|
|
|
// deallocation is a noop; the only way to free allocations is via reset.
|
2015-11-13 17:17:37 +11:00
|
|
|
class linear {
|
|
|
|
public:
|
|
|
|
linear (const linear&) = delete;
|
|
|
|
linear& operator= (const linear&) = delete;
|
2018-09-21 17:00:56 +10:00
|
|
|
|
|
|
|
linear (linear&&);
|
|
|
|
linear& operator= (linear&&);
|
2015-11-13 17:17:37 +11:00
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
linear (cruft::view<std::byte*> _data);
|
2017-08-30 15:13:43 +10:00
|
|
|
|
2018-05-10 13:53:06 +10:00
|
|
|
template <typename T>
|
2018-08-05 14:42:02 +10:00
|
|
|
cruft::view<T*>
|
2018-05-10 13:53:06 +10:00
|
|
|
allocate (size_t count)
|
|
|
|
{
|
|
|
|
auto const bytes = count * sizeof (T);
|
|
|
|
if (m_cursor + bytes > m_end)
|
|
|
|
throw std::bad_alloc ();
|
|
|
|
|
|
|
|
auto ptr = m_cursor;
|
|
|
|
m_cursor += bytes;
|
2018-08-05 14:42:02 +10:00
|
|
|
return { cruft::cast::alignment<T*> (ptr), count };
|
2018-05-10 13:53:06 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
2018-08-05 14:42:02 +10:00
|
|
|
cruft::view<T*>
|
2018-05-10 13:53:06 +10:00
|
|
|
allocate (size_t count, size_t alignment)
|
|
|
|
{
|
|
|
|
auto const bytes = count * sizeof (T);
|
2016-10-10 20:59:26 +11:00
|
|
|
|
2018-12-17 14:45:54 +11:00
|
|
|
auto ptr = cruft::align_up (m_cursor, alignment);
|
2018-05-10 13:53:06 +10:00
|
|
|
if (ptr + bytes > m_end)
|
|
|
|
throw std::bad_alloc ();
|
|
|
|
|
|
|
|
m_cursor = ptr + bytes;
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
return { cruft::cast::alignment<T*> (ptr), count };
|
2018-05-10 13:53:06 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2018-08-05 14:42:02 +10:00
|
|
|
void deallocate (cruft::view<T*> ptr)
|
2018-05-10 13:53:06 +10:00
|
|
|
{
|
|
|
|
(void)ptr;
|
|
|
|
}
|
2016-10-10 20:59:26 +11:00
|
|
|
|
2018-02-28 17:55:56 +11:00
|
|
|
std::byte* data (void);
|
|
|
|
std::byte* begin (void);
|
|
|
|
std::byte* end (void);
|
|
|
|
std::byte* cursor (void);
|
2017-08-31 13:48:33 +10:00
|
|
|
|
2018-02-28 17:55:56 +11:00
|
|
|
const std::byte* data (void) const;
|
|
|
|
const std::byte* begin (void) const;
|
|
|
|
const std::byte* end (void) const;
|
|
|
|
const std::byte* cursor (void) const;
|
2017-08-31 13:48:33 +10:00
|
|
|
|
2016-06-22 19:51:18 +10:00
|
|
|
size_t offset (const void*) const;
|
2015-11-13 17:17:37 +11:00
|
|
|
|
2018-05-18 16:51:42 +10:00
|
|
|
template <typename ValueT>
|
|
|
|
size_t
|
|
|
|
offset (ValueT const *ptr) const
|
|
|
|
{
|
|
|
|
CHECK_MOD (reinterpret_cast<uintptr_t> (ptr), sizeof (ValueT));
|
|
|
|
CHECK_MOD (reinterpret_cast<uintptr_t> (data ()), sizeof (ValueT));
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
return ptr - cruft::cast::alignment<ValueT const*> (data ());
|
2018-05-18 16:51:42 +10:00
|
|
|
}
|
|
|
|
|
2018-04-20 15:04:12 +10:00
|
|
|
template <typename T>
|
|
|
|
size_t
|
2018-08-05 14:42:02 +10:00
|
|
|
offset (cruft::view<T*> ptr) const
|
2018-04-20 15:04:12 +10:00
|
|
|
{
|
|
|
|
return offset (ptr.data ());
|
|
|
|
}
|
|
|
|
|
2015-11-13 17:17:37 +11:00
|
|
|
void reset (void);
|
|
|
|
|
|
|
|
size_t capacity (void) const;
|
2015-11-30 16:08:07 +11:00
|
|
|
size_t used (void) const;
|
2015-11-24 16:48:46 +11:00
|
|
|
size_t remain (void) const;
|
2015-11-13 17:17:37 +11:00
|
|
|
|
|
|
|
protected:
|
2018-09-22 12:40:13 +10:00
|
|
|
// The begin and end iterators should be constant but that interferes
|
|
|
|
// with move operators so we need to leave them mutable.
|
2018-09-21 17:00:56 +10:00
|
|
|
std::byte *m_begin;
|
|
|
|
std::byte *m_end;
|
2018-09-22 12:40:13 +10:00
|
|
|
|
2018-02-28 17:55:56 +11:00
|
|
|
std::byte *m_cursor;
|
2015-11-13 17:17:37 +11:00
|
|
|
};
|
2016-10-10 17:58:59 +11:00
|
|
|
}
|
2015-11-13 17:17:37 +11:00
|
|
|
|
|
|
|
#endif
|