aboutsummaryrefslogtreecommitdiff
path: root/src/mem/alloc.rs
blob: 4d02ddd7c3c5415d6993ef2a52585e390aaaa94c (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
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
//! # Allocate crate
//!
//! Provides the Global allocator and methods
//! to create special purpose allocators.
use alloc::alloc::{GlobalAlloc,Layout};
use crate::sync::NullLock;
use crate::sync::interface::Mutex;
use core::fmt::{Debug,Formatter,Result};

/// # Initialize Queue
/// - Name: Symbol name
/// - Size: Number of elements
/// - Default: Default value
/// - Type: Data Type
macro_rules! init_queue {
	($name:tt,$size:tt,$default:tt,$type:ty) => {
		init_queue!{@gen [$name,$size,$default,$type,concat!("# ", stringify!($type), " Queue Allocator")]}
	};
	(@gen [$name:tt,$size:tt,$default:tt,$type:ty,$doc:expr]) => {
		#[doc = $doc]
		#[link_section = ".data.alloc"]
		pub static $name: QueueAllocator<'static, $type, {$size+2}> = QueueAllocator::<$type, {$size+2}>{inner: NullLock::new([QueueItem{data: $default, next: None}; {$size+2}])};
	};
}

#[derive(Copy,Clone)]
/// # Queue Item
///
/// Encapsulates a data element and a pointer to
/// the next `Queue` item
pub struct QueueItem<'a, T: Sized> {
	/// # Data
	///
	/// The encapsulated data
	data: T,
	/// # Pointer to the next item
	///
	/// Stores either `None` or points
	/// to the next item.
	next: Option<*mut QueueItem<'a, T>>,
}
impl<T> QueueItem<'_,T> {
	/// # Get the inner data
	///
	/// Returns a borrow of the underlying data.
	pub fn inner(&mut self) -> &mut T {
		&mut self.data
	}
	/// # Get pointer to inner data
	pub fn ptr(&mut self) -> *mut u8 {
		self.inner() as *mut T as *mut u8
	}
}
/// # Sharing Thread Safety for QueueItem
unsafe impl<T> Send for QueueItem<'_,T> {}

impl<T: Debug> Debug for QueueItem<'_,T> {
	/// # Debug formatter for `QueueItem`
	///
	/// Output the encapsulated data
	fn fmt(&self, f: &mut Formatter<'_>) -> Result {
		write!(f, "{:?}", self.data)
	}
}

/// # Queue Allocator
///
/// Structure to store a pool of allocated data structures.
pub struct QueueAllocator<'a, T: Sized, const COUNT: usize> {
	/// # Synchronized Pool of items
	///
	/// Stores synchronization wrapper around the data pool
	pub inner: NullLock<[QueueItem<'a, T>;COUNT]>,
}
/// # Sharing Thread Safety for QueueAllocator
unsafe impl<T,const COUNT: usize> Send for QueueAllocator<'_,T,COUNT> {}

