2012-07-16 08:01:56 +00:00
|
|
|
/*
|
|
|
|
* \brief Allocator using bitmaps to maintain cap space
|
|
|
|
* \author Alexander Boettcher
|
|
|
|
* \date 2012-06-14
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2013-01-10 20:44:47 +00:00
|
|
|
* Copyright (C) 2012-2013 Genode Labs GmbH
|
2012-07-16 08:01:56 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
|
|
* under the terms of the GNU General Public License version 2.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__BASE__BIT_ALLOCATOR_H_
|
|
|
|
#define _INCLUDE__BASE__BIT_ALLOCATOR_H_
|
|
|
|
|
|
|
|
#include <base/bit_array.h>
|
|
|
|
|
|
|
|
namespace Genode {
|
|
|
|
|
|
|
|
template<addr_t WORDS>
|
|
|
|
class Bit_allocator
|
|
|
|
{
|
|
|
|
protected:
|
2013-01-11 22:10:21 +00:00
|
|
|
|
2013-08-27 09:14:49 +00:00
|
|
|
addr_t _next;
|
2012-07-16 08:01:56 +00:00
|
|
|
Bit_array<WORDS> _array;
|
|
|
|
|
|
|
|
void _reserve(addr_t bit_start, size_t const num_cap)
|
|
|
|
{
|
|
|
|
if (!num_cap) return;
|
|
|
|
|
|
|
|
_array.set(bit_start, num_cap);
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2013-08-27 09:14:49 +00:00
|
|
|
Bit_allocator() : _next(0) { }
|
|
|
|
|
2012-07-16 08:01:56 +00:00
|
|
|
addr_t alloc(size_t const num_log2)
|
|
|
|
{
|
|
|
|
addr_t const step = 1UL << num_log2;
|
2013-08-27 09:14:49 +00:00
|
|
|
addr_t max = ~0UL;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
/* throws exception if array is accessed outside bounds */
|
|
|
|
for (addr_t i = _next & ~(step - 1); i < max; i += step) {
|
|
|
|
if (_array.get(i, step))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
_array.set(i, step);
|
|
|
|
_next = i + step;
|
|
|
|
return i;
|
2012-07-16 08:01:56 +00:00
|
|
|
}
|
2013-08-27 09:14:49 +00:00
|
|
|
} catch (Bit_array_invalid_index_access) { }
|
|
|
|
|
|
|
|
max = _next;
|
|
|
|
_next = 0;
|
|
|
|
|
|
|
|
} while (max != 0);
|
2012-07-16 08:01:56 +00:00
|
|
|
|
|
|
|
throw Bit_array_out_of_indexes();
|
|
|
|
}
|
|
|
|
|
2013-08-27 09:14:49 +00:00
|
|
|
void free(addr_t const bit_start, size_t const num_log2)
|
2012-07-16 08:01:56 +00:00
|
|
|
{
|
|
|
|
_array.clear(bit_start, 1UL << num_log2);
|
2013-08-27 09:14:49 +00:00
|
|
|
_next = bit_start;
|
2012-07-16 08:01:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* _INCLUDE__BASE__BIT_ALLOCATOR_H_ */
|