Compare commits

...

2 commits

Author SHA1 Message Date
Able 0ee8b7a4e4 janky error handling 2024-11-24 11:08:22 -06:00
Able 2261f36101 simply just dont inline 2024-11-24 11:04:12 -06:00

View file

@ -1,4 +1,4 @@
.{log} := @use("../lib.hb") .{log, panic} := @use("../lib.hb")
alloc_return := @use("alloc_return.hb") alloc_return := @use("alloc_return.hb")
/* the block size is 64 bytes, 64 blocks of 64 bytes. /* the block size is 64 bytes, 64 blocks of 64 bytes.
@ -13,11 +13,11 @@ BlockAlloc := struct {
return .(0, null) return .(0, null)
} }
$alloc := fn(self: Self, alloc_type: type, count: uint): alloc_return.AllocReturn { alloc := fn(self: Self, alloc_type: type, count: uint): alloc_return.AllocReturn {
offset := 1 offset := 1
a := 1 a := 1
loop { loop {
// a = self.state >> offset; // a = self.state >> offset
// check if the `offset` bit is 1, if it is move to the next offset // check if the `offset` bit is 1, if it is move to the next offset
if a == 1 { if a == 1 {
offset += 1 offset += 1
@ -26,7 +26,12 @@ BlockAlloc := struct {
// self it to 1 and return the ptr to the allocation // self it to 1 and return the ptr to the allocation
self.state |= a self.state |= a
// return ptr + offset * 64 // return ptr + offset * 64
if self.ptr != null {
return .(64, self.ptr + offset * 64) return .(64, self.ptr + offset * 64)
} else {
// panic.panic("Allocator is not inited.\0")
// return .(0, null)
}
} }
// there are only 64 blocks // there are only 64 blocks
if offset >= 64 { if offset >= 64 {
@ -35,7 +40,7 @@ BlockAlloc := struct {
} }
} }
$dealloc := fn(self: Self, ptr: ^u8, alloc_type: type, count: uint): void { dealloc := fn(self: Self, ptr: ^u8, alloc_type: type, count: uint): void {
// size := size_of(alloc_type)*count // size := size_of(alloc_type)*count
size := 64 size := 64
// get the size alligned to the nearest block // get the size alligned to the nearest block