impl<'a, T: Sized,const COUNT: usize> QueueAllocator<'a, T, COUNT> {
	/// # Initialization of Fixed-Size Pool
	/// 
	/// Establishes the header and footer of the queue
	/// as the first and second elements respectively.
	/// All of the internal elements point to the next
	/// one and the final element points to `None`
	pub fn init(&self) {
		self.inner.lock(|queue| {
			for idx in 2..queue.len() {
				if idx != queue.len()-1 {
					queue[idx].next = Some(&mut queue[idx+1] as *mut QueueItem<'_, T>);
				} else {
					queue[idx].next = None;
				}
			}
			queue[0].next = Some(&mut queue[2] as *mut QueueItem<'_, T>);
			queue[1].next = Some(&mut queue[queue.len()-1] as *mut QueueItem<'_, T>);
		});
	}

	/// # Allocate Data
	///
	/// If there is a data chunk available,
	/// return it, otherwise return `None`
	#[allow(dead_code)]
	pub fn alloc(&self) -> Option<&mut QueueItem<'a,T>> {
		return self.inner.lock(|pool| {
			if let Some(entry) = pool[0].next {
				pool[0].next = unsafe { (*entry).next };
				unsafe {
					(*entry).next = None;
				}
				match pool[0].next {
					None => {
						pool[1].next = None
					}
					_ => {}
				}
				return Some(unsafe{&mut *entry as &mut QueueItem<'a,T>});
			} else {
				return None;
			}
		});
	}

	/// # Free
	///
	/// Add the item to the end of the queue.
	/// If there were no items, set it as the head.
	#[allow(dead_code)]
	pub fn free(&self, freed_item: &mut QueueItem<'a,T>) {
		self.inner.lock(|pool| {
			freed_item.next = None;
			match pool[1].next {
				None => {
					pool[0].next = Some(freed_item as *mut QueueItem<'a,T>);
				}
				Some(entry) => {
					unsafe {
						(*entry).next = Some(freed_item as *mut QueueItem<'a,T>);
					}
				}
			}
			pool[1].next = Some(freed_item as *mut QueueItem<'a,T>);
		});
	}
}

impl<T: Debug,const COUNT: usize> Debug for QueueAllocator<'_,T,COUNT> {
	/// # Debug Formatted Output
	///
	/// Output each data point in the array with
	/// its debug formatter.
	fn fmt(&self, f: &mut Formatter<'_>) -> Result {
		self.inner.lock(|queue| {
			write!(f, "{:?}", queue)
		})
	}
}





/// # u256 struct
///
/// 256 bit size field
#[derive(Copy,Clone)]
pub struct U256(u128,u128);
impl U256 {
	pub const fn new() -> Self {
		U256(0,0)
	}
}

/// # u512 struct
///
/// 512 bit size field
#[derive(Copy,Clone)]
pub struct U512(U256,U256);
impl U512 {
	pub const fn new() -> Self {
		U512(U256::new(), U256::new())
	}
}

/// # u1024 struct
///
/// 1024 bit size field
#[derive(Copy,Clone)]
pub struct U1024(U512,U512);
impl U1024 {
	pub const fn new() -> Self {
		U1024(U512::new(), U512::new())
	}
}

/// # u2048 struct
///
/// 2048 bit size field
#[derive(Copy,Clone)]
pub struct U2048(U1024,U1024);
impl U2048 {
	pub const fn new() -> Self {
		U2048(U1024::new(), U1024::new())
	}
}

/// # u4096 struct
///
/// 4096 bit size field
#[derive(Copy,Clone)]
pub struct U4096(U2048,U2048);
impl U4096 {
	pub const fn new() -> Self {
		U4096(U2048::new(), U2048::new())
	}
}

/// # Grand Allocator
///
/// The structure that uses different sized pools and allocates memory chunks
pub struct GrandAllocator { }

/// # The number of elements of each size
const GRAND_ALLOC_SIZE: usize = 64;

init_queue!(U8_GRAND_ALLOC, GRAND_ALLOC_SIZE, 0, u8);
init_queue!(U16_GRAND_ALLOC, GRAND_ALLOC_SIZE, 0, u16);
init_queue!(U32_GRAND_ALLOC, GRAND_ALLOC_SIZE, 0, u32);
init_queue!(U64_GRAND_ALLOC, GRAND_ALLOC_SIZE, 0, u64);
init_queue!(U128_GRAND_ALLOC, GRAND_ALLOC_SIZE, 0, u128);
init_queue!(U256_GRAND_ALLOC, GRAND_ALLOC_SIZE, {U256::new()}, U256);
init_queue!(U512_GRAND_ALLOC, GRAND_ALLOC_SIZE, {U512::new()}, U512);
init_queue!(U1024_GRAND_ALLOC, GRAND_ALLOC_SIZE, {U1024::new()}, U1024);
init_queue!(U2048_GRAND_ALLOC, GRAND_ALLOC_SIZE, {U2048::new()}, U2048);
init_queue!(U4096_GRAND_ALLOC, GRAND_ALLOC_SIZE, {U4096::new()}, U4096);

impl GrandAllocator {
	pub fn init(&self) {
		U8_GRAND_ALLOC.init();
		U16_GRAND_ALLOC.init();
		U32_GRAND_ALLOC.init();
		U64_GRAND_ALLOC.init();
		U128_GRAND_ALLOC.init();
		U256_GRAND_ALLOC.init();
		U512_GRAND_ALLOC.init();
		U1024_GRAND_ALLOC.init();
		U2048_GRAND_ALLOC.init();
		U4096_GRAND_ALLOC.init();
	}
}

unsafe impl GlobalAlloc for GrandAllocator {
	/// # Allocator
	///
	/// Allocate the fixed size chunks
	unsafe fn alloc(&self, layout: Layout) -> *mut u8 {
		match layout.size() {
			1 => {
				match U8_GRAND_ALLOC.alloc() {
					None => {
						panic!("No cells to allocate!");
					}
					Some(elem) => {
						return (*elem).ptr();
					}
				}
			}
			2 => {
				match U16_GRAND_ALLOC.alloc() {
					None => {
						panic!("No cells to allocate!");
					}
					Some(elem) => {
						return (*elem).ptr();
					}
				}
			}
			3..=4 => {
				match U32_GRAND_ALLOC.alloc() {
					None => {
						panic!("No cells to allocate!");
					}
					Some(elem) => {
						return (*elem).ptr();
					}
				}
			}
			5..=8 => {
				match U64_GRAND_ALLOC.alloc() {
					None => {
						panic!("No cells to allocate!");
					}
					Some(elem) => {
						return (*elem).ptr();
					}
				}
			}
			9..=16 => {
				match U128_GRAND_ALLOC.alloc() {
					None => {
						panic!("No cells to allocate!");
					}
					Some(elem) => {
						return (*elem).ptr();
					}
				}
			}
			17..=32 => {
				match U256_GRAND_ALLOC.alloc() {
					None => {
						panic!("No cells to allocate!");
					}
					Some(elem) => {
						return (*elem).ptr();
					}
				}
			}
			33..=64 => {
				match U512_GRAND_ALLOC.alloc() {
					None => {
						panic!("No cells to allocate!");
					}
					Some(elem) => {
						return (*elem).ptr();
					}
				}
			}
			65..=128 => {
				match U1024_GRAND_ALLOC.alloc() {
					None => {
						panic!("No cells to allocate!");
					}
					Some(elem) => {
						return (*elem).ptr();
					}
				}
			}
			129..=256 => {
				match U2048_GRAND_ALLOC.alloc() {
					None => {
						panic!("No cells to allocate!");
					}
					Some(elem) => {
						return (*elem).ptr();
					}
				}
			}
			257..=512 => {
				match U4096_GRAND_ALLOC.alloc() {
					None => {
						panic!("No cells to allocate!");
					}
					Some(elem) => {
						return (*elem).ptr();
					}
				}
			}
			_ => {
				panic!("No allocators for size {}!", layout.size());
			}
		}
	}

	/// # Deallocate
	///
	/// Deallocate the fixed size chunks by searching for them
	unsafe fn dealloc(&self, ptr: *mut u8, layout: Layout) {
		match layout.size() {
			1 => {
				U8_GRAND_ALLOC.inner.lock(|pool| {
					let spacing: usize = (pool[3].ptr() as usize) - (pool[2].ptr() as usize);
					let diff: usize = (ptr as usize) - (pool[2].ptr() as usize);
					let index: usize = diff/spacing;
					assert!(index < GRAND_ALLOC_SIZE, "{} is out of the allocation bounds ({})", index, GRAND_ALLOC_SIZE);
					assert_eq!(diff % spacing, 0, "{} is not aligned with the spacings and so it must not have been allocated by the Grand Allocator", diff % spacing);
					U8_GRAND_ALLOC.free(&mut pool[index]);
				});
			}
			2 => {
				U16_GRAND_ALLOC.inner.lock(|pool| {
					let spacing: usize = (pool[3].ptr() as usize) - (pool[2].ptr() as usize);
					let diff: usize = (ptr as usize) - (pool[2].ptr() as usize);
					let index: usize = diff/spacing;
					assert!(index < GRAND_ALLOC_SIZE, "{} is out of the allocation bounds ({})", index, GRAND_ALLOC_SIZE);
					assert_eq!(diff % spacing, 0, "{} is not aligned with the spacings and so it must not have been allocated by the Grand Allocator", diff % spacing);
					U16_GRAND_ALLOC.free(&mut pool[index]);
				});
			}
			3..=4 => {
				U32_GRAND_ALLOC.inner.lock(|pool| {
					let spacing: usize = (pool[3].ptr() as usize) - (pool[2].ptr() as usize);
					let diff: usize = (ptr as usize) - (pool[2].ptr() as usize);
					let index: usize = diff/spacing;
					assert!(index < GRAND_ALLOC_SIZE, "{} is out of the allocation bounds ({})", index, GRAND_ALLOC_SIZE);
					assert_eq!(diff % spacing, 0, "{} is not aligned with the spacings and so it must not have been allocated by the Grand Allocator", diff % spacing);
					U32_GRAND_ALLOC.free(&mut pool[index]);
				});
			}
			5..=8 => {
				U64_GRAND_ALLOC.inner.lock(|pool| {
					let spacing: usize = (pool[3].ptr() as usize) - (pool[2].ptr() as usize);
					let diff: usize = (ptr as usize) - (pool[2].ptr() as usize);
					let index: usize = diff/spacing;
					assert!(index < GRAND_ALLOC_SIZE, "{} is out of the allocation bounds ({})", index, GRAND_ALLOC_SIZE);
					assert_eq!(diff % spacing, 0, "{} is not aligned with the spacings and so it must not have been allocated by the Grand Allocator", diff % spacing);
					U64_GRAND_ALLOC.free(&mut pool[index]);
				});
			}
			9..=16 => {
				U128_GRAND_ALLOC.inner.lock(|pool| {
					let spacing: usize = (pool[3].ptr() as usize) - (pool[2].ptr() as usize);
					let diff: usize = (ptr as usize) - (pool[2].ptr() as usize);
					let index: usize = diff/spacing;
					assert!(index < GRAND_ALLOC_SIZE, "{} is out of the allocation bounds ({})", index, GRAND_ALLOC_SIZE);
					assert_eq!(diff % spacing, 0, "{} is not aligned with the spacings and so it must not have been allocated by the Grand Allocator", diff % spacing);
					U128_GRAND_ALLOC.free(&mut pool[index]);
				});
			}
			17..=32 => {
				U256_GRAND_ALLOC.inner.lock(|pool| {
					let spacing: usize = (pool[3].ptr() as usize) - (pool[2].ptr() as usize);
					let diff: usize = (ptr as usize) - (pool[2].ptr() as usize);
					let index: usize = diff/spacing;
					assert!(index < GRAND_ALLOC_SIZE, "{} is out of the allocation bounds ({})", index, GRAND_ALLOC_SIZE);
					assert_eq!(diff % spacing, 0, "{} is not aligned with the spacings and so it must not have been allocated by the Grand Allocator", diff % spacing);
					U256_GRAND_ALLOC.free(&mut pool[index]);
				});
			}
			33..=64 => {
				U512_GRAND_ALLOC.inner.lock(|pool| {
					let spacing: usize = (pool[3].ptr() as usize) - (pool[2].ptr() as usize);
					let diff: usize = (ptr as usize) - (pool[2].ptr() as usize);
					let index: usize = diff/spacing;
					assert!(index < GRAND_ALLOC_SIZE, "{} is out of the allocation bounds ({})", index, GRAND_ALLOC_SIZE);
					assert_eq!(diff % spacing, 0, "{} is not aligned with the spacings and so it must not have been allocated by the Grand Allocator", diff % spacing);
					U512_GRAND_ALLOC.free(&mut pool[index]);
				});
			}
			65..=128 => {
				U1024_GRAND_ALLOC.inner.lock(|pool| {
					let spacing: usize = (pool[3].ptr() as usize) - (pool[2].ptr() as usize);
					let diff: usize = (ptr as usize) - (pool[2].ptr() as usize);
					let index: usize = diff/spacing;
					assert!(index < GRAND_ALLOC_SIZE, "{} is out of the allocation bounds ({})", index, GRAND_ALLOC_SIZE);
					assert_eq!(diff % spacing, 0, "{} is not aligned with the spacings and so it must not have been allocated by the Grand Allocator", diff % spacing);
					U1024_GRAND_ALLOC.free(&mut pool[index]);
				});
			}
			129..=256 => {
				U2048_GRAND_ALLOC.inner.lock(|pool| {
					let spacing: usize = (pool[3].ptr() as usize) - (pool[2].ptr() as usize);
					let diff: usize = (ptr as usize) - (pool[2].ptr() as usize);
					let index: usize = diff/spacing;
					assert!(index < GRAND_ALLOC_SIZE, "{} is out of the allocation bounds ({})", index, GRAND_ALLOC_SIZE);
					assert_eq!(diff % spacing, 0, "{} is not aligned with the spacings and so it must not have been allocated by the Grand Allocator", diff % spacing);
					U2048_GRAND_ALLOC.free(&mut pool[index]);
				});
			}
			257..=512 => {
				U4096_GRAND_ALLOC.inner.lock(|pool| {
					let spacing: usize = (pool[3].ptr() as usize) - (pool[2].ptr() as usize);
					let diff: usize = (ptr as usize) - (pool[2].ptr() as usize);
					let index: usize = diff/spacing;
					assert!(index < GRAND_ALLOC_SIZE, "{} is out of the allocation bounds ({})", index, GRAND_ALLOC_SIZE);
					assert_eq!(diff % spacing, 0, "{} is not aligned with the spacings and so it must not have been allocated by the Grand Allocator", diff % spacing);
					U4096_GRAND_ALLOC.free(&mut pool[index]);
				});
			}
			_ => {
				panic!("No deallocators for size {}!", layout.size());
			}
		}
	}
}

/// # Grand Allocator
///
/// The allocator of allocators. It hands out fixed sized memory chunks.
#[global_allocator]
pub static ALLOCATOR: GrandAllocator = GrandAllocator{};