blob: 0c2a7759cba07543b9639b07cc5de9b3cb87fa06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#pragma once
#include <Kernel/LinearAddress.h>
#include <AK/Vector.h>
class Range {
friend class RangeAllocator;
public:
Range() { }
Range(LinearAddress base, size_t size)
: m_base(base)
, m_size(size)
{
}
LinearAddress base() const { return m_base; }
size_t size() const { return m_size; }
bool is_valid() const { return m_base.is_null(); }
LinearAddress end() const { return m_base.offset(m_size); }
bool operator==(const Range& other) const
{
return m_base == other.m_base && m_size == other.m_size;
}
bool contains(LinearAddress base, size_t size) const
{
return base >= m_base && base.offset(size) <= end();
}
bool contains(const Range& other) const
{
return contains(other.base(), other.size());
}
Vector<Range, 2> carve(const Range&);
private:
LinearAddress m_base;
size_t m_size { 0 };
};
class RangeAllocator {
public:
RangeAllocator(LinearAddress, size_t);
~RangeAllocator();
Range allocate_anywhere(size_t);
Range allocate_specific(LinearAddress, size_t);
void deallocate(Range);
void dump() const;
private:
void carve_at_index(int, const Range&);
Vector<Range> m_available_ranges;
};
|