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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
use drone_config::Config;
use drone_macros_core::parse_error;
use proc_macro::TokenStream;
use proc_macro2::Span;
use quote::quote;
use syn::{
parse::{Parse, ParseStream, Result},
parse_macro_input, Attribute, Ident, LitInt, Token, Visibility,
};
struct Input {
heap: Heap,
}
struct Heap {
attrs: Vec<Attribute>,
vis: Visibility,
ident: Ident,
}
impl Parse for Input {
fn parse(input: ParseStream<'_>) -> Result<Self> {
let mut heap = None;
while !input.is_empty() {
let attrs = input.call(Attribute::parse_outer)?;
let ident = input.parse::<Ident>()?;
input.parse::<Token![=>]>()?;
if ident == "heap" {
if heap.is_none() {
heap = Some(Heap::parse(input, attrs)?);
} else {
return Err(input.error("multiple `heap` specifications"));
}
} else {
return Err(input.error(format!("unknown key: `{}`", ident)));
}
if !input.is_empty() {
input.parse::<Token![;]>()?;
}
}
Ok(Self { heap: heap.ok_or_else(|| input.error("missing `heap` specification"))? })
}
}
impl Heap {
fn parse(input: ParseStream<'_>, attrs: Vec<Attribute>) -> Result<Self> {
let vis = input.parse()?;
let ident = input.parse()?;
Ok(Self { attrs, vis, ident })
}
}
#[allow(clippy::too_many_lines)]
pub fn proc_macro(input: TokenStream) -> TokenStream {
let Input { heap } = parse_macro_input!(input);
let Heap { attrs: heap_attrs, vis: heap_vis, ident: heap_ident } = heap;
let config = match Config::read_from_cargo_manifest_dir() {
Ok(config) => config,
Err(err) => parse_error!("{}: {}", drone_config::CONFIG_NAME, err),
};
let mut pools = config.heap.pools;
pools.sort_by_key(|pool| pool.block);
let mut pools_tokens = Vec::new();
let mut pointer = config.memory.ram.origin + config.memory.ram.size - config.heap.size;
for pool in &pools {
let block = LitInt::new(&pool.block.to_string(), Span::call_site());
let capacity = LitInt::new(&pool.capacity.to_string(), Span::call_site());
let address = LitInt::new(&pointer.to_string(), Span::call_site());
pools_tokens.push(quote! {
::drone_core::heap::Pool::new(#address, #block, #capacity)
});
pointer += pool.block * pool.capacity;
}
let pools_len = pools.len();
let expanded = quote! {
#(#heap_attrs)*
#heap_vis struct #heap_ident {
pools: [::drone_core::heap::Pool; #pools_len],
}
impl #heap_ident {
pub const fn new() -> Self {
Self {
pools: [#(#pools_tokens),*],
}
}
}
impl ::drone_core::heap::Allocator for #heap_ident {
const POOL_COUNT: usize = #pools_len;
#[inline]
unsafe fn get_pool_unchecked<I>(&self, index: I) -> &I::Output
where
I: ::core::slice::SliceIndex<[::drone_core::heap::Pool]>,
{
self.pools.get_unchecked(index)
}
}
unsafe impl ::core::alloc::AllocRef for #heap_ident {
fn alloc(
&self,
layout: ::core::alloc::Layout,
) -> ::core::result::Result<
::core::ptr::NonNull<[u8]>,
::core::alloc::AllocError,
> {
::drone_core::heap::alloc(self, layout)
}
fn alloc_zeroed(
&self,
layout: ::core::alloc::Layout,
) -> ::core::result::Result<
::core::ptr::NonNull<[u8]>,
::core::alloc::AllocError,
> {
::drone_core::heap::alloc_zeroed(self, layout)
}
unsafe fn dealloc(
&self,
ptr: ::core::ptr::NonNull<u8>,
layout: ::core::alloc::Layout,
) {
::drone_core::heap::dealloc(self, ptr, layout)
}
unsafe fn grow(
&self,
ptr: ::core::ptr::NonNull<u8>,
old_layout: ::core::alloc::Layout,
new_layout: ::core::alloc::Layout,
) -> ::core::result::Result<
::core::ptr::NonNull<[u8]>,
::core::alloc::AllocError,
> {
::drone_core::heap::grow(self, ptr, old_layout, new_layout)
}
unsafe fn grow_zeroed(
&self,
ptr: ::core::ptr::NonNull<u8>,
old_layout: ::core::alloc::Layout,
new_layout: ::core::alloc::Layout,
) -> ::core::result::Result<
::core::ptr::NonNull<[u8]>,
::core::alloc::AllocError,
> {
::drone_core::heap::grow_zeroed(self, ptr, old_layout, new_layout)
}
unsafe fn shrink(
&self,
ptr: ::core::ptr::NonNull<u8>,
old_layout: ::core::alloc::Layout,
new_layout: ::core::alloc::Layout,
) -> ::core::result::Result<
::core::ptr::NonNull<[u8]>,
::core::alloc::AllocError,
> {
::drone_core::heap::shrink(self, ptr, old_layout, new_layout)
}
}
unsafe impl ::core::alloc::GlobalAlloc for #heap_ident {
unsafe fn alloc(&self, layout: ::core::alloc::Layout) -> *mut u8 {
::drone_core::heap::alloc(self, layout)
.map(|ptr| ptr.as_mut_ptr())
.unwrap_or(::core::ptr::null_mut())
}
unsafe fn dealloc(&self, ptr: *mut u8, layout: ::core::alloc::Layout) {
::drone_core::heap::dealloc(
self,
::core::ptr::NonNull::new_unchecked(ptr),
layout,
)
}
}
};
expanded.into()
}