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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
use core::{fmt, marker::PhantomData};
use super::{cfg, raw_cfg, Cfg};
use crate::utils::Init;
#[doc = include_str!("../common.md")]
pub struct Hunk<System: cfg::KernelStatic> {
start: usize,
_phantom: PhantomData<System>,
}
impl<System: cfg::KernelStatic> Init for Hunk<System> {
const INIT: Self = Self::from_offset(0);
}
impl<System: cfg::KernelStatic> fmt::Debug for Hunk<System> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Hunk({:p})", self.as_ptr())
}
}
impl<System: cfg::KernelStatic> Clone for Hunk<System> {
#[inline]
fn clone(&self) -> Self {
*self
}
}
impl<System: cfg::KernelStatic> Copy for Hunk<System> {}
impl<System: cfg::KernelStatic> Hunk<System> {
pub const fn define() -> HunkDefiner<System> {
HunkDefiner::new()
}
#[doc(hidden)]
#[inline]
pub const fn from_offset(start: usize) -> Self {
Self {
start,
_phantom: PhantomData,
}
}
#[inline]
pub const fn offset(self) -> usize {
self.start
}
}
impl<System: cfg::KernelStatic> Hunk<System> {
#[inline]
pub fn as_ptr(self) -> *mut u8 {
System::cfg_hunk_pool_ptr().wrapping_add(self.start)
}
}
#[must_use = "must call `finish()` to complete definition"]
pub struct HunkDefiner<System> {
_phantom: PhantomData<System>,
len: usize,
align: usize,
}
impl<System: cfg::KernelStatic> HunkDefiner<System> {
pub const fn new() -> Self {
Self {
_phantom: PhantomData,
len: 0,
align: 1,
}
}
pub const fn len(self, len: usize) -> Self {
Self { len, ..self }
}
pub const fn align(self, align: usize) -> Self {
Self { align, ..self }
}
}
impl<System: cfg::KernelStatic> HunkDefiner<System> {
pub const fn finish<C: raw_cfg::CfgBase>(self, cfg: &mut Cfg<C>) -> Hunk<System> {
let Self { align, len, .. } = self;
cfg.hunk_pool_len = (cfg.hunk_pool_len + align - 1) / align * align;
let start = cfg.hunk_pool_len;
cfg.hunk_pool_len += len;
if align > cfg.hunk_pool_align {
cfg.hunk_pool_align = align;
}
Hunk::from_offset(start)
}
}