2013-02-03 20:15:43 -06:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-03-12 02:48:41 -05:00
|
|
|
use option::*;
|
2013-02-03 20:15:43 -06:00
|
|
|
use super::stack::StackSegment;
|
|
|
|
use libc::c_void;
|
|
|
|
use cast::{transmute, transmute_mut_unsafe,
|
|
|
|
transmute_region, transmute_mut_region};
|
|
|
|
|
|
|
|
// XXX: Registers is boxed so that it is 16-byte aligned, for storing
|
|
|
|
// SSE regs. It would be marginally better not to do this. In C++ we
|
|
|
|
// use an attribute on a struct.
|
2013-03-12 02:48:41 -05:00
|
|
|
// XXX: It would be nice to define regs as `~Option<Registers>` since
|
|
|
|
// the registers are sometimes empty, but the discriminant would
|
|
|
|
// then misalign the regs again.
|
|
|
|
pub struct Context {
|
|
|
|
/// The context entry point, saved here for later destruction
|
|
|
|
start: Option<~~fn()>,
|
|
|
|
/// Hold the registers while the task or scheduler is suspended
|
|
|
|
regs: ~Registers
|
|
|
|
}
|
2013-02-03 20:15:43 -06:00
|
|
|
|
|
|
|
pub impl Context {
|
2013-03-21 21:07:54 -05:00
|
|
|
fn empty() -> Context {
|
2013-03-12 02:48:41 -05:00
|
|
|
Context {
|
|
|
|
start: None,
|
|
|
|
regs: new_regs()
|
|
|
|
}
|
2013-02-03 20:15:43 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a new context that will resume execution by running ~fn()
|
2013-03-24 17:37:59 -05:00
|
|
|
fn new(start: ~fn(), stack: &mut StackSegment) -> Context {
|
2013-03-12 02:48:41 -05:00
|
|
|
// XXX: Putting main into a ~ so it's a thin pointer and can
|
|
|
|
// be passed to the spawn function. Another unfortunate
|
|
|
|
// allocation
|
|
|
|
let start = ~start;
|
2013-02-03 20:15:43 -06:00
|
|
|
|
|
|
|
// The C-ABI function that is the task entry point
|
|
|
|
extern fn task_start_wrapper(f: &~fn()) { (*f)() }
|
|
|
|
|
|
|
|
let fp: *c_void = task_start_wrapper as *c_void;
|
|
|
|
let argp: *c_void = unsafe { transmute::<&~fn(), *c_void>(&*start) };
|
|
|
|
let sp: *uint = stack.end();
|
|
|
|
let sp: *mut uint = unsafe { transmute_mut_unsafe(sp) };
|
|
|
|
|
|
|
|
// Save and then immediately load the current context,
|
|
|
|
// which we will then modify to call the given function when restored
|
|
|
|
let mut regs = new_regs();
|
|
|
|
unsafe {
|
2013-03-13 19:58:23 -05:00
|
|
|
swap_registers(transmute_mut_region(&mut *regs), transmute_region(&*regs))
|
2013-02-03 20:15:43 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
initialize_call_frame(&mut *regs, fp, argp, sp);
|
|
|
|
|
2013-03-12 02:48:41 -05:00
|
|
|
return Context {
|
|
|
|
start: Some(start),
|
|
|
|
regs: regs
|
|
|
|
}
|
2013-02-03 20:15:43 -06:00
|
|
|
}
|
|
|
|
|
2013-03-12 02:48:41 -05:00
|
|
|
/* Switch contexts
|
|
|
|
|
|
|
|
Suspend the current execution context and resume another by
|
|
|
|
saving the registers values of the executing thread to a Context
|
|
|
|
then loading the registers from a previously saved Context.
|
|
|
|
*/
|
2013-03-21 21:07:54 -05:00
|
|
|
fn swap(out_context: &mut Context, in_context: &Context) {
|
2013-02-03 20:15:43 -06:00
|
|
|
let out_regs: &mut Registers = match out_context {
|
2013-03-12 02:48:41 -05:00
|
|
|
&Context { regs: ~ref mut r, _ } => r
|
2013-02-03 20:15:43 -06:00
|
|
|
};
|
|
|
|
let in_regs: &Registers = match in_context {
|
2013-03-12 02:48:41 -05:00
|
|
|
&Context { regs: ~ref r, _ } => r
|
2013-02-03 20:15:43 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
unsafe { swap_registers(out_regs, in_regs) };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extern {
|
|
|
|
fn swap_registers(out_regs: *mut Registers, in_regs: *Registers);
|
|
|
|
}
|
|
|
|
|
2013-03-12 01:17:40 -05:00
|
|
|
#[cfg(target_arch = "x86")]
|
|
|
|
struct Registers {
|
|
|
|
eax: u32, ebx: u32, ecx: u32, edx: u32,
|
|
|
|
ebp: u32, esi: u32, edi: u32, esp: u32,
|
|
|
|
cs: u16, ds: u16, ss: u16, es: u16, fs: u16, gs: u16,
|
|
|
|
eflags: u32, eip: u32
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_arch = "x86")]
|
|
|
|
fn new_regs() -> ~Registers {
|
|
|
|
~Registers {
|
|
|
|
eax: 0, ebx: 0, ecx: 0, edx: 0,
|
|
|
|
ebp: 0, esi: 0, edi: 0, esp: 0,
|
|
|
|
cs: 0, ds: 0, ss: 0, es: 0, fs: 0, gs: 0,
|
|
|
|
eflags: 0, eip: 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_arch = "x86")]
|
2013-03-13 19:58:23 -05:00
|
|
|
fn initialize_call_frame(regs: &mut Registers, fptr: *c_void, arg: *c_void, sp: *mut uint) {
|
2013-03-12 01:17:40 -05:00
|
|
|
|
|
|
|
let sp = align_down(sp);
|
2013-03-12 02:48:41 -05:00
|
|
|
let sp = mut_offset(sp, -4);
|
2013-03-12 01:17:40 -05:00
|
|
|
|
2013-04-27 04:07:32 -05:00
|
|
|
unsafe { *sp = arg as uint };
|
2013-03-12 01:17:40 -05:00
|
|
|
let sp = mut_offset(sp, -1);
|
2013-04-27 04:07:32 -05:00
|
|
|
unsafe { *sp = 0 }; // The final return address
|
2013-03-12 01:17:40 -05:00
|
|
|
|
|
|
|
regs.esp = sp as u32;
|
|
|
|
regs.eip = fptr as u32;
|
|
|
|
|
|
|
|
// Last base pointer on the stack is 0
|
|
|
|
regs.ebp = 0;
|
|
|
|
}
|
|
|
|
|
2013-02-03 20:15:43 -06:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
2013-03-22 20:52:04 -05:00
|
|
|
type Registers = [uint, ..22];
|
2013-02-03 20:15:43 -06:00
|
|
|
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
2013-03-27 15:53:03 -05:00
|
|
|
fn new_regs() -> ~Registers { ~([0, .. 22]) }
|
2013-02-03 20:15:43 -06:00
|
|
|
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
2013-03-13 19:58:23 -05:00
|
|
|
fn initialize_call_frame(regs: &mut Registers, fptr: *c_void, arg: *c_void, sp: *mut uint) {
|
2013-02-03 20:15:43 -06:00
|
|
|
|
|
|
|
// Redefinitions from regs.h
|
2013-03-22 16:00:15 -05:00
|
|
|
static RUSTRT_ARG0: uint = 3;
|
|
|
|
static RUSTRT_RSP: uint = 1;
|
|
|
|
static RUSTRT_IP: uint = 8;
|
|
|
|
static RUSTRT_RBP: uint = 2;
|
2013-02-03 20:15:43 -06:00
|
|
|
|
|
|
|
let sp = align_down(sp);
|
|
|
|
let sp = mut_offset(sp, -1);
|
|
|
|
|
|
|
|
// The final return address. 0 indicates the bottom of the stack
|
|
|
|
unsafe { *sp = 0; }
|
|
|
|
|
|
|
|
rtdebug!("creating call frame");
|
|
|
|
rtdebug!("fptr %x", fptr as uint);
|
|
|
|
rtdebug!("arg %x", arg as uint);
|
|
|
|
rtdebug!("sp %x", sp as uint);
|
|
|
|
|
|
|
|
regs[RUSTRT_ARG0] = arg as uint;
|
|
|
|
regs[RUSTRT_RSP] = sp as uint;
|
|
|
|
regs[RUSTRT_IP] = fptr as uint;
|
|
|
|
|
|
|
|
// Last base pointer on the stack should be 0
|
|
|
|
regs[RUSTRT_RBP] = 0;
|
|
|
|
}
|
|
|
|
|
2013-03-12 01:17:40 -05:00
|
|
|
#[cfg(target_arch = "arm")]
|
2013-03-22 20:52:04 -05:00
|
|
|
type Registers = [uint, ..32];
|
2013-02-03 20:15:43 -06:00
|
|
|
|
2013-03-12 01:17:40 -05:00
|
|
|
#[cfg(target_arch = "arm")]
|
2013-03-29 01:46:13 -05:00
|
|
|
fn new_regs() -> ~Registers { ~([0, .. 32]) }
|
2013-02-03 20:15:43 -06:00
|
|
|
|
2013-03-12 01:17:40 -05:00
|
|
|
#[cfg(target_arch = "arm")]
|
2013-03-13 19:58:23 -05:00
|
|
|
fn initialize_call_frame(regs: &mut Registers, fptr: *c_void, arg: *c_void, sp: *mut uint) {
|
2013-03-12 01:17:40 -05:00
|
|
|
let sp = mut_offset(sp, -1);
|
2013-02-03 20:15:43 -06:00
|
|
|
|
2013-03-12 01:17:40 -05:00
|
|
|
// The final return address. 0 indicates the bottom of the stack
|
|
|
|
unsafe { *sp = 0; }
|
2013-02-03 20:15:43 -06:00
|
|
|
|
2013-03-12 01:17:40 -05:00
|
|
|
regs[0] = arg as uint; // r0
|
|
|
|
regs[13] = sp as uint; // #53 sp, r13
|
|
|
|
regs[14] = fptr as uint; // #60 pc, r15 --> lr
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_arch = "mips")]
|
2013-03-22 20:52:04 -05:00
|
|
|
type Registers = [uint, ..32];
|
2013-03-12 01:17:40 -05:00
|
|
|
|
|
|
|
#[cfg(target_arch = "mips")]
|
2013-03-29 01:46:13 -05:00
|
|
|
fn new_regs() -> ~Registers { ~([0, .. 32]) }
|
2013-03-12 01:17:40 -05:00
|
|
|
|
|
|
|
#[cfg(target_arch = "mips")]
|
2013-03-13 19:58:23 -05:00
|
|
|
fn initialize_call_frame(regs: &mut Registers, fptr: *c_void, arg: *c_void, sp: *mut uint) {
|
2013-02-03 20:15:43 -06:00
|
|
|
let sp = mut_offset(sp, -1);
|
|
|
|
|
2013-03-12 01:17:40 -05:00
|
|
|
// The final return address. 0 indicates the bottom of the stack
|
|
|
|
unsafe { *sp = 0; }
|
2013-02-03 20:15:43 -06:00
|
|
|
|
2013-03-12 01:17:40 -05:00
|
|
|
regs[4] = arg as uint;
|
|
|
|
regs[29] = sp as uint;
|
2013-03-19 00:34:12 -05:00
|
|
|
regs[25] = fptr as uint;
|
2013-03-12 01:17:40 -05:00
|
|
|
regs[31] = fptr as uint;
|
2013-02-03 20:15:43 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn align_down(sp: *mut uint) -> *mut uint {
|
|
|
|
unsafe {
|
2013-04-27 04:07:32 -05:00
|
|
|
let sp: uint = transmute(sp);
|
2013-02-03 20:15:43 -06:00
|
|
|
let sp = sp & !(16 - 1);
|
|
|
|
transmute::<uint, *mut uint>(sp)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX: ptr::offset is positive ints only
|
|
|
|
#[inline(always)]
|
2013-03-21 23:20:48 -05:00
|
|
|
pub fn mut_offset<T>(ptr: *mut T, count: int) -> *mut T {
|
2013-02-03 20:15:43 -06:00
|
|
|
use core::sys::size_of;
|
2013-04-09 00:31:23 -05:00
|
|
|
(ptr as int + count * (size_of::<T>() as int)) as *mut T
|
2013-02-03 20:15:43 -06:00
|
|
|
}
|