2015-08-26 18:10:01 -05:00
|
|
|
#![allow(cast_possible_truncation)]
|
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
use rustc::lint::LateContext;
|
2015-08-12 06:49:28 -05:00
|
|
|
use rustc::middle::const_eval::lookup_const_by_id;
|
2015-08-14 10:14:54 -05:00
|
|
|
use rustc::middle::def::PathResolution;
|
2016-01-22 06:24:44 -06:00
|
|
|
use rustc::middle::def::Def;
|
2015-09-03 09:42:17 -05:00
|
|
|
use rustc_front::hir::*;
|
2015-08-12 06:49:28 -05:00
|
|
|
use syntax::ptr::P;
|
2015-08-17 06:18:14 -05:00
|
|
|
use std::cmp::PartialOrd;
|
|
|
|
use std::cmp::Ordering::{self, Greater, Less, Equal};
|
2015-08-14 10:14:54 -05:00
|
|
|
use std::rc::Rc;
|
|
|
|
use std::ops::Deref;
|
|
|
|
|
2015-09-16 19:01:41 -05:00
|
|
|
use syntax::ast::Lit_;
|
|
|
|
use syntax::ast::LitIntType;
|
|
|
|
use syntax::ast::{UintTy, FloatTy, StrStyle};
|
|
|
|
use syntax::ast::Sign::{self, Plus, Minus};
|
|
|
|
|
|
|
|
|
2016-02-09 08:18:27 -06:00
|
|
|
#[derive(PartialEq, Eq, Debug, Copy, Clone, Hash)]
|
2015-08-13 02:25:44 -05:00
|
|
|
pub enum FloatWidth {
|
|
|
|
Fw32,
|
|
|
|
Fw64,
|
2016-01-03 22:26:12 -06:00
|
|
|
FwAny,
|
2015-08-13 02:25:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl From<FloatTy> for FloatWidth {
|
|
|
|
fn from(ty: FloatTy) -> FloatWidth {
|
|
|
|
match ty {
|
2016-02-03 08:39:22 -06:00
|
|
|
FloatTy::TyF32 => FloatWidth::Fw32,
|
|
|
|
FloatTy::TyF64 => FloatWidth::Fw64,
|
2015-08-13 02:25:44 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-12 06:49:28 -05:00
|
|
|
/// a Lit_-like enum to fold constant `Expr`s into
|
2016-02-09 08:18:27 -06:00
|
|
|
#[derive(Eq, Debug, Clone, Hash)]
|
2015-08-17 10:51:30 -05:00
|
|
|
pub enum Constant {
|
2015-08-13 02:25:44 -05:00
|
|
|
/// a String "abc"
|
2016-02-01 05:51:33 -06:00
|
|
|
Str(String, StrStyle),
|
2015-08-13 02:25:44 -05:00
|
|
|
/// a Binary String b"abc"
|
2016-02-01 05:51:33 -06:00
|
|
|
Binary(Rc<Vec<u8>>),
|
2015-08-13 02:25:44 -05:00
|
|
|
/// a single byte b'a'
|
2016-02-01 05:51:33 -06:00
|
|
|
Byte(u8),
|
2015-08-13 02:25:44 -05:00
|
|
|
/// a single char 'a'
|
2016-02-01 05:51:33 -06:00
|
|
|
Char(char),
|
2015-08-13 02:25:44 -05:00
|
|
|
/// an integer
|
2016-02-01 05:51:33 -06:00
|
|
|
Int(u64, LitIntType),
|
2015-08-13 02:25:44 -05:00
|
|
|
/// a float with given type
|
2016-02-01 05:51:33 -06:00
|
|
|
Float(String, FloatWidth),
|
2015-08-13 02:25:44 -05:00
|
|
|
/// true or false
|
2016-02-01 05:51:33 -06:00
|
|
|
Bool(bool),
|
2015-08-13 02:25:44 -05:00
|
|
|
/// an array of constants
|
2016-02-01 05:51:33 -06:00
|
|
|
Vec(Vec<Constant>),
|
2015-08-13 02:25:44 -05:00
|
|
|
/// also an array, but with only one constant, repeated N times
|
2016-02-01 05:51:33 -06:00
|
|
|
Repeat(Box<Constant>, usize),
|
2015-08-13 02:25:44 -05:00
|
|
|
/// a tuple of constants
|
2016-02-01 05:51:33 -06:00
|
|
|
Tuple(Vec<Constant>),
|
2015-08-12 06:49:28 -05:00
|
|
|
}
|
|
|
|
|
2015-08-17 10:51:30 -05:00
|
|
|
impl Constant {
|
2015-08-13 03:45:30 -05:00
|
|
|
/// convert to u64 if possible
|
|
|
|
///
|
|
|
|
/// # panics
|
|
|
|
///
|
|
|
|
/// if the constant could not be converted to u64 losslessly
|
|
|
|
fn as_u64(&self) -> u64 {
|
2016-02-01 05:51:33 -06:00
|
|
|
if let Constant::Int(val, _) = *self {
|
2015-08-13 03:45:30 -05:00
|
|
|
val // TODO we may want to check the sign if any
|
|
|
|
} else {
|
2015-12-23 15:36:37 -06:00
|
|
|
panic!("Could not convert a {:?} to u64", self);
|
2015-08-13 03:45:30 -05:00
|
|
|
}
|
|
|
|
}
|
2015-08-17 10:51:30 -05:00
|
|
|
|
|
|
|
/// convert this constant to a f64, if possible
|
2015-08-20 07:25:08 -05:00
|
|
|
#[allow(cast_precision_loss)]
|
2015-08-19 17:04:01 -05:00
|
|
|
pub fn as_float(&self) -> Option<f64> {
|
|
|
|
match *self {
|
2016-02-01 05:51:33 -06:00
|
|
|
Constant::Byte(b) => Some(b as f64),
|
|
|
|
Constant::Float(ref s, _) => s.parse().ok(),
|
|
|
|
Constant::Int(i, ty) => {
|
2016-01-03 22:26:12 -06:00
|
|
|
Some(if is_negative(ty) {
|
|
|
|
-(i as f64)
|
|
|
|
} else {
|
|
|
|
i as f64
|
|
|
|
})
|
|
|
|
}
|
|
|
|
_ => None,
|
2015-08-19 17:04:01 -05:00
|
|
|
}
|
|
|
|
}
|
2015-08-13 03:45:30 -05:00
|
|
|
}
|
|
|
|
|
2015-08-17 10:51:30 -05:00
|
|
|
impl PartialEq for Constant {
|
|
|
|
fn eq(&self, other: &Constant) -> bool {
|
2015-08-17 06:18:14 -05:00
|
|
|
match (self, other) {
|
2016-02-01 05:51:33 -06:00
|
|
|
(&Constant::Str(ref ls, ref lsty), &Constant::Str(ref rs, ref rsty)) => ls == rs && lsty == rsty,
|
|
|
|
(&Constant::Binary(ref l), &Constant::Binary(ref r)) => l == r,
|
|
|
|
(&Constant::Byte(l), &Constant::Byte(r)) => l == r,
|
|
|
|
(&Constant::Char(l), &Constant::Char(r)) => l == r,
|
|
|
|
(&Constant::Int(lv, lty), &Constant::Int(rv, rty)) => {
|
2016-01-03 22:26:12 -06:00
|
|
|
lv == rv && (is_negative(lty) & (lv != 0)) == (is_negative(rty) & (rv != 0))
|
|
|
|
}
|
2016-02-01 05:51:33 -06:00
|
|
|
(&Constant::Float(ref ls, lw), &Constant::Float(ref rs, rw)) => {
|
2016-02-03 08:39:22 -06:00
|
|
|
use self::FloatWidth::*;
|
2015-08-17 06:18:14 -05:00
|
|
|
if match (lw, rw) {
|
|
|
|
(FwAny, _) | (_, FwAny) | (Fw32, Fw32) | (Fw64, Fw64) => true,
|
|
|
|
_ => false,
|
|
|
|
} {
|
2015-08-17 06:23:17 -05:00
|
|
|
match (ls.parse::<f64>(), rs.parse::<f64>()) {
|
|
|
|
(Ok(l), Ok(r)) => l.eq(&r),
|
2015-08-17 06:18:14 -05:00
|
|
|
_ => false,
|
|
|
|
}
|
2016-01-03 22:26:12 -06:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
2016-02-01 05:51:33 -06:00
|
|
|
(&Constant::Bool(l), &Constant::Bool(r)) => l == r,
|
|
|
|
(&Constant::Vec(ref l), &Constant::Vec(ref r)) => l == r,
|
|
|
|
(&Constant::Repeat(ref lv, ref ls), &Constant::Repeat(ref rv, ref rs)) => ls == rs && lv == rv,
|
|
|
|
(&Constant::Tuple(ref l), &Constant::Tuple(ref r)) => l == r,
|
2015-08-17 06:18:14 -05:00
|
|
|
_ => false, //TODO: Are there inter-type equalities?
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-17 10:51:30 -05:00
|
|
|
impl PartialOrd for Constant {
|
|
|
|
fn partial_cmp(&self, other: &Constant) -> Option<Ordering> {
|
2015-08-17 06:18:14 -05:00
|
|
|
match (self, other) {
|
2016-02-01 05:51:33 -06:00
|
|
|
(&Constant::Str(ref ls, ref lsty), &Constant::Str(ref rs, ref rsty)) => {
|
2016-01-03 22:26:12 -06:00
|
|
|
if lsty != rsty {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(ls.cmp(rs))
|
|
|
|
}
|
|
|
|
}
|
2016-02-01 05:51:33 -06:00
|
|
|
(&Constant::Byte(ref l), &Constant::Byte(ref r)) => Some(l.cmp(r)),
|
|
|
|
(&Constant::Char(ref l), &Constant::Char(ref r)) => Some(l.cmp(r)),
|
|
|
|
(&Constant::Int(ref lv, lty), &Constant::Int(ref rv, rty)) => {
|
2016-01-03 22:26:12 -06:00
|
|
|
Some(match (is_negative(lty) && *lv != 0, is_negative(rty) && *rv != 0) {
|
2015-09-05 05:46:34 -05:00
|
|
|
(true, true) => rv.cmp(lv),
|
|
|
|
(false, false) => lv.cmp(rv),
|
|
|
|
(true, false) => Less,
|
|
|
|
(false, true) => Greater,
|
2016-01-03 22:26:12 -06:00
|
|
|
})
|
|
|
|
}
|
2016-02-01 05:51:33 -06:00
|
|
|
(&Constant::Float(ref ls, lw), &Constant::Float(ref rs, rw)) => {
|
2016-02-03 08:39:22 -06:00
|
|
|
use self::FloatWidth::*;
|
2015-08-17 06:18:14 -05:00
|
|
|
if match (lw, rw) {
|
|
|
|
(FwAny, _) | (_, FwAny) | (Fw32, Fw32) | (Fw64, Fw64) => true,
|
|
|
|
_ => false,
|
|
|
|
} {
|
|
|
|
match (ls.parse::<f64>(), rs.parse::<f64>()) {
|
|
|
|
(Ok(ref l), Ok(ref r)) => l.partial_cmp(r),
|
|
|
|
_ => None,
|
|
|
|
}
|
2016-01-03 22:26:12 -06:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2016-02-01 05:51:33 -06:00
|
|
|
(&Constant::Bool(ref l), &Constant::Bool(ref r)) => Some(l.cmp(r)),
|
|
|
|
(&Constant::Vec(ref l), &Constant::Vec(ref r)) => l.partial_cmp(&r),
|
|
|
|
(&Constant::Repeat(ref lv, ref ls), &Constant::Repeat(ref rv, ref rs)) => {
|
2015-08-17 06:18:14 -05:00
|
|
|
match lv.partial_cmp(rv) {
|
|
|
|
Some(Equal) => Some(ls.cmp(rs)),
|
|
|
|
x => x,
|
2016-01-03 22:26:12 -06:00
|
|
|
}
|
|
|
|
}
|
2016-02-01 05:51:33 -06:00
|
|
|
(&Constant::Tuple(ref l), &Constant::Tuple(ref r)) => l.partial_cmp(r),
|
2016-01-03 22:26:12 -06:00
|
|
|
_ => None, //TODO: Are there any useful inter-type orderings?
|
|
|
|
}
|
2015-08-17 06:18:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-12 06:49:28 -05:00
|
|
|
fn lit_to_constant(lit: &Lit_) -> Constant {
|
2015-08-18 07:18:36 -05:00
|
|
|
match *lit {
|
2016-02-03 08:39:22 -06:00
|
|
|
Lit_::LitStr(ref is, style) => Constant::Str(is.to_string(), style),
|
|
|
|
Lit_::LitByte(b) => Constant::Byte(b),
|
|
|
|
Lit_::LitByteStr(ref s) => Constant::Binary(s.clone()),
|
|
|
|
Lit_::LitChar(c) => Constant::Char(c),
|
|
|
|
Lit_::LitInt(value, ty) => Constant::Int(value, ty),
|
|
|
|
Lit_::LitFloat(ref is, ty) => Constant::Float(is.to_string(), ty.into()),
|
|
|
|
Lit_::LitFloatUnsuffixed(ref is) => Constant::Float(is.to_string(), FloatWidth::FwAny),
|
|
|
|
Lit_::LitBool(b) => Constant::Bool(b),
|
2015-08-12 06:49:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-17 09:45:50 -05:00
|
|
|
fn constant_not(o: Constant) -> Option<Constant> {
|
2016-02-03 08:39:22 -06:00
|
|
|
use syntax::ast::LitIntType::*;
|
|
|
|
use self::Constant::*;
|
|
|
|
match o {
|
|
|
|
Bool(b) => Some(Bool(!b)),
|
|
|
|
Int(::std::u64::MAX, SignedIntLit(_, Plus)) => None,
|
|
|
|
Int(value, SignedIntLit(ity, Plus)) => Some(Int(value + 1, SignedIntLit(ity, Minus))),
|
|
|
|
Int(0, SignedIntLit(ity, Minus)) => Some(Int(1, SignedIntLit(ity, Minus))),
|
|
|
|
Int(value, SignedIntLit(ity, Minus)) => Some(Int(value - 1, SignedIntLit(ity, Plus))),
|
|
|
|
Int(value, UnsignedIntLit(ity)) => {
|
|
|
|
let mask = match ity {
|
|
|
|
UintTy::TyU8 => ::std::u8::MAX as u64,
|
|
|
|
UintTy::TyU16 => ::std::u16::MAX as u64,
|
|
|
|
UintTy::TyU32 => ::std::u32::MAX as u64,
|
|
|
|
UintTy::TyU64 => ::std::u64::MAX,
|
|
|
|
UintTy::TyUs => {
|
2016-01-03 22:26:12 -06:00
|
|
|
return None;
|
|
|
|
} // refuse to guess
|
2015-08-17 10:51:30 -05:00
|
|
|
};
|
2016-02-03 08:39:22 -06:00
|
|
|
Some(Int(!value & mask, UnsignedIntLit(ity)))
|
|
|
|
},
|
|
|
|
_ => None,
|
|
|
|
}
|
2015-08-17 09:45:50 -05:00
|
|
|
}
|
|
|
|
|
2015-08-13 02:25:44 -05:00
|
|
|
fn constant_negate(o: Constant) -> Option<Constant> {
|
2016-02-03 08:39:22 -06:00
|
|
|
use syntax::ast::LitIntType::*;
|
|
|
|
use self::Constant::*;
|
|
|
|
match o {
|
|
|
|
Int(value, SignedIntLit(ity, sign)) => Some(Int(value, SignedIntLit(ity, neg_sign(sign)))),
|
|
|
|
Int(value, UnsuffixedIntLit(sign)) => Some(Int(value, UnsuffixedIntLit(neg_sign(sign)))),
|
|
|
|
Float(is, ty) => Some(Float(neg_float_str(is), ty)),
|
|
|
|
_ => None,
|
|
|
|
}
|
2015-08-13 02:25:44 -05:00
|
|
|
}
|
|
|
|
|
2015-08-12 06:49:28 -05:00
|
|
|
fn neg_sign(s: Sign) -> Sign {
|
2015-08-13 02:25:44 -05:00
|
|
|
match s {
|
2015-08-12 06:49:28 -05:00
|
|
|
Sign::Plus => Sign::Minus,
|
|
|
|
Sign::Minus => Sign::Plus,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-14 10:14:54 -05:00
|
|
|
fn neg_float_str(s: String) -> String {
|
|
|
|
if s.starts_with('-') {
|
|
|
|
s[1..].to_owned()
|
2015-08-12 06:49:28 -05:00
|
|
|
} else {
|
2015-08-25 07:41:35 -05:00
|
|
|
format!("-{}", s)
|
2015-08-12 06:49:28 -05:00
|
|
|
}
|
|
|
|
}
|
2015-08-13 02:25:44 -05:00
|
|
|
|
2015-08-16 16:09:56 -05:00
|
|
|
/// is the given LitIntType negative?
|
|
|
|
///
|
|
|
|
/// Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// assert!(is_negative(UnsuffixedIntLit(Minus)));
|
|
|
|
/// ```
|
|
|
|
pub fn is_negative(ty: LitIntType) -> bool {
|
2015-08-13 07:22:05 -05:00
|
|
|
match ty {
|
2016-02-03 08:39:22 -06:00
|
|
|
LitIntType::SignedIntLit(_, sign) | LitIntType::UnsuffixedIntLit(sign) => sign == Minus,
|
|
|
|
LitIntType::UnsignedIntLit(_) => false,
|
2015-08-13 07:22:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-14 10:14:54 -05:00
|
|
|
fn unify_int_type(l: LitIntType, r: LitIntType, s: Sign) -> Option<LitIntType> {
|
2016-02-03 08:39:22 -06:00
|
|
|
use syntax::ast::LitIntType::*;
|
2015-08-13 07:22:05 -05:00
|
|
|
match (l, r) {
|
2016-01-03 22:26:12 -06:00
|
|
|
(SignedIntLit(lty, _), SignedIntLit(rty, _)) => {
|
|
|
|
if lty == rty {
|
|
|
|
Some(SignedIntLit(lty, s))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
(UnsignedIntLit(lty), UnsignedIntLit(rty)) => {
|
2015-08-14 10:14:54 -05:00
|
|
|
if s == Plus && lty == rty {
|
2015-08-13 07:22:05 -05:00
|
|
|
Some(UnsignedIntLit(lty))
|
2016-01-03 22:26:12 -06:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2015-08-14 10:14:54 -05:00
|
|
|
(UnsuffixedIntLit(_), UnsuffixedIntLit(_)) => Some(UnsuffixedIntLit(s)),
|
|
|
|
(SignedIntLit(lty, _), UnsuffixedIntLit(_)) => Some(SignedIntLit(lty, s)),
|
2016-01-03 22:26:12 -06:00
|
|
|
(UnsignedIntLit(lty), UnsuffixedIntLit(rs)) => {
|
|
|
|
if rs == Plus {
|
|
|
|
Some(UnsignedIntLit(lty))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2015-08-14 10:14:54 -05:00
|
|
|
(UnsuffixedIntLit(_), SignedIntLit(rty, _)) => Some(SignedIntLit(rty, s)),
|
2016-01-03 22:26:12 -06:00
|
|
|
(UnsuffixedIntLit(ls), UnsignedIntLit(rty)) => {
|
|
|
|
if ls == Plus {
|
|
|
|
Some(UnsignedIntLit(rty))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2015-08-13 07:22:05 -05:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-03 22:26:12 -06:00
|
|
|
fn add_neg_int(pos: u64, pty: LitIntType, neg: u64, nty: LitIntType) -> Option<Constant> {
|
2015-08-13 07:22:05 -05:00
|
|
|
if neg > pos {
|
2016-02-01 05:51:33 -06:00
|
|
|
unify_int_type(nty, pty, Minus).map(|ty| Constant::Int(neg - pos, ty))
|
2015-08-13 07:22:05 -05:00
|
|
|
} else {
|
2016-02-01 05:51:33 -06:00
|
|
|
unify_int_type(nty, pty, Plus).map(|ty| Constant::Int(pos - neg, ty))
|
2015-08-13 07:22:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-03 22:26:12 -06:00
|
|
|
fn sub_int(l: u64, lty: LitIntType, r: u64, rty: LitIntType, neg: bool) -> Option<Constant> {
|
|
|
|
unify_int_type(lty,
|
|
|
|
rty,
|
|
|
|
if neg {
|
|
|
|
Minus
|
|
|
|
} else {
|
|
|
|
Plus
|
|
|
|
})
|
2016-02-01 05:51:33 -06:00
|
|
|
.and_then(|ty| l.checked_sub(r).map(|v| Constant::Int(v, ty)))
|
2015-08-13 07:22:05 -05:00
|
|
|
}
|
|
|
|
|
2015-08-17 10:51:30 -05:00
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
pub fn constant(lcx: &LateContext, e: &Expr) -> Option<(Constant, bool)> {
|
2016-01-03 22:26:12 -06:00
|
|
|
let mut cx = ConstEvalLateContext {
|
|
|
|
lcx: Some(lcx),
|
|
|
|
needed_resolution: false,
|
|
|
|
};
|
2015-08-17 10:51:30 -05:00
|
|
|
cx.expr(e).map(|cst| (cst, cx.needed_resolution))
|
2015-08-13 02:25:44 -05:00
|
|
|
}
|
|
|
|
|
2015-08-17 10:51:30 -05:00
|
|
|
pub fn constant_simple(e: &Expr) -> Option<Constant> {
|
2016-01-03 22:26:12 -06:00
|
|
|
let mut cx = ConstEvalLateContext {
|
|
|
|
lcx: None,
|
|
|
|
needed_resolution: false,
|
|
|
|
};
|
2015-08-17 10:51:30 -05:00
|
|
|
cx.expr(e)
|
|
|
|
}
|
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
struct ConstEvalLateContext<'c, 'cc: 'c> {
|
|
|
|
lcx: Option<&'c LateContext<'c, 'cc>>,
|
2016-01-03 22:26:12 -06:00
|
|
|
needed_resolution: bool,
|
2015-08-17 10:51:30 -05:00
|
|
|
}
|
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
impl<'c, 'cc> ConstEvalLateContext<'c, 'cc> {
|
2015-08-17 10:51:30 -05:00
|
|
|
/// simple constant folding: Insert an expression, get a constant or none.
|
|
|
|
fn expr(&mut self, e: &Expr) -> Option<Constant> {
|
2015-08-17 12:55:59 -05:00
|
|
|
match e.node {
|
|
|
|
ExprPath(_, _) => self.fetch_path(e),
|
|
|
|
ExprBlock(ref block) => self.block(block),
|
2016-01-03 22:26:12 -06:00
|
|
|
ExprIf(ref cond, ref then, ref otherwise) => self.ifthenelse(cond, then, otherwise),
|
2015-08-17 12:55:59 -05:00
|
|
|
ExprLit(ref lit) => Some(lit_to_constant(&lit.node)),
|
2016-02-01 05:51:33 -06:00
|
|
|
ExprVec(ref vec) => self.multi(vec).map(Constant::Vec),
|
|
|
|
ExprTup(ref tup) => self.multi(tup).map(Constant::Tuple),
|
2016-01-03 22:26:12 -06:00
|
|
|
ExprRepeat(ref value, ref number) => {
|
2016-02-01 05:51:33 -06:00
|
|
|
self.binop_apply(value, number, |v, n| Some(Constant::Repeat(Box::new(v), n.as_u64() as usize)))
|
2016-01-03 22:26:12 -06:00
|
|
|
}
|
|
|
|
ExprUnary(op, ref operand) => {
|
|
|
|
self.expr(operand).and_then(|o| {
|
|
|
|
match op {
|
|
|
|
UnNot => constant_not(o),
|
|
|
|
UnNeg => constant_negate(o),
|
|
|
|
UnDeref => Some(o),
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
ExprBinary(op, ref left, ref right) => self.binop(op, left, right),
|
|
|
|
// TODO: add other expressions
|
2015-08-17 10:51:30 -05:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-18 05:26:01 -05:00
|
|
|
/// create `Some(Vec![..])` of all constants, unless there is any
|
2015-08-17 10:51:30 -05:00
|
|
|
/// non-constant part
|
2016-01-03 22:26:12 -06:00
|
|
|
fn multi<E: Deref<Target = Expr> + Sized>(&mut self, vec: &[E]) -> Option<Vec<Constant>> {
|
|
|
|
vec.iter()
|
|
|
|
.map(|elem| self.expr(elem))
|
|
|
|
.collect::<Option<_>>()
|
2015-08-17 10:51:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// lookup a possibly constant expression from a ExprPath
|
|
|
|
fn fetch_path(&mut self, e: &Expr) -> Option<Constant> {
|
|
|
|
if let Some(lcx) = self.lcx {
|
2015-08-22 02:31:54 -05:00
|
|
|
let mut maybe_id = None;
|
2016-01-22 06:24:44 -06:00
|
|
|
if let Some(&PathResolution { base_def: Def::Const(id), ..}) = lcx.tcx.def_map.borrow().get(&e.id) {
|
2015-08-22 02:31:54 -05:00
|
|
|
maybe_id = Some(id);
|
|
|
|
}
|
2016-01-18 06:09:46 -06:00
|
|
|
// separate if lets to avoid double borrowing the def_map
|
2015-08-22 02:31:54 -05:00
|
|
|
if let Some(id) = maybe_id {
|
2016-01-18 06:27:42 -06:00
|
|
|
if let Some(const_expr) = lookup_const_by_id(lcx.tcx, id, None, None) {
|
2015-08-17 10:51:30 -05:00
|
|
|
let ret = self.expr(const_expr);
|
|
|
|
if ret.is_some() {
|
|
|
|
self.needed_resolution = true;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A block can only yield a constant if it only has one constant expression
|
|
|
|
fn block(&mut self, block: &Block) -> Option<Constant> {
|
|
|
|
if block.stmts.is_empty() {
|
2015-08-17 12:55:59 -05:00
|
|
|
block.expr.as_ref().and_then(|ref b| self.expr(b))
|
2016-01-03 22:26:12 -06:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2015-08-17 10:51:30 -05:00
|
|
|
}
|
|
|
|
|
2016-01-03 22:26:12 -06:00
|
|
|
fn ifthenelse(&mut self, cond: &Expr, then: &Block, otherwise: &Option<P<Expr>>) -> Option<Constant> {
|
2016-02-01 05:51:33 -06:00
|
|
|
if let Some(Constant::Bool(b)) = self.expr(cond) {
|
2015-08-17 10:51:30 -05:00
|
|
|
if b {
|
|
|
|
self.block(then)
|
2015-08-14 10:14:54 -05:00
|
|
|
} else {
|
2015-08-25 07:41:35 -05:00
|
|
|
otherwise.as_ref().and_then(|expr| self.expr(expr))
|
2015-08-14 10:14:54 -05:00
|
|
|
}
|
2016-01-03 22:26:12 -06:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2015-08-17 10:51:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn binop(&mut self, op: BinOp, left: &Expr, right: &Expr) -> Option<Constant> {
|
|
|
|
match op.node {
|
2016-01-03 22:26:12 -06:00
|
|
|
BiAdd => {
|
|
|
|
self.binop_apply(left, right, |l, r| {
|
|
|
|
match (l, r) {
|
2016-02-01 05:51:33 -06:00
|
|
|
(Constant::Byte(l8), Constant::Byte(r8)) => l8.checked_add(r8).map(Constant::Byte),
|
|
|
|
(Constant::Int(l64, lty), Constant::Int(r64, rty)) => {
|
2016-01-03 22:26:12 -06:00
|
|
|
let (ln, rn) = (is_negative(lty), is_negative(rty));
|
|
|
|
if ln == rn {
|
|
|
|
unify_int_type(lty,
|
|
|
|
rty,
|
|
|
|
if ln {
|
|
|
|
Minus
|
|
|
|
} else {
|
|
|
|
Plus
|
|
|
|
})
|
2016-02-01 05:51:33 -06:00
|
|
|
.and_then(|ty| l64.checked_add(r64).map(|v| Constant::Int(v, ty)))
|
2016-01-13 11:32:05 -06:00
|
|
|
} else if ln {
|
|
|
|
add_neg_int(r64, rty, l64, lty)
|
2015-08-17 10:51:30 -05:00
|
|
|
} else {
|
2016-01-13 11:32:05 -06:00
|
|
|
add_neg_int(l64, lty, r64, rty)
|
2015-08-17 10:51:30 -05:00
|
|
|
}
|
|
|
|
}
|
2016-01-03 22:26:12 -06:00
|
|
|
// TODO: float (would need bignum library?)
|
|
|
|
_ => None,
|
2015-11-16 22:39:42 -06:00
|
|
|
}
|
2016-01-03 22:26:12 -06:00
|
|
|
})
|
|
|
|
}
|
|
|
|
BiSub => {
|
|
|
|
self.binop_apply(left, right, |l, r| {
|
|
|
|
match (l, r) {
|
2016-02-01 05:51:33 -06:00
|
|
|
(Constant::Byte(l8), Constant::Byte(r8)) => {
|
2016-01-03 22:26:12 -06:00
|
|
|
if r8 > l8 {
|
|
|
|
None
|
|
|
|
} else {
|
2016-02-01 05:51:33 -06:00
|
|
|
Some(Constant::Byte(l8 - r8))
|
2016-01-03 22:26:12 -06:00
|
|
|
}
|
|
|
|
}
|
2016-02-01 05:51:33 -06:00
|
|
|
(Constant::Int(l64, lty), Constant::Int(r64, rty)) => {
|
2016-01-03 22:26:12 -06:00
|
|
|
match (is_negative(lty), is_negative(rty)) {
|
|
|
|
(false, false) => sub_int(l64, lty, r64, rty, r64 > l64),
|
|
|
|
(true, true) => sub_int(l64, lty, r64, rty, l64 > r64),
|
|
|
|
(true, false) => {
|
|
|
|
unify_int_type(lty, rty, Minus)
|
2016-02-01 05:51:33 -06:00
|
|
|
.and_then(|ty| l64.checked_add(r64).map(|v| Constant::Int(v, ty)))
|
2016-01-03 22:26:12 -06:00
|
|
|
}
|
|
|
|
(false, true) => {
|
|
|
|
unify_int_type(lty, rty, Plus)
|
2016-02-01 05:51:33 -06:00
|
|
|
.and_then(|ty| l64.checked_add(r64).map(|v| Constant::Int(v, ty)))
|
2016-01-03 22:26:12 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2015-08-19 04:58:59 -05:00
|
|
|
BiMul => self.divmul(left, right, u64::checked_mul),
|
|
|
|
BiDiv => self.divmul(left, right, u64::checked_div),
|
2016-01-03 22:26:12 -06:00
|
|
|
// BiRem,
|
2015-08-17 10:51:30 -05:00
|
|
|
BiAnd => self.short_circuit(left, right, false),
|
|
|
|
BiOr => self.short_circuit(left, right, true),
|
|
|
|
BiBitXor => self.bitop(left, right, |x, y| x ^ y),
|
|
|
|
BiBitAnd => self.bitop(left, right, |x, y| x & y),
|
|
|
|
BiBitOr => self.bitop(left, right, |x, y| (x | y)),
|
|
|
|
BiShl => self.bitop(left, right, |x, y| x << y),
|
|
|
|
BiShr => self.bitop(left, right, |x, y| x >> y),
|
2016-02-01 05:51:33 -06:00
|
|
|
BiEq => self.binop_apply(left, right, |l, r| Some(Constant::Bool(l == r))),
|
|
|
|
BiNe => self.binop_apply(left, right, |l, r| Some(Constant::Bool(l != r))),
|
2015-08-17 10:51:30 -05:00
|
|
|
BiLt => self.cmp(left, right, Less, true),
|
|
|
|
BiLe => self.cmp(left, right, Greater, false),
|
|
|
|
BiGe => self.cmp(left, right, Less, false),
|
|
|
|
BiGt => self.cmp(left, right, Greater, true),
|
2016-01-03 22:26:12 -06:00
|
|
|
_ => None,
|
2015-08-17 10:51:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-03 22:26:12 -06:00
|
|
|
fn divmul<F>(&mut self, left: &Expr, right: &Expr, f: F) -> Option<Constant>
|
|
|
|
where F: Fn(u64, u64) -> Option<u64>
|
|
|
|
{
|
|
|
|
self.binop_apply(left, right, |l, r| {
|
2015-08-19 04:58:59 -05:00
|
|
|
match (l, r) {
|
2016-02-01 05:51:33 -06:00
|
|
|
(Constant::Int(l64, lty), Constant::Int(r64, rty)) => {
|
2016-01-03 22:26:12 -06:00
|
|
|
f(l64, r64).and_then(|value| {
|
|
|
|
unify_int_type(lty,
|
|
|
|
rty,
|
|
|
|
if is_negative(lty) == is_negative(rty) {
|
|
|
|
Plus
|
|
|
|
} else {
|
|
|
|
Minus
|
|
|
|
})
|
2016-02-01 05:51:33 -06:00
|
|
|
.map(|ty| Constant::Int(value, ty))
|
2016-01-03 22:26:12 -06:00
|
|
|
})
|
2015-11-16 22:39:42 -06:00
|
|
|
}
|
2015-08-19 04:58:59 -05:00
|
|
|
_ => None,
|
2016-01-03 22:26:12 -06:00
|
|
|
}
|
|
|
|
})
|
2015-08-19 04:58:59 -05:00
|
|
|
}
|
|
|
|
|
2016-01-03 22:26:12 -06:00
|
|
|
fn bitop<F>(&mut self, left: &Expr, right: &Expr, f: F) -> Option<Constant>
|
|
|
|
where F: Fn(u64, u64) -> u64
|
|
|
|
{
|
|
|
|
self.binop_apply(left, right, |l, r| {
|
|
|
|
match (l, r) {
|
2016-02-01 05:51:33 -06:00
|
|
|
(Constant::Bool(l), Constant::Bool(r)) => Some(Constant::Bool(f(l as u64, r as u64) != 0)),
|
|
|
|
(Constant::Byte(l8), Constant::Byte(r8)) => Some(Constant::Byte(f(l8 as u64, r8 as u64) as u8)),
|
|
|
|
(Constant::Int(l, lty), Constant::Int(r, rty)) => {
|
|
|
|
unify_int_type(lty, rty, Plus).map(|ty| Constant::Int(f(l, r), ty))
|
2016-01-03 22:26:12 -06:00
|
|
|
}
|
|
|
|
_ => None,
|
|
|
|
}
|
2015-08-17 10:51:30 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn cmp(&mut self, left: &Expr, right: &Expr, ordering: Ordering, b: bool) -> Option<Constant> {
|
2016-01-03 22:26:12 -06:00
|
|
|
self.binop_apply(left,
|
|
|
|
right,
|
2016-02-01 05:51:33 -06:00
|
|
|
|l, r| l.partial_cmp(&r).map(|o| Constant::Bool(b == (o == ordering))))
|
2015-08-17 10:51:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn binop_apply<F>(&mut self, left: &Expr, right: &Expr, op: F) -> Option<Constant>
|
2016-01-03 22:26:12 -06:00
|
|
|
where F: Fn(Constant, Constant) -> Option<Constant>
|
|
|
|
{
|
2015-08-17 10:51:30 -05:00
|
|
|
if let (Some(lc), Some(rc)) = (self.expr(left), self.expr(right)) {
|
|
|
|
op(lc, rc)
|
2016-01-03 22:26:12 -06:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2015-08-17 10:51:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn short_circuit(&mut self, left: &Expr, right: &Expr, b: bool) -> Option<Constant> {
|
2016-01-03 22:26:12 -06:00
|
|
|
self.expr(left).and_then(|left| {
|
2016-02-01 05:51:33 -06:00
|
|
|
if let Constant::Bool(lbool) = left {
|
2015-08-17 10:51:30 -05:00
|
|
|
if lbool == b {
|
|
|
|
Some(left)
|
|
|
|
} else {
|
2016-01-03 22:26:12 -06:00
|
|
|
self.expr(right).and_then(|right| {
|
2016-02-01 05:51:33 -06:00
|
|
|
if let Constant::Bool(_) = right {
|
2015-08-17 10:51:30 -05:00
|
|
|
Some(right)
|
2016-01-03 22:26:12 -06:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
2015-08-17 10:51:30 -05:00
|
|
|
}
|
2016-01-03 22:26:12 -06:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
2015-08-17 10:51:30 -05:00
|
|
|
}
|
2015-08-13 02:25:44 -05:00
|
|
|
}
|