2011-11-30 10:58:08 -06:00
|
|
|
import std::{str, option, int, map};
|
2011-08-21 23:44:41 -05:00
|
|
|
import codemap::span;
|
|
|
|
import ast::*;
|
|
|
|
|
2011-11-18 05:39:20 -06:00
|
|
|
fn respan<copy T>(sp: span, t: T) -> spanned<T> {
|
|
|
|
ret {node: t, span: sp};
|
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2011-11-30 10:58:08 -06:00
|
|
|
fn new_node_hash<copy V>() -> map::hashmap<node_id, V> {
|
|
|
|
fn node_id_hash(&&i: node_id) -> uint { ret int::hash(i as int); }
|
|
|
|
fn node_id_eq(&&a: node_id, &&b: node_id) -> bool
|
|
|
|
{ ret int::eq(a as int, b as int); }
|
|
|
|
ret map::mk_hashmap(node_id_hash, node_id_eq);
|
|
|
|
}
|
|
|
|
|
2011-08-21 23:44:41 -05:00
|
|
|
/* assuming that we're not in macro expansion */
|
|
|
|
fn mk_sp(lo: uint, hi: uint) -> span {
|
|
|
|
ret {lo: lo, hi: hi, expanded_from: codemap::os_none};
|
|
|
|
}
|
|
|
|
|
|
|
|
// make this a const, once the compiler supports it
|
|
|
|
fn dummy_sp() -> span { ret mk_sp(0u, 0u); }
|
|
|
|
|
2011-11-30 06:38:38 -06:00
|
|
|
fn path_name(p: @path) -> str { path_name_i(p.node.idents) }
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn path_name_i(idents: [ident]) -> str { str::connect(idents, "::") }
|
2011-08-21 23:44:41 -05:00
|
|
|
|
|
|
|
fn local_def(id: node_id) -> def_id { ret {crate: local_crate, node: id}; }
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn variant_def_ids(d: def) -> {tg: def_id, var: def_id} {
|
2011-08-21 23:44:41 -05:00
|
|
|
alt d { def_variant(tag_id, var_id) { ret {tg: tag_id, var: var_id}; } }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn def_id_of_def(d: def) -> def_id {
|
|
|
|
alt d {
|
|
|
|
def_fn(id, _) { ret id; }
|
2011-09-01 03:03:17 -05:00
|
|
|
def_obj_field(id, _) { ret id; }
|
2011-08-21 23:44:41 -05:00
|
|
|
def_mod(id) { ret id; }
|
|
|
|
def_native_mod(id) { ret id; }
|
|
|
|
def_const(id) { ret id; }
|
2011-09-01 03:03:17 -05:00
|
|
|
def_arg(id, _) { ret id; }
|
2011-09-15 07:08:54 -05:00
|
|
|
def_local(id, _) { ret id; }
|
2011-08-21 23:44:41 -05:00
|
|
|
def_variant(_, id) { ret id; }
|
|
|
|
def_ty(id) { ret id; }
|
2011-10-28 10:00:14 -05:00
|
|
|
def_ty_param(_, _) { fail; }
|
2011-08-21 23:44:41 -05:00
|
|
|
def_binding(id) { ret id; }
|
|
|
|
def_use(id) { ret id; }
|
|
|
|
def_native_ty(id) { ret id; }
|
2011-10-11 16:52:38 -05:00
|
|
|
def_native_fn(id, _) { ret id; }
|
2011-09-01 07:35:00 -05:00
|
|
|
def_upvar(id, _, _) { ret id; }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-02 17:34:58 -05:00
|
|
|
type pat_id_map = std::map::hashmap<str, node_id>;
|
2011-08-25 16:15:54 -05:00
|
|
|
|
2011-08-21 23:44:41 -05:00
|
|
|
// This is used because same-named variables in alternative patterns need to
|
|
|
|
// use the node_id of their namesake in the first pattern.
|
2011-09-12 04:27:30 -05:00
|
|
|
fn pat_id_map(pat: @pat) -> pat_id_map {
|
2011-08-21 23:44:41 -05:00
|
|
|
let map = std::map::new_str_hash::<node_id>();
|
2011-10-21 05:41:42 -05:00
|
|
|
pat_bindings(pat) {|bound|
|
2011-08-21 23:44:41 -05:00
|
|
|
let name = alt bound.node { pat_bind(n) { n } };
|
2011-08-25 19:00:12 -05:00
|
|
|
map.insert(name, bound.id);
|
2011-10-21 05:41:42 -05:00
|
|
|
};
|
2011-08-21 23:44:41 -05:00
|
|
|
ret map;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: could return a constrained type
|
2011-10-21 05:41:42 -05:00
|
|
|
fn pat_bindings(pat: @pat, it: block(@pat)) {
|
2011-08-21 23:44:41 -05:00
|
|
|
alt pat.node {
|
2011-10-21 05:41:42 -05:00
|
|
|
pat_bind(_) { it(pat); }
|
|
|
|
pat_tag(_, sub) { for p in sub { pat_bindings(p, it); } }
|
|
|
|
pat_rec(fields, _) { for f in fields { pat_bindings(f.pat, it); } }
|
|
|
|
pat_tup(elts) { for elt in elts { pat_bindings(elt, it); } }
|
|
|
|
pat_box(sub) { pat_bindings(sub, it); }
|
|
|
|
pat_uniq(sub) { pat_bindings(sub, it); }
|
2011-09-28 14:07:33 -05:00
|
|
|
pat_wild. | pat_lit(_) | pat_range(_, _) { }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn pat_binding_ids(pat: @pat) -> [node_id] {
|
2011-08-21 23:44:41 -05:00
|
|
|
let found = [];
|
2011-10-21 05:41:42 -05:00
|
|
|
pat_bindings(pat) {|b| found += [b.id]; };
|
2011-08-21 23:44:41 -05:00
|
|
|
ret found;
|
|
|
|
}
|
|
|
|
|
2011-09-02 17:34:58 -05:00
|
|
|
fn binop_to_str(op: binop) -> str {
|
2011-08-21 23:44:41 -05:00
|
|
|
alt op {
|
2011-09-02 17:34:58 -05:00
|
|
|
add. { ret "+"; }
|
|
|
|
sub. { ret "-"; }
|
|
|
|
mul. { ret "*"; }
|
|
|
|
div. { ret "/"; }
|
|
|
|
rem. { ret "%"; }
|
|
|
|
and. { ret "&&"; }
|
|
|
|
or. { ret "||"; }
|
|
|
|
bitxor. { ret "^"; }
|
|
|
|
bitand. { ret "&"; }
|
|
|
|
bitor. { ret "|"; }
|
|
|
|
lsl. { ret "<<"; }
|
|
|
|
lsr. { ret ">>"; }
|
|
|
|
asr. { ret ">>>"; }
|
|
|
|
eq. { ret "=="; }
|
|
|
|
lt. { ret "<"; }
|
|
|
|
le. { ret "<="; }
|
|
|
|
ne. { ret "!="; }
|
|
|
|
ge. { ret ">="; }
|
|
|
|
gt. { ret ">"; }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-24 15:41:50 -05:00
|
|
|
pure fn lazy_binop(b: binop) -> bool {
|
2011-08-21 23:44:41 -05:00
|
|
|
alt b { and. { true } or. { true } _ { false } }
|
|
|
|
}
|
|
|
|
|
2011-09-02 17:34:58 -05:00
|
|
|
fn unop_to_str(op: unop) -> str {
|
2011-08-21 23:44:41 -05:00
|
|
|
alt op {
|
2011-09-02 17:34:58 -05:00
|
|
|
box(mt) { if mt == mut { ret "@mutable "; } ret "@"; }
|
2011-09-20 20:06:47 -05:00
|
|
|
uniq(mt) { if mt == mut { ret "~mutable "; } ret "~"; }
|
2011-09-02 17:34:58 -05:00
|
|
|
deref. { ret "*"; }
|
|
|
|
not. { ret "!"; }
|
|
|
|
neg. { ret "-"; }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn is_path(e: @expr) -> bool {
|
2011-08-21 23:44:41 -05:00
|
|
|
ret alt e.node { expr_path(_) { true } _ { false } };
|
|
|
|
}
|
|
|
|
|
2011-12-07 14:06:12 -06:00
|
|
|
fn int_ty_to_str(t: int_ty) -> str {
|
|
|
|
alt t {
|
|
|
|
ty_i. { "" } ty_i8. { "i8" } ty_i16. { "i16" }
|
|
|
|
ty_i32. { "i32" } ty_i64. { "i64" }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-07 14:53:05 -06:00
|
|
|
fn int_ty_max(t: int_ty) -> u64 {
|
|
|
|
alt t {
|
|
|
|
ty_i8. { 0x80u64 }
|
|
|
|
ty_i16. { 0x800u64 }
|
|
|
|
ty_char. | ty_i32. { 0x80000000u64 }
|
|
|
|
ty_i64. { 0x8000000000000000u64 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-07 14:06:12 -06:00
|
|
|
fn uint_ty_to_str(t: uint_ty) -> str {
|
|
|
|
alt t {
|
|
|
|
ty_u. { "" } ty_u8. { "u8" } ty_u16. { "u16" }
|
|
|
|
ty_u32. { "u32" } ty_u64. { "u64" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-07 14:53:05 -06:00
|
|
|
fn uint_ty_max(t: uint_ty) -> u64 {
|
|
|
|
alt t {
|
|
|
|
ty_u8. { 0xffu64 }
|
|
|
|
ty_u16. { 0xffffu64 }
|
|
|
|
ty_u32. { 0xffffffffu64 }
|
|
|
|
ty_u64. { 0xffffffffffffffffu64 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-07 14:06:12 -06:00
|
|
|
fn float_ty_to_str(t: float_ty) -> str {
|
|
|
|
alt t { ty_f. { "" } ty_f32. { "f32" } ty_f64. { "f64" } }
|
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
|
|
|
|
fn is_exported(i: ident, m: _mod) -> bool {
|
|
|
|
let nonlocal = true;
|
2011-08-31 11:45:37 -05:00
|
|
|
for it: @item in m.items {
|
2011-08-21 23:44:41 -05:00
|
|
|
if it.ident == i { nonlocal = false; }
|
|
|
|
alt it.node {
|
|
|
|
item_tag(variants, _) {
|
|
|
|
for v: variant in variants {
|
|
|
|
if v.node.name == i { nonlocal = false; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ { }
|
|
|
|
}
|
|
|
|
if !nonlocal { break; }
|
|
|
|
}
|
|
|
|
let count = 0u;
|
2011-08-31 11:45:37 -05:00
|
|
|
for vi: @view_item in m.view_items {
|
2011-08-21 23:44:41 -05:00
|
|
|
alt vi.node {
|
2011-08-31 11:45:37 -05:00
|
|
|
view_item_export(ids, _) {
|
2011-09-01 19:27:58 -05:00
|
|
|
for id in ids { if str::eq(i, id) { ret true; } }
|
2011-08-21 23:44:41 -05:00
|
|
|
count += 1u;
|
|
|
|
}
|
|
|
|
_ {/* fall through */ }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// If there are no declared exports then
|
|
|
|
// everything not imported is exported
|
|
|
|
// even if it's nonlocal (since it's explicit)
|
|
|
|
ret count == 0u && !nonlocal;
|
|
|
|
}
|
|
|
|
|
2011-08-26 12:14:58 -05:00
|
|
|
pure fn is_call_expr(e: @expr) -> bool {
|
2011-10-21 07:11:24 -05:00
|
|
|
alt e.node { expr_call(_, _, _) { true } _ { false } }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
2011-11-30 12:55:41 -06:00
|
|
|
pure fn is_tail_call_expr(e: @expr) -> bool {
|
|
|
|
alt e.node {
|
|
|
|
expr_call(_, _, _) { true }
|
|
|
|
expr_cast(inner_e, _) { is_call_expr(inner_e) }
|
|
|
|
_ { false }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-21 23:44:41 -05:00
|
|
|
fn is_constraint_arg(e: @expr) -> bool {
|
|
|
|
alt e.node {
|
|
|
|
expr_lit(_) { ret true; }
|
|
|
|
expr_path(_) { ret true; }
|
|
|
|
_ { ret false; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-06 05:26:12 -05:00
|
|
|
fn eq_ty(&&a: @ty, &&b: @ty) -> bool { ret std::box::ptr_eq(a, b); }
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2011-12-06 23:34:50 -06:00
|
|
|
fn hash_ty(&&t: @ty) -> uint {
|
|
|
|
let res = (t.span.lo << 16u) + t.span.hi;
|
|
|
|
ret res;
|
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2011-10-20 17:26:26 -05:00
|
|
|
fn hash_def_id(&&id: def_id) -> uint {
|
2011-12-07 09:21:07 -06:00
|
|
|
(id.crate as uint << 16u) + (id.node as uint)
|
2011-10-20 17:26:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn eq_def_id(&&a: def_id, &&b: def_id) -> bool {
|
|
|
|
a == b
|
|
|
|
}
|
|
|
|
|
2011-11-18 05:39:20 -06:00
|
|
|
fn new_def_id_hash<copy T>() -> std::map::hashmap<def_id, T> {
|
2011-10-20 17:26:26 -05:00
|
|
|
std::map::mk_hashmap(hash_def_id, eq_def_id)
|
|
|
|
}
|
|
|
|
|
2011-08-21 23:44:41 -05:00
|
|
|
fn block_from_expr(e: @expr) -> blk {
|
2011-10-07 17:51:55 -05:00
|
|
|
let blk_ = default_block([], option::some::<@expr>(e), e.id);
|
2011-08-21 23:44:41 -05:00
|
|
|
ret {node: blk_, span: e.span};
|
|
|
|
}
|
|
|
|
|
2011-10-07 17:51:55 -05:00
|
|
|
fn default_block(stmts1: [@stmt], expr1: option::t<@expr>, id1: node_id) ->
|
2011-09-02 17:34:58 -05:00
|
|
|
blk_ {
|
2011-11-23 13:57:34 -06:00
|
|
|
{view_items: [], stmts: stmts1, expr: expr1, id: id1, rules: default_blk}
|
2011-08-25 19:42:38 -05:00
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn obj_field_from_anon_obj_field(f: anon_obj_field) -> obj_field {
|
2011-08-21 23:44:41 -05:00
|
|
|
ret {mut: f.mut, ty: f.ty, ident: f.ident, id: f.id};
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is a convenience function to transfor ternary expressions to if
|
|
|
|
// expressions so that they can be treated the same
|
2011-09-12 04:27:30 -05:00
|
|
|
fn ternary_to_if(e: @expr) -> @expr {
|
2011-08-21 23:44:41 -05:00
|
|
|
alt e.node {
|
|
|
|
expr_ternary(cond, then, els) {
|
|
|
|
let then_blk = block_from_expr(then);
|
|
|
|
let els_blk = block_from_expr(els);
|
|
|
|
let els_expr =
|
|
|
|
@{id: els.id, node: expr_block(els_blk), span: els.span};
|
|
|
|
ret @{id: e.id,
|
|
|
|
node: expr_if(cond, then_blk, option::some(els_expr)),
|
|
|
|
span: e.span};
|
|
|
|
}
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
2011-09-01 07:35:00 -05:00
|
|
|
|
2011-11-18 05:39:20 -06:00
|
|
|
fn ty_param_kind(tp: ty_param) -> kind { tp.kind }
|
2011-10-28 10:00:14 -05:00
|
|
|
|
2011-12-02 06:42:51 -06:00
|
|
|
// FIXME this doesn't handle big integer/float literals correctly (nor does
|
|
|
|
// the rest of our literal handling)
|
2011-12-07 14:06:12 -06:00
|
|
|
tag const_val {
|
|
|
|
const_float(float);
|
|
|
|
const_int(i64);
|
|
|
|
const_uint(u64);
|
|
|
|
const_str(str);
|
|
|
|
}
|
2011-12-02 06:42:51 -06:00
|
|
|
|
|
|
|
fn eval_const_expr(e: @expr) -> const_val {
|
|
|
|
fn fromb(b: bool) -> const_val { const_int(b as i64) }
|
|
|
|
alt e.node {
|
|
|
|
expr_unary(neg., inner) {
|
|
|
|
alt eval_const_expr(inner) {
|
|
|
|
const_float(f) { const_float(-f) }
|
|
|
|
const_int(i) { const_int(-i) }
|
2011-12-07 14:06:12 -06:00
|
|
|
const_uint(i) { const_uint(-i) }
|
2011-12-02 06:42:51 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
expr_unary(not., inner) {
|
|
|
|
alt eval_const_expr(inner) {
|
|
|
|
const_int(i) { const_int(!i) }
|
2011-12-07 14:06:12 -06:00
|
|
|
const_uint(i) { const_uint(!i) }
|
2011-12-02 06:42:51 -06:00
|
|
|
}
|
2011-11-22 04:49:29 -06:00
|
|
|
}
|
2011-12-02 06:42:51 -06:00
|
|
|
expr_binary(op, a, b) {
|
|
|
|
alt (eval_const_expr(a), eval_const_expr(b)) {
|
|
|
|
(const_float(a), const_float(b)) {
|
|
|
|
alt op {
|
|
|
|
add. { const_float(a + b) } sub. { const_float(a - b) }
|
|
|
|
mul. { const_float(a * b) } div. { const_float(a / b) }
|
|
|
|
rem. { const_float(a % b) } eq. { fromb(a == b) }
|
|
|
|
lt. { fromb(a < b) } le. { fromb(a <= b) } ne. { fromb(a != b) }
|
|
|
|
ge. { fromb(a >= b) } gt. { fromb(a > b) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
(const_int(a), const_int(b)) {
|
|
|
|
alt op {
|
|
|
|
add. { const_int(a + b) } sub. { const_int(a - b) }
|
|
|
|
mul. { const_int(a * b) } div. { const_int(a / b) }
|
|
|
|
rem. { const_int(a % b) } and. | bitand. { const_int(a & b) }
|
|
|
|
or. | bitor. { const_int(a | b) } bitxor. { const_int(a ^ b) }
|
|
|
|
eq. { fromb(a == b) } lt. { fromb(a < b) }
|
|
|
|
le. { fromb(a <= b) } ne. { fromb(a != b) }
|
|
|
|
ge. { fromb(a >= b) } gt. { fromb(a > b) }
|
|
|
|
}
|
|
|
|
}
|
2011-12-07 14:06:12 -06:00
|
|
|
(const_uint(a), const_uint(b)) {
|
|
|
|
alt op {
|
|
|
|
add. { const_uint(a + b) } sub. { const_uint(a - b) }
|
|
|
|
mul. { const_uint(a * b) } div. { const_uint(a / b) }
|
|
|
|
rem. { const_uint(a % b) } and. | bitand. { const_uint(a & b) }
|
|
|
|
or. | bitor. { const_uint(a | b) } bitxor. { const_uint(a ^ b) }
|
|
|
|
eq. { fromb(a == b) } lt. { fromb(a < b) }
|
|
|
|
le. { fromb(a <= b) } ne. { fromb(a != b) }
|
|
|
|
ge. { fromb(a >= b) } gt. { fromb(a > b) }
|
|
|
|
}
|
|
|
|
}
|
2011-12-02 06:42:51 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
expr_lit(lit) { lit_to_const(lit) }
|
2011-11-22 04:49:29 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-02 06:42:51 -06:00
|
|
|
fn lit_to_const(lit: @lit) -> const_val {
|
|
|
|
alt lit.node {
|
|
|
|
lit_str(s) { const_str(s) }
|
2011-12-07 14:06:12 -06:00
|
|
|
lit_int(n, _) { const_int(n) }
|
|
|
|
lit_uint(n, _) { const_uint(n) }
|
|
|
|
lit_float(n, _) { const_float(std::float::from_str(n)) }
|
2011-12-02 06:42:51 -06:00
|
|
|
lit_nil. { const_int(0i64) }
|
|
|
|
lit_bool(b) { const_int(b as i64) }
|
2011-11-22 04:49:29 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-02 06:42:51 -06:00
|
|
|
fn compare_const_vals(a: const_val, b: const_val) -> int {
|
|
|
|
alt (a, b) {
|
|
|
|
(const_int(a), const_int(b)) { a == b ? 0 : a < b ? -1 : 1 }
|
2011-12-07 14:06:12 -06:00
|
|
|
(const_uint(a), const_uint(b)) { a == b ? 0 : a < b ? -1 : 1 }
|
2011-12-02 06:42:51 -06:00
|
|
|
(const_float(a), const_float(b)) { a == b ? 0 : a < b ? -1 : 1 }
|
|
|
|
(const_str(a), const_str(b)) { a == b ? 0 : a < b ? -1 : 1 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn compare_lit_exprs(a: @expr, b: @expr) -> int {
|
|
|
|
compare_const_vals(eval_const_expr(a), eval_const_expr(b))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn lit_expr_eq(a: @expr, b: @expr) -> bool { compare_lit_exprs(a, b) == 0 }
|
|
|
|
|
|
|
|
fn lit_eq(a: @lit, b: @lit) -> bool {
|
|
|
|
compare_const_vals(lit_to_const(a), lit_to_const(b)) == 0
|
2011-11-22 04:49:29 -06:00
|
|
|
}
|
|
|
|
|
2011-09-01 07:35:00 -05:00
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|