libfringe/src/context.rs

40 lines
882 B
Rust
Raw Normal View History

2015-04-16 18:08:44 +08:00
// Copyright (c) 2015, edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
use core::prelude::*;
use core::marker::PhantomData;
use arch::Registers;
2015-04-16 04:26:51 +08:00
use stack;
use debug::StackId;
2014-12-24 13:12:39 +08:00
pub struct Context<'a, Stack: stack::Stack> {
2014-12-23 11:24:40 +08:00
regs: Registers,
_stack_id: StackId,
stack: Stack,
_ref: PhantomData<&'a ()>
2014-12-23 11:24:40 +08:00
}
impl<'a, Stack> Context<'a, Stack> where Stack: stack::Stack {
#[inline]
pub unsafe fn new<F>(mut stack: Stack, f: F) -> Context<'a, Stack>
where F: FnOnce() + Send + 'a {
let stack_id = StackId::register(&mut stack);
let regs = Registers::new(&mut stack, f);
2014-12-23 11:24:40 +08:00
Context {
regs: regs,
_stack_id: stack_id,
stack: stack,
_ref: PhantomData
2014-12-23 11:24:40 +08:00
}
}
#[inline(always)]
pub unsafe fn swap(&mut self) {
self.regs.swap()
2014-12-23 11:24:40 +08:00
}
2015-04-16 09:54:56 +08:00
2015-04-16 18:43:09 +08:00
#[inline]
2015-04-16 09:54:56 +08:00
pub unsafe fn destroy(self) -> Stack {
self.stack
}
2014-12-23 11:24:40 +08:00
}