2012-12-03 18:48:01 -06:00
|
|
|
// 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.
|
|
|
|
|
2012-09-04 13:37:29 -05:00
|
|
|
use ast::*;
|
2012-12-23 16:41:37 -06:00
|
|
|
use ast;
|
|
|
|
use ast_util;
|
2013-07-16 13:08:35 -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;
|
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;
|
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;
|
|
|
|
use std::local_data;
|
2013-04-03 12:28:14 -05:00
|
|
|
|
2013-06-04 13:09:18 -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-07-05 05:15:21 -05:00
|
|
|
pub fn path_to_ident(p: &Path) -> ident { copy *p.idents.last() }
|
2012-05-22 00:41:59 -05:00
|
|
|
|
2013-03-22 13:09:13 -05:00
|
|
|
pub fn local_def(id: node_id) -> def_id {
|
2013-01-13 13:05:40 -06:00
|
|
|
ast::def_id { crate: local_crate, node: id }
|
|
|
|
}
|
2012-03-21 14:42:34 -05:00
|
|
|
|
2013-03-22 13:09:13 -05:00
|
|
|
pub fn is_local(did: ast::def_id) -> bool { did.crate == local_crate }
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2013-04-17 11:15:08 -05:00
|
|
|
pub fn stmt_id(s: &stmt) -> node_id {
|
2012-08-06 14:34:08 -05:00
|
|
|
match s.node {
|
2012-08-03 21:59:04 -05:00
|
|
|
stmt_decl(_, id) => id,
|
|
|
|
stmt_expr(_, id) => id,
|
2012-11-12 22:06:55 -06:00
|
|
|
stmt_semi(_, id) => id,
|
2013-05-05 17:18:51 -05:00
|
|
|
stmt_mac(*) => fail!("attempted to analyze unexpanded stmt")
|
2012-02-14 17:21:53 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-02 17:38:19 -05:00
|
|
|
pub fn variant_def_ids(d: def) -> Option<(def_id, def_id)> {
|
2012-08-06 14:34:08 -05:00
|
|
|
match d {
|
2012-08-03 21:59:04 -05:00
|
|
|
def_variant(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-03-22 13:09:13 -05:00
|
|
|
pub fn def_id_of_def(d: def) -> def_id {
|
2012-08-06 14:34:08 -05:00
|
|
|
match d {
|
2012-10-12 19:00:08 -05:00
|
|
|
def_fn(id, _) | def_static_method(id, _, _) | def_mod(id) |
|
2013-06-21 20:46:34 -05:00
|
|
|
def_foreign_mod(id) | def_static(id, _) |
|
2011-12-28 10:50:12 -06:00
|
|
|
def_variant(_, id) | def_ty(id) | def_ty_param(id, _) |
|
2013-06-14 20:21:47 -05:00
|
|
|
def_use(id) | def_struct(id) | def_trait(id) | def_method(id, _) => {
|
2012-08-03 21:59:04 -05:00
|
|
|
id
|
|
|
|
}
|
2013-04-24 03:29:46 -05:00
|
|
|
def_arg(id, _) | def_local(id, _) | def_self(id, _) | def_self_ty(id)
|
2012-12-10 13:58:37 -06:00
|
|
|
| def_upvar(id, _, _, _) | def_binding(id, _) | def_region(id)
|
2012-08-14 21:20:56 -05:00
|
|
|
| def_typaram_binder(id) | def_label(id) => {
|
2012-02-27 18:05:17 -06:00
|
|
|
local_def(id)
|
|
|
|
}
|
|
|
|
|
2013-02-11 21:26:38 -06:00
|
|
|
def_prim_ty(_) => fail!()
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-22 13:09:13 -05:00
|
|
|
pub fn binop_to_str(op: binop) -> ~str {
|
2012-08-06 14:34:08 -05:00
|
|
|
match op {
|
2012-08-03 21:59:04 -05:00
|
|
|
add => return ~"+",
|
|
|
|
subtract => return ~"-",
|
|
|
|
mul => return ~"*",
|
2013-05-01 00:40:05 -05:00
|
|
|
div => return ~"/",
|
2012-08-03 21:59:04 -05:00
|
|
|
rem => return ~"%",
|
|
|
|
and => return ~"&&",
|
|
|
|
or => return ~"||",
|
|
|
|
bitxor => return ~"^",
|
|
|
|
bitand => return ~"&",
|
|
|
|
bitor => return ~"|",
|
|
|
|
shl => return ~"<<",
|
|
|
|
shr => return ~">>",
|
|
|
|
eq => return ~"==",
|
|
|
|
lt => return ~"<",
|
|
|
|
le => return ~"<=",
|
|
|
|
ne => return ~"!=",
|
|
|
|
ge => return ~">=",
|
|
|
|
gt => return ~">"
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-22 13:09:13 -05:00
|
|
|
pub fn binop_to_method_name(op: binop) -> Option<~str> {
|
2012-08-06 14:34:08 -05:00
|
|
|
match op {
|
2012-08-20 14:23:37 -05:00
|
|
|
add => return Some(~"add"),
|
|
|
|
subtract => return Some(~"sub"),
|
|
|
|
mul => return Some(~"mul"),
|
2013-05-01 00:40:05 -05:00
|
|
|
div => return Some(~"div"),
|
2013-04-21 10:58:53 -05:00
|
|
|
rem => return Some(~"rem"),
|
2012-08-20 14:23:37 -05:00
|
|
|
bitxor => return Some(~"bitxor"),
|
|
|
|
bitand => return Some(~"bitand"),
|
|
|
|
bitor => return Some(~"bitor"),
|
|
|
|
shl => return Some(~"shl"),
|
|
|
|
shr => return Some(~"shr"),
|
2012-08-27 18:26:35 -05:00
|
|
|
lt => return Some(~"lt"),
|
2012-08-29 21:23:15 -05:00
|
|
|
le => return Some(~"le"),
|
|
|
|
ge => return Some(~"ge"),
|
|
|
|
gt => return Some(~"gt"),
|
2012-08-27 18:26:35 -05:00
|
|
|
eq => return Some(~"eq"),
|
2012-09-07 14:44:53 -05:00
|
|
|
ne => return Some(~"ne"),
|
|
|
|
and | or => return None
|
2012-07-27 21:32:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-22 13:09:13 -05:00
|
|
|
pub fn lazy_binop(b: binop) -> bool {
|
2012-08-06 14:34:08 -05:00
|
|
|
match b {
|
2012-08-03 21:59:04 -05:00
|
|
|
and => true,
|
|
|
|
or => true,
|
|
|
|
_ => false
|
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
2013-03-22 13:09:13 -05:00
|
|
|
pub fn is_shift_binop(b: binop) -> bool {
|
2012-08-06 14:34:08 -05:00
|
|
|
match b {
|
2012-08-03 21:59:04 -05:00
|
|
|
shl => true,
|
|
|
|
shr => true,
|
|
|
|
_ => false
|
2012-02-21 23:01:33 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-22 13:09:13 -05:00
|
|
|
pub fn unop_to_str(op: unop) -> ~str {
|
2012-08-06 14:34:08 -05:00
|
|
|
match op {
|
2012-08-03 21:59:04 -05:00
|
|
|
box(mt) => if mt == m_mutbl { ~"@mut " } else { ~"@" },
|
2013-06-23 23:12:17 -05:00
|
|
|
uniq => ~"~",
|
2012-08-03 21:59:04 -05:00
|
|
|
deref => ~"*",
|
|
|
|
not => ~"!",
|
|
|
|
neg => ~"-"
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-22 13:09:13 -05:00
|
|
|
pub fn is_path(e: @expr) -> bool {
|
2012-08-06 14:34:08 -05:00
|
|
|
return match e.node { expr_path(_) => 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_char => ~"u8", // ???
|
|
|
|
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,
|
|
|
|
ty_i | ty_char | ty_i32 => 0x80000000u64, // actually ni about ty_i
|
|
|
|
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-03-22 13:09:13 -05:00
|
|
|
pub fn is_call_expr(e: @expr) -> bool {
|
2013-06-01 17:31:56 -05:00
|
|
|
match e.node { expr_call(*) => true, _ => false }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
2013-01-29 15:54:06 -06:00
|
|
|
pub fn block_from_expr(e: @expr) -> blk {
|
2013-07-16 13:08:35 -05:00
|
|
|
let mut blk = default_block(~[], option::Some::<@expr>(e), e.id);
|
|
|
|
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-04-17 11:15:08 -05:00
|
|
|
stmts1: ~[@stmt],
|
2013-01-14 21:35:08 -06:00
|
|
|
expr1: Option<@expr>,
|
|
|
|
id1: node_id
|
2013-07-16 13:08:35 -05:00
|
|
|
) -> blk {
|
|
|
|
ast::blk {
|
2013-01-14 21:35:08 -06:00
|
|
|
view_items: ~[],
|
|
|
|
stmts: stmts1,
|
|
|
|
expr: expr1,
|
|
|
|
id: id1,
|
|
|
|
rules: default_blk,
|
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-07-05 05:15:21 -05:00
|
|
|
pub fn ident_to_path(s: span, i: ident) -> Path {
|
|
|
|
ast::Path { span: s,
|
2013-01-13 12:48:09 -06:00
|
|
|
global: false,
|
|
|
|
idents: ~[i],
|
|
|
|
rp: None,
|
|
|
|
types: ~[] }
|
2012-01-14 18:05:07 -06:00
|
|
|
}
|
|
|
|
|
2013-04-17 11:15:08 -05:00
|
|
|
pub fn ident_to_pat(id: node_id, s: span, i: ident) -> @pat {
|
2013-01-14 22:52:28 -06:00
|
|
|
@ast::pat { id: id,
|
2013-05-29 18:59:33 -05:00
|
|
|
node: pat_ident(bind_infer, 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-03-22 13:09:13 -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-03-22 13:09:13 -05:00
|
|
|
pub fn unguarded_pat(a: &arm) -> Option<~[@pat]> {
|
2012-08-20 14:23:37 -05:00
|
|
|
if is_unguarded(a) { Some(/* FIXME (#2543) */ copy a.pats) } 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-07-01 21:38:19 -05:00
|
|
|
do ms.consume_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
|
|
|
}
|
|
|
|
|
2012-08-02 17:52:25 -05:00
|
|
|
// extract a ty_method from a trait_method. if the trait_method is
|
|
|
|
// a default, pull out the useful fields to make a ty_method
|
2013-02-18 00:20:36 -06:00
|
|
|
pub fn trait_method_to_ty_method(method: &trait_method) -> ty_method {
|
|
|
|
match *method {
|
|
|
|
required(ref m) => copy *m,
|
2013-02-18 23:25:44 -06:00
|
|
|
provided(ref m) => {
|
2013-01-15 17:03:49 -06:00
|
|
|
ty_method {
|
|
|
|
ident: m.ident,
|
2013-02-18 23:25:44 -06:00
|
|
|
attrs: copy m.attrs,
|
2013-01-15 17:03:49 -06:00
|
|
|
purity: m.purity,
|
2013-02-18 23:25:44 -06:00
|
|
|
decl: copy m.decl,
|
2013-02-14 23:50:03 -06:00
|
|
|
generics: copy m.generics,
|
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])
|
2012-08-02 17:52:30 -05:00
|
|
|
-> (~[ty_method], ~[@method]) {
|
2013-06-04 23:43:41 -05:00
|
|
|
let mut reqd = ~[];
|
|
|
|
let mut provd = ~[];
|
2013-06-21 07:29:53 -05:00
|
|
|
for trait_methods.iter().advance |trt_method| {
|
2012-09-19 18:55:01 -05:00
|
|
|
match *trt_method {
|
2013-02-24 20:32:02 -06:00
|
|
|
required(ref tm) => reqd.push(copy *tm),
|
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-01-31 20:35:49 -06:00
|
|
|
fn ident(&self) -> ident;
|
|
|
|
fn id(&self) -> ast::node_id;
|
2013-04-17 11:15:08 -05:00
|
|
|
fn accept<E: Copy>(&self, e: E, v: visit::vt<E>);
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
|
|
|
|
2013-02-26 19:12:00 -06:00
|
|
|
impl inlined_item_utils for inlined_item {
|
2013-01-31 20:35:49 -06:00
|
|
|
fn ident(&self) -> ident {
|
|
|
|
match *self {
|
|
|
|
ii_item(i) => /* FIXME (#2543) */ copy i.ident,
|
|
|
|
ii_foreign(i) => /* FIXME (#2543) */ copy i.ident,
|
2013-07-11 17:08:43 -05:00
|
|
|
ii_method(_, _, m) => /* FIXME (#2543) */ copy m.ident,
|
2012-03-01 21:37:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-31 20:35:49 -06:00
|
|
|
fn id(&self) -> ast::node_id {
|
|
|
|
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-04-17 11:15:08 -05:00
|
|
|
fn accept<E: Copy>(&self, e: E, v: visit::vt<E>) {
|
2013-01-31 20:35:49 -06:00
|
|
|
match *self {
|
2013-06-11 21:55:16 -05:00
|
|
|
ii_item(i) => (v.visit_item)(i, (e, v)),
|
|
|
|
ii_foreign(i) => (v.visit_foreign_item)(i, (e, v)),
|
2013-07-11 17:08:43 -05:00
|
|
|
ii_method(_, _, m) => visit::visit_method_helper(m, (e, v)),
|
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-01-29 15:54:06 -06:00
|
|
|
pub fn is_self(d: ast::def) -> bool {
|
2012-08-06 14:34:08 -05:00
|
|
|
match d {
|
2012-12-10 13:58:37 -06:00
|
|
|
def_self(*) => true,
|
2012-08-20 18:53:33 -05:00
|
|
|
def_upvar(_, d, _, _) => is_self(*d),
|
|
|
|
_ => 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-01-29 15:54:06 -06:00
|
|
|
pub fn operator_prec(op: ast::binop) -> uint {
|
2012-08-06 14:34:08 -05:00
|
|
|
match op {
|
2013-05-01 00:40:05 -05:00
|
|
|
mul | div | rem => 12u,
|
2012-04-26 18:13:59 -05:00
|
|
|
// 'as' sits between here with 11
|
2012-08-03 21:59:04 -05:00
|
|
|
add | subtract => 10u,
|
|
|
|
shl | shr => 9u,
|
|
|
|
bitand => 8u,
|
|
|
|
bitxor => 7u,
|
|
|
|
bitor => 6u,
|
|
|
|
lt | le | ge | gt => 4u,
|
|
|
|
eq | ne => 3u,
|
|
|
|
and => 2u,
|
|
|
|
or => 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.
|
|
|
|
pub static as_prec: uint = 11u;
|
|
|
|
|
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-01-17 10:55:28 -06:00
|
|
|
min: node_id,
|
|
|
|
max: node_id,
|
|
|
|
}
|
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-05-31 17:17:22 -05:00
|
|
|
pub fn add(&mut self, id: node_id) {
|
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-05-27 22:21:29 -05:00
|
|
|
pub fn id_visitor<T: Copy>(vfn: @fn(node_id, T)) -> visit::vt<T> {
|
|
|
|
let visit_generics: @fn(&Generics, T) = |generics, t| {
|
2013-06-24 16:19:28 -05:00
|
|
|
for generics.ty_params.iter().advance |p| {
|
2013-06-15 19:26:59 -05:00
|
|
|
vfn(p.id, copy t);
|
2013-02-14 23:50:03 -06:00
|
|
|
}
|
2013-06-24 16:19:28 -05:00
|
|
|
for generics.lifetimes.iter().advance |p| {
|
2013-06-15 19:26:59 -05:00
|
|
|
vfn(p.id, copy t);
|
2013-02-14 23:50:03 -06:00
|
|
|
}
|
|
|
|
};
|
2013-05-27 22:21:29 -05:00
|
|
|
visit::mk_vt(@visit::Visitor {
|
2013-06-11 21:55:16 -05:00
|
|
|
visit_mod: |m, sp, id, (t, vt)| {
|
2013-06-15 19:26:59 -05:00
|
|
|
vfn(id, copy t);
|
2013-06-11 21:55:16 -05:00
|
|
|
visit::visit_mod(m, sp, id, (t, vt));
|
2013-05-27 22:21:29 -05:00
|
|
|
},
|
2012-05-16 15:21:04 -05:00
|
|
|
|
2013-06-11 21:55:16 -05:00
|
|
|
visit_view_item: |vi, (t, vt)| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match vi.node {
|
2013-06-15 19:26:59 -05:00
|
|
|
view_item_extern_mod(_, _, id) => vfn(id, copy t),
|
2013-02-18 23:25:44 -06:00
|
|
|
view_item_use(ref vps) => {
|
2013-06-21 07:29:53 -05:00
|
|
|
for vps.iter().advance |vp| {
|
2012-09-18 23:41:37 -05:00
|
|
|
match vp.node {
|
2013-06-15 19:26:59 -05:00
|
|
|
view_path_simple(_, _, id) => vfn(id, copy t),
|
|
|
|
view_path_glob(_, id) => vfn(id, copy t),
|
2013-04-30 00:15:17 -05:00
|
|
|
view_path_list(_, ref paths, id) => {
|
2013-06-15 19:26:59 -05:00
|
|
|
vfn(id, copy t);
|
2013-06-21 07:29:53 -05:00
|
|
|
for paths.iter().advance |p| {
|
2013-06-15 19:26:59 -05:00
|
|
|
vfn(p.node.id, copy t);
|
2013-04-30 00:15:17 -05:00
|
|
|
}
|
|
|
|
}
|
2012-09-18 23:41:37 -05:00
|
|
|
}
|
|
|
|
}
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
|
|
|
}
|
2013-06-11 21:55:16 -05:00
|
|
|
visit::visit_view_item(vi, (t, vt));
|
2012-05-16 15:21:04 -05:00
|
|
|
},
|
|
|
|
|
2013-06-11 21:55:16 -05:00
|
|
|
visit_foreign_item: |ni, (t, vt)| {
|
2013-06-15 19:26:59 -05:00
|
|
|
vfn(ni.id, copy t);
|
2013-06-11 21:55:16 -05:00
|
|
|
visit::visit_foreign_item(ni, (t, vt));
|
2013-05-27 22:21:29 -05:00
|
|
|
},
|
2012-05-16 15:21:04 -05:00
|
|
|
|
2013-06-11 21:55:16 -05:00
|
|
|
visit_item: |i, (t, vt)| {
|
2013-06-15 19:26:59 -05:00
|
|
|
vfn(i.id, copy t);
|
2012-08-06 14:34:08 -05:00
|
|
|
match i.node {
|
2012-12-04 12:50:00 -06:00
|
|
|
item_enum(ref enum_definition, _) =>
|
2013-06-21 07:29:53 -05:00
|
|
|
for (*enum_definition).variants.iter().advance |v| { vfn(v.node.id, copy t); },
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => ()
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
2013-06-11 21:55:16 -05:00
|
|
|
visit::visit_item(i, (t, vt));
|
2012-05-16 15:21:04 -05:00
|
|
|
},
|
|
|
|
|
2013-06-11 21:55:16 -05:00
|
|
|
visit_local: |l, (t, vt)| {
|
2013-06-15 19:26:59 -05:00
|
|
|
vfn(l.node.id, copy t);
|
2013-06-11 21:55:16 -05:00
|
|
|
visit::visit_local(l, (t, vt));
|
2013-05-27 22:21:29 -05:00
|
|
|
},
|
2013-06-11 21:55:16 -05:00
|
|
|
visit_block: |b, (t, vt)| {
|
2013-07-16 13:08:35 -05:00
|
|
|
vfn(b.id, copy t);
|
2013-06-11 21:55:16 -05:00
|
|
|
visit::visit_block(b, (t, vt));
|
2013-05-27 22:21:29 -05:00
|
|
|
},
|
2013-06-11 21:55:16 -05:00
|
|
|
visit_stmt: |s, (t, vt)| {
|
2013-06-15 19:26:59 -05:00
|
|
|
vfn(ast_util::stmt_id(s), copy t);
|
2013-06-11 21:55:16 -05:00
|
|
|
visit::visit_stmt(s, (t, vt));
|
2013-05-27 22:21:29 -05:00
|
|
|
},
|
2013-06-11 21:55:16 -05:00
|
|
|
visit_pat: |p, (t, vt)| {
|
2013-06-15 19:26:59 -05:00
|
|
|
vfn(p.id, copy t);
|
2013-06-11 21:55:16 -05:00
|
|
|
visit::visit_pat(p, (t, vt));
|
2012-05-16 15:21:04 -05:00
|
|
|
},
|
|
|
|
|
2013-06-11 21:55:16 -05:00
|
|
|
visit_expr: |e, (t, vt)| {
|
2013-06-10 16:50:12 -05:00
|
|
|
{
|
|
|
|
let r = e.get_callee_id();
|
|
|
|
for r.iter().advance |callee_id| {
|
2013-06-15 19:26:59 -05:00
|
|
|
vfn(*callee_id, copy t);
|
2013-06-10 16:50:12 -05:00
|
|
|
}
|
2013-06-01 17:31:56 -05:00
|
|
|
}
|
2013-06-15 19:26:59 -05:00
|
|
|
vfn(e.id, copy t);
|
2013-06-11 21:55:16 -05:00
|
|
|
visit::visit_expr(e, (t, vt));
|
2013-05-27 22:21:29 -05:00
|
|
|
},
|
2012-07-30 21:05:56 -05:00
|
|
|
|
2013-06-11 21:55:16 -05:00
|
|
|
visit_ty: |ty, (t, vt)| {
|
2013-07-08 10:34:28 -05:00
|
|
|
vfn(ty.id, copy t);
|
2013-05-27 22:21:29 -05:00
|
|
|
match ty.node {
|
2013-06-17 14:16:30 -05:00
|
|
|
ty_path(_, _, id) => vfn(id, copy t),
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => { /* fall through */ }
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
2013-06-11 21:55:16 -05:00
|
|
|
visit::visit_ty(ty, (t, vt));
|
2012-05-16 15:21:04 -05:00
|
|
|
},
|
|
|
|
|
2013-06-11 21:55:16 -05:00
|
|
|
visit_generics: |generics, (t, vt)| {
|
2013-06-15 19:26:59 -05:00
|
|
|
visit_generics(generics, copy t);
|
2013-06-11 21:55:16 -05:00
|
|
|
visit::visit_generics(generics, (t, vt));
|
2013-05-27 22:21:29 -05:00
|
|
|
},
|
2012-05-16 15:21:04 -05:00
|
|
|
|
2013-06-11 21:55:16 -05:00
|
|
|
visit_fn: |fk, d, a, b, id, (t, vt)| {
|
2013-06-15 19:26:59 -05:00
|
|
|
vfn(id, copy t);
|
2012-05-16 15:21:04 -05:00
|
|
|
|
2013-02-18 23:25:44 -06:00
|
|
|
match *fk {
|
2013-03-13 21:25:28 -05:00
|
|
|
visit::fk_item_fn(_, generics, _, _) => {
|
2013-06-15 19:26:59 -05:00
|
|
|
visit_generics(generics, copy t);
|
2012-09-18 23:41:37 -05:00
|
|
|
}
|
2013-02-28 09:25:31 -06:00
|
|
|
visit::fk_method(_, generics, m) => {
|
2013-06-15 19:26:59 -05:00
|
|
|
vfn(m.self_id, copy t);
|
|
|
|
visit_generics(generics, copy t);
|
2012-09-18 23:41:37 -05:00
|
|
|
}
|
2013-01-10 12:59:58 -06:00
|
|
|
visit::fk_anon(_) |
|
|
|
|
visit::fk_fn_block => {
|
2012-06-13 18:14:01 -05:00
|
|
|
}
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
|
|
|
|
2013-06-21 07:29:53 -05:00
|
|
|
for d.inputs.iter().advance |arg| {
|
2013-06-15 19:26:59 -05:00
|
|
|
vfn(arg.id, copy t)
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
2013-06-15 19:26:59 -05:00
|
|
|
visit::visit_fn(fk, d, a, b, id, (copy t, vt));
|
2013-05-27 22:21:29 -05:00
|
|
|
},
|
|
|
|
|
2013-06-11 21:55:16 -05:00
|
|
|
visit_struct_field: |f, (t, vt)| {
|
2013-06-15 19:26:59 -05:00
|
|
|
vfn(f.node.id, copy t);
|
2013-06-11 21:55:16 -05:00
|
|
|
visit::visit_struct_field(f, (t, vt));
|
2012-05-16 15:21:04 -05:00
|
|
|
},
|
|
|
|
|
2013-05-27 22:21:29 -05:00
|
|
|
.. *visit::default_visitor()
|
2012-05-16 15:21:04 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2013-04-17 11:15:08 -05:00
|
|
|
pub fn visit_ids_for_inlined_item(item: &inlined_item, vfn: @fn(node_id)) {
|
2013-05-27 22:21:29 -05:00
|
|
|
item.accept((), id_visitor(|id, ()| vfn(id)));
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
|
|
|
|
2013-03-01 15:30:06 -06:00
|
|
|
pub fn compute_id_range(visit_ids_fn: &fn(@fn(node_id))) -> id_range {
|
2013-03-15 14:24:24 -05:00
|
|
|
let result = @mut id_range::max();
|
2012-06-30 18:19:07 -05:00
|
|
|
do visit_ids_fn |id| {
|
2013-03-15 14:24:24 -05:00
|
|
|
result.add(id);
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
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-05-22 05:54:35 -05:00
|
|
|
pub fn walk_pat(pat: @pat, it: &fn(@pat) -> bool) -> bool {
|
|
|
|
if !it(pat) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
match pat.node {
|
2012-09-19 18:55:01 -05:00
|
|
|
pat_ident(_, _, Some(p)) => walk_pat(p, it),
|
2013-03-05 20:38:52 -06:00
|
|
|
pat_struct(_, 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-02-18 23:25:44 -06:00
|
|
|
pat_enum(_, Some(ref s)) | pat_tup(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
|
|
|
}
|
|
|
|
pat_box(s) | pat_uniq(s) | pat_region(s) => {
|
|
|
|
walk_pat(s, it)
|
|
|
|
}
|
2013-02-26 12:58:46 -06:00
|
|
|
pat_vec(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
|
|
|
}
|
2012-09-19 18:55:01 -05:00
|
|
|
pat_wild | pat_lit(_) | pat_range(_, _) | pat_ident(_, _, _) |
|
2013-05-22 05:54:35 -05:00
|
|
|
pat_enum(_, _) => {
|
|
|
|
true
|
|
|
|
}
|
2012-05-22 01:17:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-27 19:03:04 -05:00
|
|
|
pub trait EachViewItem {
|
2013-06-27 08:04:22 -05:00
|
|
|
pub fn each_view_item(&self, f: @fn(&ast::view_item) -> bool) -> bool;
|
2013-05-27 19:03:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl EachViewItem for ast::crate {
|
2013-06-27 08:04:22 -05:00
|
|
|
fn each_view_item(&self, f: @fn(&ast::view_item) -> bool) -> bool {
|
2013-05-27 19:03:04 -05:00
|
|
|
let broke = @mut false;
|
|
|
|
let vtor: visit::vt<()> = visit::mk_simple_visitor(@visit::SimpleVisitor {
|
|
|
|
visit_view_item: |vi| { *broke = f(vi); }, ..*visit::default_simple_visitor()
|
|
|
|
});
|
2013-06-11 21:55:16 -05:00
|
|
|
visit::visit_crate(self, ((), vtor));
|
2013-05-27 19:03:04 -05:00
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-27 08:04:22 -05:00
|
|
|
pub fn view_path_id(p: &view_path) -> node_id {
|
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.
|
|
|
|
pub fn pat_is_ident(pat: @ast::pat) -> bool {
|
|
|
|
match pat.node {
|
|
|
|
ast::pat_ident(*) => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-03 12:28:14 -05:00
|
|
|
// HYGIENE FUNCTIONS
|
|
|
|
|
2013-05-17 12:18:09 -05:00
|
|
|
/// Construct an identifier with the given name and an empty context:
|
|
|
|
pub fn new_ident(name: Name) -> ident { ident {name: name, ctxt: 0}}
|
2013-04-03 12:28:14 -05:00
|
|
|
|
|
|
|
/// 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
|
|
|
|
// FIXME #4536 : currently pub to allow testing
|
|
|
|
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) {
|
|
|
|
None => fail!(~"internal error: key disappeared 2013042901"),
|
|
|
|
Some(idxptr) => {*idxptr}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Extend a syntax context with a given rename
|
2013-05-21 18:57:21 -05:00
|
|
|
pub fn new_rename(id:ident, to:Name, tail:SyntaxContext) -> SyntaxContext {
|
|
|
|
new_rename_internal(id, to, tail, get_sctable())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extend a syntax context with a given rename and sctable
|
|
|
|
// FIXME #4536 : currently pub to allow testing
|
|
|
|
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) {
|
|
|
|
None => fail!(~"internal error: key disappeared 2013042902"),
|
|
|
|
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-05-21 18:57:21 -05:00
|
|
|
// FIXME #4536 : currently pub to allow testing
|
|
|
|
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-07-12 03:38:44 -05:00
|
|
|
#[cfg(not(stage0))]
|
2013-07-14 03:43:31 -05:00
|
|
|
static sctable_key: local_data::Key<@@mut SCTable> = &local_data::Key;
|
2013-07-12 03:38:44 -05:00
|
|
|
#[cfg(stage0)]
|
|
|
|
fn sctable_key(_: @@mut SCTable) {}
|
|
|
|
match local_data::get(sctable_key, |k| k.map(|&k| *k)) {
|
|
|
|
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-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-05-21 18:57:21 -05:00
|
|
|
pub fn resolve(id : ident) -> Name {
|
|
|
|
resolve_internal(id, get_sctable())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Resolve a syntax object to a name, per MTWT.
|
|
|
|
// FIXME #4536 : currently pub to allow testing
|
|
|
|
pub fn resolve_internal(id : ident, table : &mut SCTable) -> Name {
|
2013-05-16 19:42:08 -05:00
|
|
|
match table.table[id.ctxt] {
|
2013-05-17 12:18:09 -05:00
|
|
|
EmptyCtxt => id.name,
|
2013-04-03 12:28:14 -05:00
|
|
|
// ignore marks here:
|
2013-05-21 18:57:21 -05:00
|
|
|
Mark(_,subctxt) => resolve_internal(ident{name:id.name, ctxt: subctxt},table),
|
2013-04-03 12:28:14 -05:00
|
|
|
// do the rename if necessary:
|
2013-05-17 12:18:09 -05:00
|
|
|
Rename(ident{name,ctxt},toname,subctxt) => {
|
2013-04-03 12:28:14 -05:00
|
|
|
// this could be cached or computed eagerly:
|
2013-05-21 18:57:21 -05:00
|
|
|
let resolvedfrom = resolve_internal(ident{name:name,ctxt:ctxt},table);
|
|
|
|
let resolvedthis = resolve_internal(ident{name:id.name,ctxt:subctxt},table);
|
2013-04-03 12:28:14 -05:00
|
|
|
if ((resolvedthis == resolvedfrom)
|
2013-05-21 18:57:21 -05:00
|
|
|
&& (marksof(ctxt,resolvedthis,table)
|
|
|
|
== marksof(subctxt,resolvedthis,table))) {
|
2013-04-03 12:28:14 -05:00
|
|
|
toname
|
|
|
|
} else {
|
|
|
|
resolvedthis
|
|
|
|
}
|
|
|
|
}
|
2013-05-16 19:42:08 -05:00
|
|
|
IllegalCtxt() => fail!(~"expected resolvable context, got IllegalCtxt")
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Compute the marks associated with a syntax context.
|
|
|
|
// 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-05-16 19:42:08 -05:00
|
|
|
IllegalCtxt => fail!(~"expected resolvable context, got IllegalCtxt")
|
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()
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use ast::*;
|
|
|
|
use super::*;
|
2013-06-24 19:40:33 -05:00
|
|
|
use std::io;
|
2013-04-03 12:28:14 -05:00
|
|
|
|
|
|
|
#[test] fn xorpush_test () {
|
|
|
|
let mut s = ~[];
|
|
|
|
xorPush(&mut s,14);
|
2013-05-12 15:50:57 -05:00
|
|
|
assert_eq!(copy s,~[14]);
|
2013-04-03 12:28:14 -05:00
|
|
|
xorPush(&mut s,14);
|
2013-05-12 15:50:57 -05:00
|
|
|
assert_eq!(copy s,~[]);
|
2013-04-03 12:28:14 -05:00
|
|
|
xorPush(&mut s,14);
|
2013-05-12 15:50:57 -05:00
|
|
|
assert_eq!(copy s,~[14]);
|
2013-04-03 12:28:14 -05:00
|
|
|
xorPush(&mut s,15);
|
2013-05-12 15:50:57 -05:00
|
|
|
assert_eq!(copy s,~[14,15]);
|
2013-04-03 12:28:14 -05:00
|
|
|
xorPush (&mut s,16);
|
2013-05-12 15:50:57 -05:00
|
|
|
assert_eq!(copy s,~[14,15,16]);
|
2013-04-03 12:28:14 -05:00
|
|
|
xorPush (&mut s,16);
|
2013-05-12 15:50:57 -05:00
|
|
|
assert_eq!(copy s,~[14,15]);
|
2013-04-03 12:28:14 -05:00
|
|
|
xorPush (&mut s,15);
|
2013-05-12 15:50:57 -05:00
|
|
|
assert_eq!(copy s,~[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)
|
|
|
|
fn uints_to_idents (uints: &~[uint]) -> @~[ident] {
|
2013-06-29 00:05:50 -05:00
|
|
|
@uints.map(|u| ident {name:*u, ctxt: empty_ctxt})
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn id (u : uint, s: SyntaxContext) -> ident {
|
2013-05-17 12:18:09 -05:00
|
|
|
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.
|
|
|
|
#[deriving(Eq)]
|
|
|
|
enum TestSC {
|
|
|
|
M(Mrk),
|
|
|
|
R(ident,Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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-05-16 19:42:08 -05:00
|
|
|
IllegalCtxt => fail!("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-05-16 19:42:08 -05:00
|
|
|
assert_eq!(unfold_test_sc(copy test_sc,empty_ctxt,&mut t),4);
|
|
|
|
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-05-16 19:42:08 -05:00
|
|
|
assert_eq!(unfold_marks(~[3,7],empty_ctxt,&mut t),3);
|
|
|
|
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-04-03 12:28:14 -05:00
|
|
|
assert_eq!(marksof (empty_ctxt,stopname,&t),~[]);
|
|
|
|
// FIXME #5074: ANF'd to dodge nested calls
|
|
|
|
{ let ans = unfold_marks(~[4,98],empty_ctxt,&mut t);
|
|
|
|
assert_eq! (marksof (ans,stopname,&t),~[4,98]);}
|
|
|
|
// does xoring work?
|
|
|
|
{ let ans = unfold_marks(~[5,5,16],empty_ctxt,&mut t);
|
|
|
|
assert_eq! (marksof (ans,stopname,&t), ~[16]);}
|
|
|
|
// does nested xoring work?
|
|
|
|
{ let ans = unfold_marks(~[5,10,10,5,16],empty_ctxt,&mut t);
|
|
|
|
assert_eq! (marksof (ans, stopname,&t), ~[16]);}
|
|
|
|
// rename where stop doesn't match:
|
|
|
|
{ let chain = ~[M(9),
|
|
|
|
R(id(name1,
|
2013-05-21 18:57:21 -05:00
|
|
|
new_mark_internal (4, empty_ctxt,&mut t)),
|
2013-04-03 12:28:14 -05:00
|
|
|
100101102),
|
|
|
|
M(14)];
|
|
|
|
let ans = unfold_test_sc(chain,empty_ctxt,&mut t);
|
|
|
|
assert_eq! (marksof (ans, stopname, &t), ~[9,14]);}
|
|
|
|
// rename where stop does match
|
2013-05-21 18:57:21 -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)];
|
|
|
|
let ans = unfold_test_sc(chain,empty_ctxt,&mut t);
|
|
|
|
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-04-03 12:28:14 -05:00
|
|
|
// - ctxt is MT
|
2013-05-21 18:57:21 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,empty_ctxt),&mut t),a);
|
2013-04-03 12:28:14 -05:00
|
|
|
// - simple ignored marks
|
|
|
|
{ let sc = unfold_marks(~[1,2,3],empty_ctxt,&mut t);
|
2013-05-21 18:57:21 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,sc),&mut t),a);}
|
2013-04-03 12:28:14 -05:00
|
|
|
// - orthogonal rename where names don't match
|
|
|
|
{ let sc = unfold_test_sc(~[R(id(50,empty_ctxt),51),M(12)],empty_ctxt,&mut t);
|
2013-05-21 18:57:21 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,sc),&mut t),a);}
|
2013-04-03 12:28:14 -05:00
|
|
|
// - rename where names do match, but marks don't
|
2013-05-21 18:57:21 -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)],
|
|
|
|
empty_ctxt,&mut t);
|
2013-05-21 18:57:21 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,sc),&mut t), a);}
|
2013-04-03 12:28:14 -05:00
|
|
|
// - rename where names and marks match
|
|
|
|
{ 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-05-21 18:57:21 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,sc),&mut t), 50); }
|
2013-04-03 12:28:14 -05:00
|
|
|
// - rename where names and marks match by literal sharing
|
|
|
|
{ let sc1 = unfold_test_sc(~[M(1),M(2)],empty_ctxt,&mut t);
|
|
|
|
let sc = unfold_test_sc(~[R(id(a,sc1),50)],sc1,&mut t);
|
2013-05-21 18:57:21 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,sc),&mut t), 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");
|
|
|
|
{ let sc = unfold_test_sc(~[R(id(a,empty_ctxt),50),
|
|
|
|
R(id(a,empty_ctxt),51)],
|
|
|
|
empty_ctxt,&mut t);
|
2013-05-21 18:57:21 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,sc),&mut t), 51); }
|
2013-04-03 12:28:14 -05:00
|
|
|
// the simplest double-rename:
|
2013-05-21 18:57:21 -05:00
|
|
|
{ let a_to_a50 = new_rename_internal(id(a,empty_ctxt),50,empty_ctxt,&mut t);
|
|
|
|
let a50_to_a51 = new_rename_internal(id(a,a_to_a50),51,a_to_a50,&mut t);
|
|
|
|
assert_eq!(resolve_internal(id(a,a50_to_a51),&mut t),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);
|
|
|
|
assert_eq!(resolve_internal(id(a,sc),&mut t),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-05-21 18:57:21 -05:00
|
|
|
assert_eq!(resolve_internal(id(a,a50_to_a51_b),&mut t),50);}
|
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();
|
|
|
|
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-05-21 18:57:21 -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
|
|
|
}
|
|
|
|
|
|
|
|
}
|