mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-03 17:35:28 +03:00
Register snapshots
This commit is contained in:
@@ -24,20 +24,6 @@ pub mod rusti {
|
||||
}
|
||||
|
||||
/// Casts the value at `src` to U. The two types must have the same length.
|
||||
#[cfg(not(stage0))]
|
||||
pub unsafe fn transmute_copy<T, U>(src: &T) -> U {
|
||||
let mut dest: U = unstable::intrinsics::uninit();
|
||||
{
|
||||
let dest_ptr: *mut u8 = rusti::transmute(&mut dest);
|
||||
let src_ptr: *u8 = rusti::transmute(src);
|
||||
unstable::intrinsics::memmove64(dest_ptr,
|
||||
src_ptr,
|
||||
sys::size_of::<U>() as u64);
|
||||
}
|
||||
dest
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub unsafe fn transmute_copy<T, U>(src: &T) -> U {
|
||||
let mut dest: U = unstable::intrinsics::init();
|
||||
{
|
||||
|
||||
@@ -12,9 +12,6 @@
|
||||
|
||||
use option::{None, Option, Some};
|
||||
use str;
|
||||
#[cfg(stage0)]
|
||||
use str::StrSlice;
|
||||
#[cfg(not(stage0))]
|
||||
use str::{StrSlice, OwnedStr};
|
||||
use u32;
|
||||
use uint;
|
||||
@@ -191,21 +188,6 @@ pub fn from_digit(num: uint, radix: uint) -> Option<char> {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn escape_unicode(c: char) -> ~str {
|
||||
let s = u32::to_str_radix(c as u32, 16u);
|
||||
let (c, pad) = (if c <= '\xff' { ('x', 2u) }
|
||||
else if c <= '\uffff' { ('u', 4u) }
|
||||
else { ('U', 8u) });
|
||||
assert!(str::len(s) <= pad);
|
||||
let mut out = ~"\\";
|
||||
str::push_str(&mut out, str::from_char(c));
|
||||
for uint::range(str::len(s), pad) |_i|
|
||||
{ str::push_str(&mut out, ~"0"); }
|
||||
str::push_str(&mut out, s);
|
||||
out
|
||||
}
|
||||
|
||||
///
|
||||
/// Return the hexadecimal unicode escape of a char.
|
||||
///
|
||||
@@ -215,7 +197,6 @@ pub fn escape_unicode(c: char) -> ~str {
|
||||
/// - chars in [0x100,0xffff] get 4-digit escapes: `\\uNNNN`
|
||||
/// - chars above 0x10000 get 8-digit escapes: `\\UNNNNNNNN`
|
||||
///
|
||||
#[cfg(not(stage0))]
|
||||
pub fn escape_unicode(c: char) -> ~str {
|
||||
let s = u32::to_str_radix(c as u32, 16u);
|
||||
let (c, pad) = cond!(
|
||||
@@ -258,23 +239,7 @@ pub fn escape_default(c: char) -> ~str {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn len_utf8_bytes(c: char) -> uint {
|
||||
static max_one_b: uint = 128u;
|
||||
static max_two_b: uint = 2048u;
|
||||
static max_three_b: uint = 65536u;
|
||||
static max_four_b: uint = 2097152u;
|
||||
|
||||
let code = c as uint;
|
||||
if code < max_one_b { 1u }
|
||||
else if code < max_two_b { 2u }
|
||||
else if code < max_three_b { 3u }
|
||||
else if code < max_four_b { 4u }
|
||||
else { fail!("invalid character!") }
|
||||
}
|
||||
|
||||
/// Returns the amount of bytes this character would need if encoded in utf8
|
||||
#[cfg(not(stage0))]
|
||||
pub fn len_utf8_bytes(c: char) -> uint {
|
||||
static MAX_ONE_B: uint = 128u;
|
||||
static MAX_TWO_B: uint = 2048u;
|
||||
|
||||
@@ -127,33 +127,6 @@ struct AnnihilateStats {
|
||||
n_bytes_freed: uint
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
unsafe fn each_live_alloc(read_next_before: bool,
|
||||
f: &fn(box: *mut BoxRepr, uniq: bool) -> bool) {
|
||||
//! Walks the internal list of allocations
|
||||
|
||||
use managed;
|
||||
|
||||
let task: *Task = transmute(rustrt::rust_get_task());
|
||||
let box = (*task).boxed_region.live_allocs;
|
||||
let mut box: *mut BoxRepr = transmute(copy box);
|
||||
while box != mut_null() {
|
||||
let next_before = transmute(copy (*box).header.next);
|
||||
let uniq =
|
||||
(*box).header.ref_count == managed::raw::RC_MANAGED_UNIQUE;
|
||||
|
||||
if !f(box, uniq) {
|
||||
return;
|
||||
}
|
||||
|
||||
if read_next_before {
|
||||
box = next_before;
|
||||
} else {
|
||||
box = transmute(copy (*box).header.next);
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
unsafe fn each_live_alloc(read_next_before: bool,
|
||||
f: &fn(box: *mut BoxRepr, uniq: bool) -> bool) -> bool {
|
||||
//! Walks the internal list of allocations
|
||||
|
||||
@@ -30,31 +30,15 @@ pub trait Map<K, V>: Mutable {
|
||||
fn contains_key(&self, key: &K) -> bool;
|
||||
|
||||
// Visits all keys and values
|
||||
#[cfg(stage0)]
|
||||
fn each<'a>(&'a self, f: &fn(&K, &'a V) -> bool);
|
||||
// Visits all keys and values
|
||||
#[cfg(not(stage0))]
|
||||
fn each<'a>(&'a self, f: &fn(&K, &'a V) -> bool) -> bool;
|
||||
|
||||
/// Visit all keys
|
||||
#[cfg(stage0)]
|
||||
fn each_key(&self, f: &fn(&K) -> bool);
|
||||
/// Visit all keys
|
||||
#[cfg(not(stage0))]
|
||||
fn each_key(&self, f: &fn(&K) -> bool) -> bool;
|
||||
|
||||
/// Visit all values
|
||||
#[cfg(stage0)]
|
||||
fn each_value<'a>(&'a self, f: &fn(&'a V) -> bool);
|
||||
/// Visit all values
|
||||
#[cfg(not(stage0))]
|
||||
fn each_value<'a>(&'a self, f: &fn(&'a V) -> bool) -> bool;
|
||||
|
||||
/// Iterate over the map and mutate the contained values
|
||||
#[cfg(stage0)]
|
||||
fn mutate_values(&mut self, f: &fn(&K, &mut V) -> bool);
|
||||
/// Iterate over the map and mutate the contained values
|
||||
#[cfg(not(stage0))]
|
||||
fn mutate_values(&mut self, f: &fn(&K, &mut V) -> bool) -> bool;
|
||||
|
||||
/// Return a reference to the value corresponding to the key
|
||||
@@ -81,43 +65,6 @@ pub trait Map<K, V>: Mutable {
|
||||
fn pop(&mut self, k: &K) -> Option<V>;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub trait Set<T>: Mutable {
|
||||
/// Return true if the set contains a value
|
||||
fn contains(&self, value: &T) -> bool;
|
||||
|
||||
/// Add a value to the set. Return true if the value was not already
|
||||
/// present in the set.
|
||||
fn insert(&mut self, value: T) -> bool;
|
||||
|
||||
/// Remove a value from the set. Return true if the value was
|
||||
/// present in the set.
|
||||
fn remove(&mut self, value: &T) -> bool;
|
||||
|
||||
/// Return true if the set has no elements in common with `other`.
|
||||
/// This is equivalent to checking for an empty intersection.
|
||||
fn is_disjoint(&self, other: &Self) -> bool;
|
||||
|
||||
/// Return true if the set is a subset of another
|
||||
fn is_subset(&self, other: &Self) -> bool;
|
||||
|
||||
/// Return true if the set is a superset of another
|
||||
fn is_superset(&self, other: &Self) -> bool;
|
||||
|
||||
/// Visit the values representing the difference
|
||||
fn difference(&self, other: &Self, f: &fn(&T) -> bool);
|
||||
|
||||
/// Visit the values representing the symmetric difference
|
||||
fn symmetric_difference(&self, other: &Self, f: &fn(&T) -> bool);
|
||||
|
||||
/// Visit the values representing the intersection
|
||||
fn intersection(&self, other: &Self, f: &fn(&T) -> bool);
|
||||
|
||||
/// Visit the values representing the union
|
||||
fn union(&self, other: &Self, f: &fn(&T) -> bool);
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
pub trait Set<T>: Mutable {
|
||||
/// Return true if the set contains a value
|
||||
fn contains(&self, value: &T) -> bool;
|
||||
|
||||
@@ -171,11 +171,6 @@ unsafe fn _walk_safe_point(fp: *Word, sp: SafePoint, visitor: Visitor) -> bool {
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
unsafe fn walk_safe_point(fp: *Word, sp: SafePoint, visitor: Visitor) {
|
||||
_walk_safe_point(fp, sp, visitor);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
unsafe fn walk_safe_point(fp: *Word, sp: SafePoint, visitor: Visitor) -> bool {
|
||||
_walk_safe_point(fp, sp, visitor)
|
||||
}
|
||||
@@ -303,11 +298,6 @@ unsafe fn _walk_gc_roots(mem: Memory, sentinel: **Word, visitor: Visitor) -> boo
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
unsafe fn walk_gc_roots(mem: Memory, sentinel: **Word, visitor: Visitor) {
|
||||
_walk_gc_roots(mem, sentinel, visitor);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
unsafe fn walk_gc_roots(mem: Memory, sentinel: **Word, visitor: Visitor) -> bool {
|
||||
_walk_gc_roots(mem, sentinel, visitor)
|
||||
}
|
||||
|
||||
@@ -19,8 +19,6 @@
|
||||
* CPRNG like rand::rng.
|
||||
*/
|
||||
|
||||
#[cfg(stage0)]
|
||||
use cast;
|
||||
use container::Container;
|
||||
use old_iter::BaseIter;
|
||||
use rt::io::Writer;
|
||||
@@ -78,14 +76,6 @@ pub trait Streaming {
|
||||
fn reset(&mut self);
|
||||
}
|
||||
|
||||
// XXX: Ugly workaround for bootstrapping.
|
||||
#[cfg(stage0)]
|
||||
fn transmute_for_stage0<'a>(bytes: &'a [const u8]) -> &'a [u8] {
|
||||
unsafe {
|
||||
cast::transmute(bytes)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn transmute_for_stage0<'a>(bytes: &'a [u8]) -> &'a [u8] {
|
||||
bytes
|
||||
}
|
||||
|
||||
@@ -87,22 +87,6 @@ fn next_bucket(&self, idx: uint, len_buckets: uint) -> uint {
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
fn bucket_sequence(&self, hash: uint,
|
||||
op: &fn(uint) -> bool) {
|
||||
let start_idx = self.to_bucket(hash);
|
||||
let len_buckets = self.buckets.len();
|
||||
let mut idx = start_idx;
|
||||
loop {
|
||||
if !op(idx) { return; }
|
||||
idx = self.next_bucket(idx, len_buckets);
|
||||
if idx == start_idx {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
fn bucket_sequence(&self, hash: uint,
|
||||
op: &fn(uint) -> bool) -> bool {
|
||||
let start_idx = self.to_bucket(hash);
|
||||
@@ -318,19 +302,6 @@ fn contains_key(&self, k: &K) -> bool {
|
||||
}
|
||||
|
||||
/// Visit all key-value pairs
|
||||
#[cfg(stage0)]
|
||||
fn each<'a>(&'a self, blk: &fn(&K, &'a V) -> bool) {
|
||||
for uint::range(0, self.buckets.len()) |i| {
|
||||
for self.buckets[i].each |bucket| {
|
||||
if !blk(&bucket.key, &bucket.value) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Visit all key-value pairs
|
||||
#[cfg(not(stage0))]
|
||||
fn each<'a>(&'a self, blk: &fn(&K, &'a V) -> bool) -> bool {
|
||||
for uint::range(0, self.buckets.len()) |i| {
|
||||
for self.buckets[i].each |bucket| {
|
||||
@@ -343,44 +314,16 @@ fn each<'a>(&'a self, blk: &fn(&K, &'a V) -> bool) -> bool {
|
||||
}
|
||||
|
||||
/// Visit all keys
|
||||
#[cfg(stage0)]
|
||||
fn each_key(&self, blk: &fn(k: &K) -> bool) {
|
||||
self.each(|k, _| blk(k))
|
||||
}
|
||||
|
||||
/// Visit all keys
|
||||
#[cfg(not(stage0))]
|
||||
fn each_key(&self, blk: &fn(k: &K) -> bool) -> bool {
|
||||
self.each(|k, _| blk(k))
|
||||
}
|
||||
|
||||
/// Visit all values
|
||||
#[cfg(stage0)]
|
||||
fn each_value<'a>(&'a self, blk: &fn(v: &'a V) -> bool) {
|
||||
self.each(|_, v| blk(v))
|
||||
}
|
||||
|
||||
/// Visit all values
|
||||
#[cfg(not(stage0))]
|
||||
fn each_value<'a>(&'a self, blk: &fn(v: &'a V) -> bool) -> bool {
|
||||
self.each(|_, v| blk(v))
|
||||
}
|
||||
|
||||
/// Iterate over the map and mutate the contained values
|
||||
#[cfg(stage0)]
|
||||
fn mutate_values(&mut self, blk: &fn(&K, &mut V) -> bool) {
|
||||
for uint::range(0, self.buckets.len()) |i| {
|
||||
match self.buckets[i] {
|
||||
Some(Bucket{key: ref key, value: ref mut value, _}) => {
|
||||
if !blk(key, value) { return }
|
||||
}
|
||||
None => ()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Iterate over the map and mutate the contained values
|
||||
#[cfg(not(stage0))]
|
||||
fn mutate_values(&mut self, blk: &fn(&K, &mut V) -> bool) -> bool {
|
||||
for uint::range(0, self.buckets.len()) |i| {
|
||||
match self.buckets[i] {
|
||||
@@ -402,19 +345,6 @@ fn find<'a>(&'a self, k: &K) -> Option<&'a V> {
|
||||
}
|
||||
|
||||
/// Return a mutable reference to the value corresponding to the key
|
||||
#[cfg(stage0)]
|
||||
fn find_mut<'a>(&'a mut self, k: &K) -> Option<&'a mut V> {
|
||||
let idx = match self.bucket_for_key(k) {
|
||||
FoundEntry(idx) => idx,
|
||||
TableFull | FoundHole(_) => return None
|
||||
};
|
||||
unsafe {
|
||||
Some(::cast::transmute_mut_region(self.mut_value_for_bucket(idx)))
|
||||
}
|
||||
}
|
||||
|
||||
/// Return a mutable reference to the value corresponding to the key
|
||||
#[cfg(not(stage0))]
|
||||
fn find_mut<'a>(&'a mut self, k: &K) -> Option<&'a mut V> {
|
||||
let idx = match self.bucket_for_key(k) {
|
||||
FoundEntry(idx) => idx,
|
||||
@@ -485,38 +415,6 @@ fn reserve_at_least(&mut self, n: uint) {
|
||||
|
||||
/// Return the value corresponding to the key in the map, or insert
|
||||
/// and return the value if it doesn't exist.
|
||||
#[cfg(stage0)]
|
||||
fn find_or_insert<'a>(&'a mut self, k: K, v: V) -> &'a V {
|
||||
if self.size >= self.resize_at {
|
||||
// n.b.: We could also do this after searching, so
|
||||
// that we do not resize if this call to insert is
|
||||
// simply going to update a key in place. My sense
|
||||
// though is that it's worse to have to search through
|
||||
// buckets to find the right spot twice than to just
|
||||
// resize in this corner case.
|
||||
self.expand();
|
||||
}
|
||||
|
||||
let hash = k.hash_keyed(self.k0, self.k1) as uint;
|
||||
let idx = match self.bucket_for_key_with_hash(hash, &k) {
|
||||
TableFull => fail!("Internal logic error"),
|
||||
FoundEntry(idx) => idx,
|
||||
FoundHole(idx) => {
|
||||
self.buckets[idx] = Some(Bucket{hash: hash, key: k,
|
||||
value: v});
|
||||
self.size += 1;
|
||||
idx
|
||||
},
|
||||
};
|
||||
|
||||
unsafe {
|
||||
::cast::transmute_region(self.value_for_bucket(idx))
|
||||
}
|
||||
}
|
||||
|
||||
/// Return the value corresponding to the key in the map, or insert
|
||||
/// and return the value if it doesn't exist.
|
||||
#[cfg(not(stage0))]
|
||||
fn find_or_insert<'a>(&'a mut self, k: K, v: V) -> &'a V {
|
||||
if self.size >= self.resize_at {
|
||||
// n.b.: We could also do this after searching, so
|
||||
@@ -545,39 +443,6 @@ fn find_or_insert<'a>(&'a mut self, k: K, v: V) -> &'a V {
|
||||
|
||||
/// Return the value corresponding to the key in the map, or create,
|
||||
/// insert, and return a new value if it doesn't exist.
|
||||
#[cfg(stage0)]
|
||||
fn find_or_insert_with<'a>(&'a mut self, k: K, f: &fn(&K) -> V) -> &'a V {
|
||||
if self.size >= self.resize_at {
|
||||
// n.b.: We could also do this after searching, so
|
||||
// that we do not resize if this call to insert is
|
||||
// simply going to update a key in place. My sense
|
||||
// though is that it's worse to have to search through
|
||||
// buckets to find the right spot twice than to just
|
||||
// resize in this corner case.
|
||||
self.expand();
|
||||
}
|
||||
|
||||
let hash = k.hash_keyed(self.k0, self.k1) as uint;
|
||||
let idx = match self.bucket_for_key_with_hash(hash, &k) {
|
||||
TableFull => fail!("Internal logic error"),
|
||||
FoundEntry(idx) => idx,
|
||||
FoundHole(idx) => {
|
||||
let v = f(&k);
|
||||
self.buckets[idx] = Some(Bucket{hash: hash, key: k,
|
||||
value: v});
|
||||
self.size += 1;
|
||||
idx
|
||||
},
|
||||
};
|
||||
|
||||
unsafe {
|
||||
::cast::transmute_region(self.value_for_bucket(idx))
|
||||
}
|
||||
}
|
||||
|
||||
/// Return the value corresponding to the key in the map, or create,
|
||||
/// insert, and return a new value if it doesn't exist.
|
||||
#[cfg(not(stage0))]
|
||||
fn find_or_insert_with<'a>(&'a mut self, k: K, f: &fn(&K) -> V) -> &'a V {
|
||||
if self.size >= self.resize_at {
|
||||
// n.b.: We could also do this after searching, so
|
||||
@@ -680,9 +545,6 @@ pub struct HashSet<T> {
|
||||
|
||||
impl<T:Hash + Eq> BaseIter<T> for HashSet<T> {
|
||||
/// Visit all values in order
|
||||
#[cfg(stage0)]
|
||||
fn each(&self, f: &fn(&T) -> bool) { self.map.each_key(f) }
|
||||
#[cfg(not(stage0))]
|
||||
fn each(&self, f: &fn(&T) -> bool) -> bool { self.map.each_key(f) }
|
||||
fn size_hint(&self) -> Option<uint> { Some(self.len()) }
|
||||
}
|
||||
@@ -734,32 +596,11 @@ fn is_superset(&self, other: &HashSet<T>) -> bool {
|
||||
}
|
||||
|
||||
/// Visit the values representing the difference
|
||||
#[cfg(stage0)]
|
||||
fn difference(&self, other: &HashSet<T>, f: &fn(&T) -> bool) {
|
||||
for self.each |v| {
|
||||
if !other.contains(v) {
|
||||
if !f(v) { return }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Visit the values representing the difference
|
||||
#[cfg(not(stage0))]
|
||||
fn difference(&self, other: &HashSet<T>, f: &fn(&T) -> bool) -> bool {
|
||||
self.each(|v| other.contains(v) || f(v))
|
||||
}
|
||||
|
||||
/// Visit the values representing the symmetric difference
|
||||
#[cfg(stage0)]
|
||||
fn symmetric_difference(&self,
|
||||
other: &HashSet<T>,
|
||||
f: &fn(&T) -> bool) {
|
||||
self.difference(other, f);
|
||||
other.difference(self, f);
|
||||
}
|
||||
|
||||
/// Visit the values representing the symmetric difference
|
||||
#[cfg(not(stage0))]
|
||||
fn symmetric_difference(&self,
|
||||
other: &HashSet<T>,
|
||||
f: &fn(&T) -> bool) -> bool {
|
||||
@@ -767,37 +608,11 @@ fn symmetric_difference(&self,
|
||||
}
|
||||
|
||||
/// Visit the values representing the intersection
|
||||
#[cfg(stage0)]
|
||||
fn intersection(&self, other: &HashSet<T>, f: &fn(&T) -> bool) {
|
||||
for self.each |v| {
|
||||
if other.contains(v) {
|
||||
if !f(v) { return }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Visit the values representing the intersection
|
||||
#[cfg(not(stage0))]
|
||||
fn intersection(&self, other: &HashSet<T>, f: &fn(&T) -> bool) -> bool {
|
||||
self.each(|v| !other.contains(v) || f(v))
|
||||
}
|
||||
|
||||
/// Visit the values representing the union
|
||||
#[cfg(stage0)]
|
||||
fn union(&self, other: &HashSet<T>, f: &fn(&T) -> bool) {
|
||||
for self.each |v| {
|
||||
if !f(v) { return }
|
||||
}
|
||||
|
||||
for other.each |v| {
|
||||
if !self.contains(v) {
|
||||
if !f(v) { return }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Visit the values representing the union
|
||||
#[cfg(not(stage0))]
|
||||
fn union(&self, other: &HashSet<T>, f: &fn(&T) -> bool) -> bool {
|
||||
self.each(f) && other.each(|v| self.contains(v) || f(v))
|
||||
}
|
||||
|
||||
@@ -282,9 +282,6 @@ pub trait ReaderUtil {
|
||||
*
|
||||
* None right now.
|
||||
*/
|
||||
#[cfg(stage0)]
|
||||
fn each_byte(&self, it: &fn(int) -> bool);
|
||||
#[cfg(not(stage0))]
|
||||
fn each_byte(&self, it: &fn(int) -> bool) -> bool;
|
||||
|
||||
/**
|
||||
@@ -294,9 +291,6 @@ pub trait ReaderUtil {
|
||||
*
|
||||
* None right now.
|
||||
*/
|
||||
#[cfg(stage0)]
|
||||
fn each_char(&self, it: &fn(char) -> bool);
|
||||
#[cfg(not(stage0))]
|
||||
fn each_char(&self, it: &fn(char) -> bool) -> bool;
|
||||
|
||||
/**
|
||||
@@ -306,9 +300,6 @@ pub trait ReaderUtil {
|
||||
*
|
||||
* None right now.
|
||||
*/
|
||||
#[cfg(stage0)]
|
||||
fn each_line(&self, it: &fn(&str) -> bool);
|
||||
#[cfg(not(stage0))]
|
||||
fn each_line(&self, it: &fn(&str) -> bool) -> bool;
|
||||
|
||||
/**
|
||||
@@ -720,13 +711,6 @@ fn read_whole_stream(&self) -> ~[u8] {
|
||||
bytes
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn each_byte(&self, it: &fn(int) -> bool) {
|
||||
while !self.eof() {
|
||||
if !it(self.read_byte()) { break; }
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each_byte(&self, it: &fn(int) -> bool) -> bool {
|
||||
while !self.eof() {
|
||||
if !it(self.read_byte()) { return false; }
|
||||
@@ -734,13 +718,6 @@ fn each_byte(&self, it: &fn(int) -> bool) -> bool {
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn each_char(&self, it: &fn(char) -> bool) {
|
||||
while !self.eof() {
|
||||
if !it(self.read_char()) { break; }
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each_char(&self, it: &fn(char) -> bool) -> bool {
|
||||
while !self.eof() {
|
||||
if !it(self.read_char()) { return false; }
|
||||
@@ -748,27 +725,6 @@ fn each_char(&self, it: &fn(char) -> bool) -> bool {
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn each_line(&self, it: &fn(s: &str) -> bool) {
|
||||
while !self.eof() {
|
||||
// include the \n, so that we can distinguish an entirely empty
|
||||
// line read after "...\n", and the trailing empty line in
|
||||
// "...\n\n".
|
||||
let mut line = self.read_until('\n' as u8, true);
|
||||
|
||||
// blank line at the end of the reader is ignored
|
||||
if self.eof() && line.is_empty() { break; }
|
||||
|
||||
// trim the \n, so that each_line is consistent with read_line
|
||||
let n = str::len(line);
|
||||
if line[n-1] == '\n' as u8 {
|
||||
unsafe { str::raw::set_len(&mut line, n-1); }
|
||||
}
|
||||
|
||||
if !it(line) { break; }
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each_line(&self, it: &fn(s: &str) -> bool) -> bool {
|
||||
while !self.eof() {
|
||||
// include the \n, so that we can distinguish an entirely empty
|
||||
|
||||
+5
-42
@@ -40,17 +40,12 @@
|
||||
|
||||
*/
|
||||
|
||||
#[cfg(not(stage0))] use cmp::Ord;
|
||||
#[cfg(not(stage0))] use option::{Option, Some, None};
|
||||
#[cfg(not(stage0))] use vec::OwnedVector;
|
||||
#[cfg(not(stage0))] use num::{One, Zero};
|
||||
#[cfg(not(stage0))] use ops::{Add, Mul};
|
||||
use cmp::Ord;
|
||||
use option::{Option, Some, None};
|
||||
use vec::OwnedVector;
|
||||
use num::{One, Zero};
|
||||
use ops::{Add, Mul};
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub trait Times {
|
||||
fn times(&self, it: &fn() -> bool);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub trait Times {
|
||||
fn times(&self, it: &fn() -> bool) -> bool;
|
||||
}
|
||||
@@ -67,7 +62,6 @@ pub trait Times {
|
||||
* ~~~
|
||||
*/
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
pub fn to_vec<T>(iter: &fn(f: &fn(T) -> bool) -> bool) -> ~[T] {
|
||||
let mut v = ~[];
|
||||
for iter |x| { v.push(x) }
|
||||
@@ -86,7 +80,6 @@ pub fn to_vec<T>(iter: &fn(f: &fn(T) -> bool) -> bool) -> ~[T] {
|
||||
* ~~~~
|
||||
*/
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
pub fn any<T>(predicate: &fn(T) -> bool,
|
||||
iter: &fn(f: &fn(T) -> bool) -> bool) -> bool {
|
||||
for iter |x| {
|
||||
@@ -108,29 +101,6 @@ pub fn any<T>(predicate: &fn(T) -> bool,
|
||||
* ~~~~
|
||||
*/
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
pub fn all<T>(predicate: &fn(T) -> bool,
|
||||
iter: &fn(f: &fn(T) -> bool)) -> bool {
|
||||
for iter |x| {
|
||||
if !predicate(x) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return true if `predicate` is true for all values yielded by an internal iterator.
|
||||
*
|
||||
* # Example:
|
||||
*
|
||||
* ~~~~
|
||||
* assert!(all(|&x: &uint| x < 6, |f| uint::range(1, 6, f)));
|
||||
* assert!(!all(|&x: &uint| x < 5, |f| uint::range(1, 6, f)));
|
||||
* ~~~~
|
||||
*/
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
pub fn all<T>(predicate: &fn(T) -> bool,
|
||||
iter: &fn(f: &fn(T) -> bool) -> bool) -> bool {
|
||||
// If we ever break, iter will return false, so this will only return true
|
||||
@@ -149,7 +119,6 @@ pub fn all<T>(predicate: &fn(T) -> bool,
|
||||
* ~~~~
|
||||
*/
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
pub fn find<T>(predicate: &fn(&T) -> bool,
|
||||
iter: &fn(f: &fn(T) -> bool) -> bool) -> Option<T> {
|
||||
for iter |x| {
|
||||
@@ -171,7 +140,6 @@ pub fn find<T>(predicate: &fn(&T) -> bool,
|
||||
* ~~~~
|
||||
*/
|
||||
#[inline]
|
||||
#[cfg(not(stage0))]
|
||||
pub fn max<T: Ord>(iter: &fn(f: &fn(T) -> bool) -> bool) -> Option<T> {
|
||||
let mut result = None;
|
||||
for iter |x| {
|
||||
@@ -198,7 +166,6 @@ pub fn max<T: Ord>(iter: &fn(f: &fn(T) -> bool) -> bool) -> Option<T> {
|
||||
* ~~~~
|
||||
*/
|
||||
#[inline]
|
||||
#[cfg(not(stage0))]
|
||||
pub fn min<T: Ord>(iter: &fn(f: &fn(T) -> bool) -> bool) -> Option<T> {
|
||||
let mut result = None;
|
||||
for iter |x| {
|
||||
@@ -223,7 +190,6 @@ pub fn min<T: Ord>(iter: &fn(f: &fn(T) -> bool) -> bool) -> Option<T> {
|
||||
* assert_eq!(fold(0i, |f| int::range(1, 5, f), |a, x| *a += x), 10);
|
||||
* ~~~~
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
#[inline]
|
||||
pub fn fold<T, U>(start: T, iter: &fn(f: &fn(U) -> bool) -> bool, f: &fn(&mut T, U)) -> T {
|
||||
let mut result = start;
|
||||
@@ -247,7 +213,6 @@ pub fn fold<T, U>(start: T, iter: &fn(f: &fn(U) -> bool) -> bool, f: &fn(&mut T,
|
||||
* }
|
||||
* ~~~~
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
#[inline]
|
||||
pub fn fold_ref<T, U>(start: T, iter: &fn(f: &fn(&U) -> bool) -> bool, f: &fn(&mut T, &U)) -> T {
|
||||
let mut result = start;
|
||||
@@ -267,7 +232,6 @@ pub fn fold_ref<T, U>(start: T, iter: &fn(f: &fn(&U) -> bool) -> bool, f: &fn(&m
|
||||
* assert_eq!(do sum |f| { xs.each(f) }, 10);
|
||||
* ~~~~
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
#[inline(always)]
|
||||
pub fn sum<T: Zero + Add<T, T>>(iter: &fn(f: &fn(&T) -> bool) -> bool) -> T {
|
||||
fold_ref(Zero::zero::<T>(), iter, |a, x| *a = a.add(x))
|
||||
@@ -283,7 +247,6 @@ pub fn sum<T: Zero + Add<T, T>>(iter: &fn(f: &fn(&T) -> bool) -> bool) -> T {
|
||||
* assert_eq!(do product |f| { xs.each(f) }, 24);
|
||||
* ~~~~
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
#[inline(always)]
|
||||
pub fn product<T: One + Mul<T, T>>(iter: &fn(f: &fn(&T) -> bool) -> bool) -> T {
|
||||
fold_ref(One::one::<T>(), iter, |a, x| *a = a.mul(x))
|
||||
|
||||
@@ -43,11 +43,7 @@ pub trait IteratorUtil<A> {
|
||||
fn take(self, n: uint) -> TakeIterator<Self>;
|
||||
fn scan<'r, St, B>(self, initial_state: St, f: &'r fn(&mut St, A) -> Option<B>)
|
||||
-> ScanIterator<'r, A, B, Self, St>;
|
||||
#[cfg(stage0)]
|
||||
fn advance(&mut self, f: &fn(A) -> bool);
|
||||
#[cfg(not(stage0))]
|
||||
fn advance(&mut self, f: &fn(A) -> bool) -> bool;
|
||||
#[cfg(not(stage0))]
|
||||
fn to_vec(&mut self) -> ~[A];
|
||||
fn nth(&mut self, n: uint) -> Option<A>;
|
||||
fn last(&mut self) -> Option<A>;
|
||||
@@ -121,21 +117,6 @@ fn scan<'r, St, B>(self, initial_state: St, f: &'r fn(&mut St, A) -> Option<B>)
|
||||
|
||||
/// A shim implementing the `for` loop iteration protocol for iterator objects
|
||||
#[inline]
|
||||
#[cfg(stage0)]
|
||||
fn advance(&mut self, f: &fn(A) -> bool) {
|
||||
loop {
|
||||
match self.next() {
|
||||
Some(x) => {
|
||||
if !f(x) { return; }
|
||||
}
|
||||
None => { return; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// A shim implementing the `for` loop iteration protocol for iterator objects
|
||||
#[inline]
|
||||
#[cfg(not(stage0))]
|
||||
fn advance(&mut self, f: &fn(A) -> bool) -> bool {
|
||||
loop {
|
||||
match self.next() {
|
||||
@@ -147,7 +128,6 @@ fn advance(&mut self, f: &fn(A) -> bool) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
#[inline(always)]
|
||||
fn to_vec(&mut self) -> ~[A] {
|
||||
iter::to_vec::<A>(|f| self.advance(f))
|
||||
|
||||
@@ -51,9 +51,3 @@ pub trait Owned {
|
||||
pub trait Const {
|
||||
// Empty.
|
||||
}
|
||||
|
||||
#[lang="durable"]
|
||||
#[cfg(stage0)]
|
||||
pub trait Durable {
|
||||
// Empty.
|
||||
}
|
||||
|
||||
@@ -248,18 +248,8 @@ fn max(&self, other: &f32) -> f32 {
|
||||
if self.is_NaN() || other.is_NaN() { Float::NaN() } else { fmax(*self, *other) }
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
#[inline(always)]
|
||||
fn clamp(&self, mn: &f32, mx: &f32) -> f32 {
|
||||
if self.is_NaN() { *self }
|
||||
else if !(*self <= *mx) { *mx }
|
||||
else if !(*self >= *mn) { *mn }
|
||||
else { *self }
|
||||
}
|
||||
|
||||
/// Returns the number constrained within the range `mn <= self <= mx`.
|
||||
/// If any of the numbers are `NaN` then `NaN` is returned.
|
||||
#[cfg(not(stage0))]
|
||||
#[inline(always)]
|
||||
fn clamp(&self, mn: &f32, mx: &f32) -> f32 {
|
||||
cond!(
|
||||
|
||||
@@ -270,18 +270,8 @@ fn max(&self, other: &f64) -> f64 {
|
||||
if self.is_NaN() || other.is_NaN() { Float::NaN() } else { fmax(*self, *other) }
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
#[inline(always)]
|
||||
fn clamp(&self, mn: &f64, mx: &f64) -> f64 {
|
||||
if self.is_NaN() { *self }
|
||||
else if !(*self <= *mx) { *mx }
|
||||
else if !(*self >= *mn) { *mn }
|
||||
else { *self }
|
||||
}
|
||||
|
||||
/// Returns the number constrained within the range `mn <= self <= mx`.
|
||||
/// If any of the numbers are `NaN` then `NaN` is returned.
|
||||
#[cfg(not(stage0))]
|
||||
#[inline(always)]
|
||||
fn clamp(&self, mn: &f64, mx: &f64) -> f64 {
|
||||
cond!(
|
||||
|
||||
@@ -108,37 +108,17 @@ pub fn _range_step(start: T, stop: T, step: T, it: &fn(T) -> bool) -> bool {
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn range_step(start: T, stop: T, step: T, it: &fn(T) -> bool) {
|
||||
_range_step(start, stop, step, it);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn range_step(start: T, stop: T, step: T, it: &fn(T) -> bool) -> bool {
|
||||
_range_step(start, stop, step, it)
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
/// Iterate over the range [`lo`..`hi`)
|
||||
pub fn range(lo: T, hi: T, it: &fn(T) -> bool) {
|
||||
range_step(lo, hi, 1 as T, it);
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
/// Iterate over the range [`lo`..`hi`)
|
||||
pub fn range(lo: T, hi: T, it: &fn(T) -> bool) -> bool {
|
||||
range_step(lo, hi, 1 as T, it)
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
/// Iterate over the range [`hi`..`lo`)
|
||||
pub fn range_rev(hi: T, lo: T, it: &fn(T) -> bool) {
|
||||
range_step(hi, lo, -1 as T, it);
|
||||
}
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
/// Iterate over the range [`hi`..`lo`)
|
||||
pub fn range_rev(hi: T, lo: T, it: &fn(T) -> bool) -> bool {
|
||||
range_step(hi, lo, -1 as T, it)
|
||||
@@ -187,15 +167,7 @@ fn max(&self, other: &T) -> T {
|
||||
if *self > *other { *self } else { *other }
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
#[inline(always)]
|
||||
fn clamp(&self, mn: &T, mx: &T) -> T {
|
||||
if *self > *mx { *mx } else
|
||||
if *self < *mn { *mn } else { *self }
|
||||
}
|
||||
|
||||
/// Returns the number constrained within the range `mn <= self <= mx`.
|
||||
#[cfg(not(stage0))]
|
||||
#[inline(always)]
|
||||
fn clamp(&self, mn: &T, mx: &T) -> T {
|
||||
cond!(
|
||||
|
||||
@@ -77,38 +77,17 @@ pub fn _range_step(start: T,
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn range_step(start: T, stop: T, step: T_SIGNED, it: &fn(T) -> bool) {
|
||||
_range_step(start, stop, step, it);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn range_step(start: T, stop: T, step: T_SIGNED, it: &fn(T) -> bool) -> bool {
|
||||
_range_step(start, stop, step, it)
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
/// Iterate over the range [`lo`..`hi`)
|
||||
pub fn range(lo: T, hi: T, it: &fn(T) -> bool) {
|
||||
range_step(lo, hi, 1 as T_SIGNED, it);
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
/// Iterate over the range [`lo`..`hi`)
|
||||
pub fn range(lo: T, hi: T, it: &fn(T) -> bool) -> bool {
|
||||
range_step(lo, hi, 1 as T_SIGNED, it)
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
/// Iterate over the range [`hi`..`lo`)
|
||||
pub fn range_rev(hi: T, lo: T, it: &fn(T) -> bool) {
|
||||
range_step(hi, lo, -1 as T_SIGNED, it);
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
/// Iterate over the range [`hi`..`lo`)
|
||||
pub fn range_rev(hi: T, lo: T, it: &fn(T) -> bool) -> bool {
|
||||
range_step(hi, lo, -1 as T_SIGNED, it)
|
||||
@@ -153,15 +132,7 @@ fn max(&self, other: &T) -> T {
|
||||
if *self > *other { *self } else { *other }
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
#[inline(always)]
|
||||
fn clamp(&self, mn: &T, mx: &T) -> T {
|
||||
if *self > *mx { *mx } else
|
||||
if *self < *mn { *mn } else { *self }
|
||||
}
|
||||
|
||||
/// Returns the number constrained within the range `mn <= self <= mx`.
|
||||
#[cfg(not(stage0))]
|
||||
#[inline(always)]
|
||||
fn clamp(&self, mn: &T, mx: &T) -> T {
|
||||
cond!(
|
||||
|
||||
@@ -154,29 +154,6 @@ pub fn iterate(lo: uint, hi: uint, it: &fn(uint) -> bool) -> bool {
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl iter::Times for uint {
|
||||
#[inline(always)]
|
||||
///
|
||||
/// A convenience form for basic iteration. Given a uint `x`,
|
||||
/// `for x.times { ... }` executes the given block x times.
|
||||
///
|
||||
/// Equivalent to `for uint::range(0, x) |_| { ... }`.
|
||||
///
|
||||
/// Not defined on all integer types to permit unambiguous
|
||||
/// use with integer literals of inferred integer-type as
|
||||
/// the self-value (eg. `for 100.times { ... }`).
|
||||
///
|
||||
fn times(&self, it: &fn() -> bool) {
|
||||
let mut i = *self;
|
||||
while i > 0 {
|
||||
if !it() { break }
|
||||
i -= 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
impl iter::Times for uint {
|
||||
#[inline(always)]
|
||||
///
|
||||
|
||||
@@ -22,39 +22,20 @@
|
||||
/// A function used to initialize the elements of a sequence
|
||||
pub type InitOp<'self,T> = &'self fn(uint) -> T;
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub trait BaseIter<A> {
|
||||
fn each(&self, blk: &fn(v: &A) -> bool);
|
||||
fn size_hint(&self) -> Option<uint>;
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub trait BaseIter<A> {
|
||||
fn each(&self, blk: &fn(v: &A) -> bool) -> bool;
|
||||
fn size_hint(&self) -> Option<uint>;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub trait ReverseIter<A>: BaseIter<A> {
|
||||
fn each_reverse(&self, blk: &fn(&A) -> bool);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub trait ReverseIter<A>: BaseIter<A> {
|
||||
fn each_reverse(&self, blk: &fn(&A) -> bool) -> bool;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub trait MutableIter<A>: BaseIter<A> {
|
||||
fn each_mut(&mut self, blk: &fn(&mut A) -> bool);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub trait MutableIter<A>: BaseIter<A> {
|
||||
fn each_mut(&mut self, blk: &fn(&mut A) -> bool) -> bool;
|
||||
}
|
||||
|
||||
pub trait ExtendedIter<A> {
|
||||
#[cfg(stage0)]
|
||||
fn eachi(&self, blk: &fn(uint, v: &A) -> bool);
|
||||
#[cfg(not(stage0))]
|
||||
fn eachi(&self, blk: &fn(uint, v: &A) -> bool) -> bool;
|
||||
fn all(&self, blk: &fn(&A) -> bool) -> bool;
|
||||
fn any(&self, blk: &fn(&A) -> bool) -> bool;
|
||||
@@ -64,11 +45,6 @@ pub trait ExtendedIter<A> {
|
||||
fn flat_map_to_vec<B,IB: BaseIter<B>>(&self, op: &fn(&A) -> IB) -> ~[B];
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub trait ExtendedMutableIter<A> {
|
||||
fn eachi_mut(&mut self, blk: &fn(uint, &mut A) -> bool);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub trait ExtendedMutableIter<A> {
|
||||
fn eachi_mut(&mut self, blk: &fn(uint, &mut A) -> bool) -> bool;
|
||||
}
|
||||
@@ -127,11 +103,6 @@ pub fn _eachi<A,IA:BaseIter<A>>(this: &IA, blk: &fn(uint, &A) -> bool) -> bool {
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn eachi<A,IA:BaseIter<A>>(this: &IA, blk: &fn(uint, &A) -> bool) {
|
||||
_eachi(this, blk);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn eachi<A,IA:BaseIter<A>>(this: &IA, blk: &fn(uint, &A) -> bool) -> bool {
|
||||
_eachi(this, blk)
|
||||
}
|
||||
|
||||
@@ -112,13 +112,6 @@ fn add(&self, other: &Option<T>) -> Option<T> {
|
||||
impl<T> BaseIter<T> for Option<T> {
|
||||
/// Performs an operation on the contained value by reference
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
fn each<'a>(&'a self, f: &fn(x: &'a T) -> bool) {
|
||||
match *self { None => (), Some(ref t) => { f(t); } }
|
||||
}
|
||||
/// Performs an operation on the contained value by reference
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
fn each<'a>(&'a self, f: &fn(x: &'a T) -> bool) -> bool {
|
||||
match *self { None => true, Some(ref t) => { f(t) } }
|
||||
}
|
||||
@@ -130,12 +123,6 @@ fn size_hint(&self) -> Option<uint> {
|
||||
}
|
||||
|
||||
impl<T> MutableIter<T> for Option<T> {
|
||||
#[cfg(stage0)]
|
||||
#[inline(always)]
|
||||
fn each_mut<'a>(&'a mut self, f: &fn(&'a mut T) -> bool) {
|
||||
match *self { None => (), Some(ref mut t) => { f(t); } }
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
#[inline(always)]
|
||||
fn each_mut<'a>(&'a mut self, f: &fn(&'a mut T) -> bool) -> bool {
|
||||
match *self { None => true, Some(ref mut t) => { f(t) } }
|
||||
@@ -143,11 +130,6 @@ fn each_mut<'a>(&'a mut self, f: &fn(&'a mut T) -> bool) -> bool {
|
||||
}
|
||||
|
||||
impl<A> ExtendedIter<A> for Option<A> {
|
||||
#[cfg(stage0)]
|
||||
pub fn eachi(&self, blk: &fn(uint, v: &A) -> bool) {
|
||||
old_iter::eachi(self, blk)
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn eachi(&self, blk: &fn(uint, v: &A) -> bool) -> bool {
|
||||
old_iter::eachi(self, blk)
|
||||
}
|
||||
|
||||
@@ -575,37 +575,8 @@ fn lookup() -> Path {
|
||||
getenv_nonempty("WINDIR")))).get_or_default(Path("C:\\Windows"))
|
||||
}
|
||||
}
|
||||
/// Recursively walk a directory structure
|
||||
#[cfg(stage0)]
|
||||
pub fn walk_dir(p: &Path, f: &fn(&Path) -> bool) {
|
||||
|
||||
walk_dir_(p, f);
|
||||
|
||||
fn walk_dir_(p: &Path, f: &fn(&Path) -> bool) -> bool {
|
||||
let mut keepgoing = true;
|
||||
do list_dir(p).each |q| {
|
||||
let path = &p.push(*q);
|
||||
if !f(path) {
|
||||
keepgoing = false;
|
||||
false
|
||||
} else {
|
||||
if path_is_dir(path) {
|
||||
if !walk_dir_(path, f) {
|
||||
keepgoing = false;
|
||||
false
|
||||
} else {
|
||||
true
|
||||
}
|
||||
} else {
|
||||
true
|
||||
}
|
||||
}
|
||||
}
|
||||
return keepgoing;
|
||||
}
|
||||
}
|
||||
/// Recursively walk a directory structure
|
||||
#[cfg(not(stage0))]
|
||||
pub fn walk_dir(p: &Path, f: &fn(&Path) -> bool) -> bool {
|
||||
list_dir(p).each(|q| {
|
||||
let path = &p.push(*q);
|
||||
|
||||
@@ -22,9 +22,6 @@
|
||||
use kinds::Owned;
|
||||
use rt::sched::Coroutine;
|
||||
use rt::local_sched;
|
||||
#[cfg(stage0)]
|
||||
use unstable::intrinsics::{atomic_xchg};
|
||||
#[cfg(not(stage0))]
|
||||
use unstable::intrinsics::{atomic_xchg, atomic_load};
|
||||
use util::Void;
|
||||
use comm::{GenericChan, GenericSmartChan, GenericPort, Peekable};
|
||||
@@ -210,10 +207,6 @@ pub fn try_recv(self) -> Option<T> {
|
||||
}
|
||||
|
||||
impl<T> Peekable<T> for PortOne<T> {
|
||||
#[cfg(stage0)]
|
||||
fn peek(&self) -> bool { fail!() }
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
fn peek(&self) -> bool {
|
||||
unsafe {
|
||||
let packet: *mut Packet<T> = self.inner.packet();
|
||||
|
||||
@@ -253,18 +253,13 @@
|
||||
|
||||
pub use self::file::FileStream;
|
||||
pub use self::net::ip::IpAddr;
|
||||
#[cfg(not(stage0))]
|
||||
pub use self::net::tcp::TcpListener;
|
||||
#[cfg(not(stage0))]
|
||||
pub use self::net::tcp::TcpStream;
|
||||
pub use self::net::udp::UdpStream;
|
||||
|
||||
// Some extension traits that all Readers and Writers get.
|
||||
#[cfg(not(stage0))] // Requires condition! fixes
|
||||
pub use self::extensions::ReaderUtil;
|
||||
#[cfg(not(stage0))] // Requires condition! fixes
|
||||
pub use self::extensions::ReaderByteConversions;
|
||||
#[cfg(not(stage0))] // Requires condition! fixes
|
||||
pub use self::extensions::WriterByteConversions;
|
||||
|
||||
/// Synchronous, non-blocking file I/O.
|
||||
@@ -272,7 +267,6 @@
|
||||
|
||||
/// Synchronous, non-blocking network I/O.
|
||||
pub mod net {
|
||||
#[cfg(not(stage0))]
|
||||
pub mod tcp;
|
||||
pub mod udp;
|
||||
pub mod ip;
|
||||
@@ -288,7 +282,6 @@ pub mod net {
|
||||
pub mod stdio;
|
||||
|
||||
/// Implementations for Option
|
||||
#[cfg(not(stage0))] // Requires condition! fixes
|
||||
mod option;
|
||||
|
||||
/// Basic stream compression. XXX: Belongs with other flate code
|
||||
@@ -298,7 +291,6 @@ pub mod net {
|
||||
pub mod comm_adapters;
|
||||
|
||||
/// Extension traits
|
||||
#[cfg(not(stage0))] // Requires condition! fixes
|
||||
mod extensions;
|
||||
|
||||
/// Non-I/O things needed by the I/O module
|
||||
|
||||
@@ -24,35 +24,6 @@ pub fn Frame(fp: *Word) -> Frame {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn walk_stack(visit: &fn(Frame) -> bool) {
|
||||
|
||||
debug!("beginning stack walk");
|
||||
|
||||
do frame_address |frame_pointer| {
|
||||
let mut frame_address: *Word = unsafe {
|
||||
transmute(frame_pointer)
|
||||
};
|
||||
loop {
|
||||
let fr = Frame(frame_address);
|
||||
|
||||
debug!("frame: %x", unsafe { transmute(fr.fp) });
|
||||
visit(fr);
|
||||
|
||||
unsafe {
|
||||
let next_fp: **Word = transmute(frame_address);
|
||||
frame_address = *next_fp;
|
||||
if *frame_address == 0u {
|
||||
debug!("encountered task_start_wrapper. ending walk");
|
||||
// This is the task_start_wrapper_frame. There is
|
||||
// no stack beneath it and it is a foreign frame.
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn walk_stack(visit: &fn(Frame) -> bool) -> bool {
|
||||
|
||||
debug!("beginning stack walk");
|
||||
|
||||
+8
-374
@@ -557,27 +557,12 @@ pub fn slice<'a>(s: &'a str, begin: uint, end: uint) -> &'a str {
|
||||
}
|
||||
|
||||
/// Splits a string into substrings at each occurrence of a given character
|
||||
#[cfg(stage0)]
|
||||
pub fn each_split_char<'a>(s: &'a str, sep: char, it: &fn(&'a str) -> bool) {
|
||||
each_split_char_inner(s, sep, len(s), true, true, it);
|
||||
}
|
||||
|
||||
/// Splits a string into substrings at each occurrence of a given character
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_split_char<'a>(s: &'a str, sep: char,
|
||||
it: &fn(&'a str) -> bool) -> bool {
|
||||
each_split_char_inner(s, sep, len(s), true, true, it)
|
||||
}
|
||||
|
||||
/// Like `each_split_char`, but a trailing empty string is omitted
|
||||
#[cfg(stage0)]
|
||||
pub fn each_split_char_no_trailing<'a>(s: &'a str,
|
||||
sep: char,
|
||||
it: &fn(&'a str) -> bool) {
|
||||
each_split_char_inner(s, sep, len(s), true, false, it);
|
||||
}
|
||||
/// Like `each_split_char`, but a trailing empty string is omitted
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_split_char_no_trailing<'a>(s: &'a str,
|
||||
sep: char,
|
||||
it: &fn(&'a str) -> bool) -> bool {
|
||||
@@ -590,20 +575,6 @@ pub fn each_split_char_no_trailing<'a>(s: &'a str,
|
||||
*
|
||||
* The character must be a valid UTF-8/ASCII character
|
||||
*/
|
||||
#[cfg(stage0)]
|
||||
pub fn each_splitn_char<'a>(s: &'a str,
|
||||
sep: char,
|
||||
count: uint,
|
||||
it: &fn(&'a str) -> bool) {
|
||||
each_split_char_inner(s, sep, count, true, true, it);
|
||||
}
|
||||
/**
|
||||
* Splits a string into substrings at each occurrence of a given
|
||||
* character up to 'count' times.
|
||||
*
|
||||
* The character must be a valid UTF-8/ASCII character
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_splitn_char<'a>(s: &'a str,
|
||||
sep: char,
|
||||
count: uint,
|
||||
@@ -612,14 +583,6 @@ pub fn each_splitn_char<'a>(s: &'a str,
|
||||
}
|
||||
|
||||
/// Like `each_split_char`, but omits empty strings
|
||||
#[cfg(stage0)]
|
||||
pub fn each_split_char_nonempty<'a>(s: &'a str,
|
||||
sep: char,
|
||||
it: &fn(&'a str) -> bool) {
|
||||
each_split_char_inner(s, sep, len(s), false, false, it);
|
||||
}
|
||||
/// Like `each_split_char`, but omits empty strings
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_split_char_nonempty<'a>(s: &'a str,
|
||||
sep: char,
|
||||
it: &fn(&'a str) -> bool) -> bool {
|
||||
@@ -659,14 +622,6 @@ fn each_split_char_inner<'a>(s: &'a str,
|
||||
}
|
||||
|
||||
/// Splits a string into substrings using a character function
|
||||
#[cfg(stage0)]
|
||||
pub fn each_split<'a>(s: &'a str,
|
||||
sepfn: &fn(char) -> bool,
|
||||
it: &fn(&'a str) -> bool) {
|
||||
each_split_inner(s, sepfn, len(s), true, true, it);
|
||||
}
|
||||
/// Splits a string into substrings using a character function
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_split<'a>(s: &'a str,
|
||||
sepfn: &fn(char) -> bool,
|
||||
it: &fn(&'a str) -> bool) -> bool {
|
||||
@@ -674,14 +629,6 @@ pub fn each_split<'a>(s: &'a str,
|
||||
}
|
||||
|
||||
/// Like `each_split`, but a trailing empty string is omitted
|
||||
#[cfg(stage0)]
|
||||
pub fn each_split_no_trailing<'a>(s: &'a str,
|
||||
sepfn: &fn(char) -> bool,
|
||||
it: &fn(&'a str) -> bool) {
|
||||
each_split_inner(s, sepfn, len(s), true, false, it);
|
||||
}
|
||||
/// Like `each_split`, but a trailing empty string is omitted
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_split_no_trailing<'a>(s: &'a str,
|
||||
sepfn: &fn(char) -> bool,
|
||||
it: &fn(&'a str) -> bool) -> bool {
|
||||
@@ -692,18 +639,6 @@ pub fn each_split_no_trailing<'a>(s: &'a str,
|
||||
* Splits a string into substrings using a character function, cutting at
|
||||
* most `count` times.
|
||||
*/
|
||||
#[cfg(stage0)]
|
||||
pub fn each_splitn<'a>(s: &'a str,
|
||||
sepfn: &fn(char) -> bool,
|
||||
count: uint,
|
||||
it: &fn(&'a str) -> bool) {
|
||||
each_split_inner(s, sepfn, count, true, true, it);
|
||||
}
|
||||
/**
|
||||
* Splits a string into substrings using a character function, cutting at
|
||||
* most `count` times.
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_splitn<'a>(s: &'a str,
|
||||
sepfn: &fn(char) -> bool,
|
||||
count: uint,
|
||||
@@ -712,14 +647,6 @@ pub fn each_splitn<'a>(s: &'a str,
|
||||
}
|
||||
|
||||
/// Like `each_split`, but omits empty strings
|
||||
#[cfg(stage0)]
|
||||
pub fn each_split_nonempty<'a>(s: &'a str,
|
||||
sepfn: &fn(char) -> bool,
|
||||
it: &fn(&'a str) -> bool) {
|
||||
each_split_inner(s, sepfn, len(s), false, false, it);
|
||||
}
|
||||
/// Like `each_split`, but omits empty strings
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_split_nonempty<'a>(s: &'a str,
|
||||
sepfn: &fn(char) -> bool,
|
||||
it: &fn(&'a str) -> bool) -> bool {
|
||||
@@ -754,36 +681,6 @@ fn each_split_inner<'a>(s: &'a str,
|
||||
}
|
||||
|
||||
// See Issue #1932 for why this is a naive search
|
||||
#[cfg(stage0)]
|
||||
fn iter_matches<'a,'b>(s: &'a str, sep: &'b str,
|
||||
f: &fn(uint, uint) -> bool) {
|
||||
let sep_len = len(sep), l = len(s);
|
||||
assert!(sep_len > 0u);
|
||||
let mut i = 0u, match_start = 0u, match_i = 0u;
|
||||
|
||||
while i < l {
|
||||
if s[i] == sep[match_i] {
|
||||
if match_i == 0u { match_start = i; }
|
||||
match_i += 1u;
|
||||
// Found a match
|
||||
if match_i == sep_len {
|
||||
if !f(match_start, i + 1u) { return; }
|
||||
match_i = 0u;
|
||||
}
|
||||
i += 1u;
|
||||
} else {
|
||||
// Failed match, backtrack
|
||||
if match_i > 0u {
|
||||
match_i = 0u;
|
||||
i = match_start + 1u;
|
||||
} else {
|
||||
i += 1u;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// See Issue #1932 for why this is a naive search
|
||||
#[cfg(not(stage0))]
|
||||
fn iter_matches<'a,'b>(s: &'a str, sep: &'b str,
|
||||
f: &fn(uint, uint) -> bool) -> bool {
|
||||
let sep_len = len(sep), l = len(s);
|
||||
@@ -813,18 +710,6 @@ fn iter_matches<'a,'b>(s: &'a str, sep: &'b str,
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn iter_between_matches<'a,'b>(s: &'a str,
|
||||
sep: &'b str,
|
||||
f: &fn(uint, uint) -> bool) {
|
||||
let mut last_end = 0u;
|
||||
for iter_matches(s, sep) |from, to| {
|
||||
if !f(last_end, from) { return; }
|
||||
last_end = to;
|
||||
}
|
||||
f(last_end, len(s));
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn iter_between_matches<'a,'b>(s: &'a str,
|
||||
sep: &'b str,
|
||||
f: &fn(uint, uint) -> bool) -> bool {
|
||||
@@ -847,26 +732,6 @@ fn iter_between_matches<'a,'b>(s: &'a str,
|
||||
* assert!(v == ["", "XXX", "YYY", ""]);
|
||||
* ~~~
|
||||
*/
|
||||
#[cfg(stage0)]
|
||||
pub fn each_split_str<'a,'b>(s: &'a str,
|
||||
sep: &'b str,
|
||||
it: &fn(&'a str) -> bool) {
|
||||
for iter_between_matches(s, sep) |from, to| {
|
||||
if !it( unsafe { raw::slice_bytes(s, from, to) } ) { return; }
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Splits a string into a vector of the substrings separated by a given string
|
||||
*
|
||||
* # Example
|
||||
*
|
||||
* ~~~
|
||||
* let mut v = ~[];
|
||||
* for each_split_str(".XXX.YYY.", ".") |subs| { v.push(subs); }
|
||||
* assert!(v == ["", "XXX", "YYY", ""]);
|
||||
* ~~~
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_split_str<'a,'b>(s: &'a str,
|
||||
sep: &'b str,
|
||||
it: &fn(&'a str) -> bool) -> bool {
|
||||
@@ -876,18 +741,6 @@ pub fn each_split_str<'a,'b>(s: &'a str,
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn each_split_str_nonempty<'a,'b>(s: &'a str,
|
||||
sep: &'b str,
|
||||
it: &fn(&'a str) -> bool) {
|
||||
for iter_between_matches(s, sep) |from, to| {
|
||||
if to > from {
|
||||
if !it( unsafe { raw::slice_bytes(s, from, to) } ) { return; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_split_str_nonempty<'a,'b>(s: &'a str,
|
||||
sep: &'b str,
|
||||
it: &fn(&'a str) -> bool) -> bool {
|
||||
@@ -936,14 +789,6 @@ pub fn levdistance(s: &str, t: &str) -> uint {
|
||||
/**
|
||||
* Splits a string into substrings separated by LF ('\n').
|
||||
*/
|
||||
#[cfg(stage0)]
|
||||
pub fn each_line<'a>(s: &'a str, it: &fn(&'a str) -> bool) {
|
||||
each_split_char_no_trailing(s, '\n', it);
|
||||
}
|
||||
/**
|
||||
* Splits a string into substrings separated by LF ('\n').
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_line<'a>(s: &'a str, it: &fn(&'a str) -> bool) -> bool {
|
||||
each_split_char_no_trailing(s, '\n', it)
|
||||
}
|
||||
@@ -952,22 +797,6 @@ pub fn each_line<'a>(s: &'a str, it: &fn(&'a str) -> bool) -> bool {
|
||||
* Splits a string into substrings separated by LF ('\n')
|
||||
* and/or CR LF ("\r\n")
|
||||
*/
|
||||
#[cfg(stage0)]
|
||||
pub fn each_line_any<'a>(s: &'a str, it: &fn(&'a str) -> bool) {
|
||||
for each_line(s) |s| {
|
||||
let l = s.len();
|
||||
if l > 0u && s[l - 1u] == '\r' as u8 {
|
||||
if !it( unsafe { raw::slice_bytes(s, 0, l - 1) } ) { return; }
|
||||
} else {
|
||||
if !it( s ) { return; }
|
||||
}
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Splits a string into substrings separated by LF ('\n')
|
||||
* and/or CR LF ("\r\n")
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_line_any<'a>(s: &'a str, it: &fn(&'a str) -> bool) -> bool {
|
||||
for each_line(s) |s| {
|
||||
let l = s.len();
|
||||
@@ -981,12 +810,6 @@ pub fn each_line_any<'a>(s: &'a str, it: &fn(&'a str) -> bool) -> bool {
|
||||
}
|
||||
|
||||
/// Splits a string into substrings separated by whitespace
|
||||
#[cfg(stage0)]
|
||||
pub fn each_word<'a>(s: &'a str, it: &fn(&'a str) -> bool) {
|
||||
each_split_nonempty(s, char::is_whitespace, it);
|
||||
}
|
||||
/// Splits a string into substrings separated by whitespace
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_word<'a>(s: &'a str, it: &fn(&'a str) -> bool) -> bool {
|
||||
each_split_nonempty(s, char::is_whitespace, it)
|
||||
}
|
||||
@@ -1063,13 +886,6 @@ enum LengthLimit {
|
||||
return cont;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn each_split_within<'a>(ss: &'a str,
|
||||
lim: uint,
|
||||
it: &fn(&'a str) -> bool) {
|
||||
_each_split_within(ss, lim, it);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_split_within<'a>(ss: &'a str,
|
||||
lim: uint,
|
||||
it: &fn(&'a str) -> bool) -> bool {
|
||||
@@ -1352,33 +1168,12 @@ pub fn map(ss: &str, ff: &fn(char) -> char) -> ~str {
|
||||
|
||||
/// Iterate over the bytes in a string
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
pub fn each(s: &str, it: &fn(u8) -> bool) {
|
||||
eachi(s, |_i, b| it(b))
|
||||
}
|
||||
/// Iterate over the bytes in a string
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each(s: &str, it: &fn(u8) -> bool) -> bool {
|
||||
eachi(s, |_i, b| it(b))
|
||||
}
|
||||
|
||||
/// Iterate over the bytes in a string, with indices
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
pub fn eachi(s: &str, it: &fn(uint, u8) -> bool) {
|
||||
let mut pos = 0;
|
||||
let len = s.len();
|
||||
|
||||
while pos < len {
|
||||
if !it(pos, s[pos]) { break; }
|
||||
pos += 1;
|
||||
}
|
||||
}
|
||||
|
||||
/// Iterate over the bytes in a string, with indices
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
pub fn eachi(s: &str, it: &fn(uint, u8) -> bool) -> bool {
|
||||
let mut pos = 0;
|
||||
let len = s.len();
|
||||
@@ -1392,30 +1187,12 @@ pub fn eachi(s: &str, it: &fn(uint, u8) -> bool) -> bool {
|
||||
|
||||
/// Iterate over the bytes in a string in reverse
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
pub fn each_reverse(s: &str, it: &fn(u8) -> bool) {
|
||||
eachi_reverse(s, |_i, b| it(b) )
|
||||
}
|
||||
/// Iterate over the bytes in a string in reverse
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_reverse(s: &str, it: &fn(u8) -> bool) -> bool {
|
||||
eachi_reverse(s, |_i, b| it(b) )
|
||||
}
|
||||
|
||||
/// Iterate over the bytes in a string in reverse, with indices
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
pub fn eachi_reverse(s: &str, it: &fn(uint, u8) -> bool) {
|
||||
let mut pos = s.len();
|
||||
while pos > 0 {
|
||||
pos -= 1;
|
||||
if !it(pos, s[pos]) { break; }
|
||||
}
|
||||
}
|
||||
/// Iterate over the bytes in a string in reverse, with indices
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
pub fn eachi_reverse(s: &str, it: &fn(uint, u8) -> bool) -> bool {
|
||||
let mut pos = s.len();
|
||||
while pos > 0 {
|
||||
@@ -1427,19 +1204,6 @@ pub fn eachi_reverse(s: &str, it: &fn(uint, u8) -> bool) -> bool {
|
||||
|
||||
/// Iterate over each char of a string, without allocating
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
pub fn each_char(s: &str, it: &fn(char) -> bool) {
|
||||
let mut i = 0;
|
||||
let len = len(s);
|
||||
while i < len {
|
||||
let CharRange {ch, next} = char_range_at(s, i);
|
||||
if !it(ch) { return; }
|
||||
i = next;
|
||||
}
|
||||
}
|
||||
/// Iterate over each char of a string, without allocating
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_char(s: &str, it: &fn(char) -> bool) -> bool {
|
||||
let mut i = 0;
|
||||
let len = len(s);
|
||||
@@ -1453,21 +1217,6 @@ pub fn each_char(s: &str, it: &fn(char) -> bool) -> bool {
|
||||
|
||||
/// Iterates over the chars in a string, with indices
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
pub fn each_chari(s: &str, it: &fn(uint, char) -> bool) {
|
||||
let mut pos = 0;
|
||||
let mut ch_pos = 0u;
|
||||
let len = s.len();
|
||||
while pos < len {
|
||||
let CharRange {ch, next} = char_range_at(s, pos);
|
||||
pos = next;
|
||||
if !it(ch_pos, ch) { break; }
|
||||
ch_pos += 1u;
|
||||
}
|
||||
}
|
||||
/// Iterates over the chars in a string, with indices
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_chari(s: &str, it: &fn(uint, char) -> bool) -> bool {
|
||||
let mut pos = 0;
|
||||
let mut ch_pos = 0u;
|
||||
@@ -1483,35 +1232,12 @@ pub fn each_chari(s: &str, it: &fn(uint, char) -> bool) -> bool {
|
||||
|
||||
/// Iterates over the chars in a string in reverse
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
pub fn each_char_reverse(s: &str, it: &fn(char) -> bool) {
|
||||
each_chari_reverse(s, |_, c| it(c))
|
||||
}
|
||||
/// Iterates over the chars in a string in reverse
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_char_reverse(s: &str, it: &fn(char) -> bool) -> bool {
|
||||
each_chari_reverse(s, |_, c| it(c))
|
||||
}
|
||||
|
||||
// Iterates over the chars in a string in reverse, with indices
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
pub fn each_chari_reverse(s: &str, it: &fn(uint, char) -> bool) {
|
||||
let mut pos = s.len();
|
||||
let mut ch_pos = s.char_len();
|
||||
while pos > 0 {
|
||||
let CharRange {ch, next} = char_range_at_reverse(s, pos);
|
||||
pos = next;
|
||||
ch_pos -= 1;
|
||||
|
||||
if !it(ch_pos, ch) { break; }
|
||||
|
||||
}
|
||||
}
|
||||
// Iterates over the chars in a string in reverse, with indices
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_chari_reverse(s: &str, it: &fn(uint, char) -> bool) -> bool {
|
||||
let mut pos = s.len();
|
||||
let mut ch_pos = s.char_len();
|
||||
@@ -2761,22 +2487,14 @@ pub trait StrSlice<'self> {
|
||||
fn contains<'a>(&self, needle: &'a str) -> bool;
|
||||
fn contains_char(&self, needle: char) -> bool;
|
||||
fn char_iter(&self) -> StrCharIterator<'self>;
|
||||
#[cfg(stage0)] fn each(&self, it: &fn(u8) -> bool);
|
||||
#[cfg(not(stage0))] fn each(&self, it: &fn(u8) -> bool) -> bool;
|
||||
#[cfg(stage0)] fn eachi(&self, it: &fn(uint, u8) -> bool);
|
||||
#[cfg(not(stage0))] fn eachi(&self, it: &fn(uint, u8) -> bool) -> bool;
|
||||
#[cfg(stage0)] fn each_reverse(&self, it: &fn(u8) -> bool);
|
||||
#[cfg(not(stage0))] fn each_reverse(&self, it: &fn(u8) -> bool) -> bool;
|
||||
#[cfg(stage0)] fn eachi_reverse(&self, it: &fn(uint, u8) -> bool);
|
||||
#[cfg(not(stage0))] fn eachi_reverse(&self, it: &fn(uint, u8) -> bool) -> bool;
|
||||
#[cfg(stage0)] fn each_char(&self, it: &fn(char) -> bool);
|
||||
#[cfg(not(stage0))] fn each_char(&self, it: &fn(char) -> bool) -> bool;
|
||||
#[cfg(stage0)] fn each_chari(&self, it: &fn(uint, char) -> bool);
|
||||
#[cfg(not(stage0))] fn each_chari(&self, it: &fn(uint, char) -> bool) -> bool;
|
||||
#[cfg(stage0)] fn each_char_reverse(&self, it: &fn(char) -> bool);
|
||||
#[cfg(not(stage0))] fn each_char_reverse(&self, it: &fn(char) -> bool) -> bool;
|
||||
#[cfg(stage0)] fn each_chari_reverse(&self, it: &fn(uint, char) -> bool);
|
||||
#[cfg(not(stage0))] fn each_chari_reverse(&self, it: &fn(uint, char) -> bool) -> bool;
|
||||
fn each(&self, it: &fn(u8) -> bool) -> bool;
|
||||
fn eachi(&self, it: &fn(uint, u8) -> bool) -> bool;
|
||||
fn each_reverse(&self, it: &fn(u8) -> bool) -> bool;
|
||||
fn eachi_reverse(&self, it: &fn(uint, u8) -> bool) -> bool;
|
||||
fn each_char(&self, it: &fn(char) -> bool) -> bool;
|
||||
fn each_chari(&self, it: &fn(uint, char) -> bool) -> bool;
|
||||
fn each_char_reverse(&self, it: &fn(char) -> bool) -> bool;
|
||||
fn each_chari_reverse(&self, it: &fn(uint, char) -> bool) -> bool;
|
||||
fn ends_with(&self, needle: &str) -> bool;
|
||||
fn is_empty(&self) -> bool;
|
||||
fn is_whitespace(&self) -> bool;
|
||||
@@ -2784,17 +2502,8 @@ pub trait StrSlice<'self> {
|
||||
fn len(&self) -> uint;
|
||||
fn char_len(&self) -> uint;
|
||||
fn slice(&self, begin: uint, end: uint) -> &'self str;
|
||||
#[cfg(stage0)]
|
||||
fn each_split(&self, sepfn: &fn(char) -> bool, it: &fn(&'self str) -> bool);
|
||||
#[cfg(not(stage0))]
|
||||
fn each_split(&self, sepfn: &fn(char) -> bool, it: &fn(&'self str) -> bool) -> bool;
|
||||
#[cfg(stage0)]
|
||||
fn each_split_char(&self, sep: char, it: &fn(&'self str) -> bool);
|
||||
#[cfg(not(stage0))]
|
||||
fn each_split_char(&self, sep: char, it: &fn(&'self str) -> bool) -> bool;
|
||||
#[cfg(stage0)]
|
||||
fn each_split_str<'a>(&self, sep: &'a str, it: &fn(&'self str) -> bool);
|
||||
#[cfg(not(stage0))]
|
||||
fn each_split_str<'a>(&self, sep: &'a str, it: &fn(&'self str) -> bool) -> bool;
|
||||
fn starts_with<'a>(&self, needle: &'a str) -> bool;
|
||||
fn substr(&self, begin: uint, n: uint) -> &'self str;
|
||||
@@ -2848,83 +2557,34 @@ fn char_iter(&self) -> StrCharIterator<'self> {
|
||||
|
||||
/// Iterate over the bytes in a string
|
||||
#[inline]
|
||||
#[cfg(stage0)]
|
||||
fn each(&self, it: &fn(u8) -> bool) { each(*self, it) }
|
||||
/// Iterate over the bytes in a string
|
||||
#[inline]
|
||||
#[cfg(not(stage0))]
|
||||
fn each(&self, it: &fn(u8) -> bool) -> bool { each(*self, it) }
|
||||
/// Iterate over the bytes in a string, with indices
|
||||
#[inline]
|
||||
#[cfg(stage0)]
|
||||
fn eachi(&self, it: &fn(uint, u8) -> bool) { eachi(*self, it) }
|
||||
/// Iterate over the bytes in a string, with indices
|
||||
#[inline]
|
||||
#[cfg(not(stage0))]
|
||||
fn eachi(&self, it: &fn(uint, u8) -> bool) -> bool { eachi(*self, it) }
|
||||
/// Iterate over the bytes in a string
|
||||
#[inline]
|
||||
#[cfg(stage0)]
|
||||
fn each_reverse(&self, it: &fn(u8) -> bool) { each_reverse(*self, it) }
|
||||
/// Iterate over the bytes in a string
|
||||
#[inline]
|
||||
#[cfg(not(stage0))]
|
||||
fn each_reverse(&self, it: &fn(u8) -> bool) -> bool { each_reverse(*self, it) }
|
||||
/// Iterate over the bytes in a string, with indices
|
||||
#[inline]
|
||||
#[cfg(stage0)]
|
||||
fn eachi_reverse(&self, it: &fn(uint, u8) -> bool) {
|
||||
eachi_reverse(*self, it)
|
||||
}
|
||||
/// Iterate over the bytes in a string, with indices
|
||||
#[inline]
|
||||
#[cfg(not(stage0))]
|
||||
fn eachi_reverse(&self, it: &fn(uint, u8) -> bool) -> bool {
|
||||
eachi_reverse(*self, it)
|
||||
}
|
||||
/// Iterate over the chars in a string
|
||||
#[inline]
|
||||
#[cfg(stage0)]
|
||||
fn each_char(&self, it: &fn(char) -> bool) { each_char(*self, it) }
|
||||
/// Iterate over the chars in a string
|
||||
#[inline]
|
||||
#[cfg(not(stage0))]
|
||||
fn each_char(&self, it: &fn(char) -> bool) -> bool { each_char(*self, it) }
|
||||
/// Iterate over the chars in a string, with indices
|
||||
#[inline]
|
||||
#[cfg(stage0)]
|
||||
fn each_chari(&self, it: &fn(uint, char) -> bool) {
|
||||
each_chari(*self, it)
|
||||
}
|
||||
/// Iterate over the chars in a string, with indices
|
||||
#[inline]
|
||||
#[cfg(not(stage0))]
|
||||
fn each_chari(&self, it: &fn(uint, char) -> bool) -> bool {
|
||||
each_chari(*self, it)
|
||||
}
|
||||
/// Iterate over the chars in a string in reverse
|
||||
#[inline]
|
||||
#[cfg(stage0)]
|
||||
fn each_char_reverse(&self, it: &fn(char) -> bool) {
|
||||
each_char_reverse(*self, it)
|
||||
}
|
||||
/// Iterate over the chars in a string in reverse
|
||||
#[inline]
|
||||
#[cfg(not(stage0))]
|
||||
fn each_char_reverse(&self, it: &fn(char) -> bool) -> bool {
|
||||
each_char_reverse(*self, it)
|
||||
}
|
||||
/// Iterate over the chars in a string in reverse, with indices from the
|
||||
/// end
|
||||
#[inline]
|
||||
#[cfg(stage0)]
|
||||
fn each_chari_reverse(&self, it: &fn(uint, char) -> bool) {
|
||||
each_chari_reverse(*self, it)
|
||||
}
|
||||
/// Iterate over the chars in a string in reverse, with indices from the
|
||||
/// end
|
||||
#[inline]
|
||||
#[cfg(not(stage0))]
|
||||
fn each_chari_reverse(&self, it: &fn(uint, char) -> bool) -> bool {
|
||||
each_chari_reverse(*self, it)
|
||||
}
|
||||
@@ -2969,13 +2629,6 @@ fn slice(&self, begin: uint, end: uint) -> &'self str {
|
||||
}
|
||||
/// Splits a string into substrings using a character function
|
||||
#[inline]
|
||||
#[cfg(stage0)]
|
||||
fn each_split(&self, sepfn: &fn(char) -> bool, it: &fn(&'self str) -> bool) {
|
||||
each_split(*self, sepfn, it)
|
||||
}
|
||||
/// Splits a string into substrings using a character function
|
||||
#[inline]
|
||||
#[cfg(not(stage0))]
|
||||
fn each_split(&self, sepfn: &fn(char) -> bool, it: &fn(&'self str) -> bool) -> bool {
|
||||
each_split(*self, sepfn, it)
|
||||
}
|
||||
@@ -2983,15 +2636,6 @@ fn each_split(&self, sepfn: &fn(char) -> bool, it: &fn(&'self str) -> bool) -> b
|
||||
* Splits a string into substrings at each occurrence of a given character
|
||||
*/
|
||||
#[inline]
|
||||
#[cfg(stage0)]
|
||||
fn each_split_char(&self, sep: char, it: &fn(&'self str) -> bool) {
|
||||
each_split_char(*self, sep, it)
|
||||
}
|
||||
/**
|
||||
* Splits a string into substrings at each occurrence of a given character
|
||||
*/
|
||||
#[inline]
|
||||
#[cfg(not(stage0))]
|
||||
fn each_split_char(&self, sep: char, it: &fn(&'self str) -> bool) -> bool {
|
||||
each_split_char(*self, sep, it)
|
||||
}
|
||||
@@ -3000,16 +2644,6 @@ fn each_split_char(&self, sep: char, it: &fn(&'self str) -> bool) -> bool {
|
||||
* string
|
||||
*/
|
||||
#[inline]
|
||||
#[cfg(stage0)]
|
||||
fn each_split_str<'a>(&self, sep: &'a str, it: &fn(&'self str) -> bool) {
|
||||
each_split_str(*self, sep, it)
|
||||
}
|
||||
/**
|
||||
* Splits a string into a vector of the substrings separated by a given
|
||||
* string
|
||||
*/
|
||||
#[inline]
|
||||
#[cfg(not(stage0))]
|
||||
fn each_split_str<'a>(&self, sep: &'a str, it: &fn(&'self str) -> bool) -> bool {
|
||||
each_split_str(*self, sep, it)
|
||||
}
|
||||
|
||||
@@ -110,11 +110,6 @@ fn taskset_remove(tasks: &mut TaskSet, task: *rust_task) {
|
||||
let was_present = tasks.remove(&task);
|
||||
assert!(was_present);
|
||||
}
|
||||
#[cfg(stage0)]
|
||||
pub fn taskset_each(tasks: &TaskSet, blk: &fn(v: *rust_task) -> bool) {
|
||||
tasks.each(|k| blk(*k))
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn taskset_each(tasks: &TaskSet, blk: &fn(v: *rust_task) -> bool) -> bool {
|
||||
tasks.each(|k| blk(*k))
|
||||
}
|
||||
|
||||
+2
-346
@@ -22,11 +22,6 @@
|
||||
|
||||
pub type Cb<'self> = &'self fn(buf: &[u8]) -> bool;
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub trait IterBytes {
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb);
|
||||
}
|
||||
|
||||
/**
|
||||
* A trait to implement in order to make a type hashable;
|
||||
* This works in combination with the trait `Hash::Hash`, and
|
||||
@@ -34,7 +29,6 @@ pub trait IterBytes {
|
||||
* modified when default methods and trait inheritence are
|
||||
* completed.
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
pub trait IterBytes {
|
||||
/**
|
||||
* Call the provided callback `f` one or more times with
|
||||
@@ -53,16 +47,6 @@ pub trait IterBytes {
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl IterBytes for bool {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, _lsb0: bool, f: Cb) {
|
||||
f([
|
||||
*self as u8
|
||||
]);
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl IterBytes for bool {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, _lsb0: bool, f: Cb) -> bool {
|
||||
@@ -72,16 +56,6 @@ fn iter_bytes(&self, _lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl IterBytes for u8 {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, _lsb0: bool, f: Cb) {
|
||||
f([
|
||||
*self
|
||||
]);
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl IterBytes for u8 {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, _lsb0: bool, f: Cb) -> bool {
|
||||
@@ -91,24 +65,6 @@ fn iter_bytes(&self, _lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl IterBytes for u16 {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
if lsb0 {
|
||||
f([
|
||||
*self as u8,
|
||||
(*self >> 8) as u8
|
||||
]);
|
||||
} else {
|
||||
f([
|
||||
(*self >> 8) as u8,
|
||||
*self as u8
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl IterBytes for u16 {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -126,28 +82,6 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl IterBytes for u32 {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
if lsb0 {
|
||||
f([
|
||||
*self as u8,
|
||||
(*self >> 8) as u8,
|
||||
(*self >> 16) as u8,
|
||||
(*self >> 24) as u8,
|
||||
]);
|
||||
} else {
|
||||
f([
|
||||
(*self >> 24) as u8,
|
||||
(*self >> 16) as u8,
|
||||
(*self >> 8) as u8,
|
||||
*self as u8
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl IterBytes for u32 {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -169,36 +103,6 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl IterBytes for u64 {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
if lsb0 {
|
||||
f([
|
||||
*self as u8,
|
||||
(*self >> 8) as u8,
|
||||
(*self >> 16) as u8,
|
||||
(*self >> 24) as u8,
|
||||
(*self >> 32) as u8,
|
||||
(*self >> 40) as u8,
|
||||
(*self >> 48) as u8,
|
||||
(*self >> 56) as u8
|
||||
]);
|
||||
} else {
|
||||
f([
|
||||
(*self >> 56) as u8,
|
||||
(*self >> 48) as u8,
|
||||
(*self >> 40) as u8,
|
||||
(*self >> 32) as u8,
|
||||
(*self >> 24) as u8,
|
||||
(*self >> 16) as u8,
|
||||
(*self >> 8) as u8,
|
||||
*self as u8
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl IterBytes for u64 {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -228,14 +132,6 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl IterBytes for i8 {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
(*self as u8).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl IterBytes for i8 {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -243,14 +139,6 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl IterBytes for i16 {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
(*self as u16).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl IterBytes for i16 {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -258,14 +146,6 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl IterBytes for i32 {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
(*self as u32).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl IterBytes for i32 {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -273,14 +153,6 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl IterBytes for i64 {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
(*self as u64).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl IterBytes for i64 {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -288,14 +160,6 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl IterBytes for char {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
(*self as u32).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl IterBytes for char {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -303,14 +167,7 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(target_word_size = "32", stage0)]
|
||||
impl IterBytes for uint {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
(*self as u32).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(target_word_size = "32", not(stage0))]
|
||||
#[cfg(target_word_size = "32")]
|
||||
impl IterBytes for uint {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -318,14 +175,7 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(target_word_size = "64", stage0)]
|
||||
impl IterBytes for uint {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
(*self as u64).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(target_word_size = "64", not(stage0))]
|
||||
#[cfg(target_word_size = "64")]
|
||||
impl IterBytes for uint {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -333,14 +183,6 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl IterBytes for int {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
(*self as uint).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl IterBytes for int {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -348,18 +190,6 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl<'self,A:IterBytes> IterBytes for &'self [A] {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
for (*self).each |elt| {
|
||||
do elt.iter_bytes(lsb0) |bytes| {
|
||||
f(bytes)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl<'self,A:IterBytes> IterBytes for &'self [A] {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -367,18 +197,6 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl<A:IterBytes,B:IterBytes> IterBytes for (A,B) {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
match *self {
|
||||
(ref a, ref b) => {
|
||||
iter_bytes_2(a, b, lsb0, f);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl<A:IterBytes,B:IterBytes> IterBytes for (A,B) {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -388,18 +206,6 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl<A:IterBytes,B:IterBytes,C:IterBytes> IterBytes for (A,B,C) {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
match *self {
|
||||
(ref a, ref b, ref c) => {
|
||||
iter_bytes_3(a, b, c, lsb0, f);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl<A:IterBytes,B:IterBytes,C:IterBytes> IterBytes for (A,B,C) {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -416,14 +222,6 @@ fn borrow<'x,A>(a: &'x [A]) -> &'x [A] {
|
||||
a
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl<A:IterBytes> IterBytes for ~[A] {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
borrow(*self).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl<A:IterBytes> IterBytes for ~[A] {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -431,14 +229,6 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl<A:IterBytes> IterBytes for @[A] {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
borrow(*self).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl<A:IterBytes> IterBytes for @[A] {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -449,57 +239,18 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
// NOTE: remove all of these after a snapshot, the new for-loop iteration
|
||||
// protocol makes these unnecessary.
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn iter_bytes_2<A:IterBytes,B:IterBytes>(a: &A, b: &B,
|
||||
lsb0: bool, z: Cb) {
|
||||
let mut flag = true;
|
||||
a.iter_bytes(lsb0, |bytes| {flag = z(bytes); flag});
|
||||
if !flag { return; }
|
||||
b.iter_bytes(lsb0, |bytes| {flag = z(bytes); flag});
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
#[inline(always)]
|
||||
pub fn iter_bytes_2<A:IterBytes,B:IterBytes>(a: &A, b: &B,
|
||||
lsb0: bool, z: Cb) -> bool {
|
||||
a.iter_bytes(lsb0, z) && b.iter_bytes(lsb0, z)
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn iter_bytes_3<A: IterBytes,
|
||||
B: IterBytes,
|
||||
C: IterBytes>(a: &A, b: &B, c: &C,
|
||||
lsb0: bool, z: Cb) {
|
||||
let mut flag = true;
|
||||
a.iter_bytes(lsb0, |bytes| {flag = z(bytes); flag});
|
||||
if !flag { return; }
|
||||
b.iter_bytes(lsb0, |bytes| {flag = z(bytes); flag});
|
||||
if !flag { return; }
|
||||
c.iter_bytes(lsb0, |bytes| {flag = z(bytes); flag});
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn iter_bytes_3<A: IterBytes,
|
||||
B: IterBytes,
|
||||
C: IterBytes>(a: &A, b: &B, c: &C, lsb0: bool, z: Cb) -> bool {
|
||||
a.iter_bytes(lsb0, z) && b.iter_bytes(lsb0, z) && c.iter_bytes(lsb0, z)
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn iter_bytes_4<A: IterBytes,
|
||||
B: IterBytes,
|
||||
C: IterBytes,
|
||||
D: IterBytes>(a: &A, b: &B, c: &C,
|
||||
d: &D,
|
||||
lsb0: bool, z: Cb) {
|
||||
let mut flag = true;
|
||||
a.iter_bytes(lsb0, |bytes| {flag = z(bytes); flag});
|
||||
if !flag { return; }
|
||||
b.iter_bytes(lsb0, |bytes| {flag = z(bytes); flag});
|
||||
if !flag { return; }
|
||||
c.iter_bytes(lsb0, |bytes| {flag = z(bytes); flag});
|
||||
if !flag { return; }
|
||||
d.iter_bytes(lsb0, |bytes| {flag = z(bytes); flag});
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn iter_bytes_4<A: IterBytes,
|
||||
B: IterBytes,
|
||||
C: IterBytes,
|
||||
@@ -510,26 +261,6 @@ pub fn iter_bytes_4<A: IterBytes,
|
||||
d.iter_bytes(lsb0, z)
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn iter_bytes_5<A: IterBytes,
|
||||
B: IterBytes,
|
||||
C: IterBytes,
|
||||
D: IterBytes,
|
||||
E: IterBytes>(a: &A, b: &B, c: &C,
|
||||
d: &D, e: &E,
|
||||
lsb0: bool, z: Cb) {
|
||||
let mut flag = true;
|
||||
a.iter_bytes(lsb0, |bytes| {flag = z(bytes); flag});
|
||||
if !flag { return; }
|
||||
b.iter_bytes(lsb0, |bytes| {flag = z(bytes); flag});
|
||||
if !flag { return; }
|
||||
c.iter_bytes(lsb0, |bytes| {flag = z(bytes); flag});
|
||||
if !flag { return; }
|
||||
d.iter_bytes(lsb0, |bytes| {flag = z(bytes); flag});
|
||||
if !flag { return; }
|
||||
e.iter_bytes(lsb0, |bytes| {flag = z(bytes); flag});
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn iter_bytes_5<A: IterBytes,
|
||||
B: IterBytes,
|
||||
C: IterBytes,
|
||||
@@ -541,16 +272,6 @@ pub fn iter_bytes_5<A: IterBytes,
|
||||
d.iter_bytes(lsb0, z) && e.iter_bytes(lsb0, z)
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl<'self> IterBytes for &'self str {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, _lsb0: bool, f: Cb) {
|
||||
do str::byte_slice(*self) |bytes| {
|
||||
f(bytes);
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl<'self> IterBytes for &'self str {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, _lsb0: bool, f: Cb) -> bool {
|
||||
@@ -560,16 +281,6 @@ fn iter_bytes(&self, _lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl IterBytes for ~str {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, _lsb0: bool, f: Cb) {
|
||||
do str::byte_slice(*self) |bytes| {
|
||||
f(bytes);
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl IterBytes for ~str {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, _lsb0: bool, f: Cb) -> bool {
|
||||
@@ -579,16 +290,6 @@ fn iter_bytes(&self, _lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl IterBytes for @str {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, _lsb0: bool, f: Cb) {
|
||||
do str::byte_slice(*self) |bytes| {
|
||||
f(bytes);
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl IterBytes for @str {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, _lsb0: bool, f: Cb) -> bool {
|
||||
@@ -598,17 +299,6 @@ fn iter_bytes(&self, _lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl<A:IterBytes> IterBytes for Option<A> {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
match *self {
|
||||
Some(ref a) => iter_bytes_2(&0u8, a, lsb0, f),
|
||||
None => 1u8.iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl<A:IterBytes> IterBytes for Option<A> {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -619,14 +309,6 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl<'self,A:IterBytes> IterBytes for &'self A {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
(**self).iter_bytes(lsb0, f);
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl<'self,A:IterBytes> IterBytes for &'self A {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -634,14 +316,6 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl<A:IterBytes> IterBytes for @A {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
(**self).iter_bytes(lsb0, f);
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl<A:IterBytes> IterBytes for @A {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -649,14 +323,6 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl<A:IterBytes> IterBytes for ~A {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
(**self).iter_bytes(lsb0, f);
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl<A:IterBytes> IterBytes for ~A {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
@@ -666,16 +332,6 @@ fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
|
||||
// NB: raw-pointer IterBytes does _not_ dereference
|
||||
// to the target; it just gives you the pointer-bytes.
|
||||
#[cfg(stage0)]
|
||||
impl<A> IterBytes for *const A {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) {
|
||||
(*self as uint).iter_bytes(lsb0, f);
|
||||
}
|
||||
}
|
||||
// NB: raw-pointer IterBytes does _not_ dereference
|
||||
// to the target; it just gives you the pointer-bytes.
|
||||
#[cfg(not(stage0))]
|
||||
impl<A> IterBytes for *const A {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
|
||||
@@ -57,56 +57,24 @@ fn contains_key(&self, key: &uint) -> bool {
|
||||
|
||||
/// Visit all key-value pairs in order
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
fn each<'a>(&'a self, f: &fn(&uint, &'a T) -> bool) {
|
||||
self.root.each(f);
|
||||
}
|
||||
|
||||
/// Visit all key-value pairs in order
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
fn each<'a>(&'a self, f: &fn(&uint, &'a T) -> bool) -> bool {
|
||||
self.root.each(f)
|
||||
}
|
||||
|
||||
/// Visit all keys in order
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
fn each_key(&self, f: &fn(&uint) -> bool) {
|
||||
self.each(|k, _| f(k))
|
||||
}
|
||||
|
||||
/// Visit all keys in order
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
fn each_key(&self, f: &fn(&uint) -> bool) -> bool {
|
||||
self.each(|k, _| f(k))
|
||||
}
|
||||
|
||||
/// Visit all values in order
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
fn each_value<'a>(&'a self, f: &fn(&'a T) -> bool) {
|
||||
self.each(|_, v| f(v))
|
||||
}
|
||||
|
||||
/// Visit all values in order
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
fn each_value<'a>(&'a self, f: &fn(&'a T) -> bool) -> bool {
|
||||
self.each(|_, v| f(v))
|
||||
}
|
||||
|
||||
/// Iterate over the map and mutate the contained values
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
fn mutate_values(&mut self, f: &fn(&uint, &mut T) -> bool) {
|
||||
self.root.mutate_values(f);
|
||||
}
|
||||
|
||||
/// Iterate over the map and mutate the contained values
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
fn mutate_values(&mut self, f: &fn(&uint, &mut T) -> bool) -> bool {
|
||||
self.root.mutate_values(f)
|
||||
}
|
||||
@@ -183,40 +151,18 @@ fn new() -> TrieMap<T> {
|
||||
|
||||
/// Visit all key-value pairs in reverse order
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
fn each_reverse<'a>(&'a self, f: &fn(&uint, &'a T) -> bool) {
|
||||
self.root.each_reverse(f);
|
||||
}
|
||||
|
||||
/// Visit all key-value pairs in reverse order
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
fn each_reverse<'a>(&'a self, f: &fn(&uint, &'a T) -> bool) -> bool {
|
||||
self.root.each_reverse(f)
|
||||
}
|
||||
|
||||
/// Visit all keys in reverse order
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
fn each_key_reverse(&self, f: &fn(&uint) -> bool) {
|
||||
self.each_reverse(|k, _| f(k))
|
||||
}
|
||||
/// Visit all keys in reverse order
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
fn each_key_reverse(&self, f: &fn(&uint) -> bool) -> bool {
|
||||
self.each_reverse(|k, _| f(k))
|
||||
}
|
||||
|
||||
/// Visit all values in reverse order
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
fn each_value_reverse(&self, f: &fn(&T) -> bool) {
|
||||
self.each_reverse(|_, v| f(v))
|
||||
}
|
||||
/// Visit all values in reverse order
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
fn each_value_reverse(&self, f: &fn(&T) -> bool) -> bool {
|
||||
self.each_reverse(|_, v| f(v))
|
||||
}
|
||||
@@ -229,9 +175,6 @@ pub struct TrieSet {
|
||||
impl BaseIter<uint> for TrieSet {
|
||||
/// Visit all values in order
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
fn each(&self, f: &fn(&uint) -> bool) { self.map.each_key(f) }
|
||||
#[cfg(not(stage0))]
|
||||
fn each(&self, f: &fn(&uint) -> bool) -> bool { self.map.each_key(f) }
|
||||
#[inline(always)]
|
||||
fn size_hint(&self) -> Option<uint> { Some(self.len()) }
|
||||
@@ -240,11 +183,6 @@ fn size_hint(&self) -> Option<uint> { Some(self.len()) }
|
||||
impl ReverseIter<uint> for TrieSet {
|
||||
/// Visit all values in reverse order
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
fn each_reverse(&self, f: &fn(&uint) -> bool) {
|
||||
self.map.each_key_reverse(f)
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each_reverse(&self, f: &fn(&uint) -> bool) -> bool {
|
||||
self.map.each_key_reverse(f)
|
||||
}
|
||||
@@ -351,19 +289,6 @@ fn chunk(n: uint, idx: uint) -> uint {
|
||||
(n >> sh) & MASK
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn find_mut<'r, T>(child: &'r mut Child<T>, key: uint, idx: uint) -> Option<&'r mut T> {
|
||||
unsafe {
|
||||
(match *child {
|
||||
External(_, ref value) => Some(cast::transmute_mut(value)),
|
||||
Internal(ref x) => find_mut(cast::transmute_mut(&x.children[chunk(key, idx)]),
|
||||
key, idx + 1),
|
||||
Nothing => None
|
||||
}).map_consume(|x| cast::transmute_mut_region(x))
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
fn find_mut<'r, T>(child: &'r mut Child<T>, key: uint, idx: uint) -> Option<&'r mut T> {
|
||||
match *child {
|
||||
External(_, ref mut value) => Some(value),
|
||||
|
||||
@@ -14,19 +14,6 @@
|
||||
|
||||
pub mod general_category {
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn bsearch_range_table(c: char, r: &'static [(char,char)]) -> bool {
|
||||
use cmp::{Equal, Less, Greater};
|
||||
use vec::bsearch;
|
||||
use option::None;
|
||||
(do bsearch(r) |&(lo,hi)| {
|
||||
if lo <= c && c <= hi { Equal }
|
||||
else if hi < c { Less }
|
||||
else { Greater }
|
||||
}) != None
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
fn bsearch_range_table(c: char, r: &'static [(char,char)]) -> bool {
|
||||
use cmp::{Equal, Less, Greater};
|
||||
use vec::bsearch;
|
||||
@@ -1462,19 +1449,6 @@ pub fn Zs(c: char) -> bool {
|
||||
}
|
||||
|
||||
pub mod derived_property {
|
||||
#[cfg(stage0)]
|
||||
fn bsearch_range_table(c: char, r: &'static [(char,char)]) -> bool {
|
||||
use cmp::{Equal, Less, Greater};
|
||||
use vec::bsearch;
|
||||
use option::None;
|
||||
(do bsearch(r) |&(lo,hi)| {
|
||||
if lo <= c && c <= hi { Equal }
|
||||
else if hi < c { Less }
|
||||
else { Greater }
|
||||
}) != None
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
fn bsearch_range_table(c: char, r: &'static [(char,char)]) -> bool {
|
||||
use cmp::{Equal, Less, Greater};
|
||||
use vec::bsearch;
|
||||
|
||||
@@ -43,17 +43,13 @@
|
||||
pub fn atomic_cxchg_rel(dst: &mut int, old: int, src: int) -> int;
|
||||
|
||||
/// Atomic load, sequentially consistent.
|
||||
#[cfg(not(stage0))]
|
||||
pub fn atomic_load(src: &int) -> int;
|
||||
/// Atomic load, acquire ordering.
|
||||
#[cfg(not(stage0))]
|
||||
pub fn atomic_load_acq(src: &int) -> int;
|
||||
|
||||
/// Atomic store, sequentially consistent.
|
||||
#[cfg(not(stage0))]
|
||||
pub fn atomic_store(dst: &mut int, val: int);
|
||||
/// Atomic store, release ordering.
|
||||
#[cfg(not(stage0))]
|
||||
pub fn atomic_store_rel(dst: &mut int, val: int);
|
||||
|
||||
/// Atomic exchange, sequentially consistent.
|
||||
@@ -111,7 +107,6 @@
|
||||
pub unsafe fn init<T>() -> T;
|
||||
|
||||
/// Create an uninitialized value.
|
||||
#[cfg(not(stage0))]
|
||||
pub unsafe fn uninit<T>() -> T;
|
||||
|
||||
/// Move a value out of scope without running drop glue.
|
||||
|
||||
@@ -269,15 +269,6 @@ pub unsafe fn local_free(ptr: *c_char) {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
#[lang="borrow_as_imm"]
|
||||
#[inline(always)]
|
||||
pub unsafe fn borrow_as_imm(a: *u8) {
|
||||
let a: *mut BoxRepr = transmute(a);
|
||||
(*a).header.ref_count |= FROZEN_BIT;
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
#[lang="borrow_as_imm"]
|
||||
#[inline(always)]
|
||||
pub unsafe fn borrow_as_imm(a: *u8, file: *c_char, line: size_t) -> uint {
|
||||
@@ -296,7 +287,6 @@ pub unsafe fn borrow_as_imm(a: *u8, file: *c_char, line: size_t) -> uint {
|
||||
old_ref_count
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
#[lang="borrow_as_mut"]
|
||||
#[inline(always)]
|
||||
pub unsafe fn borrow_as_mut(a: *u8, file: *c_char, line: size_t) -> uint {
|
||||
@@ -316,7 +306,6 @@ pub unsafe fn borrow_as_mut(a: *u8, file: *c_char, line: size_t) -> uint {
|
||||
}
|
||||
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
#[lang="record_borrow"]
|
||||
pub unsafe fn record_borrow(a: *u8, old_ref_count: uint,
|
||||
file: *c_char, line: size_t) {
|
||||
@@ -332,7 +321,6 @@ pub unsafe fn record_borrow(a: *u8, old_ref_count: uint,
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
#[lang="unrecord_borrow"]
|
||||
pub unsafe fn unrecord_borrow(a: *u8, old_ref_count: uint,
|
||||
file: *c_char, line: size_t) {
|
||||
@@ -356,19 +344,6 @@ pub unsafe fn unrecord_borrow(a: *u8, old_ref_count: uint,
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
#[lang="return_to_mut"]
|
||||
#[inline(always)]
|
||||
pub unsafe fn return_to_mut(a: *u8) {
|
||||
// Sometimes the box is null, if it is conditionally frozen.
|
||||
// See e.g. #4904.
|
||||
if !a.is_null() {
|
||||
let a: *mut BoxRepr = transmute(a);
|
||||
(*a).header.ref_count &= !FROZEN_BIT;
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
#[lang="return_to_mut"]
|
||||
#[inline(always)]
|
||||
pub unsafe fn return_to_mut(a: *u8, orig_ref_count: uint,
|
||||
@@ -388,19 +363,6 @@ pub unsafe fn return_to_mut(a: *u8, orig_ref_count: uint,
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
#[lang="check_not_borrowed"]
|
||||
#[inline(always)]
|
||||
pub unsafe fn check_not_borrowed(a: *u8) {
|
||||
let a: *mut BoxRepr = transmute(a);
|
||||
if ((*a).header.ref_count & FROZEN_BIT) != 0 {
|
||||
do str::as_buf("XXX") |file_p, _| {
|
||||
fail_borrowed(a, file_p as *c_char, 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
#[lang="check_not_borrowed"]
|
||||
#[inline(always)]
|
||||
pub unsafe fn check_not_borrowed(a: *u8,
|
||||
|
||||
@@ -41,18 +41,6 @@ pub fn new(data: T) -> UnsafeAtomicRcBox<T> {
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
pub unsafe fn get(&self) -> *mut T
|
||||
{
|
||||
let mut data: ~AtomicRcBoxData<T> = cast::transmute(self.data);
|
||||
assert!(data.count > 0);
|
||||
let r: *mut T = cast::transmute(data.data.get_mut_ref());
|
||||
cast::forget(data);
|
||||
return r;
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
pub unsafe fn get(&self) -> *mut T
|
||||
{
|
||||
let mut data: ~AtomicRcBoxData<T> = cast::transmute(self.data);
|
||||
@@ -63,18 +51,6 @@ pub unsafe fn get(&self) -> *mut T
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
pub unsafe fn get_immut(&self) -> *T
|
||||
{
|
||||
let mut data: ~AtomicRcBoxData<T> = cast::transmute(self.data);
|
||||
assert!(data.count > 0);
|
||||
let r: *T = cast::transmute(data.data.get_mut_ref());
|
||||
cast::forget(data);
|
||||
return r;
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
pub unsafe fn get_immut(&self) -> *T
|
||||
{
|
||||
let mut data: ~AtomicRcBoxData<T> = cast::transmute(self.data);
|
||||
|
||||
@@ -60,7 +60,6 @@ pub fn swap<T>(x: &mut T, y: &mut T) {
|
||||
* deinitialising or copying either one.
|
||||
*/
|
||||
#[inline]
|
||||
#[cfg(not(stage0))]
|
||||
pub unsafe fn swap_ptr<T>(x: *mut T, y: *mut T) {
|
||||
if x == y { return }
|
||||
|
||||
@@ -78,29 +77,6 @@ pub unsafe fn swap_ptr<T>(x: *mut T, y: *mut T) {
|
||||
cast::forget(tmp);
|
||||
}
|
||||
|
||||
/**
|
||||
* Swap the values at two mutable locations of the same type, without
|
||||
* deinitialising or copying either one.
|
||||
*/
|
||||
#[inline]
|
||||
#[cfg(stage0)]
|
||||
pub unsafe fn swap_ptr<T>(x: *mut T, y: *mut T) {
|
||||
if x == y { return }
|
||||
|
||||
// Give ourselves some scratch space to work with
|
||||
let mut tmp: T = intrinsics::init();
|
||||
let t = ptr::to_mut_unsafe_ptr(&mut tmp);
|
||||
|
||||
// Perform the swap
|
||||
ptr::copy_memory(t, x, 1);
|
||||
ptr::copy_memory(x, y, 1);
|
||||
ptr::copy_memory(y, t, 1);
|
||||
|
||||
// y and t now point to the same thing, but we need to completely forget t
|
||||
// because it's no longer relevant.
|
||||
cast::forget(tmp);
|
||||
}
|
||||
|
||||
/**
|
||||
* Replace the value at a mutable location with a new one, returning the old
|
||||
* value, without deinitialising or copying either one.
|
||||
|
||||
@@ -583,21 +583,6 @@ pub fn consume_reverse<T>(mut v: ~[T], f: &fn(uint, v: T)) {
|
||||
}
|
||||
|
||||
/// Remove the last element from a vector and return it
|
||||
#[cfg(not(stage0))]
|
||||
pub fn pop<T>(v: &mut ~[T]) -> T {
|
||||
let ln = v.len();
|
||||
if ln == 0 {
|
||||
fail!("sorry, cannot vec::pop an empty vector")
|
||||
}
|
||||
let valptr = ptr::to_mut_unsafe_ptr(&mut v[ln - 1u]);
|
||||
unsafe {
|
||||
let val = util::replace_ptr(valptr, intrinsics::uninit());
|
||||
raw::set_len(v, ln - 1u);
|
||||
val
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn pop<T>(v: &mut ~[T]) -> T {
|
||||
let ln = v.len();
|
||||
if ln == 0 {
|
||||
@@ -672,7 +657,6 @@ pub fn push_all<T:Copy>(v: &mut ~[T], rhs: &const [T]) {
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
pub fn push_all_move<T>(v: &mut ~[T], mut rhs: ~[T]) {
|
||||
let new_len = v.len() + rhs.len();
|
||||
reserve(&mut *v, new_len);
|
||||
@@ -688,25 +672,7 @@ pub fn push_all_move<T>(v: &mut ~[T], mut rhs: ~[T]) {
|
||||
}
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
pub fn push_all_move<T>(v: &mut ~[T], mut rhs: ~[T]) {
|
||||
let new_len = v.len() + rhs.len();
|
||||
reserve(&mut *v, new_len);
|
||||
unsafe {
|
||||
do as_mut_buf(rhs) |p, len| {
|
||||
for uint::range(0, len) |i| {
|
||||
let x = util::replace_ptr(ptr::mut_offset(p, i),
|
||||
intrinsics::init());
|
||||
push(&mut *v, x);
|
||||
}
|
||||
}
|
||||
raw::set_len(&mut rhs, 0);
|
||||
}
|
||||
}
|
||||
|
||||
/// Shorten a vector, dropping excess elements.
|
||||
#[cfg(not(stage0))]
|
||||
pub fn truncate<T>(v: &mut ~[T], newlen: uint) {
|
||||
do as_mut_buf(*v) |p, oldlen| {
|
||||
assert!(newlen <= oldlen);
|
||||
@@ -720,26 +686,10 @@ pub fn truncate<T>(v: &mut ~[T], newlen: uint) {
|
||||
unsafe { raw::set_len(&mut *v, newlen); }
|
||||
}
|
||||
|
||||
/// Shorten a vector, dropping excess elements.
|
||||
#[cfg(stage0)]
|
||||
pub fn truncate<T>(v: &mut ~[T], newlen: uint) {
|
||||
do as_mut_buf(*v) |p, oldlen| {
|
||||
assert!(newlen <= oldlen);
|
||||
unsafe {
|
||||
// This loop is optimized out for non-drop types.
|
||||
for uint::range(newlen, oldlen) |i| {
|
||||
util::replace_ptr(ptr::mut_offset(p, i), intrinsics::init());
|
||||
}
|
||||
}
|
||||
}
|
||||
unsafe { raw::set_len(&mut *v, newlen); }
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove consecutive repeated elements from a vector; if the vector is
|
||||
* sorted, this removes all duplicates.
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
pub fn dedup<T:Eq>(v: &mut ~[T]) {
|
||||
unsafe {
|
||||
if v.len() < 1 { return; }
|
||||
@@ -773,45 +723,6 @@ pub fn dedup<T:Eq>(v: &mut ~[T]) {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove consecutive repeated elements from a vector; if the vector is
|
||||
* sorted, this removes all duplicates.
|
||||
*/
|
||||
#[cfg(stage0)]
|
||||
pub fn dedup<T:Eq>(v: &mut ~[T]) {
|
||||
unsafe {
|
||||
if v.len() < 1 { return; }
|
||||
let mut last_written = 0, next_to_read = 1;
|
||||
do as_const_buf(*v) |p, ln| {
|
||||
// We have a mutable reference to v, so we can make arbitrary
|
||||
// changes. (cf. push and pop)
|
||||
let p = p as *mut T;
|
||||
// last_written < next_to_read <= ln
|
||||
while next_to_read < ln {
|
||||
// last_written < next_to_read < ln
|
||||
if *ptr::mut_offset(p, next_to_read) ==
|
||||
*ptr::mut_offset(p, last_written) {
|
||||
util::replace_ptr(ptr::mut_offset(p, next_to_read),
|
||||
intrinsics::init());
|
||||
} else {
|
||||
last_written += 1;
|
||||
// last_written <= next_to_read < ln
|
||||
if next_to_read != last_written {
|
||||
util::swap_ptr(ptr::mut_offset(p, last_written),
|
||||
ptr::mut_offset(p, next_to_read));
|
||||
}
|
||||
}
|
||||
// last_written <= next_to_read < ln
|
||||
next_to_read += 1;
|
||||
// last_written < next_to_read <= ln
|
||||
}
|
||||
}
|
||||
// last_written < next_to_read == ln
|
||||
raw::set_len(v, last_written + 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Appending
|
||||
#[inline(always)]
|
||||
pub fn append<T:Copy>(lhs: ~[T], rhs: &const [T]) -> ~[T] {
|
||||
@@ -1557,9 +1468,6 @@ pub fn _each<'r,T>(v: &'r [T], f: &fn(&'r T) -> bool) -> bool {
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn each<'r,T>(v: &'r [T], f: &fn(&'r T) -> bool) { _each(v, f); }
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each<'r,T>(v: &'r [T], f: &fn(&'r T) -> bool) -> bool { _each(v, f) }
|
||||
|
||||
/// Like `each()`, but for the case where you have
|
||||
@@ -1584,11 +1492,6 @@ pub fn _each_mut<'r,T>(v: &'r mut [T], f: &fn(elem: &'r mut T) -> bool) -> bool
|
||||
return broke;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn each_mut<'r,T>(v: &'r mut [T], f: &fn(elem: &'r mut T) -> bool) {
|
||||
_each_mut(v, f);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_mut<'r,T>(v: &'r mut [T], f: &fn(elem: &'r mut T) -> bool) -> bool {
|
||||
_each_mut(v, f)
|
||||
}
|
||||
@@ -1608,11 +1511,6 @@ pub fn _each_const<T>(v: &const [T], f: &fn(elem: &const T) -> bool) -> bool {
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn each_const<t>(v: &const [t], f: &fn(elem: &const t) -> bool) {
|
||||
_each_const(v, f);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_const<t>(v: &const [t], f: &fn(elem: &const t) -> bool) -> bool {
|
||||
_each_const(v, f)
|
||||
}
|
||||
@@ -1632,9 +1530,6 @@ pub fn _eachi<'r,T>(v: &'r [T], f: &fn(uint, v: &'r T) -> bool) -> bool {
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn eachi<'r,T>(v: &'r [T], f: &fn(uint, v: &'r T) -> bool) { _eachi(v, f); }
|
||||
#[cfg(not(stage0))]
|
||||
pub fn eachi<'r,T>(v: &'r [T], f: &fn(uint, v: &'r T) -> bool) -> bool {
|
||||
_eachi(v, f)
|
||||
}
|
||||
@@ -1657,11 +1552,6 @@ pub fn _eachi_mut<'r,T>(v: &'r mut [T],
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn eachi_mut<'r,T>(v: &'r mut [T], f: &fn(uint, v: &'r mut T) -> bool) {
|
||||
_eachi_mut(v, f);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn eachi_mut<'r,T>(v: &'r mut [T],
|
||||
f: &fn(uint, v: &'r mut T) -> bool) -> bool {
|
||||
_eachi_mut(v, f)
|
||||
@@ -1677,11 +1567,6 @@ pub fn _each_reverse<'r,T>(v: &'r [T], blk: &fn(v: &'r T) -> bool) -> bool {
|
||||
_eachi_reverse(v, |_i, v| blk(v))
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn each_reverse<'r,T>(v: &'r [T], blk: &fn(v: &'r T) -> bool) {
|
||||
_each_reverse(v, blk);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_reverse<'r,T>(v: &'r [T], blk: &fn(v: &'r T) -> bool) -> bool {
|
||||
_each_reverse(v, blk)
|
||||
}
|
||||
@@ -1704,11 +1589,6 @@ pub fn _eachi_reverse<'r,T>(v: &'r [T],
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn eachi_reverse<'r,T>(v: &'r [T], blk: &fn(i: uint, v: &'r T) -> bool) {
|
||||
_eachi_reverse(v, blk);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn eachi_reverse<'r,T>(v: &'r [T],
|
||||
blk: &fn(i: uint, v: &'r T) -> bool) -> bool {
|
||||
_eachi_reverse(v, blk)
|
||||
@@ -1732,11 +1612,6 @@ pub fn _each2<U, T>(v1: &[U], v2: &[T], f: &fn(u: &U, t: &T) -> bool) -> bool {
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn each2<U, T>(v1: &[U], v2: &[T], f: &fn(u: &U, t: &T) -> bool) {
|
||||
_each2(v1, v2, f);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each2<U, T>(v1: &[U], v2: &[T], f: &fn(u: &U, t: &T) -> bool) -> bool {
|
||||
_each2(v1, v2, f)
|
||||
}
|
||||
@@ -1760,12 +1635,6 @@ pub fn _each2_mut<U, T>(v1: &mut [U], v2: &mut [T], f: &fn(u: &mut U, t: &mut T)
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn each2_mut<U, T>(v1: &mut [U], v2: &mut [T], f: &fn(u: &mut U, t: &mut T) -> bool) {
|
||||
_each2_mut(v1, v2, f);
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each2_mut<U, T>(v1: &mut [U], v2: &mut [T], f: &fn(u: &mut U, t: &mut T) -> bool) -> bool {
|
||||
_each2_mut(v1, v2, f)
|
||||
}
|
||||
@@ -1838,29 +1707,6 @@ pub fn each_permutation<T:Copy>(values: &[T], fun: &fn(perm : &[T]) -> bool) ->
|
||||
* ~~~
|
||||
*
|
||||
*/
|
||||
#[cfg(stage0)]
|
||||
pub fn windowed<'r, T>(n: uint, v: &'r [T], it: &fn(&'r [T]) -> bool) {
|
||||
assert!(1u <= n);
|
||||
if n > v.len() { return; }
|
||||
for uint::range(0, v.len() - n + 1) |i| {
|
||||
if !it(v.slice(i, i + n)) { return }
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Iterate over all contiguous windows of length `n` of the vector `v`.
|
||||
*
|
||||
* # Example
|
||||
*
|
||||
* Print the adjacent pairs of a vector (i.e. `[1,2]`, `[2,3]`, `[3,4]`)
|
||||
*
|
||||
* ~~~
|
||||
* for windowed(2, &[1,2,3,4]) |v| {
|
||||
* io::println(fmt!("%?", v));
|
||||
* }
|
||||
* ~~~
|
||||
*
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
pub fn windowed<'r, T>(n: uint, v: &'r [T], it: &fn(&'r [T]) -> bool) -> bool {
|
||||
assert!(1u <= n);
|
||||
if n > v.len() { return true; }
|
||||
@@ -2133,13 +1979,7 @@ pub trait ImmutableVector<'self, T> {
|
||||
fn last_opt(&self) -> Option<&'self T>;
|
||||
fn position(&self, f: &fn(t: &T) -> bool) -> Option<uint>;
|
||||
fn rposition(&self, f: &fn(t: &T) -> bool) -> Option<uint>;
|
||||
#[cfg(stage0)]
|
||||
fn each_reverse(&self, blk: &fn(&T) -> bool);
|
||||
#[cfg(not(stage0))]
|
||||
fn each_reverse(&self, blk: &fn(&T) -> bool) -> bool;
|
||||
#[cfg(stage0)]
|
||||
fn eachi_reverse(&self, blk: &fn(uint, &T) -> bool);
|
||||
#[cfg(not(stage0))]
|
||||
fn eachi_reverse(&self, blk: &fn(uint, &T) -> bool) -> bool;
|
||||
fn foldr<'a, U>(&'a self, z: U, p: &fn(t: &'a T, u: U) -> U) -> U;
|
||||
fn map<U>(&self, f: &fn(t: &T) -> U) -> ~[U];
|
||||
@@ -2226,25 +2066,11 @@ fn rposition(&self, f: &fn(t: &T) -> bool) -> Option<uint> {
|
||||
|
||||
/// Iterates over a vector's elements in reverse.
|
||||
#[inline]
|
||||
#[cfg(stage0)]
|
||||
fn each_reverse(&self, blk: &fn(&T) -> bool) {
|
||||
each_reverse(*self, blk)
|
||||
}
|
||||
/// Iterates over a vector's elements in reverse.
|
||||
#[inline]
|
||||
#[cfg(not(stage0))]
|
||||
fn each_reverse(&self, blk: &fn(&T) -> bool) -> bool {
|
||||
each_reverse(*self, blk)
|
||||
}
|
||||
|
||||
/// Iterates over a vector's elements and indices in reverse.
|
||||
#[cfg(stage0)]
|
||||
#[inline]
|
||||
fn eachi_reverse(&self, blk: &fn(uint, &T) -> bool) {
|
||||
eachi_reverse(*self, blk)
|
||||
}
|
||||
/// Iterates over a vector's elements and indices in reverse.
|
||||
#[cfg(not(stage0))]
|
||||
#[inline]
|
||||
fn eachi_reverse(&self, blk: &fn(uint, &T) -> bool) -> bool {
|
||||
eachi_reverse(*self, blk)
|
||||
@@ -2780,12 +2606,6 @@ pub fn copy_memory(dst: &mut [u8], src: &const [u8], count: uint) {
|
||||
// ITERATION TRAIT METHODS
|
||||
|
||||
impl<'self,A> old_iter::BaseIter<A> for &'self [A] {
|
||||
#[cfg(stage0)]
|
||||
#[inline(always)]
|
||||
fn each<'a>(&'a self, blk: &fn(v: &'a A) -> bool) {
|
||||
each(*self, blk)
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
#[inline(always)]
|
||||
fn each<'a>(&'a self, blk: &fn(v: &'a A) -> bool) -> bool {
|
||||
each(*self, blk)
|
||||
@@ -2796,12 +2616,6 @@ fn size_hint(&self) -> Option<uint> { Some(self.len()) }
|
||||
|
||||
// FIXME(#4148): This should be redundant
|
||||
impl<A> old_iter::BaseIter<A> for ~[A] {
|
||||
#[cfg(stage0)]
|
||||
#[inline(always)]
|
||||
fn each<'a>(&'a self, blk: &fn(v: &'a A) -> bool) {
|
||||
each(*self, blk)
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
#[inline(always)]
|
||||
fn each<'a>(&'a self, blk: &fn(v: &'a A) -> bool) -> bool {
|
||||
each(*self, blk)
|
||||
@@ -2812,12 +2626,6 @@ fn size_hint(&self) -> Option<uint> { Some(self.len()) }
|
||||
|
||||
// FIXME(#4148): This should be redundant
|
||||
impl<A> old_iter::BaseIter<A> for @[A] {
|
||||
#[cfg(stage0)]
|
||||
#[inline(always)]
|
||||
fn each<'a>(&'a self, blk: &fn(v: &'a A) -> bool) {
|
||||
each(*self, blk)
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
#[inline(always)]
|
||||
fn each<'a>(&'a self, blk: &fn(v: &'a A) -> bool) -> bool {
|
||||
each(*self, blk)
|
||||
@@ -2827,12 +2635,6 @@ fn size_hint(&self) -> Option<uint> { Some(self.len()) }
|
||||
}
|
||||
|
||||
impl<'self,A> old_iter::MutableIter<A> for &'self mut [A] {
|
||||
#[cfg(stage0)]
|
||||
#[inline(always)]
|
||||
fn each_mut<'a>(&'a mut self, blk: &fn(v: &'a mut A) -> bool) {
|
||||
each_mut(*self, blk)
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
#[inline(always)]
|
||||
fn each_mut<'a>(&'a mut self, blk: &fn(v: &'a mut A) -> bool) -> bool {
|
||||
each_mut(*self, blk)
|
||||
@@ -2841,12 +2643,6 @@ fn each_mut<'a>(&'a mut self, blk: &fn(v: &'a mut A) -> bool) -> bool {
|
||||
|
||||
// FIXME(#4148): This should be redundant
|
||||
impl<A> old_iter::MutableIter<A> for ~[A] {
|
||||
#[cfg(stage0)]
|
||||
#[inline(always)]
|
||||
fn each_mut<'a>(&'a mut self, blk: &fn(v: &'a mut A) -> bool) {
|
||||
each_mut(*self, blk)
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
#[inline(always)]
|
||||
fn each_mut<'a>(&'a mut self, blk: &fn(v: &'a mut A) -> bool) -> bool {
|
||||
each_mut(*self, blk)
|
||||
@@ -2854,15 +2650,6 @@ fn each_mut<'a>(&'a mut self, blk: &fn(v: &'a mut A) -> bool) -> bool {
|
||||
}
|
||||
|
||||
// FIXME(#4148): This should be redundant
|
||||
#[cfg(stage0)]
|
||||
impl<A> old_iter::MutableIter<A> for @mut [A] {
|
||||
#[inline(always)]
|
||||
fn each_mut(&mut self, blk: &fn(v: &mut A) -> bool) {
|
||||
each_mut(*self, blk)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
impl<A> old_iter::MutableIter<A> for @mut [A] {
|
||||
#[inline(always)]
|
||||
fn each_mut(&mut self, blk: &fn(v: &mut A) -> bool) -> bool {
|
||||
@@ -2871,11 +2658,6 @@ fn each_mut(&mut self, blk: &fn(v: &mut A) -> bool) -> bool {
|
||||
}
|
||||
|
||||
impl<'self,A> old_iter::ExtendedIter<A> for &'self [A] {
|
||||
#[cfg(stage0)]
|
||||
pub fn eachi(&self, blk: &fn(uint, v: &A) -> bool) {
|
||||
old_iter::eachi(self, blk)
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn eachi(&self, blk: &fn(uint, v: &A) -> bool) -> bool {
|
||||
old_iter::eachi(self, blk)
|
||||
}
|
||||
@@ -2902,12 +2684,6 @@ fn flat_map_to_vec<B,IB:BaseIter<B>>(&self, op: &fn(&A) -> IB)
|
||||
|
||||
impl<'self,A> old_iter::ExtendedMutableIter<A> for &'self mut [A] {
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
pub fn eachi_mut(&mut self, blk: &fn(uint, v: &mut A) -> bool) {
|
||||
eachi_mut(*self, blk)
|
||||
}
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
pub fn eachi_mut(&mut self, blk: &fn(uint, v: &mut A) -> bool) -> bool {
|
||||
eachi_mut(*self, blk)
|
||||
}
|
||||
@@ -2915,11 +2691,6 @@ pub fn eachi_mut(&mut self, blk: &fn(uint, v: &mut A) -> bool) -> bool {
|
||||
|
||||
// FIXME(#4148): This should be redundant
|
||||
impl<A> old_iter::ExtendedIter<A> for ~[A] {
|
||||
#[cfg(stage0)]
|
||||
pub fn eachi(&self, blk: &fn(uint, v: &A) -> bool) {
|
||||
old_iter::eachi(self, blk)
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn eachi(&self, blk: &fn(uint, v: &A) -> bool) -> bool {
|
||||
old_iter::eachi(self, blk)
|
||||
}
|
||||
@@ -2946,11 +2717,6 @@ fn flat_map_to_vec<B,IB:BaseIter<B>>(&self, op: &fn(&A) -> IB)
|
||||
|
||||
// FIXME(#4148): This should be redundant
|
||||
impl<A> old_iter::ExtendedIter<A> for @[A] {
|
||||
#[cfg(stage0)]
|
||||
pub fn eachi(&self, blk: &fn(uint, v: &A) -> bool) {
|
||||
old_iter::eachi(self, blk)
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn eachi(&self, blk: &fn(uint, v: &A) -> bool) -> bool {
|
||||
old_iter::eachi(self, blk)
|
||||
}
|
||||
|
||||
@@ -44,15 +44,6 @@ pub fn get_type_param_count(cstore: @mut cstore::CStore, def: ast::def_id)
|
||||
}
|
||||
|
||||
/// Iterates over all the language items in the given crate.
|
||||
#[cfg(stage0)]
|
||||
pub fn each_lang_item(cstore: @mut cstore::CStore,
|
||||
cnum: ast::crate_num,
|
||||
f: &fn(ast::node_id, uint) -> bool) {
|
||||
let crate_data = cstore::get_crate_data(cstore, cnum);
|
||||
decoder::each_lang_item(crate_data, f)
|
||||
}
|
||||
/// Iterates over all the language items in the given crate.
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_lang_item(cstore: @mut cstore::CStore,
|
||||
cnum: ast::crate_num,
|
||||
f: &fn(ast::node_id, uint) -> bool) -> bool {
|
||||
@@ -61,18 +52,6 @@ pub fn each_lang_item(cstore: @mut cstore::CStore,
|
||||
}
|
||||
|
||||
/// Iterates over all the paths in the given crate.
|
||||
#[cfg(stage0)]
|
||||
pub fn each_path(cstore: @mut cstore::CStore,
|
||||
cnum: ast::crate_num,
|
||||
f: &fn(&str, decoder::def_like) -> bool) {
|
||||
let crate_data = cstore::get_crate_data(cstore, cnum);
|
||||
let get_crate_data: decoder::GetCrateDataCb = |cnum| {
|
||||
cstore::get_crate_data(cstore, cnum)
|
||||
};
|
||||
decoder::each_path(cstore.intr, crate_data, get_crate_data, f);
|
||||
}
|
||||
/// Iterates over all the paths in the given crate.
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_path(cstore: @mut cstore::CStore,
|
||||
cnum: ast::crate_num,
|
||||
f: &fn(&str, decoder::def_like) -> bool) -> bool {
|
||||
|
||||
@@ -196,15 +196,6 @@ fn item_def_id(d: ebml::Doc, cdata: cmd) -> ast::def_id {
|
||||
|d| parse_def_id(d)));
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn each_reexport(d: ebml::Doc, f: &fn(ebml::Doc) -> bool) {
|
||||
for reader::tagged_docs(d, tag_items_data_item_reexport) |reexport_doc| {
|
||||
if !f(reexport_doc) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each_reexport(d: ebml::Doc, f: &fn(ebml::Doc) -> bool) -> bool {
|
||||
for reader::tagged_docs(d, tag_items_data_item_reexport) |reexport_doc| {
|
||||
if !f(reexport_doc) {
|
||||
@@ -465,24 +456,6 @@ fn def_like_to_def(def_like: def_like) -> ast::def {
|
||||
}
|
||||
|
||||
/// Iterates over the language items in the given crate.
|
||||
#[cfg(stage0)]
|
||||
pub fn each_lang_item(cdata: cmd, f: &fn(ast::node_id, uint) -> bool) {
|
||||
let root = reader::Doc(cdata.data);
|
||||
let lang_items = reader::get_doc(root, tag_lang_items);
|
||||
for reader::tagged_docs(lang_items, tag_lang_items_item) |item_doc| {
|
||||
let id_doc = reader::get_doc(item_doc, tag_lang_items_item_id);
|
||||
let id = reader::doc_as_u32(id_doc) as uint;
|
||||
let node_id_doc = reader::get_doc(item_doc,
|
||||
tag_lang_items_item_node_id);
|
||||
let node_id = reader::doc_as_u32(node_id_doc) as ast::node_id;
|
||||
|
||||
if !f(node_id, id) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
/// Iterates over the language items in the given crate.
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_lang_item(cdata: cmd, f: &fn(ast::node_id, uint) -> bool) -> bool {
|
||||
let root = reader::Doc(cdata.data);
|
||||
let lang_items = reader::get_doc(root, tag_lang_items);
|
||||
@@ -588,13 +561,6 @@ pub fn _each_path(intr: @ident_interner, cdata: cmd,
|
||||
return broken;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn each_path(intr: @ident_interner, cdata: cmd,
|
||||
get_crate_data: GetCrateDataCb,
|
||||
f: &fn(&str, def_like) -> bool) {
|
||||
_each_path(intr, cdata, get_crate_data, f);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_path(intr: @ident_interner, cdata: cmd,
|
||||
get_crate_data: GetCrateDataCb,
|
||||
f: &fn(&str, def_like) -> bool) -> bool {
|
||||
|
||||
@@ -21,9 +21,6 @@ pub fn pick_file(file: Path, path: &Path) -> Option<Path> {
|
||||
|
||||
pub trait FileSearch {
|
||||
fn sysroot(&self) -> @Path;
|
||||
#[cfg(stage0)]
|
||||
fn for_each_lib_search_path(&self, f: &fn(&Path) -> bool);
|
||||
#[cfg(not(stage0))]
|
||||
fn for_each_lib_search_path(&self, f: &fn(&Path) -> bool) -> bool;
|
||||
fn get_target_lib_path(&self) -> Path;
|
||||
fn get_target_lib_file_path(&self, file: &Path) -> Path;
|
||||
@@ -40,31 +37,6 @@ struct FileSearchImpl {
|
||||
}
|
||||
impl FileSearch for FileSearchImpl {
|
||||
fn sysroot(&self) -> @Path { self.sysroot }
|
||||
#[cfg(stage0)]
|
||||
fn for_each_lib_search_path(&self, f: &fn(&Path) -> bool) {
|
||||
debug!("filesearch: searching additional lib search paths");
|
||||
// a little weird
|
||||
self.addl_lib_search_paths.each(f);
|
||||
|
||||
debug!("filesearch: searching target lib path");
|
||||
if !f(&make_target_lib_path(self.sysroot,
|
||||
self.target_triple)) {
|
||||
return;
|
||||
}
|
||||
debug!("filesearch: searching rustpkg lib path nearest");
|
||||
if match get_rustpkg_lib_path_nearest() {
|
||||
result::Ok(ref p) => f(p),
|
||||
result::Err(_) => true
|
||||
} {
|
||||
return;
|
||||
}
|
||||
debug!("filesearch: searching rustpkg lib path");
|
||||
match get_rustpkg_lib_path() {
|
||||
result::Ok(ref p) => f(p),
|
||||
result::Err(_) => true
|
||||
};
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn for_each_lib_search_path(&self, f: &fn(&Path) -> bool) -> bool {
|
||||
debug!("filesearch: searching additional lib search paths");
|
||||
// a little weird
|
||||
|
||||
@@ -67,25 +67,6 @@ enum MoveError {
|
||||
pub impl<'self> CheckLoanCtxt<'self> {
|
||||
fn tcx(&self) -> ty::ctxt { self.bccx.tcx }
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn each_issued_loan(&self,
|
||||
scope_id: ast::node_id,
|
||||
op: &fn(&Loan) -> bool)
|
||||
{
|
||||
//! Iterates over each loan that that has been issued
|
||||
//! on entrance to `scope_id`, regardless of whether it is
|
||||
//! actually *in scope* at that point. Sometimes loans
|
||||
//! are issued for future scopes and thus they may have been
|
||||
//! *issued* but not yet be in effect.
|
||||
|
||||
for self.dfcx.each_bit_on_entry(scope_id) |loan_index| {
|
||||
let loan = &self.all_loans[loan_index];
|
||||
if !op(loan) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each_issued_loan(&self,
|
||||
scope_id: ast::node_id,
|
||||
op: &fn(&Loan) -> bool) -> bool
|
||||
@@ -105,24 +86,6 @@ fn each_issued_loan(&self,
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn each_in_scope_loan(&self,
|
||||
scope_id: ast::node_id,
|
||||
op: &fn(&Loan) -> bool)
|
||||
{
|
||||
//! Like `each_issued_loan()`, but only considers loans that are
|
||||
//! currently in scope.
|
||||
|
||||
let region_maps = self.tcx().region_maps;
|
||||
for self.each_issued_loan(scope_id) |loan| {
|
||||
if region_maps.is_subscope_of(scope_id, loan.kill_scope) {
|
||||
if !op(loan) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each_in_scope_loan(&self,
|
||||
scope_id: ast::node_id,
|
||||
op: &fn(&Loan) -> bool) -> bool
|
||||
@@ -141,26 +104,6 @@ fn each_in_scope_loan(&self,
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn each_in_scope_restriction(&self,
|
||||
scope_id: ast::node_id,
|
||||
loan_path: @LoanPath,
|
||||
op: &fn(&Loan, &Restriction) -> bool)
|
||||
{
|
||||
//! Iterates through all the in-scope restrictions for the
|
||||
//! given `loan_path`
|
||||
|
||||
for self.each_in_scope_loan(scope_id) |loan| {
|
||||
for loan.restrictions.each |restr| {
|
||||
if restr.loan_path == loan_path {
|
||||
if !op(loan, restr) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each_in_scope_restriction(&self,
|
||||
scope_id: ast::node_id,
|
||||
loan_path: @LoanPath,
|
||||
|
||||
@@ -21,8 +21,6 @@
|
||||
use util::common::stmt_set;
|
||||
use util::ppaux::{note_and_explain_region, Repr};
|
||||
|
||||
#[cfg(stage0)]
|
||||
use core; // NOTE: this can be removed after the next snapshot
|
||||
use core::hashmap::{HashSet, HashMap};
|
||||
use core::io;
|
||||
use core::result::{Result};
|
||||
|
||||
@@ -182,20 +182,6 @@ fn compute_id_range(&self, absolute_id: ast::node_id) -> (uint, uint) {
|
||||
}
|
||||
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn each_bit_on_entry(&self,
|
||||
id: ast::node_id,
|
||||
f: &fn(uint) -> bool) {
|
||||
//! Iterates through each bit that is set on entry to `id`.
|
||||
//! Only useful after `propagate()` has been called.
|
||||
|
||||
let (start, end) = self.compute_id_range(id);
|
||||
let on_entry = vec::slice(self.on_entry, start, end);
|
||||
debug!("each_bit_on_entry(id=%?, on_entry=%s)",
|
||||
id, bits_to_str(on_entry));
|
||||
self.each_bit(on_entry, f);
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_bit_on_entry(&self,
|
||||
id: ast::node_id,
|
||||
f: &fn(uint) -> bool) -> bool {
|
||||
@@ -209,19 +195,6 @@ pub fn each_bit_on_entry(&self,
|
||||
self.each_bit(on_entry, f)
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn each_gen_bit(&self,
|
||||
id: ast::node_id,
|
||||
f: &fn(uint) -> bool) {
|
||||
//! Iterates through each bit in the gen set for `id`.
|
||||
|
||||
let (start, end) = self.compute_id_range(id);
|
||||
let gens = vec::slice(self.gens, start, end);
|
||||
debug!("each_gen_bit(id=%?, gens=%s)",
|
||||
id, bits_to_str(gens));
|
||||
self.each_bit(gens, f)
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_gen_bit(&self,
|
||||
id: ast::node_id,
|
||||
f: &fn(uint) -> bool) -> bool {
|
||||
@@ -234,37 +207,6 @@ pub fn each_gen_bit(&self,
|
||||
self.each_bit(gens, f)
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn each_bit(&self,
|
||||
words: &[uint],
|
||||
f: &fn(uint) -> bool) {
|
||||
//! Helper for iterating over the bits in a bit set.
|
||||
|
||||
for words.eachi |word_index, &word| {
|
||||
if word != 0 {
|
||||
let base_index = word_index * uint::bits;
|
||||
for uint::range(0, uint::bits) |offset| {
|
||||
let bit = 1 << offset;
|
||||
if (word & bit) != 0 {
|
||||
// NB: we round up the total number of bits
|
||||
// that we store in any given bit set so that
|
||||
// it is an even multiple of uint::bits. This
|
||||
// means that there may be some stray bits at
|
||||
// the end that do not correspond to any
|
||||
// actual value. So before we callback, check
|
||||
// whether the bit_index is greater than the
|
||||
// actual value the user specified and stop
|
||||
// iterating if so.
|
||||
let bit_index = base_index + offset;
|
||||
if bit_index >= self.bits_per_id || !f(bit_index) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each_bit(&self,
|
||||
words: &[uint],
|
||||
f: &fn(uint) -> bool) -> bool {
|
||||
|
||||
@@ -86,15 +86,6 @@ pub fn new() -> LanguageItems {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn each_item(&self, f: &fn(def_id: def_id, i: uint) -> bool) {
|
||||
for self.items.eachi |i, &item| {
|
||||
if !f(item.get(), i) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each_item(&self, f: &fn(def_id: def_id, i: uint) -> bool) -> bool {
|
||||
self.items.eachi(|i, &item| f(item.get(), i))
|
||||
}
|
||||
|
||||
@@ -419,39 +419,6 @@ fn process(&self, n: AttributedNode) {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn each_lint(sess: session::Session,
|
||||
attrs: &[ast::attribute],
|
||||
f: &fn(@ast::meta_item, level, &~str) -> bool)
|
||||
{
|
||||
for [allow, warn, deny, forbid].each |&level| {
|
||||
let level_name = level_to_str(level);
|
||||
let attrs = attr::find_attrs_by_name(attrs, level_name);
|
||||
for attrs.each |attr| {
|
||||
let meta = attr.node.value;
|
||||
let metas = match meta.node {
|
||||
ast::meta_list(_, ref metas) => metas,
|
||||
_ => {
|
||||
sess.span_err(meta.span, ~"malformed lint attribute");
|
||||
loop;
|
||||
}
|
||||
};
|
||||
for metas.each |meta| {
|
||||
match meta.node {
|
||||
ast::meta_word(lintname) => {
|
||||
if !f(*meta, level, lintname) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
_ => {
|
||||
sess.span_err(meta.span, ~"malformed lint attribute");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_lint(sess: session::Session,
|
||||
attrs: &[ast::attribute],
|
||||
f: &fn(@ast::meta_item, level, &~str) -> bool) -> bool
|
||||
|
||||
@@ -1,5324 +0,0 @@
|
||||
// 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.
|
||||
|
||||
use driver::session;
|
||||
use driver::session::Session;
|
||||
use metadata::csearch::{each_path, get_trait_method_def_ids};
|
||||
use metadata::csearch::get_method_name_and_explicit_self;
|
||||
use metadata::csearch::get_static_methods_if_impl;
|
||||
use metadata::csearch::get_type_name_if_impl;
|
||||
use metadata::cstore::find_extern_mod_stmt_cnum;
|
||||
use metadata::decoder::{def_like, dl_def, dl_field, dl_impl};
|
||||
use middle::lang_items::LanguageItems;
|
||||
use middle::lint::{allow, level, warn};
|
||||
use middle::pat_util::pat_bindings;
|
||||
|
||||
use syntax::ast::{RegionTyParamBound, TraitTyParamBound, _mod, add, arm};
|
||||
use syntax::ast::{binding_mode, bitand, bitor, bitxor, blk};
|
||||
use syntax::ast::{bind_infer, bind_by_ref, bind_by_copy};
|
||||
use syntax::ast::{crate, decl_item, def, def_arg, def_binding};
|
||||
use syntax::ast::{def_const, def_foreign_mod, def_fn, def_id, def_label};
|
||||
use syntax::ast::{def_local, def_mod, def_prim_ty, def_region, def_self};
|
||||
use syntax::ast::{def_self_ty, def_static_method, def_struct, def_ty};
|
||||
use syntax::ast::{def_ty_param, def_typaram_binder, def_trait};
|
||||
use syntax::ast::{def_upvar, def_use, def_variant, expr, expr_assign_op};
|
||||
use syntax::ast::{expr_binary, expr_break, expr_field};
|
||||
use syntax::ast::{expr_fn_block, expr_index, expr_method_call, expr_path};
|
||||
use syntax::ast::{def_prim_ty, def_region, def_self, def_ty, def_ty_param};
|
||||
use syntax::ast::{def_upvar, def_use, def_variant, div, eq};
|
||||
use syntax::ast::{expr, expr_again, expr_assign_op};
|
||||
use syntax::ast::{expr_index, expr_loop};
|
||||
use syntax::ast::{expr_path, expr_self, expr_struct, expr_unary, fn_decl};
|
||||
use syntax::ast::{foreign_item, foreign_item_const, foreign_item_fn, ge};
|
||||
use syntax::ast::Generics;
|
||||
use syntax::ast::{gt, ident, inherited, item, item_struct};
|
||||
use syntax::ast::{item_const, item_enum, item_fn, item_foreign_mod};
|
||||
use syntax::ast::{item_impl, item_mac, item_mod, item_trait, item_ty, le};
|
||||
use syntax::ast::{local, local_crate, lt, method, mul};
|
||||
use syntax::ast::{named_field, ne, neg, node_id, pat, pat_enum, pat_ident};
|
||||
use syntax::ast::{Path, pat_lit, pat_range, pat_struct};
|
||||
use syntax::ast::{prim_ty, private, provided};
|
||||
use syntax::ast::{public, required, rem, explicit_self_, shl, shr, stmt_decl};
|
||||
use syntax::ast::{struct_field, struct_variant_kind};
|
||||
use syntax::ast::{sty_static, subtract, trait_ref, tuple_variant_kind, Ty};
|
||||
use syntax::ast::{ty_bool, ty_char, ty_f, ty_f32, ty_f64, ty_float, ty_i};
|
||||
use syntax::ast::{ty_i16, ty_i32, ty_i64, ty_i8, ty_int, TyParam, ty_path};
|
||||
use syntax::ast::{ty_str, ty_u, ty_u16, ty_u32, ty_u64, ty_u8, ty_uint};
|
||||
use syntax::ast::unnamed_field;
|
||||
use syntax::ast::{variant, view_item, view_item_extern_mod};
|
||||
use syntax::ast::{view_item_use, view_path_glob, view_path_list};
|
||||
use syntax::ast::{view_path_simple, anonymous, named, not};
|
||||
use syntax::ast::{unsafe_fn};
|
||||
use syntax::ast_util::{def_id_of_def, local_def};
|
||||
use syntax::ast_util::{path_to_ident, walk_pat, trait_method_to_ty_method};
|
||||
use syntax::ast_util::{Privacy, Public, Private};
|
||||
use syntax::ast_util::{variant_visibility_to_privacy, visibility_to_privacy};
|
||||
use syntax::attr::{attr_metas, contains_name, attrs_contains_name};
|
||||
use syntax::parse::token::ident_interner;
|
||||
use syntax::parse::token::special_idents;
|
||||
use syntax::print::pprust::path_to_str;
|
||||
use syntax::codemap::{span, dummy_sp};
|
||||
use syntax::visit::{default_visitor, mk_vt, Visitor, visit_block};
|
||||
use syntax::visit::{visit_crate, visit_expr, visit_expr_opt};
|
||||
use syntax::visit::{visit_foreign_item, visit_item};
|
||||
use syntax::visit::{visit_mod, visit_ty, vt};
|
||||
use syntax::opt_vec::OptVec;
|
||||
|
||||
use core::option::Some;
|
||||
use core::str::each_split_str;
|
||||
use core::hashmap::{HashMap, HashSet};
|
||||
use core::util;
|
||||
|
||||
// Definition mapping
|
||||
pub type DefMap = @mut HashMap<node_id,def>;
|
||||
|
||||
pub struct binding_info {
|
||||
span: span,
|
||||
binding_mode: binding_mode,
|
||||
}
|
||||
|
||||
// Map from the name in a pattern to its binding mode.
|
||||
pub type BindingMap = HashMap<ident,binding_info>;
|
||||
|
||||
// Implementation resolution
|
||||
//
|
||||
// FIXME #4946: This kind of duplicates information kept in
|
||||
// ty::method. Maybe it should go away.
|
||||
|
||||
pub struct MethodInfo {
|
||||
did: def_id,
|
||||
n_tps: uint,
|
||||
ident: ident,
|
||||
explicit_self: explicit_self_
|
||||
}
|
||||
|
||||
pub struct Impl {
|
||||
did: def_id,
|
||||
ident: ident,
|
||||
methods: ~[@MethodInfo]
|
||||
}
|
||||
|
||||
// Trait method resolution
|
||||
pub type TraitMap = HashMap<node_id,@mut ~[def_id]>;
|
||||
|
||||
// This is the replacement export map. It maps a module to all of the exports
|
||||
// within.
|
||||
pub type ExportMap2 = @mut HashMap<node_id, ~[Export2]>;
|
||||
|
||||
pub struct Export2 {
|
||||
name: @~str, // The name of the target.
|
||||
def_id: def_id, // The definition of the target.
|
||||
reexport: bool, // Whether this is a reexport.
|
||||
}
|
||||
|
||||
#[deriving(Eq)]
|
||||
pub enum PatternBindingMode {
|
||||
RefutableMode,
|
||||
LocalIrrefutableMode,
|
||||
ArgumentIrrefutableMode,
|
||||
}
|
||||
|
||||
#[deriving(Eq)]
|
||||
pub enum Namespace {
|
||||
TypeNS,
|
||||
ValueNS
|
||||
}
|
||||
|
||||
/// A NamespaceResult represents the result of resolving an import in
|
||||
/// a particular namespace. The result is either definitely-resolved,
|
||||
/// definitely- unresolved, or unknown.
|
||||
pub enum NamespaceResult {
|
||||
/// Means that resolve hasn't gathered enough information yet to determine
|
||||
/// whether the name is bound in this namespace. (That is, it hasn't
|
||||
/// resolved all `use` directives yet.)
|
||||
UnknownResult,
|
||||
/// Means that resolve has determined that the name is definitely
|
||||
/// not bound in the namespace.
|
||||
UnboundResult,
|
||||
/// Means that resolve has determined that the name is bound in the Module
|
||||
/// argument, and specified by the NameBindings argument.
|
||||
BoundResult(@mut Module, @mut NameBindings)
|
||||
}
|
||||
|
||||
pub impl NamespaceResult {
|
||||
fn is_unknown(&self) -> bool {
|
||||
match *self {
|
||||
UnknownResult => true,
|
||||
_ => false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub enum NameDefinition {
|
||||
NoNameDefinition, //< The name was unbound.
|
||||
ChildNameDefinition(def), //< The name identifies an immediate child.
|
||||
ImportNameDefinition(def) //< The name identifies an import.
|
||||
}
|
||||
|
||||
#[deriving(Eq)]
|
||||
pub enum Mutability {
|
||||
Mutable,
|
||||
Immutable
|
||||
}
|
||||
|
||||
pub enum SelfBinding {
|
||||
NoSelfBinding,
|
||||
HasSelfBinding(node_id, bool /* is implicit */)
|
||||
}
|
||||
|
||||
pub type ResolveVisitor = vt<()>;
|
||||
|
||||
/// Contains data for specific types of import directives.
|
||||
pub enum ImportDirectiveSubclass {
|
||||
SingleImport(ident /* target */, ident /* source */),
|
||||
GlobImport
|
||||
}
|
||||
|
||||
/// The context that we thread through while building the reduced graph.
|
||||
pub enum ReducedGraphParent {
|
||||
ModuleReducedGraphParent(@mut Module)
|
||||
}
|
||||
|
||||
pub enum ResolveResult<T> {
|
||||
Failed, // Failed to resolve the name.
|
||||
Indeterminate, // Couldn't determine due to unresolved globs.
|
||||
Success(T) // Successfully resolved the import.
|
||||
}
|
||||
|
||||
pub impl<T> ResolveResult<T> {
|
||||
fn failed(&self) -> bool {
|
||||
match *self { Failed => true, _ => false }
|
||||
}
|
||||
fn indeterminate(&self) -> bool {
|
||||
match *self { Indeterminate => true, _ => false }
|
||||
}
|
||||
}
|
||||
|
||||
pub enum TypeParameters<'self> {
|
||||
NoTypeParameters, //< No type parameters.
|
||||
HasTypeParameters(&'self Generics, //< Type parameters.
|
||||
node_id, //< ID of the enclosing item
|
||||
|
||||
// The index to start numbering the type parameters at.
|
||||
// This is zero if this is the outermost set of type
|
||||
// parameters, or equal to the number of outer type
|
||||
// parameters. For example, if we have:
|
||||
//
|
||||
// impl I<T> {
|
||||
// fn method<U>() { ... }
|
||||
// }
|
||||
//
|
||||
// The index at the method site will be 1, because the
|
||||
// outer T had index 0.
|
||||
uint,
|
||||
|
||||
// The kind of the rib used for type parameters.
|
||||
RibKind)
|
||||
}
|
||||
|
||||
// The rib kind controls the translation of argument or local definitions
|
||||
// (`def_arg` or `def_local`) to upvars (`def_upvar`).
|
||||
|
||||
pub enum RibKind {
|
||||
// No translation needs to be applied.
|
||||
NormalRibKind,
|
||||
|
||||
// We passed through a function scope at the given node ID. Translate
|
||||
// upvars as appropriate.
|
||||
FunctionRibKind(node_id /* func id */, node_id /* body id */),
|
||||
|
||||
// We passed through an impl or trait and are now in one of its
|
||||
// methods. Allow references to ty params that that impl or trait
|
||||
// binds. Disallow any other upvars (including other ty params that are
|
||||
// upvars).
|
||||
// parent; method itself
|
||||
MethodRibKind(node_id, MethodSort),
|
||||
|
||||
// We passed through a function *item* scope. Disallow upvars.
|
||||
OpaqueFunctionRibKind,
|
||||
|
||||
// We're in a constant item. Can't refer to dynamic stuff.
|
||||
ConstantItemRibKind
|
||||
}
|
||||
|
||||
// Methods can be required or provided. Required methods only occur in traits.
|
||||
pub enum MethodSort {
|
||||
Required,
|
||||
Provided(node_id)
|
||||
}
|
||||
|
||||
// The X-ray flag indicates that a context has the X-ray privilege, which
|
||||
// allows it to reference private names. Currently, this is used for the test
|
||||
// runner.
|
||||
//
|
||||
// FIXME #4947: The X-ray flag is kind of questionable in the first
|
||||
// place. It might be better to introduce an expr_xray_path instead.
|
||||
|
||||
#[deriving(Eq)]
|
||||
pub enum XrayFlag {
|
||||
NoXray, //< Private items cannot be accessed.
|
||||
Xray //< Private items can be accessed.
|
||||
}
|
||||
|
||||
pub enum UseLexicalScopeFlag {
|
||||
DontUseLexicalScope,
|
||||
UseLexicalScope
|
||||
}
|
||||
|
||||
pub enum SearchThroughModulesFlag {
|
||||
DontSearchThroughModules,
|
||||
SearchThroughModules
|
||||
}
|
||||
|
||||
pub enum ModulePrefixResult {
|
||||
NoPrefixFound,
|
||||
PrefixFound(@mut Module, uint)
|
||||
}
|
||||
|
||||
#[deriving(Eq)]
|
||||
pub enum AllowCapturingSelfFlag {
|
||||
AllowCapturingSelf, //< The "self" definition can be captured.
|
||||
DontAllowCapturingSelf, //< The "self" definition cannot be captured.
|
||||
}
|
||||
|
||||
#[deriving(Eq)]
|
||||
enum NameSearchType {
|
||||
SearchItemsAndPublicImports, //< Search items and public imports.
|
||||
SearchItemsAndAllImports, //< Search items and all imports.
|
||||
}
|
||||
|
||||
pub enum BareIdentifierPatternResolution {
|
||||
FoundStructOrEnumVariant(def),
|
||||
FoundConst(def),
|
||||
BareIdentifierPatternUnresolved
|
||||
}
|
||||
|
||||
// Specifies how duplicates should be handled when adding a child item if
|
||||
// another item exists with the same name in some namespace.
|
||||
#[deriving(Eq)]
|
||||
pub enum DuplicateCheckingMode {
|
||||
ForbidDuplicateModules,
|
||||
ForbidDuplicateTypes,
|
||||
ForbidDuplicateValues,
|
||||
ForbidDuplicateTypesAndValues,
|
||||
OverwriteDuplicates
|
||||
}
|
||||
|
||||
// Returns the namespace associated with the given duplicate checking mode,
|
||||
// or fails for OverwriteDuplicates. This is used for error messages.
|
||||
pub fn namespace_for_duplicate_checking_mode(mode: DuplicateCheckingMode)
|
||||
-> Namespace {
|
||||
match mode {
|
||||
ForbidDuplicateModules | ForbidDuplicateTypes |
|
||||
ForbidDuplicateTypesAndValues => TypeNS,
|
||||
ForbidDuplicateValues => ValueNS,
|
||||
OverwriteDuplicates => fail!("OverwriteDuplicates has no namespace")
|
||||
}
|
||||
}
|
||||
|
||||
/// One local scope.
|
||||
pub struct Rib {
|
||||
bindings: @mut HashMap<ident,def_like>,
|
||||
self_binding: @mut Option<def_like>,
|
||||
kind: RibKind,
|
||||
}
|
||||
|
||||
pub fn Rib(kind: RibKind) -> Rib {
|
||||
Rib {
|
||||
bindings: @mut HashMap::new(),
|
||||
self_binding: @mut None,
|
||||
kind: kind
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// One import directive.
|
||||
pub struct ImportDirective {
|
||||
privacy: Privacy,
|
||||
module_path: ~[ident],
|
||||
subclass: @ImportDirectiveSubclass,
|
||||
span: span,
|
||||
}
|
||||
|
||||
pub fn ImportDirective(privacy: Privacy,
|
||||
module_path: ~[ident],
|
||||
subclass: @ImportDirectiveSubclass,
|
||||
span: span)
|
||||
-> ImportDirective {
|
||||
ImportDirective {
|
||||
privacy: privacy,
|
||||
module_path: module_path,
|
||||
subclass: subclass,
|
||||
span: span
|
||||
}
|
||||
}
|
||||
|
||||
/// The item that an import resolves to.
|
||||
pub struct Target {
|
||||
target_module: @mut Module,
|
||||
bindings: @mut NameBindings,
|
||||
}
|
||||
|
||||
pub fn Target(target_module: @mut Module,
|
||||
bindings: @mut NameBindings)
|
||||
-> Target {
|
||||
Target {
|
||||
target_module: target_module,
|
||||
bindings: bindings
|
||||
}
|
||||
}
|
||||
|
||||
/// An ImportResolution represents a particular `use` directive.
|
||||
pub struct ImportResolution {
|
||||
/// The privacy of this `use` directive (whether it's `use` or
|
||||
/// `pub use`.
|
||||
privacy: Privacy,
|
||||
span: span,
|
||||
|
||||
// The number of outstanding references to this name. When this reaches
|
||||
// zero, outside modules can count on the targets being correct. Before
|
||||
// then, all bets are off; future imports could override this name.
|
||||
|
||||
outstanding_references: uint,
|
||||
|
||||
/// The value that this `use` directive names, if there is one.
|
||||
value_target: Option<Target>,
|
||||
/// The type that this `use` directive names, if there is one.
|
||||
type_target: Option<Target>,
|
||||
|
||||
/// There exists one state per import statement
|
||||
state: @mut ImportState,
|
||||
}
|
||||
|
||||
pub fn ImportResolution(privacy: Privacy,
|
||||
span: span,
|
||||
state: @mut ImportState) -> ImportResolution {
|
||||
ImportResolution {
|
||||
privacy: privacy,
|
||||
span: span,
|
||||
outstanding_references: 0,
|
||||
value_target: None,
|
||||
type_target: None,
|
||||
state: state,
|
||||
}
|
||||
}
|
||||
|
||||
pub impl ImportResolution {
|
||||
fn target_for_namespace(&self, namespace: Namespace) -> Option<Target> {
|
||||
match namespace {
|
||||
TypeNS => return copy self.type_target,
|
||||
ValueNS => return copy self.value_target
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub struct ImportState {
|
||||
used: bool,
|
||||
warned: bool
|
||||
}
|
||||
|
||||
pub fn ImportState() -> ImportState {
|
||||
ImportState{ used: false, warned: false }
|
||||
}
|
||||
|
||||
/// The link from a module up to its nearest parent node.
|
||||
pub enum ParentLink {
|
||||
NoParentLink,
|
||||
ModuleParentLink(@mut Module, ident),
|
||||
BlockParentLink(@mut Module, node_id)
|
||||
}
|
||||
|
||||
/// The type of module this is.
|
||||
pub enum ModuleKind {
|
||||
NormalModuleKind,
|
||||
ExternModuleKind,
|
||||
TraitModuleKind,
|
||||
AnonymousModuleKind,
|
||||
}
|
||||
|
||||
/// One node in the tree of modules.
|
||||
pub struct Module {
|
||||
parent_link: ParentLink,
|
||||
def_id: Option<def_id>,
|
||||
kind: ModuleKind,
|
||||
|
||||
children: @mut HashMap<ident, @mut NameBindings>,
|
||||
imports: @mut ~[@ImportDirective],
|
||||
|
||||
// The external module children of this node that were declared with
|
||||
// `extern mod`.
|
||||
external_module_children: @mut HashMap<ident, @mut Module>,
|
||||
|
||||
// The anonymous children of this node. Anonymous children are pseudo-
|
||||
// modules that are implicitly created around items contained within
|
||||
// blocks.
|
||||
//
|
||||
// For example, if we have this:
|
||||
//
|
||||
// fn f() {
|
||||
// fn g() {
|
||||
// ...
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// There will be an anonymous module created around `g` with the ID of the
|
||||
// entry block for `f`.
|
||||
|
||||
anonymous_children: @mut HashMap<node_id,@mut Module>,
|
||||
|
||||
// The status of resolving each import in this module.
|
||||
import_resolutions: @mut HashMap<ident, @mut ImportResolution>,
|
||||
|
||||
// The number of unresolved globs that this module exports.
|
||||
glob_count: uint,
|
||||
|
||||
// The index of the import we're resolving.
|
||||
resolved_import_count: uint,
|
||||
}
|
||||
|
||||
pub fn Module(parent_link: ParentLink,
|
||||
def_id: Option<def_id>,
|
||||
kind: ModuleKind)
|
||||
-> Module {
|
||||
Module {
|
||||
parent_link: parent_link,
|
||||
def_id: def_id,
|
||||
kind: kind,
|
||||
children: @mut HashMap::new(),
|
||||
imports: @mut ~[],
|
||||
external_module_children: @mut HashMap::new(),
|
||||
anonymous_children: @mut HashMap::new(),
|
||||
import_resolutions: @mut HashMap::new(),
|
||||
glob_count: 0,
|
||||
resolved_import_count: 0
|
||||
}
|
||||
}
|
||||
|
||||
pub impl Module {
|
||||
fn all_imports_resolved(&self) -> bool {
|
||||
let imports = &mut *self.imports;
|
||||
return imports.len() == self.resolved_import_count;
|
||||
}
|
||||
}
|
||||
|
||||
// Records a possibly-private type definition.
|
||||
pub struct TypeNsDef {
|
||||
privacy: Privacy,
|
||||
module_def: Option<@mut Module>,
|
||||
type_def: Option<def>
|
||||
}
|
||||
|
||||
// Records a possibly-private value definition.
|
||||
pub struct ValueNsDef {
|
||||
privacy: Privacy,
|
||||
def: def,
|
||||
}
|
||||
|
||||
// Records the definitions (at most one for each namespace) that a name is
|
||||
// bound to.
|
||||
pub struct NameBindings {
|
||||
type_def: Option<TypeNsDef>, //< Meaning in type namespace.
|
||||
value_def: Option<ValueNsDef>, //< Meaning in value namespace.
|
||||
|
||||
// For error reporting
|
||||
// FIXME (#3783): Merge me into TypeNsDef and ValueNsDef.
|
||||
type_span: Option<span>,
|
||||
value_span: Option<span>,
|
||||
}
|
||||
|
||||
pub impl NameBindings {
|
||||
/// Creates a new module in this set of name bindings.
|
||||
fn define_module(@mut self,
|
||||
privacy: Privacy,
|
||||
parent_link: ParentLink,
|
||||
def_id: Option<def_id>,
|
||||
kind: ModuleKind,
|
||||
sp: span) {
|
||||
// Merges the module with the existing type def or creates a new one.
|
||||
let module_ = @mut Module(parent_link, def_id, kind);
|
||||
match self.type_def {
|
||||
None => {
|
||||
self.type_def = Some(TypeNsDef {
|
||||
privacy: privacy,
|
||||
module_def: Some(module_),
|
||||
type_def: None
|
||||
});
|
||||
}
|
||||
Some(copy type_def) => {
|
||||
self.type_def = Some(TypeNsDef {
|
||||
privacy: privacy,
|
||||
module_def: Some(module_),
|
||||
.. type_def
|
||||
});
|
||||
}
|
||||
}
|
||||
self.type_span = Some(sp);
|
||||
}
|
||||
|
||||
/// Records a type definition.
|
||||
fn define_type(@mut self, privacy: Privacy, def: def, sp: span) {
|
||||
// Merges the type with the existing type def or creates a new one.
|
||||
match self.type_def {
|
||||
None => {
|
||||
self.type_def = Some(TypeNsDef {
|
||||
privacy: privacy,
|
||||
module_def: None,
|
||||
type_def: Some(def)
|
||||
});
|
||||
}
|
||||
Some(copy type_def) => {
|
||||
self.type_def = Some(TypeNsDef {
|
||||
privacy: privacy,
|
||||
type_def: Some(def),
|
||||
.. type_def
|
||||
});
|
||||
}
|
||||
}
|
||||
self.type_span = Some(sp);
|
||||
}
|
||||
|
||||
/// Records a value definition.
|
||||
fn define_value(@mut self, privacy: Privacy, def: def, sp: span) {
|
||||
self.value_def = Some(ValueNsDef { privacy: privacy, def: def });
|
||||
self.value_span = Some(sp);
|
||||
}
|
||||
|
||||
/// Returns the module node if applicable.
|
||||
fn get_module_if_available(&self) -> Option<@mut Module> {
|
||||
match self.type_def {
|
||||
Some(ref type_def) => (*type_def).module_def,
|
||||
None => None
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the module node. Fails if this node does not have a module
|
||||
* definition.
|
||||
*/
|
||||
fn get_module(@mut self) -> @mut Module {
|
||||
match self.get_module_if_available() {
|
||||
None => {
|
||||
fail!("get_module called on a node with no module \
|
||||
definition!")
|
||||
}
|
||||
Some(module_def) => module_def
|
||||
}
|
||||
}
|
||||
|
||||
fn defined_in_namespace(&self, namespace: Namespace) -> bool {
|
||||
match namespace {
|
||||
TypeNS => return self.type_def.is_some(),
|
||||
ValueNS => return self.value_def.is_some()
|
||||
}
|
||||
}
|
||||
|
||||
fn defined_in_public_namespace(&self, namespace: Namespace) -> bool {
|
||||
match namespace {
|
||||
TypeNS => match self.type_def {
|
||||
Some(def) => def.privacy != Private,
|
||||
None => false
|
||||
},
|
||||
ValueNS => match self.value_def {
|
||||
Some(def) => def.privacy != Private,
|
||||
None => false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn def_for_namespace(&self, namespace: Namespace) -> Option<def> {
|
||||
match namespace {
|
||||
TypeNS => {
|
||||
match self.type_def {
|
||||
None => None,
|
||||
Some(ref type_def) => {
|
||||
// FIXME (#3784): This is reallllly questionable.
|
||||
// Perhaps the right thing to do is to merge def_mod
|
||||
// and def_ty.
|
||||
match (*type_def).type_def {
|
||||
Some(type_def) => Some(type_def),
|
||||
None => {
|
||||
match (*type_def).module_def {
|
||||
Some(module_def) => {
|
||||
let module_def = &mut *module_def;
|
||||
module_def.def_id.map(|def_id|
|
||||
def_mod(*def_id))
|
||||
}
|
||||
None => None
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
ValueNS => {
|
||||
match self.value_def {
|
||||
None => None,
|
||||
Some(value_def) => Some(value_def.def)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn privacy_for_namespace(&self, namespace: Namespace) -> Option<Privacy> {
|
||||
match namespace {
|
||||
TypeNS => {
|
||||
match self.type_def {
|
||||
None => None,
|
||||
Some(ref type_def) => Some((*type_def).privacy)
|
||||
}
|
||||
}
|
||||
ValueNS => {
|
||||
match self.value_def {
|
||||
None => None,
|
||||
Some(value_def) => Some(value_def.privacy)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn span_for_namespace(&self, namespace: Namespace) -> Option<span> {
|
||||
if self.defined_in_namespace(namespace) {
|
||||
match namespace {
|
||||
TypeNS => self.type_span,
|
||||
ValueNS => self.value_span,
|
||||
}
|
||||
} else {
|
||||
None
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub fn NameBindings() -> NameBindings {
|
||||
NameBindings {
|
||||
type_def: None,
|
||||
value_def: None,
|
||||
type_span: None,
|
||||
value_span: None
|
||||
}
|
||||
}
|
||||
|
||||
/// Interns the names of the primitive types.
|
||||
pub struct PrimitiveTypeTable {
|
||||
primitive_types: HashMap<ident,prim_ty>,
|
||||
}
|
||||
|
||||
pub impl PrimitiveTypeTable {
|
||||
fn intern(&mut self, intr: @ident_interner, string: &str,
|
||||
primitive_type: prim_ty) {
|
||||
let ident = intr.intern(string);
|
||||
self.primitive_types.insert(ident, primitive_type);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn PrimitiveTypeTable(intr: @ident_interner) -> PrimitiveTypeTable {
|
||||
let mut table = PrimitiveTypeTable {
|
||||
primitive_types: HashMap::new()
|
||||
};
|
||||
|
||||
table.intern(intr, "bool", ty_bool);
|
||||
table.intern(intr, "char", ty_int(ty_char));
|
||||
table.intern(intr, "float", ty_float(ty_f));
|
||||
table.intern(intr, "f32", ty_float(ty_f32));
|
||||
table.intern(intr, "f64", ty_float(ty_f64));
|
||||
table.intern(intr, "int", ty_int(ty_i));
|
||||
table.intern(intr, "i8", ty_int(ty_i8));
|
||||
table.intern(intr, "i16", ty_int(ty_i16));
|
||||
table.intern(intr, "i32", ty_int(ty_i32));
|
||||
table.intern(intr, "i64", ty_int(ty_i64));
|
||||
table.intern(intr, "str", ty_str);
|
||||
table.intern(intr, "uint", ty_uint(ty_u));
|
||||
table.intern(intr, "u8", ty_uint(ty_u8));
|
||||
table.intern(intr, "u16", ty_uint(ty_u16));
|
||||
table.intern(intr, "u32", ty_uint(ty_u32));
|
||||
table.intern(intr, "u64", ty_uint(ty_u64));
|
||||
|
||||
return table;
|
||||
}
|
||||
|
||||
|
||||
pub fn namespace_to_str(ns: Namespace) -> ~str {
|
||||
match ns {
|
||||
TypeNS => ~"type",
|
||||
ValueNS => ~"value",
|
||||
}
|
||||
}
|
||||
|
||||
pub fn Resolver(session: Session,
|
||||
lang_items: LanguageItems,
|
||||
crate: @crate)
|
||||
-> Resolver {
|
||||
let graph_root = @mut NameBindings();
|
||||
|
||||
graph_root.define_module(Public,
|
||||
NoParentLink,
|
||||
Some(def_id { crate: 0, node: 0 }),
|
||||
NormalModuleKind,
|
||||
crate.span);
|
||||
|
||||
let current_module = graph_root.get_module();
|
||||
|
||||
let this = Resolver {
|
||||
session: @session,
|
||||
lang_items: copy lang_items,
|
||||
crate: crate,
|
||||
|
||||
// The outermost module has def ID 0; this is not reflected in the
|
||||
// AST.
|
||||
|
||||
graph_root: graph_root,
|
||||
|
||||
trait_info: HashMap::new(),
|
||||
structs: HashSet::new(),
|
||||
|
||||
unresolved_imports: 0,
|
||||
|
||||
current_module: current_module,
|
||||
value_ribs: ~[],
|
||||
type_ribs: ~[],
|
||||
label_ribs: ~[],
|
||||
|
||||
xray_context: NoXray,
|
||||
current_trait_refs: None,
|
||||
|
||||
self_ident: special_idents::self_,
|
||||
type_self_ident: special_idents::type_self,
|
||||
|
||||
primitive_type_table: @PrimitiveTypeTable(session.
|
||||
parse_sess.interner),
|
||||
|
||||
namespaces: ~[ TypeNS, ValueNS ],
|
||||
|
||||
attr_main_fn: None,
|
||||
main_fns: ~[],
|
||||
|
||||
start_fn: None,
|
||||
|
||||
def_map: @mut HashMap::new(),
|
||||
export_map2: @mut HashMap::new(),
|
||||
trait_map: HashMap::new(),
|
||||
|
||||
intr: session.intr()
|
||||
};
|
||||
|
||||
this
|
||||
}
|
||||
|
||||
/// The main resolver class.
|
||||
pub struct Resolver {
|
||||
session: @Session,
|
||||
lang_items: LanguageItems,
|
||||
crate: @crate,
|
||||
|
||||
intr: @ident_interner,
|
||||
|
||||
graph_root: @mut NameBindings,
|
||||
|
||||
trait_info: HashMap<def_id, HashSet<ident>>,
|
||||
structs: HashSet<def_id>,
|
||||
|
||||
// The number of imports that are currently unresolved.
|
||||
unresolved_imports: uint,
|
||||
|
||||
// The module that represents the current item scope.
|
||||
current_module: @mut Module,
|
||||
|
||||
// The current set of local scopes, for values.
|
||||
// FIXME #4948: Reuse ribs to avoid allocation.
|
||||
value_ribs: ~[@Rib],
|
||||
|
||||
// The current set of local scopes, for types.
|
||||
type_ribs: ~[@Rib],
|
||||
|
||||
// The current set of local scopes, for labels.
|
||||
label_ribs: ~[@Rib],
|
||||
|
||||
// Whether the current context is an X-ray context. An X-ray context is
|
||||
// allowed to access private names of any module.
|
||||
xray_context: XrayFlag,
|
||||
|
||||
// The trait that the current context can refer to.
|
||||
current_trait_refs: Option<~[def_id]>,
|
||||
|
||||
// The ident for the keyword "self".
|
||||
self_ident: ident,
|
||||
// The ident for the non-keyword "Self".
|
||||
type_self_ident: ident,
|
||||
|
||||
// The idents for the primitive types.
|
||||
primitive_type_table: @PrimitiveTypeTable,
|
||||
|
||||
// The four namespaces.
|
||||
namespaces: ~[Namespace],
|
||||
|
||||
// The function that has attribute named 'main'
|
||||
attr_main_fn: Option<(node_id, span)>,
|
||||
|
||||
// The functions that could be main functions
|
||||
main_fns: ~[Option<(node_id, span)>],
|
||||
|
||||
// The function that has the attribute 'start' on it
|
||||
start_fn: Option<(node_id, span)>,
|
||||
|
||||
def_map: DefMap,
|
||||
export_map2: ExportMap2,
|
||||
trait_map: TraitMap,
|
||||
}
|
||||
|
||||
pub impl Resolver {
|
||||
/// The main name resolution procedure.
|
||||
fn resolve(@mut self) {
|
||||
self.build_reduced_graph();
|
||||
self.session.abort_if_errors();
|
||||
|
||||
self.resolve_imports();
|
||||
self.session.abort_if_errors();
|
||||
|
||||
self.record_exports();
|
||||
self.session.abort_if_errors();
|
||||
|
||||
self.resolve_crate();
|
||||
self.session.abort_if_errors();
|
||||
|
||||
self.check_duplicate_main();
|
||||
self.check_for_unused_imports_if_necessary();
|
||||
}
|
||||
|
||||
//
|
||||
// Reduced graph building
|
||||
//
|
||||
// Here we build the "reduced graph": the graph of the module tree without
|
||||
// any imports resolved.
|
||||
//
|
||||
|
||||
/// Constructs the reduced graph for the entire crate.
|
||||
fn build_reduced_graph(@mut self) {
|
||||
let initial_parent =
|
||||
ModuleReducedGraphParent(self.graph_root.get_module());
|
||||
visit_crate(self.crate, initial_parent, mk_vt(@Visitor {
|
||||
visit_item: |item, context, visitor|
|
||||
self.build_reduced_graph_for_item(item, context, visitor),
|
||||
|
||||
visit_foreign_item: |foreign_item, context, visitor|
|
||||
self.build_reduced_graph_for_foreign_item(foreign_item,
|
||||
context,
|
||||
visitor),
|
||||
|
||||
visit_view_item: |view_item, context, visitor|
|
||||
self.build_reduced_graph_for_view_item(view_item,
|
||||
context,
|
||||
visitor),
|
||||
|
||||
visit_block: |block, context, visitor|
|
||||
self.build_reduced_graph_for_block(block,
|
||||
context,
|
||||
visitor),
|
||||
|
||||
.. *default_visitor()
|
||||
}));
|
||||
}
|
||||
|
||||
/// Returns the current module tracked by the reduced graph parent.
|
||||
fn get_module_from_parent(@mut self,
|
||||
reduced_graph_parent: ReducedGraphParent)
|
||||
-> @mut Module {
|
||||
match reduced_graph_parent {
|
||||
ModuleReducedGraphParent(module_) => {
|
||||
return module_;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a new child item to the module definition of the parent node and
|
||||
* returns its corresponding name bindings as well as the current parent.
|
||||
* Or, if we're inside a block, creates (or reuses) an anonymous module
|
||||
* corresponding to the innermost block ID and returns the name bindings
|
||||
* as well as the newly-created parent.
|
||||
*
|
||||
* If this node does not have a module definition and we are not inside
|
||||
* a block, fails.
|
||||
*/
|
||||
fn add_child(@mut self,
|
||||
name: ident,
|
||||
reduced_graph_parent: ReducedGraphParent,
|
||||
duplicate_checking_mode: DuplicateCheckingMode,
|
||||
// For printing errors
|
||||
sp: span)
|
||||
-> (@mut NameBindings, ReducedGraphParent) {
|
||||
|
||||
// If this is the immediate descendant of a module, then we add the
|
||||
// child name directly. Otherwise, we create or reuse an anonymous
|
||||
// module and add the child to that.
|
||||
|
||||
let module_;
|
||||
match reduced_graph_parent {
|
||||
ModuleReducedGraphParent(parent_module) => {
|
||||
module_ = parent_module;
|
||||
}
|
||||
}
|
||||
|
||||
// Add or reuse the child.
|
||||
let new_parent = ModuleReducedGraphParent(module_);
|
||||
match module_.children.find(&name) {
|
||||
None => {
|
||||
let child = @mut NameBindings();
|
||||
module_.children.insert(name, child);
|
||||
return (child, new_parent);
|
||||
}
|
||||
Some(child) => {
|
||||
// Enforce the duplicate checking mode:
|
||||
//
|
||||
// * If we're requesting duplicate module checking, check that
|
||||
// there isn't a module in the module with the same name.
|
||||
//
|
||||
// * If we're requesting duplicate type checking, check that
|
||||
// there isn't a type in the module with the same name.
|
||||
//
|
||||
// * If we're requesting duplicate value checking, check that
|
||||
// there isn't a value in the module with the same name.
|
||||
//
|
||||
// * If we're requesting duplicate type checking and duplicate
|
||||
// value checking, check that there isn't a duplicate type
|
||||
// and a duplicate value with the same name.
|
||||
//
|
||||
// * If no duplicate checking was requested at all, do
|
||||
// nothing.
|
||||
|
||||
let mut is_duplicate = false;
|
||||
match duplicate_checking_mode {
|
||||
ForbidDuplicateModules => {
|
||||
is_duplicate =
|
||||
child.get_module_if_available().is_some();
|
||||
}
|
||||
ForbidDuplicateTypes => {
|
||||
match child.def_for_namespace(TypeNS) {
|
||||
Some(def_mod(_)) | None => {}
|
||||
Some(_) => is_duplicate = true
|
||||
}
|
||||
}
|
||||
ForbidDuplicateValues => {
|
||||
is_duplicate = child.defined_in_namespace(ValueNS);
|
||||
}
|
||||
ForbidDuplicateTypesAndValues => {
|
||||
match child.def_for_namespace(TypeNS) {
|
||||
Some(def_mod(_)) | None => {}
|
||||
Some(_) => is_duplicate = true
|
||||
};
|
||||
if child.defined_in_namespace(ValueNS) {
|
||||
is_duplicate = true;
|
||||
}
|
||||
}
|
||||
OverwriteDuplicates => {}
|
||||
}
|
||||
if duplicate_checking_mode != OverwriteDuplicates &&
|
||||
is_duplicate {
|
||||
// Return an error here by looking up the namespace that
|
||||
// had the duplicate.
|
||||
let ns = namespace_for_duplicate_checking_mode(
|
||||
duplicate_checking_mode);
|
||||
self.session.span_err(sp,
|
||||
fmt!("duplicate definition of %s %s",
|
||||
namespace_to_str(ns),
|
||||
*self.session.str_of(name)));
|
||||
for child.span_for_namespace(ns).each |sp| {
|
||||
self.session.span_note(*sp,
|
||||
fmt!("first definition of %s %s here:",
|
||||
namespace_to_str(ns),
|
||||
*self.session.str_of(name)));
|
||||
}
|
||||
}
|
||||
return (*child, new_parent);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn block_needs_anonymous_module(@mut self, block: &blk) -> bool {
|
||||
// If the block has view items, we need an anonymous module.
|
||||
if block.node.view_items.len() > 0 {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Check each statement.
|
||||
for block.node.stmts.each |statement| {
|
||||
match statement.node {
|
||||
stmt_decl(declaration, _) => {
|
||||
match declaration.node {
|
||||
decl_item(_) => {
|
||||
return true;
|
||||
}
|
||||
_ => {
|
||||
// Keep searching.
|
||||
}
|
||||
}
|
||||
}
|
||||
_ => {
|
||||
// Keep searching.
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// If we found neither view items nor items, we don't need to create
|
||||
// an anonymous module.
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
fn get_parent_link(@mut self,
|
||||
parent: ReducedGraphParent,
|
||||
name: ident)
|
||||
-> ParentLink {
|
||||
match parent {
|
||||
ModuleReducedGraphParent(module_) => {
|
||||
return ModuleParentLink(module_, name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Constructs the reduced graph for one item.
|
||||
fn build_reduced_graph_for_item(@mut self,
|
||||
item: @item,
|
||||
parent: ReducedGraphParent,
|
||||
visitor: vt<ReducedGraphParent>) {
|
||||
let ident = item.ident;
|
||||
let sp = item.span;
|
||||
let privacy = visibility_to_privacy(item.vis);
|
||||
|
||||
match item.node {
|
||||
item_mod(ref module_) => {
|
||||
let (name_bindings, new_parent) =
|
||||
self.add_child(ident, parent, ForbidDuplicateModules, sp);
|
||||
|
||||
let parent_link = self.get_parent_link(new_parent, ident);
|
||||
let def_id = def_id { crate: 0, node: item.id };
|
||||
name_bindings.define_module(privacy,
|
||||
parent_link,
|
||||
Some(def_id),
|
||||
NormalModuleKind,
|
||||
sp);
|
||||
|
||||
let new_parent =
|
||||
ModuleReducedGraphParent(name_bindings.get_module());
|
||||
|
||||
visit_mod(module_, sp, item.id, new_parent, visitor);
|
||||
}
|
||||
|
||||
item_foreign_mod(ref fm) => {
|
||||
let new_parent = match fm.sort {
|
||||
named => {
|
||||
let (name_bindings, new_parent) =
|
||||
self.add_child(ident, parent,
|
||||
ForbidDuplicateModules, sp);
|
||||
|
||||
let parent_link = self.get_parent_link(new_parent,
|
||||
ident);
|
||||
let def_id = def_id { crate: 0, node: item.id };
|
||||
name_bindings.define_module(privacy,
|
||||
parent_link,
|
||||
Some(def_id),
|
||||
ExternModuleKind,
|
||||
sp);
|
||||
|
||||
ModuleReducedGraphParent(name_bindings.get_module())
|
||||
}
|
||||
|
||||
// For anon foreign mods, the contents just go in the
|
||||
// current scope
|
||||
anonymous => parent
|
||||
};
|
||||
|
||||
visit_item(item, new_parent, visitor);
|
||||
}
|
||||
|
||||
// These items live in the value namespace.
|
||||
item_const(*) => {
|
||||
let (name_bindings, _) =
|
||||
self.add_child(ident, parent, ForbidDuplicateValues, sp);
|
||||
|
||||
name_bindings.define_value
|
||||
(privacy, def_const(local_def(item.id)), sp);
|
||||
}
|
||||
item_fn(_, purity, _, _, _) => {
|
||||
let (name_bindings, new_parent) =
|
||||
self.add_child(ident, parent, ForbidDuplicateValues, sp);
|
||||
|
||||
let def = def_fn(local_def(item.id), purity);
|
||||
name_bindings.define_value(privacy, def, sp);
|
||||
visit_item(item, new_parent, visitor);
|
||||
}
|
||||
|
||||
// These items live in the type namespace.
|
||||
item_ty(*) => {
|
||||
let (name_bindings, _) =
|
||||
self.add_child(ident, parent, ForbidDuplicateTypes, sp);
|
||||
|
||||
name_bindings.define_type
|
||||
(privacy, def_ty(local_def(item.id)), sp);
|
||||
}
|
||||
|
||||
item_enum(ref enum_definition, _) => {
|
||||
let (name_bindings, new_parent) =
|
||||
self.add_child(ident, parent, ForbidDuplicateTypes, sp);
|
||||
|
||||
name_bindings.define_type
|
||||
(privacy, def_ty(local_def(item.id)), sp);
|
||||
|
||||
for (*enum_definition).variants.each |variant| {
|
||||
self.build_reduced_graph_for_variant(variant,
|
||||
local_def(item.id),
|
||||
// inherited => privacy of the enum item
|
||||
variant_visibility_to_privacy(variant.node.vis,
|
||||
privacy == Public),
|
||||
new_parent,
|
||||
visitor);
|
||||
}
|
||||
}
|
||||
|
||||
// These items live in both the type and value namespaces.
|
||||
item_struct(struct_def, _) => {
|
||||
let (name_bindings, new_parent) =
|
||||
self.add_child(ident, parent, ForbidDuplicateTypes, sp);
|
||||
|
||||
name_bindings.define_type(
|
||||
privacy, def_ty(local_def(item.id)), sp);
|
||||
|
||||
// If this struct is tuple-like or enum-like, define a name
|
||||
// in the value namespace.
|
||||
match struct_def.ctor_id {
|
||||
None => {}
|
||||
Some(ctor_id) => {
|
||||
name_bindings.define_value(
|
||||
privacy,
|
||||
def_struct(local_def(ctor_id)),
|
||||
sp);
|
||||
}
|
||||
}
|
||||
|
||||
// Record the def ID of this struct.
|
||||
self.structs.insert(local_def(item.id));
|
||||
|
||||
visit_item(item, new_parent, visitor);
|
||||
}
|
||||
|
||||
item_impl(_, trait_ref_opt, ty, ref methods) => {
|
||||
// If this implements an anonymous trait and it has static
|
||||
// methods, then add all the static methods within to a new
|
||||
// module, if the type was defined within this module.
|
||||
//
|
||||
// FIXME (#3785): This is quite unsatisfactory. Perhaps we
|
||||
// should modify anonymous traits to only be implementable in
|
||||
// the same module that declared the type.
|
||||
|
||||
// Bail out early if there are no static methods.
|
||||
let mut has_static_methods = false;
|
||||
for methods.each |method| {
|
||||
match method.explicit_self.node {
|
||||
sty_static => has_static_methods = true,
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
|
||||
// If there are static methods, then create the module
|
||||
// and add them.
|
||||
match (trait_ref_opt, ty) {
|
||||
(None, @Ty { node: ty_path(path, _), _ }) if
|
||||
has_static_methods && path.idents.len() == 1 => {
|
||||
// Create the module.
|
||||
let name = path_to_ident(path);
|
||||
let (name_bindings, new_parent) =
|
||||
self.add_child(name,
|
||||
parent,
|
||||
ForbidDuplicateModules,
|
||||
sp);
|
||||
|
||||
let parent_link = self.get_parent_link(new_parent,
|
||||
ident);
|
||||
let def_id = local_def(item.id);
|
||||
name_bindings.define_module(Public,
|
||||
parent_link,
|
||||
Some(def_id),
|
||||
TraitModuleKind,
|
||||
sp);
|
||||
|
||||
let new_parent = ModuleReducedGraphParent(
|
||||
name_bindings.get_module());
|
||||
|
||||
// For each static method...
|
||||
for methods.each |method| {
|
||||
match method.explicit_self.node {
|
||||
sty_static => {
|
||||
// Add the static method to the
|
||||
// module.
|
||||
let ident = method.ident;
|
||||
let (method_name_bindings, _) =
|
||||
self.add_child(
|
||||
ident,
|
||||
new_parent,
|
||||
ForbidDuplicateValues,
|
||||
method.span);
|
||||
let def = def_fn(local_def(method.id),
|
||||
method.purity);
|
||||
method_name_bindings.define_value(
|
||||
Public, def, method.span);
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
|
||||
visit_item(item, parent, visitor);
|
||||
}
|
||||
|
||||
item_trait(_, _, ref methods) => {
|
||||
let (name_bindings, new_parent) =
|
||||
self.add_child(ident, parent, ForbidDuplicateTypes, sp);
|
||||
|
||||
// If the trait has static methods, then add all the static
|
||||
// methods within to a new module.
|
||||
//
|
||||
// We only need to create the module if the trait has static
|
||||
// methods, so check that first.
|
||||
let mut has_static_methods = false;
|
||||
for (*methods).each |method| {
|
||||
let ty_m = trait_method_to_ty_method(method);
|
||||
match ty_m.explicit_self.node {
|
||||
sty_static => {
|
||||
has_static_methods = true;
|
||||
break;
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
|
||||
// Create the module if necessary.
|
||||
let module_parent_opt;
|
||||
if has_static_methods {
|
||||
let parent_link = self.get_parent_link(parent, ident);
|
||||
name_bindings.define_module(privacy,
|
||||
parent_link,
|
||||
Some(local_def(item.id)),
|
||||
TraitModuleKind,
|
||||
sp);
|
||||
module_parent_opt = Some(ModuleReducedGraphParent(
|
||||
name_bindings.get_module()));
|
||||
} else {
|
||||
module_parent_opt = None;
|
||||
}
|
||||
|
||||
// Add the names of all the methods to the trait info.
|
||||
let mut method_names = HashSet::new();
|
||||
for methods.each |method| {
|
||||
let ty_m = trait_method_to_ty_method(method);
|
||||
|
||||
let ident = ty_m.ident;
|
||||
// Add it to the trait info if not static,
|
||||
// add it as a name in the trait module otherwise.
|
||||
match ty_m.explicit_self.node {
|
||||
sty_static => {
|
||||
let def = def_static_method(
|
||||
local_def(ty_m.id),
|
||||
Some(local_def(item.id)),
|
||||
ty_m.purity);
|
||||
|
||||
let (method_name_bindings, _) =
|
||||
self.add_child(ident,
|
||||
module_parent_opt.get(),
|
||||
ForbidDuplicateValues,
|
||||
ty_m.span);
|
||||
method_name_bindings.define_value(Public,
|
||||
def,
|
||||
ty_m.span);
|
||||
}
|
||||
_ => {
|
||||
method_names.insert(ident);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
let def_id = local_def(item.id);
|
||||
self.trait_info.insert(def_id, method_names);
|
||||
|
||||
name_bindings.define_type(privacy, def_trait(def_id), sp);
|
||||
visit_item(item, new_parent, visitor);
|
||||
}
|
||||
|
||||
item_mac(*) => {
|
||||
fail!("item macros unimplemented")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Constructs the reduced graph for one variant. Variants exist in the
|
||||
// type and/or value namespaces.
|
||||
fn build_reduced_graph_for_variant(@mut self,
|
||||
variant: &variant,
|
||||
item_id: def_id,
|
||||
parent_privacy: Privacy,
|
||||
parent: ReducedGraphParent,
|
||||
_visitor: vt<ReducedGraphParent>) {
|
||||
let ident = variant.node.name;
|
||||
let (child, _) = self.add_child(ident, parent, ForbidDuplicateValues,
|
||||
variant.span);
|
||||
|
||||
let privacy;
|
||||
match variant.node.vis {
|
||||
public => privacy = Public,
|
||||
private => privacy = Private,
|
||||
inherited => privacy = parent_privacy
|
||||
}
|
||||
|
||||
match variant.node.kind {
|
||||
tuple_variant_kind(_) => {
|
||||
child.define_value(privacy,
|
||||
def_variant(item_id,
|
||||
local_def(variant.node.id)),
|
||||
variant.span);
|
||||
}
|
||||
struct_variant_kind(_) => {
|
||||
child.define_type(privacy,
|
||||
def_variant(item_id,
|
||||
local_def(variant.node.id)),
|
||||
variant.span);
|
||||
self.structs.insert(local_def(variant.node.id));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs the reduced graph for one 'view item'. View items consist
|
||||
* of imports and use directives.
|
||||
*/
|
||||
fn build_reduced_graph_for_view_item(@mut self,
|
||||
view_item: @view_item,
|
||||
parent: ReducedGraphParent,
|
||||
_visitor: vt<ReducedGraphParent>) {
|
||||
let privacy = visibility_to_privacy(view_item.vis);
|
||||
match view_item.node {
|
||||
view_item_use(ref view_paths) => {
|
||||
for view_paths.each |view_path| {
|
||||
// Extract and intern the module part of the path. For
|
||||
// globs and lists, the path is found directly in the AST;
|
||||
// for simple paths we have to munge the path a little.
|
||||
|
||||
let mut module_path = ~[];
|
||||
match view_path.node {
|
||||
view_path_simple(_, full_path, _) => {
|
||||
let path_len = full_path.idents.len();
|
||||
assert!(path_len != 0);
|
||||
|
||||
for full_path.idents.eachi |i, ident| {
|
||||
if i != path_len - 1 {
|
||||
module_path.push(*ident);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
view_path_glob(module_ident_path, _) |
|
||||
view_path_list(module_ident_path, _, _) => {
|
||||
for module_ident_path.idents.each |ident| {
|
||||
module_path.push(*ident);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Build up the import directives.
|
||||
let module_ = self.get_module_from_parent(parent);
|
||||
match view_path.node {
|
||||
view_path_simple(binding, full_path, _) => {
|
||||
let source_ident = *full_path.idents.last();
|
||||
let subclass = @SingleImport(binding,
|
||||
source_ident);
|
||||
self.build_import_directive(privacy,
|
||||
module_,
|
||||
module_path,
|
||||
subclass,
|
||||
view_path.span);
|
||||
}
|
||||
view_path_list(_, ref source_idents, _) => {
|
||||
for source_idents.each |source_ident| {
|
||||
let name = source_ident.node.name;
|
||||
let subclass = @SingleImport(name, name);
|
||||
self.build_import_directive(privacy,
|
||||
module_,
|
||||
copy module_path,
|
||||
subclass,
|
||||
source_ident.span);
|
||||
}
|
||||
}
|
||||
view_path_glob(_, _) => {
|
||||
self.build_import_directive(privacy,
|
||||
module_,
|
||||
module_path,
|
||||
@GlobImport,
|
||||
view_path.span);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
view_item_extern_mod(name, _, node_id) => {
|
||||
match find_extern_mod_stmt_cnum(self.session.cstore,
|
||||
node_id) {
|
||||
Some(crate_id) => {
|
||||
let def_id = def_id { crate: crate_id, node: 0 };
|
||||
let parent_link = ModuleParentLink
|
||||
(self.get_module_from_parent(parent), name);
|
||||
let external_module = @mut Module(parent_link,
|
||||
Some(def_id),
|
||||
NormalModuleKind);
|
||||
|
||||
parent.external_module_children.insert(
|
||||
name,
|
||||
external_module);
|
||||
|
||||
self.build_reduced_graph_for_external_crate(
|
||||
external_module);
|
||||
}
|
||||
None => {} // Ignore.
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Constructs the reduced graph for one foreign item.
|
||||
fn build_reduced_graph_for_foreign_item(@mut self,
|
||||
foreign_item: @foreign_item,
|
||||
parent: ReducedGraphParent,
|
||||
visitor:
|
||||
vt<ReducedGraphParent>) {
|
||||
let name = foreign_item.ident;
|
||||
let (name_bindings, new_parent) =
|
||||
self.add_child(name, parent, ForbidDuplicateValues,
|
||||
foreign_item.span);
|
||||
|
||||
match foreign_item.node {
|
||||
foreign_item_fn(_, _, ref generics) => {
|
||||
let def = def_fn(local_def(foreign_item.id), unsafe_fn);
|
||||
name_bindings.define_value(Public, def, foreign_item.span);
|
||||
|
||||
do self.with_type_parameter_rib(
|
||||
HasTypeParameters(
|
||||
generics, foreign_item.id, 0, NormalRibKind))
|
||||
{
|
||||
visit_foreign_item(foreign_item, new_parent, visitor);
|
||||
}
|
||||
}
|
||||
foreign_item_const(*) => {
|
||||
let def = def_const(local_def(foreign_item.id));
|
||||
name_bindings.define_value(Public, def, foreign_item.span);
|
||||
|
||||
visit_foreign_item(foreign_item, new_parent, visitor);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn build_reduced_graph_for_block(@mut self,
|
||||
block: &blk,
|
||||
parent: ReducedGraphParent,
|
||||
visitor: vt<ReducedGraphParent>) {
|
||||
let new_parent;
|
||||
if self.block_needs_anonymous_module(block) {
|
||||
let block_id = block.node.id;
|
||||
|
||||
debug!("(building reduced graph for block) creating a new \
|
||||
anonymous module for block %d",
|
||||
block_id);
|
||||
|
||||
let parent_module = self.get_module_from_parent(parent);
|
||||
let new_module = @mut Module(
|
||||
BlockParentLink(parent_module, block_id),
|
||||
None,
|
||||
AnonymousModuleKind);
|
||||
parent_module.anonymous_children.insert(block_id, new_module);
|
||||
new_parent = ModuleReducedGraphParent(new_module);
|
||||
} else {
|
||||
new_parent = parent;
|
||||
}
|
||||
|
||||
visit_block(block, new_parent, visitor);
|
||||
}
|
||||
|
||||
fn handle_external_def(@mut self,
|
||||
def: def,
|
||||
modules: &mut HashMap<def_id, @mut Module>,
|
||||
child_name_bindings: @mut NameBindings,
|
||||
final_ident: &str,
|
||||
ident: ident,
|
||||
new_parent: ReducedGraphParent) {
|
||||
match def {
|
||||
def_mod(def_id) | def_foreign_mod(def_id) => {
|
||||
match child_name_bindings.type_def {
|
||||
Some(TypeNsDef { module_def: Some(copy module_def), _ }) => {
|
||||
debug!("(building reduced graph for external crate) \
|
||||
already created module");
|
||||
module_def.def_id = Some(def_id);
|
||||
modules.insert(def_id, module_def);
|
||||
}
|
||||
Some(_) | None => {
|
||||
debug!("(building reduced graph for \
|
||||
external crate) building module \
|
||||
%s", final_ident);
|
||||
let parent_link = self.get_parent_link(new_parent, ident);
|
||||
|
||||
// FIXME (#5074): this should be a match on find
|
||||
if !modules.contains_key(&def_id) {
|
||||
child_name_bindings.define_module(Public,
|
||||
parent_link,
|
||||
Some(def_id),
|
||||
NormalModuleKind,
|
||||
dummy_sp());
|
||||
modules.insert(def_id,
|
||||
child_name_bindings.get_module());
|
||||
} else {
|
||||
let existing_module = *modules.get(&def_id);
|
||||
// Create an import resolution to
|
||||
// avoid creating cycles in the
|
||||
// module graph.
|
||||
|
||||
let resolution =
|
||||
@mut ImportResolution(Public,
|
||||
dummy_sp(),
|
||||
@mut ImportState());
|
||||
resolution.outstanding_references = 0;
|
||||
|
||||
match existing_module.parent_link {
|
||||
NoParentLink |
|
||||
BlockParentLink(*) => {
|
||||
fail!("can't happen");
|
||||
}
|
||||
ModuleParentLink(parent_module, ident) => {
|
||||
let name_bindings = parent_module.children.get(
|
||||
&ident);
|
||||
resolution.type_target =
|
||||
Some(Target(parent_module, *name_bindings));
|
||||
}
|
||||
}
|
||||
|
||||
debug!("(building reduced graph for external crate) \
|
||||
... creating import resolution");
|
||||
|
||||
new_parent.import_resolutions.insert(ident, resolution);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
def_fn(*) | def_static_method(*) | def_const(*) |
|
||||
def_variant(*) => {
|
||||
debug!("(building reduced graph for external \
|
||||
crate) building value %s", final_ident);
|
||||
child_name_bindings.define_value(Public, def, dummy_sp());
|
||||
}
|
||||
def_trait(def_id) => {
|
||||
debug!("(building reduced graph for external \
|
||||
crate) building type %s", final_ident);
|
||||
|
||||
// If this is a trait, add all the method names
|
||||
// to the trait info.
|
||||
|
||||
let method_def_ids = get_trait_method_def_ids(self.session.cstore,
|
||||
def_id);
|
||||
let mut interned_method_names = HashSet::new();
|
||||
for method_def_ids.each |&method_def_id| {
|
||||
let (method_name, explicit_self) =
|
||||
get_method_name_and_explicit_self(self.session.cstore,
|
||||
method_def_id);
|
||||
|
||||
debug!("(building reduced graph for \
|
||||
external crate) ... adding \
|
||||
trait method '%s'",
|
||||
*self.session.str_of(method_name));
|
||||
|
||||
// Add it to the trait info if not static.
|
||||
if explicit_self != sty_static {
|
||||
interned_method_names.insert(method_name);
|
||||
}
|
||||
}
|
||||
self.trait_info.insert(def_id, interned_method_names);
|
||||
|
||||
child_name_bindings.define_type(Public, def, dummy_sp());
|
||||
}
|
||||
def_ty(_) => {
|
||||
debug!("(building reduced graph for external \
|
||||
crate) building type %s", final_ident);
|
||||
|
||||
child_name_bindings.define_type(Public, def, dummy_sp());
|
||||
}
|
||||
def_struct(def_id) => {
|
||||
debug!("(building reduced graph for external \
|
||||
crate) building type %s",
|
||||
final_ident);
|
||||
child_name_bindings.define_type(Public, def, dummy_sp());
|
||||
self.structs.insert(def_id);
|
||||
}
|
||||
def_self(*) | def_arg(*) | def_local(*) |
|
||||
def_prim_ty(*) | def_ty_param(*) | def_binding(*) |
|
||||
def_use(*) | def_upvar(*) | def_region(*) |
|
||||
def_typaram_binder(*) | def_label(*) | def_self_ty(*) => {
|
||||
fail!("didn't expect `%?`", def);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Builds the reduced graph rooted at the 'use' directive for an external
|
||||
* crate.
|
||||
*/
|
||||
fn build_reduced_graph_for_external_crate(@mut self, root: @mut Module) {
|
||||
let mut modules = HashMap::new();
|
||||
|
||||
// Create all the items reachable by paths.
|
||||
for each_path(self.session.cstore, root.def_id.get().crate)
|
||||
|path_string, def_like| {
|
||||
|
||||
debug!("(building reduced graph for external crate) found path \
|
||||
entry: %s (%?)",
|
||||
path_string, def_like);
|
||||
|
||||
let mut pieces = ~[];
|
||||
for each_split_str(path_string, "::") |s| { pieces.push(s.to_owned()) }
|
||||
let final_ident_str = pieces.pop();
|
||||
let final_ident = self.session.ident_of(final_ident_str);
|
||||
|
||||
// Find the module we need, creating modules along the way if we
|
||||
// need to.
|
||||
|
||||
let mut current_module = root;
|
||||
for pieces.each |ident_str| {
|
||||
let ident = self.session.ident_of(/*bad*/copy *ident_str);
|
||||
// Create or reuse a graph node for the child.
|
||||
let (child_name_bindings, new_parent) =
|
||||
self.add_child(ident,
|
||||
ModuleReducedGraphParent(current_module),
|
||||
OverwriteDuplicates,
|
||||
dummy_sp());
|
||||
|
||||
// Define or reuse the module node.
|
||||
match child_name_bindings.type_def {
|
||||
None => {
|
||||
debug!("(building reduced graph for external crate) \
|
||||
autovivifying missing type def %s",
|
||||
*ident_str);
|
||||
let parent_link = self.get_parent_link(new_parent,
|
||||
ident);
|
||||
child_name_bindings.define_module(Public,
|
||||
parent_link,
|
||||
None,
|
||||
NormalModuleKind,
|
||||
dummy_sp());
|
||||
}
|
||||
Some(copy type_ns_def)
|
||||
if type_ns_def.module_def.is_none() => {
|
||||
debug!("(building reduced graph for external crate) \
|
||||
autovivifying missing module def %s",
|
||||
*ident_str);
|
||||
let parent_link = self.get_parent_link(new_parent,
|
||||
ident);
|
||||
child_name_bindings.define_module(Public,
|
||||
parent_link,
|
||||
None,
|
||||
NormalModuleKind,
|
||||
dummy_sp());
|
||||
}
|
||||
_ => {} // Fall through.
|
||||
}
|
||||
|
||||
current_module = child_name_bindings.get_module();
|
||||
}
|
||||
|
||||
match def_like {
|
||||
dl_def(def) => {
|
||||
// Add the new child item.
|
||||
let (child_name_bindings, new_parent) =
|
||||
self.add_child(final_ident,
|
||||
ModuleReducedGraphParent(
|
||||
current_module),
|
||||
OverwriteDuplicates,
|
||||
dummy_sp());
|
||||
|
||||
self.handle_external_def(def,
|
||||
&mut modules,
|
||||
child_name_bindings,
|
||||
*self.session.str_of(
|
||||
final_ident),
|
||||
final_ident,
|
||||
new_parent);
|
||||
}
|
||||
dl_impl(def) => {
|
||||
// We only process static methods of impls here.
|
||||
match get_type_name_if_impl(self.session.cstore, def) {
|
||||
None => {}
|
||||
Some(final_ident) => {
|
||||
let static_methods_opt =
|
||||
get_static_methods_if_impl(
|
||||
self.session.cstore, def);
|
||||
match static_methods_opt {
|
||||
Some(ref static_methods) if
|
||||
static_methods.len() >= 1 => {
|
||||
debug!("(building reduced graph for \
|
||||
external crate) processing \
|
||||
static methods for type name %s",
|
||||
*self.session.str_of(
|
||||
final_ident));
|
||||
|
||||
let (child_name_bindings, new_parent) =
|
||||
self.add_child(final_ident,
|
||||
ModuleReducedGraphParent(
|
||||
current_module),
|
||||
OverwriteDuplicates,
|
||||
dummy_sp());
|
||||
|
||||
// Process the static methods. First,
|
||||
// create the module.
|
||||
let type_module;
|
||||
match child_name_bindings.type_def {
|
||||
Some(TypeNsDef {
|
||||
module_def: Some(copy module_def),
|
||||
_
|
||||
}) => {
|
||||
// We already have a module. This
|
||||
// is OK.
|
||||
type_module = module_def;
|
||||
}
|
||||
Some(_) | None => {
|
||||
let parent_link =
|
||||
self.get_parent_link(
|
||||
new_parent, final_ident);
|
||||
child_name_bindings.define_module(
|
||||
Public,
|
||||
parent_link,
|
||||
Some(def),
|
||||
NormalModuleKind,
|
||||
dummy_sp());
|
||||
type_module =
|
||||
child_name_bindings.
|
||||
get_module();
|
||||
}
|
||||
}
|
||||
|
||||
// Add each static method to the module.
|
||||
let new_parent = ModuleReducedGraphParent(
|
||||
type_module);
|
||||
for static_methods.each
|
||||
|static_method_info| {
|
||||
let ident = static_method_info.ident;
|
||||
debug!("(building reduced graph for \
|
||||
external crate) creating \
|
||||
static method '%s'",
|
||||
*self.session.str_of(ident));
|
||||
|
||||
let (method_name_bindings, _) =
|
||||
self.add_child(
|
||||
ident,
|
||||
new_parent,
|
||||
OverwriteDuplicates,
|
||||
dummy_sp());
|
||||
let def = def_fn(
|
||||
static_method_info.def_id,
|
||||
static_method_info.purity);
|
||||
method_name_bindings.define_value(
|
||||
Public, def, dummy_sp());
|
||||
}
|
||||
}
|
||||
|
||||
// Otherwise, do nothing.
|
||||
Some(_) | None => {}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
dl_field => {
|
||||
debug!("(building reduced graph for external crate) \
|
||||
ignoring field");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Creates and adds an import directive to the given module.
|
||||
fn build_import_directive(@mut self,
|
||||
privacy: Privacy,
|
||||
module_: @mut Module,
|
||||
module_path: ~[ident],
|
||||
subclass: @ImportDirectiveSubclass,
|
||||
span: span) {
|
||||
let directive = @ImportDirective(privacy, module_path,
|
||||
subclass, span);
|
||||
module_.imports.push(directive);
|
||||
|
||||
// Bump the reference count on the name. Or, if this is a glob, set
|
||||
// the appropriate flag.
|
||||
|
||||
match *subclass {
|
||||
SingleImport(target, _) => {
|
||||
debug!("(building import directive) building import \
|
||||
directive: privacy %? %s::%s",
|
||||
privacy,
|
||||
self.idents_to_str(directive.module_path),
|
||||
*self.session.str_of(target));
|
||||
|
||||
match module_.import_resolutions.find(&target) {
|
||||
Some(resolution) => {
|
||||
debug!("(building import directive) bumping \
|
||||
reference");
|
||||
resolution.outstanding_references += 1;
|
||||
}
|
||||
None => {
|
||||
debug!("(building import directive) creating new");
|
||||
let state = @mut ImportState();
|
||||
let resolution = @mut ImportResolution(privacy,
|
||||
span,
|
||||
state);
|
||||
let name = self.idents_to_str(directive.module_path);
|
||||
// Don't warn about unused intrinsics because they're
|
||||
// automatically appended to all files
|
||||
if name == ~"intrinsic::rusti" {
|
||||
resolution.state.warned = true;
|
||||
}
|
||||
resolution.outstanding_references = 1;
|
||||
module_.import_resolutions.insert(target, resolution);
|
||||
}
|
||||
}
|
||||
}
|
||||
GlobImport => {
|
||||
// Set the glob flag. This tells us that we don't know the
|
||||
// module's exports ahead of time.
|
||||
|
||||
module_.glob_count += 1;
|
||||
}
|
||||
}
|
||||
|
||||
self.unresolved_imports += 1;
|
||||
}
|
||||
|
||||
// Import resolution
|
||||
//
|
||||
// This is a fixed-point algorithm. We resolve imports until our efforts
|
||||
// are stymied by an unresolved import; then we bail out of the current
|
||||
// module and continue. We terminate successfully once no more imports
|
||||
// remain or unsuccessfully when no forward progress in resolving imports
|
||||
// is made.
|
||||
|
||||
/**
|
||||
* Resolves all imports for the crate. This method performs the fixed-
|
||||
* point iteration.
|
||||
*/
|
||||
fn resolve_imports(@mut self) {
|
||||
let mut i = 0;
|
||||
let mut prev_unresolved_imports = 0;
|
||||
loop {
|
||||
debug!("(resolving imports) iteration %u, %u imports left",
|
||||
i, self.unresolved_imports);
|
||||
|
||||
let module_root = self.graph_root.get_module();
|
||||
self.resolve_imports_for_module_subtree(module_root);
|
||||
|
||||
if self.unresolved_imports == 0 {
|
||||
debug!("(resolving imports) success");
|
||||
break;
|
||||
}
|
||||
|
||||
if self.unresolved_imports == prev_unresolved_imports {
|
||||
self.session.err(~"failed to resolve imports");
|
||||
self.report_unresolved_imports(module_root);
|
||||
break;
|
||||
}
|
||||
|
||||
i += 1;
|
||||
prev_unresolved_imports = self.unresolved_imports;
|
||||
}
|
||||
}
|
||||
|
||||
/// Attempts to resolve imports for the given module and all of its
|
||||
/// submodules.
|
||||
fn resolve_imports_for_module_subtree(@mut self, module_: @mut Module) {
|
||||
debug!("(resolving imports for module subtree) resolving %s",
|
||||
self.module_to_str(module_));
|
||||
self.resolve_imports_for_module(module_);
|
||||
|
||||
for module_.children.each_value |&child_node| {
|
||||
match child_node.get_module_if_available() {
|
||||
None => {
|
||||
// Nothing to do.
|
||||
}
|
||||
Some(child_module) => {
|
||||
self.resolve_imports_for_module_subtree(child_module);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for module_.anonymous_children.each_value |&child_module| {
|
||||
self.resolve_imports_for_module_subtree(child_module);
|
||||
}
|
||||
}
|
||||
|
||||
/// Attempts to resolve imports for the given module only.
|
||||
fn resolve_imports_for_module(@mut self, module: @mut Module) {
|
||||
if module.all_imports_resolved() {
|
||||
debug!("(resolving imports for module) all imports resolved for \
|
||||
%s",
|
||||
self.module_to_str(module));
|
||||
return;
|
||||
}
|
||||
|
||||
let imports = &mut *module.imports;
|
||||
let import_count = imports.len();
|
||||
while module.resolved_import_count < import_count {
|
||||
let import_index = module.resolved_import_count;
|
||||
let import_directive = imports[import_index];
|
||||
match self.resolve_import_for_module(module, import_directive) {
|
||||
Failed => {
|
||||
// We presumably emitted an error. Continue.
|
||||
let msg = fmt!("failed to resolve import: %s",
|
||||
*self.import_path_to_str(
|
||||
import_directive.module_path,
|
||||
*import_directive.subclass));
|
||||
self.session.span_err(import_directive.span, msg);
|
||||
}
|
||||
Indeterminate => {
|
||||
// Bail out. We'll come around next time.
|
||||
break;
|
||||
}
|
||||
Success(()) => {
|
||||
// Good. Continue.
|
||||
}
|
||||
}
|
||||
|
||||
module.resolved_import_count += 1;
|
||||
}
|
||||
}
|
||||
|
||||
fn idents_to_str(@mut self, idents: &[ident]) -> ~str {
|
||||
let mut first = true;
|
||||
let mut result = ~"";
|
||||
for idents.each |ident| {
|
||||
if first { first = false; } else { result += "::" };
|
||||
result += *self.session.str_of(*ident);
|
||||
};
|
||||
return result;
|
||||
}
|
||||
|
||||
fn import_directive_subclass_to_str(@mut self,
|
||||
subclass: ImportDirectiveSubclass)
|
||||
-> @~str {
|
||||
match subclass {
|
||||
SingleImport(_target, source) => self.session.str_of(source),
|
||||
GlobImport => @~"*"
|
||||
}
|
||||
}
|
||||
|
||||
fn import_path_to_str(@mut self,
|
||||
idents: &[ident],
|
||||
subclass: ImportDirectiveSubclass)
|
||||
-> @~str {
|
||||
if idents.is_empty() {
|
||||
self.import_directive_subclass_to_str(subclass)
|
||||
} else {
|
||||
@fmt!("%s::%s",
|
||||
self.idents_to_str(idents),
|
||||
*self.import_directive_subclass_to_str(subclass))
|
||||
}
|
||||
}
|
||||
|
||||
/// Attempts to resolve the given import. The return value indicates
|
||||
/// failure if we're certain the name does not exist, indeterminate if we
|
||||
/// don't know whether the name exists at the moment due to other
|
||||
/// currently-unresolved imports, or success if we know the name exists.
|
||||
/// If successful, the resolved bindings are written into the module.
|
||||
fn resolve_import_for_module(@mut self, module_: @mut Module,
|
||||
import_directive: @ImportDirective)
|
||||
-> ResolveResult<()> {
|
||||
let mut resolution_result = Failed;
|
||||
let module_path = &import_directive.module_path;
|
||||
|
||||
debug!("(resolving import for module) resolving import `%s::...` in \
|
||||
`%s`",
|
||||
self.idents_to_str(*module_path),
|
||||
self.module_to_str(module_));
|
||||
|
||||
// First, resolve the module path for the directive, if necessary.
|
||||
let containing_module = if module_path.len() == 0 {
|
||||
// Use the crate root.
|
||||
Some(self.graph_root.get_module())
|
||||
} else {
|
||||
match self.resolve_module_path_for_import(module_,
|
||||
*module_path,
|
||||
DontUseLexicalScope,
|
||||
import_directive.span) {
|
||||
|
||||
Failed => None,
|
||||
Indeterminate => {
|
||||
resolution_result = Indeterminate;
|
||||
None
|
||||
}
|
||||
Success(containing_module) => Some(containing_module),
|
||||
}
|
||||
};
|
||||
|
||||
match containing_module {
|
||||
None => {}
|
||||
Some(containing_module) => {
|
||||
// We found the module that the target is contained
|
||||
// within. Attempt to resolve the import within it.
|
||||
|
||||
match *import_directive.subclass {
|
||||
SingleImport(target, source) => {
|
||||
resolution_result =
|
||||
self.resolve_single_import(module_,
|
||||
containing_module,
|
||||
target,
|
||||
source);
|
||||
}
|
||||
GlobImport => {
|
||||
let span = import_directive.span;
|
||||
let privacy = import_directive.privacy;
|
||||
resolution_result =
|
||||
self.resolve_glob_import(privacy,
|
||||
module_,
|
||||
containing_module,
|
||||
span);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Decrement the count of unresolved imports.
|
||||
match resolution_result {
|
||||
Success(()) => {
|
||||
assert!(self.unresolved_imports >= 1);
|
||||
self.unresolved_imports -= 1;
|
||||
}
|
||||
_ => {
|
||||
// Nothing to do here; just return the error.
|
||||
}
|
||||
}
|
||||
|
||||
// Decrement the count of unresolved globs if necessary. But only if
|
||||
// the resolution result is indeterminate -- otherwise we'll stop
|
||||
// processing imports here. (See the loop in
|
||||
// resolve_imports_for_module.)
|
||||
|
||||
if !resolution_result.indeterminate() {
|
||||
match *import_directive.subclass {
|
||||
GlobImport => {
|
||||
assert!(module_.glob_count >= 1);
|
||||
module_.glob_count -= 1;
|
||||
}
|
||||
SingleImport(*) => {
|
||||
// Ignore.
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return resolution_result;
|
||||
}
|
||||
|
||||
fn create_name_bindings_from_module(module: @mut Module) -> NameBindings {
|
||||
NameBindings {
|
||||
type_def: Some(TypeNsDef {
|
||||
privacy: Public,
|
||||
module_def: Some(module),
|
||||
type_def: None,
|
||||
}),
|
||||
value_def: None,
|
||||
type_span: None,
|
||||
value_span: None,
|
||||
}
|
||||
}
|
||||
|
||||
fn resolve_single_import(@mut self,
|
||||
module_: @mut Module,
|
||||
containing_module: @mut Module,
|
||||
target: ident,
|
||||
source: ident)
|
||||
-> ResolveResult<()> {
|
||||
debug!("(resolving single import) resolving `%s` = `%s::%s` from \
|
||||
`%s`",
|
||||
*self.session.str_of(target),
|
||||
self.module_to_str(containing_module),
|
||||
*self.session.str_of(source),
|
||||
self.module_to_str(module_));
|
||||
|
||||
// We need to resolve both namespaces for this to succeed.
|
||||
//
|
||||
// FIXME #4949: See if there's some way of handling namespaces in
|
||||
// a more generic way. We have two of them; it seems worth
|
||||
// doing...
|
||||
|
||||
let mut value_result = UnknownResult;
|
||||
let mut type_result = UnknownResult;
|
||||
|
||||
// Search for direct children of the containing module.
|
||||
match containing_module.children.find(&source) {
|
||||
None => {
|
||||
// Continue.
|
||||
}
|
||||
Some(child_name_bindings) => {
|
||||
if child_name_bindings.defined_in_namespace(ValueNS) {
|
||||
value_result = BoundResult(containing_module,
|
||||
*child_name_bindings);
|
||||
}
|
||||
if child_name_bindings.defined_in_namespace(TypeNS) {
|
||||
type_result = BoundResult(containing_module,
|
||||
*child_name_bindings);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Unless we managed to find a result in both namespaces (unlikely),
|
||||
// search imports as well.
|
||||
match (value_result, type_result) {
|
||||
(BoundResult(*), BoundResult(*)) => {
|
||||
// Continue.
|
||||
}
|
||||
_ => {
|
||||
// If there is an unresolved glob at this point in the
|
||||
// containing module, bail out. We don't know enough to be
|
||||
// able to resolve this import.
|
||||
|
||||
if containing_module.glob_count > 0 {
|
||||
debug!("(resolving single import) unresolved glob; \
|
||||
bailing out");
|
||||
return Indeterminate;
|
||||
}
|
||||
|
||||
// Now search the exported imports within the containing
|
||||
// module.
|
||||
|
||||
match containing_module.import_resolutions.find(&source) {
|
||||
None => {
|
||||
// The containing module definitely doesn't have an
|
||||
// exported import with the name in question. We can
|
||||
// therefore accurately report that the names are
|
||||
// unbound.
|
||||
|
||||
if value_result.is_unknown() {
|
||||
value_result = UnboundResult;
|
||||
}
|
||||
if type_result.is_unknown() {
|
||||
type_result = UnboundResult;
|
||||
}
|
||||
}
|
||||
Some(import_resolution)
|
||||
if import_resolution.outstanding_references
|
||||
== 0 => {
|
||||
|
||||
fn get_binding(import_resolution:
|
||||
@mut ImportResolution,
|
||||
namespace: Namespace)
|
||||
-> NamespaceResult {
|
||||
|
||||
// Import resolutions must be declared with "pub"
|
||||
// in order to be exported.
|
||||
if import_resolution.privacy == Private {
|
||||
return UnboundResult;
|
||||
}
|
||||
|
||||
match (*import_resolution).
|
||||
target_for_namespace(namespace) {
|
||||
None => {
|
||||
return UnboundResult;
|
||||
}
|
||||
Some(target) => {
|
||||
import_resolution.state.used = true;
|
||||
return BoundResult(target.target_module,
|
||||
target.bindings);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// The name is an import which has been fully
|
||||
// resolved. We can, therefore, just follow it.
|
||||
if value_result.is_unknown() {
|
||||
value_result = get_binding(*import_resolution,
|
||||
ValueNS);
|
||||
}
|
||||
if type_result.is_unknown() {
|
||||
type_result = get_binding(*import_resolution,
|
||||
TypeNS);
|
||||
}
|
||||
}
|
||||
Some(_) => {
|
||||
// The import is unresolved. Bail out.
|
||||
debug!("(resolving single import) unresolved import; \
|
||||
bailing out");
|
||||
return Indeterminate;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// If we didn't find a result in the type namespace, search the
|
||||
// external modules.
|
||||
match type_result {
|
||||
BoundResult(*) => {}
|
||||
_ => {
|
||||
match containing_module.external_module_children
|
||||
.find(&source) {
|
||||
None => {} // Continue.
|
||||
Some(module) => {
|
||||
let name_bindings =
|
||||
@mut Resolver::create_name_bindings_from_module(
|
||||
*module);
|
||||
type_result = BoundResult(containing_module,
|
||||
name_bindings);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// We've successfully resolved the import. Write the results in.
|
||||
assert!(module_.import_resolutions.contains_key(&target));
|
||||
let import_resolution = module_.import_resolutions.get(&target);
|
||||
|
||||
match value_result {
|
||||
BoundResult(target_module, name_bindings) => {
|
||||
import_resolution.value_target =
|
||||
Some(Target(target_module, name_bindings));
|
||||
}
|
||||
UnboundResult => { /* Continue. */ }
|
||||
UnknownResult => {
|
||||
fail!("value result should be known at this point");
|
||||
}
|
||||
}
|
||||
match type_result {
|
||||
BoundResult(target_module, name_bindings) => {
|
||||
import_resolution.type_target =
|
||||
Some(Target(target_module, name_bindings));
|
||||
}
|
||||
UnboundResult => { /* Continue. */ }
|
||||
UnknownResult => {
|
||||
fail!("type result should be known at this point");
|
||||
}
|
||||
}
|
||||
|
||||
let i = import_resolution;
|
||||
match (i.value_target, i.type_target) {
|
||||
// If this name wasn't found in either namespace, it's definitely
|
||||
// unresolved.
|
||||
(None, None) => { return Failed; }
|
||||
// If it's private, it's also unresolved.
|
||||
(Some(t), None) | (None, Some(t)) => {
|
||||
let bindings = &mut *t.bindings;
|
||||
match bindings.type_def {
|
||||
Some(ref type_def) => {
|
||||
if type_def.privacy == Private {
|
||||
return Failed;
|
||||
}
|
||||
}
|
||||
_ => ()
|
||||
}
|
||||
match bindings.value_def {
|
||||
Some(ref value_def) => {
|
||||
if value_def.privacy == Private {
|
||||
return Failed;
|
||||
}
|
||||
}
|
||||
_ => ()
|
||||
}
|
||||
}
|
||||
// It's also an error if there's both a type and a value with this
|
||||
// name, but both are private
|
||||
(Some(val), Some(ty)) => {
|
||||
match (val.bindings.value_def, ty.bindings.value_def) {
|
||||
(Some(ref value_def), Some(ref type_def)) =>
|
||||
if value_def.privacy == Private
|
||||
&& type_def.privacy == Private {
|
||||
return Failed;
|
||||
},
|
||||
_ => ()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
assert!(import_resolution.outstanding_references >= 1);
|
||||
import_resolution.outstanding_references -= 1;
|
||||
|
||||
debug!("(resolving single import) successfully resolved import");
|
||||
return Success(());
|
||||
}
|
||||
|
||||
// Resolves a glob import. Note that this function cannot fail; it either
|
||||
// succeeds or bails out (as importing * from an empty module or a module
|
||||
// that exports nothing is valid).
|
||||
fn resolve_glob_import(@mut self,
|
||||
privacy: Privacy,
|
||||
module_: @mut Module,
|
||||
containing_module: @mut Module,
|
||||
span: span)
|
||||
-> ResolveResult<()> {
|
||||
// This function works in a highly imperative manner; it eagerly adds
|
||||
// everything it can to the list of import resolutions of the module
|
||||
// node.
|
||||
debug!("(resolving glob import) resolving %? glob import", privacy);
|
||||
let state = @mut ImportState();
|
||||
|
||||
// We must bail out if the node has unresolved imports of any kind
|
||||
// (including globs).
|
||||
if !(*containing_module).all_imports_resolved() {
|
||||
debug!("(resolving glob import) target module has unresolved \
|
||||
imports; bailing out");
|
||||
return Indeterminate;
|
||||
}
|
||||
|
||||
assert_eq!(containing_module.glob_count, 0);
|
||||
|
||||
// Add all resolved imports from the containing module.
|
||||
for containing_module.import_resolutions.each
|
||||
|ident, target_import_resolution| {
|
||||
|
||||
debug!("(resolving glob import) writing module resolution \
|
||||
%? into `%s`",
|
||||
target_import_resolution.type_target.is_none(),
|
||||
self.module_to_str(module_));
|
||||
|
||||
// Here we merge two import resolutions.
|
||||
match module_.import_resolutions.find(ident) {
|
||||
None if target_import_resolution.privacy == Public => {
|
||||
// Simple: just copy the old import resolution.
|
||||
let new_import_resolution =
|
||||
@mut ImportResolution(privacy,
|
||||
target_import_resolution.span,
|
||||
state);
|
||||
new_import_resolution.value_target =
|
||||
copy target_import_resolution.value_target;
|
||||
new_import_resolution.type_target =
|
||||
copy target_import_resolution.type_target;
|
||||
|
||||
module_.import_resolutions.insert
|
||||
(*ident, new_import_resolution);
|
||||
}
|
||||
None => { /* continue ... */ }
|
||||
Some(dest_import_resolution) => {
|
||||
// Merge the two import resolutions at a finer-grained
|
||||
// level.
|
||||
|
||||
match target_import_resolution.value_target {
|
||||
None => {
|
||||
// Continue.
|
||||
}
|
||||
Some(copy value_target) => {
|
||||
dest_import_resolution.value_target =
|
||||
Some(value_target);
|
||||
}
|
||||
}
|
||||
match target_import_resolution.type_target {
|
||||
None => {
|
||||
// Continue.
|
||||
}
|
||||
Some(copy type_target) => {
|
||||
dest_import_resolution.type_target =
|
||||
Some(type_target);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
let merge_import_resolution = |ident,
|
||||
name_bindings: @mut NameBindings| {
|
||||
let dest_import_resolution;
|
||||
match module_.import_resolutions.find(&ident) {
|
||||
None => {
|
||||
// Create a new import resolution from this child.
|
||||
dest_import_resolution = @mut ImportResolution(privacy,
|
||||
span,
|
||||
state);
|
||||
module_.import_resolutions.insert
|
||||
(ident, dest_import_resolution);
|
||||
}
|
||||
Some(existing_import_resolution) => {
|
||||
dest_import_resolution = *existing_import_resolution;
|
||||
}
|
||||
}
|
||||
|
||||
debug!("(resolving glob import) writing resolution `%s` in `%s` \
|
||||
to `%s`, privacy=%?",
|
||||
*self.session.str_of(ident),
|
||||
self.module_to_str(containing_module),
|
||||
self.module_to_str(module_),
|
||||
copy dest_import_resolution.privacy);
|
||||
|
||||
// Merge the child item into the import resolution.
|
||||
if name_bindings.defined_in_public_namespace(ValueNS) {
|
||||
debug!("(resolving glob import) ... for value target");
|
||||
dest_import_resolution.value_target =
|
||||
Some(Target(containing_module, name_bindings));
|
||||
}
|
||||
if name_bindings.defined_in_public_namespace(TypeNS) {
|
||||
debug!("(resolving glob import) ... for type target");
|
||||
dest_import_resolution.type_target =
|
||||
Some(Target(containing_module, name_bindings));
|
||||
}
|
||||
};
|
||||
|
||||
// Add all children from the containing module.
|
||||
for containing_module.children.each |&ident, name_bindings| {
|
||||
merge_import_resolution(ident, *name_bindings);
|
||||
}
|
||||
|
||||
// Add external module children from the containing module.
|
||||
for containing_module.external_module_children.each
|
||||
|&ident, module| {
|
||||
let name_bindings =
|
||||
@mut Resolver::create_name_bindings_from_module(*module);
|
||||
merge_import_resolution(ident, name_bindings);
|
||||
}
|
||||
|
||||
debug!("(resolving glob import) successfully resolved import");
|
||||
return Success(());
|
||||
}
|
||||
|
||||
/// Resolves the given module path from the given root `module_`.
|
||||
fn resolve_module_path_from_root(@mut self,
|
||||
module_: @mut Module,
|
||||
module_path: &[ident],
|
||||
index: uint,
|
||||
span: span,
|
||||
mut name_search_type: NameSearchType)
|
||||
-> ResolveResult<@mut Module> {
|
||||
let mut search_module = module_;
|
||||
let mut index = index;
|
||||
let module_path_len = module_path.len();
|
||||
|
||||
// Resolve the module part of the path. This does not involve looking
|
||||
// upward though scope chains; we simply resolve names directly in
|
||||
// modules as we go.
|
||||
|
||||
while index < module_path_len {
|
||||
let name = module_path[index];
|
||||
match self.resolve_name_in_module(search_module,
|
||||
name,
|
||||
TypeNS,
|
||||
name_search_type) {
|
||||
Failed => {
|
||||
self.session.span_err(span, ~"unresolved name");
|
||||
return Failed;
|
||||
}
|
||||
Indeterminate => {
|
||||
debug!("(resolving module path for import) module \
|
||||
resolution is indeterminate: %s",
|
||||
*self.session.str_of(name));
|
||||
return Indeterminate;
|
||||
}
|
||||
Success(target) => {
|
||||
// Check to see whether there are type bindings, and, if
|
||||
// so, whether there is a module within.
|
||||
match target.bindings.type_def {
|
||||
Some(copy type_def) => {
|
||||
match type_def.module_def {
|
||||
None => {
|
||||
// Not a module.
|
||||
self.session.span_err(span,
|
||||
fmt!("not a \
|
||||
module: %s",
|
||||
*self.session.
|
||||
str_of(
|
||||
name)));
|
||||
return Failed;
|
||||
}
|
||||
Some(copy module_def) => {
|
||||
search_module = module_def;
|
||||
}
|
||||
}
|
||||
}
|
||||
None => {
|
||||
// There are no type bindings at all.
|
||||
self.session.span_err(span,
|
||||
fmt!("not a module: %s",
|
||||
*self.session.str_of(
|
||||
name)));
|
||||
return Failed;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
index += 1;
|
||||
|
||||
// After the first element of the path, allow searching through
|
||||
// items and imports unconditionally. This allows things like:
|
||||
//
|
||||
// pub mod core {
|
||||
// pub use vec;
|
||||
// }
|
||||
//
|
||||
// pub mod something_else {
|
||||
// use core::vec;
|
||||
// }
|
||||
|
||||
name_search_type = SearchItemsAndPublicImports;
|
||||
}
|
||||
|
||||
return Success(search_module);
|
||||
}
|
||||
|
||||
/// Attempts to resolve the module part of an import directive or path
|
||||
/// rooted at the given module.
|
||||
fn resolve_module_path_for_import(@mut self,
|
||||
module_: @mut Module,
|
||||
module_path: &[ident],
|
||||
use_lexical_scope: UseLexicalScopeFlag,
|
||||
span: span)
|
||||
-> ResolveResult<@mut Module> {
|
||||
let module_path_len = module_path.len();
|
||||
assert!(module_path_len > 0);
|
||||
|
||||
debug!("(resolving module path for import) processing `%s` rooted at \
|
||||
`%s`",
|
||||
self.idents_to_str(module_path),
|
||||
self.module_to_str(module_));
|
||||
|
||||
// Resolve the module prefix, if any.
|
||||
let module_prefix_result = self.resolve_module_prefix(module_,
|
||||
module_path);
|
||||
|
||||
let search_module;
|
||||
let start_index;
|
||||
match module_prefix_result {
|
||||
Failed => {
|
||||
self.session.span_err(span, ~"unresolved name");
|
||||
return Failed;
|
||||
}
|
||||
Indeterminate => {
|
||||
debug!("(resolving module path for import) indeterminate; \
|
||||
bailing");
|
||||
return Indeterminate;
|
||||
}
|
||||
Success(NoPrefixFound) => {
|
||||
// There was no prefix, so we're considering the first element
|
||||
// of the path. How we handle this depends on whether we were
|
||||
// instructed to use lexical scope or not.
|
||||
match use_lexical_scope {
|
||||
DontUseLexicalScope => {
|
||||
// This is a crate-relative path. We will start the
|
||||
// resolution process at index zero.
|
||||
search_module = self.graph_root.get_module();
|
||||
start_index = 0;
|
||||
}
|
||||
UseLexicalScope => {
|
||||
// This is not a crate-relative path. We resolve the
|
||||
// first component of the path in the current lexical
|
||||
// scope and then proceed to resolve below that.
|
||||
let result = self.resolve_module_in_lexical_scope(
|
||||
module_,
|
||||
module_path[0]);
|
||||
match result {
|
||||
Failed => {
|
||||
self.session.span_err(span,
|
||||
~"unresolved name");
|
||||
return Failed;
|
||||
}
|
||||
Indeterminate => {
|
||||
debug!("(resolving module path for import) \
|
||||
indeterminate; bailing");
|
||||
return Indeterminate;
|
||||
}
|
||||
Success(containing_module) => {
|
||||
search_module = containing_module;
|
||||
start_index = 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Success(PrefixFound(containing_module, index)) => {
|
||||
search_module = containing_module;
|
||||
start_index = index;
|
||||
}
|
||||
}
|
||||
|
||||
self.resolve_module_path_from_root(search_module,
|
||||
module_path,
|
||||
start_index,
|
||||
span,
|
||||
SearchItemsAndPublicImports)
|
||||
}
|
||||
|
||||
/// Invariant: This must only be called during main resolution, not during
|
||||
/// import resolution.
|
||||
fn resolve_item_in_lexical_scope(@mut self,
|
||||
module_: @mut Module,
|
||||
name: ident,
|
||||
namespace: Namespace,
|
||||
search_through_modules:
|
||||
SearchThroughModulesFlag)
|
||||
-> ResolveResult<Target> {
|
||||
debug!("(resolving item in lexical scope) resolving `%s` in \
|
||||
namespace %? in `%s`",
|
||||
*self.session.str_of(name),
|
||||
namespace,
|
||||
self.module_to_str(module_));
|
||||
|
||||
// The current module node is handled specially. First, check for
|
||||
// its immediate children.
|
||||
match module_.children.find(&name) {
|
||||
Some(name_bindings)
|
||||
if name_bindings.defined_in_namespace(namespace) => {
|
||||
return Success(Target(module_, *name_bindings));
|
||||
}
|
||||
Some(_) | None => { /* Not found; continue. */ }
|
||||
}
|
||||
|
||||
// Now check for its import directives. We don't have to have resolved
|
||||
// all its imports in the usual way; this is because chains of
|
||||
// adjacent import statements are processed as though they mutated the
|
||||
// current scope.
|
||||
match module_.import_resolutions.find(&name) {
|
||||
None => {
|
||||
// Not found; continue.
|
||||
}
|
||||
Some(import_resolution) => {
|
||||
match (*import_resolution).target_for_namespace(namespace) {
|
||||
None => {
|
||||
// Not found; continue.
|
||||
debug!("(resolving item in lexical scope) found \
|
||||
import resolution, but not in namespace %?",
|
||||
namespace);
|
||||
}
|
||||
Some(target) => {
|
||||
debug!("(resolving item in lexical scope) using \
|
||||
import resolution");
|
||||
import_resolution.state.used = true;
|
||||
return Success(copy target);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Search for external modules.
|
||||
if namespace == TypeNS {
|
||||
match module_.external_module_children.find(&name) {
|
||||
None => {}
|
||||
Some(module) => {
|
||||
let name_bindings =
|
||||
@mut Resolver::create_name_bindings_from_module(
|
||||
*module);
|
||||
return Success(Target(module_, name_bindings));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Finally, proceed up the scope chain looking for parent modules.
|
||||
let mut search_module = module_;
|
||||
loop {
|
||||
// Go to the next parent.
|
||||
match search_module.parent_link {
|
||||
NoParentLink => {
|
||||
// No more parents. This module was unresolved.
|
||||
debug!("(resolving item in lexical scope) unresolved \
|
||||
module");
|
||||
return Failed;
|
||||
}
|
||||
ModuleParentLink(parent_module_node, _) => {
|
||||
match search_through_modules {
|
||||
DontSearchThroughModules => {
|
||||
match search_module.kind {
|
||||
NormalModuleKind => {
|
||||
// We stop the search here.
|
||||
debug!("(resolving item in lexical \
|
||||
scope) unresolved module: not \
|
||||
searching through module \
|
||||
parents");
|
||||
return Failed;
|
||||
}
|
||||
ExternModuleKind |
|
||||
TraitModuleKind |
|
||||
AnonymousModuleKind => {
|
||||
search_module = parent_module_node;
|
||||
}
|
||||
}
|
||||
}
|
||||
SearchThroughModules => {
|
||||
search_module = parent_module_node;
|
||||
}
|
||||
}
|
||||
}
|
||||
BlockParentLink(parent_module_node, _) => {
|
||||
search_module = parent_module_node;
|
||||
}
|
||||
}
|
||||
|
||||
// Resolve the name in the parent module.
|
||||
match self.resolve_name_in_module(search_module,
|
||||
name,
|
||||
namespace,
|
||||
SearchItemsAndAllImports) {
|
||||
Failed => {
|
||||
// Continue up the search chain.
|
||||
}
|
||||
Indeterminate => {
|
||||
// We couldn't see through the higher scope because of an
|
||||
// unresolved import higher up. Bail.
|
||||
|
||||
debug!("(resolving item in lexical scope) indeterminate \
|
||||
higher scope; bailing");
|
||||
return Indeterminate;
|
||||
}
|
||||
Success(target) => {
|
||||
// We found the module.
|
||||
return Success(copy target);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/** Resolves a module name in the current lexical scope. */
|
||||
fn resolve_module_in_lexical_scope(@mut self,
|
||||
module_: @mut Module,
|
||||
name: ident)
|
||||
-> ResolveResult<@mut Module> {
|
||||
// If this module is an anonymous module, resolve the item in the
|
||||
// lexical scope. Otherwise, resolve the item from the crate root.
|
||||
let resolve_result = self.resolve_item_in_lexical_scope(
|
||||
module_, name, TypeNS, DontSearchThroughModules);
|
||||
match resolve_result {
|
||||
Success(target) => {
|
||||
let bindings = &mut *target.bindings;
|
||||
match bindings.type_def {
|
||||
Some(ref type_def) => {
|
||||
match (*type_def).module_def {
|
||||
None => {
|
||||
error!("!!! (resolving module in lexical \
|
||||
scope) module wasn't actually a \
|
||||
module!");
|
||||
return Failed;
|
||||
}
|
||||
Some(module_def) => {
|
||||
return Success(module_def);
|
||||
}
|
||||
}
|
||||
}
|
||||
None => {
|
||||
error!("!!! (resolving module in lexical scope) module
|
||||
wasn't actually a module!");
|
||||
return Failed;
|
||||
}
|
||||
}
|
||||
}
|
||||
Indeterminate => {
|
||||
debug!("(resolving module in lexical scope) indeterminate; \
|
||||
bailing");
|
||||
return Indeterminate;
|
||||
}
|
||||
Failed => {
|
||||
debug!("(resolving module in lexical scope) failed to \
|
||||
resolve");
|
||||
return Failed;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the nearest normal module parent of the given module.
|
||||
*/
|
||||
fn get_nearest_normal_module_parent(@mut self, module_: @mut Module)
|
||||
-> Option<@mut Module> {
|
||||
let mut module_ = module_;
|
||||
loop {
|
||||
match module_.parent_link {
|
||||
NoParentLink => return None,
|
||||
ModuleParentLink(new_module, _) |
|
||||
BlockParentLink(new_module, _) => {
|
||||
match new_module.kind {
|
||||
NormalModuleKind => return Some(new_module),
|
||||
ExternModuleKind |
|
||||
TraitModuleKind |
|
||||
AnonymousModuleKind => module_ = new_module,
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the nearest normal module parent of the given module, or the
|
||||
* module itself if it is a normal module.
|
||||
*/
|
||||
fn get_nearest_normal_module_parent_or_self(@mut self,
|
||||
module_: @mut Module)
|
||||
-> @mut Module {
|
||||
match module_.kind {
|
||||
NormalModuleKind => return module_,
|
||||
ExternModuleKind | TraitModuleKind | AnonymousModuleKind => {
|
||||
match self.get_nearest_normal_module_parent(module_) {
|
||||
None => module_,
|
||||
Some(new_module) => new_module
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Resolves a "module prefix". A module prefix is one of (a) `self::`;
|
||||
* (b) some chain of `super::`.
|
||||
*/
|
||||
fn resolve_module_prefix(@mut self,
|
||||
module_: @mut Module,
|
||||
module_path: &[ident])
|
||||
-> ResolveResult<ModulePrefixResult> {
|
||||
let interner = self.session.parse_sess.interner;
|
||||
|
||||
// Start at the current module if we see `self` or `super`, or at the
|
||||
// top of the crate otherwise.
|
||||
let mut containing_module;
|
||||
let mut i;
|
||||
if *interner.get(module_path[0]) == ~"self" {
|
||||
containing_module =
|
||||
self.get_nearest_normal_module_parent_or_self(module_);
|
||||
i = 1;
|
||||
} else if *interner.get(module_path[0]) == ~"super" {
|
||||
containing_module =
|
||||
self.get_nearest_normal_module_parent_or_self(module_);
|
||||
i = 0; // We'll handle `super` below.
|
||||
} else {
|
||||
return Success(NoPrefixFound);
|
||||
}
|
||||
|
||||
// Now loop through all the `super`s we find.
|
||||
while i < module_path.len() &&
|
||||
*interner.get(module_path[i]) == ~"super" {
|
||||
debug!("(resolving module prefix) resolving `super` at %s",
|
||||
self.module_to_str(containing_module));
|
||||
match self.get_nearest_normal_module_parent(containing_module) {
|
||||
None => return Failed,
|
||||
Some(new_module) => {
|
||||
containing_module = new_module;
|
||||
i += 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
debug!("(resolving module prefix) finished resolving prefix at %s",
|
||||
self.module_to_str(containing_module));
|
||||
|
||||
return Success(PrefixFound(containing_module, i));
|
||||
}
|
||||
|
||||
/// Attempts to resolve the supplied name in the given module for the
|
||||
/// given namespace. If successful, returns the target corresponding to
|
||||
/// the name.
|
||||
fn resolve_name_in_module(@mut self,
|
||||
module_: @mut Module,
|
||||
name: ident,
|
||||
namespace: Namespace,
|
||||
name_search_type: NameSearchType)
|
||||
-> ResolveResult<Target> {
|
||||
debug!("(resolving name in module) resolving `%s` in `%s`",
|
||||
*self.session.str_of(name),
|
||||
self.module_to_str(module_));
|
||||
|
||||
// First, check the direct children of the module.
|
||||
match module_.children.find(&name) {
|
||||
Some(name_bindings)
|
||||
if name_bindings.defined_in_namespace(namespace) => {
|
||||
debug!("(resolving name in module) found node as child");
|
||||
return Success(Target(module_, *name_bindings));
|
||||
}
|
||||
Some(_) | None => {
|
||||
// Continue.
|
||||
}
|
||||
}
|
||||
|
||||
// Next, check the module's imports if necessary.
|
||||
|
||||
// If this is a search of all imports, we should be done with glob
|
||||
// resolution at this point.
|
||||
if name_search_type == SearchItemsAndAllImports {
|
||||
assert_eq!(module_.glob_count, 0);
|
||||
}
|
||||
|
||||
// Check the list of resolved imports.
|
||||
match module_.import_resolutions.find(&name) {
|
||||
Some(import_resolution) => {
|
||||
if import_resolution.privacy == Public &&
|
||||
import_resolution.outstanding_references != 0 {
|
||||
debug!("(resolving name in module) import \
|
||||
unresolved; bailing out");
|
||||
return Indeterminate;
|
||||
}
|
||||
|
||||
match import_resolution.target_for_namespace(namespace) {
|
||||
None => {
|
||||
debug!("(resolving name in module) name found, \
|
||||
but not in namespace %?",
|
||||
namespace);
|
||||
}
|
||||
Some(target)
|
||||
if name_search_type ==
|
||||
SearchItemsAndAllImports ||
|
||||
import_resolution.privacy == Public => {
|
||||
debug!("(resolving name in module) resolved to \
|
||||
import");
|
||||
import_resolution.state.used = true;
|
||||
return Success(copy target);
|
||||
}
|
||||
Some(_) => {
|
||||
debug!("(resolving name in module) name found, \
|
||||
but not public");
|
||||
}
|
||||
}
|
||||
}
|
||||
None => {} // Continue.
|
||||
}
|
||||
|
||||
// Finally, search through external children.
|
||||
if namespace == TypeNS {
|
||||
match module_.external_module_children.find(&name) {
|
||||
None => {}
|
||||
Some(module) => {
|
||||
let name_bindings =
|
||||
@mut Resolver::create_name_bindings_from_module(
|
||||
*module);
|
||||
return Success(Target(module_, name_bindings));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// We're out of luck.
|
||||
debug!("(resolving name in module) failed to resolve %s",
|
||||
*self.session.str_of(name));
|
||||
return Failed;
|
||||
}
|
||||
|
||||
fn report_unresolved_imports(@mut self, module_: @mut Module) {
|
||||
let index = module_.resolved_import_count;
|
||||
let imports: &mut ~[@ImportDirective] = &mut *module_.imports;
|
||||
let import_count = imports.len();
|
||||
if index != import_count {
|
||||
let sn = self.session.codemap.span_to_snippet(imports[index].span);
|
||||
if str::contains(sn, "::") {
|
||||
self.session.span_err(imports[index].span, ~"unresolved import");
|
||||
} else {
|
||||
let err = fmt!("unresolved import (maybe you meant `%s::*`?)",
|
||||
sn.slice(0, sn.len() - 1)); // -1 to adjust for semicolon
|
||||
self.session.span_err(imports[index].span, err);
|
||||
}
|
||||
}
|
||||
|
||||
// Descend into children and anonymous children.
|
||||
for module_.children.each_value |&child_node| {
|
||||
match child_node.get_module_if_available() {
|
||||
None => {
|
||||
// Continue.
|
||||
}
|
||||
Some(child_module) => {
|
||||
self.report_unresolved_imports(child_module);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for module_.anonymous_children.each_value |&module_| {
|
||||
self.report_unresolved_imports(module_);
|
||||
}
|
||||
}
|
||||
|
||||
// Export recording
|
||||
//
|
||||
// This pass simply determines what all "export" keywords refer to and
|
||||
// writes the results into the export map.
|
||||
//
|
||||
// FIXME #4953 This pass will be removed once exports change to per-item.
|
||||
// Then this operation can simply be performed as part of item (or import)
|
||||
// processing.
|
||||
|
||||
fn record_exports(@mut self) {
|
||||
let root_module = self.graph_root.get_module();
|
||||
self.record_exports_for_module_subtree(root_module);
|
||||
}
|
||||
|
||||
fn record_exports_for_module_subtree(@mut self, module_: @mut Module) {
|
||||
// If this isn't a local crate, then bail out. We don't need to record
|
||||
// exports for nonlocal crates.
|
||||
|
||||
match module_.def_id {
|
||||
Some(def_id) if def_id.crate == local_crate => {
|
||||
// OK. Continue.
|
||||
debug!("(recording exports for module subtree) recording \
|
||||
exports for local module");
|
||||
}
|
||||
None => {
|
||||
// Record exports for the root module.
|
||||
debug!("(recording exports for module subtree) recording \
|
||||
exports for root module");
|
||||
}
|
||||
Some(_) => {
|
||||
// Bail out.
|
||||
debug!("(recording exports for module subtree) not recording \
|
||||
exports for `%s`",
|
||||
self.module_to_str(module_));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
self.record_exports_for_module(module_);
|
||||
|
||||
for module_.children.each_value |&child_name_bindings| {
|
||||
match child_name_bindings.get_module_if_available() {
|
||||
None => {
|
||||
// Nothing to do.
|
||||
}
|
||||
Some(child_module) => {
|
||||
self.record_exports_for_module_subtree(child_module);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for module_.anonymous_children.each_value |&child_module| {
|
||||
self.record_exports_for_module_subtree(child_module);
|
||||
}
|
||||
}
|
||||
|
||||
fn record_exports_for_module(@mut self, module_: @mut Module) {
|
||||
let mut exports2 = ~[];
|
||||
|
||||
self.add_exports_for_module(&mut exports2, module_);
|
||||
match /*bad*/copy module_.def_id {
|
||||
Some(def_id) => {
|
||||
self.export_map2.insert(def_id.node, exports2);
|
||||
debug!("(computing exports) writing exports for %d (some)",
|
||||
def_id.node);
|
||||
}
|
||||
None => {}
|
||||
}
|
||||
}
|
||||
|
||||
fn add_exports_of_namebindings(@mut self,
|
||||
exports2: &mut ~[Export2],
|
||||
ident: ident,
|
||||
namebindings: @mut NameBindings,
|
||||
ns: Namespace,
|
||||
reexport: bool) {
|
||||
match (namebindings.def_for_namespace(ns),
|
||||
namebindings.privacy_for_namespace(ns)) {
|
||||
(Some(d), Some(Public)) => {
|
||||
debug!("(computing exports) YES: %s '%s' => %?",
|
||||
if reexport { ~"reexport" } else { ~"export"},
|
||||
*self.session.str_of(ident),
|
||||
def_id_of_def(d));
|
||||
exports2.push(Export2 {
|
||||
reexport: reexport,
|
||||
name: self.session.str_of(ident),
|
||||
def_id: def_id_of_def(d)
|
||||
});
|
||||
}
|
||||
(Some(_), Some(privacy)) => {
|
||||
debug!("(computing reexports) NO: privacy %?", privacy);
|
||||
}
|
||||
(d_opt, p_opt) => {
|
||||
debug!("(computing reexports) NO: %?, %?", d_opt, p_opt);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn add_exports_for_module(@mut self,
|
||||
exports2: &mut ~[Export2],
|
||||
module_: @mut Module) {
|
||||
for module_.children.each |ident, namebindings| {
|
||||
debug!("(computing exports) maybe export '%s'",
|
||||
*self.session.str_of(*ident));
|
||||
self.add_exports_of_namebindings(&mut *exports2,
|
||||
*ident,
|
||||
*namebindings,
|
||||
TypeNS,
|
||||
false);
|
||||
self.add_exports_of_namebindings(&mut *exports2,
|
||||
*ident,
|
||||
*namebindings,
|
||||
ValueNS,
|
||||
false);
|
||||
}
|
||||
|
||||
for module_.import_resolutions.each |ident, importresolution| {
|
||||
if importresolution.privacy != Public {
|
||||
debug!("(computing exports) not reexporting private `%s`",
|
||||
*self.session.str_of(*ident));
|
||||
loop;
|
||||
}
|
||||
for [ TypeNS, ValueNS ].each |ns| {
|
||||
match importresolution.target_for_namespace(*ns) {
|
||||
Some(target) => {
|
||||
debug!("(computing exports) maybe reexport '%s'",
|
||||
*self.session.str_of(*ident));
|
||||
self.add_exports_of_namebindings(&mut *exports2,
|
||||
*ident,
|
||||
target.bindings,
|
||||
*ns,
|
||||
true)
|
||||
}
|
||||
_ => ()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// AST resolution
|
||||
//
|
||||
// We maintain a list of value ribs and type ribs.
|
||||
//
|
||||
// Simultaneously, we keep track of the current position in the module
|
||||
// graph in the `current_module` pointer. When we go to resolve a name in
|
||||
// the value or type namespaces, we first look through all the ribs and
|
||||
// then query the module graph. When we resolve a name in the module
|
||||
// namespace, we can skip all the ribs (since nested modules are not
|
||||
// allowed within blocks in Rust) and jump straight to the current module
|
||||
// graph node.
|
||||
//
|
||||
// Named implementations are handled separately. When we find a method
|
||||
// call, we consult the module node to find all of the implementations in
|
||||
// scope. This information is lazily cached in the module node. We then
|
||||
// generate a fake "implementation scope" containing all the
|
||||
// implementations thus found, for compatibility with old resolve pass.
|
||||
|
||||
fn with_scope(@mut self, name: Option<ident>, f: &fn()) {
|
||||
let orig_module = self.current_module;
|
||||
|
||||
// Move down in the graph.
|
||||
match name {
|
||||
None => {
|
||||
// Nothing to do.
|
||||
}
|
||||
Some(name) => {
|
||||
match orig_module.children.find(&name) {
|
||||
None => {
|
||||
debug!("!!! (with scope) didn't find `%s` in `%s`",
|
||||
*self.session.str_of(name),
|
||||
self.module_to_str(orig_module));
|
||||
}
|
||||
Some(name_bindings) => {
|
||||
match (*name_bindings).get_module_if_available() {
|
||||
None => {
|
||||
debug!("!!! (with scope) didn't find module \
|
||||
for `%s` in `%s`",
|
||||
*self.session.str_of(name),
|
||||
self.module_to_str(orig_module));
|
||||
}
|
||||
Some(module_) => {
|
||||
self.current_module = module_;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
f();
|
||||
|
||||
self.current_module = orig_module;
|
||||
}
|
||||
|
||||
// Wraps the given definition in the appropriate number of `def_upvar`
|
||||
// wrappers.
|
||||
|
||||
fn upvarify(@mut self,
|
||||
ribs: &mut ~[@Rib],
|
||||
rib_index: uint,
|
||||
def_like: def_like,
|
||||
span: span,
|
||||
allow_capturing_self: AllowCapturingSelfFlag)
|
||||
-> Option<def_like> {
|
||||
let mut def;
|
||||
let is_ty_param;
|
||||
|
||||
match def_like {
|
||||
dl_def(d @ def_local(*)) | dl_def(d @ def_upvar(*)) |
|
||||
dl_def(d @ def_arg(*)) | dl_def(d @ def_binding(*)) => {
|
||||
def = d;
|
||||
is_ty_param = false;
|
||||
}
|
||||
dl_def(d @ def_ty_param(*)) => {
|
||||
def = d;
|
||||
is_ty_param = true;
|
||||
}
|
||||
dl_def(d @ def_self(*))
|
||||
if allow_capturing_self == DontAllowCapturingSelf => {
|
||||
def = d;
|
||||
is_ty_param = false;
|
||||
}
|
||||
_ => {
|
||||
return Some(def_like);
|
||||
}
|
||||
}
|
||||
|
||||
let mut rib_index = rib_index + 1;
|
||||
while rib_index < ribs.len() {
|
||||
match ribs[rib_index].kind {
|
||||
NormalRibKind => {
|
||||
// Nothing to do. Continue.
|
||||
}
|
||||
FunctionRibKind(function_id, body_id) => {
|
||||
if !is_ty_param {
|
||||
def = def_upvar(def_id_of_def(def).node,
|
||||
@def,
|
||||
function_id,
|
||||
body_id);
|
||||
}
|
||||
}
|
||||
MethodRibKind(item_id, _) => {
|
||||
// If the def is a ty param, and came from the parent
|
||||
// item, it's ok
|
||||
match def {
|
||||
def_ty_param(did, _)
|
||||
if self.def_map.find(&did.node).map_consume(|x| *x)
|
||||
== Some(def_typaram_binder(item_id)) => {
|
||||
// ok
|
||||
}
|
||||
_ => {
|
||||
if !is_ty_param {
|
||||
// This was an attempt to access an upvar inside a
|
||||
// named function item. This is not allowed, so we
|
||||
// report an error.
|
||||
|
||||
self.session.span_err(
|
||||
span,
|
||||
~"attempted dynamic environment-capture");
|
||||
} else {
|
||||
// This was an attempt to use a type parameter outside
|
||||
// its scope.
|
||||
|
||||
self.session.span_err(span,
|
||||
~"attempt to use a type \
|
||||
argument out of scope");
|
||||
}
|
||||
|
||||
return None;
|
||||
}
|
||||
}
|
||||
}
|
||||
OpaqueFunctionRibKind => {
|
||||
if !is_ty_param {
|
||||
// This was an attempt to access an upvar inside a
|
||||
// named function item. This is not allowed, so we
|
||||
// report an error.
|
||||
|
||||
self.session.span_err(
|
||||
span,
|
||||
~"attempted dynamic environment-capture");
|
||||
} else {
|
||||
// This was an attempt to use a type parameter outside
|
||||
// its scope.
|
||||
|
||||
self.session.span_err(span,
|
||||
~"attempt to use a type \
|
||||
argument out of scope");
|
||||
}
|
||||
|
||||
return None;
|
||||
}
|
||||
ConstantItemRibKind => {
|
||||
// Still doesn't deal with upvars
|
||||
self.session.span_err(span,
|
||||
~"attempt to use a non-constant \
|
||||
value in a constant");
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
rib_index += 1;
|
||||
}
|
||||
|
||||
return Some(dl_def(def));
|
||||
}
|
||||
|
||||
fn search_ribs(@mut self,
|
||||
ribs: &mut ~[@Rib],
|
||||
name: ident,
|
||||
span: span,
|
||||
allow_capturing_self: AllowCapturingSelfFlag)
|
||||
-> Option<def_like> {
|
||||
// FIXME #4950: This should not use a while loop.
|
||||
// FIXME #4950: Try caching?
|
||||
|
||||
let mut i = ribs.len();
|
||||
while i != 0 {
|
||||
i -= 1;
|
||||
match ribs[i].bindings.find(&name) {
|
||||
Some(&def_like) => {
|
||||
return self.upvarify(ribs, i, def_like, span,
|
||||
allow_capturing_self);
|
||||
}
|
||||
None => {
|
||||
// Continue.
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return None;
|
||||
}
|
||||
|
||||
fn resolve_crate(@mut self) {
|
||||
debug!("(resolving crate) starting");
|
||||
|
||||
visit_crate(self.crate, (), mk_vt(@Visitor {
|
||||
visit_item: |item, _context, visitor|
|
||||
self.resolve_item(item, visitor),
|
||||
visit_arm: |arm, _context, visitor|
|
||||
self.resolve_arm(arm, visitor),
|
||||
visit_block: |block, _context, visitor|
|
||||
self.resolve_block(block, visitor),
|
||||
visit_expr: |expr, _context, visitor|
|
||||
self.resolve_expr(expr, visitor),
|
||||
visit_local: |local, _context, visitor|
|
||||
self.resolve_local(local, visitor),
|
||||
visit_ty: |ty, _context, visitor|
|
||||
self.resolve_type(ty, visitor),
|
||||
.. *default_visitor()
|
||||
}));
|
||||
}
|
||||
|
||||
fn resolve_item(@mut self, item: @item, visitor: ResolveVisitor) {
|
||||
debug!("(resolving item) resolving %s",
|
||||
*self.session.str_of(item.ident));
|
||||
|
||||
// Items with the !resolve_unexported attribute are X-ray contexts.
|
||||
// This is used to allow the test runner to run unexported tests.
|
||||
let orig_xray_flag = self.xray_context;
|
||||
if contains_name(attr_metas(item.attrs),
|
||||
~"!resolve_unexported") {
|
||||
self.xray_context = Xray;
|
||||
}
|
||||
|
||||
match item.node {
|
||||
|
||||
// enum item: resolve all the variants' discrs,
|
||||
// then resolve the ty params
|
||||
item_enum(ref enum_def, ref generics) => {
|
||||
for (*enum_def).variants.each() |variant| {
|
||||
for variant.node.disr_expr.each |dis_expr| {
|
||||
// resolve the discriminator expr
|
||||
// as a constant
|
||||
self.with_constant_rib(|| {
|
||||
self.resolve_expr(*dis_expr, visitor);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// n.b. the discr expr gets visted twice.
|
||||
// but maybe it's okay since the first time will signal an
|
||||
// error if there is one? -- tjc
|
||||
do self.with_type_parameter_rib(
|
||||
HasTypeParameters(
|
||||
generics, item.id, 0, NormalRibKind)) {
|
||||
visit_item(item, (), visitor);
|
||||
}
|
||||
}
|
||||
|
||||
item_ty(_, ref generics) => {
|
||||
do self.with_type_parameter_rib
|
||||
(HasTypeParameters(generics, item.id, 0,
|
||||
NormalRibKind))
|
||||
|| {
|
||||
|
||||
visit_item(item, (), visitor);
|
||||
}
|
||||
}
|
||||
|
||||
item_impl(ref generics,
|
||||
implemented_traits,
|
||||
self_type,
|
||||
ref methods) => {
|
||||
self.resolve_implementation(item.id,
|
||||
generics,
|
||||
implemented_traits,
|
||||
self_type,
|
||||
*methods,
|
||||
visitor);
|
||||
}
|
||||
|
||||
item_trait(ref generics, ref traits, ref methods) => {
|
||||
// Create a new rib for the self type.
|
||||
let self_type_rib = @Rib(NormalRibKind);
|
||||
self.type_ribs.push(self_type_rib);
|
||||
self_type_rib.bindings.insert(self.type_self_ident,
|
||||
dl_def(def_self_ty(item.id)));
|
||||
|
||||
// Create a new rib for the trait-wide type parameters.
|
||||
do self.with_type_parameter_rib
|
||||
(HasTypeParameters(generics, item.id, 0,
|
||||
NormalRibKind)) {
|
||||
|
||||
self.resolve_type_parameters(&generics.ty_params,
|
||||
visitor);
|
||||
|
||||
// Resolve derived traits.
|
||||
for traits.each |trt| {
|
||||
match self.resolve_path(trt.path, TypeNS, true,
|
||||
visitor) {
|
||||
None =>
|
||||
self.session.span_err(trt.path.span,
|
||||
~"attempt to derive a \
|
||||
nonexistent trait"),
|
||||
Some(def) => {
|
||||
// Write a mapping from the trait ID to the
|
||||
// definition of the trait into the definition
|
||||
// map.
|
||||
|
||||
debug!("(resolving trait) found trait def: \
|
||||
%?", def);
|
||||
|
||||
self.record_def(trt.ref_id, def);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (*methods).each |method| {
|
||||
// Create a new rib for the method-specific type
|
||||
// parameters.
|
||||
//
|
||||
// FIXME #4951: Do we need a node ID here?
|
||||
|
||||
match *method {
|
||||
required(ref ty_m) => {
|
||||
do self.with_type_parameter_rib
|
||||
(HasTypeParameters(&ty_m.generics,
|
||||
item.id,
|
||||
generics.ty_params.len(),
|
||||
MethodRibKind(item.id, Required))) {
|
||||
|
||||
// Resolve the method-specific type
|
||||
// parameters.
|
||||
self.resolve_type_parameters(
|
||||
&ty_m.generics.ty_params,
|
||||
visitor);
|
||||
|
||||
for ty_m.decl.inputs.each |argument| {
|
||||
self.resolve_type(argument.ty, visitor);
|
||||
}
|
||||
|
||||
self.resolve_type(ty_m.decl.output, visitor);
|
||||
}
|
||||
}
|
||||
provided(m) => {
|
||||
self.resolve_method(MethodRibKind(item.id,
|
||||
Provided(m.id)),
|
||||
m,
|
||||
generics.ty_params.len(),
|
||||
visitor)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
self.type_ribs.pop();
|
||||
}
|
||||
|
||||
item_struct(ref struct_def, ref generics) => {
|
||||
self.resolve_struct(item.id,
|
||||
generics,
|
||||
struct_def.fields,
|
||||
visitor);
|
||||
}
|
||||
|
||||
item_mod(ref module_) => {
|
||||
do self.with_scope(Some(item.ident)) {
|
||||
self.resolve_module(module_, item.span, item.ident,
|
||||
item.id, visitor);
|
||||
}
|
||||
}
|
||||
|
||||
item_foreign_mod(ref foreign_module) => {
|
||||
do self.with_scope(Some(item.ident)) {
|
||||
for foreign_module.items.each |foreign_item| {
|
||||
match foreign_item.node {
|
||||
foreign_item_fn(_, _, ref generics) => {
|
||||
self.with_type_parameter_rib(
|
||||
HasTypeParameters(
|
||||
generics, foreign_item.id, 0,
|
||||
NormalRibKind),
|
||||
|| visit_foreign_item(*foreign_item, (),
|
||||
visitor));
|
||||
}
|
||||
foreign_item_const(_) => {
|
||||
visit_foreign_item(*foreign_item, (),
|
||||
visitor);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
item_fn(ref fn_decl, _, _, ref generics, ref block) => {
|
||||
// If this is the main function, we must record it in the
|
||||
// session.
|
||||
|
||||
// FIXME #4404 android JNI hacks
|
||||
if !*self.session.building_library ||
|
||||
self.session.targ_cfg.os == session::os_android {
|
||||
|
||||
if self.attr_main_fn.is_none() &&
|
||||
item.ident == special_idents::main {
|
||||
|
||||
self.main_fns.push(Some((item.id, item.span)));
|
||||
}
|
||||
|
||||
if attrs_contains_name(item.attrs, ~"main") {
|
||||
if self.attr_main_fn.is_none() {
|
||||
self.attr_main_fn = Some((item.id, item.span));
|
||||
} else {
|
||||
self.session.span_err(
|
||||
item.span,
|
||||
~"multiple 'main' functions");
|
||||
}
|
||||
}
|
||||
|
||||
if attrs_contains_name(item.attrs, ~"start") {
|
||||
if self.start_fn.is_none() {
|
||||
self.start_fn = Some((item.id, item.span));
|
||||
} else {
|
||||
self.session.span_err(
|
||||
item.span,
|
||||
~"multiple 'start' functions");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
self.resolve_function(OpaqueFunctionRibKind,
|
||||
Some(fn_decl),
|
||||
HasTypeParameters
|
||||
(generics,
|
||||
item.id,
|
||||
0,
|
||||
OpaqueFunctionRibKind),
|
||||
block,
|
||||
NoSelfBinding,
|
||||
visitor);
|
||||
}
|
||||
|
||||
item_const(*) => {
|
||||
self.with_constant_rib(|| {
|
||||
visit_item(item, (), visitor);
|
||||
});
|
||||
}
|
||||
|
||||
item_mac(*) => {
|
||||
fail!("item macros unimplemented")
|
||||
}
|
||||
}
|
||||
|
||||
self.xray_context = orig_xray_flag;
|
||||
}
|
||||
|
||||
fn with_type_parameter_rib(@mut self,
|
||||
type_parameters: TypeParameters,
|
||||
f: &fn()) {
|
||||
match type_parameters {
|
||||
HasTypeParameters(generics, node_id, initial_index,
|
||||
rib_kind) => {
|
||||
|
||||
let function_type_rib = @Rib(rib_kind);
|
||||
self.type_ribs.push(function_type_rib);
|
||||
|
||||
for generics.ty_params.eachi |index, type_parameter| {
|
||||
let name = type_parameter.ident;
|
||||
debug!("with_type_parameter_rib: %d %d", node_id,
|
||||
type_parameter.id);
|
||||
let def_like = dl_def(def_ty_param
|
||||
(local_def(type_parameter.id),
|
||||
index + initial_index));
|
||||
// Associate this type parameter with
|
||||
// the item that bound it
|
||||
self.record_def(type_parameter.id,
|
||||
def_typaram_binder(node_id));
|
||||
function_type_rib.bindings.insert(name, def_like);
|
||||
}
|
||||
}
|
||||
|
||||
NoTypeParameters => {
|
||||
// Nothing to do.
|
||||
}
|
||||
}
|
||||
|
||||
f();
|
||||
|
||||
match type_parameters {
|
||||
HasTypeParameters(*) => {
|
||||
self.type_ribs.pop();
|
||||
}
|
||||
|
||||
NoTypeParameters => {
|
||||
// Nothing to do.
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn with_label_rib(@mut self, f: &fn()) {
|
||||
self.label_ribs.push(@Rib(NormalRibKind));
|
||||
f();
|
||||
self.label_ribs.pop();
|
||||
}
|
||||
|
||||
fn with_constant_rib(@mut self, f: &fn()) {
|
||||
self.value_ribs.push(@Rib(ConstantItemRibKind));
|
||||
f();
|
||||
self.value_ribs.pop();
|
||||
}
|
||||
|
||||
fn resolve_function(@mut self,
|
||||
rib_kind: RibKind,
|
||||
optional_declaration: Option<&fn_decl>,
|
||||
type_parameters: TypeParameters,
|
||||
block: &blk,
|
||||
self_binding: SelfBinding,
|
||||
visitor: ResolveVisitor) {
|
||||
// Create a value rib for the function.
|
||||
let function_value_rib = @Rib(rib_kind);
|
||||
self.value_ribs.push(function_value_rib);
|
||||
|
||||
// Create a label rib for the function.
|
||||
let function_label_rib = @Rib(rib_kind);
|
||||
self.label_ribs.push(function_label_rib);
|
||||
|
||||
// If this function has type parameters, add them now.
|
||||
do self.with_type_parameter_rib(type_parameters) {
|
||||
// Resolve the type parameters.
|
||||
match type_parameters {
|
||||
NoTypeParameters => {
|
||||
// Continue.
|
||||
}
|
||||
HasTypeParameters(ref generics, _, _, _) => {
|
||||
self.resolve_type_parameters(&generics.ty_params,
|
||||
visitor);
|
||||
}
|
||||
}
|
||||
|
||||
// Add self to the rib, if necessary.
|
||||
match self_binding {
|
||||
NoSelfBinding => {
|
||||
// Nothing to do.
|
||||
}
|
||||
HasSelfBinding(self_node_id, is_implicit) => {
|
||||
let def_like = dl_def(def_self(self_node_id,
|
||||
is_implicit));
|
||||
*function_value_rib.self_binding = Some(def_like);
|
||||
}
|
||||
}
|
||||
|
||||
// Add each argument to the rib.
|
||||
match optional_declaration {
|
||||
None => {
|
||||
// Nothing to do.
|
||||
}
|
||||
Some(declaration) => {
|
||||
for declaration.inputs.each |argument| {
|
||||
let binding_mode = ArgumentIrrefutableMode;
|
||||
let mutability =
|
||||
if argument.is_mutbl {Mutable} else {Immutable};
|
||||
self.resolve_pattern(argument.pat,
|
||||
binding_mode,
|
||||
mutability,
|
||||
None,
|
||||
visitor);
|
||||
|
||||
self.resolve_type(argument.ty, visitor);
|
||||
|
||||
debug!("(resolving function) recorded argument");
|
||||
}
|
||||
|
||||
self.resolve_type(declaration.output, visitor);
|
||||
}
|
||||
}
|
||||
|
||||
// Resolve the function body.
|
||||
self.resolve_block(block, visitor);
|
||||
|
||||
debug!("(resolving function) leaving function");
|
||||
}
|
||||
|
||||
self.label_ribs.pop();
|
||||
self.value_ribs.pop();
|
||||
}
|
||||
|
||||
fn resolve_type_parameters(@mut self,
|
||||
type_parameters: &OptVec<TyParam>,
|
||||
visitor: ResolveVisitor) {
|
||||
for type_parameters.each |type_parameter| {
|
||||
for type_parameter.bounds.each |&bound| {
|
||||
match bound {
|
||||
TraitTyParamBound(tref) => {
|
||||
self.resolve_trait_reference(tref, visitor)
|
||||
}
|
||||
RegionTyParamBound => {}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn resolve_trait_reference(@mut self,
|
||||
trait_reference: &trait_ref,
|
||||
visitor: ResolveVisitor) {
|
||||
match self.resolve_path(trait_reference.path, TypeNS, true, visitor) {
|
||||
None => {
|
||||
self.session.span_err(trait_reference.path.span,
|
||||
~"attempt to implement an \
|
||||
unknown trait");
|
||||
}
|
||||
Some(def) => {
|
||||
self.record_def(trait_reference.ref_id, def);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn resolve_struct(@mut self,
|
||||
id: node_id,
|
||||
generics: &Generics,
|
||||
fields: &[@struct_field],
|
||||
visitor: ResolveVisitor) {
|
||||
// If applicable, create a rib for the type parameters.
|
||||
do self.with_type_parameter_rib(HasTypeParameters
|
||||
(generics, id, 0,
|
||||
OpaqueFunctionRibKind)) {
|
||||
|
||||
// Resolve the type parameters.
|
||||
self.resolve_type_parameters(&generics.ty_params, visitor);
|
||||
|
||||
// Resolve fields.
|
||||
for fields.each |field| {
|
||||
self.resolve_type(field.node.ty, visitor);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Does this really need to take a RibKind or is it always going
|
||||
// to be NormalRibKind?
|
||||
fn resolve_method(@mut self,
|
||||
rib_kind: RibKind,
|
||||
method: @method,
|
||||
outer_type_parameter_count: uint,
|
||||
visitor: ResolveVisitor) {
|
||||
let method_generics = &method.generics;
|
||||
let type_parameters =
|
||||
HasTypeParameters(method_generics,
|
||||
method.id,
|
||||
outer_type_parameter_count,
|
||||
rib_kind);
|
||||
// we only have self ty if it is a non static method
|
||||
let self_binding = match method.explicit_self.node {
|
||||
sty_static => { NoSelfBinding }
|
||||
_ => { HasSelfBinding(method.self_id, false) }
|
||||
};
|
||||
|
||||
self.resolve_function(rib_kind,
|
||||
Some(&method.decl),
|
||||
type_parameters,
|
||||
&method.body,
|
||||
self_binding,
|
||||
visitor);
|
||||
}
|
||||
|
||||
fn resolve_implementation(@mut self,
|
||||
id: node_id,
|
||||
generics: &Generics,
|
||||
opt_trait_reference: Option<@trait_ref>,
|
||||
self_type: @Ty,
|
||||
methods: &[@method],
|
||||
visitor: ResolveVisitor) {
|
||||
// If applicable, create a rib for the type parameters.
|
||||
let outer_type_parameter_count = generics.ty_params.len();
|
||||
do self.with_type_parameter_rib(HasTypeParameters
|
||||
(generics, id, 0,
|
||||
NormalRibKind)) {
|
||||
// Resolve the type parameters.
|
||||
self.resolve_type_parameters(&generics.ty_params,
|
||||
visitor);
|
||||
|
||||
// Resolve the trait reference, if necessary.
|
||||
let original_trait_refs;
|
||||
match opt_trait_reference {
|
||||
Some(trait_reference) => {
|
||||
self.resolve_trait_reference(trait_reference, visitor);
|
||||
|
||||
// Record the current set of trait references.
|
||||
let mut new_trait_refs = ~[];
|
||||
for self.def_map.find(&trait_reference.ref_id).each |&def| {
|
||||
new_trait_refs.push(def_id_of_def(*def));
|
||||
}
|
||||
original_trait_refs = Some(util::replace(
|
||||
&mut self.current_trait_refs,
|
||||
Some(new_trait_refs)));
|
||||
}
|
||||
None => {
|
||||
original_trait_refs = None;
|
||||
}
|
||||
}
|
||||
|
||||
// Resolve the self type.
|
||||
self.resolve_type(self_type, visitor);
|
||||
|
||||
for methods.each |method| {
|
||||
// We also need a new scope for the method-specific
|
||||
// type parameters.
|
||||
self.resolve_method(MethodRibKind(
|
||||
id,
|
||||
Provided(method.id)),
|
||||
*method,
|
||||
outer_type_parameter_count,
|
||||
visitor);
|
||||
/*
|
||||
let borrowed_type_parameters = &method.tps;
|
||||
self.resolve_function(MethodRibKind(
|
||||
id,
|
||||
Provided(method.id)),
|
||||
Some(@method.decl),
|
||||
HasTypeParameters
|
||||
(borrowed_type_parameters,
|
||||
method.id,
|
||||
outer_type_parameter_count,
|
||||
NormalRibKind),
|
||||
method.body,
|
||||
HasSelfBinding(method.self_id),
|
||||
visitor);
|
||||
*/
|
||||
}
|
||||
|
||||
// Restore the original trait references.
|
||||
match original_trait_refs {
|
||||
Some(r) => { self.current_trait_refs = r; }
|
||||
None => ()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn resolve_module(@mut self,
|
||||
module_: &_mod,
|
||||
span: span,
|
||||
_name: ident,
|
||||
id: node_id,
|
||||
visitor: ResolveVisitor) {
|
||||
// Write the implementations in scope into the module metadata.
|
||||
debug!("(resolving module) resolving module ID %d", id);
|
||||
visit_mod(module_, span, id, (), visitor);
|
||||
}
|
||||
|
||||
fn resolve_local(@mut self, local: @local, visitor: ResolveVisitor) {
|
||||
let mutability = if local.node.is_mutbl {Mutable} else {Immutable};
|
||||
|
||||
// Resolve the type.
|
||||
self.resolve_type(local.node.ty, visitor);
|
||||
|
||||
// Resolve the initializer, if necessary.
|
||||
match local.node.init {
|
||||
None => {
|
||||
// Nothing to do.
|
||||
}
|
||||
Some(initializer) => {
|
||||
self.resolve_expr(initializer, visitor);
|
||||
}
|
||||
}
|
||||
|
||||
// Resolve the pattern.
|
||||
self.resolve_pattern(local.node.pat, LocalIrrefutableMode, mutability,
|
||||
None, visitor);
|
||||
}
|
||||
|
||||
fn binding_mode_map(@mut self, pat: @pat) -> BindingMap {
|
||||
let mut result = HashMap::new();
|
||||
do pat_bindings(self.def_map, pat) |binding_mode, _id, sp, path| {
|
||||
let ident = path_to_ident(path);
|
||||
result.insert(ident,
|
||||
binding_info {span: sp,
|
||||
binding_mode: binding_mode});
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
fn check_consistent_bindings(@mut self, arm: &arm) {
|
||||
if arm.pats.len() == 0 { return; }
|
||||
let map_0 = self.binding_mode_map(arm.pats[0]);
|
||||
for arm.pats.eachi() |i, p| {
|
||||
let map_i = self.binding_mode_map(*p);
|
||||
|
||||
for map_0.each |&key, &binding_0| {
|
||||
match map_i.find(&key) {
|
||||
None => {
|
||||
self.session.span_err(
|
||||
p.span,
|
||||
fmt!("variable `%s` from pattern #1 is \
|
||||
not bound in pattern #%u",
|
||||
*self.session.str_of(key), i + 1));
|
||||
}
|
||||
Some(binding_i) => {
|
||||
if binding_0.binding_mode != binding_i.binding_mode {
|
||||
self.session.span_err(
|
||||
binding_i.span,
|
||||
fmt!("variable `%s` is bound with different \
|
||||
mode in pattern #%u than in pattern #1",
|
||||
*self.session.str_of(key), i + 1));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for map_i.each |&key, &binding| {
|
||||
if !map_0.contains_key(&key) {
|
||||
self.session.span_err(
|
||||
binding.span,
|
||||
fmt!("variable `%s` from pattern #%u is \
|
||||
not bound in pattern #1",
|
||||
*self.session.str_of(key), i + 1));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn resolve_arm(@mut self, arm: &arm, visitor: ResolveVisitor) {
|
||||
self.value_ribs.push(@Rib(NormalRibKind));
|
||||
|
||||
let bindings_list = @mut HashMap::new();
|
||||
for arm.pats.each |pattern| {
|
||||
self.resolve_pattern(*pattern, RefutableMode, Immutable,
|
||||
Some(bindings_list), visitor);
|
||||
}
|
||||
|
||||
// This has to happen *after* we determine which
|
||||
// pat_idents are variants
|
||||
self.check_consistent_bindings(arm);
|
||||
|
||||
visit_expr_opt(arm.guard, (), visitor);
|
||||
self.resolve_block(&arm.body, visitor);
|
||||
|
||||
self.value_ribs.pop();
|
||||
}
|
||||
|
||||
fn resolve_block(@mut self, block: &blk, visitor: ResolveVisitor) {
|
||||
debug!("(resolving block) entering block");
|
||||
self.value_ribs.push(@Rib(NormalRibKind));
|
||||
|
||||
// Move down in the graph, if there's an anonymous module rooted here.
|
||||
let orig_module = self.current_module;
|
||||
match self.current_module.anonymous_children.find(&block.node.id) {
|
||||
None => { /* Nothing to do. */ }
|
||||
Some(&anonymous_module) => {
|
||||
debug!("(resolving block) found anonymous module, moving \
|
||||
down");
|
||||
self.current_module = anonymous_module;
|
||||
}
|
||||
}
|
||||
|
||||
// Descend into the block.
|
||||
visit_block(block, (), visitor);
|
||||
|
||||
// Move back up.
|
||||
self.current_module = orig_module;
|
||||
|
||||
self.value_ribs.pop();
|
||||
debug!("(resolving block) leaving block");
|
||||
}
|
||||
|
||||
fn resolve_type(@mut self, ty: @Ty, visitor: ResolveVisitor) {
|
||||
match ty.node {
|
||||
// Like path expressions, the interpretation of path types depends
|
||||
// on whether the path has multiple elements in it or not.
|
||||
|
||||
ty_path(path, path_id) => {
|
||||
// This is a path in the type namespace. Walk through scopes
|
||||
// scopes looking for it.
|
||||
let mut result_def = None;
|
||||
|
||||
// First, check to see whether the name is a primitive type.
|
||||
if path.idents.len() == 1 {
|
||||
let name = *path.idents.last();
|
||||
|
||||
match self.primitive_type_table
|
||||
.primitive_types
|
||||
.find(&name) {
|
||||
|
||||
Some(&primitive_type) => {
|
||||
result_def =
|
||||
Some(def_prim_ty(primitive_type));
|
||||
}
|
||||
None => {
|
||||
// Continue.
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
match result_def {
|
||||
None => {
|
||||
match self.resolve_path(path, TypeNS, true, visitor) {
|
||||
Some(def) => {
|
||||
debug!("(resolving type) resolved `%s` to \
|
||||
type %?",
|
||||
*self.session.str_of(
|
||||
*path.idents.last()),
|
||||
def);
|
||||
result_def = Some(def);
|
||||
}
|
||||
None => {
|
||||
result_def = None;
|
||||
}
|
||||
}
|
||||
}
|
||||
Some(_) => {
|
||||
// Continue.
|
||||
}
|
||||
}
|
||||
|
||||
match result_def {
|
||||
Some(def) => {
|
||||
// Write the result into the def map.
|
||||
debug!("(resolving type) writing resolution for `%s` \
|
||||
(id %d)",
|
||||
self.idents_to_str(path.idents),
|
||||
path_id);
|
||||
self.record_def(path_id, def);
|
||||
}
|
||||
None => {
|
||||
self.session.span_err
|
||||
(ty.span, fmt!("use of undeclared type name `%s`",
|
||||
self.idents_to_str(path.idents)));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
_ => {
|
||||
// Just resolve embedded types.
|
||||
visit_ty(ty, (), visitor);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn resolve_pattern(@mut self,
|
||||
pattern: @pat,
|
||||
mode: PatternBindingMode,
|
||||
mutability: Mutability,
|
||||
// Maps idents to the node ID for the (outermost)
|
||||
// pattern that binds them
|
||||
bindings_list: Option<@mut HashMap<ident,node_id>>,
|
||||
visitor: ResolveVisitor) {
|
||||
let pat_id = pattern.id;
|
||||
do walk_pat(pattern) |pattern| {
|
||||
match pattern.node {
|
||||
pat_ident(binding_mode, path, _)
|
||||
if !path.global && path.idents.len() == 1 => {
|
||||
|
||||
// The meaning of pat_ident with no type parameters
|
||||
// depends on whether an enum variant or unit-like struct
|
||||
// with that name is in scope. The probing lookup has to
|
||||
// be careful not to emit spurious errors. Only matching
|
||||
// patterns (match) can match nullary variants or
|
||||
// unit-like structs. For binding patterns (let), matching
|
||||
// such a value is simply disallowed (since it's rarely
|
||||
// what you want).
|
||||
|
||||
let ident = path.idents[0];
|
||||
|
||||
match self.resolve_bare_identifier_pattern(ident) {
|
||||
FoundStructOrEnumVariant(def)
|
||||
if mode == RefutableMode => {
|
||||
debug!("(resolving pattern) resolving `%s` to \
|
||||
struct or enum variant",
|
||||
*self.session.str_of(ident));
|
||||
|
||||
self.enforce_default_binding_mode(
|
||||
pattern,
|
||||
binding_mode,
|
||||
"an enum variant");
|
||||
self.record_def(pattern.id, def);
|
||||
}
|
||||
FoundStructOrEnumVariant(_) => {
|
||||
self.session.span_err(pattern.span,
|
||||
fmt!("declaration of `%s` \
|
||||
shadows an enum \
|
||||
variant or unit-like \
|
||||
struct in scope",
|
||||
*self.session
|
||||
.str_of(ident)));
|
||||
}
|
||||
FoundConst(def) if mode == RefutableMode => {
|
||||
debug!("(resolving pattern) resolving `%s` to \
|
||||
constant",
|
||||
*self.session.str_of(ident));
|
||||
|
||||
self.enforce_default_binding_mode(
|
||||
pattern,
|
||||
binding_mode,
|
||||
"a constant");
|
||||
self.record_def(pattern.id, def);
|
||||
}
|
||||
FoundConst(_) => {
|
||||
self.session.span_err(pattern.span,
|
||||
~"only refutable patterns \
|
||||
allowed here");
|
||||
}
|
||||
BareIdentifierPatternUnresolved => {
|
||||
debug!("(resolving pattern) binding `%s`",
|
||||
*self.session.str_of(ident));
|
||||
|
||||
let is_mutable = mutability == Mutable;
|
||||
|
||||
let def = match mode {
|
||||
RefutableMode => {
|
||||
// For pattern arms, we must use
|
||||
// `def_binding` definitions.
|
||||
|
||||
def_binding(pattern.id, binding_mode)
|
||||
}
|
||||
LocalIrrefutableMode => {
|
||||
// But for locals, we use `def_local`.
|
||||
def_local(pattern.id, is_mutable)
|
||||
}
|
||||
ArgumentIrrefutableMode => {
|
||||
// And for function arguments, `def_arg`.
|
||||
def_arg(pattern.id, is_mutable)
|
||||
}
|
||||
};
|
||||
|
||||
// Record the definition so that later passes
|
||||
// will be able to distinguish variants from
|
||||
// locals in patterns.
|
||||
|
||||
self.record_def(pattern.id, def);
|
||||
|
||||
// Add the binding to the local ribs, if it
|
||||
// doesn't already exist in the bindings list. (We
|
||||
// must not add it if it's in the bindings list
|
||||
// because that breaks the assumptions later
|
||||
// passes make about or-patterns.)
|
||||
|
||||
match bindings_list {
|
||||
Some(bindings_list)
|
||||
if !bindings_list.contains_key(&ident) => {
|
||||
let this = &mut *self;
|
||||
let last_rib = this.value_ribs[
|
||||
this.value_ribs.len() - 1];
|
||||
last_rib.bindings.insert(ident,
|
||||
dl_def(def));
|
||||
bindings_list.insert(ident, pat_id);
|
||||
}
|
||||
Some(b) => {
|
||||
if b.find(&ident) == Some(&pat_id) {
|
||||
// Then this is a duplicate variable
|
||||
// in the same disjunct, which is an
|
||||
// error
|
||||
self.session.span_err(pattern.span,
|
||||
fmt!("Identifier %s is bound more \
|
||||
than once in the same pattern",
|
||||
path_to_str(path, self.session
|
||||
.intr())));
|
||||
}
|
||||
// Not bound in the same pattern: do nothing
|
||||
}
|
||||
None => {
|
||||
let this = &mut *self;
|
||||
let last_rib = this.value_ribs[
|
||||
this.value_ribs.len() - 1];
|
||||
last_rib.bindings.insert(ident,
|
||||
dl_def(def));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Check the types in the path pattern.
|
||||
for path.types.each |ty| {
|
||||
self.resolve_type(*ty, visitor);
|
||||
}
|
||||
}
|
||||
|
||||
pat_ident(binding_mode, path, _) => {
|
||||
// This must be an enum variant, struct, or constant.
|
||||
match self.resolve_path(path, ValueNS, false, visitor) {
|
||||
Some(def @ def_variant(*)) |
|
||||
Some(def @ def_struct(*)) => {
|
||||
self.record_def(pattern.id, def);
|
||||
}
|
||||
Some(def @ def_const(*)) => {
|
||||
self.enforce_default_binding_mode(
|
||||
pattern,
|
||||
binding_mode,
|
||||
"a constant");
|
||||
self.record_def(pattern.id, def);
|
||||
}
|
||||
Some(_) => {
|
||||
self.session.span_err(
|
||||
path.span,
|
||||
fmt!("not an enum variant or constant: %s",
|
||||
*self.session.str_of(
|
||||
*path.idents.last())));
|
||||
}
|
||||
None => {
|
||||
self.session.span_err(path.span,
|
||||
~"unresolved enum variant");
|
||||
}
|
||||
}
|
||||
|
||||
// Check the types in the path pattern.
|
||||
for path.types.each |ty| {
|
||||
self.resolve_type(*ty, visitor);
|
||||
}
|
||||
}
|
||||
|
||||
pat_enum(path, _) => {
|
||||
// This must be an enum variant, struct or const.
|
||||
match self.resolve_path(path, ValueNS, false, visitor) {
|
||||
Some(def @ def_fn(*)) |
|
||||
Some(def @ def_variant(*)) |
|
||||
Some(def @ def_struct(*)) |
|
||||
Some(def @ def_const(*)) => {
|
||||
self.record_def(pattern.id, def);
|
||||
}
|
||||
Some(_) => {
|
||||
self.session.span_err(
|
||||
path.span,
|
||||
fmt!("not an enum variant, struct or const: %s",
|
||||
*self.session.str_of(
|
||||
*path.idents.last())));
|
||||
}
|
||||
None => {
|
||||
self.session.span_err(path.span,
|
||||
~"unresolved enum variant, \
|
||||
struct or const");
|
||||
}
|
||||
}
|
||||
|
||||
// Check the types in the path pattern.
|
||||
for path.types.each |ty| {
|
||||
self.resolve_type(*ty, visitor);
|
||||
}
|
||||
}
|
||||
|
||||
pat_lit(expr) => {
|
||||
self.resolve_expr(expr, visitor);
|
||||
}
|
||||
|
||||
pat_range(first_expr, last_expr) => {
|
||||
self.resolve_expr(first_expr, visitor);
|
||||
self.resolve_expr(last_expr, visitor);
|
||||
}
|
||||
|
||||
pat_struct(path, _, _) => {
|
||||
let structs: &mut HashSet<def_id> = &mut self.structs;
|
||||
match self.resolve_path(path, TypeNS, false, visitor) {
|
||||
Some(def_ty(class_id))
|
||||
if structs.contains(&class_id) => {
|
||||
let class_def = def_struct(class_id);
|
||||
self.record_def(pattern.id, class_def);
|
||||
}
|
||||
Some(definition @ def_struct(class_id))
|
||||
if structs.contains(&class_id) => {
|
||||
self.record_def(pattern.id, definition);
|
||||
}
|
||||
Some(definition @ def_variant(_, variant_id))
|
||||
if structs.contains(&variant_id) => {
|
||||
self.record_def(pattern.id, definition);
|
||||
}
|
||||
result => {
|
||||
debug!("(resolving pattern) didn't find struct \
|
||||
def: %?", result);
|
||||
self.session.span_err(
|
||||
path.span,
|
||||
fmt!("`%s` does not name a structure",
|
||||
self.idents_to_str(path.idents)));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
_ => {
|
||||
// Nothing to do.
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn resolve_bare_identifier_pattern(@mut self, name: ident)
|
||||
-> BareIdentifierPatternResolution {
|
||||
match self.resolve_item_in_lexical_scope(self.current_module,
|
||||
name,
|
||||
ValueNS,
|
||||
SearchThroughModules) {
|
||||
Success(target) => {
|
||||
match target.bindings.value_def {
|
||||
None => {
|
||||
fail!("resolved name in the value namespace to a \
|
||||
set of name bindings with no def?!");
|
||||
}
|
||||
Some(def) => {
|
||||
match def.def {
|
||||
def @ def_variant(*) | def @ def_struct(*) => {
|
||||
return FoundStructOrEnumVariant(def);
|
||||
}
|
||||
def @ def_const(*) => {
|
||||
return FoundConst(def);
|
||||
}
|
||||
_ => {
|
||||
return BareIdentifierPatternUnresolved;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Indeterminate => {
|
||||
fail!("unexpected indeterminate result");
|
||||
}
|
||||
|
||||
Failed => {
|
||||
return BareIdentifierPatternUnresolved;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// If `check_ribs` is true, checks the local definitions first; i.e.
|
||||
/// doesn't skip straight to the containing module.
|
||||
fn resolve_path(@mut self,
|
||||
path: @Path,
|
||||
namespace: Namespace,
|
||||
check_ribs: bool,
|
||||
visitor: ResolveVisitor)
|
||||
-> Option<def> {
|
||||
// First, resolve the types.
|
||||
for path.types.each |ty| {
|
||||
self.resolve_type(*ty, visitor);
|
||||
}
|
||||
|
||||
if path.global {
|
||||
return self.resolve_crate_relative_path(path,
|
||||
self.xray_context,
|
||||
namespace);
|
||||
}
|
||||
|
||||
if path.idents.len() > 1 {
|
||||
return self.resolve_module_relative_path(path,
|
||||
self.xray_context,
|
||||
namespace);
|
||||
}
|
||||
|
||||
return self.resolve_identifier(*path.idents.last(),
|
||||
namespace,
|
||||
check_ribs,
|
||||
path.span);
|
||||
}
|
||||
|
||||
fn resolve_identifier(@mut self,
|
||||
identifier: ident,
|
||||
namespace: Namespace,
|
||||
check_ribs: bool,
|
||||
span: span)
|
||||
-> Option<def> {
|
||||
if check_ribs {
|
||||
match self.resolve_identifier_in_local_ribs(identifier,
|
||||
namespace,
|
||||
span) {
|
||||
Some(def) => {
|
||||
return Some(def);
|
||||
}
|
||||
None => {
|
||||
// Continue.
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return self.resolve_item_by_identifier_in_lexical_scope(identifier,
|
||||
namespace);
|
||||
}
|
||||
|
||||
// FIXME #4952: Merge me with resolve_name_in_module?
|
||||
fn resolve_definition_of_name_in_module(@mut self,
|
||||
containing_module: @mut Module,
|
||||
name: ident,
|
||||
namespace: Namespace,
|
||||
xray: XrayFlag)
|
||||
-> NameDefinition {
|
||||
// First, search children.
|
||||
match containing_module.children.find(&name) {
|
||||
Some(child_name_bindings) => {
|
||||
match (child_name_bindings.def_for_namespace(namespace),
|
||||
child_name_bindings.privacy_for_namespace(namespace)) {
|
||||
(Some(def), Some(Public)) => {
|
||||
// Found it. Stop the search here.
|
||||
return ChildNameDefinition(def);
|
||||
}
|
||||
(Some(def), _) if xray == Xray => {
|
||||
// Found it. Stop the search here.
|
||||
return ChildNameDefinition(def);
|
||||
}
|
||||
(Some(_), _) | (None, _) => {
|
||||
// Continue.
|
||||
}
|
||||
}
|
||||
}
|
||||
None => {
|
||||
// Continue.
|
||||
}
|
||||
}
|
||||
|
||||
// Next, search import resolutions.
|
||||
match containing_module.import_resolutions.find(&name) {
|
||||
Some(import_resolution) if import_resolution.privacy == Public ||
|
||||
xray == Xray => {
|
||||
match (*import_resolution).target_for_namespace(namespace) {
|
||||
Some(target) => {
|
||||
match (target.bindings.def_for_namespace(namespace),
|
||||
target.bindings.privacy_for_namespace(
|
||||
namespace)) {
|
||||
(Some(def), Some(Public)) => {
|
||||
// Found it.
|
||||
import_resolution.state.used = true;
|
||||
return ImportNameDefinition(def);
|
||||
}
|
||||
(Some(_), _) | (None, _) => {
|
||||
// This can happen with external impls, due to
|
||||
// the imperfect way we read the metadata.
|
||||
}
|
||||
}
|
||||
}
|
||||
None => {}
|
||||
}
|
||||
}
|
||||
Some(_) | None => {} // Continue.
|
||||
}
|
||||
|
||||
// Finally, search through external children.
|
||||
if namespace == TypeNS {
|
||||
match containing_module.external_module_children.find(&name) {
|
||||
None => {}
|
||||
Some(module) => {
|
||||
match module.def_id {
|
||||
None => {} // Continue.
|
||||
Some(def_id) => {
|
||||
return ChildNameDefinition(def_mod(def_id));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return NoNameDefinition;
|
||||
}
|
||||
|
||||
fn intern_module_part_of_path(@mut self, path: @Path) -> ~[ident] {
|
||||
let mut module_path_idents = ~[];
|
||||
for path.idents.eachi |index, ident| {
|
||||
if index == path.idents.len() - 1 {
|
||||
break;
|
||||
}
|
||||
|
||||
module_path_idents.push(*ident);
|
||||
}
|
||||
|
||||
return module_path_idents;
|
||||
}
|
||||
|
||||
fn resolve_module_relative_path(@mut self,
|
||||
path: @Path,
|
||||
xray: XrayFlag,
|
||||
namespace: Namespace)
|
||||
-> Option<def> {
|
||||
let module_path_idents = self.intern_module_part_of_path(path);
|
||||
|
||||
let containing_module;
|
||||
match self.resolve_module_path_for_import(self.current_module,
|
||||
module_path_idents,
|
||||
UseLexicalScope,
|
||||
path.span) {
|
||||
Failed => {
|
||||
self.session.span_err(path.span,
|
||||
fmt!("use of undeclared module `%s`",
|
||||
self.idents_to_str(
|
||||
module_path_idents)));
|
||||
return None;
|
||||
}
|
||||
|
||||
Indeterminate => {
|
||||
fail!("indeterminate unexpected");
|
||||
}
|
||||
|
||||
Success(resulting_module) => {
|
||||
containing_module = resulting_module;
|
||||
}
|
||||
}
|
||||
|
||||
let name = *path.idents.last();
|
||||
match self.resolve_definition_of_name_in_module(containing_module,
|
||||
name,
|
||||
namespace,
|
||||
xray) {
|
||||
NoNameDefinition => {
|
||||
// We failed to resolve the name. Report an error.
|
||||
return None;
|
||||
}
|
||||
ChildNameDefinition(def) | ImportNameDefinition(def) => {
|
||||
return Some(def);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Invariant: This must be called only during main resolution, not during
|
||||
/// import resolution.
|
||||
fn resolve_crate_relative_path(@mut self,
|
||||
path: @Path,
|
||||
xray: XrayFlag,
|
||||
namespace: Namespace)
|
||||
-> Option<def> {
|
||||
let module_path_idents = self.intern_module_part_of_path(path);
|
||||
|
||||
let root_module = self.graph_root.get_module();
|
||||
|
||||
let containing_module;
|
||||
match self.resolve_module_path_from_root(root_module,
|
||||
module_path_idents,
|
||||
0,
|
||||
path.span,
|
||||
SearchItemsAndAllImports) {
|
||||
Failed => {
|
||||
self.session.span_err(path.span,
|
||||
fmt!("use of undeclared module `::%s`",
|
||||
self.idents_to_str(
|
||||
module_path_idents)));
|
||||
return None;
|
||||
}
|
||||
|
||||
Indeterminate => {
|
||||
fail!("indeterminate unexpected");
|
||||
}
|
||||
|
||||
Success(resulting_module) => {
|
||||
containing_module = resulting_module;
|
||||
}
|
||||
}
|
||||
|
||||
let name = *path.idents.last();
|
||||
match self.resolve_definition_of_name_in_module(containing_module,
|
||||
name,
|
||||
namespace,
|
||||
xray) {
|
||||
NoNameDefinition => {
|
||||
// We failed to resolve the name. Report an error.
|
||||
return None;
|
||||
}
|
||||
ChildNameDefinition(def) | ImportNameDefinition(def) => {
|
||||
return Some(def);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn resolve_identifier_in_local_ribs(@mut self,
|
||||
ident: ident,
|
||||
namespace: Namespace,
|
||||
span: span)
|
||||
-> Option<def> {
|
||||
// Check the local set of ribs.
|
||||
let search_result;
|
||||
match namespace {
|
||||
ValueNS => {
|
||||
search_result = self.search_ribs(&mut self.value_ribs, ident,
|
||||
span,
|
||||
DontAllowCapturingSelf);
|
||||
}
|
||||
TypeNS => {
|
||||
search_result = self.search_ribs(&mut self.type_ribs, ident,
|
||||
span, AllowCapturingSelf);
|
||||
}
|
||||
}
|
||||
|
||||
match search_result {
|
||||
Some(dl_def(def)) => {
|
||||
debug!("(resolving path in local ribs) resolved `%s` to \
|
||||
local: %?",
|
||||
*self.session.str_of(ident),
|
||||
def);
|
||||
return Some(def);
|
||||
}
|
||||
Some(dl_field) | Some(dl_impl(_)) | None => {
|
||||
return None;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn resolve_self_value_in_local_ribs(@mut self, span: span)
|
||||
-> Option<def> {
|
||||
// FIXME #4950: This should not use a while loop.
|
||||
let ribs = &mut self.value_ribs;
|
||||
let mut i = ribs.len();
|
||||
while i != 0 {
|
||||
i -= 1;
|
||||
match *ribs[i].self_binding {
|
||||
Some(def_like) => {
|
||||
match self.upvarify(ribs,
|
||||
i,
|
||||
def_like,
|
||||
span,
|
||||
DontAllowCapturingSelf) {
|
||||
Some(dl_def(def)) => return Some(def),
|
||||
_ => {
|
||||
self.session.span_bug(span,
|
||||
~"self wasn't mapped to a \
|
||||
def?!")
|
||||
}
|
||||
}
|
||||
}
|
||||
None => {}
|
||||
}
|
||||
}
|
||||
|
||||
None
|
||||
}
|
||||
|
||||
fn resolve_item_by_identifier_in_lexical_scope(@mut self,
|
||||
ident: ident,
|
||||
namespace: Namespace)
|
||||
-> Option<def> {
|
||||
// Check the items.
|
||||
match self.resolve_item_in_lexical_scope(self.current_module,
|
||||
ident,
|
||||
namespace,
|
||||
DontSearchThroughModules) {
|
||||
Success(target) => {
|
||||
match (*target.bindings).def_for_namespace(namespace) {
|
||||
None => {
|
||||
// This can happen if we were looking for a type and
|
||||
// found a module instead. Modules don't have defs.
|
||||
return None;
|
||||
}
|
||||
Some(def) => {
|
||||
debug!("(resolving item path in lexical scope) \
|
||||
resolved `%s` to item",
|
||||
*self.session.str_of(ident));
|
||||
return Some(def);
|
||||
}
|
||||
}
|
||||
}
|
||||
Indeterminate => {
|
||||
fail!("unexpected indeterminate result");
|
||||
}
|
||||
Failed => {
|
||||
return None;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn find_best_match_for_name(@mut self, name: &str, max_distance: uint) -> Option<~str> {
|
||||
let this = &mut *self;
|
||||
|
||||
let mut maybes: ~[~str] = ~[];
|
||||
let mut values: ~[uint] = ~[];
|
||||
|
||||
let mut j = this.value_ribs.len();
|
||||
while j != 0 {
|
||||
j -= 1;
|
||||
for this.value_ribs[j].bindings.each_key |&k| {
|
||||
vec::push(&mut maybes, copy *this.session.str_of(k));
|
||||
vec::push(&mut values, uint::max_value);
|
||||
}
|
||||
}
|
||||
|
||||
let mut smallest = 0;
|
||||
for maybes.eachi |i, &other| {
|
||||
|
||||
values[i] = str::levdistance(name, other);
|
||||
|
||||
if values[i] <= values[smallest] {
|
||||
smallest = i;
|
||||
}
|
||||
}
|
||||
|
||||
if values.len() > 0 &&
|
||||
values[smallest] != uint::max_value &&
|
||||
values[smallest] < str::len(name) + 2 &&
|
||||
values[smallest] <= max_distance &&
|
||||
maybes[smallest] != name.to_owned() {
|
||||
|
||||
Some(vec::swap_remove(&mut maybes, smallest))
|
||||
|
||||
} else {
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
fn name_exists_in_scope_struct(@mut self, name: &str) -> bool {
|
||||
let this = &mut *self;
|
||||
|
||||
let mut i = this.type_ribs.len();
|
||||
while i != 0 {
|
||||
i -= 1;
|
||||
match this.type_ribs[i].kind {
|
||||
MethodRibKind(node_id, _) =>
|
||||
for this.crate.node.module.items.each |item| {
|
||||
if item.id == node_id {
|
||||
match item.node {
|
||||
item_struct(class_def, _) => {
|
||||
for class_def.fields.each |field| {
|
||||
match field.node.kind {
|
||||
unnamed_field => {},
|
||||
named_field(ident, _) => {
|
||||
if str::eq_slice(*this.session.str_of(ident),
|
||||
name) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
},
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
fn resolve_expr(@mut self, expr: @expr, visitor: ResolveVisitor) {
|
||||
// First, record candidate traits for this expression if it could
|
||||
// result in the invocation of a method call.
|
||||
|
||||
self.record_candidate_traits_for_expr_if_necessary(expr);
|
||||
|
||||
// Next, resolve the node.
|
||||
match expr.node {
|
||||
// The interpretation of paths depends on whether the path has
|
||||
// multiple elements in it or not.
|
||||
|
||||
expr_path(path) => {
|
||||
// This is a local path in the value namespace. Walk through
|
||||
// scopes looking for it.
|
||||
|
||||
match self.resolve_path(path, ValueNS, true, visitor) {
|
||||
Some(def) => {
|
||||
// Write the result into the def map.
|
||||
debug!("(resolving expr) resolved `%s`",
|
||||
self.idents_to_str(path.idents));
|
||||
self.record_def(expr.id, def);
|
||||
}
|
||||
None => {
|
||||
let wrong_name = self.idents_to_str(
|
||||
path.idents);
|
||||
if self.name_exists_in_scope_struct(wrong_name) {
|
||||
self.session.span_err(expr.span,
|
||||
fmt!("unresolved name: `%s`. \
|
||||
Did you mean: `self.%s`?",
|
||||
wrong_name,
|
||||
wrong_name));
|
||||
}
|
||||
else {
|
||||
// limit search to 5 to reduce the number
|
||||
// of stupid suggestions
|
||||
match self.find_best_match_for_name(wrong_name, 5) {
|
||||
Some(m) => {
|
||||
self.session.span_err(expr.span,
|
||||
fmt!("unresolved name: `%s`. \
|
||||
Did you mean: `%s`?",
|
||||
wrong_name, m));
|
||||
}
|
||||
None => {
|
||||
self.session.span_err(expr.span,
|
||||
fmt!("unresolved name: `%s`.",
|
||||
wrong_name));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
visit_expr(expr, (), visitor);
|
||||
}
|
||||
|
||||
expr_fn_block(ref fn_decl, ref block) => {
|
||||
self.resolve_function(FunctionRibKind(expr.id, block.node.id),
|
||||
Some(fn_decl),
|
||||
NoTypeParameters,
|
||||
block,
|
||||
NoSelfBinding,
|
||||
visitor);
|
||||
}
|
||||
|
||||
expr_struct(path, _, _) => {
|
||||
// Resolve the path to the structure it goes to.
|
||||
let structs: &mut HashSet<def_id> = &mut self.structs;
|
||||
match self.resolve_path(path, TypeNS, false, visitor) {
|
||||
Some(def_ty(class_id)) | Some(def_struct(class_id))
|
||||
if structs.contains(&class_id) => {
|
||||
let class_def = def_struct(class_id);
|
||||
self.record_def(expr.id, class_def);
|
||||
}
|
||||
Some(definition @ def_variant(_, class_id))
|
||||
if structs.contains(&class_id) => {
|
||||
self.record_def(expr.id, definition);
|
||||
}
|
||||
_ => {
|
||||
self.session.span_err(
|
||||
path.span,
|
||||
fmt!("`%s` does not name a structure",
|
||||
self.idents_to_str(path.idents)));
|
||||
}
|
||||
}
|
||||
|
||||
visit_expr(expr, (), visitor);
|
||||
}
|
||||
|
||||
expr_loop(_, Some(label)) => {
|
||||
do self.with_label_rib {
|
||||
let this = &mut *self;
|
||||
let def_like = dl_def(def_label(expr.id));
|
||||
let rib = this.label_ribs[this.label_ribs.len() - 1];
|
||||
rib.bindings.insert(label, def_like);
|
||||
|
||||
visit_expr(expr, (), visitor);
|
||||
}
|
||||
}
|
||||
|
||||
expr_break(Some(label)) | expr_again(Some(label)) => {
|
||||
match self.search_ribs(&mut self.label_ribs, label, expr.span,
|
||||
DontAllowCapturingSelf) {
|
||||
None =>
|
||||
self.session.span_err(expr.span,
|
||||
fmt!("use of undeclared label \
|
||||
`%s`",
|
||||
*self.session.str_of(
|
||||
label))),
|
||||
Some(dl_def(def @ def_label(_))) => {
|
||||
self.record_def(expr.id, def)
|
||||
}
|
||||
Some(_) => {
|
||||
self.session.span_bug(expr.span,
|
||||
~"label wasn't mapped to a \
|
||||
label def!")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
expr_self => {
|
||||
match self.resolve_self_value_in_local_ribs(expr.span) {
|
||||
None => {
|
||||
self.session.span_err(expr.span,
|
||||
~"`self` is not allowed in \
|
||||
this context")
|
||||
}
|
||||
Some(def) => self.record_def(expr.id, def),
|
||||
}
|
||||
}
|
||||
|
||||
_ => {
|
||||
visit_expr(expr, (), visitor);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn record_candidate_traits_for_expr_if_necessary(@mut self, expr: @expr) {
|
||||
match expr.node {
|
||||
expr_field(_, ident, _) => {
|
||||
let traits = self.search_for_traits_containing_method(ident);
|
||||
self.trait_map.insert(expr.id, @mut traits);
|
||||
}
|
||||
expr_method_call(_, ident, _, _, _) => {
|
||||
let traits = self.search_for_traits_containing_method(ident);
|
||||
self.trait_map.insert(expr.id, @mut traits);
|
||||
}
|
||||
expr_binary(add, _, _) | expr_assign_op(add, _, _) => {
|
||||
self.add_fixed_trait_for_expr(expr.id,
|
||||
self.lang_items.add_trait());
|
||||
}
|
||||
expr_binary(subtract, _, _) | expr_assign_op(subtract, _, _) => {
|
||||
self.add_fixed_trait_for_expr(expr.id,
|
||||
self.lang_items.sub_trait());
|
||||
}
|
||||
expr_binary(mul, _, _) | expr_assign_op(mul, _, _) => {
|
||||
self.add_fixed_trait_for_expr(expr.id,
|
||||
self.lang_items.mul_trait());
|
||||
}
|
||||
expr_binary(div, _, _) | expr_assign_op(div, _, _) => {
|
||||
self.add_fixed_trait_for_expr(expr.id,
|
||||
self.lang_items.div_trait());
|
||||
}
|
||||
expr_binary(rem, _, _) | expr_assign_op(rem, _, _) => {
|
||||
self.add_fixed_trait_for_expr(expr.id,
|
||||
self.lang_items.rem_trait());
|
||||
}
|
||||
expr_binary(bitxor, _, _) | expr_assign_op(bitxor, _, _) => {
|
||||
self.add_fixed_trait_for_expr(expr.id,
|
||||
self.lang_items.bitxor_trait());
|
||||
}
|
||||
expr_binary(bitand, _, _) | expr_assign_op(bitand, _, _) => {
|
||||
self.add_fixed_trait_for_expr(expr.id,
|
||||
self.lang_items.bitand_trait());
|
||||
}
|
||||
expr_binary(bitor, _, _) | expr_assign_op(bitor, _, _) => {
|
||||
self.add_fixed_trait_for_expr(expr.id,
|
||||
self.lang_items.bitor_trait());
|
||||
}
|
||||
expr_binary(shl, _, _) | expr_assign_op(shl, _, _) => {
|
||||
self.add_fixed_trait_for_expr(expr.id,
|
||||
self.lang_items.shl_trait());
|
||||
}
|
||||
expr_binary(shr, _, _) | expr_assign_op(shr, _, _) => {
|
||||
self.add_fixed_trait_for_expr(expr.id,
|
||||
self.lang_items.shr_trait());
|
||||
}
|
||||
expr_binary(lt, _, _) | expr_binary(le, _, _) |
|
||||
expr_binary(ge, _, _) | expr_binary(gt, _, _) => {
|
||||
self.add_fixed_trait_for_expr(expr.id,
|
||||
self.lang_items.ord_trait());
|
||||
}
|
||||
expr_binary(eq, _, _) | expr_binary(ne, _, _) => {
|
||||
self.add_fixed_trait_for_expr(expr.id,
|
||||
self.lang_items.eq_trait());
|
||||
}
|
||||
expr_unary(neg, _) => {
|
||||
self.add_fixed_trait_for_expr(expr.id,
|
||||
self.lang_items.neg_trait());
|
||||
}
|
||||
expr_unary(not, _) => {
|
||||
self.add_fixed_trait_for_expr(expr.id,
|
||||
self.lang_items.not_trait());
|
||||
}
|
||||
expr_index(*) => {
|
||||
self.add_fixed_trait_for_expr(expr.id,
|
||||
self.lang_items.index_trait());
|
||||
}
|
||||
_ => {
|
||||
// Nothing to do.
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn search_for_traits_containing_method(@mut self,
|
||||
name: ident)
|
||||
-> ~[def_id] {
|
||||
debug!("(searching for traits containing method) looking for '%s'",
|
||||
*self.session.str_of(name));
|
||||
|
||||
let mut found_traits = ~[];
|
||||
let mut search_module = self.current_module;
|
||||
loop {
|
||||
// Look for the current trait.
|
||||
match /*bad*/copy self.current_trait_refs {
|
||||
Some(trait_def_ids) => {
|
||||
for trait_def_ids.each |trait_def_id| {
|
||||
self.add_trait_info_if_containing_method(
|
||||
&mut found_traits, *trait_def_id, name);
|
||||
}
|
||||
}
|
||||
None => {
|
||||
// Nothing to do.
|
||||
}
|
||||
}
|
||||
|
||||
// Look for trait children.
|
||||
for search_module.children.each_value |&child_name_bindings| {
|
||||
match child_name_bindings.def_for_namespace(TypeNS) {
|
||||
Some(def) => {
|
||||
match def {
|
||||
def_trait(trait_def_id) => {
|
||||
self.add_trait_info_if_containing_method(
|
||||
&mut found_traits, trait_def_id, name);
|
||||
}
|
||||
_ => {
|
||||
// Continue.
|
||||
}
|
||||
}
|
||||
}
|
||||
None => {
|
||||
// Continue.
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Look for imports.
|
||||
for search_module.import_resolutions.each_value
|
||||
|&import_resolution| {
|
||||
|
||||
match import_resolution.target_for_namespace(TypeNS) {
|
||||
None => {
|
||||
// Continue.
|
||||
}
|
||||
Some(target) => {
|
||||
match target.bindings.def_for_namespace(TypeNS) {
|
||||
Some(def) => {
|
||||
match def {
|
||||
def_trait(trait_def_id) => {
|
||||
let added = self.
|
||||
add_trait_info_if_containing_method(
|
||||
&mut found_traits,
|
||||
trait_def_id, name);
|
||||
if added {
|
||||
import_resolution.state.used =
|
||||
true;
|
||||
}
|
||||
}
|
||||
_ => {
|
||||
// Continue.
|
||||
}
|
||||
}
|
||||
}
|
||||
None => {
|
||||
// Continue.
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Move to the next parent.
|
||||
match search_module.parent_link {
|
||||
NoParentLink => {
|
||||
// Done.
|
||||
break;
|
||||
}
|
||||
ModuleParentLink(parent_module, _) |
|
||||
BlockParentLink(parent_module, _) => {
|
||||
search_module = parent_module;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return found_traits;
|
||||
}
|
||||
|
||||
fn add_trait_info_if_containing_method(&self,
|
||||
found_traits: &mut ~[def_id],
|
||||
trait_def_id: def_id,
|
||||
name: ident)
|
||||
-> bool {
|
||||
debug!("(adding trait info if containing method) trying trait %d:%d \
|
||||
for method '%s'",
|
||||
trait_def_id.crate,
|
||||
trait_def_id.node,
|
||||
*self.session.str_of(name));
|
||||
|
||||
match self.trait_info.find(&trait_def_id) {
|
||||
Some(trait_info) if trait_info.contains(&name) => {
|
||||
debug!("(adding trait info if containing method) found trait \
|
||||
%d:%d for method '%s'",
|
||||
trait_def_id.crate,
|
||||
trait_def_id.node,
|
||||
*self.session.str_of(name));
|
||||
found_traits.push(trait_def_id);
|
||||
true
|
||||
}
|
||||
Some(_) | None => {
|
||||
false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn add_fixed_trait_for_expr(@mut self,
|
||||
expr_id: node_id,
|
||||
trait_id: def_id) {
|
||||
self.trait_map.insert(expr_id, @mut ~[trait_id]);
|
||||
}
|
||||
|
||||
fn record_def(@mut self, node_id: node_id, def: def) {
|
||||
debug!("(recording def) recording %? for %?", def, node_id);
|
||||
self.def_map.insert(node_id, def);
|
||||
}
|
||||
|
||||
fn enforce_default_binding_mode(@mut self,
|
||||
pat: @pat,
|
||||
pat_binding_mode: binding_mode,
|
||||
descr: &str) {
|
||||
match pat_binding_mode {
|
||||
bind_infer => {}
|
||||
bind_by_copy => {
|
||||
self.session.span_err(
|
||||
pat.span,
|
||||
fmt!("cannot use `copy` binding mode with %s",
|
||||
descr));
|
||||
}
|
||||
bind_by_ref(*) => {
|
||||
self.session.span_err(
|
||||
pat.span,
|
||||
fmt!("cannot use `ref` binding mode with %s",
|
||||
descr));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// main function checking
|
||||
//
|
||||
// be sure that there is only one main function
|
||||
//
|
||||
fn check_duplicate_main(@mut self) {
|
||||
let this = &mut *self;
|
||||
if this.attr_main_fn.is_none() && this.start_fn.is_none() {
|
||||
if this.main_fns.len() >= 1u {
|
||||
let mut i = 1u;
|
||||
while i < this.main_fns.len() {
|
||||
let (_, dup_main_span) = this.main_fns[i].unwrap();
|
||||
this.session.span_err(
|
||||
dup_main_span,
|
||||
~"multiple 'main' functions");
|
||||
i += 1;
|
||||
}
|
||||
*this.session.entry_fn = this.main_fns[0];
|
||||
*this.session.entry_type = Some(session::EntryMain);
|
||||
}
|
||||
} else if !this.start_fn.is_none() {
|
||||
*this.session.entry_fn = this.start_fn;
|
||||
*this.session.entry_type = Some(session::EntryStart);
|
||||
} else {
|
||||
*this.session.entry_fn = this.attr_main_fn;
|
||||
*this.session.entry_type = Some(session::EntryMain);
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Unused import checking
|
||||
//
|
||||
// Although this is a lint pass, it lives in here because it depends on
|
||||
// resolve data structures.
|
||||
//
|
||||
|
||||
fn unused_import_lint_level(@mut self, _: @mut Module) -> level { warn }
|
||||
|
||||
fn check_for_unused_imports_if_necessary(@mut self) {
|
||||
if self.unused_import_lint_level(self.current_module) == allow {
|
||||
return;
|
||||
}
|
||||
|
||||
let root_module = self.graph_root.get_module();
|
||||
self.check_for_unused_imports_in_module_subtree(root_module);
|
||||
}
|
||||
|
||||
fn check_for_unused_imports_in_module_subtree(@mut self,
|
||||
module_: @mut Module) {
|
||||
// If this isn't a local crate, then bail out. We don't need to check
|
||||
// for unused imports in external crates.
|
||||
|
||||
match module_.def_id {
|
||||
Some(def_id) if def_id.crate == local_crate => {
|
||||
// OK. Continue.
|
||||
}
|
||||
None => {
|
||||
// Check for unused imports in the root module.
|
||||
}
|
||||
Some(_) => {
|
||||
// Bail out.
|
||||
debug!("(checking for unused imports in module subtree) not \
|
||||
checking for unused imports for `%s`",
|
||||
self.module_to_str(module_));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
self.check_for_unused_imports_in_module(module_);
|
||||
|
||||
for module_.children.each_value |&child_name_bindings| {
|
||||
match (*child_name_bindings).get_module_if_available() {
|
||||
None => {
|
||||
// Nothing to do.
|
||||
}
|
||||
Some(child_module) => {
|
||||
self.check_for_unused_imports_in_module_subtree
|
||||
(child_module);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for module_.anonymous_children.each_value |&child_module| {
|
||||
self.check_for_unused_imports_in_module_subtree(child_module);
|
||||
}
|
||||
}
|
||||
|
||||
fn check_for_unused_imports_in_module(@mut self, module_: @mut Module) {
|
||||
for module_.import_resolutions.each_value |&import_resolution| {
|
||||
// Ignore dummy spans for things like automatically injected
|
||||
// imports for the prelude, and also don't warn about the same
|
||||
// import statement being unused more than once. Furthermore, if
|
||||
// the import is public, then we can't be sure whether it's unused
|
||||
// or not so don't warn about it.
|
||||
if !import_resolution.state.used &&
|
||||
!import_resolution.state.warned &&
|
||||
import_resolution.span != dummy_sp() &&
|
||||
import_resolution.privacy != Public {
|
||||
// I swear I work in not(stage0)!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Diagnostics
|
||||
//
|
||||
// Diagnostics are not particularly efficient, because they're rarely
|
||||
// hit.
|
||||
//
|
||||
|
||||
/// A somewhat inefficient routine to obtain the name of a module.
|
||||
fn module_to_str(@mut self, module_: @mut Module) -> ~str {
|
||||
let mut idents = ~[];
|
||||
let mut current_module = module_;
|
||||
loop {
|
||||
match current_module.parent_link {
|
||||
NoParentLink => {
|
||||
break;
|
||||
}
|
||||
ModuleParentLink(module_, name) => {
|
||||
idents.push(name);
|
||||
current_module = module_;
|
||||
}
|
||||
BlockParentLink(module_, _) => {
|
||||
idents.push(special_idents::opaque);
|
||||
current_module = module_;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if idents.len() == 0 {
|
||||
return ~"???";
|
||||
}
|
||||
return self.idents_to_str(vec::reversed(idents));
|
||||
}
|
||||
|
||||
fn dump_module(@mut self, module_: @mut Module) {
|
||||
debug!("Dump of module `%s`:", self.module_to_str(module_));
|
||||
|
||||
debug!("Children:");
|
||||
for module_.children.each_key |&name| {
|
||||
debug!("* %s", *self.session.str_of(name));
|
||||
}
|
||||
|
||||
debug!("Import resolutions:");
|
||||
for module_.import_resolutions.each |name, import_resolution| {
|
||||
let mut value_repr;
|
||||
match import_resolution.target_for_namespace(ValueNS) {
|
||||
None => { value_repr = ~""; }
|
||||
Some(_) => {
|
||||
value_repr = ~" value:?";
|
||||
// FIXME #4954
|
||||
}
|
||||
}
|
||||
|
||||
let mut type_repr;
|
||||
match import_resolution.target_for_namespace(TypeNS) {
|
||||
None => { type_repr = ~""; }
|
||||
Some(_) => {
|
||||
type_repr = ~" type:?";
|
||||
// FIXME #4954
|
||||
}
|
||||
}
|
||||
|
||||
debug!("* %s:%s%s", *self.session.str_of(*name),
|
||||
value_repr, type_repr);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub struct CrateMap {
|
||||
def_map: DefMap,
|
||||
exp_map2: ExportMap2,
|
||||
trait_map: TraitMap
|
||||
}
|
||||
|
||||
/// Entry point to crate resolution.
|
||||
pub fn resolve_crate(session: Session,
|
||||
lang_items: LanguageItems,
|
||||
crate: @crate)
|
||||
-> CrateMap {
|
||||
let resolver = @mut Resolver(session, lang_items, crate);
|
||||
resolver.resolve();
|
||||
let @Resolver{def_map, export_map2, trait_map, _} = resolver;
|
||||
CrateMap {
|
||||
def_map: def_map,
|
||||
exp_map2: export_map2,
|
||||
trait_map: trait_map
|
||||
}
|
||||
}
|
||||
@@ -1367,21 +1367,6 @@ pub struct mono_id_ {
|
||||
|
||||
pub type mono_id = @mono_id_;
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for mono_param_id {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
match *self {
|
||||
mono_precise(t, ref mids) =>
|
||||
to_bytes::iter_bytes_3(&0u8, &ty::type_id(t), mids, lsb0, f),
|
||||
|
||||
mono_any => 1u8.iter_bytes(lsb0, f),
|
||||
|
||||
mono_repr(ref a, ref b, ref c, ref d) =>
|
||||
to_bytes::iter_bytes_5(&2u8, a, b, c, d, lsb0, f)
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for mono_param_id {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
match *self {
|
||||
@@ -1396,26 +1381,12 @@ fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for MonoDataClass {
|
||||
fn iter_bytes(&self, lsb0: bool, f:to_bytes::Cb) {
|
||||
(*self as u8).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for MonoDataClass {
|
||||
fn iter_bytes(&self, lsb0: bool, f:to_bytes::Cb) -> bool {
|
||||
(*self as u8).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for mono_id_ {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
to_bytes::iter_bytes_2(&self.def, &self.params, lsb0, f);
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for mono_id_ {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
to_bytes::iter_bytes_2(&self.def, &self.params, lsb0, f)
|
||||
|
||||
@@ -154,13 +154,6 @@ fn is_by_value(&self) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for DatumMode {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
(*self as uint).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for DatumMode {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
(*self as uint).iter_bytes(lsb0, f)
|
||||
|
||||
@@ -26,8 +26,6 @@
|
||||
use util::common::{indenter};
|
||||
use util::enum_set::{EnumSet, CLike};
|
||||
|
||||
#[cfg(stage0)]
|
||||
use core; // NOTE: this can be removed after the next snapshot
|
||||
use core::ptr::to_unsafe_ptr;
|
||||
use core::to_bytes;
|
||||
use core::hashmap::{HashMap, HashSet};
|
||||
@@ -136,13 +134,6 @@ pub struct creader_cache_key {
|
||||
|
||||
type creader_cache = @mut HashMap<creader_cache_key, t>;
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for creader_cache_key {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
to_bytes::iter_bytes_3(&self.cnum, &self.pos, &self.len, lsb0, f);
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for creader_cache_key {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
to_bytes::iter_bytes_3(&self.cnum, &self.pos, &self.len, lsb0, f)
|
||||
@@ -167,15 +158,6 @@ fn ne(&self, other: &intern_key) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for intern_key {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
unsafe {
|
||||
(*self.sty).iter_bytes(lsb0, f);
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for intern_key {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
unsafe {
|
||||
@@ -408,27 +390,12 @@ pub struct FnSig {
|
||||
output: t
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for BareFnTy {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
to_bytes::iter_bytes_3(&self.purity, &self.abis, &self.sig, lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for BareFnTy {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
to_bytes::iter_bytes_3(&self.purity, &self.abis, &self.sig, lsb0, f)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for ClosureTy {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
to_bytes::iter_bytes_5(&self.purity, &self.sigil, &self.onceness,
|
||||
&self.region, &self.sig, lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for ClosureTy {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
to_bytes::iter_bytes_5(&self.purity, &self.sigil, &self.onceness,
|
||||
@@ -747,17 +714,6 @@ pub enum InferTy {
|
||||
FloatVar(FloatVid)
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for InferTy {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
match *self {
|
||||
TyVar(ref tv) => to_bytes::iter_bytes_2(&0u8, tv, lsb0, f),
|
||||
IntVar(ref iv) => to_bytes::iter_bytes_2(&1u8, iv, lsb0, f),
|
||||
FloatVar(ref fv) => to_bytes::iter_bytes_2(&2u8, fv, lsb0, f),
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for InferTy {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
match *self {
|
||||
@@ -774,16 +730,6 @@ pub enum InferRegion {
|
||||
ReSkolemized(uint, bound_region)
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for InferRegion {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
match *self {
|
||||
ReVar(ref rv) => to_bytes::iter_bytes_2(&0u8, rv, lsb0, f),
|
||||
ReSkolemized(ref v, _) => to_bytes::iter_bytes_2(&1u8, v, lsb0, f)
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for InferRegion {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
match *self {
|
||||
@@ -872,52 +818,24 @@ fn to_str(&self) -> ~str {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for TyVid {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
self.to_uint().iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for TyVid {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
self.to_uint().iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for IntVid {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
self.to_uint().iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for IntVid {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
self.to_uint().iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for FloatVid {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
self.to_uint().iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for FloatVid {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
self.to_uint().iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for RegionVid {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
self.to_uint().iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for RegionVid {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
self.to_uint().iter_bytes(lsb0, f)
|
||||
@@ -2718,22 +2636,6 @@ fn equals(&self, other: &bound_region) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for vstore {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
match *self {
|
||||
vstore_fixed(ref u) =>
|
||||
to_bytes::iter_bytes_2(&0u8, u, lsb0, f),
|
||||
|
||||
vstore_uniq => 1u8.iter_bytes(lsb0, f),
|
||||
vstore_box => 2u8.iter_bytes(lsb0, f),
|
||||
|
||||
vstore_slice(ref r) =>
|
||||
to_bytes::iter_bytes_2(&3u8, r, lsb0, f),
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for vstore {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
match *self {
|
||||
@@ -2749,15 +2651,6 @@ fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for substs {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
to_bytes::iter_bytes_3(&self.self_r,
|
||||
&self.self_ty,
|
||||
&self.tps, lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for substs {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
to_bytes::iter_bytes_3(&self.self_r,
|
||||
@@ -2766,14 +2659,6 @@ fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for mt {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
to_bytes::iter_bytes_2(&self.ty,
|
||||
&self.mutbl, lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for mt {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
to_bytes::iter_bytes_2(&self.ty,
|
||||
@@ -2781,14 +2666,6 @@ fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for field {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
to_bytes::iter_bytes_2(&self.ident,
|
||||
&self.mt, lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for field {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
to_bytes::iter_bytes_2(&self.ident,
|
||||
@@ -2796,15 +2673,6 @@ fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for FnSig {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
to_bytes::iter_bytes_2(&self.inputs,
|
||||
&self.output,
|
||||
lsb0, f);
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for FnSig {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
to_bytes::iter_bytes_2(&self.inputs,
|
||||
@@ -2813,82 +2681,6 @@ fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for sty {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
match *self {
|
||||
ty_nil => 0u8.iter_bytes(lsb0, f),
|
||||
ty_bool => 1u8.iter_bytes(lsb0, f),
|
||||
|
||||
ty_int(ref t) =>
|
||||
to_bytes::iter_bytes_2(&2u8, t, lsb0, f),
|
||||
|
||||
ty_uint(ref t) =>
|
||||
to_bytes::iter_bytes_2(&3u8, t, lsb0, f),
|
||||
|
||||
ty_float(ref t) =>
|
||||
to_bytes::iter_bytes_2(&4u8, t, lsb0, f),
|
||||
|
||||
ty_estr(ref v) =>
|
||||
to_bytes::iter_bytes_2(&5u8, v, lsb0, f),
|
||||
|
||||
ty_enum(ref did, ref substs) =>
|
||||
to_bytes::iter_bytes_3(&6u8, did, substs, lsb0, f),
|
||||
|
||||
ty_box(ref mt) =>
|
||||
to_bytes::iter_bytes_2(&7u8, mt, lsb0, f),
|
||||
|
||||
ty_evec(ref mt, ref v) =>
|
||||
to_bytes::iter_bytes_3(&8u8, mt, v, lsb0, f),
|
||||
|
||||
ty_unboxed_vec(ref mt) =>
|
||||
to_bytes::iter_bytes_2(&9u8, mt, lsb0, f),
|
||||
|
||||
ty_tup(ref ts) =>
|
||||
to_bytes::iter_bytes_2(&10u8, ts, lsb0, f),
|
||||
|
||||
ty_bare_fn(ref ft) =>
|
||||
to_bytes::iter_bytes_2(&12u8, ft, lsb0, f),
|
||||
|
||||
ty_self(ref did) => to_bytes::iter_bytes_2(&13u8, did, lsb0, f),
|
||||
|
||||
ty_infer(ref v) =>
|
||||
to_bytes::iter_bytes_2(&14u8, v, lsb0, f),
|
||||
|
||||
ty_param(ref p) =>
|
||||
to_bytes::iter_bytes_2(&15u8, p, lsb0, f),
|
||||
|
||||
ty_type => 16u8.iter_bytes(lsb0, f),
|
||||
ty_bot => 17u8.iter_bytes(lsb0, f),
|
||||
|
||||
ty_ptr(ref mt) =>
|
||||
to_bytes::iter_bytes_2(&18u8, mt, lsb0, f),
|
||||
|
||||
ty_uniq(ref mt) =>
|
||||
to_bytes::iter_bytes_2(&19u8, mt, lsb0, f),
|
||||
|
||||
ty_trait(ref did, ref substs, ref v, ref mutbl) =>
|
||||
to_bytes::iter_bytes_5(&20u8, did, substs, v, mutbl, lsb0, f),
|
||||
|
||||
ty_opaque_closure_ptr(ref ck) =>
|
||||
to_bytes::iter_bytes_2(&21u8, ck, lsb0, f),
|
||||
|
||||
ty_opaque_box => 22u8.iter_bytes(lsb0, f),
|
||||
|
||||
ty_struct(ref did, ref substs) =>
|
||||
to_bytes::iter_bytes_3(&23u8, did, substs, lsb0, f),
|
||||
|
||||
ty_rptr(ref r, ref mt) =>
|
||||
to_bytes::iter_bytes_3(&24u8, r, mt, lsb0, f),
|
||||
|
||||
ty_err => 25u8.iter_bytes(lsb0, f),
|
||||
|
||||
ty_closure(ref ct) =>
|
||||
to_bytes::iter_bytes_2(&26u8, ct, lsb0, f),
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for sty {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
match *self {
|
||||
@@ -4499,52 +4291,6 @@ pub fn determine_inherited_purity(parent: (ast::purity, ast::node_id),
|
||||
// Here, the supertraits are the transitive closure of the supertrait
|
||||
// relation on the supertraits from each bounded trait's constraint
|
||||
// list.
|
||||
#[cfg(stage0)]
|
||||
pub fn each_bound_trait_and_supertraits(tcx: ctxt,
|
||||
bounds: &ParamBounds,
|
||||
f: &fn(@TraitRef) -> bool) {
|
||||
for bounds.trait_bounds.each |&bound_trait_ref| {
|
||||
let mut supertrait_set = HashMap::new();
|
||||
let mut trait_refs = ~[];
|
||||
let mut i = 0;
|
||||
|
||||
// Seed the worklist with the trait from the bound
|
||||
supertrait_set.insert(bound_trait_ref.def_id, ());
|
||||
trait_refs.push(bound_trait_ref);
|
||||
|
||||
// Add the given trait ty to the hash map
|
||||
while i < trait_refs.len() {
|
||||
debug!("each_bound_trait_and_supertraits(i=%?, trait_ref=%s)",
|
||||
i, trait_refs[i].repr(tcx));
|
||||
|
||||
if !f(trait_refs[i]) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Add supertraits to supertrait_set
|
||||
let supertrait_refs = trait_ref_supertraits(tcx, trait_refs[i]);
|
||||
for supertrait_refs.each |&supertrait_ref| {
|
||||
debug!("each_bound_trait_and_supertraits(supertrait_ref=%s)",
|
||||
supertrait_ref.repr(tcx));
|
||||
|
||||
let d_id = supertrait_ref.def_id;
|
||||
if !supertrait_set.contains_key(&d_id) {
|
||||
// FIXME(#5527) Could have same trait multiple times
|
||||
supertrait_set.insert(d_id, ());
|
||||
trait_refs.push(supertrait_ref);
|
||||
}
|
||||
}
|
||||
|
||||
i += 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
// Iterate over a type parameter's bounded traits and any supertraits
|
||||
// of those traits, ignoring kinds.
|
||||
// Here, the supertraits are the transitive closure of the supertrait
|
||||
// relation on the supertraits from each bounded trait's constraint
|
||||
// list.
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_bound_trait_and_supertraits(tcx: ctxt,
|
||||
bounds: &ParamBounds,
|
||||
f: &fn(@TraitRef) -> bool) -> bool {
|
||||
|
||||
@@ -828,15 +828,6 @@ fn node_ty_substs(&self, id: ast::node_id) -> ty::substs {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn opt_node_ty_substs(&self, id: ast::node_id,
|
||||
f: &fn(&ty::substs) -> bool) {
|
||||
match self.inh.node_type_substs.find(&id) {
|
||||
Some(s) => { f(s); }
|
||||
None => ()
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn opt_node_ty_substs(&self, id: ast::node_id,
|
||||
f: &fn(&ty::substs) -> bool) -> bool {
|
||||
match self.inh.node_type_substs.find(&id) {
|
||||
|
||||
@@ -118,26 +118,6 @@ fn resolve_node_type(@mut self, id: ast::node_id) -> ty::t {
|
||||
}
|
||||
|
||||
/// Try to resolve the type for the given node.
|
||||
#[config(stage0)]
|
||||
fn resolve_expr_type_adjusted(@mut self, expr: @ast::expr) -> ty::t {
|
||||
let ty_unadjusted = self.resolve_node_type(expr.id);
|
||||
if ty::type_is_error(ty_unadjusted) || ty::type_is_bot(ty_unadjusted) {
|
||||
ty_unadjusted
|
||||
} else {
|
||||
let tcx = self.fcx.tcx();
|
||||
let adjustments = self.fcx.inh.adjustments;
|
||||
match adjustments.find_copy(&expr.id) {
|
||||
None => ty_unadjusted,
|
||||
Some(adjustment) => {
|
||||
ty::adjust_ty(tcx, expr.span, ty_unadjusted,
|
||||
Some(adjustment))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Try to resolve the type for the given node.
|
||||
#[config(not(stage0))]
|
||||
fn resolve_expr_type_adjusted(@mut self, expr: @ast::expr) -> ty::t {
|
||||
let ty_unadjusted = self.resolve_node_type(expr.id);
|
||||
if ty::type_is_error(ty_unadjusted) || ty::type_is_bot(ty_unadjusted) {
|
||||
|
||||
@@ -524,27 +524,6 @@ fn iter_impls_of_trait(&self, trait_def_id: def_id, f: &fn(@Impl)) {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn each_provided_trait_method(&self,
|
||||
trait_did: ast::def_id,
|
||||
f: &fn(@ty::Method) -> bool) {
|
||||
// Make a list of all the names of the provided methods.
|
||||
// XXX: This is horrible.
|
||||
let mut provided_method_idents = HashSet::new();
|
||||
let tcx = self.crate_context.tcx;
|
||||
for ty::provided_trait_methods(tcx, trait_did).each |ident| {
|
||||
provided_method_idents.insert(*ident);
|
||||
}
|
||||
|
||||
for ty::trait_methods(tcx, trait_did).each |&method| {
|
||||
if provided_method_idents.contains(&method.ident) {
|
||||
if !f(method) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each_provided_trait_method(&self,
|
||||
trait_did: ast::def_id,
|
||||
f: &fn(x: @ty::Method) -> bool) -> bool {
|
||||
|
||||
@@ -544,8 +544,6 @@ fn<a,b>(&a, &b, &a) fn<x,y>(&x, &y, &y) fn<a>(&a, &a, &a) fn<a,b,c>(&a,&b,&c)
|
||||
use util::common::indenter;
|
||||
use util::ppaux::note_and_explain_region;
|
||||
|
||||
#[cfg(stage0)]
|
||||
use core; // NOTE: this can be removed after next snapshot
|
||||
use core::cell::{Cell, empty_cell};
|
||||
use core::hashmap::{HashMap, HashSet};
|
||||
use core::to_bytes;
|
||||
@@ -561,22 +559,6 @@ enum Constraint {
|
||||
ConstrainVarSubReg(RegionVid, Region)
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for Constraint {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
match *self {
|
||||
ConstrainVarSubVar(ref v0, ref v1) =>
|
||||
to_bytes::iter_bytes_3(&0u8, v0, v1, lsb0, f),
|
||||
|
||||
ConstrainRegSubVar(ref ra, ref va) =>
|
||||
to_bytes::iter_bytes_3(&1u8, ra, va, lsb0, f),
|
||||
|
||||
ConstrainVarSubReg(ref va, ref ra) =>
|
||||
to_bytes::iter_bytes_3(&2u8, va, ra, lsb0, f)
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for Constraint {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
match *self {
|
||||
@@ -1773,23 +1755,6 @@ fn process_edges(this: &mut RegionVarBindings,
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn each_edge(&mut self,
|
||||
graph: &Graph,
|
||||
node_idx: RegionVid,
|
||||
dir: Direction,
|
||||
op: &fn(edge: &GraphEdge) -> bool) {
|
||||
let mut edge_idx =
|
||||
graph.nodes[node_idx.to_uint()].head_edge[dir as uint];
|
||||
while edge_idx != uint::max_value {
|
||||
let edge_ptr = &graph.edges[edge_idx];
|
||||
if !op(edge_ptr) {
|
||||
return;
|
||||
}
|
||||
edge_idx = edge_ptr.next_edge[dir as uint];
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each_edge(&mut self,
|
||||
graph: &Graph,
|
||||
node_idx: RegionVid,
|
||||
|
||||
@@ -75,9 +75,6 @@ pub mod middle {
|
||||
}
|
||||
pub mod ty;
|
||||
pub mod subst;
|
||||
#[cfg(stage0)] #[path = "resolve_stage0.rs"]
|
||||
pub mod resolve;
|
||||
#[cfg(not(stage0))]
|
||||
pub mod resolve;
|
||||
#[path = "typeck/mod.rs"]
|
||||
pub mod typeck;
|
||||
|
||||
@@ -8,9 +8,6 @@
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
#[cfg(stage0)]
|
||||
use core;
|
||||
|
||||
#[deriving(Eq, IterBytes)]
|
||||
pub struct EnumSet<E> {
|
||||
// We must maintain the invariant that no bits are set
|
||||
@@ -60,22 +57,6 @@ fn contains_elem(&self, e: E) -> bool {
|
||||
(self.bits & bit(e)) != 0
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn each(&self, f: &fn(E) -> bool) {
|
||||
let mut bits = self.bits;
|
||||
let mut index = 0;
|
||||
while bits != 0 {
|
||||
if (bits & 1) != 0 {
|
||||
let e = CLike::from_uint(index);
|
||||
if !f(e) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
index += 1;
|
||||
bits >>= 1;
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each(&self, f: &fn(E) -> bool) -> bool {
|
||||
let mut bits = self.bits;
|
||||
let mut index = 0;
|
||||
|
||||
@@ -143,17 +143,6 @@ fn process(&mut self, b: &BigBitv, nbits: uint,
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
fn each_storage(&mut self, op: &fn(v: &mut uint) -> bool) {
|
||||
for uint::range(0, self.storage.len()) |i| {
|
||||
let mut w = self.storage[i];
|
||||
let b = op(&mut w);
|
||||
self.storage[i] = w;
|
||||
if !b { break; }
|
||||
}
|
||||
}
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
fn each_storage(&mut self, op: &fn(v: &mut uint) -> bool) -> bool {
|
||||
uint::range(0, self.storage.len(), |i| op(&mut self.storage[i]))
|
||||
}
|
||||
@@ -199,19 +188,6 @@ fn set(&mut self, i: uint, x: bool) {
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
fn equals(&self, b: &BigBitv, nbits: uint) -> bool {
|
||||
let len = b.storage.len();
|
||||
for uint::iterate(0, len) |i| {
|
||||
let mask = big_mask(nbits, i);
|
||||
if mask & self.storage[i] != mask & b.storage[i] {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
fn equals(&self, b: &BigBitv, nbits: uint) -> bool {
|
||||
let len = b.storage.len();
|
||||
for uint::iterate(0, len) |i| {
|
||||
@@ -407,16 +383,6 @@ fn is_true(&self) -> bool {
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
fn each(&self, f: &fn(bool) -> bool) {
|
||||
let mut i = 0;
|
||||
while i < self.nbits {
|
||||
if !f(self.get(i)) { break; }
|
||||
i += 1;
|
||||
}
|
||||
}
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
fn each(&self, f: &fn(bool) -> bool) -> bool {
|
||||
let mut i = 0;
|
||||
while i < self.nbits {
|
||||
@@ -519,15 +485,6 @@ fn eq_vec(&self, v: ~[uint]) -> bool {
|
||||
true
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn ones(&self, f: &fn(uint) -> bool) {
|
||||
for uint::range(0, self.nbits) |i| {
|
||||
if self.get(i) {
|
||||
if !f(i) { break }
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn ones(&self, f: &fn(uint) -> bool) -> bool {
|
||||
uint::range(0, self.nbits, |i| !self.get(i) || f(i))
|
||||
}
|
||||
@@ -697,7 +654,6 @@ fn symmetric_difference_with(&mut self, other: &BitvSet) {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
impl BaseIter<uint> for BitvSet {
|
||||
fn size_hint(&self) -> Option<uint> { Some(self.len()) }
|
||||
|
||||
@@ -711,7 +667,6 @@ fn each(&self, blk: &fn(v: &uint) -> bool) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
impl cmp::Eq for BitvSet {
|
||||
fn eq(&self, other: &BitvSet) -> bool {
|
||||
if self.size != other.size {
|
||||
@@ -745,7 +700,6 @@ fn clear(&mut self) {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
impl Set<uint> for BitvSet {
|
||||
fn contains(&self, value: &uint) -> bool {
|
||||
*value < self.bitv.storage.len() * uint::bits && self.bitv.get(*value)
|
||||
@@ -849,7 +803,6 @@ fn union(&self, other: &BitvSet, f: &fn(&uint) -> bool) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
priv impl BitvSet {
|
||||
/// Visits each of the words that the two bit vectors (self and other)
|
||||
/// both have in common. The three yielded arguments are (bit location,
|
||||
|
||||
@@ -65,23 +65,11 @@ fn get<'a>(&'a self, i: int) -> &'a T {
|
||||
}
|
||||
|
||||
/// Iterate over the elements in the deque
|
||||
#[cfg(stage0)]
|
||||
fn each(&self, f: &fn(&T) -> bool) {
|
||||
self.eachi(|_i, e| f(e))
|
||||
}
|
||||
/// Iterate over the elements in the deque
|
||||
#[cfg(not(stage0))]
|
||||
fn each(&self, f: &fn(&T) -> bool) -> bool {
|
||||
self.eachi(|_i, e| f(e))
|
||||
}
|
||||
|
||||
/// Iterate over the elements in the deque by index
|
||||
#[cfg(stage0)]
|
||||
fn eachi(&self, f: &fn(uint, &T) -> bool) {
|
||||
uint::range(0, self.nelts, |i| f(i, self.get(i as int)))
|
||||
}
|
||||
/// Iterate over the elements in the deque by index
|
||||
#[cfg(not(stage0))]
|
||||
fn eachi(&self, f: &fn(uint, &T) -> bool) -> bool {
|
||||
uint::range(0, self.nelts, |i| f(i, self.get(i as int)))
|
||||
}
|
||||
|
||||
@@ -391,17 +391,6 @@ fn clear(@mut self) {
|
||||
}
|
||||
|
||||
/// Iterate over nodes.
|
||||
#[cfg(stage0)]
|
||||
fn each_node(@mut self, f: &fn(@mut DListNode<T>) -> bool) {
|
||||
let mut link = self.peek_n();
|
||||
while link.is_some() {
|
||||
let nobe = link.get();
|
||||
if !f(nobe) { break; }
|
||||
link = nobe.next_link();
|
||||
}
|
||||
}
|
||||
/// Iterate over nodes.
|
||||
#[cfg(not(stage0))]
|
||||
fn each_node(@mut self, f: &fn(@mut DListNode<T>) -> bool) -> bool {
|
||||
let mut link = self.peek_n();
|
||||
while link.is_some() {
|
||||
@@ -508,42 +497,6 @@ impl<T> BaseIter<T> for @mut DList<T> {
|
||||
* allow for e.g. breadth-first search with in-place enqueues), but
|
||||
* removing the current node is forbidden.
|
||||
*/
|
||||
#[cfg(stage0)]
|
||||
fn each(&self, f: &fn(v: &T) -> bool) {
|
||||
let mut link = self.peek_n();
|
||||
while link.is_some() {
|
||||
let nobe = link.get();
|
||||
assert!(nobe.linked);
|
||||
|
||||
{
|
||||
let frozen_nobe = &*nobe;
|
||||
if !f(&frozen_nobe.data) { break; }
|
||||
}
|
||||
|
||||
// Check (weakly) that the user didn't do a remove.
|
||||
if self.size == 0 {
|
||||
fail!("The dlist became empty during iteration??")
|
||||
}
|
||||
if !nobe.linked ||
|
||||
(!((nobe.prev.is_some()
|
||||
|| managed::mut_ptr_eq(self.hd.expect(~"headless dlist?"),
|
||||
nobe))
|
||||
&& (nobe.next.is_some()
|
||||
|| managed::mut_ptr_eq(self.tl.expect(~"tailless dlist?"),
|
||||
nobe)))) {
|
||||
fail!("Removing a dlist node during iteration is forbidden!")
|
||||
}
|
||||
link = nobe.next_link();
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Iterates through the current contents.
|
||||
*
|
||||
* Attempts to access this dlist during iteration are allowed (to
|
||||
* allow for e.g. breadth-first search with in-place enqueues), but
|
||||
* removing the current node is forbidden.
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
fn each(&self, f: &fn(v: &T) -> bool) -> bool {
|
||||
let mut link = self.peek_n();
|
||||
while link.is_some() {
|
||||
|
||||
@@ -200,20 +200,6 @@ pub fn get_doc(d: Doc, tg: uint) -> Doc {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn docs(d: Doc, it: &fn(uint, Doc) -> bool) {
|
||||
let mut pos = d.start;
|
||||
while pos < d.end {
|
||||
let elt_tag = vuint_at(*d.data, pos);
|
||||
let elt_size = vuint_at(*d.data, elt_tag.next);
|
||||
pos = elt_size.next + elt_size.val;
|
||||
let doc = Doc { data: d.data, start: elt_size.next, end: pos };
|
||||
if !it(elt_tag.val, doc) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn docs(d: Doc, it: &fn(uint, Doc) -> bool) -> bool {
|
||||
let mut pos = d.start;
|
||||
while pos < d.end {
|
||||
@@ -228,23 +214,6 @@ pub fn docs(d: Doc, it: &fn(uint, Doc) -> bool) -> bool {
|
||||
return true;
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn tagged_docs(d: Doc, tg: uint, it: &fn(Doc) -> bool) {
|
||||
let mut pos = d.start;
|
||||
while pos < d.end {
|
||||
let elt_tag = vuint_at(*d.data, pos);
|
||||
let elt_size = vuint_at(*d.data, elt_tag.next);
|
||||
pos = elt_size.next + elt_size.val;
|
||||
if elt_tag.val == tg {
|
||||
let doc = Doc { data: d.data, start: elt_size.next,
|
||||
end: pos };
|
||||
if !it(doc) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub fn tagged_docs(d: Doc, tg: uint, it: &fn(Doc) -> bool) -> bool {
|
||||
let mut pos = d.start;
|
||||
while pos < d.end {
|
||||
@@ -655,16 +624,6 @@ fn write_vuint(w: @io::Writer, n: uint) {
|
||||
fail!("vint to write too big: %?", n);
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub fn Encoder(w: @io::Writer) -> Encoder {
|
||||
let size_positions: ~[uint] = ~[];
|
||||
Encoder {
|
||||
writer: w,
|
||||
mut size_positions: size_positions
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
pub fn Encoder(w: @io::Writer) -> Encoder {
|
||||
let size_positions: ~[uint] = ~[];
|
||||
Encoder {
|
||||
|
||||
@@ -254,17 +254,6 @@ pub fn next_file(&self) -> bool {
|
||||
(line numbers and file names, see documentation for
|
||||
`FileInputState`). Otherwise identical to `lines_each`.
|
||||
*/
|
||||
#[cfg(stage0)]
|
||||
pub fn each_line_state(&self,
|
||||
f: &fn(&str, FileInputState) -> bool) {
|
||||
self.each_line(|line| f(line, copy self.fi.state));
|
||||
}
|
||||
/**
|
||||
Apply `f` to each line successively, along with some state
|
||||
(line numbers and file names, see documentation for
|
||||
`FileInputState`). Otherwise identical to `lines_each`.
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each_line_state(&self,
|
||||
f: &fn(&str, FileInputState) -> bool) -> bool {
|
||||
self.each_line(|line| f(line, copy self.fi.state))
|
||||
@@ -377,17 +366,6 @@ pub fn pathify(vec: &[~str], stdin_hyphen : bool) -> ~[Option<Path>] {
|
||||
|
||||
Fails when attempting to read from a file that can't be opened.
|
||||
*/
|
||||
#[cfg(stage0)]
|
||||
pub fn input(f: &fn(&str) -> bool) {
|
||||
FileInput::from_args().each_line(f);
|
||||
}
|
||||
/**
|
||||
Iterate directly over the command line arguments (no arguments implies
|
||||
reading from `stdin`).
|
||||
|
||||
Fails when attempting to read from a file that can't be opened.
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
pub fn input(f: &fn(&str) -> bool) -> bool {
|
||||
let i = FileInput::from_args();
|
||||
i.each_line(f)
|
||||
@@ -400,18 +378,6 @@ pub fn input(f: &fn(&str) -> bool) -> bool {
|
||||
|
||||
Fails when attempting to read from a file that can't be opened.
|
||||
*/
|
||||
#[cfg(stage0)]
|
||||
pub fn input_state(f: &fn(&str, FileInputState) -> bool) {
|
||||
FileInput::from_args().each_line_state(f);
|
||||
}
|
||||
/**
|
||||
Iterate directly over the command line arguments (no arguments
|
||||
implies reading from `stdin`) with the current state of the iteration
|
||||
provided at each call.
|
||||
|
||||
Fails when attempting to read from a file that can't be opened.
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
pub fn input_state(f: &fn(&str, FileInputState) -> bool) -> bool {
|
||||
let i = FileInput::from_args();
|
||||
i.each_line_state(f)
|
||||
@@ -422,16 +388,6 @@ pub fn input_state(f: &fn(&str, FileInputState) -> bool) -> bool {
|
||||
|
||||
Fails when attempting to read from a file that can't be opened.
|
||||
*/
|
||||
#[cfg(stage0)]
|
||||
pub fn input_vec(files: ~[Option<Path>], f: &fn(&str) -> bool) {
|
||||
FileInput::from_vec(files).each_line(f);
|
||||
}
|
||||
/**
|
||||
Iterate over a vector of files (an empty vector implies just `stdin`).
|
||||
|
||||
Fails when attempting to read from a file that can't be opened.
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
pub fn input_vec(files: ~[Option<Path>], f: &fn(&str) -> bool) -> bool {
|
||||
let i = FileInput::from_vec(files);
|
||||
i.each_line(f)
|
||||
@@ -443,18 +399,6 @@ pub fn input_vec(files: ~[Option<Path>], f: &fn(&str) -> bool) -> bool {
|
||||
|
||||
Fails when attempting to read from a file that can't be opened.
|
||||
*/
|
||||
#[cfg(stage0)]
|
||||
pub fn input_vec_state(files: ~[Option<Path>],
|
||||
f: &fn(&str, FileInputState) -> bool) {
|
||||
FileInput::from_vec(files).each_line_state(f);
|
||||
}
|
||||
/**
|
||||
Iterate over a vector of files (an empty vector implies just `stdin`)
|
||||
with the current state of the iteration provided at each call.
|
||||
|
||||
Fails when attempting to read from a file that can't be opened.
|
||||
*/
|
||||
#[cfg(not(stage0))]
|
||||
pub fn input_vec_state(files: ~[Option<Path>],
|
||||
f: &fn(&str, FileInputState) -> bool) -> bool {
|
||||
let i = FileInput::from_vec(files);
|
||||
|
||||
@@ -140,21 +140,6 @@ pub fn iter<T>(l: @List<T>, f: &fn(&T)) {
|
||||
}
|
||||
|
||||
/// Iterate over a list
|
||||
#[cfg(stage0)]
|
||||
pub fn each<T>(l: @List<T>, f: &fn(&T) -> bool) {
|
||||
let mut cur = l;
|
||||
loop {
|
||||
cur = match *cur {
|
||||
Cons(ref hd, tl) => {
|
||||
if !f(hd) { return; }
|
||||
tl
|
||||
}
|
||||
Nil => break
|
||||
}
|
||||
}
|
||||
}
|
||||
/// Iterate over a list
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each<T>(l: @List<T>, f: &fn(&T) -> bool) -> bool {
|
||||
let mut cur = l;
|
||||
loop {
|
||||
@@ -170,24 +155,6 @@ pub fn each<T>(l: @List<T>, f: &fn(&T) -> bool) -> bool {
|
||||
|
||||
impl<T> MutList<T> {
|
||||
/// Iterate over a mutable list
|
||||
#[cfg(stage0)]
|
||||
pub fn each(@mut self, f: &fn(&mut T) -> bool) {
|
||||
let mut cur = self;
|
||||
loop {
|
||||
let borrowed = &mut *cur;
|
||||
cur = match *borrowed {
|
||||
MutCons(ref mut hd, tl) => {
|
||||
if !f(hd) {
|
||||
return;
|
||||
}
|
||||
tl
|
||||
}
|
||||
MutNil => break
|
||||
}
|
||||
}
|
||||
}
|
||||
/// Iterate over a mutable list
|
||||
#[cfg(not(stage0))]
|
||||
pub fn each(@mut self, f: &fn(&mut T) -> bool) -> bool {
|
||||
let mut cur = self;
|
||||
loop {
|
||||
|
||||
@@ -703,13 +703,6 @@ pub fn to_str(&self) -> ~str {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl IterBytes for Url {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
self.to_str().iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl IterBytes for Url {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
self.to_str().iter_bytes(lsb0, f)
|
||||
|
||||
@@ -22,12 +22,6 @@ impl<T:Ord> BaseIter<T> for PriorityQueue<T> {
|
||||
/// Visit all values in the underlying vector.
|
||||
///
|
||||
/// The values are **not** visited in order.
|
||||
#[cfg(stage0)]
|
||||
fn each(&self, f: &fn(&T) -> bool) { self.data.each(f) }
|
||||
/// Visit all values in the underlying vector.
|
||||
///
|
||||
/// The values are **not** visited in order.
|
||||
#[cfg(not(stage0))]
|
||||
fn each(&self, f: &fn(&T) -> bool) -> bool { self.data.each(f) }
|
||||
|
||||
fn size_hint(&self) -> Option<uint> { self.data.size_hint() }
|
||||
|
||||
@@ -61,7 +61,6 @@ fn borrow<'r>(&'r self) -> &'r T {
|
||||
}
|
||||
|
||||
#[unsafe_destructor]
|
||||
#[cfg(not(stage0))]
|
||||
impl<T> Drop for Rc<T> {
|
||||
fn finalize(&self) {
|
||||
unsafe {
|
||||
@@ -74,21 +73,6 @@ fn finalize(&self) {
|
||||
}
|
||||
}
|
||||
|
||||
#[unsafe_destructor]
|
||||
#[cfg(stage0)]
|
||||
impl<T> Drop for Rc<T> {
|
||||
fn finalize(&self) {
|
||||
unsafe {
|
||||
(*self.ptr).count -= 1;
|
||||
if (*self.ptr).count == 0 {
|
||||
util::replace_ptr(self.ptr, intrinsics::init());
|
||||
free(self.ptr as *c_void)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
impl<T> Clone for Rc<T> {
|
||||
/// Return a shallow copy of the reference counted pointer.
|
||||
#[inline]
|
||||
@@ -157,7 +141,6 @@ fn test_destructor() {
|
||||
#[abi = "rust-intrinsic"]
|
||||
extern "rust-intrinsic" {
|
||||
fn init<T>() -> T;
|
||||
#[cfg(not(stage0))]
|
||||
fn uninit<T>() -> T;
|
||||
}
|
||||
|
||||
@@ -228,7 +211,6 @@ fn with_mut_borrow<U>(&self, f: &fn(&mut T) -> U) -> U {
|
||||
}
|
||||
|
||||
#[unsafe_destructor]
|
||||
#[cfg(not(stage0))]
|
||||
impl<T> Drop for RcMut<T> {
|
||||
fn finalize(&self) {
|
||||
unsafe {
|
||||
@@ -241,20 +223,6 @@ fn finalize(&self) {
|
||||
}
|
||||
}
|
||||
|
||||
#[unsafe_destructor]
|
||||
#[cfg(stage0)]
|
||||
impl<T> Drop for RcMut<T> {
|
||||
fn finalize(&self) {
|
||||
unsafe {
|
||||
(*self.ptr).count -= 1;
|
||||
if (*self.ptr).count == 0 {
|
||||
util::replace_ptr(self.ptr, init());
|
||||
free(self.ptr as *c_void)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<T> Clone for RcMut<T> {
|
||||
/// Return a shallow copy of the reference counted pointer.
|
||||
#[inline]
|
||||
|
||||
@@ -51,18 +51,6 @@ fn contains_key(&self, key: &uint) -> bool {
|
||||
}
|
||||
|
||||
/// Visit all key-value pairs in order
|
||||
#[cfg(stage0)]
|
||||
fn each<'a>(&'a self, it: &fn(&uint, &'a V) -> bool) {
|
||||
for uint::range(0, self.v.len()) |i| {
|
||||
match self.v[i] {
|
||||
Some(ref elt) => if !it(&i, elt) { break },
|
||||
None => ()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Visit all key-value pairs in order
|
||||
#[cfg(not(stage0))]
|
||||
fn each<'a>(&'a self, it: &fn(&uint, &'a V) -> bool) -> bool {
|
||||
for uint::range(0, self.v.len()) |i| {
|
||||
match self.v[i] {
|
||||
@@ -73,41 +61,17 @@ fn each<'a>(&'a self, it: &fn(&uint, &'a V) -> bool) -> bool {
|
||||
return true;
|
||||
}
|
||||
|
||||
/// Visit all keys in order
|
||||
#[cfg(stage0)]
|
||||
fn each_key(&self, blk: &fn(key: &uint) -> bool) {
|
||||
self.each(|k, _| blk(k))
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
/// Visit all keys in order
|
||||
fn each_key(&self, blk: &fn(key: &uint) -> bool) -> bool {
|
||||
self.each(|k, _| blk(k))
|
||||
}
|
||||
|
||||
/// Visit all values in order
|
||||
#[cfg(stage0)]
|
||||
fn each_value<'a>(&'a self, blk: &fn(value: &'a V) -> bool) {
|
||||
self.each(|_, v| blk(v))
|
||||
}
|
||||
|
||||
/// Visit all values in order
|
||||
#[cfg(not(stage0))]
|
||||
fn each_value<'a>(&'a self, blk: &fn(value: &'a V) -> bool) -> bool {
|
||||
self.each(|_, v| blk(v))
|
||||
}
|
||||
|
||||
/// Iterate over the map and mutate the contained values
|
||||
#[cfg(stage0)]
|
||||
fn mutate_values(&mut self, it: &fn(&uint, &mut V) -> bool) {
|
||||
for uint::range(0, self.v.len()) |i| {
|
||||
match self.v[i] {
|
||||
Some(ref mut elt) => if !it(&i, elt) { return; },
|
||||
None => ()
|
||||
}
|
||||
}
|
||||
}
|
||||
/// Iterate over the map and mutate the contained values
|
||||
#[cfg(not(stage0))]
|
||||
fn mutate_values(&mut self, it: &fn(&uint, &mut V) -> bool) -> bool {
|
||||
for uint::range(0, self.v.len()) |i| {
|
||||
match self.v[i] {
|
||||
@@ -187,18 +151,6 @@ pub impl<V> SmallIntMap<V> {
|
||||
fn new() -> SmallIntMap<V> { SmallIntMap{v: ~[]} }
|
||||
|
||||
/// Visit all key-value pairs in reverse order
|
||||
#[cfg(stage0)]
|
||||
fn each_reverse<'a>(&'a self, it: &fn(uint, &'a V) -> bool) {
|
||||
for uint::range_rev(self.v.len(), 0) |i| {
|
||||
match self.v[i - 1] {
|
||||
Some(ref elt) => if !it(i - 1, elt) { break },
|
||||
None => ()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Visit all key-value pairs in reverse order
|
||||
#[cfg(not(stage0))]
|
||||
fn each_reverse<'a>(&'a self, it: &fn(uint, &'a V) -> bool) -> bool {
|
||||
for uint::range_rev(self.v.len(), 0) |i| {
|
||||
match self.v[i - 1] {
|
||||
|
||||
@@ -61,26 +61,6 @@ fn merge<T:Copy>(le: Le<T>, a: &[T], b: &[T]) -> ~[T] {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn part<T>(arr: &mut [T], left: uint,
|
||||
right: uint, pivot: uint, compare_func: Le<T>) -> uint {
|
||||
swap(&mut arr[pivot], &mut arr[right]);
|
||||
let mut storage_index: uint = left;
|
||||
let mut i: uint = left;
|
||||
while i < right {
|
||||
let a: &mut T = &mut arr[i];
|
||||
let b: &mut T = &mut arr[right];
|
||||
if compare_func(a, b) {
|
||||
swap(&mut arr[i], &mut arr[storage_index]);
|
||||
storage_index += 1;
|
||||
}
|
||||
i += 1;
|
||||
}
|
||||
swap(&mut arr[storage_index], &mut arr[right]);
|
||||
return storage_index;
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
fn part<T>(arr: &mut [T], left: uint,
|
||||
right: uint, pivot: uint, compare_func: Le<T>) -> uint {
|
||||
vec::swap(arr, pivot, right);
|
||||
|
||||
@@ -1,1240 +0,0 @@
|
||||
// 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.
|
||||
|
||||
//! Sorting methods
|
||||
|
||||
use core::cmp::{Eq, Ord};
|
||||
use core::vec::len;
|
||||
use core::vec;
|
||||
use core::util;
|
||||
|
||||
type Le<'self, T> = &'self fn(v1: &T, v2: &T) -> bool;
|
||||
|
||||
/**
|
||||
* Merge sort. Returns a new vector containing the sorted list.
|
||||
*
|
||||
* Has worst case O(n log n) performance, best case O(n), but
|
||||
* is not space efficient. This is a stable sort.
|
||||
*/
|
||||
pub fn merge_sort<T:Copy>(v: &const [T], le: Le<T>) -> ~[T] {
|
||||
type Slice = (uint, uint);
|
||||
|
||||
return merge_sort_(v, (0u, len(v)), le);
|
||||
|
||||
fn merge_sort_<T:Copy>(v: &const [T], slice: Slice, le: Le<T>)
|
||||
-> ~[T] {
|
||||
let begin = slice.first();
|
||||
let end = slice.second();
|
||||
|
||||
let v_len = end - begin;
|
||||
if v_len == 0 { return ~[]; }
|
||||
if v_len == 1 { return ~[v[begin]]; }
|
||||
|
||||
let mid = v_len / 2 + begin;
|
||||
let a = (begin, mid);
|
||||
let b = (mid, end);
|
||||
return merge(le, merge_sort_(v, a, le), merge_sort_(v, b, le));
|
||||
}
|
||||
|
||||
fn merge<T:Copy>(le: Le<T>, a: &[T], b: &[T]) -> ~[T] {
|
||||
let mut rs = vec::with_capacity(len(a) + len(b));
|
||||
let a_len = len(a);
|
||||
let mut a_ix = 0;
|
||||
let b_len = len(b);
|
||||
let mut b_ix = 0;
|
||||
while a_ix < a_len && b_ix < b_len {
|
||||
if le(&a[a_ix], &b[b_ix]) {
|
||||
rs.push(a[a_ix]);
|
||||
a_ix += 1;
|
||||
} else { rs.push(b[b_ix]); b_ix += 1; }
|
||||
}
|
||||
rs.push_all(vec::slice(a, a_ix, a_len));
|
||||
rs.push_all(vec::slice(b, b_ix, b_len));
|
||||
rs
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn part<T>(arr: &mut [T], left: uint,
|
||||
right: uint, pivot: uint, compare_func: Le<T>) -> uint {
|
||||
vec::swap(arr, pivot, right);
|
||||
let mut storage_index: uint = left;
|
||||
let mut i: uint = left;
|
||||
while i < right {
|
||||
let a: &mut T = &mut arr[i];
|
||||
let b: &mut T = &mut arr[right];
|
||||
if compare_func(a, b) {
|
||||
vec::swap(arr, i, storage_index);
|
||||
storage_index += 1;
|
||||
}
|
||||
i += 1;
|
||||
}
|
||||
vec::swap(arr, storage_index, right);
|
||||
return storage_index;
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
fn part<T>(arr: &mut [T], left: uint,
|
||||
right: uint, pivot: uint, compare_func: Le<T>) -> uint {
|
||||
vec::swap(arr, pivot, right);
|
||||
let mut storage_index: uint = left;
|
||||
let mut i: uint = left;
|
||||
while i < right {
|
||||
if compare_func(&arr[i], &arr[right]) {
|
||||
vec::swap(arr, i, storage_index);
|
||||
storage_index += 1;
|
||||
}
|
||||
i += 1;
|
||||
}
|
||||
vec::swap(arr, storage_index, right);
|
||||
return storage_index;
|
||||
}
|
||||
|
||||
fn qsort<T>(arr: &mut [T], left: uint,
|
||||
right: uint, compare_func: Le<T>) {
|
||||
if right > left {
|
||||
let pivot = (left + right) / 2u;
|
||||
let new_pivot = part::<T>(arr, left, right, pivot, compare_func);
|
||||
if new_pivot != 0u {
|
||||
// Need to do this check before recursing due to overflow
|
||||
qsort::<T>(arr, left, new_pivot - 1u, compare_func);
|
||||
}
|
||||
qsort::<T>(arr, new_pivot + 1u, right, compare_func);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Quicksort. Sorts a mut vector in place.
|
||||
*
|
||||
* Has worst case O(n^2) performance, average case O(n log n).
|
||||
* This is an unstable sort.
|
||||
*/
|
||||
pub fn quick_sort<T>(arr: &mut [T], compare_func: Le<T>) {
|
||||
if len::<T>(arr) == 0u { return; }
|
||||
qsort::<T>(arr, 0u, len::<T>(arr) - 1u, compare_func);
|
||||
}
|
||||
|
||||
fn qsort3<T:Copy + Ord + Eq>(arr: &mut [T], left: int, right: int) {
|
||||
if right <= left { return; }
|
||||
let v: T = arr[right];
|
||||
let mut i: int = left - 1;
|
||||
let mut j: int = right;
|
||||
let mut p: int = i;
|
||||
let mut q: int = j;
|
||||
loop {
|
||||
i += 1;
|
||||
while arr[i] < v { i += 1; }
|
||||
j -= 1;
|
||||
while v < arr[j] {
|
||||
if j == left { break; }
|
||||
j -= 1;
|
||||
}
|
||||
if i >= j { break; }
|
||||
vec::swap(arr, i as uint, j as uint);
|
||||
if arr[i] == v {
|
||||
p += 1;
|
||||
vec::swap(arr, p as uint, i as uint);
|
||||
}
|
||||
if v == arr[j] {
|
||||
q -= 1;
|
||||
vec::swap(arr, j as uint, q as uint);
|
||||
}
|
||||
}
|
||||
vec::swap(arr, i as uint, right as uint);
|
||||
j = i - 1;
|
||||
i += 1;
|
||||
let mut k: int = left;
|
||||
while k < p {
|
||||
vec::swap(arr, k as uint, j as uint);
|
||||
k += 1;
|
||||
j -= 1;
|
||||
if k == len::<T>(arr) as int { break; }
|
||||
}
|
||||
k = right - 1;
|
||||
while k > q {
|
||||
vec::swap(arr, i as uint, k as uint);
|
||||
k -= 1;
|
||||
i += 1;
|
||||
if k == 0 { break; }
|
||||
}
|
||||
qsort3::<T>(arr, left, j);
|
||||
qsort3::<T>(arr, i, right);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fancy quicksort. Sorts a mut vector in place.
|
||||
*
|
||||
* Based on algorithm presented by ~[Sedgewick and Bentley]
|
||||
* (http://www.cs.princeton.edu/~rs/talks/QuicksortIsOptimal.pdf).
|
||||
* According to these slides this is the algorithm of choice for
|
||||
* 'randomly ordered keys, abstract compare' & 'small number of key values'.
|
||||
*
|
||||
* This is an unstable sort.
|
||||
*/
|
||||
pub fn quick_sort3<T:Copy + Ord + Eq>(arr: &mut [T]) {
|
||||
if arr.len() <= 1 { return; }
|
||||
let len = arr.len() - 1; // FIXME(#5074) nested calls
|
||||
qsort3(arr, 0, (len - 1) as int);
|
||||
}
|
||||
|
||||
pub trait Sort {
|
||||
fn qsort(self);
|
||||
}
|
||||
|
||||
impl<'self, T:Copy + Ord + Eq> Sort for &'self mut [T] {
|
||||
fn qsort(self) { quick_sort3(self); }
|
||||
}
|
||||
|
||||
static MIN_MERGE: uint = 64;
|
||||
static MIN_GALLOP: uint = 7;
|
||||
static INITIAL_TMP_STORAGE: uint = 128;
|
||||
|
||||
pub fn tim_sort<T:Copy + Ord>(array: &mut [T]) {
|
||||
let size = array.len();
|
||||
if size < 2 {
|
||||
return;
|
||||
}
|
||||
|
||||
if size < MIN_MERGE {
|
||||
let init_run_len = count_run_ascending(array);
|
||||
binarysort(array, init_run_len);
|
||||
return;
|
||||
}
|
||||
|
||||
let mut ms = MergeState();
|
||||
let min_run = min_run_length(size);
|
||||
|
||||
let mut idx = 0;
|
||||
let mut remaining = size;
|
||||
loop {
|
||||
let run_len: uint = {
|
||||
// This scope contains the slice `arr` here:
|
||||
let arr = vec::mut_slice(array, idx, size);
|
||||
let mut run_len: uint = count_run_ascending(arr);
|
||||
|
||||
if run_len < min_run {
|
||||
let force = if remaining <= min_run {remaining} else {min_run};
|
||||
let slice = vec::mut_slice(arr, 0, force);
|
||||
binarysort(slice, run_len);
|
||||
run_len = force;
|
||||
}
|
||||
|
||||
run_len
|
||||
};
|
||||
|
||||
ms.push_run(idx, run_len);
|
||||
ms.merge_collapse(array);
|
||||
|
||||
idx += run_len;
|
||||
remaining -= run_len;
|
||||
if remaining == 0 { break; }
|
||||
}
|
||||
|
||||
ms.merge_force_collapse(array);
|
||||
}
|
||||
|
||||
fn binarysort<T:Copy + Ord>(array: &mut [T], start: uint) {
|
||||
let size = array.len();
|
||||
let mut start = start;
|
||||
assert!(start <= size);
|
||||
|
||||
if start == 0 { start += 1; }
|
||||
|
||||
while start < size {
|
||||
let pivot = array[start];
|
||||
let mut left = 0;
|
||||
let mut right = start;
|
||||
assert!(left <= right);
|
||||
|
||||
while left < right {
|
||||
let mid = (left + right) >> 1;
|
||||
if pivot < array[mid] {
|
||||
right = mid;
|
||||
} else {
|
||||
left = mid+1;
|
||||
}
|
||||
}
|
||||
assert_eq!(left, right);
|
||||
let n = start-left;
|
||||
|
||||
copy_vec(array, left+1, array, left, n);
|
||||
array[left] = pivot;
|
||||
start += 1;
|
||||
}
|
||||
}
|
||||
|
||||
// Reverse the order of elements in a slice, in place
|
||||
fn reverse_slice<T>(v: &mut [T], start: uint, end:uint) {
|
||||
let mut i = start;
|
||||
while i < end / 2 {
|
||||
vec::swap(v, i, end - i - 1);
|
||||
i += 1;
|
||||
}
|
||||
}
|
||||
|
||||
fn min_run_length(n: uint) -> uint {
|
||||
let mut n = n;
|
||||
let mut r = 0; // becomes 1 if any 1 bits are shifted off
|
||||
|
||||
while n >= MIN_MERGE {
|
||||
r |= n & 1;
|
||||
n >>= 1;
|
||||
}
|
||||
return n + r;
|
||||
}
|
||||
|
||||
fn count_run_ascending<T:Copy + Ord>(array: &mut [T]) -> uint {
|
||||
let size = array.len();
|
||||
assert!(size > 0);
|
||||
if size == 1 { return 1; }
|
||||
|
||||
let mut run = 2;
|
||||
if array[1] < array[0] {
|
||||
while run < size && array[run] < array[run-1] {
|
||||
run += 1;
|
||||
}
|
||||
reverse_slice(array, 0, run);
|
||||
} else {
|
||||
while run < size && array[run] >= array[run-1] {
|
||||
run += 1;
|
||||
}
|
||||
}
|
||||
|
||||
return run;
|
||||
}
|
||||
|
||||
fn gallop_left<T:Copy + Ord>(key: &const T,
|
||||
array: &const [T],
|
||||
hint: uint)
|
||||
-> uint {
|
||||
let size = array.len();
|
||||
assert!(size != 0 && hint < size);
|
||||
|
||||
let mut last_ofs = 0;
|
||||
let mut ofs = 1;
|
||||
|
||||
if *key > array[hint] {
|
||||
// Gallop right until array[hint+last_ofs] < key <= array[hint+ofs]
|
||||
let max_ofs = size - hint;
|
||||
while ofs < max_ofs && *key > array[hint+ofs] {
|
||||
last_ofs = ofs;
|
||||
ofs = (ofs << 1) + 1;
|
||||
if ofs < last_ofs { ofs = max_ofs; } // uint overflow guard
|
||||
}
|
||||
if ofs > max_ofs { ofs = max_ofs; }
|
||||
|
||||
last_ofs += hint;
|
||||
ofs += hint;
|
||||
} else {
|
||||
let max_ofs = hint + 1;
|
||||
while ofs < max_ofs && *key <= array[hint-ofs] {
|
||||
last_ofs = ofs;
|
||||
ofs = (ofs << 1) + 1;
|
||||
if ofs < last_ofs { ofs = max_ofs; } // uint overflow guard
|
||||
}
|
||||
|
||||
if ofs > max_ofs { ofs = max_ofs; }
|
||||
|
||||
let tmp = last_ofs;
|
||||
last_ofs = hint - ofs;
|
||||
ofs = hint - tmp;
|
||||
}
|
||||
assert!((last_ofs < ofs || last_ofs+1 < ofs+1) && ofs <= size);
|
||||
|
||||
last_ofs += 1;
|
||||
while last_ofs < ofs {
|
||||
let m = last_ofs + ((ofs - last_ofs) >> 1);
|
||||
if *key > array[m] {
|
||||
last_ofs = m+1;
|
||||
} else {
|
||||
ofs = m;
|
||||
}
|
||||
}
|
||||
assert_eq!(last_ofs, ofs);
|
||||
return ofs;
|
||||
}
|
||||
|
||||
fn gallop_right<T:Copy + Ord>(key: &const T,
|
||||
array: &const [T],
|
||||
hint: uint)
|
||||
-> uint {
|
||||
let size = array.len();
|
||||
assert!(size != 0 && hint < size);
|
||||
|
||||
let mut last_ofs = 0;
|
||||
let mut ofs = 1;
|
||||
|
||||
if *key >= array[hint] {
|
||||
// Gallop right until array[hint+last_ofs] <= key < array[hint+ofs]
|
||||
let max_ofs = size - hint;
|
||||
while ofs < max_ofs && *key >= array[hint+ofs] {
|
||||
last_ofs = ofs;
|
||||
ofs = (ofs << 1) + 1;
|
||||
if ofs < last_ofs { ofs = max_ofs; }
|
||||
}
|
||||
if ofs > max_ofs { ofs = max_ofs; }
|
||||
|
||||
last_ofs += hint;
|
||||
ofs += hint;
|
||||
} else {
|
||||
// Gallop left until array[hint-ofs] <= key < array[hint-last_ofs]
|
||||
let max_ofs = hint + 1;
|
||||
while ofs < max_ofs && *key < array[hint-ofs] {
|
||||
last_ofs = ofs;
|
||||
ofs = (ofs << 1) + 1;
|
||||
if ofs < last_ofs { ofs = max_ofs; }
|
||||
}
|
||||
if ofs > max_ofs { ofs = max_ofs; }
|
||||
|
||||
let tmp = last_ofs;
|
||||
last_ofs = hint - ofs;
|
||||
ofs = hint - tmp;
|
||||
}
|
||||
|
||||
assert!((last_ofs < ofs || last_ofs+1 < ofs+1) && ofs <= size);
|
||||
|
||||
last_ofs += 1;
|
||||
while last_ofs < ofs {
|
||||
let m = last_ofs + ((ofs - last_ofs) >> 1);
|
||||
|
||||
if *key >= array[m] {
|
||||
last_ofs = m + 1;
|
||||
} else {
|
||||
ofs = m;
|
||||
}
|
||||
}
|
||||
assert_eq!(last_ofs, ofs);
|
||||
return ofs;
|
||||
}
|
||||
|
||||
struct RunState {
|
||||
base: uint,
|
||||
len: uint,
|
||||
}
|
||||
|
||||
struct MergeState<T> {
|
||||
min_gallop: uint,
|
||||
runs: ~[RunState],
|
||||
}
|
||||
|
||||
// Fixme (#3853) Move into MergeState
|
||||
fn MergeState<T>() -> MergeState<T> {
|
||||
MergeState {
|
||||
min_gallop: MIN_GALLOP,
|
||||
runs: ~[],
|
||||
}
|
||||
}
|
||||
|
||||
impl<T:Copy + Ord> MergeState<T> {
|
||||
fn push_run(&mut self, run_base: uint, run_len: uint) {
|
||||
let tmp = RunState{base: run_base, len: run_len};
|
||||
self.runs.push(tmp);
|
||||
}
|
||||
|
||||
fn merge_at(&mut self, n: uint, array: &mut [T]) {
|
||||
let size = self.runs.len();
|
||||
assert!(size >= 2);
|
||||
assert!(n == size-2 || n == size-3);
|
||||
|
||||
let mut b1 = self.runs[n].base;
|
||||
let mut l1 = self.runs[n].len;
|
||||
let b2 = self.runs[n+1].base;
|
||||
let l2 = self.runs[n+1].len;
|
||||
|
||||
assert!(l1 > 0 && l2 > 0);
|
||||
assert_eq!(b1 + l1, b2);
|
||||
|
||||
self.runs[n].len = l1 + l2;
|
||||
if n == size-3 {
|
||||
self.runs[n+1].base = self.runs[n+2].base;
|
||||
self.runs[n+1].len = self.runs[n+2].len;
|
||||
}
|
||||
|
||||
let k = { // constrain lifetime of slice below
|
||||
let slice = vec::mut_slice(array, b1, b1+l1);
|
||||
gallop_right(&const array[b2], slice, 0)
|
||||
};
|
||||
b1 += k;
|
||||
l1 -= k;
|
||||
if l1 != 0 {
|
||||
let l2 = { // constrain lifetime of slice below
|
||||
let slice = vec::mut_slice(array, b2, b2+l2);
|
||||
gallop_left(&const array[b1+l1-1],slice,l2-1)
|
||||
};
|
||||
if l2 > 0 {
|
||||
if l1 <= l2 {
|
||||
self.merge_lo(array, b1, l1, b2, l2);
|
||||
} else {
|
||||
self.merge_hi(array, b1, l1, b2, l2);
|
||||
}
|
||||
}
|
||||
}
|
||||
self.runs.pop();
|
||||
}
|
||||
|
||||
fn merge_lo(&mut self, array: &mut [T], base1: uint, len1: uint,
|
||||
base2: uint, len2: uint) {
|
||||
assert!(len1 != 0 && len2 != 0 && base1+len1 == base2);
|
||||
|
||||
let mut tmp = ~[];
|
||||
for uint::range(base1, base1+len1) |i| {
|
||||
tmp.push(array[i]);
|
||||
}
|
||||
|
||||
let mut c1 = 0;
|
||||
let mut c2 = base2;
|
||||
let mut dest = base1;
|
||||
let mut len1 = len1;
|
||||
let mut len2 = len2;
|
||||
|
||||
vec::swap(array, dest, c2);
|
||||
dest += 1; c2 += 1; len2 -= 1;
|
||||
|
||||
if len2 == 0 {
|
||||
copy_vec(array, dest, tmp, 0, len1);
|
||||
return;
|
||||
}
|
||||
if len1 == 1 {
|
||||
copy_vec(array, dest, array, c2, len2);
|
||||
util::swap(&mut array[dest+len2], &mut tmp[c1]);
|
||||
return;
|
||||
}
|
||||
|
||||
let mut min_gallop = self.min_gallop;
|
||||
loop {
|
||||
let mut count1 = 0;
|
||||
let mut count2 = 0;
|
||||
let mut break_outer = false;
|
||||
|
||||
loop {
|
||||
assert!(len1 > 1 && len2 != 0);
|
||||
if array[c2] < tmp[c1] {
|
||||
vec::swap(array, dest, c2);
|
||||
dest += 1; c2 += 1; len2 -= 1;
|
||||
count2 += 1; count1 = 0;
|
||||
if len2 == 0 {
|
||||
break_outer = true;
|
||||
}
|
||||
} else {
|
||||
util::swap(&mut array[dest], &mut tmp[c1]);
|
||||
dest += 1; c1 += 1; len1 -= 1;
|
||||
count1 += 1; count2 = 0;
|
||||
if len1 == 1 {
|
||||
break_outer = true;
|
||||
}
|
||||
}
|
||||
if break_outer || ((count1 | count2) >= min_gallop) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
if break_outer { break; }
|
||||
|
||||
// Start to gallop
|
||||
loop {
|
||||
assert!(len1 > 1 && len2 != 0);
|
||||
|
||||
let tmp_view = vec::const_slice(tmp, c1, c1+len1);
|
||||
count1 = gallop_right(&const array[c2], tmp_view, 0);
|
||||
if count1 != 0 {
|
||||
copy_vec(array, dest, tmp, c1, count1);
|
||||
dest += count1; c1 += count1; len1 -= count1;
|
||||
if len1 <= 1 { break_outer = true; break; }
|
||||
}
|
||||
vec::swap(array, dest, c2);
|
||||
dest += 1; c2 += 1; len2 -= 1;
|
||||
if len2 == 0 { break_outer = true; break; }
|
||||
|
||||
let tmp_view = vec::const_slice(array, c2, c2+len2);
|
||||
count2 = gallop_left(&const tmp[c1], tmp_view, 0);
|
||||
if count2 != 0 {
|
||||
copy_vec(array, dest, array, c2, count2);
|
||||
dest += count2; c2 += count2; len2 -= count2;
|
||||
if len2 == 0 { break_outer = true; break; }
|
||||
}
|
||||
util::swap(&mut array[dest], &mut tmp[c1]);
|
||||
dest += 1; c1 += 1; len1 -= 1;
|
||||
if len1 == 1 { break_outer = true; break; }
|
||||
min_gallop -= 1;
|
||||
if !(count1 >= MIN_GALLOP || count2 >= MIN_GALLOP) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
if break_outer { break; }
|
||||
if min_gallop < 0 { min_gallop = 0; }
|
||||
min_gallop += 2; // Penalize for leaving gallop
|
||||
}
|
||||
self.min_gallop = if min_gallop < 1 { 1 } else { min_gallop };
|
||||
|
||||
if len1 == 1 {
|
||||
assert!(len2 > 0);
|
||||
copy_vec(array, dest, array, c2, len2);
|
||||
util::swap(&mut array[dest+len2], &mut tmp[c1]);
|
||||
} else if len1 == 0 {
|
||||
fail!("Comparison violates its contract!");
|
||||
} else {
|
||||
assert_eq!(len2, 0);
|
||||
assert!(len1 > 1);
|
||||
copy_vec(array, dest, tmp, c1, len1);
|
||||
}
|
||||
}
|
||||
|
||||
fn merge_hi(&mut self, array: &mut [T], base1: uint, len1: uint,
|
||||
base2: uint, len2: uint) {
|
||||
assert!(len1 != 1 && len2 != 0 && base1+len1 == base2);
|
||||
|
||||
let mut tmp = ~[];
|
||||
for uint::range(base2, base2+len2) |i| {
|
||||
tmp.push(array[i]);
|
||||
}
|
||||
|
||||
let mut c1 = base1 + len1 - 1;
|
||||
let mut c2 = len2 - 1;
|
||||
let mut dest = base2 + len2 - 1;
|
||||
let mut len1 = len1;
|
||||
let mut len2 = len2;
|
||||
|
||||
vec::swap(array, dest, c1);
|
||||
dest -= 1; c1 -= 1; len1 -= 1;
|
||||
|
||||
if len1 == 0 {
|
||||
copy_vec(array, dest-(len2-1), tmp, 0, len2);
|
||||
return;
|
||||
}
|
||||
if len2 == 1 {
|
||||
dest -= len1;
|
||||
c1 -= len1;
|
||||
copy_vec(array, dest+1, array, c1+1, len1);
|
||||
util::swap(&mut array[dest], &mut tmp[c2]);
|
||||
return;
|
||||
}
|
||||
|
||||
let mut min_gallop = self.min_gallop;
|
||||
loop {
|
||||
let mut count1 = 0;
|
||||
let mut count2 = 0;
|
||||
let mut break_outer = false;
|
||||
|
||||
loop {
|
||||
assert!(len1 != 0 && len2 > 1);
|
||||
if tmp[c2] < array[c1] {
|
||||
vec::swap(array, dest, c1);
|
||||
dest -= 1; c1 -= 1; len1 -= 1;
|
||||
count1 += 1; count2 = 0;
|
||||
if len1 == 0 {
|
||||
break_outer = true;
|
||||
}
|
||||
} else {
|
||||
util::swap(&mut array[dest], &mut tmp[c2]);
|
||||
dest -= 1; c2 -= 1; len2 -= 1;
|
||||
count2 += 1; count1 = 0;
|
||||
if len2 == 1 {
|
||||
break_outer = true;
|
||||
}
|
||||
}
|
||||
if break_outer || ((count1 | count2) >= min_gallop) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
if break_outer { break; }
|
||||
|
||||
// Start to gallop
|
||||
loop {
|
||||
assert!(len2 > 1 && len1 != 0);
|
||||
|
||||
{ // constrain scope of tmp_view:
|
||||
let tmp_view = vec::mut_slice (array, base1, base1+len1);
|
||||
count1 = len1 - gallop_right(
|
||||
&const tmp[c2], tmp_view, len1-1);
|
||||
}
|
||||
|
||||
if count1 != 0 {
|
||||
dest -= count1; c1 -= count1; len1 -= count1;
|
||||
copy_vec(array, dest+1, array, c1+1, count1);
|
||||
if len1 == 0 { break_outer = true; break; }
|
||||
}
|
||||
|
||||
util::swap(&mut array[dest], &mut tmp[c2]);
|
||||
dest -= 1; c2 -= 1; len2 -= 1;
|
||||
if len2 == 1 { break_outer = true; break; }
|
||||
|
||||
let count2;
|
||||
{ // constrain scope of tmp_view
|
||||
let tmp_view = vec::mut_slice(tmp, 0, len2);
|
||||
count2 = len2 - gallop_left(&const array[c1],
|
||||
tmp_view,
|
||||
len2-1);
|
||||
}
|
||||
|
||||
if count2 != 0 {
|
||||
dest -= count2; c2 -= count2; len2 -= count2;
|
||||
copy_vec(array, dest+1, tmp, c2+1, count2);
|
||||
if len2 <= 1 { break_outer = true; break; }
|
||||
}
|
||||
vec::swap(array, dest, c1);
|
||||
dest -= 1; c1 -= 1; len1 -= 1;
|
||||
if len1 == 0 { break_outer = true; break; }
|
||||
min_gallop -= 1;
|
||||
if !(count1 >= MIN_GALLOP || count2 >= MIN_GALLOP) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if break_outer { break; }
|
||||
if min_gallop < 0 { min_gallop = 0; }
|
||||
min_gallop += 2; // Penalize for leaving gallop
|
||||
}
|
||||
self.min_gallop = if min_gallop < 1 { 1 } else { min_gallop };
|
||||
|
||||
if len2 == 1 {
|
||||
assert!(len1 > 0);
|
||||
dest -= len1;
|
||||
c1 -= len1;
|
||||
copy_vec(array, dest+1, array, c1+1, len1);
|
||||
util::swap(&mut array[dest], &mut tmp[c2]);
|
||||
} else if len2 == 0 {
|
||||
fail!("Comparison violates its contract!");
|
||||
} else {
|
||||
assert_eq!(len1, 0);
|
||||
assert!(len2 != 0);
|
||||
copy_vec(array, dest-(len2-1), tmp, 0, len2);
|
||||
}
|
||||
}
|
||||
|
||||
fn merge_collapse(&mut self, array: &mut [T]) {
|
||||
while self.runs.len() > 1 {
|
||||
let mut n = self.runs.len()-2;
|
||||
if n > 0 &&
|
||||
self.runs[n-1].len <= self.runs[n].len + self.runs[n+1].len
|
||||
{
|
||||
if self.runs[n-1].len < self.runs[n+1].len { n -= 1; }
|
||||
} else if self.runs[n].len <= self.runs[n+1].len {
|
||||
/* keep going */
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
self.merge_at(n, array);
|
||||
}
|
||||
}
|
||||
|
||||
fn merge_force_collapse(&mut self, array: &mut [T]) {
|
||||
while self.runs.len() > 1 {
|
||||
let mut n = self.runs.len()-2;
|
||||
if n > 0 {
|
||||
if self.runs[n-1].len < self.runs[n+1].len {
|
||||
n -= 1;
|
||||
}
|
||||
}
|
||||
self.merge_at(n, array);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
fn copy_vec<T:Copy>(dest: &mut [T],
|
||||
s1: uint,
|
||||
from: &const [T],
|
||||
s2: uint,
|
||||
len: uint) {
|
||||
assert!(s1+len <= dest.len() && s2+len <= from.len());
|
||||
|
||||
let mut slice = ~[];
|
||||
for uint::range(s2, s2+len) |i| {
|
||||
slice.push(from[i]);
|
||||
}
|
||||
|
||||
for slice.eachi |i, v| {
|
||||
dest[s1+i] = *v;
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod test_qsort3 {
|
||||
use sort::*;
|
||||
|
||||
use core::vec;
|
||||
|
||||
fn check_sort(v1: &mut [int], v2: &mut [int]) {
|
||||
let len = vec::len::<int>(v1);
|
||||
quick_sort3::<int>(v1);
|
||||
let mut i = 0;
|
||||
while i < len {
|
||||
// debug!(v2[i]);
|
||||
assert_eq!(v2[i], v1[i]);
|
||||
i += 1;
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test() {
|
||||
{
|
||||
let mut v1 = ~[3, 7, 4, 5, 2, 9, 5, 8];
|
||||
let mut v2 = ~[2, 3, 4, 5, 5, 7, 8, 9];
|
||||
check_sort(v1, v2);
|
||||
}
|
||||
{
|
||||
let mut v1 = ~[1, 1, 1];
|
||||
let mut v2 = ~[1, 1, 1];
|
||||
check_sort(v1, v2);
|
||||
}
|
||||
{
|
||||
let mut v1: ~[int] = ~[];
|
||||
let mut v2: ~[int] = ~[];
|
||||
check_sort(v1, v2);
|
||||
}
|
||||
{ let mut v1 = ~[9]; let mut v2 = ~[9]; check_sort(v1, v2); }
|
||||
{
|
||||
let mut v1 = ~[9, 3, 3, 3, 9];
|
||||
let mut v2 = ~[3, 3, 3, 9, 9];
|
||||
check_sort(v1, v2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod test_qsort {
|
||||
use sort::*;
|
||||
|
||||
use core::int;
|
||||
use core::vec;
|
||||
|
||||
fn check_sort(v1: &mut [int], v2: &mut [int]) {
|
||||
let len = vec::len::<int>(v1);
|
||||
fn leual(a: &int, b: &int) -> bool { *a <= *b }
|
||||
quick_sort::<int>(v1, leual);
|
||||
let mut i = 0u;
|
||||
while i < len {
|
||||
// debug!(v2[i]);
|
||||
assert_eq!(v2[i], v1[i]);
|
||||
i += 1;
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test() {
|
||||
{
|
||||
let mut v1 = ~[3, 7, 4, 5, 2, 9, 5, 8];
|
||||
let mut v2 = ~[2, 3, 4, 5, 5, 7, 8, 9];
|
||||
check_sort(v1, v2);
|
||||
}
|
||||
{
|
||||
let mut v1 = ~[1, 1, 1];
|
||||
let mut v2 = ~[1, 1, 1];
|
||||
check_sort(v1, v2);
|
||||
}
|
||||
{
|
||||
let mut v1: ~[int] = ~[];
|
||||
let mut v2: ~[int] = ~[];
|
||||
check_sort(v1, v2);
|
||||
}
|
||||
{ let mut v1 = ~[9]; let mut v2 = ~[9]; check_sort(v1, v2); }
|
||||
{
|
||||
let mut v1 = ~[9, 3, 3, 3, 9];
|
||||
let mut v2 = ~[3, 3, 3, 9, 9];
|
||||
check_sort(v1, v2);
|
||||
}
|
||||
}
|
||||
|
||||
// Regression test for #750
|
||||
#[test]
|
||||
fn test_simple() {
|
||||
let mut names = ~[2, 1, 3];
|
||||
|
||||
let expected = ~[1, 2, 3];
|
||||
|
||||
do quick_sort(names) |x, y| { int::le(*x, *y) };
|
||||
|
||||
let immut_names = names;
|
||||
|
||||
let pairs = vec::zip_slice(expected, immut_names);
|
||||
for pairs.each |p| {
|
||||
let (a, b) = *p;
|
||||
debug!("%d %d", a, b);
|
||||
assert_eq!(a, b);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
|
||||
use sort::*;
|
||||
|
||||
use core::vec;
|
||||
|
||||
fn check_sort(v1: &[int], v2: &[int]) {
|
||||
let len = vec::len::<int>(v1);
|
||||
pub fn le(a: &int, b: &int) -> bool { *a <= *b }
|
||||
let f = le;
|
||||
let v3 = merge_sort::<int>(v1, f);
|
||||
let mut i = 0u;
|
||||
while i < len {
|
||||
debug!(v3[i]);
|
||||
assert_eq!(v3[i], v2[i]);
|
||||
i += 1;
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test() {
|
||||
{
|
||||
let v1 = ~[3, 7, 4, 5, 2, 9, 5, 8];
|
||||
let v2 = ~[2, 3, 4, 5, 5, 7, 8, 9];
|
||||
check_sort(v1, v2);
|
||||
}
|
||||
{ let v1 = ~[1, 1, 1]; let v2 = ~[1, 1, 1]; check_sort(v1, v2); }
|
||||
{ let v1:~[int] = ~[]; let v2:~[int] = ~[]; check_sort(v1, v2); }
|
||||
{ let v1 = ~[9]; let v2 = ~[9]; check_sort(v1, v2); }
|
||||
{
|
||||
let v1 = ~[9, 3, 3, 3, 9];
|
||||
let v2 = ~[3, 3, 3, 9, 9];
|
||||
check_sort(v1, v2);
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_merge_sort_mutable() {
|
||||
pub fn le(a: &int, b: &int) -> bool { *a <= *b }
|
||||
let mut v1 = ~[3, 2, 1];
|
||||
let v2 = merge_sort(v1, le);
|
||||
assert_eq!(v2, ~[1, 2, 3]);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_merge_sort_stability() {
|
||||
// tjc: funny that we have to use parens
|
||||
fn ile(x: &(&'static str), y: &(&'static str)) -> bool
|
||||
{
|
||||
// FIXME: #4318 Instead of to_ascii and to_str_ascii, could use
|
||||
// to_ascii_consume and to_str_consume to not do a unnecessary copy.
|
||||
// (Actually, could just remove the to_str_* call, but needs an deriving(Ord) on
|
||||
// Ascii)
|
||||
let x = x.to_ascii().to_lower().to_str_ascii();
|
||||
let y = y.to_ascii().to_lower().to_str_ascii();
|
||||
x <= y
|
||||
}
|
||||
|
||||
let names1 = ~["joe bob", "Joe Bob", "Jack Brown", "JOE Bob",
|
||||
"Sally Mae", "JOE BOB", "Alex Andy"];
|
||||
let names2 = ~["Alex Andy", "Jack Brown", "joe bob", "Joe Bob",
|
||||
"JOE Bob", "JOE BOB", "Sally Mae"];
|
||||
let names3 = merge_sort(names1, ile);
|
||||
assert_eq!(names3, names2);
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod test_tim_sort {
|
||||
use sort::tim_sort;
|
||||
use core::rand::RngUtil;
|
||||
|
||||
struct CVal {
|
||||
val: float,
|
||||
}
|
||||
|
||||
impl Ord for CVal {
|
||||
fn lt(&self, other: &CVal) -> bool {
|
||||
let rng = rand::rng();
|
||||
if rng.gen::<float>() > 0.995 { fail!("It's happening!!!"); }
|
||||
(*self).val < other.val
|
||||
}
|
||||
fn le(&self, other: &CVal) -> bool { (*self).val <= other.val }
|
||||
fn gt(&self, other: &CVal) -> bool { (*self).val > other.val }
|
||||
fn ge(&self, other: &CVal) -> bool { (*self).val >= other.val }
|
||||
}
|
||||
|
||||
fn check_sort(v1: &mut [int], v2: &mut [int]) {
|
||||
let len = vec::len::<int>(v1);
|
||||
tim_sort::<int>(v1);
|
||||
let mut i = 0u;
|
||||
while i < len {
|
||||
// debug!(v2[i]);
|
||||
assert_eq!(v2[i], v1[i]);
|
||||
i += 1u;
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test() {
|
||||
{
|
||||
let mut v1 = ~[3, 7, 4, 5, 2, 9, 5, 8];
|
||||
let mut v2 = ~[2, 3, 4, 5, 5, 7, 8, 9];
|
||||
check_sort(v1, v2);
|
||||
}
|
||||
{
|
||||
let mut v1 = ~[1, 1, 1];
|
||||
let mut v2 = ~[1, 1, 1];
|
||||
check_sort(v1, v2);
|
||||
}
|
||||
{
|
||||
let mut v1: ~[int] = ~[];
|
||||
let mut v2: ~[int] = ~[];
|
||||
check_sort(v1, v2);
|
||||
}
|
||||
{ let mut v1 = ~[9]; let mut v2 = ~[9]; check_sort(v1, v2); }
|
||||
{
|
||||
let mut v1 = ~[9, 3, 3, 3, 9];
|
||||
let mut v2 = ~[3, 3, 3, 9, 9];
|
||||
check_sort(v1, v2);
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[should_fail]
|
||||
#[cfg(unix)]
|
||||
fn crash_test() {
|
||||
let rng = rand::rng();
|
||||
let mut arr = do vec::from_fn(1000) |_i| {
|
||||
CVal { val: rng.gen() }
|
||||
};
|
||||
|
||||
tim_sort(arr);
|
||||
fail!("Guarantee the fail");
|
||||
}
|
||||
|
||||
struct DVal { val: uint }
|
||||
|
||||
impl Ord for DVal {
|
||||
fn lt(&self, _x: &DVal) -> bool { true }
|
||||
fn le(&self, _x: &DVal) -> bool { true }
|
||||
fn gt(&self, _x: &DVal) -> bool { true }
|
||||
fn ge(&self, _x: &DVal) -> bool { true }
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_bad_Ord_impl() {
|
||||
let rng = rand::rng();
|
||||
let mut arr = do vec::from_fn(500) |_i| {
|
||||
DVal { val: rng.gen() }
|
||||
};
|
||||
|
||||
tim_sort(arr);
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod big_tests {
|
||||
use sort::*;
|
||||
use core::rand::RngUtil;
|
||||
|
||||
#[test]
|
||||
fn test_unique() {
|
||||
let low = 5;
|
||||
let high = 10;
|
||||
tabulate_unique(low, high);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_managed() {
|
||||
let low = 5;
|
||||
let high = 10;
|
||||
tabulate_managed(low, high);
|
||||
}
|
||||
|
||||
fn multiplyVec<T:Copy>(arr: &const [T], num: uint) -> ~[T] {
|
||||
let size = arr.len();
|
||||
let res = do vec::from_fn(num) |i| {
|
||||
arr[i % size]
|
||||
};
|
||||
res
|
||||
}
|
||||
|
||||
fn makeRange(n: uint) -> ~[uint] {
|
||||
let one = do vec::from_fn(n) |i| { i };
|
||||
let mut two = copy one;
|
||||
vec::reverse(two);
|
||||
vec::append(two, one)
|
||||
}
|
||||
|
||||
fn tabulate_unique(lo: uint, hi: uint) {
|
||||
fn isSorted<T:Ord>(arr: &const [T]) {
|
||||
for uint::range(0, arr.len()-1) |i| {
|
||||
if arr[i] > arr[i+1] {
|
||||
fail!("Array not sorted");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
let rng = rand::rng();
|
||||
|
||||
for uint::range(lo, hi) |i| {
|
||||
let n = 1 << i;
|
||||
let mut arr: ~[float] = do vec::from_fn(n) |_i| {
|
||||
rng.gen()
|
||||
};
|
||||
|
||||
tim_sort(arr); // *sort
|
||||
isSorted(arr);
|
||||
|
||||
vec::reverse(arr);
|
||||
tim_sort(arr); // \sort
|
||||
isSorted(arr);
|
||||
|
||||
tim_sort(arr); // /sort
|
||||
isSorted(arr);
|
||||
|
||||
for 3.times {
|
||||
let i1 = rng.gen_uint_range(0, n);
|
||||
let i2 = rng.gen_uint_range(0, n);
|
||||
vec::swap(arr, i1, i2);
|
||||
}
|
||||
tim_sort(arr); // 3sort
|
||||
isSorted(arr);
|
||||
|
||||
if n >= 10 {
|
||||
let size = arr.len();
|
||||
let mut idx = 1;
|
||||
while idx <= 10 {
|
||||
arr[size-idx] = rng.gen();
|
||||
idx += 1;
|
||||
}
|
||||
}
|
||||
tim_sort(arr); // +sort
|
||||
isSorted(arr);
|
||||
|
||||
for (n/100).times {
|
||||
let idx = rng.gen_uint_range(0, n);
|
||||
arr[idx] = rng.gen();
|
||||
}
|
||||
tim_sort(arr);
|
||||
isSorted(arr);
|
||||
|
||||
let mut arr = if n > 4 {
|
||||
let part = vec::slice(arr, 0, 4);
|
||||
multiplyVec(part, n)
|
||||
} else { arr };
|
||||
tim_sort(arr); // ~sort
|
||||
isSorted(arr);
|
||||
|
||||
let mut arr = vec::from_elem(n, -0.5);
|
||||
tim_sort(arr); // =sort
|
||||
isSorted(arr);
|
||||
|
||||
let half = n / 2;
|
||||
let mut arr = makeRange(half).map(|i| *i as float);
|
||||
tim_sort(arr); // !sort
|
||||
isSorted(arr);
|
||||
}
|
||||
}
|
||||
|
||||
fn tabulate_managed(lo: uint, hi: uint) {
|
||||
fn isSorted<T:Ord>(arr: &const [@T]) {
|
||||
for uint::range(0, arr.len()-1) |i| {
|
||||
if arr[i] > arr[i+1] {
|
||||
fail!("Array not sorted");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
let rng = rand::rng();
|
||||
|
||||
for uint::range(lo, hi) |i| {
|
||||
let n = 1 << i;
|
||||
let arr: ~[@float] = do vec::from_fn(n) |_i| {
|
||||
@rng.gen()
|
||||
};
|
||||
let mut arr = arr;
|
||||
|
||||
tim_sort(arr); // *sort
|
||||
isSorted(arr);
|
||||
|
||||
vec::reverse(arr);
|
||||
tim_sort(arr); // \sort
|
||||
isSorted(arr);
|
||||
|
||||
tim_sort(arr); // /sort
|
||||
isSorted(arr);
|
||||
|
||||
for 3.times {
|
||||
let i1 = rng.gen_uint_range(0, n);
|
||||
let i2 = rng.gen_uint_range(0, n);
|
||||
vec::swap(arr, i1, i2);
|
||||
}
|
||||
tim_sort(arr); // 3sort
|
||||
isSorted(arr);
|
||||
|
||||
if n >= 10 {
|
||||
let size = arr.len();
|
||||
let mut idx = 1;
|
||||
while idx <= 10 {
|
||||
arr[size-idx] = @rng.gen();
|
||||
idx += 1;
|
||||
}
|
||||
}
|
||||
tim_sort(arr); // +sort
|
||||
isSorted(arr);
|
||||
|
||||
for (n/100).times {
|
||||
let idx = rng.gen_uint_range(0, n);
|
||||
arr[idx] = @rng.gen();
|
||||
}
|
||||
tim_sort(arr);
|
||||
isSorted(arr);
|
||||
|
||||
let mut arr = if n > 4 {
|
||||
let part = vec::slice(arr, 0, 4);
|
||||
multiplyVec(part, n)
|
||||
} else { arr };
|
||||
tim_sort(arr); // ~sort
|
||||
isSorted(arr);
|
||||
|
||||
let mut arr = vec::from_elem(n, @(-0.5));
|
||||
tim_sort(arr); // =sort
|
||||
isSorted(arr);
|
||||
|
||||
let half = n / 2;
|
||||
let mut arr = makeRange(half).map(|i| @(*i as float));
|
||||
tim_sort(arr); // !sort
|
||||
isSorted(arr);
|
||||
}
|
||||
}
|
||||
|
||||
struct LVal<'self> {
|
||||
val: uint,
|
||||
key: &'self fn(@uint),
|
||||
}
|
||||
|
||||
#[unsafe_destructor]
|
||||
impl<'self> Drop for LVal<'self> {
|
||||
fn finalize(&self) {
|
||||
let x = unsafe { local_data::local_data_get(self.key) };
|
||||
match x {
|
||||
Some(@y) => {
|
||||
unsafe {
|
||||
local_data::local_data_set(self.key, @(y+1));
|
||||
}
|
||||
}
|
||||
_ => fail!("Expected key to work"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<'self> Ord for LVal<'self> {
|
||||
fn lt<'a>(&self, other: &'a LVal<'self>) -> bool {
|
||||
(*self).val < other.val
|
||||
}
|
||||
fn le<'a>(&self, other: &'a LVal<'self>) -> bool {
|
||||
(*self).val <= other.val
|
||||
}
|
||||
fn gt<'a>(&self, other: &'a LVal<'self>) -> bool {
|
||||
(*self).val > other.val
|
||||
}
|
||||
fn ge<'a>(&self, other: &'a LVal<'self>) -> bool {
|
||||
(*self).val >= other.val
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Local Variables:
|
||||
// mode: rust;
|
||||
// fill-column: 78;
|
||||
// indent-tabs-mode: nil
|
||||
// c-basic-offset: 4
|
||||
// buffer-file-coding-system: utf-8-unix
|
||||
// End:
|
||||
@@ -63,18 +63,12 @@ pub mod flatpipes;
|
||||
|
||||
pub mod bitv;
|
||||
pub mod deque;
|
||||
#[cfg(not(stage0))]
|
||||
pub mod fun_treemap;
|
||||
pub mod list;
|
||||
pub mod priority_queue;
|
||||
pub mod rope;
|
||||
pub mod smallintmap;
|
||||
|
||||
#[cfg(stage0)]
|
||||
#[path="sort_stage0.rs"]
|
||||
pub mod sort;
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
pub mod sort;
|
||||
|
||||
pub mod dlist;
|
||||
|
||||
@@ -105,45 +105,21 @@ fn contains_key(&self, key: &K) -> bool {
|
||||
}
|
||||
|
||||
/// Visit all key-value pairs in order
|
||||
#[cfg(stage0)]
|
||||
fn each<'a>(&'a self, f: &fn(&'a K, &'a V) -> bool) {
|
||||
each(&self.root, f);
|
||||
}
|
||||
/// Visit all key-value pairs in order
|
||||
#[cfg(not(stage0))]
|
||||
fn each<'a>(&'a self, f: &fn(&'a K, &'a V) -> bool) -> bool {
|
||||
each(&self.root, f)
|
||||
}
|
||||
|
||||
/// Visit all keys in order
|
||||
#[cfg(stage0)]
|
||||
fn each_key(&self, f: &fn(&K) -> bool) {
|
||||
self.each(|k, _| f(k))
|
||||
}
|
||||
/// Visit all keys in order
|
||||
#[cfg(not(stage0))]
|
||||
fn each_key(&self, f: &fn(&K) -> bool) -> bool {
|
||||
self.each(|k, _| f(k))
|
||||
}
|
||||
|
||||
/// Visit all values in order
|
||||
#[cfg(stage0)]
|
||||
fn each_value<'a>(&'a self, f: &fn(&'a V) -> bool) {
|
||||
self.each(|_, v| f(v))
|
||||
}
|
||||
/// Visit all values in order
|
||||
#[cfg(not(stage0))]
|
||||
fn each_value<'a>(&'a self, f: &fn(&'a V) -> bool) -> bool {
|
||||
self.each(|_, v| f(v))
|
||||
}
|
||||
|
||||
/// Iterate over the map and mutate the contained values
|
||||
#[cfg(stage0)]
|
||||
fn mutate_values(&mut self, f: &fn(&K, &mut V) -> bool) {
|
||||
mutate_values(&mut self.root, f);
|
||||
}
|
||||
/// Iterate over the map and mutate the contained values
|
||||
#[cfg(not(stage0))]
|
||||
fn mutate_values(&mut self, f: &fn(&K, &mut V) -> bool) -> bool {
|
||||
mutate_values(&mut self.root, f)
|
||||
}
|
||||
@@ -201,33 +177,6 @@ fn pop(&mut self, key: &K) -> Option<V> {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
pub impl<K: TotalOrd, V> TreeMap<K, V> {
|
||||
/// Create an empty TreeMap
|
||||
fn new() -> TreeMap<K, V> { TreeMap{root: None, length: 0} }
|
||||
|
||||
/// Visit all key-value pairs in reverse order
|
||||
fn each_reverse<'a>(&'a self, f: &fn(&'a K, &'a V) -> bool) {
|
||||
each_reverse(&self.root, f);
|
||||
}
|
||||
|
||||
/// Visit all keys in reverse order
|
||||
fn each_key_reverse(&self, f: &fn(&K) -> bool) {
|
||||
self.each_reverse(|k, _| f(k))
|
||||
}
|
||||
|
||||
/// Visit all values in reverse order
|
||||
fn each_value_reverse(&self, f: &fn(&V) -> bool) {
|
||||
self.each_reverse(|_, v| f(v))
|
||||
}
|
||||
|
||||
/// Get a lazy iterator over the key-value pairs in the map.
|
||||
/// Requires that it be frozen (immutable).
|
||||
fn iter<'a>(&'a self) -> TreeMapIterator<'a, K, V> {
|
||||
TreeMapIterator{stack: ~[], node: &self.root}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
pub impl<K: TotalOrd, V> TreeMap<K, V> {
|
||||
/// Create an empty TreeMap
|
||||
fn new() -> TreeMap<K, V> { TreeMap{root: None, length: 0} }
|
||||
@@ -297,11 +246,6 @@ pub struct TreeSet<T> {
|
||||
impl<T: TotalOrd> BaseIter<T> for TreeSet<T> {
|
||||
/// Visit all values in order
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
fn each(&self, f: &fn(&T) -> bool) { self.map.each_key(f) }
|
||||
/// Visit all values in order
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
fn each(&self, f: &fn(&T) -> bool) -> bool { self.map.each_key(f) }
|
||||
#[inline(always)]
|
||||
fn size_hint(&self) -> Option<uint> { Some(self.len()) }
|
||||
@@ -309,13 +253,6 @@ fn size_hint(&self) -> Option<uint> { Some(self.len()) }
|
||||
|
||||
impl<T: TotalOrd> ReverseIter<T> for TreeSet<T> {
|
||||
/// Visit all values in reverse order
|
||||
#[cfg(stage0)]
|
||||
#[inline(always)]
|
||||
fn each_reverse(&self, f: &fn(&T) -> bool) {
|
||||
self.map.each_key_reverse(f)
|
||||
}
|
||||
/// Visit all values in reverse order
|
||||
#[cfg(not(stage0))]
|
||||
#[inline(always)]
|
||||
fn each_reverse(&self, f: &fn(&T) -> bool) -> bool {
|
||||
self.map.each_key_reverse(f)
|
||||
@@ -424,37 +361,6 @@ fn is_superset(&self, other: &TreeSet<T>) -> bool {
|
||||
}
|
||||
|
||||
/// Visit the values (in-order) representing the difference
|
||||
#[cfg(stage0)]
|
||||
fn difference(&self, other: &TreeSet<T>, f: &fn(&T) -> bool) {
|
||||
let mut x = self.iter();
|
||||
let mut y = other.iter();
|
||||
|
||||
let mut a = x.next();
|
||||
let mut b = y.next();
|
||||
|
||||
while a.is_some() {
|
||||
if b.is_none() {
|
||||
return do a.while_some() |a1| {
|
||||
if f(a1) { x.next() } else { None }
|
||||
}
|
||||
}
|
||||
|
||||
let a1 = a.unwrap();
|
||||
let b1 = b.unwrap();
|
||||
|
||||
let cmp = a1.cmp(b1);
|
||||
|
||||
if cmp == Less {
|
||||
if !f(a1) { return }
|
||||
a = x.next();
|
||||
} else {
|
||||
if cmp == Equal { a = x.next() }
|
||||
b = y.next();
|
||||
}
|
||||
}
|
||||
}
|
||||
/// Visit the values (in-order) representing the difference
|
||||
#[cfg(not(stage0))]
|
||||
fn difference(&self, other: &TreeSet<T>, f: &fn(&T) -> bool) -> bool {
|
||||
let mut x = self.iter();
|
||||
let mut y = other.iter();
|
||||
@@ -484,45 +390,6 @@ fn difference(&self, other: &TreeSet<T>, f: &fn(&T) -> bool) -> bool {
|
||||
}
|
||||
|
||||
/// Visit the values (in-order) representing the symmetric difference
|
||||
#[cfg(stage0)]
|
||||
fn symmetric_difference(&self, other: &TreeSet<T>,
|
||||
f: &fn(&T) -> bool) {
|
||||
let mut x = self.iter();
|
||||
let mut y = other.iter();
|
||||
|
||||
let mut a = x.next();
|
||||
let mut b = y.next();
|
||||
|
||||
while a.is_some() {
|
||||
if b.is_none() {
|
||||
return do a.while_some() |a1| {
|
||||
if f(a1) { x.next() } else { None }
|
||||
}
|
||||
}
|
||||
|
||||
let a1 = a.unwrap();
|
||||
let b1 = b.unwrap();
|
||||
|
||||
let cmp = a1.cmp(b1);
|
||||
|
||||
if cmp == Less {
|
||||
if !f(a1) { return }
|
||||
a = x.next();
|
||||
} else {
|
||||
if cmp == Greater {
|
||||
if !f(b1) { return }
|
||||
} else {
|
||||
a = x.next();
|
||||
}
|
||||
b = y.next();
|
||||
}
|
||||
}
|
||||
do b.while_some |b1| {
|
||||
if f(b1) { y.next() } else { None }
|
||||
}
|
||||
}
|
||||
/// Visit the values (in-order) representing the symmetric difference
|
||||
#[cfg(not(stage0))]
|
||||
fn symmetric_difference(&self, other: &TreeSet<T>,
|
||||
f: &fn(&T) -> bool) -> bool {
|
||||
let mut x = self.iter();
|
||||
@@ -557,32 +424,6 @@ fn symmetric_difference(&self, other: &TreeSet<T>,
|
||||
}
|
||||
|
||||
/// Visit the values (in-order) representing the intersection
|
||||
#[cfg(stage0)]
|
||||
fn intersection(&self, other: &TreeSet<T>, f: &fn(&T) -> bool) {
|
||||
let mut x = self.iter();
|
||||
let mut y = other.iter();
|
||||
|
||||
let mut a = x.next();
|
||||
let mut b = y.next();
|
||||
|
||||
while a.is_some() && b.is_some() {
|
||||
let a1 = a.unwrap();
|
||||
let b1 = b.unwrap();
|
||||
|
||||
let cmp = a1.cmp(b1);
|
||||
|
||||
if cmp == Less {
|
||||
a = x.next();
|
||||
} else {
|
||||
if cmp == Equal {
|
||||
if !f(a1) { return }
|
||||
}
|
||||
b = y.next();
|
||||
}
|
||||
}
|
||||
}
|
||||
/// Visit the values (in-order) representing the intersection
|
||||
#[cfg(not(stage0))]
|
||||
fn intersection(&self, other: &TreeSet<T>, f: &fn(&T) -> bool) -> bool {
|
||||
let mut x = self.iter();
|
||||
let mut y = other.iter();
|
||||
@@ -609,43 +450,6 @@ fn intersection(&self, other: &TreeSet<T>, f: &fn(&T) -> bool) -> bool {
|
||||
}
|
||||
|
||||
/// Visit the values (in-order) representing the union
|
||||
#[cfg(stage0)]
|
||||
fn union(&self, other: &TreeSet<T>, f: &fn(&T) -> bool) {
|
||||
let mut x = self.iter();
|
||||
let mut y = other.iter();
|
||||
|
||||
let mut a = x.next();
|
||||
let mut b = y.next();
|
||||
|
||||
while a.is_some() {
|
||||
if b.is_none() {
|
||||
return do a.while_some() |a1| {
|
||||
if f(a1) { x.next() } else { None }
|
||||
}
|
||||
}
|
||||
|
||||
let a1 = a.unwrap();
|
||||
let b1 = b.unwrap();
|
||||
|
||||
let cmp = a1.cmp(b1);
|
||||
|
||||
if cmp == Greater {
|
||||
if !f(b1) { return }
|
||||
b = y.next();
|
||||
} else {
|
||||
if !f(a1) { return }
|
||||
if cmp == Equal {
|
||||
b = y.next();
|
||||
}
|
||||
a = x.next();
|
||||
}
|
||||
}
|
||||
do b.while_some |b1| {
|
||||
if f(b1) { y.next() } else { None }
|
||||
}
|
||||
}
|
||||
/// Visit the values (in-order) representing the union
|
||||
#[cfg(not(stage0))]
|
||||
fn union(&self, other: &TreeSet<T>, f: &fn(&T) -> bool) -> bool {
|
||||
let mut x = self.iter();
|
||||
let mut y = other.iter();
|
||||
@@ -713,24 +517,12 @@ fn new(key: K, value: V) -> TreeNode<K, V> {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn each<'r, K: TotalOrd, V>(_: &'r Option<~TreeNode<K, V>>,
|
||||
_: &fn(&'r K, &'r V) -> bool) -> bool {
|
||||
fail!("don't use me in stage0!")
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each<'r, K: TotalOrd, V>(node: &'r Option<~TreeNode<K, V>>,
|
||||
f: &fn(&'r K, &'r V) -> bool) -> bool {
|
||||
node.each(|x| each(&x.left, f) && f(&x.key, &x.value) &&
|
||||
each(&x.right, f))
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn each_reverse<'r, K: TotalOrd, V>(_: &'r Option<~TreeNode<K, V>>,
|
||||
_: &fn(&'r K, &'r V) -> bool) -> bool {
|
||||
fail!("don't use me in stage0!")
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each_reverse<'r, K: TotalOrd, V>(node: &'r Option<~TreeNode<K, V>>,
|
||||
f: &fn(&'r K, &'r V) -> bool) -> bool {
|
||||
node.each(|x| each_reverse(&x.right, f) && f(&x.key, &x.value) &&
|
||||
|
||||
@@ -97,17 +97,6 @@ struct WorkKey {
|
||||
name: ~str
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for WorkKey {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
let mut flag = true;
|
||||
self.kind.iter_bytes(lsb0, |bytes| {flag = f(bytes); flag});
|
||||
if !flag { return; }
|
||||
self.name.iter_bytes(lsb0, f);
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for WorkKey {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
|
||||
@@ -79,20 +79,6 @@ pub struct AbiSet {
|
||||
AbiData {abi: RustIntrinsic, name: "rust-intrinsic", abi_arch: RustArch},
|
||||
];
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn each_abi(op: &fn(abi: Abi) -> bool) {
|
||||
/*!
|
||||
*
|
||||
* Iterates through each of the defined ABIs.
|
||||
*/
|
||||
|
||||
for AbiDatas.each |abi_data| {
|
||||
if !op(abi_data.abi) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each_abi(op: &fn(abi: Abi) -> bool) -> bool {
|
||||
/*!
|
||||
*
|
||||
@@ -197,17 +183,6 @@ fn add(&mut self, abi: Abi) {
|
||||
self.bits |= (1 << abi.index());
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
fn each(&self, op: &fn(abi: Abi) -> bool) {
|
||||
for each_abi |abi| {
|
||||
if self.contains(abi) {
|
||||
if !op(abi) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each(&self, op: &fn(abi: Abi) -> bool) -> bool {
|
||||
each_abi(|abi| !self.contains(abi) || op(abi))
|
||||
}
|
||||
@@ -265,26 +240,12 @@ fn check_valid(&self) -> Option<(Abi, Abi)> {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for Abi {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
self.index().iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for Abi {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
self.index().iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for AbiSet {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
self.bits.iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for AbiSet {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
self.bits.iter_bytes(lsb0, f)
|
||||
|
||||
@@ -95,14 +95,6 @@ fn decode(d: &mut D) -> ident {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for ident {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
self.repr.iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for ident {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
@@ -120,14 +112,6 @@ pub struct Lifetime {
|
||||
ident: ident
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for Lifetime {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
to_bytes::iter_bytes_3(&self.id, &self.span, &self.ident, lsb0, f)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for Lifetime {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
to_bytes::iter_bytes_3(&self.id, &self.span, &self.ident, lsb0, f)
|
||||
@@ -279,21 +263,6 @@ pub enum binding_mode {
|
||||
bind_infer
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for binding_mode {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
match *self {
|
||||
bind_by_copy => 0u8.iter_bytes(lsb0, f),
|
||||
|
||||
bind_by_ref(ref m) =>
|
||||
to_bytes::iter_bytes_2(&1u8, m, lsb0, f),
|
||||
|
||||
bind_infer =>
|
||||
2u8.iter_bytes(lsb0, f),
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for binding_mode {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
match *self {
|
||||
@@ -334,13 +303,6 @@ pub enum pat_ {
|
||||
#[deriving(Eq, Encodable, Decodable)]
|
||||
pub enum mutability { m_mutbl, m_imm, m_const, }
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for mutability {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
(*self as u8).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for mutability {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
(*self as u8).iter_bytes(lsb0, f)
|
||||
@@ -354,13 +316,6 @@ pub enum Sigil {
|
||||
ManagedSigil
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for Sigil {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
(*self as uint).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for Sigil {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
(*self as uint).iter_bytes(lsb0, f)
|
||||
@@ -718,13 +673,6 @@ fn to_str(&self) -> ~str {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for int_ty {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
(*self as u8).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for int_ty {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
(*self as u8).iter_bytes(lsb0, f)
|
||||
@@ -740,13 +688,6 @@ fn to_str(&self) -> ~str {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for uint_ty {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
(*self as u8).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for uint_ty {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
(*self as u8).iter_bytes(lsb0, f)
|
||||
@@ -762,13 +703,6 @@ fn to_str(&self) -> ~str {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for float_ty {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
(*self as u8).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for float_ty {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
(*self as u8).iter_bytes(lsb0, f)
|
||||
@@ -808,13 +742,6 @@ fn to_str(&self) -> ~str {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for Onceness {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
(*self as uint).iter_bytes(lsb0, f);
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for Onceness {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
(*self as uint).iter_bytes(lsb0, f)
|
||||
@@ -861,13 +788,6 @@ pub enum ty_ {
|
||||
ty_infer,
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for Ty {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
to_bytes::iter_bytes_2(&self.span.lo, &self.span.hi, lsb0, f);
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for Ty {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
to_bytes::iter_bytes_2(&self.span.lo, &self.span.hi, lsb0, f)
|
||||
@@ -925,13 +845,6 @@ fn to_str(&self) -> ~str {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for purity {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
(*self as u8).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for purity {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
(*self as u8).iter_bytes(lsb0, f)
|
||||
@@ -945,13 +858,6 @@ pub enum ret_style {
|
||||
return_val, // everything else
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for ret_style {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
(*self as u8).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for ret_style {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
(*self as u8).iter_bytes(lsb0, f)
|
||||
@@ -967,20 +873,6 @@ pub enum explicit_self_ {
|
||||
sty_uniq(mutability) // `~self`
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for explicit_self_ {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
match *self {
|
||||
sty_static => 0u8.iter_bytes(lsb0, f),
|
||||
sty_value => 1u8.iter_bytes(lsb0, f),
|
||||
sty_region(ref lft, ref mutbl) => to_bytes::iter_bytes_3(&2u8, &lft, mutbl, lsb0, f),
|
||||
sty_box(ref mutbl) => to_bytes::iter_bytes_2(&3u8, mutbl, lsb0, f),
|
||||
sty_uniq(ref mutbl) => to_bytes::iter_bytes_2(&4u8, mutbl, lsb0, f),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for explicit_self_ {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
match *self {
|
||||
|
||||
@@ -191,15 +191,6 @@ pub fn is_call_expr(e: @expr) -> bool {
|
||||
}
|
||||
|
||||
// This makes def_id hashable
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for def_id {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
to_bytes::iter_bytes_2(&self.crate, &self.node, lsb0, f);
|
||||
}
|
||||
}
|
||||
// This makes def_id hashable
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for def_id {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
|
||||
@@ -65,13 +65,6 @@ fn sub(&self, rhs: &BytePos) -> BytePos {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for BytePos {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
(**self).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for BytePos {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
(**self).iter_bytes(lsb0, f)
|
||||
@@ -90,13 +83,6 @@ fn ge(&self, other: &CharPos) -> bool { **self >= **other }
|
||||
fn gt(&self, other: &CharPos) -> bool { **self > **other }
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for CharPos {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
(**self).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for CharPos {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
(**self).iter_bytes(lsb0, f)
|
||||
@@ -150,14 +136,6 @@ fn decode(_d: &mut D) -> span {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for span {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
to_bytes::iter_bytes_3(&self.lo, &self.hi, &self.expn_info, lsb0, f);
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for span {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
to_bytes::iter_bytes_3(&self.lo, &self.hi, &self.expn_info, lsb0, f)
|
||||
@@ -211,14 +189,6 @@ pub struct FileMapAndLine {fm: @FileMap, line: uint}
|
||||
pub struct FileMapAndBytePos {fm: @FileMap, pos: BytePos}
|
||||
pub struct NameAndSpan {name: ~str, span: Option<span>}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for NameAndSpan {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
to_bytes::iter_bytes_2(&self.name, &self.span, lsb0, f)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for NameAndSpan {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
to_bytes::iter_bytes_2(&self.name, &self.span, lsb0, f)
|
||||
@@ -230,14 +200,6 @@ pub struct CallInfo {
|
||||
callee: NameAndSpan
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for CallInfo {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
to_bytes::iter_bytes_2(&self.call_site, &self.callee, lsb0, f)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for CallInfo {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
to_bytes::iter_bytes_2(&self.call_site, &self.callee, lsb0, f)
|
||||
@@ -249,16 +211,6 @@ pub enum ExpnInfo {
|
||||
ExpandedFrom(CallInfo)
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for ExpnInfo {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
match *self {
|
||||
ExpandedFrom(ref call_info) => to_bytes::iter_bytes_2(&0u8, call_info, lsb0, f)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for ExpnInfo {
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
match *self {
|
||||
|
||||
@@ -100,21 +100,6 @@ fn to_ty(&self, cx: @ext_ctxt) -> @ast::Ty {
|
||||
|
||||
/// Iterate over the states that can be reached in one message
|
||||
/// from this state.
|
||||
#[cfg(stage0)]
|
||||
fn reachable(&self, f: &fn(state) -> bool) {
|
||||
for self.messages.each |m| {
|
||||
match *m {
|
||||
message(_, _, _, _, Some(next_state { state: ref id, _ })) => {
|
||||
let state = self.proto.get_state((*id));
|
||||
if !f(state) { break }
|
||||
}
|
||||
_ => ()
|
||||
}
|
||||
}
|
||||
}
|
||||
/// Iterate over the states that can be reached in one message
|
||||
/// from this state.
|
||||
#[cfg(not(stage0))]
|
||||
fn reachable(&self, f: &fn(state) -> bool) -> bool {
|
||||
for self.messages.each |m| {
|
||||
match *m {
|
||||
|
||||
@@ -131,14 +131,6 @@ fn ne(&self, other: &OptVec<A>) -> bool {
|
||||
}
|
||||
|
||||
impl<A> BaseIter<A> for OptVec<A> {
|
||||
#[cfg(stage0)]
|
||||
fn each(&self, blk: &fn(v: &A) -> bool) {
|
||||
match *self {
|
||||
Empty => {}
|
||||
Vec(ref v) => v.each(blk)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
fn each(&self, blk: &fn(v: &A) -> bool) -> bool {
|
||||
match *self {
|
||||
Empty => true,
|
||||
@@ -153,12 +145,6 @@ fn size_hint(&self) -> Option<uint> {
|
||||
|
||||
impl<A> old_iter::ExtendedIter<A> for OptVec<A> {
|
||||
#[inline(always)]
|
||||
#[cfg(stage0)]
|
||||
fn eachi(&self, blk: &fn(v: uint, v: &A) -> bool) {
|
||||
old_iter::eachi(self, blk)
|
||||
}
|
||||
#[inline(always)]
|
||||
#[cfg(not(stage0))]
|
||||
fn eachi(&self, blk: &fn(v: uint, v: &A) -> bool) -> bool {
|
||||
old_iter::eachi(self, blk)
|
||||
}
|
||||
|
||||
@@ -64,14 +64,6 @@ pub enum ObsoleteSyntax {
|
||||
ObsoleteNamedExternModule,
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl to_bytes::IterBytes for ObsoleteSyntax {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
(*self as uint).iter_bytes(lsb0, f);
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl to_bytes::IterBytes for ObsoleteSyntax {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
|
||||
@@ -349,14 +349,6 @@ impl<'self> Equiv<@~str> for StringRef<'self> {
|
||||
fn equiv(&self, other: &@~str) -> bool { str::eq_slice(**self, **other) }
|
||||
}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl<'self> to_bytes::IterBytes for StringRef<'self> {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) {
|
||||
(**self).iter_bytes(lsb0, f);
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl<'self> to_bytes::IterBytes for StringRef<'self> {
|
||||
#[inline(always)]
|
||||
fn iter_bytes(&self, lsb0: bool, f: to_bytes::Cb) -> bool {
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
S 2013-05-17 2d28d64
|
||||
macos-i386 abadafb33c9f858543351c822fb468195163559f
|
||||
macos-x86_64 4a484693f73bcc8ce2a85708fd4f0c3f6e34969d
|
||||
winnt-i386 558dac018b2b6dbb23841772e1f4b9591558850c
|
||||
freebsd-x86_64 59ca6fc1eae2d160525c705928d551dd8993e01c
|
||||
linux-i386 2d3e61efe30f55176c72b3dbe31d693630f59abd
|
||||
linux-x86_64 86ecc1833df8e28d08ff3a9a952ec424abdcb157
|
||||
|
||||
S 2013-05-03 213f7b2
|
||||
macos-i386 0bf8b88ea01cc4cdd81ac4db1d301ea9b3371f13
|
||||
macos-x86_64 2da3990639ab5a9c9d51b3478c437cb459de84e3
|
||||
|
||||
Reference in New Issue
Block a user