2013-09-14 00:10:48 -05:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-03 18:48:01 -06:00
|
|
|
// 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.
|
|
|
|
|
2012-09-04 13:37:29 -05:00
|
|
|
use ast::*;
|
2012-12-23 16:41:37 -06:00
|
|
|
use ast;
|
|
|
|
use ast_util;
|
2013-08-31 11:13:04 -05:00
|
|
|
use codemap::{Span, dummy_sp};
|
2013-05-24 21:35:29 -05:00
|
|
|
use opt_vec;
|
2013-01-08 21:37:25 -06:00
|
|
|
use parse::token;
|
2013-09-14 00:10:48 -05:00
|
|
|
use visit::Visitor;
|
2012-12-23 16:41:37 -06:00
|
|
|
use visit;
|
|
|
|
|
2013-06-24 19:40:33 -05:00
|
|
|
use std::hashmap::HashMap;
|
|
|
|
use std::int;
|
2013-07-10 16:43:25 -05:00
|
|
|
use std::local_data;
|
Replaces the free-standing functions in f32, &c.
The free-standing functions in f32, f64, i8, i16, i32, i64, u8, u16,
u32, u64, float, int, and uint are replaced with generic functions in
num instead.
If you were previously using any of those functions, just replace them
with the corresponding function with the same name in num.
Note: If you were using a function that corresponds to an operator, use
the operator instead.
2013-07-08 11:05:17 -05:00
|
|
|
use std::num;
|
2013-06-24 19:40:33 -05:00
|
|
|
use std::option;
|
2013-04-03 12:28:14 -05:00
|
|
|
|
2013-09-01 19:50:59 -05:00
|
|
|
pub fn path_name_i(idents: &[Ident]) -> ~str {
|
2012-06-14 20:46:33 -05:00
|
|
|
// FIXME: Bad copies (#2543 -- same for everything else that says "bad")
|
2013-06-12 12:02:55 -05:00
|
|
|
idents.map(|i| token::interner_get(i.name)).connect("::")
|
2012-06-10 02:49:59 -05:00
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2013-05-29 18:21:04 -05:00
|
|
|
// totally scary function: ignores all but the last element, should have
|
|
|
|
// a different name
|
2013-09-01 19:50:59 -05:00
|
|
|
pub fn path_to_ident(path: &Path) -> Ident {
|
2013-08-07 11:47:28 -05:00
|
|
|
path.segments.last().identifier
|
2013-06-27 19:41:35 -05:00
|
|
|
}
|
2012-05-22 00:41:59 -05:00
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn local_def(id: NodeId) -> DefId {
|
|
|
|
ast::DefId { crate: LOCAL_CRATE, node: id }
|
2013-01-13 13:05:40 -06:00
|
|
|
}
|
2012-03-21 14:42:34 -05:00
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn is_local(did: ast::DefId) -> bool { did.crate == LOCAL_CRATE }
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn stmt_id(s: &Stmt) -> NodeId {
|
2012-08-06 14:34:08 -05:00
|
|
|
match s.node {
|
2013-09-01 20:45:37 -05:00
|
|
|
StmtDecl(_, id) => id,
|
|
|
|
StmtExpr(_, id) => id,
|
|
|
|
StmtSemi(_, id) => id,
|
2013-09-27 23:01:58 -05:00
|
|
|
StmtMac(*) => fail2!("attempted to analyze unexpanded stmt")
|
2012-02-14 17:21:53 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn variant_def_ids(d: Def) -> Option<(DefId, DefId)> {
|
2012-08-06 14:34:08 -05:00
|
|
|
match d {
|
2013-09-08 19:36:01 -05:00
|
|
|
DefVariant(enum_id, var_id, _) => {
|
2013-05-02 17:38:19 -05:00
|
|
|
Some((enum_id, var_id))
|
2012-08-03 21:59:04 -05:00
|
|
|
}
|
2013-05-02 17:38:19 -05:00
|
|
|
_ => None
|
2012-08-03 21:59:04 -05:00
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn def_id_of_def(d: Def) -> DefId {
|
2012-08-06 14:34:08 -05:00
|
|
|
match d {
|
2013-09-01 20:45:37 -05:00
|
|
|
DefFn(id, _) | DefStaticMethod(id, _, _) | DefMod(id) |
|
|
|
|
DefForeignMod(id) | DefStatic(id, _) |
|
2013-09-08 19:36:01 -05:00
|
|
|
DefVariant(_, id, _) | DefTy(id) | DefTyParam(id, _) |
|
2013-09-01 20:45:37 -05:00
|
|
|
DefUse(id) | DefStruct(id) | DefTrait(id) | DefMethod(id, _) => {
|
2012-08-03 21:59:04 -05:00
|
|
|
id
|
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
DefArg(id, _) | DefLocal(id, _) | DefSelf(id) | DefSelfTy(id)
|
|
|
|
| DefUpvar(id, _, _, _) | DefBinding(id, _) | DefRegion(id)
|
|
|
|
| DefTyParamBinder(id) | DefLabel(id) => {
|
2012-02-27 18:05:17 -06:00
|
|
|
local_def(id)
|
|
|
|
}
|
|
|
|
|
2013-09-27 23:01:58 -05:00
|
|
|
DefPrimTy(_) => fail2!()
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn binop_to_str(op: BinOp) -> ~str {
|
2012-08-06 14:34:08 -05:00
|
|
|
match op {
|
2013-09-01 20:45:37 -05:00
|
|
|
BiAdd => return ~"+",
|
|
|
|
BiSub => return ~"-",
|
|
|
|
BiMul => return ~"*",
|
|
|
|
BiDiv => return ~"/",
|
|
|
|
BiRem => return ~"%",
|
|
|
|
BiAnd => return ~"&&",
|
|
|
|
BiOr => return ~"||",
|
|
|
|
BiBitXor => return ~"^",
|
|
|
|
BiBitAnd => return ~"&",
|
|
|
|
BiBitOr => return ~"|",
|
|
|
|
BiShl => return ~"<<",
|
|
|
|
BiShr => return ~">>",
|
|
|
|
BiEq => return ~"==",
|
|
|
|
BiLt => return ~"<",
|
|
|
|
BiLe => return ~"<=",
|
|
|
|
BiNe => return ~"!=",
|
|
|
|
BiGe => return ~">=",
|
|
|
|
BiGt => return ~">"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn binop_to_method_name(op: BinOp) -> Option<~str> {
|
2012-08-06 14:34:08 -05:00
|
|
|
match op {
|
2013-09-01 20:45:37 -05:00
|
|
|
BiAdd => return Some(~"add"),
|
|
|
|
BiSub => return Some(~"sub"),
|
|
|
|
BiMul => return Some(~"mul"),
|
|
|
|
BiDiv => return Some(~"div"),
|
|
|
|
BiRem => return Some(~"rem"),
|
|
|
|
BiBitXor => return Some(~"bitxor"),
|
|
|
|
BiBitAnd => return Some(~"bitand"),
|
|
|
|
BiBitOr => return Some(~"bitor"),
|
|
|
|
BiShl => return Some(~"shl"),
|
|
|
|
BiShr => return Some(~"shr"),
|
|
|
|
BiLt => return Some(~"lt"),
|
|
|
|
BiLe => return Some(~"le"),
|
|
|
|
BiGe => return Some(~"ge"),
|
|
|
|
BiGt => return Some(~"gt"),
|
|
|
|
BiEq => return Some(~"eq"),
|
|
|
|
BiNe => return Some(~"ne"),
|
|
|
|
BiAnd | BiOr => return None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn lazy_binop(b: BinOp) -> bool {
|
2012-08-06 14:34:08 -05:00
|
|
|
match b {
|
2013-09-01 20:45:37 -05:00
|
|
|
BiAnd => true,
|
|
|
|
BiOr => true,
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => false
|
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn is_shift_binop(b: BinOp) -> bool {
|
2012-08-06 14:34:08 -05:00
|
|
|
match b {
|
2013-09-01 20:45:37 -05:00
|
|
|
BiShl => true,
|
|
|
|
BiShr => true,
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => false
|
2012-02-21 23:01:33 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn unop_to_str(op: UnOp) -> ~str {
|
2012-08-06 14:34:08 -05:00
|
|
|
match op {
|
2013-09-01 20:45:37 -05:00
|
|
|
UnBox(mt) => if mt == MutMutable { ~"@mut " } else { ~"@" },
|
|
|
|
UnUniq => ~"~",
|
|
|
|
UnDeref => ~"*",
|
|
|
|
UnNot => ~"!",
|
|
|
|
UnNeg => ~"-"
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn is_path(e: @Expr) -> bool {
|
|
|
|
return match e.node { ExprPath(_) => true, _ => false };
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
2013-03-22 13:09:13 -05:00
|
|
|
pub fn int_ty_to_str(t: int_ty) -> ~str {
|
2012-08-06 14:34:08 -05:00
|
|
|
match t {
|
2012-08-03 21:59:04 -05:00
|
|
|
ty_i => ~"",
|
|
|
|
ty_i8 => ~"i8",
|
|
|
|
ty_i16 => ~"i16",
|
|
|
|
ty_i32 => ~"i32",
|
|
|
|
ty_i64 => ~"i64"
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-22 13:09:13 -05:00
|
|
|
pub fn int_ty_max(t: int_ty) -> u64 {
|
2012-08-06 14:34:08 -05:00
|
|
|
match t {
|
2012-08-03 21:59:04 -05:00
|
|
|
ty_i8 => 0x80u64,
|
|
|
|
ty_i16 => 0x8000u64,
|
2013-09-03 18:24:12 -05:00
|
|
|
ty_i | ty_i32 => 0x80000000u64, // actually ni about ty_i
|
2012-08-03 21:59:04 -05:00
|
|
|
ty_i64 => 0x8000000000000000u64
|
2011-12-07 14:53:05 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-22 13:09:13 -05:00
|
|
|
pub fn uint_ty_to_str(t: uint_ty) -> ~str {
|
2012-08-06 14:34:08 -05:00
|
|
|
match t {
|
2012-08-03 21:59:04 -05:00
|
|
|
ty_u => ~"u",
|
|
|
|
ty_u8 => ~"u8",
|
|
|
|
ty_u16 => ~"u16",
|
|
|
|
ty_u32 => ~"u32",
|
|
|
|
ty_u64 => ~"u64"
|
2011-12-07 14:06:12 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-22 13:09:13 -05:00
|
|
|
pub fn uint_ty_max(t: uint_ty) -> u64 {
|
2012-08-06 14:34:08 -05:00
|
|
|
match t {
|
2012-08-03 21:59:04 -05:00
|
|
|
ty_u8 => 0xffu64,
|
|
|
|
ty_u16 => 0xffffu64,
|
|
|
|
ty_u | ty_u32 => 0xffffffffu64, // actually ni about ty_u
|
|
|
|
ty_u64 => 0xffffffffffffffffu64
|
2011-12-07 14:53:05 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-22 13:09:13 -05:00
|
|
|
pub fn float_ty_to_str(t: float_ty) -> ~str {
|
2012-08-06 14:34:08 -05:00
|
|
|
match t { ty_f => ~"f", ty_f32 => ~"f32", ty_f64 => ~"f64" }
|
2011-12-07 14:06:12 -06:00
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn is_call_expr(e: @Expr) -> bool {
|
|
|
|
match e.node { ExprCall(*) => true, _ => false }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn block_from_expr(e: @Expr) -> Block {
|
|
|
|
let mut blk = default_block(~[], option::Some::<@Expr>(e), e.id);
|
2013-07-16 13:08:35 -05:00
|
|
|
blk.span = e.span;
|
|
|
|
return blk;
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
2013-01-29 15:54:06 -06:00
|
|
|
pub fn default_block(
|
2013-09-01 20:45:37 -05:00
|
|
|
stmts1: ~[@Stmt],
|
|
|
|
expr1: Option<@Expr>,
|
2013-07-27 03:25:59 -05:00
|
|
|
id1: NodeId
|
2013-07-19 00:38:55 -05:00
|
|
|
) -> Block {
|
|
|
|
ast::Block {
|
2013-01-14 21:35:08 -06:00
|
|
|
view_items: ~[],
|
|
|
|
stmts: stmts1,
|
|
|
|
expr: expr1,
|
|
|
|
id: id1,
|
2013-07-27 03:25:59 -05:00
|
|
|
rules: DefaultBlock,
|
2013-07-16 13:08:35 -05:00
|
|
|
span: dummy_sp(),
|
2013-01-14 21:35:08 -06:00
|
|
|
}
|
2011-08-25 19:42:38 -05:00
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2013-09-01 19:50:59 -05:00
|
|
|
pub fn ident_to_path(s: Span, identifier: Ident) -> Path {
|
2013-08-07 11:47:28 -05:00
|
|
|
ast::Path {
|
|
|
|
span: s,
|
|
|
|
global: false,
|
|
|
|
segments: ~[
|
|
|
|
ast::PathSegment {
|
|
|
|
identifier: identifier,
|
|
|
|
lifetime: None,
|
|
|
|
types: opt_vec::Empty,
|
|
|
|
}
|
|
|
|
],
|
|
|
|
}
|
2012-01-14 18:05:07 -06:00
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn ident_to_pat(id: NodeId, s: Span, i: Ident) -> @Pat {
|
|
|
|
@ast::Pat { id: id,
|
|
|
|
node: PatIdent(BindInfer, ident_to_path(s, i), None),
|
2013-01-14 22:52:28 -06:00
|
|
|
span: s }
|
2012-11-06 20:41:06 -06:00
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn is_unguarded(a: &Arm) -> bool {
|
2012-08-06 14:34:08 -05:00
|
|
|
match a.guard {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => true,
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => false
|
2012-01-30 23:00:57 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn unguarded_pat(a: &Arm) -> Option<~[@Pat]> {
|
2013-07-02 14:47:32 -05:00
|
|
|
if is_unguarded(a) {
|
|
|
|
Some(/* FIXME (#2543) */ a.pats.clone())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2012-01-30 23:00:57 -06:00
|
|
|
}
|
|
|
|
|
2013-01-29 15:54:06 -06:00
|
|
|
pub fn public_methods(ms: ~[@method]) -> ~[@method] {
|
2013-08-07 21:21:36 -05:00
|
|
|
do ms.move_iter().filter |m| {
|
2013-01-07 23:15:25 -06:00
|
|
|
match m.vis {
|
|
|
|
public => true,
|
|
|
|
_ => false
|
|
|
|
}
|
2013-07-01 21:38:19 -05:00
|
|
|
}.collect()
|
2012-03-26 11:59:59 -05:00
|
|
|
}
|
|
|
|
|
2013-07-27 03:25:59 -05:00
|
|
|
// extract a TypeMethod from a trait_method. if the trait_method is
|
|
|
|
// a default, pull out the useful fields to make a TypeMethod
|
|
|
|
pub fn trait_method_to_ty_method(method: &trait_method) -> TypeMethod {
|
2013-02-18 00:20:36 -06:00
|
|
|
match *method {
|
2013-07-02 14:47:32 -05:00
|
|
|
required(ref m) => (*m).clone(),
|
2013-02-18 23:25:44 -06:00
|
|
|
provided(ref m) => {
|
2013-07-27 03:25:59 -05:00
|
|
|
TypeMethod {
|
2013-01-15 17:03:49 -06:00
|
|
|
ident: m.ident,
|
2013-07-02 14:47:32 -05:00
|
|
|
attrs: m.attrs.clone(),
|
2013-01-15 17:03:49 -06:00
|
|
|
purity: m.purity,
|
2013-07-02 14:47:32 -05:00
|
|
|
decl: m.decl.clone(),
|
|
|
|
generics: m.generics.clone(),
|
2013-04-30 10:49:48 -05:00
|
|
|
explicit_self: m.explicit_self,
|
2013-01-15 17:03:49 -06:00
|
|
|
id: m.id,
|
|
|
|
span: m.span,
|
|
|
|
}
|
|
|
|
}
|
2012-08-02 17:52:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-18 00:20:36 -06:00
|
|
|
pub fn split_trait_methods(trait_methods: &[trait_method])
|
2013-07-27 03:25:59 -05:00
|
|
|
-> (~[TypeMethod], ~[@method]) {
|
2013-06-04 23:43:41 -05:00
|
|
|
let mut reqd = ~[];
|
|
|
|
let mut provd = ~[];
|
2013-08-03 11:45:23 -05:00
|
|
|
for trt_method in trait_methods.iter() {
|
2012-09-19 18:55:01 -05:00
|
|
|
match *trt_method {
|
2013-07-02 14:47:32 -05:00
|
|
|
required(ref tm) => reqd.push((*tm).clone()),
|
2012-09-26 19:33:34 -05:00
|
|
|
provided(m) => provd.push(m)
|
2012-08-02 17:52:30 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
(reqd, provd)
|
|
|
|
}
|
|
|
|
|
2013-03-22 13:09:13 -05:00
|
|
|
pub fn struct_field_visibility(field: ast::struct_field) -> visibility {
|
2012-08-15 17:53:58 -05:00
|
|
|
match field.node.kind {
|
2013-05-03 20:51:58 -05:00
|
|
|
ast::named_field(_, visibility) => visibility,
|
2012-08-15 17:53:58 -05:00
|
|
|
ast::unnamed_field => ast::public
|
|
|
|
}
|
2012-03-28 20:50:33 -05:00
|
|
|
}
|
|
|
|
|
2013-01-25 18:57:39 -06:00
|
|
|
pub trait inlined_item_utils {
|
2013-09-01 19:50:59 -05:00
|
|
|
fn ident(&self) -> Ident;
|
2013-07-27 03:25:59 -05:00
|
|
|
fn id(&self) -> ast::NodeId;
|
2013-08-08 07:23:25 -05:00
|
|
|
fn accept<E: Clone, V:Visitor<E>>(&self, e: E, v: &mut V);
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
|
|
|
|
2013-02-26 19:12:00 -06:00
|
|
|
impl inlined_item_utils for inlined_item {
|
2013-09-01 19:50:59 -05:00
|
|
|
fn ident(&self) -> Ident {
|
2013-01-31 20:35:49 -06:00
|
|
|
match *self {
|
2013-06-27 19:41:35 -05:00
|
|
|
ii_item(i) => i.ident,
|
|
|
|
ii_foreign(i) => i.ident,
|
|
|
|
ii_method(_, _, m) => m.ident,
|
2012-03-01 21:37:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-27 03:25:59 -05:00
|
|
|
fn id(&self) -> ast::NodeId {
|
2013-01-31 20:35:49 -06:00
|
|
|
match *self {
|
|
|
|
ii_item(i) => i.id,
|
|
|
|
ii_foreign(i) => i.id,
|
2013-07-11 17:08:43 -05:00
|
|
|
ii_method(_, _, m) => m.id,
|
2012-03-01 21:37:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
fn accept<E: Clone, V:Visitor<E>>(&self, e: E, v: &mut V) {
|
2013-01-31 20:35:49 -06:00
|
|
|
match *self {
|
2013-07-19 20:42:11 -05:00
|
|
|
ii_item(i) => v.visit_item(i, e),
|
|
|
|
ii_foreign(i) => v.visit_foreign_item(i, e),
|
2013-08-08 07:23:25 -05:00
|
|
|
ii_method(_, _, m) => visit::walk_method_helper(v, m, e),
|
2012-03-01 21:37:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-04-13 14:22:35 -05:00
|
|
|
|
|
|
|
/* True if d is either a def_self, or a chain of def_upvars
|
|
|
|
referring to a def_self */
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn is_self(d: ast::Def) -> bool {
|
2012-08-06 14:34:08 -05:00
|
|
|
match d {
|
2013-09-01 20:45:37 -05:00
|
|
|
DefSelf(*) => true,
|
|
|
|
DefUpvar(_, d, _, _) => is_self(*d),
|
2012-08-20 18:53:33 -05:00
|
|
|
_ => false
|
2012-04-13 14:22:35 -05:00
|
|
|
}
|
|
|
|
}
|
2012-04-26 18:13:59 -05:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Maps a binary operator to its precedence
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn operator_prec(op: ast::BinOp) -> uint {
|
2012-08-06 14:34:08 -05:00
|
|
|
match op {
|
2013-07-19 20:42:11 -05:00
|
|
|
// 'as' sits here with 12
|
2013-09-01 20:45:37 -05:00
|
|
|
BiMul | BiDiv | BiRem => 11u,
|
|
|
|
BiAdd | BiSub => 10u,
|
|
|
|
BiShl | BiShr => 9u,
|
|
|
|
BiBitAnd => 8u,
|
|
|
|
BiBitXor => 7u,
|
|
|
|
BiBitOr => 6u,
|
|
|
|
BiLt | BiLe | BiGe | BiGt => 4u,
|
|
|
|
BiEq | BiNe => 3u,
|
|
|
|
BiAnd => 2u,
|
|
|
|
BiOr => 1u
|
2012-04-26 18:13:59 -05:00
|
|
|
}
|
|
|
|
}
|
2012-05-14 16:13:32 -05:00
|
|
|
|
2013-03-29 12:04:48 -05:00
|
|
|
/// Precedence of the `as` operator, which is a binary operator
|
|
|
|
/// not appearing in the prior table.
|
2013-07-19 20:42:11 -05:00
|
|
|
pub static as_prec: uint = 12u;
|
2013-03-29 12:04:48 -05:00
|
|
|
|
2013-02-14 23:50:03 -06:00
|
|
|
pub fn empty_generics() -> Generics {
|
|
|
|
Generics {lifetimes: opt_vec::Empty,
|
|
|
|
ty_params: opt_vec::Empty}
|
|
|
|
}
|
|
|
|
|
2012-05-16 15:21:04 -05:00
|
|
|
// ______________________________________________________________________
|
|
|
|
// Enumerating the IDs which appear in an AST
|
|
|
|
|
2013-05-15 17:55:57 -05:00
|
|
|
#[deriving(Encodable, Decodable)]
|
2013-01-29 15:54:06 -06:00
|
|
|
pub struct id_range {
|
2013-07-27 03:25:59 -05:00
|
|
|
min: NodeId,
|
|
|
|
max: NodeId,
|
2013-01-17 10:55:28 -06:00
|
|
|
}
|
2012-05-16 15:21:04 -05:00
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
impl id_range {
|
|
|
|
pub fn max() -> id_range {
|
|
|
|
id_range {
|
|
|
|
min: int::max_value,
|
|
|
|
max: int::min_value,
|
|
|
|
}
|
2013-03-15 14:24:24 -05:00
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn empty(&self) -> bool {
|
2013-03-15 14:24:24 -05:00
|
|
|
self.min >= self.max
|
|
|
|
}
|
|
|
|
|
2013-07-27 03:25:59 -05:00
|
|
|
pub fn add(&mut self, id: NodeId) {
|
Replaces the free-standing functions in f32, &c.
The free-standing functions in f32, f64, i8, i16, i32, i64, u8, u16,
u32, u64, float, int, and uint are replaced with generic functions in
num instead.
If you were previously using any of those functions, just replace them
with the corresponding function with the same name in num.
Note: If you were using a function that corresponds to an operator, use
the operator instead.
2013-07-08 11:05:17 -05:00
|
|
|
self.min = num::min(self.min, id);
|
|
|
|
self.max = num::max(self.max, id + 1);
|
2013-03-15 14:24:24 -05:00
|
|
|
}
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
|
|
|
|
2013-08-29 21:01:19 -05:00
|
|
|
pub fn id_visitor(operation: @IdVisitingOperation, pass_through_items: bool)
|
2013-08-08 07:23:25 -05:00
|
|
|
-> @mut Visitor<()> {
|
|
|
|
let visitor = @mut IdVisitor {
|
2013-08-29 21:01:19 -05:00
|
|
|
operation: operation,
|
2013-08-08 07:23:25 -05:00
|
|
|
pass_through_items: pass_through_items,
|
|
|
|
visited_outermost: false,
|
|
|
|
};
|
|
|
|
visitor as @mut Visitor<()>
|
|
|
|
}
|
|
|
|
|
2013-08-29 21:01:19 -05:00
|
|
|
pub trait IdVisitingOperation {
|
|
|
|
fn visit_id(&self, node_id: NodeId);
|
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
pub struct IdVisitor {
|
2013-08-29 21:01:19 -05:00
|
|
|
operation: @IdVisitingOperation,
|
2013-07-19 20:42:11 -05:00
|
|
|
pass_through_items: bool,
|
|
|
|
visited_outermost: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl IdVisitor {
|
2013-08-08 07:23:25 -05:00
|
|
|
fn visit_generics_helper(&self, generics: &Generics) {
|
2013-08-03 11:45:23 -05:00
|
|
|
for type_parameter in generics.ty_params.iter() {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(type_parameter.id)
|
2013-02-14 23:50:03 -06:00
|
|
|
}
|
2013-08-03 11:45:23 -05:00
|
|
|
for lifetime in generics.lifetimes.iter() {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(lifetime.id)
|
2013-02-14 23:50:03 -06:00
|
|
|
}
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Visitor<()> for IdVisitor {
|
2013-08-08 07:23:25 -05:00
|
|
|
fn visit_mod(&mut self,
|
2013-07-19 20:42:11 -05:00
|
|
|
module: &_mod,
|
2013-08-31 11:13:04 -05:00
|
|
|
_: Span,
|
2013-07-19 20:42:11 -05:00
|
|
|
node_id: NodeId,
|
|
|
|
env: ()) {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(node_id);
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_mod(self, module, env)
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
fn visit_view_item(&mut self, view_item: &view_item, env: ()) {
|
2013-07-19 20:42:11 -05:00
|
|
|
match view_item.node {
|
2013-07-31 15:47:32 -05:00
|
|
|
view_item_extern_mod(_, _, _, node_id) => {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(node_id)
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
2013-07-19 20:42:11 -05:00
|
|
|
view_item_use(ref view_paths) => {
|
2013-08-03 11:45:23 -05:00
|
|
|
for view_path in view_paths.iter() {
|
2013-07-19 20:42:11 -05:00
|
|
|
match view_path.node {
|
|
|
|
view_path_simple(_, _, node_id) |
|
|
|
|
view_path_glob(_, node_id) => {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(node_id)
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
view_path_list(_, ref paths, node_id) => {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(node_id);
|
2013-08-03 11:45:23 -05:00
|
|
|
for path in paths.iter() {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(path.node.id)
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_view_item(self, view_item, env)
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
fn visit_foreign_item(&mut self, foreign_item: @foreign_item, env: ()) {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(foreign_item.id);
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_foreign_item(self, foreign_item, env)
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
fn visit_item(&mut self, item: @item, env: ()) {
|
2013-07-19 20:42:11 -05:00
|
|
|
if !self.pass_through_items {
|
|
|
|
if self.visited_outermost {
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
self.visited_outermost = true
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(item.id);
|
2013-07-19 20:42:11 -05:00
|
|
|
match item.node {
|
|
|
|
item_enum(ref enum_definition, _) => {
|
2013-08-03 11:45:23 -05:00
|
|
|
for variant in enum_definition.variants.iter() {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(variant.node.id)
|
2013-06-10 16:50:12 -05:00
|
|
|
}
|
2013-06-01 17:31:56 -05:00
|
|
|
}
|
2013-07-19 20:42:11 -05:00
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_item(self, item, env);
|
2013-07-19 20:42:11 -05:00
|
|
|
|
|
|
|
self.visited_outermost = false
|
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
fn visit_local(&mut self, local: @Local, env: ()) {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(local.id);
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_local(self, local, env)
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
fn visit_block(&mut self, block: &Block, env: ()) {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(block.id);
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_block(self, block, env)
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
fn visit_stmt(&mut self, statement: @Stmt, env: ()) {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(ast_util::stmt_id(statement));
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_stmt(self, statement, env)
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
fn visit_pat(&mut self, pattern: @Pat, env: ()) {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(pattern.id);
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_pat(self, pattern, env)
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
fn visit_expr(&mut self, expression: @Expr, env: ()) {
|
2013-07-19 20:42:11 -05:00
|
|
|
{
|
|
|
|
let optional_callee_id = expression.get_callee_id();
|
2013-08-03 11:45:23 -05:00
|
|
|
for callee_id in optional_callee_id.iter() {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(*callee_id)
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(expression.id);
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_expr(self, expression, env)
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
2012-05-16 15:21:04 -05:00
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
fn visit_ty(&mut self, typ: &Ty, env: ()) {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(typ.id);
|
2013-07-19 20:42:11 -05:00
|
|
|
match typ.node {
|
2013-08-29 21:01:19 -05:00
|
|
|
ty_path(_, _, id) => self.operation.visit_id(id),
|
2013-07-19 20:42:11 -05:00
|
|
|
_ => {}
|
|
|
|
}
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_ty(self, typ, env)
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
2012-05-16 15:21:04 -05:00
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
fn visit_generics(&mut self, generics: &Generics, env: ()) {
|
2013-07-19 20:42:11 -05:00
|
|
|
self.visit_generics_helper(generics);
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_generics(self, generics, env)
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
fn visit_fn(&mut self,
|
2013-07-19 20:42:11 -05:00
|
|
|
function_kind: &visit::fn_kind,
|
|
|
|
function_declaration: &fn_decl,
|
|
|
|
block: &Block,
|
2013-08-31 11:13:04 -05:00
|
|
|
span: Span,
|
2013-07-19 20:42:11 -05:00
|
|
|
node_id: NodeId,
|
|
|
|
env: ()) {
|
|
|
|
if !self.pass_through_items {
|
|
|
|
match *function_kind {
|
|
|
|
visit::fk_method(*) if self.visited_outermost => return,
|
|
|
|
visit::fk_method(*) => self.visited_outermost = true,
|
|
|
|
_ => {}
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(node_id);
|
2012-05-16 15:21:04 -05:00
|
|
|
|
2013-07-19 20:42:11 -05:00
|
|
|
match *function_kind {
|
|
|
|
visit::fk_item_fn(_, generics, _, _) => {
|
|
|
|
self.visit_generics_helper(generics)
|
|
|
|
}
|
|
|
|
visit::fk_method(_, generics, method) => {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(method.self_id);
|
2013-07-19 20:42:11 -05:00
|
|
|
self.visit_generics_helper(generics)
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
2013-07-19 20:42:11 -05:00
|
|
|
visit::fk_anon(_) | visit::fk_fn_block => {}
|
|
|
|
}
|
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for argument in function_declaration.inputs.iter() {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(argument.id)
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_fn(self,
|
2013-07-19 20:42:11 -05:00
|
|
|
function_kind,
|
|
|
|
function_declaration,
|
|
|
|
block,
|
|
|
|
span,
|
|
|
|
node_id,
|
|
|
|
env);
|
|
|
|
|
|
|
|
if !self.pass_through_items {
|
|
|
|
match *function_kind {
|
|
|
|
visit::fk_method(*) => self.visited_outermost = false,
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
fn visit_struct_field(&mut self, struct_field: @struct_field, env: ()) {
|
2013-08-29 21:01:19 -05:00
|
|
|
self.operation.visit_id(struct_field.node.id);
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_struct_field(self, struct_field, env)
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-29 21:01:19 -05:00
|
|
|
pub fn visit_ids_for_inlined_item(item: &inlined_item,
|
|
|
|
operation: @IdVisitingOperation) {
|
2013-08-08 07:23:25 -05:00
|
|
|
let mut id_visitor = IdVisitor {
|
2013-08-29 21:01:19 -05:00
|
|
|
operation: operation,
|
2013-08-08 07:23:25 -05:00
|
|
|
pass_through_items: true,
|
2013-07-19 20:42:11 -05:00
|
|
|
visited_outermost: false,
|
|
|
|
};
|
2013-08-08 07:23:25 -05:00
|
|
|
item.accept((), &mut id_visitor);
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
|
|
|
|
2013-08-29 21:01:19 -05:00
|
|
|
struct IdRangeComputingVisitor {
|
|
|
|
result: @mut id_range,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl IdVisitingOperation for IdRangeComputingVisitor {
|
|
|
|
fn visit_id(&self, id: NodeId) {
|
|
|
|
self.result.add(id)
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
2013-08-29 21:01:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn compute_id_range(visit_ids_fn: &fn(@IdVisitingOperation)) -> id_range {
|
|
|
|
let result = @mut id_range::max();
|
|
|
|
visit_ids_fn(@IdRangeComputingVisitor {
|
|
|
|
result: result,
|
|
|
|
} as @IdVisitingOperation);
|
2013-03-15 14:24:24 -05:00
|
|
|
*result
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
|
|
|
|
2013-04-17 11:15:08 -05:00
|
|
|
pub fn compute_id_range_for_inlined_item(item: &inlined_item) -> id_range {
|
2012-06-30 18:19:07 -05:00
|
|
|
compute_id_range(|f| visit_ids_for_inlined_item(item, f))
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
|
|
|
|
2013-03-22 13:09:13 -05:00
|
|
|
pub fn is_item_impl(item: @ast::item) -> bool {
|
2012-08-06 14:34:08 -05:00
|
|
|
match item.node {
|
2012-08-03 21:59:04 -05:00
|
|
|
item_impl(*) => true,
|
|
|
|
_ => false
|
2012-05-17 22:37:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn walk_pat(pat: @Pat, it: &fn(@Pat) -> bool) -> bool {
|
2013-05-22 05:54:35 -05:00
|
|
|
if !it(pat) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
match pat.node {
|
2013-09-01 20:45:37 -05:00
|
|
|
PatIdent(_, _, Some(p)) => walk_pat(p, it),
|
|
|
|
PatStruct(_, ref fields, _) => {
|
2013-06-21 19:08:35 -05:00
|
|
|
fields.iter().advance(|f| walk_pat(f.pat, |p| it(p)))
|
2012-09-19 18:55:01 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
PatEnum(_, Some(ref s)) | PatTup(ref s) => {
|
2013-06-21 19:08:35 -05:00
|
|
|
s.iter().advance(|&p| walk_pat(p, |p| it(p)))
|
2012-09-19 18:55:01 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
PatBox(s) | PatUniq(s) | PatRegion(s) => {
|
2012-09-19 18:55:01 -05:00
|
|
|
walk_pat(s, it)
|
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
PatVec(ref before, ref slice, ref after) => {
|
2013-06-21 19:08:35 -05:00
|
|
|
before.iter().advance(|&p| walk_pat(p, |p| it(p))) &&
|
|
|
|
slice.iter().advance(|&p| walk_pat(p, |p| it(p))) &&
|
|
|
|
after.iter().advance(|&p| walk_pat(p, |p| it(p)))
|
2012-12-08 14:22:43 -06:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
PatWild | PatLit(_) | PatRange(_, _) | PatIdent(_, _, _) |
|
|
|
|
PatEnum(_, _) => {
|
2013-05-22 05:54:35 -05:00
|
|
|
true
|
|
|
|
}
|
2012-05-22 01:17:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-27 19:03:04 -05:00
|
|
|
pub trait EachViewItem {
|
2013-09-06 22:29:16 -05:00
|
|
|
fn each_view_item(&self, f: &fn(&ast::view_item) -> bool) -> bool;
|
2013-05-27 19:03:04 -05:00
|
|
|
}
|
|
|
|
|
2013-09-06 22:29:16 -05:00
|
|
|
struct EachViewItemData<'self> {
|
|
|
|
callback: &'self fn(&ast::view_item) -> bool,
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
|
2013-09-06 22:29:16 -05:00
|
|
|
impl<'self> Visitor<()> for EachViewItemData<'self> {
|
|
|
|
fn visit_view_item(&mut self, view_item: &ast::view_item, _: ()) {
|
2013-07-19 20:42:11 -05:00
|
|
|
let _ = (self.callback)(view_item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-19 00:38:55 -05:00
|
|
|
impl EachViewItem for ast::Crate {
|
2013-09-06 22:29:16 -05:00
|
|
|
fn each_view_item(&self, f: &fn(&ast::view_item) -> bool) -> bool {
|
|
|
|
let mut visit = EachViewItemData {
|
2013-07-19 20:42:11 -05:00
|
|
|
callback: f,
|
|
|
|
};
|
2013-09-06 22:29:16 -05:00
|
|
|
visit::walk_crate(&mut visit, self, ());
|
2013-05-27 19:03:04 -05:00
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-27 03:25:59 -05:00
|
|
|
pub fn view_path_id(p: &view_path) -> NodeId {
|
2012-08-06 14:34:08 -05:00
|
|
|
match p.node {
|
2013-04-22 14:32:59 -05:00
|
|
|
view_path_simple(_, _, id) |
|
|
|
|
view_path_glob(_, id) |
|
2012-08-03 21:59:04 -05:00
|
|
|
view_path_list(_, _, id) => id
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-24 16:36:00 -05:00
|
|
|
/// Returns true if the given struct def is tuple-like; i.e. that its fields
|
|
|
|
/// are unnamed.
|
2013-07-05 19:47:42 -05:00
|
|
|
pub fn struct_def_is_tuple_like(struct_def: &ast::struct_def) -> bool {
|
2012-10-24 16:36:00 -05:00
|
|
|
struct_def.ctor_id.is_some()
|
|
|
|
}
|
|
|
|
|
2013-01-30 19:20:02 -06:00
|
|
|
pub fn visibility_to_privacy(visibility: visibility) -> Privacy {
|
|
|
|
match visibility {
|
|
|
|
public => Public,
|
|
|
|
inherited | private => Private
|
|
|
|
}
|
|
|
|
}
|
2012-11-30 13:24:16 -06:00
|
|
|
|
2013-01-30 19:20:02 -06:00
|
|
|
pub fn variant_visibility_to_privacy(visibility: visibility,
|
|
|
|
enclosing_is_public: bool)
|
|
|
|
-> Privacy {
|
|
|
|
if enclosing_is_public {
|
2012-11-30 13:24:16 -06:00
|
|
|
match visibility {
|
2013-01-30 19:20:02 -06:00
|
|
|
public | inherited => Public,
|
2012-11-30 13:24:16 -06:00
|
|
|
private => Private
|
|
|
|
}
|
|
|
|
} else {
|
2013-01-30 19:20:02 -06:00
|
|
|
visibility_to_privacy(visibility)
|
2012-11-30 13:24:16 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-20 10:52:45 -05:00
|
|
|
#[deriving(Eq)]
|
2013-01-29 15:54:06 -06:00
|
|
|
pub enum Privacy {
|
2012-11-30 13:24:16 -06:00
|
|
|
Private,
|
|
|
|
Public
|
|
|
|
}
|
|
|
|
|
2013-06-06 20:54:14 -05:00
|
|
|
/// Returns true if the given pattern consists solely of an identifier
|
|
|
|
/// and false otherwise.
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn pat_is_ident(pat: @ast::Pat) -> bool {
|
2013-06-06 20:54:14 -05:00
|
|
|
match pat.node {
|
2013-09-01 20:45:37 -05:00
|
|
|
ast::PatIdent(*) => true,
|
2013-06-06 20:54:14 -05:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-03 12:28:14 -05:00
|
|
|
// HYGIENE FUNCTIONS
|
|
|
|
|
|
|
|
/// Extend a syntax context with a given mark
|
2013-05-21 18:57:21 -05:00
|
|
|
pub fn new_mark(m:Mrk, tail:SyntaxContext) -> SyntaxContext {
|
|
|
|
new_mark_internal(m,tail,get_sctable())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extend a syntax context with a given mark and table
|
2013-09-24 16:48:04 -05:00
|
|
|
// FIXME #8215 : currently pub to allow testing
|
2013-05-21 18:57:21 -05:00
|
|
|
pub fn new_mark_internal(m:Mrk, tail:SyntaxContext,table:&mut SCTable)
|
2013-04-03 12:28:14 -05:00
|
|
|
-> SyntaxContext {
|
2013-05-16 19:42:08 -05:00
|
|
|
let key = (tail,m);
|
|
|
|
// FIXME #5074 : can't use more natural style because we're missing
|
|
|
|
// flow-sensitivity. Results in two lookups on a hash table hit.
|
2013-05-21 18:57:21 -05:00
|
|
|
// also applies to new_rename_internal, below.
|
2013-05-16 19:42:08 -05:00
|
|
|
// let try_lookup = table.mark_memo.find(&key);
|
|
|
|
match table.mark_memo.contains_key(&key) {
|
|
|
|
false => {
|
|
|
|
let new_idx = idx_push(&mut table.table,Mark(m,tail));
|
|
|
|
table.mark_memo.insert(key,new_idx);
|
|
|
|
new_idx
|
|
|
|
}
|
|
|
|
true => {
|
|
|
|
match table.mark_memo.find(&key) {
|
2013-09-27 23:01:58 -05:00
|
|
|
None => fail2!("internal error: key disappeared 2013042901"),
|
2013-05-16 19:42:08 -05:00
|
|
|
Some(idxptr) => {*idxptr}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Extend a syntax context with a given rename
|
2013-09-01 19:50:59 -05:00
|
|
|
pub fn new_rename(id:Ident, to:Name, tail:SyntaxContext) -> SyntaxContext {
|
2013-05-21 18:57:21 -05:00
|
|
|
new_rename_internal(id, to, tail, get_sctable())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extend a syntax context with a given rename and sctable
|
2013-09-24 16:48:04 -05:00
|
|
|
// FIXME #8215 : currently pub to allow testing
|
2013-09-01 19:50:59 -05:00
|
|
|
pub fn new_rename_internal(id:Ident, to:Name, tail:SyntaxContext, table: &mut SCTable)
|
2013-04-03 12:28:14 -05:00
|
|
|
-> SyntaxContext {
|
2013-05-16 19:42:08 -05:00
|
|
|
let key = (tail,id,to);
|
|
|
|
// FIXME #5074
|
|
|
|
//let try_lookup = table.rename_memo.find(&key);
|
|
|
|
match table.rename_memo.contains_key(&key) {
|
|
|
|
false => {
|
|
|
|
let new_idx = idx_push(&mut table.table,Rename(id,to,tail));
|
|
|
|
table.rename_memo.insert(key,new_idx);
|
|
|
|
new_idx
|
|
|
|
}
|
|
|
|
true => {
|
|
|
|
match table.rename_memo.find(&key) {
|
2013-09-27 23:01:58 -05:00
|
|
|
None => fail2!("internal error: key disappeared 2013042902"),
|
2013-05-16 19:42:08 -05:00
|
|
|
Some(idxptr) => {*idxptr}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Make a fresh syntax context table with EmptyCtxt in slot zero
|
2013-05-16 19:42:08 -05:00
|
|
|
/// and IllegalCtxt in slot one.
|
2013-09-24 16:48:04 -05:00
|
|
|
// FIXME #8215 : currently pub to allow testing
|
2013-05-21 18:57:21 -05:00
|
|
|
pub fn new_sctable_internal() -> SCTable {
|
2013-05-16 19:42:08 -05:00
|
|
|
SCTable {
|
|
|
|
table: ~[EmptyCtxt,IllegalCtxt],
|
|
|
|
mark_memo: HashMap::new(),
|
|
|
|
rename_memo: HashMap::new()
|
|
|
|
}
|
|
|
|
}
|
2013-04-03 12:28:14 -05:00
|
|
|
|
2013-05-21 18:57:21 -05:00
|
|
|
// fetch the SCTable from TLS, create one if it doesn't yet exist.
|
|
|
|
pub fn get_sctable() -> @mut SCTable {
|
2013-09-17 01:34:40 -05:00
|
|
|
local_data_key!(sctable_key: @@mut SCTable)
|
2013-08-04 16:59:36 -05:00
|
|
|
match local_data::get(sctable_key, |k| k.map_move(|k| *k)) {
|
2013-07-12 03:38:44 -05:00
|
|
|
None => {
|
|
|
|
let new_table = @@mut new_sctable_internal();
|
|
|
|
local_data::set(sctable_key,new_table);
|
|
|
|
*new_table
|
|
|
|
},
|
|
|
|
Some(intr) => *intr
|
2013-05-21 18:57:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-26 12:27:38 -05:00
|
|
|
/// print out an SCTable for debugging
|
|
|
|
pub fn display_sctable(table : &SCTable) {
|
2013-09-27 23:01:58 -05:00
|
|
|
error2!("SC table:");
|
2013-07-26 12:27:38 -05:00
|
|
|
for (idx,val) in table.table.iter().enumerate() {
|
2013-09-27 23:01:58 -05:00
|
|
|
error2!("{:4u} : {:?}",idx,val);
|
2013-07-26 12:27:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-03 12:28:14 -05:00
|
|
|
/// Add a value to the end of a vec, return its index
|
2013-04-17 11:15:08 -05:00
|
|
|
fn idx_push<T>(vec: &mut ~[T], val: T) -> uint {
|
2013-04-03 12:28:14 -05:00
|
|
|
vec.push(val);
|
|
|
|
vec.len() - 1
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Resolve a syntax object to a name, per MTWT.
|
2013-07-09 16:09:30 -05:00
|
|
|
pub fn mtwt_resolve(id : Ident) -> Name {
|
2013-07-10 18:40:09 -05:00
|
|
|
resolve_internal(id, get_sctable(), get_resolve_table())
|
|
|
|
}
|
|
|
|
|
2013-09-24 16:48:04 -05:00
|
|
|
// FIXME #8215: must be pub for testing
|
2013-07-10 18:40:09 -05:00
|
|
|
pub type ResolveTable = HashMap<(Name,SyntaxContext),Name>;
|
|
|
|
|
|
|
|
// okay, I admit, putting this in TLS is not so nice:
|
|
|
|
// fetch the SCTable from TLS, create one if it doesn't yet exist.
|
|
|
|
pub fn get_resolve_table() -> @mut ResolveTable {
|
2013-09-17 01:34:40 -05:00
|
|
|
local_data_key!(resolve_table_key: @@mut ResolveTable)
|
2013-07-10 18:40:09 -05:00
|
|
|
match local_data::get(resolve_table_key, |k| k.map(|&k| *k)) {
|
|
|
|
None => {
|
|
|
|
let new_table = @@mut HashMap::new();
|
|
|
|
local_data::set(resolve_table_key,new_table);
|
|
|
|
*new_table
|
|
|
|
},
|
|
|
|
Some(intr) => *intr
|
|
|
|
}
|
2013-05-21 18:57:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Resolve a syntax object to a name, per MTWT.
|
2013-07-10 18:40:09 -05:00
|
|
|
// adding memoization to possibly resolve 500+ seconds in resolve for librustc (!)
|
2013-09-24 16:48:04 -05:00
|
|
|
// FIXME #8215 : currently pub to allow testing
|
2013-07-10 18:40:09 -05:00
|
|
|
pub fn resolve_internal(id : Ident,
|
|
|
|
table : &mut SCTable,
|
|
|
|
resolve_table : &mut ResolveTable) -> Name {
|
|
|
|
let key = (id.name,id.ctxt);
|
|
|
|
match resolve_table.contains_key(&key) {
|
|
|
|
false => {
|
|
|
|
let resolved = {
|
|
|
|
match table.table[id.ctxt] {
|
|
|
|
EmptyCtxt => id.name,
|
|
|
|
// ignore marks here:
|
2013-07-12 00:58:14 -05:00
|
|
|
Mark(_,subctxt) =>
|
|
|
|
resolve_internal(Ident{name:id.name, ctxt: subctxt},table,resolve_table),
|
2013-07-10 18:40:09 -05:00
|
|
|
// do the rename if necessary:
|
|
|
|
Rename(Ident{name,ctxt},toname,subctxt) => {
|
2013-07-12 00:58:14 -05:00
|
|
|
let resolvedfrom =
|
|
|
|
resolve_internal(Ident{name:name,ctxt:ctxt},table,resolve_table);
|
|
|
|
let resolvedthis =
|
|
|
|
resolve_internal(Ident{name:id.name,ctxt:subctxt},table,resolve_table);
|
2013-07-10 18:40:09 -05:00
|
|
|
if ((resolvedthis == resolvedfrom)
|
|
|
|
&& (marksof(ctxt,resolvedthis,table)
|
|
|
|
== marksof(subctxt,resolvedthis,table))) {
|
|
|
|
toname
|
|
|
|
} else {
|
|
|
|
resolvedthis
|
|
|
|
}
|
|
|
|
}
|
2013-09-27 23:01:58 -05:00
|
|
|
IllegalCtxt() => fail2!("expected resolvable context, got IllegalCtxt")
|
2013-07-10 18:40:09 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
resolve_table.insert(key,resolved);
|
|
|
|
resolved
|
|
|
|
}
|
|
|
|
true => {
|
|
|
|
// it's guaranteed to be there, because we just checked that it was
|
|
|
|
// there and we never remove anything from the table:
|
|
|
|
*(resolve_table.find(&key).unwrap())
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Compute the marks associated with a syntax context.
|
2013-07-12 20:35:05 -05:00
|
|
|
pub fn mtwt_marksof(ctxt: SyntaxContext, stopname: Name) -> ~[Mrk] {
|
|
|
|
marksof(ctxt, stopname, get_sctable())
|
|
|
|
}
|
|
|
|
|
|
|
|
// the internal function for computing marks
|
2013-04-03 12:28:14 -05:00
|
|
|
// it's not clear to me whether it's better to use a [] mutable
|
|
|
|
// vector or a cons-list for this.
|
|
|
|
pub fn marksof(ctxt: SyntaxContext, stopname: Name, table: &SCTable) -> ~[Mrk] {
|
|
|
|
let mut result = ~[];
|
|
|
|
let mut loopvar = ctxt;
|
|
|
|
loop {
|
2013-05-16 19:42:08 -05:00
|
|
|
match table.table[loopvar] {
|
2013-04-03 12:28:14 -05:00
|
|
|
EmptyCtxt => {return result;},
|
|
|
|
Mark(mark,tl) => {
|
|
|
|
xorPush(&mut result,mark);
|
|
|
|
loopvar = tl;
|
|
|
|
},
|
|
|
|
Rename(_,name,tl) => {
|
|
|
|
// see MTWT for details on the purpose of the stopname.
|
|
|
|
// short version: it prevents duplication of effort.
|
|
|
|
if (name == stopname) {
|
|
|
|
return result;
|
|
|
|
} else {
|
|
|
|
loopvar = tl;
|
|
|
|
}
|
|
|
|
}
|
2013-09-27 23:01:58 -05:00
|
|
|
IllegalCtxt => fail2!("expected resolvable context, got IllegalCtxt")
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:25:04 -05:00
|
|
|
/// Return the outer mark for a context with a mark at the outside.
|
|
|
|
/// FAILS when outside is not a mark.
|
|
|
|
pub fn mtwt_outer_mark(ctxt: SyntaxContext) -> Mrk {
|
|
|
|
let sctable = get_sctable();
|
|
|
|
match sctable.table[ctxt] {
|
|
|
|
ast::Mark(mrk,_) => mrk,
|
2013-09-27 23:01:58 -05:00
|
|
|
_ => fail2!("can't retrieve outer mark when outside is not a mark")
|
2013-07-14 14:25:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-03 12:28:14 -05:00
|
|
|
/// Push a name... unless it matches the one on top, in which
|
|
|
|
/// case pop and discard (so two of the same marks cancel)
|
|
|
|
pub fn xorPush(marks: &mut ~[uint], mark: uint) {
|
|
|
|
if ((marks.len() > 0) && (getLast(marks) == mark)) {
|
|
|
|
marks.pop();
|
|
|
|
} else {
|
|
|
|
marks.push(mark);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the last element of a mutable array.
|
|
|
|
// FIXME #4903: , must be a separate procedure for now.
|
|
|
|
pub fn getLast(arr: &~[Mrk]) -> uint {
|
|
|
|
*arr.last()
|
|
|
|
}
|
|
|
|
|
2013-07-10 13:52:59 -05:00
|
|
|
// are two paths equal when compared unhygienically?
|
|
|
|
// since I'm using this to replace ==, it seems appropriate
|
|
|
|
// to compare the span, global, etc. fields as well.
|
|
|
|
pub fn path_name_eq(a : &ast::Path, b : &ast::Path) -> bool {
|
|
|
|
(a.span == b.span)
|
|
|
|
&& (a.global == b.global)
|
2013-09-05 16:15:00 -05:00
|
|
|
&& (segments_name_eq(a.segments, b.segments))
|
2013-07-10 13:52:59 -05:00
|
|
|
}
|
|
|
|
|
2013-09-05 16:15:00 -05:00
|
|
|
// are two arrays of segments equal when compared unhygienically?
|
|
|
|
pub fn segments_name_eq(a : &[ast::PathSegment], b : &[ast::PathSegment]) -> bool {
|
2013-07-10 13:52:59 -05:00
|
|
|
if (a.len() != b.len()) {
|
|
|
|
false
|
|
|
|
} else {
|
2013-09-05 16:15:00 -05:00
|
|
|
for (idx,seg) in a.iter().enumerate() {
|
|
|
|
if (seg.identifier.name != b[idx].identifier.name)
|
2013-07-12 00:58:14 -05:00
|
|
|
// FIXME #7743: ident -> name problems in lifetime comparison?
|
2013-09-05 16:15:00 -05:00
|
|
|
|| (seg.lifetime != b[idx].lifetime)
|
2013-07-12 00:58:14 -05:00
|
|
|
// can types contain idents?
|
2013-09-05 16:15:00 -05:00
|
|
|
|| (seg.types != b[idx].types) {
|
2013-07-10 13:52:59 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
2013-04-03 12:28:14 -05:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use ast::*;
|
|
|
|
use super::*;
|
2013-06-24 19:40:33 -05:00
|
|
|
use std::io;
|
2013-09-05 16:15:00 -05:00
|
|
|
use opt_vec;
|
2013-07-10 18:40:09 -05:00
|
|
|
use std::hash::HashMap;
|
2013-09-05 16:15:00 -05:00
|
|
|
|
2013-07-10 18:40:09 -05:00
|
|
|
fn ident_to_segment(id : &Ident) -> PathSegment {
|
2013-09-05 16:15:00 -05:00
|
|
|
PathSegment{identifier:id.clone(), lifetime: None, types: opt_vec::Empty}
|
|
|
|
}
|
2013-04-03 12:28:14 -05:00
|
|
|
|
2013-07-10 13:52:59 -05:00
|
|
|
#[test] fn idents_name_eq_test() {
|
2013-07-10 18:40:09 -05:00
|
|
|
assert!(segments_name_eq([Ident{name:3,ctxt:4},
|
|
|
|
Ident{name:78,ctxt:82}].map(ident_to_segment),
|
|
|
|
[Ident{name:3,ctxt:104},
|
|
|
|
Ident{name:78,ctxt:182}].map(ident_to_segment)));
|
|
|
|
assert!(!segments_name_eq([Ident{name:3,ctxt:4},
|
|
|
|
Ident{name:78,ctxt:82}].map(ident_to_segment),
|
|
|
|
[Ident{name:3,ctxt:104},
|
|
|
|
Ident{name:77,ctxt:182}].map(ident_to_segment)));
|
2013-07-10 13:52:59 -05:00
|
|
|
}
|
|
|
|
|
2013-04-03 12:28:14 -05:00
|
|
|
#[test] fn xorpush_test () {
|
|
|
|
let mut s = ~[];
|
|
|
|
xorPush(&mut s,14);
|
2013-07-02 14:47:32 -05:00
|
|
|
assert_eq!(s.clone(),~[14]);
|
2013-04-03 12:28:14 -05:00
|
|
|
xorPush(&mut s,14);
|
2013-07-02 14:47:32 -05:00
|
|
|
assert_eq!(s.clone(),~[]);
|
2013-04-03 12:28:14 -05:00
|
|
|
xorPush(&mut s,14);
|
2013-07-02 14:47:32 -05:00
|
|
|
assert_eq!(s.clone(),~[14]);
|
2013-04-03 12:28:14 -05:00
|
|
|
xorPush(&mut s,15);
|
2013-07-02 14:47:32 -05:00
|
|
|
assert_eq!(s.clone(),~[14,15]);
|
2013-04-03 12:28:14 -05:00
|
|
|
xorPush (&mut s,16);
|
2013-07-02 14:47:32 -05:00
|
|
|
assert_eq!(s.clone(),~[14,15,16]);
|
2013-04-03 12:28:14 -05:00
|
|
|
xorPush (&mut s,16);
|
2013-07-02 14:47:32 -05:00
|
|
|
assert_eq!(s.clone(),~[14,15]);
|
2013-04-03 12:28:14 -05:00
|
|
|
xorPush (&mut s,15);
|
2013-07-02 14:47:32 -05:00
|
|
|
assert_eq!(s.clone(),~[14]);
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
|
2013-06-12 12:02:55 -05:00
|
|
|
// convert a list of uints to an @[ident]
|
2013-04-03 12:28:14 -05:00
|
|
|
// (ignores the interner completely)
|
2013-09-01 19:50:59 -05:00
|
|
|
fn uints_to_idents (uints: &~[uint]) -> @~[Ident] {
|
2013-09-01 20:45:37 -05:00
|
|
|
@uints.map(|u| Ident {name:*u, ctxt: EMPTY_CTXT})
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
|
2013-09-01 19:50:59 -05:00
|
|
|
fn id (u : uint, s: SyntaxContext) -> Ident {
|
|
|
|
Ident{name:u, ctxt: s}
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// because of the SCTable, I now need a tidy way of
|
|
|
|
// creating syntax objects. Sigh.
|
2013-07-11 14:05:17 -05:00
|
|
|
#[deriving(Clone, Eq)]
|
2013-04-03 12:28:14 -05:00
|
|
|
enum TestSC {
|
|
|
|
M(Mrk),
|
2013-09-01 19:50:59 -05:00
|
|
|
R(Ident,Name)
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// unfold a vector of TestSC values into a SCTable,
|
|
|
|
// returning the resulting index
|
|
|
|
fn unfold_test_sc(tscs : ~[TestSC], tail: SyntaxContext, table : &mut SCTable)
|
|
|
|
-> SyntaxContext {
|
2013-06-08 03:28:08 -05:00
|
|
|
tscs.rev_iter().fold(tail, |tail : SyntaxContext, tsc : &TestSC|
|
2013-04-03 12:28:14 -05:00
|
|
|
{match *tsc {
|
2013-05-21 18:57:21 -05:00
|
|
|
M(mrk) => new_mark_internal(mrk,tail,table),
|
|
|
|
R(ident,name) => new_rename_internal(ident,name,tail,table)}})
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// gather a SyntaxContext back into a vector of TestSCs
|
|
|
|
fn refold_test_sc(mut sc: SyntaxContext, table : &SCTable) -> ~[TestSC] {
|
|
|
|
let mut result = ~[];
|
|
|
|
loop {
|
2013-05-16 19:42:08 -05:00
|
|
|
match table.table[sc] {
|
2013-04-03 12:28:14 -05:00
|
|
|
EmptyCtxt => {return result;},
|
|
|
|
Mark(mrk,tail) => {
|
|
|
|
result.push(M(mrk));
|
|
|
|
sc = tail;
|
|
|
|
loop;
|
|
|
|
},
|
|
|
|
Rename(id,name,tail) => {
|
|
|
|
result.push(R(id,name));
|
|
|
|
sc = tail;
|
|
|
|
loop;
|
|
|
|
}
|
2013-09-27 23:01:58 -05:00
|
|
|
IllegalCtxt => fail2!("expected resolvable context, got IllegalCtxt")
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test] fn test_unfold_refold(){
|
2013-05-21 18:57:21 -05:00
|
|
|
let mut t = new_sctable_internal();
|
2013-04-03 12:28:14 -05:00
|
|
|
|
|
|
|
let test_sc = ~[M(3),R(id(101,0),14),M(9)];
|
2013-09-01 20:45:37 -05:00
|
|
|
assert_eq!(unfold_test_sc(test_sc.clone(),EMPTY_CTXT,&mut t),4);
|
2013-05-16 19:42:08 -05:00
|
|
|
assert_eq!(t.table[2],Mark(9,0));
|
|
|
|
assert_eq!(t.table[3],Rename(id(101,0),14,2));
|
|
|
|
assert_eq!(t.table[4],Mark(3,3));
|
|
|
|
assert_eq!(refold_test_sc(4,&t),test_sc);
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// extend a syntax context with a sequence of marks given
|
|
|
|
// in a vector. v[0] will be the outermost mark.
|
|
|
|
fn unfold_marks(mrks:~[Mrk],tail:SyntaxContext,table: &mut SCTable) -> SyntaxContext {
|
2013-06-08 03:28:08 -05:00
|
|
|
mrks.rev_iter().fold(tail, |tail:SyntaxContext, mrk:&Mrk|
|
2013-05-21 18:57:21 -05:00
|
|
|
{new_mark_internal(*mrk,tail,table)})
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test] fn unfold_marks_test() {
|
2013-05-21 18:57:21 -05:00
|
|
|
let mut t = new_sctable_internal();
|
2013-04-03 12:28:14 -05:00
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
assert_eq!(unfold_marks(~[3,7],EMPTY_CTXT,&mut t),3);
|
2013-05-16 19:42:08 -05:00
|
|
|
assert_eq!(t.table[2],Mark(7,0));
|
|
|
|
assert_eq!(t.table[3],Mark(3,2));
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test] fn test_marksof () {
|
|
|
|
let stopname = 242;
|
|
|
|
let name1 = 243;
|
2013-05-21 18:57:21 -05:00
|
|
|
let mut t = new_sctable_internal();
|
2013-09-01 20:45:37 -05:00
|
|
|
assert_eq!(marksof (EMPTY_CTXT,stopname,&t),~[]);
|
2013-04-03 12:28:14 -05:00
|
|
|
// FIXME #5074: ANF'd to dodge nested calls
|
2013-09-01 20:45:37 -05:00
|
|
|
{ let ans = unfold_marks(~[4,98],EMPTY_CTXT,&mut t);
|
2013-04-03 12:28:14 -05:00
|
|
|
assert_eq! (marksof (ans,stopname,&t),~[4,98]);}
|
|
|
|
// does xoring work?
|
2013-09-01 20:45:37 -05:00
|
|
|
{ let ans = unfold_marks(~[5,5,16],EMPTY_CTXT,&mut t);
|
2013-04-03 12:28:14 -05:00
|
|
|
assert_eq! (marksof (ans,stopname,&t), ~[16]);}
|
|
|
|
// does nested xoring work?
|
2013-09-01 20:45:37 -05:00
|
|
|
{ let ans = unfold_marks(~[5,10,10,5,16],EMPTY_CTXT,&mut t);
|
2013-04-03 12:28:14 -05:00
|
|
|
assert_eq! (marksof (ans, stopname,&t), ~[16]);}
|
|
|
|
// rename where stop doesn't match:
|
|
|
|
{ let chain = ~[M(9),
|
|
|
|
R(id(name1,
|
2013-09-01 20:45:37 -05:00
|
|
|
new_mark_internal (4, EMPTY_CTXT,&mut t)),
|
2013-04-03 12:28:14 -05:00
|
|
|
100101102),
|
|
|
|
M(14)];
|
2013-09-01 20:45:37 -05:00
|
|
|
let ans = unfold_test_sc(chain,EMPTY_CTXT,&mut t);
|
2013-04-03 12:28:14 -05:00
|
|
|
assert_eq! (marksof (ans, stopname, &t), ~[9,14]);}
|
|
|
|
// rename where stop does match
|
2013-09-01 20:45:37 -05:00
|
|
|
{ let name1sc = new_mark_internal(4, EMPTY_CTXT, &mut t);
|
2013-04-03 12:28:14 -05:00
|
|
|
let chain = ~[M(9),
|
|
|
|
R(id(name1, name1sc),
|
|
|
|
stopname),
|
|
|
|
M(14)];
|
2013-09-01 20:45:37 -05:00
|
|
|
let ans = unfold_test_sc(chain,EMPTY_CTXT,&mut t);
|
2013-04-03 12:28:14 -05:00
|
|
|
assert_eq! (marksof (ans, stopname, &t), ~[9]); }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[test] fn resolve_tests () {
|
|
|
|
let a = 40;
|
2013-05-21 18:57:21 -05:00
|
|
|
let mut t = new_sctable_internal();
|
2013-07-10 18:40:09 -05:00
|
|
|
let mut rt = HashMap::new();
|
2013-04-03 12:28:14 -05:00
|
|
|
// - ctxt is MT
|
2013-07-10 18:40:09 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,EMPTY_CTXT),&mut t, &mut rt),a);
|
2013-04-03 12:28:14 -05:00
|
|
|
// - simple ignored marks
|
2013-09-01 20:45:37 -05:00
|
|
|
{ let sc = unfold_marks(~[1,2,3],EMPTY_CTXT,&mut t);
|
2013-07-10 18:40:09 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,sc),&mut t, &mut rt),a);}
|
2013-04-03 12:28:14 -05:00
|
|
|
// - orthogonal rename where names don't match
|
2013-09-01 20:45:37 -05:00
|
|
|
{ let sc = unfold_test_sc(~[R(id(50,EMPTY_CTXT),51),M(12)],EMPTY_CTXT,&mut t);
|
2013-07-10 18:40:09 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,sc),&mut t, &mut rt),a);}
|
2013-04-03 12:28:14 -05:00
|
|
|
// - rename where names do match, but marks don't
|
2013-09-01 20:45:37 -05:00
|
|
|
{ let sc1 = new_mark_internal(1,EMPTY_CTXT,&mut t);
|
2013-04-03 12:28:14 -05:00
|
|
|
let sc = unfold_test_sc(~[R(id(a,sc1),50),
|
|
|
|
M(1),
|
|
|
|
M(2)],
|
2013-09-01 20:45:37 -05:00
|
|
|
EMPTY_CTXT,&mut t);
|
2013-07-10 18:40:09 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,sc),&mut t, &mut rt), a);}
|
2013-04-03 12:28:14 -05:00
|
|
|
// - rename where names and marks match
|
2013-09-01 20:45:37 -05:00
|
|
|
{ let sc1 = unfold_test_sc(~[M(1),M(2)],EMPTY_CTXT,&mut t);
|
|
|
|
let sc = unfold_test_sc(~[R(id(a,sc1),50),M(1),M(2)],EMPTY_CTXT,&mut t);
|
2013-07-10 18:40:09 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,sc),&mut t, &mut rt), 50); }
|
2013-04-03 12:28:14 -05:00
|
|
|
// - rename where names and marks match by literal sharing
|
2013-09-01 20:45:37 -05:00
|
|
|
{ let sc1 = unfold_test_sc(~[M(1),M(2)],EMPTY_CTXT,&mut t);
|
2013-04-03 12:28:14 -05:00
|
|
|
let sc = unfold_test_sc(~[R(id(a,sc1),50)],sc1,&mut t);
|
2013-07-10 18:40:09 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,sc),&mut t, &mut rt), 50); }
|
2013-04-03 12:28:14 -05:00
|
|
|
// - two renames of the same var.. can only happen if you use
|
|
|
|
// local-expand to prevent the inner binding from being renamed
|
|
|
|
// during the rename-pass caused by the first:
|
|
|
|
io::println("about to run bad test");
|
2013-09-01 20:45:37 -05:00
|
|
|
{ let sc = unfold_test_sc(~[R(id(a,EMPTY_CTXT),50),
|
|
|
|
R(id(a,EMPTY_CTXT),51)],
|
|
|
|
EMPTY_CTXT,&mut t);
|
2013-07-10 18:40:09 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,sc),&mut t, &mut rt), 51); }
|
2013-04-03 12:28:14 -05:00
|
|
|
// the simplest double-rename:
|
2013-09-01 20:45:37 -05:00
|
|
|
{ let a_to_a50 = new_rename_internal(id(a,EMPTY_CTXT),50,EMPTY_CTXT,&mut t);
|
2013-05-21 18:57:21 -05:00
|
|
|
let a50_to_a51 = new_rename_internal(id(a,a_to_a50),51,a_to_a50,&mut t);
|
2013-07-10 18:40:09 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,a50_to_a51),&mut t, &mut rt),51);
|
2013-04-03 12:28:14 -05:00
|
|
|
// mark on the outside doesn't stop rename:
|
2013-05-21 18:57:21 -05:00
|
|
|
let sc = new_mark_internal(9,a50_to_a51,&mut t);
|
2013-07-10 18:40:09 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,sc),&mut t, &mut rt),51);
|
2013-04-03 12:28:14 -05:00
|
|
|
// but mark on the inside does:
|
|
|
|
let a50_to_a51_b = unfold_test_sc(~[R(id(a,a_to_a50),51),
|
|
|
|
M(9)],
|
|
|
|
a_to_a50,
|
|
|
|
&mut t);
|
2013-07-10 18:40:09 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,a50_to_a51_b),&mut t, &mut rt),50);}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test] fn mtwt_resolve_test(){
|
|
|
|
let a = 40;
|
|
|
|
assert_eq!(mtwt_resolve(id(a,EMPTY_CTXT)),a);
|
2013-05-16 19:42:08 -05:00
|
|
|
}
|
|
|
|
|
2013-07-10 18:40:09 -05:00
|
|
|
|
2013-05-16 19:42:08 -05:00
|
|
|
#[test] fn hashing_tests () {
|
2013-05-21 18:57:21 -05:00
|
|
|
let mut t = new_sctable_internal();
|
2013-09-01 20:45:37 -05:00
|
|
|
assert_eq!(new_mark_internal(12,EMPTY_CTXT,&mut t),2);
|
|
|
|
assert_eq!(new_mark_internal(13,EMPTY_CTXT,&mut t),3);
|
2013-05-16 19:42:08 -05:00
|
|
|
// using the same one again should result in the same index:
|
2013-09-01 20:45:37 -05:00
|
|
|
assert_eq!(new_mark_internal(12,EMPTY_CTXT,&mut t),2);
|
2013-05-16 19:42:08 -05:00
|
|
|
// I'm assuming that the rename table will behave the same....
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
|
2013-07-10 18:40:09 -05:00
|
|
|
#[test] fn resolve_table_hashing_tests() {
|
|
|
|
let mut t = new_sctable_internal();
|
|
|
|
let mut rt = HashMap::new();
|
|
|
|
assert_eq!(rt.len(),0);
|
|
|
|
resolve_internal(id(30,EMPTY_CTXT),&mut t, &mut rt);
|
|
|
|
assert_eq!(rt.len(),1);
|
|
|
|
resolve_internal(id(39,EMPTY_CTXT),&mut t, &mut rt);
|
|
|
|
assert_eq!(rt.len(),2);
|
|
|
|
resolve_internal(id(30,EMPTY_CTXT),&mut t, &mut rt);
|
|
|
|
assert_eq!(rt.len(),2);
|
|
|
|
}
|
|
|
|
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|