parent
81ff6f13e5
commit
95ab3a2f3b
@ -1 +1 @@
|
||||
Subproject commit 48c7d74041c38e4f230df02075ad7519c1bf816d
|
||||
Subproject commit 08d4a2e96399cef5985a85a035e1ac222f8d5bef
|
@ -1,58 +0,0 @@
|
||||
use ucore_memory::*;
|
||||
use ucore_memory::paging::PageTable;
|
||||
use ucore_memory::memory_set::Stack;
|
||||
use memory::{alloc_frame, active_table};
|
||||
|
||||
// TODO: use BitAllocator & alloc fixed size stack
|
||||
pub struct StackAllocator {
|
||||
range: PageRange,
|
||||
}
|
||||
|
||||
impl StackAllocator {
|
||||
pub fn new(page_range: PageRange) -> StackAllocator {
|
||||
StackAllocator { range: page_range }
|
||||
}
|
||||
}
|
||||
|
||||
impl StackAllocator {
|
||||
pub fn alloc_stack(&mut self, size_in_pages: usize) -> Option<Stack> {
|
||||
if size_in_pages == 0 {
|
||||
return None; /* a zero sized stack makes no sense */
|
||||
}
|
||||
|
||||
// clone the range, since we only want to change it on success
|
||||
let mut range = self.range.clone();
|
||||
|
||||
// try to allocate the stack pages and a guard page
|
||||
let guard_page = range.next();
|
||||
let stack_start = range.next();
|
||||
let stack_end = if size_in_pages == 1 {
|
||||
stack_start
|
||||
} else {
|
||||
// choose the (size_in_pages-2)th element, since index
|
||||
// starts at 0 and we already allocated the start page
|
||||
range.nth(size_in_pages - 2)
|
||||
};
|
||||
|
||||
match (guard_page, stack_start, stack_end) {
|
||||
(Some(_), Some(start), Some(end)) => {
|
||||
// success! write back updated range
|
||||
self.range = range;
|
||||
|
||||
// map stack pages to physical frames
|
||||
for page in Page::range_of(start.start_address(), end.start_address() + PAGE_SIZE) {
|
||||
let frame = alloc_frame().unwrap();
|
||||
active_table().map(page.start_address(), frame);
|
||||
}
|
||||
|
||||
// create a new stack
|
||||
let top_of_stack = end.start_address() + PAGE_SIZE;
|
||||
Some(Stack {
|
||||
top: top_of_stack,
|
||||
bottom: start.start_address(),
|
||||
})
|
||||
}
|
||||
_ => None, /* not enough pages */
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue