2013-06-22 20:58:41 -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.
|
|
|
|
|
2013-05-17 17:28:44 -05:00
|
|
|
|
2013-03-21 02:27:26 -05:00
|
|
|
use metadata::csearch;
|
|
|
|
use middle::astencode;
|
2012-12-23 16:41:37 -06:00
|
|
|
use middle::ty;
|
|
|
|
use middle;
|
|
|
|
|
2013-07-19 20:42:11 -05:00
|
|
|
use syntax::{ast, ast_map, ast_util, oldvisit};
|
2012-12-13 15:05:22 -06:00
|
|
|
use syntax::ast::*;
|
2012-07-30 21:05:56 -05:00
|
|
|
|
2013-06-28 17:32:26 -05:00
|
|
|
use std::float;
|
|
|
|
use std::hashmap::{HashMap, HashSet};
|
2013-03-21 02:27:26 -05:00
|
|
|
|
2012-07-30 21:05:56 -05:00
|
|
|
//
|
|
|
|
// This pass classifies expressions by their constant-ness.
|
|
|
|
//
|
|
|
|
// Constant-ness comes in 3 flavours:
|
|
|
|
//
|
|
|
|
// - Integer-constants: can be evaluated by the frontend all the way down
|
|
|
|
// to their actual value. They are used in a few places (enum
|
|
|
|
// discriminants, switch arms) and are a subset of
|
|
|
|
// general-constants. They cover all the integer and integer-ish
|
|
|
|
// literals (nil, bool, int, uint, char, iNN, uNN) and all integer
|
|
|
|
// operators and copies applied to them.
|
|
|
|
//
|
|
|
|
// - General-constants: can be evaluated by LLVM but not necessarily by
|
|
|
|
// the frontend; usually due to reliance on target-specific stuff such
|
|
|
|
// as "where in memory the value goes" or "what floating point mode the
|
|
|
|
// target uses". This _includes_ integer-constants, plus the following
|
|
|
|
// constructors:
|
|
|
|
//
|
2012-10-09 23:28:04 -05:00
|
|
|
// fixed-size vectors and strings: [] and ""/_
|
2012-07-30 21:05:56 -05:00
|
|
|
// vector and string slices: &[] and &""
|
|
|
|
// tuples: (,)
|
|
|
|
// records: {...}
|
|
|
|
// enums: foo(...)
|
|
|
|
// floating point literals and operators
|
|
|
|
// & and * pointers
|
|
|
|
// copies of general constants
|
|
|
|
//
|
2013-01-04 08:52:07 -06:00
|
|
|
// (in theory, probably not at first: if/match on integer-const
|
2012-07-30 21:05:56 -05:00
|
|
|
// conditions / descriminants)
|
|
|
|
//
|
|
|
|
// - Non-constants: everything else.
|
|
|
|
//
|
|
|
|
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum constness {
|
2012-07-30 21:05:56 -05:00
|
|
|
integral_const,
|
|
|
|
general_const,
|
|
|
|
non_const
|
|
|
|
}
|
|
|
|
|
2013-01-30 15:44:24 -06:00
|
|
|
pub fn join(a: constness, b: constness) -> constness {
|
2012-09-28 00:20:47 -05:00
|
|
|
match (a, b) {
|
2012-08-03 21:59:04 -05:00
|
|
|
(integral_const, integral_const) => integral_const,
|
2012-07-30 21:05:56 -05:00
|
|
|
(integral_const, general_const)
|
|
|
|
| (general_const, integral_const)
|
2012-08-03 21:59:04 -05:00
|
|
|
| (general_const, general_const) => general_const,
|
|
|
|
_ => non_const
|
2012-07-30 21:05:56 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-29 00:05:50 -05:00
|
|
|
pub fn join_all<It: Iterator<constness>>(mut cs: It) -> constness {
|
|
|
|
cs.fold(integral_const, |a, b| join(a, b))
|
2012-07-30 21:05:56 -05:00
|
|
|
}
|
|
|
|
|
2013-06-27 08:04:22 -05:00
|
|
|
pub fn classify(e: &expr,
|
2013-01-30 15:44:24 -06:00
|
|
|
tcx: ty::ctxt)
|
|
|
|
-> constness {
|
2012-07-30 21:05:56 -05:00
|
|
|
let did = ast_util::local_def(e.id);
|
2013-02-05 21:41:45 -06:00
|
|
|
match tcx.ccache.find(&did) {
|
2013-03-22 21:26:41 -05:00
|
|
|
Some(&x) => x,
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-07-30 21:05:56 -05:00
|
|
|
let cn =
|
2013-03-20 00:17:42 -05:00
|
|
|
match e.node {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::expr_lit(lit) => {
|
2012-08-06 14:34:08 -05:00
|
|
|
match lit.node {
|
2012-07-30 21:05:56 -05:00
|
|
|
ast::lit_str(*) |
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::lit_float(*) => general_const,
|
|
|
|
_ => integral_const
|
2012-07-30 21:05:56 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-01 17:31:56 -05:00
|
|
|
ast::expr_unary(_, _, inner) |
|
2012-10-27 19:14:09 -05:00
|
|
|
ast::expr_paren(inner) => {
|
2013-03-22 21:26:41 -05:00
|
|
|
classify(inner, tcx)
|
2012-07-30 21:05:56 -05:00
|
|
|
}
|
|
|
|
|
2013-06-01 17:31:56 -05:00
|
|
|
ast::expr_binary(_, _, a, b) => {
|
2013-03-22 21:26:41 -05:00
|
|
|
join(classify(a, tcx),
|
|
|
|
classify(b, tcx))
|
2012-07-30 21:05:56 -05:00
|
|
|
}
|
|
|
|
|
2013-03-20 00:17:42 -05:00
|
|
|
ast::expr_tup(ref es) |
|
|
|
|
ast::expr_vec(ref es, ast::m_imm) => {
|
2013-06-29 00:05:50 -05:00
|
|
|
join_all(es.iter().transform(|e| classify(*e, tcx)))
|
2012-07-30 21:05:56 -05:00
|
|
|
}
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::expr_vstore(e, vstore) => {
|
2012-09-11 23:25:01 -05:00
|
|
|
match vstore {
|
2013-03-22 21:26:41 -05:00
|
|
|
ast::expr_vstore_slice => classify(e, tcx),
|
2012-09-11 23:25:01 -05:00
|
|
|
ast::expr_vstore_uniq |
|
2012-11-21 13:39:06 -06:00
|
|
|
ast::expr_vstore_box |
|
2012-12-07 18:26:52 -06:00
|
|
|
ast::expr_vstore_mut_box |
|
|
|
|
ast::expr_vstore_mut_slice => non_const
|
2012-09-11 23:25:01 -05:00
|
|
|
}
|
2012-07-30 21:05:56 -05:00
|
|
|
}
|
|
|
|
|
2013-03-05 20:22:13 -06:00
|
|
|
ast::expr_struct(_, ref fs, None) => {
|
2013-06-29 00:05:50 -05:00
|
|
|
let cs = do fs.iter().transform |f| {
|
2013-07-19 09:24:22 -05:00
|
|
|
classify(f.expr, tcx)
|
2012-07-30 21:05:56 -05:00
|
|
|
};
|
|
|
|
join_all(cs)
|
|
|
|
}
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::expr_cast(base, _) => {
|
2012-07-30 21:05:56 -05:00
|
|
|
let ty = ty::expr_ty(tcx, e);
|
2013-03-22 21:26:41 -05:00
|
|
|
let base = classify(base, tcx);
|
2012-07-30 21:05:56 -05:00
|
|
|
if ty::type_is_integral(ty) {
|
|
|
|
join(integral_const, base)
|
|
|
|
} else if ty::type_is_fp(ty) {
|
|
|
|
join(general_const, base)
|
|
|
|
} else {
|
|
|
|
non_const
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::expr_field(base, _, _) => {
|
2013-03-22 21:26:41 -05:00
|
|
|
classify(base, tcx)
|
2012-07-30 21:05:56 -05:00
|
|
|
}
|
|
|
|
|
2013-06-01 17:31:56 -05:00
|
|
|
ast::expr_index(_, base, idx) => {
|
2013-03-22 21:26:41 -05:00
|
|
|
join(classify(base, tcx),
|
|
|
|
classify(idx, tcx))
|
2012-07-30 21:05:56 -05:00
|
|
|
}
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::expr_addr_of(ast::m_imm, base) => {
|
2013-03-22 21:26:41 -05:00
|
|
|
classify(base, tcx)
|
2012-07-30 21:05:56 -05:00
|
|
|
}
|
|
|
|
|
2012-10-11 18:15:12 -05:00
|
|
|
// FIXME: (#3728) we can probably do something CCI-ish
|
2012-07-30 21:05:56 -05:00
|
|
|
// surrounding nonlocal constants. But we don't yet.
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::expr_path(_) => {
|
2012-10-15 14:27:09 -05:00
|
|
|
lookup_constness(tcx, e)
|
2012-07-30 21:05:56 -05:00
|
|
|
}
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => non_const
|
2012-07-30 21:05:56 -05:00
|
|
|
};
|
|
|
|
tcx.ccache.insert(did, cn);
|
|
|
|
cn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-27 08:04:22 -05:00
|
|
|
pub fn lookup_const(tcx: ty::ctxt, e: &expr) -> Option<@expr> {
|
2013-02-05 21:41:45 -06:00
|
|
|
match tcx.def_map.find(&e.id) {
|
2013-06-21 20:46:34 -05:00
|
|
|
Some(&ast::def_static(def_id, false)) => lookup_const_by_id(tcx, def_id),
|
2013-07-16 03:27:54 -05:00
|
|
|
Some(&ast::def_variant(enum_def, variant_def)) => lookup_variant_by_id(tcx,
|
|
|
|
enum_def,
|
|
|
|
variant_def),
|
2012-11-13 00:10:15 -06:00
|
|
|
_ => None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-16 03:27:54 -05:00
|
|
|
pub fn lookup_variant_by_id(tcx: ty::ctxt,
|
|
|
|
enum_def: ast::def_id,
|
|
|
|
variant_def: ast::def_id)
|
|
|
|
-> Option<@expr> {
|
2013-07-27 03:25:59 -05:00
|
|
|
fn variant_expr(variants: &[ast::variant], id: ast::NodeId) -> Option<@expr> {
|
2013-08-03 11:45:23 -05:00
|
|
|
for variant in variants.iter() {
|
2013-07-16 03:27:54 -05:00
|
|
|
if variant.node.id == id {
|
|
|
|
return variant.node.disr_expr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
if ast_util::is_local(enum_def) {
|
|
|
|
match tcx.items.find(&enum_def.node) {
|
|
|
|
None => None,
|
|
|
|
Some(&ast_map::node_item(it, _)) => match it.node {
|
|
|
|
item_enum(ast::enum_def { variants: ref variants }, _) => {
|
|
|
|
variant_expr(*variants, variant_def.node)
|
|
|
|
}
|
|
|
|
_ => None
|
|
|
|
},
|
|
|
|
Some(_) => None
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let maps = astencode::Maps {
|
|
|
|
root_map: @mut HashMap::new(),
|
|
|
|
method_map: @mut HashMap::new(),
|
|
|
|
vtable_map: @mut HashMap::new(),
|
|
|
|
write_guard_map: @mut HashSet::new(),
|
|
|
|
capture_map: @mut HashMap::new()
|
|
|
|
};
|
|
|
|
match csearch::maybe_get_item_ast(tcx, enum_def,
|
2013-07-17 01:49:42 -05:00
|
|
|
|a, b, c, d| astencode::decode_inlined_item(a,
|
|
|
|
b,
|
|
|
|
maps,
|
|
|
|
/*bad*/ c.clone(),
|
|
|
|
d)) {
|
2013-07-16 03:27:54 -05:00
|
|
|
csearch::found(ast::ii_item(item)) => match item.node {
|
|
|
|
item_enum(ast::enum_def { variants: ref variants }, _) => {
|
|
|
|
variant_expr(*variants, variant_def.node)
|
|
|
|
}
|
|
|
|
_ => None
|
|
|
|
},
|
|
|
|
_ => None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-30 15:44:24 -06:00
|
|
|
pub fn lookup_const_by_id(tcx: ty::ctxt,
|
|
|
|
def_id: ast::def_id)
|
|
|
|
-> Option<@expr> {
|
2012-11-13 00:10:15 -06:00
|
|
|
if ast_util::is_local(def_id) {
|
2013-02-05 21:41:45 -06:00
|
|
|
match tcx.items.find(&def_id.node) {
|
2012-11-13 00:10:15 -06:00
|
|
|
None => None,
|
2013-03-23 20:45:27 -05:00
|
|
|
Some(&ast_map::node_item(it, _)) => match it.node {
|
2013-06-21 20:46:34 -05:00
|
|
|
item_static(_, ast::m_imm, const_expr) => Some(const_expr),
|
2012-11-13 00:10:15 -06:00
|
|
|
_ => None
|
|
|
|
},
|
|
|
|
Some(_) => None
|
2012-10-15 14:27:09 -05:00
|
|
|
}
|
2012-11-13 00:10:15 -06:00
|
|
|
} else {
|
2013-03-21 02:27:26 -05:00
|
|
|
let maps = astencode::Maps {
|
2013-04-03 08:28:36 -05:00
|
|
|
root_map: @mut HashMap::new(),
|
|
|
|
method_map: @mut HashMap::new(),
|
|
|
|
vtable_map: @mut HashMap::new(),
|
|
|
|
write_guard_map: @mut HashSet::new(),
|
|
|
|
capture_map: @mut HashMap::new()
|
2013-03-21 02:27:26 -05:00
|
|
|
};
|
|
|
|
match csearch::maybe_get_item_ast(tcx, def_id,
|
2013-07-02 14:47:32 -05:00
|
|
|
|a, b, c, d| astencode::decode_inlined_item(a, b, maps, c, d)) {
|
2013-03-21 02:27:26 -05:00
|
|
|
csearch::found(ast::ii_item(item)) => match item.node {
|
2013-06-21 20:46:34 -05:00
|
|
|
item_static(_, ast::m_imm, const_expr) => Some(const_expr),
|
2013-03-21 02:27:26 -05:00
|
|
|
_ => None
|
|
|
|
},
|
|
|
|
_ => None
|
|
|
|
}
|
2012-10-15 14:27:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-27 08:04:22 -05:00
|
|
|
pub fn lookup_constness(tcx: ty::ctxt, e: &expr) -> constness {
|
2012-10-15 14:27:09 -05:00
|
|
|
match lookup_const(tcx, e) {
|
|
|
|
Some(rhs) => {
|
|
|
|
let ty = ty::expr_ty(tcx, rhs);
|
|
|
|
if ty::type_is_integral(ty) {
|
|
|
|
integral_const
|
|
|
|
} else {
|
|
|
|
general_const
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => non_const
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-19 00:38:55 -05:00
|
|
|
pub fn process_crate(crate: &ast::Crate,
|
2013-01-30 15:44:24 -06:00
|
|
|
tcx: ty::ctxt) {
|
2013-07-19 20:42:11 -05:00
|
|
|
let v = oldvisit::mk_simple_visitor(@oldvisit::SimpleVisitor {
|
2013-03-22 21:26:41 -05:00
|
|
|
visit_expr_post: |e| { classify(e, tcx); },
|
2013-07-19 20:42:11 -05:00
|
|
|
.. *oldvisit::default_simple_visitor()
|
2012-07-30 21:05:56 -05:00
|
|
|
});
|
2013-07-19 20:42:11 -05:00
|
|
|
oldvisit::visit_crate(crate, ((), v));
|
2012-07-30 21:05:56 -05:00
|
|
|
tcx.sess.abort_if_errors();
|
|
|
|
}
|
|
|
|
|
2012-03-22 16:56:56 -05:00
|
|
|
|
2012-06-21 18:44:10 -05:00
|
|
|
// FIXME (#33): this doesn't handle big integer/float literals correctly
|
|
|
|
// (nor does the rest of our literal handling).
|
2013-07-02 14:47:32 -05:00
|
|
|
#[deriving(Clone, Eq)]
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum const_val {
|
2012-06-04 19:26:17 -05:00
|
|
|
const_float(f64),
|
2012-03-22 16:56:56 -05:00
|
|
|
const_int(i64),
|
|
|
|
const_uint(u64),
|
2013-06-12 12:02:55 -05:00
|
|
|
const_str(@str),
|
2012-08-23 17:51:23 -05:00
|
|
|
const_bool(bool)
|
2012-03-22 16:56:56 -05:00
|
|
|
}
|
|
|
|
|
2013-06-27 08:04:22 -05:00
|
|
|
pub fn eval_const_expr(tcx: middle::ty::ctxt, e: &expr) -> const_val {
|
2013-07-16 03:27:54 -05:00
|
|
|
match eval_const_expr_partial(&tcx, e) {
|
2013-06-12 12:02:55 -05:00
|
|
|
Ok(r) => r,
|
|
|
|
Err(s) => tcx.sess.span_fatal(e.span, s)
|
2012-10-15 14:27:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-16 03:27:54 -05:00
|
|
|
pub fn eval_const_expr_partial<T: ty::ExprTyProvider>(tcx: &T, e: &expr)
|
2013-01-30 15:44:24 -06:00
|
|
|
-> Result<const_val, ~str> {
|
2012-09-07 20:08:21 -05:00
|
|
|
use middle::ty;
|
2012-10-15 14:27:09 -05:00
|
|
|
fn fromb(b: bool) -> Result<const_val, ~str> { Ok(const_int(b as i64)) }
|
2012-08-23 17:51:23 -05:00
|
|
|
match e.node {
|
2013-06-01 17:31:56 -05:00
|
|
|
expr_unary(_, neg, inner) => {
|
2012-10-15 14:27:09 -05:00
|
|
|
match eval_const_expr_partial(tcx, inner) {
|
|
|
|
Ok(const_float(f)) => Ok(const_float(-f)),
|
|
|
|
Ok(const_int(i)) => Ok(const_int(-i)),
|
|
|
|
Ok(const_uint(i)) => Ok(const_uint(-i)),
|
|
|
|
Ok(const_str(_)) => Err(~"Negate on string"),
|
|
|
|
Ok(const_bool(_)) => Err(~"Negate on boolean"),
|
2013-07-02 14:47:32 -05:00
|
|
|
ref err => ((*err).clone())
|
2012-03-22 16:56:56 -05:00
|
|
|
}
|
|
|
|
}
|
2013-06-01 17:31:56 -05:00
|
|
|
expr_unary(_, not, inner) => {
|
2012-10-15 14:27:09 -05:00
|
|
|
match eval_const_expr_partial(tcx, inner) {
|
|
|
|
Ok(const_int(i)) => Ok(const_int(!i)),
|
|
|
|
Ok(const_uint(i)) => Ok(const_uint(!i)),
|
|
|
|
Ok(const_bool(b)) => Ok(const_bool(!b)),
|
|
|
|
_ => Err(~"Not on float or string")
|
2012-03-22 16:56:56 -05:00
|
|
|
}
|
|
|
|
}
|
2013-06-01 17:31:56 -05:00
|
|
|
expr_binary(_, op, a, b) => {
|
2012-10-15 14:27:09 -05:00
|
|
|
match (eval_const_expr_partial(tcx, a),
|
|
|
|
eval_const_expr_partial(tcx, b)) {
|
|
|
|
(Ok(const_float(a)), Ok(const_float(b))) => {
|
2012-08-23 17:51:23 -05:00
|
|
|
match op {
|
2012-10-15 14:27:09 -05:00
|
|
|
add => Ok(const_float(a + b)),
|
|
|
|
subtract => Ok(const_float(a - b)),
|
|
|
|
mul => Ok(const_float(a * b)),
|
2013-05-01 00:40:05 -05:00
|
|
|
div => Ok(const_float(a / b)),
|
2012-10-15 14:27:09 -05:00
|
|
|
rem => Ok(const_float(a % b)),
|
2012-08-03 21:59:04 -05:00
|
|
|
eq => fromb(a == b),
|
|
|
|
lt => fromb(a < b),
|
|
|
|
le => fromb(a <= b),
|
|
|
|
ne => fromb(a != b),
|
|
|
|
ge => fromb(a >= b),
|
2012-08-23 17:51:23 -05:00
|
|
|
gt => fromb(a > b),
|
2012-10-15 14:27:09 -05:00
|
|
|
_ => Err(~"Can't do this op on floats")
|
2012-03-22 16:56:56 -05:00
|
|
|
}
|
|
|
|
}
|
2012-10-15 14:27:09 -05:00
|
|
|
(Ok(const_int(a)), Ok(const_int(b))) => {
|
2012-08-23 17:51:23 -05:00
|
|
|
match op {
|
2012-10-15 14:27:09 -05:00
|
|
|
add => Ok(const_int(a + b)),
|
|
|
|
subtract => Ok(const_int(a - b)),
|
|
|
|
mul => Ok(const_int(a * b)),
|
2013-05-01 00:40:05 -05:00
|
|
|
div if b == 0 => Err(~"attempted to divide by zero"),
|
|
|
|
div => Ok(const_int(a / b)),
|
2013-04-23 22:01:38 -05:00
|
|
|
rem if b == 0 => Err(~"attempted remainder with a divisor of zero"),
|
2012-10-15 14:27:09 -05:00
|
|
|
rem => Ok(const_int(a % b)),
|
|
|
|
and | bitand => Ok(const_int(a & b)),
|
|
|
|
or | bitor => Ok(const_int(a | b)),
|
|
|
|
bitxor => Ok(const_int(a ^ b)),
|
|
|
|
shl => Ok(const_int(a << b)),
|
|
|
|
shr => Ok(const_int(a >> b)),
|
2012-08-03 21:59:04 -05:00
|
|
|
eq => fromb(a == b),
|
|
|
|
lt => fromb(a < b),
|
|
|
|
le => fromb(a <= b),
|
|
|
|
ne => fromb(a != b),
|
|
|
|
ge => fromb(a >= b),
|
|
|
|
gt => fromb(a > b)
|
2012-03-22 16:56:56 -05:00
|
|
|
}
|
|
|
|
}
|
2012-10-15 14:27:09 -05:00
|
|
|
(Ok(const_uint(a)), Ok(const_uint(b))) => {
|
2012-08-23 17:51:23 -05:00
|
|
|
match op {
|
2012-10-15 14:27:09 -05:00
|
|
|
add => Ok(const_uint(a + b)),
|
|
|
|
subtract => Ok(const_uint(a - b)),
|
|
|
|
mul => Ok(const_uint(a * b)),
|
2013-05-01 00:40:05 -05:00
|
|
|
div if b == 0 => Err(~"attempted to divide by zero"),
|
|
|
|
div => Ok(const_uint(a / b)),
|
2013-04-23 22:01:38 -05:00
|
|
|
rem if b == 0 => Err(~"attempted remainder with a divisor of zero"),
|
2012-10-15 14:27:09 -05:00
|
|
|
rem => Ok(const_uint(a % b)),
|
|
|
|
and | bitand => Ok(const_uint(a & b)),
|
|
|
|
or | bitor => Ok(const_uint(a | b)),
|
|
|
|
bitxor => Ok(const_uint(a ^ b)),
|
|
|
|
shl => Ok(const_uint(a << b)),
|
|
|
|
shr => Ok(const_uint(a >> b)),
|
2012-08-03 21:59:04 -05:00
|
|
|
eq => fromb(a == b),
|
|
|
|
lt => fromb(a < b),
|
|
|
|
le => fromb(a <= b),
|
|
|
|
ne => fromb(a != b),
|
|
|
|
ge => fromb(a >= b),
|
2012-08-23 17:51:23 -05:00
|
|
|
gt => fromb(a > b),
|
2012-03-22 16:56:56 -05:00
|
|
|
}
|
|
|
|
}
|
2012-05-30 17:03:24 -05:00
|
|
|
// shifts can have any integral type as their rhs
|
2012-10-15 14:27:09 -05:00
|
|
|
(Ok(const_int(a)), Ok(const_uint(b))) => {
|
2012-08-23 17:51:23 -05:00
|
|
|
match op {
|
2012-10-15 14:27:09 -05:00
|
|
|
shl => Ok(const_int(a << b)),
|
|
|
|
shr => Ok(const_int(a >> b)),
|
|
|
|
_ => Err(~"Can't do this op on an int and uint")
|
2012-05-30 17:03:24 -05:00
|
|
|
}
|
|
|
|
}
|
2012-10-15 14:27:09 -05:00
|
|
|
(Ok(const_uint(a)), Ok(const_int(b))) => {
|
2012-08-23 17:51:23 -05:00
|
|
|
match op {
|
2012-10-15 14:27:09 -05:00
|
|
|
shl => Ok(const_uint(a << b)),
|
|
|
|
shr => Ok(const_uint(a >> b)),
|
|
|
|
_ => Err(~"Can't do this op on a uint and int")
|
2012-05-30 17:03:24 -05:00
|
|
|
}
|
|
|
|
}
|
2012-10-15 14:27:09 -05:00
|
|
|
(Ok(const_bool(a)), Ok(const_bool(b))) => {
|
|
|
|
Ok(const_bool(match op {
|
2012-08-23 17:51:23 -05:00
|
|
|
and => a && b,
|
|
|
|
or => a || b,
|
|
|
|
bitxor => a ^ b,
|
|
|
|
bitand => a & b,
|
|
|
|
bitor => a | b,
|
|
|
|
eq => a == b,
|
|
|
|
ne => a != b,
|
2012-10-15 14:27:09 -05:00
|
|
|
_ => return Err(~"Can't do this op on bools")
|
|
|
|
}))
|
2012-08-23 17:51:23 -05:00
|
|
|
}
|
2012-10-15 14:27:09 -05:00
|
|
|
_ => Err(~"Bad operands for binary")
|
2012-03-22 16:56:56 -05:00
|
|
|
}
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
expr_cast(base, _) => {
|
2013-07-16 03:27:54 -05:00
|
|
|
let ety = tcx.expr_ty(e);
|
2012-10-15 14:27:09 -05:00
|
|
|
let base = eval_const_expr_partial(tcx, base);
|
2013-07-02 14:47:32 -05:00
|
|
|
match base {
|
2013-04-15 14:13:37 -05:00
|
|
|
Err(_) => base,
|
|
|
|
Ok(val) => {
|
|
|
|
match ty::get(ety).sty {
|
2013-07-02 14:47:32 -05:00
|
|
|
ty::ty_float(_) => {
|
|
|
|
match val {
|
|
|
|
const_uint(u) => Ok(const_float(u as f64)),
|
|
|
|
const_int(i) => Ok(const_float(i as f64)),
|
|
|
|
const_float(f) => Ok(const_float(f)),
|
|
|
|
_ => Err(~"Can't cast float to str"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ty::ty_uint(_) => {
|
|
|
|
match val {
|
|
|
|
const_uint(u) => Ok(const_uint(u)),
|
|
|
|
const_int(i) => Ok(const_uint(i as u64)),
|
|
|
|
const_float(f) => Ok(const_uint(f as u64)),
|
|
|
|
_ => Err(~"Can't cast str to uint"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ty::ty_int(_) | ty::ty_bool => {
|
|
|
|
match val {
|
|
|
|
const_uint(u) => Ok(const_int(u as i64)),
|
|
|
|
const_int(i) => Ok(const_int(i)),
|
|
|
|
const_float(f) => Ok(const_int(f as i64)),
|
|
|
|
_ => Err(~"Can't cast str to int"),
|
|
|
|
}
|
|
|
|
}
|
2013-04-15 14:13:37 -05:00
|
|
|
_ => Err(~"Can't cast this type")
|
|
|
|
}
|
2012-03-22 16:56:56 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-10-15 14:27:09 -05:00
|
|
|
expr_path(_) => {
|
2013-07-16 03:27:54 -05:00
|
|
|
match lookup_const(tcx.ty_ctxt(), e) {
|
|
|
|
Some(actual_e) => eval_const_expr_partial(&tcx.ty_ctxt(), actual_e),
|
2012-10-15 14:27:09 -05:00
|
|
|
None => Err(~"Non-constant path in constant expr")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
expr_lit(lit) => Ok(lit_to_const(lit)),
|
2012-07-12 14:14:08 -05:00
|
|
|
// If we have a vstore, just keep going; it has to be a string
|
2012-10-15 14:27:09 -05:00
|
|
|
expr_vstore(e, _) => eval_const_expr_partial(tcx, e),
|
2012-10-27 19:14:09 -05:00
|
|
|
expr_paren(e) => eval_const_expr_partial(tcx, e),
|
2012-10-15 14:27:09 -05:00
|
|
|
_ => Err(~"Unsupported constant expr")
|
2012-03-22 16:56:56 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-27 08:04:22 -05:00
|
|
|
pub fn lit_to_const(lit: &lit) -> const_val {
|
2012-08-06 14:34:08 -05:00
|
|
|
match lit.node {
|
2013-06-12 12:02:55 -05:00
|
|
|
lit_str(s) => const_str(s),
|
2012-08-03 21:59:04 -05:00
|
|
|
lit_int(n, _) => const_int(n),
|
|
|
|
lit_uint(n, _) => const_uint(n),
|
|
|
|
lit_int_unsuffixed(n) => const_int(n),
|
2013-08-03 18:59:24 -05:00
|
|
|
lit_float(n, _) => const_float(float::from_str(n).unwrap() as f64),
|
2012-11-07 20:40:34 -06:00
|
|
|
lit_float_unsuffixed(n) =>
|
2013-08-03 18:59:24 -05:00
|
|
|
const_float(float::from_str(n).unwrap() as f64),
|
2012-08-03 21:59:04 -05:00
|
|
|
lit_nil => const_int(0i64),
|
2012-08-23 17:51:23 -05:00
|
|
|
lit_bool(b) => const_bool(b)
|
2012-03-22 16:56:56 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-22 20:58:41 -05:00
|
|
|
fn compare_vals<T : Eq + Ord>(a: T, b: T) -> Option<int> {
|
|
|
|
Some(if a == b { 0 } else if a < b { -1 } else { 1 })
|
|
|
|
}
|
2013-05-21 04:04:55 -05:00
|
|
|
pub fn compare_const_vals(a: &const_val, b: &const_val) -> Option<int> {
|
2013-06-22 20:58:41 -05:00
|
|
|
match (a, b) {
|
|
|
|
(&const_int(a), &const_int(b)) => compare_vals(a, b),
|
|
|
|
(&const_uint(a), &const_uint(b)) => compare_vals(a, b),
|
|
|
|
(&const_float(a), &const_float(b)) => compare_vals(a, b),
|
|
|
|
(&const_str(a), &const_str(b)) => compare_vals(a, b),
|
|
|
|
(&const_bool(a), &const_bool(b)) => compare_vals(a, b),
|
|
|
|
_ => None
|
2013-05-21 04:04:55 -05:00
|
|
|
}
|
2012-03-22 16:56:56 -05:00
|
|
|
}
|
|
|
|
|
2013-06-27 08:04:22 -05:00
|
|
|
pub fn compare_lit_exprs(tcx: middle::ty::ctxt, a: &expr, b: &expr) -> Option<int> {
|
2013-05-21 04:04:55 -05:00
|
|
|
compare_const_vals(&eval_const_expr(tcx, a), &eval_const_expr(tcx, b))
|
2012-03-22 16:56:56 -05:00
|
|
|
}
|
|
|
|
|
2013-06-27 08:04:22 -05:00
|
|
|
pub fn lit_expr_eq(tcx: middle::ty::ctxt, a: &expr, b: &expr) -> Option<bool> {
|
2013-06-22 20:58:41 -05:00
|
|
|
compare_lit_exprs(tcx, a, b).map(|&val| val == 0)
|
2012-03-22 16:56:56 -05:00
|
|
|
}
|
|
|
|
|
2013-06-27 08:04:22 -05:00
|
|
|
pub fn lit_eq(a: &lit, b: &lit) -> Option<bool> {
|
2013-06-22 20:58:41 -05:00
|
|
|
compare_const_vals(&lit_to_const(a), &lit_to_const(b)).map(|&val| val == 0)
|
2012-03-22 16:56:56 -05:00
|
|
|
}
|