This extracts everything related to green scheduling from libstd and introduces a new libgreen crate. This mostly involves deleting most of std::rt and moving it to libgreen. Along with the movement of code, this commit rearchitects many functions in the scheduler in order to adapt to the fact that Local::take now *only* works on a Task, not a scheduler. This mostly just involved threading the current green task through in a few locations, but there were one or two spots where things got hairy. There are a few repercussions of this commit: * tube/rc have been removed (the runtime implementation of rc) * There is no longer a "single threaded" spawning mode for tasks. This is now encompassed by 1:1 scheduling + communication. Convenience methods have been introduced that are specific to libgreen to assist in the spawning of pools of schedulers.
81 lines
2.6 KiB
Rust
81 lines
2.6 KiB
Rust
// Copyright 2012 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.
|
|
|
|
//! Runtime calls emitted by the compiler.
|
|
|
|
use c_str::ToCStr;
|
|
use libc::{c_char, size_t, uintptr_t};
|
|
use rt::borrowck;
|
|
|
|
#[cold]
|
|
#[lang="fail_"]
|
|
pub fn fail_(expr: *c_char, file: *c_char, line: size_t) -> ! {
|
|
::rt::begin_unwind_raw(expr, file, line);
|
|
}
|
|
|
|
#[cold]
|
|
#[lang="fail_bounds_check"]
|
|
pub fn fail_bounds_check(file: *c_char, line: size_t, index: size_t, len: size_t) -> ! {
|
|
let msg = format!("index out of bounds: the len is {} but the index is {}",
|
|
len as uint, index as uint);
|
|
msg.with_c_str(|buf| fail_(buf, file, line))
|
|
}
|
|
|
|
#[lang="malloc"]
|
|
pub unsafe fn local_malloc(td: *c_char, size: uintptr_t) -> *c_char {
|
|
::rt::local_heap::local_malloc(td, size)
|
|
}
|
|
|
|
// NB: Calls to free CANNOT be allowed to fail, as throwing an exception from
|
|
// inside a landing pad may corrupt the state of the exception handler. If a
|
|
// problem occurs, call exit instead.
|
|
#[lang="free"]
|
|
pub unsafe fn local_free(ptr: *c_char) {
|
|
::rt::local_heap::local_free(ptr);
|
|
}
|
|
|
|
#[lang="borrow_as_imm"]
|
|
#[inline]
|
|
pub unsafe fn borrow_as_imm(a: *u8, file: *c_char, line: size_t) -> uint {
|
|
borrowck::borrow_as_imm(a, file, line)
|
|
}
|
|
|
|
#[lang="borrow_as_mut"]
|
|
#[inline]
|
|
pub unsafe fn borrow_as_mut(a: *u8, file: *c_char, line: size_t) -> uint {
|
|
borrowck::borrow_as_mut(a, file, line)
|
|
}
|
|
|
|
#[lang="record_borrow"]
|
|
pub unsafe fn record_borrow(a: *u8, old_ref_count: uint,
|
|
file: *c_char, line: size_t) {
|
|
borrowck::record_borrow(a, old_ref_count, file, line)
|
|
}
|
|
|
|
#[lang="unrecord_borrow"]
|
|
pub unsafe fn unrecord_borrow(a: *u8, old_ref_count: uint,
|
|
file: *c_char, line: size_t) {
|
|
borrowck::unrecord_borrow(a, old_ref_count, file, line)
|
|
}
|
|
|
|
#[lang="return_to_mut"]
|
|
#[inline]
|
|
pub unsafe fn return_to_mut(a: *u8, orig_ref_count: uint,
|
|
file: *c_char, line: size_t) {
|
|
borrowck::return_to_mut(a, orig_ref_count, file, line)
|
|
}
|
|
|
|
#[lang="check_not_borrowed"]
|
|
#[inline]
|
|
pub unsafe fn check_not_borrowed(a: *u8,
|
|
file: *c_char,
|
|
line: size_t) {
|
|
borrowck::check_not_borrowed(a, file, line)
|
|
}
|