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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
use bytemuck::{Pod, Zeroable};
use num_derive::FromPrimitive;
use std::mem::{align_of, size_of};
#[derive(Debug, Copy, Clone, PartialEq, Eq, FromPrimitive)]
pub enum TreeField {
Left = 0,
Right = 1,
Parent = 2,
Value = 3,
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, FromPrimitive)]
pub enum NodeField {
Left = 0,
Right = 1,
}
pub trait FromSlice {
fn new_from_slice(data: &mut [u8]) -> &mut Self;
}
pub trait NodeAllocatorMap<K, V> {
fn insert(&mut self, key: K, value: V) -> Option<u32>;
fn remove(&mut self, key: &K) -> Option<V>;
fn contains(&self, key: &K) -> bool;
fn size(&self) -> usize;
fn iter(&self) -> Box<dyn Iterator<Item = (&K, &V)> + '_>;
fn iter_mut(&mut self) -> Box<dyn Iterator<Item = (&K, &mut V)> + '_>;
}
pub trait ZeroCopy: Pod {
fn load_mut_bytes(data: &'_ mut [u8]) -> Option<&'_ mut Self> {
let size = std::mem::size_of::<Self>();
bytemuck::try_from_bytes_mut(&mut data[..size]).ok()
}
fn load_bytes(data: &'_ [u8]) -> Option<&'_ Self> {
let size = std::mem::size_of::<Self>();
bytemuck::try_from_bytes(&data[..size]).ok()
}
}
pub const SENTINEL: u32 = 0;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct Node<T: Copy + Clone + Pod + Zeroable + Default, const NUM_REGISTERS: usize> {
registers: [u32; NUM_REGISTERS],
value: T,
}
impl<T: Copy + Clone + Pod + Zeroable + Default, const NUM_REGISTERS: usize> Default
for Node<T, NUM_REGISTERS>
{
fn default() -> Self {
assert!(NUM_REGISTERS >= 1);
Self {
registers: [SENTINEL; NUM_REGISTERS],
value: T::default(),
}
}
}
impl<T: Copy + Clone + Pod + Zeroable + Default, const NUM_REGISTERS: usize>
Node<T, NUM_REGISTERS>
{
#[inline(always)]
pub(crate) fn get_free_list_register(&self) -> u32 {
self.registers[0]
}
#[inline(always)]
pub fn get_register(&self, r: usize) -> u32 {
self.registers[r]
}
#[inline(always)]
pub(crate) fn set_free_list_register(&mut self, v: u32) {
self.registers[0] = v;
}
#[inline(always)]
pub fn set_register(&mut self, r: usize, v: u32) {
self.registers[r] = v;
}
#[inline(always)]
pub fn set_value(&mut self, v: T) {
self.value = v;
}
#[inline(always)]
pub fn get_value_mut(&mut self) -> &mut T {
&mut self.value
}
#[inline(always)]
pub fn get_value(&self) -> &T {
&self.value
}
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct NodeAllocator<
T: Default + Copy + Clone + Pod + Zeroable,
const MAX_SIZE: usize,
const NUM_REGISTERS: usize,
> {
pub size: u64,
bump_index: u32,
free_list_head: u32,
pub nodes: [Node<T, NUM_REGISTERS>; MAX_SIZE],
}
unsafe impl<
T: Default + Copy + Clone + Pod + Zeroable,
const MAX_SIZE: usize,
const NUM_REGISTERS: usize,
> Zeroable for NodeAllocator<T, MAX_SIZE, NUM_REGISTERS>
{
}
unsafe impl<
T: Default + Copy + Clone + Pod + Zeroable,
const MAX_SIZE: usize,
const NUM_REGISTERS: usize,
> Pod for NodeAllocator<T, MAX_SIZE, NUM_REGISTERS>
{
}
impl<
T: Default + Copy + Clone + Pod + Zeroable,
const MAX_SIZE: usize,
const NUM_REGISTERS: usize,
> ZeroCopy for NodeAllocator<T, MAX_SIZE, NUM_REGISTERS>
{
}
impl<
T: Default + Copy + Clone + Pod + Zeroable,
const MAX_SIZE: usize,
const NUM_REGISTERS: usize,
> Default for NodeAllocator<T, MAX_SIZE, NUM_REGISTERS>
{
fn default() -> Self {
assert!(NUM_REGISTERS >= 1);
let na = NodeAllocator {
size: 0,
bump_index: 1,
free_list_head: 1,
nodes: [Node::<T, NUM_REGISTERS>::default(); MAX_SIZE],
};
na.assert_proper_alignemnt();
na
}
}
impl<
T: Default + Copy + Clone + Pod + Zeroable,
const MAX_SIZE: usize,
const NUM_REGISTERS: usize,
> NodeAllocator<T, MAX_SIZE, NUM_REGISTERS>
{
pub fn new() -> Self {
Self::default()
}
#[inline(always)]
fn assert_proper_alignemnt(&self) {
let reg_size = size_of::<u32>() * NUM_REGISTERS;
let self_ptr = std::slice::from_ref(self).as_ptr() as usize;
let node_ptr = std::slice::from_ref(&self.nodes).as_ptr() as usize;
let self_align = align_of::<Self>();
let t_index = node_ptr + reg_size;
let t_align = align_of::<T>();
let t_size = size_of::<T>();
assert!(
self_ptr % self_align as usize == 0,
"NodeAllocator alignment mismatch, address is {} which is not a multiple of the struct alignment ({})",
self_ptr,
self_align,
);
assert!(
t_size % t_align == 0,
"Size of T ({}) is not a multiple of the alignment of T ({})",
t_size,
t_align,
);
assert!(
t_size == 0 || t_size >= self_align,
"Size of T ({}) must be >= than the alignment of NodeAllocator ({})",
t_size,
self_align,
);
assert!(node_ptr == self_ptr + 16, "Nodes are misaligned");
assert!(t_index % t_align == 0, "First index of T is misaligned");
assert!(
(t_index + t_size + reg_size) % t_align == 0,
"Subsequent indices of T are misaligned"
);
}
pub fn initialize(&mut self) {
assert!(NUM_REGISTERS >= 1);
self.assert_proper_alignemnt();
if self.size == 0 && self.bump_index == 0 && self.free_list_head == 0 {
self.bump_index = 1;
self.free_list_head = 1;
} else {
panic!("Cannot reinitialize NodeAllocator");
}
}
#[inline(always)]
pub fn get(&self, i: u32) -> &Node<T, NUM_REGISTERS> {
&self.nodes[i as usize]
}
#[inline(always)]
pub fn get_mut(&mut self, i: u32) -> &mut Node<T, NUM_REGISTERS> {
&mut self.nodes[i as usize]
}
pub fn add_node(&mut self, node: T) -> u32 {
let i = self.free_list_head;
if self.free_list_head == self.bump_index {
if self.bump_index == MAX_SIZE as u32 {
panic!("Buffer is full, size {}", self.size);
}
self.bump_index += 1;
self.free_list_head = self.bump_index;
} else {
self.free_list_head = self.get(i).get_free_list_register();
self.get_mut(i).set_free_list_register(SENTINEL);
}
self.get_mut(i).set_value(node);
self.size += 1;
i
}
pub fn remove_node(&mut self, i: u32) -> Option<&T> {
if i == SENTINEL {
return None;
}
let free_list_head = self.free_list_head;
self.get_mut(i).set_free_list_register(free_list_head);
self.free_list_head = i;
self.size -= 1;
Some(self.get(i).get_value())
}
#[inline(always)]
pub fn disconnect(&mut self, i: u32, j: u32, r_i: u32, r_j: u32) {
if i != SENTINEL {
assert!(j == self.get_register(i, r_i), "Nodes are not connected");
self.clear_register(i, r_i);
}
if j != SENTINEL {
assert!(i == self.get_register(j, r_j), "Nodes are not connected");
self.clear_register(j, r_j);
}
}
#[inline(always)]
pub fn clear_register(&mut self, i: u32, r_i: u32) {
self.get_mut(i).set_register(r_i as usize, SENTINEL);
}
#[inline(always)]
pub fn connect(&mut self, i: u32, j: u32, r_i: u32, r_j: u32) {
if i != SENTINEL {
self.get_mut(i).set_register(r_i as usize, j);
}
if j != SENTINEL {
self.get_mut(j).set_register(r_j as usize, i);
}
}
#[inline(always)]
pub fn set_register(&mut self, i: u32, value: u32, r_i: u32) {
if i != SENTINEL {
self.get_mut(i).set_register(r_i as usize, value);
}
}
#[inline(always)]
pub fn get_register(&self, i: u32, r_i: u32) -> u32 {
self.get(i).get_register(r_i as usize)
}
}