blob: c8264bd1906eb677bf87b572cfe1a56fd0175828 (
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
|
/*
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include "Range.h"
#include <AK/Vector.h>
namespace UserspaceEmulator {
class RangeAllocator {
public:
RangeAllocator();
void initialize_with_range(VirtualAddress, size_t);
Optional<Range> allocate_anywhere(size_t, size_t alignment = PAGE_SIZE);
Optional<Range> allocate_specific(VirtualAddress, size_t);
Optional<Range> allocate_randomized(size_t, size_t alignment);
void deallocate(const Range&);
void dump() const;
bool contains(const Range& range) const { return m_total_range.contains(range); }
private:
void carve_at_index(int, const Range&);
Vector<Range> m_available_ranges;
Range m_total_range;
};
}
|