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
#![no_std]
use core::alloc::{GlobalAlloc, Layout};

#[derive(Copy, Clone)]
pub struct Allocator;

static mut START:usize = 0;

unsafe impl GlobalAlloc for Allocator {
    unsafe fn alloc(&self, layout: Layout) -> *mut u8 {
        self.mem_malloc(layout.size())
    }
    unsafe fn dealloc(&self, ptr: *mut u8, _layout: Layout) {
        self.mem_free(ptr as usize)
    }
}

impl Allocator {
    #[inline]
    unsafe fn mem_malloc(&self, size: usize) -> *mut u8 {
        let p = START;
        START += size;
        return p as *mut u8;
    }

    #[inline]
    unsafe fn mem_free(&self, _loc: usize) {
        // TODO
    }
}