sorta alloc support. Compiler error checkpoint
This commit is contained in:
parent
5ea3ee9fe1
commit
6f82c92c30
|
@ -1,75 +1,74 @@
|
||||||
|
.{log} := @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.
|
||||||
this will very quickly lead to exhaustion of free blocks.
|
this will very quickly lead to exhaustion of free blocks.
|
||||||
*/
|
*/
|
||||||
BlockAlloc := struct {
|
BlockAlloc := struct {
|
||||||
|
// hi
|
||||||
state: uint,
|
state: uint,
|
||||||
ptr: ?^u8,
|
ptr: ?^u8,
|
||||||
|
|
||||||
$init := fn(): Self {
|
$init := fn(): Self {
|
||||||
return .(0, null)
|
return .(0, null)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$alloc := fn(self: Self, alloc_type: type, count: uint): alloc_return.AllocReturn {
|
||||||
|
offset := 1
|
||||||
|
a := 1
|
||||||
|
loop {
|
||||||
|
// a = self.state >> offset;
|
||||||
|
// check if the `offset` bit is 1, if it is move to the next offset
|
||||||
|
if a == 1 {
|
||||||
|
offset += 1
|
||||||
|
log.info("Already Allocated\0")
|
||||||
|
} else {
|
||||||
|
// self it to 1 and return the ptr to the allocation
|
||||||
|
self.state |= a
|
||||||
|
// return ptr + offset * 64
|
||||||
|
return .(64, self.ptr + offset * 64)
|
||||||
|
}
|
||||||
|
// there are only 64 blocks
|
||||||
|
if offset >= 64 {
|
||||||
|
return .(0, null)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$dealloc := fn(self: Self, ptr: ^u8, alloc_type: type, count: uint): void {
|
||||||
|
// size := size_of(alloc_type)*count
|
||||||
|
size := 64
|
||||||
|
// get the size alligned to the nearest block
|
||||||
|
// rounded_size := nearest_block_size_rounded_up(size)
|
||||||
|
rounded_size := 64
|
||||||
|
|
||||||
|
state_bit_start := {
|
||||||
|
// Do math here to figure out what starting ptr corresponds to what bit
|
||||||
|
3
|
||||||
|
}
|
||||||
|
|
||||||
|
offset := 0
|
||||||
|
|
||||||
|
loop {
|
||||||
|
if rounded_size > 0 {
|
||||||
|
// set state_bit_start+offset to 0
|
||||||
|
|
||||||
|
// at the end move to the next one
|
||||||
|
offset += 1
|
||||||
|
} else {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
rounded_size -= 64
|
||||||
|
}
|
||||||
|
return void
|
||||||
|
}
|
||||||
|
|
||||||
|
$deinit := fn(self: Self): void {
|
||||||
|
self.state = 0
|
||||||
|
self.ptr = null
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// $alloc := fn(self: Self, alloc_type: Type, count: uint): alloc_return.AllocReturn {
|
|
||||||
// offset := 0
|
|
||||||
// a := 0
|
|
||||||
// loop {
|
|
||||||
// a = self.state << offset;
|
|
||||||
// // check if the `offset` bit is 1, if it is move to the next offset
|
|
||||||
// if a == 1 {
|
|
||||||
// offset += 1
|
|
||||||
// } else {
|
|
||||||
// // self it to 1 and return the ptr to the allocation
|
|
||||||
// self.state |= a
|
|
||||||
// return (ptr + (offset * 64))
|
|
||||||
// }
|
|
||||||
// // there are only 64 blocks
|
|
||||||
// if offset >= 64 {
|
|
||||||
// break;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// return null
|
|
||||||
// }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// request a kernel page
|
// request a kernel page
|
||||||
// ptr := memory.alloc(1)
|
// ptr := memory.alloc(1)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// $dealloc := fn(&self, ptr: ^u8, alloc_type: Type, count: uint): void {
|
|
||||||
// size := size_of(alloc_type)*count
|
|
||||||
// // get the size alligned to the nearest block
|
|
||||||
// rounded_size := nearest_block_size_rounded_up(size)
|
|
||||||
|
|
||||||
// state_bit_start := {
|
|
||||||
// // Do math here to figure out what starting ptr corresponds to what bit
|
|
||||||
// 3
|
|
||||||
// }
|
|
||||||
|
|
||||||
// offset := 0
|
|
||||||
|
|
||||||
// loop {
|
|
||||||
// if rounded_size > 0 {
|
|
||||||
// // set state_bit_start+offset to 0
|
|
||||||
|
|
||||||
// // at the end move to the next one
|
|
||||||
// offset += 1
|
|
||||||
// } else {
|
|
||||||
// break;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// rounded_size -= 64
|
|
||||||
// }
|
|
||||||
|
|
||||||
// return void
|
|
||||||
// }
|
|
||||||
|
|
||||||
// $deinit := fn(&self): void {
|
|
||||||
// self.state := 0
|
|
||||||
|
|
||||||
// }
|
|
||||||
// }
|
|
|
@ -1,8 +1,7 @@
|
||||||
alloc_return := @use("alloc_return.hb")
|
alloc_return := @use("alloc_return.hb")
|
||||||
|
|
||||||
|
|
||||||
FakeAlloc := struct {
|
FakeAlloc := struct {
|
||||||
$init := fn():Self{
|
$init := fn(): Self {
|
||||||
return .()
|
return .()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,7 +9,7 @@ FakeAlloc := struct {
|
||||||
return .(0, null)
|
return .(0, null)
|
||||||
}
|
}
|
||||||
|
|
||||||
$dealloc := fn(self: Self, ptr: ^u8, alloc_type: Type, count: uint) : void{
|
$dealloc := fn(self: Self, ptr: ^u8, alloc_type: type, count: uint): void {
|
||||||
return void
|
return void
|
||||||
}
|
}
|
||||||
// Nothing to clean up here
|
// Nothing to clean up here
|
||||||
|
@ -18,5 +17,3 @@ FakeAlloc := struct {
|
||||||
return void
|
return void
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,24 +1,27 @@
|
||||||
stn := @use("../../../libraries/stn/src/lib.hb");
|
stn := @use("../../../libraries/stn/src/lib.hb");
|
||||||
.{allocators, panic} := stn
|
.{allocators, panic, log} := stn
|
||||||
|
|
||||||
AStruct := struct {
|
AStruct := struct {
|
||||||
a_field: u8,
|
a_field: u8,
|
||||||
}
|
}
|
||||||
|
|
||||||
main := fn(): void {
|
main := fn(): void {
|
||||||
alloc := allocators.FakeAlloc.init()
|
// alloc := allocators.FakeAlloc.init()
|
||||||
astruct := alloc.alloc(AStruct, 2)
|
// astruct := alloc.alloc(AStruct, 2)
|
||||||
// if astruct.ptr != null{
|
// if astruct.ptr != null{
|
||||||
// panic.panic("FakeAlloc actually allocated.")
|
// panic.panic("FakeAlloc actually allocated.")
|
||||||
// }
|
// }
|
||||||
// alloc.dealloc(&astruct.ptr, AStruct, 2)
|
// alloc.dealloc(&astruct.ptr, AStruct, 2)
|
||||||
alloc.deinit()
|
// alloc.deinit()
|
||||||
|
|
||||||
// balloc := allocators.BlockAlloc.init()
|
balloc := allocators.BlockAlloc.init()
|
||||||
// bstruct_ptr := balloc.alloc(AStruct, 2)
|
bstruct := balloc.alloc(AStruct, 2)
|
||||||
// if bstruct_ptr == null {
|
if bstruct.ptr == null {
|
||||||
// panic("BlockAlloc actually didn't allocate.")
|
log.info("Hi\0")
|
||||||
// }
|
// panic.panic("BlockAlloc actually didn't allocate.")
|
||||||
|
} else {
|
||||||
|
log.info("Allocator functioned.\0")
|
||||||
|
}
|
||||||
// balloc.dealloc(bstruct_ptr, AStruct, 2)
|
// balloc.dealloc(bstruct_ptr, AStruct, 2)
|
||||||
// balloc.deinit()
|
// balloc.deinit()
|
||||||
return
|
return
|
||||||
|
|
|
@ -46,5 +46,5 @@ resolution = "1024x768x24"
|
||||||
# [boot.limine.ableos.modules.processes]
|
# [boot.limine.ableos.modules.processes]
|
||||||
# path = "boot:///processes.hbf"
|
# path = "boot:///processes.hbf"
|
||||||
|
|
||||||
# [boot.limine.ableos.modules.alloc_test]
|
[boot.limine.ableos.modules.alloc_test]
|
||||||
# path = "boot:///alloc_test.hbf"
|
path = "boot:///alloc_test.hbf"
|
Loading…
Reference in a new issue