2015-11-13 17:17:37 +11:00
|
|
|
/*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*
|
|
|
|
* Copyright 2015 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "./linear.hpp"
|
|
|
|
|
|
|
|
#include "../pointer.hpp"
|
|
|
|
#include "../debug.hpp"
|
|
|
|
|
|
|
|
using util::alloc::linear;
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
linear::linear (void *begin, void *end):
|
|
|
|
m_begin (reinterpret_cast<char*> (begin)),
|
|
|
|
m_end (reinterpret_cast<char*> (end)),
|
|
|
|
m_cursor (reinterpret_cast<char*> (begin))
|
|
|
|
{
|
2016-05-18 10:26:55 +10:00
|
|
|
CHECK_NEZ (begin);
|
|
|
|
CHECK_NEZ (end);
|
|
|
|
|
2015-11-13 17:17:37 +11:00
|
|
|
CHECK_LE (begin, end);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
void*
|
2016-10-10 20:59:26 +11:00
|
|
|
linear::allocate (size_t bytes)
|
|
|
|
{
|
|
|
|
return allocate (bytes, alignof (std::max_align_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void*
|
2015-11-13 17:17:37 +11:00
|
|
|
linear::allocate (size_t bytes, size_t alignment)
|
|
|
|
{
|
|
|
|
auto ptr = align (m_cursor, alignment);
|
|
|
|
if (ptr + bytes > m_end)
|
|
|
|
throw std::bad_alloc ();
|
|
|
|
|
|
|
|
m_cursor = ptr + bytes;
|
2016-05-18 10:26:55 +10:00
|
|
|
|
|
|
|
CHECK_NEZ (ptr);
|
2015-11-13 17:17:37 +11:00
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-10 20:59:26 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
linear::deallocate (void *ptr, size_t bytes)
|
|
|
|
{
|
|
|
|
deallocate (ptr, bytes, alignof (std::max_align_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-13 17:17:37 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
linear::deallocate (void *ptr, size_t bytes, size_t alignment)
|
|
|
|
{
|
|
|
|
(void)ptr;
|
|
|
|
(void)bytes;
|
|
|
|
(void)alignment;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-22 19:51:18 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void*
|
|
|
|
linear::base (void)
|
|
|
|
{
|
|
|
|
return m_begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-10 20:59:26 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
const void*
|
|
|
|
linear::base (void) const
|
|
|
|
{
|
|
|
|
return m_begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-22 19:51:18 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
size_t
|
|
|
|
linear::offset (const void *_ptr) const
|
|
|
|
{
|
|
|
|
auto ptr = reinterpret_cast<const char*> (_ptr);
|
|
|
|
|
|
|
|
CHECK_GE (ptr, m_begin);
|
|
|
|
return ptr - m_begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-13 17:17:37 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
void
|
|
|
|
linear::reset (void)
|
|
|
|
{
|
|
|
|
m_cursor = m_begin;
|
|
|
|
}
|
2015-11-24 16:48:46 +11:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
size_t
|
|
|
|
linear::capacity (void) const
|
|
|
|
{
|
|
|
|
return m_end - m_begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
size_t
|
2015-11-30 16:08:07 +11:00
|
|
|
linear::used (void) const
|
2015-11-24 16:48:46 +11:00
|
|
|
{
|
|
|
|
return m_cursor - m_begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
size_t
|
|
|
|
linear::remain (void) const
|
|
|
|
{
|
2015-11-30 16:08:07 +11:00
|
|
|
return capacity () - used ();
|
2015-11-24 16:48:46 +11:00
|
|
|
}
|