2015-08-26 23:10:01 +00:00
|
|
|
|
#![allow(cast_possible_truncation)]
|
|
|
|
|
|
2015-09-19 02:53:04 +00:00
|
|
|
|
use rustc::lint::LateContext;
|
2016-04-07 15:46:48 +00:00
|
|
|
|
use rustc::hir::def::{Def, PathResolution};
|
2016-03-31 15:05:43 +00:00
|
|
|
|
use rustc_const_eval::lookup_const_by_id;
|
|
|
|
|
use rustc_const_math::{ConstInt, ConstUsize, ConstIsize};
|
2016-04-07 15:46:48 +00:00
|
|
|
|
use rustc::hir::*;
|
2016-03-16 11:38:26 +00:00
|
|
|
|
use std::cmp::Ordering::{self, Equal};
|
2016-02-12 14:51:55 +00:00
|
|
|
|
use std::cmp::PartialOrd;
|
|
|
|
|
use std::hash::{Hash, Hasher};
|
|
|
|
|
use std::mem;
|
2015-08-14 15:14:54 +00:00
|
|
|
|
use std::ops::Deref;
|
2016-02-12 14:51:55 +00:00
|
|
|
|
use std::rc::Rc;
|
2016-03-16 11:38:26 +00:00
|
|
|
|
use syntax::ast::{FloatTy, LitIntType, LitKind, StrStyle, UintTy, IntTy};
|
2016-02-12 14:51:55 +00:00
|
|
|
|
use syntax::ptr::P;
|
2015-09-17 00:01:41 +00:00
|
|
|
|
|
2016-02-12 14:51:55 +00:00
|
|
|
|
#[derive(Debug, Copy, Clone)]
|
2015-08-13 07:25:44 +00:00
|
|
|
|
pub enum FloatWidth {
|
2016-02-15 16:00:06 +00:00
|
|
|
|
F32,
|
|
|
|
|
F64,
|
|
|
|
|
Any,
|
2015-08-13 07:25:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl From<FloatTy> for FloatWidth {
|
|
|
|
|
fn from(ty: FloatTy) -> FloatWidth {
|
|
|
|
|
match ty {
|
2016-02-15 16:00:06 +00:00
|
|
|
|
FloatTy::F32 => FloatWidth::F32,
|
|
|
|
|
FloatTy::F64 => FloatWidth::F64,
|
2015-08-13 07:25:44 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-19 16:48:29 +00:00
|
|
|
|
/// A `LitKind`-like enum to fold constant `Expr`s into.
|
2016-02-12 14:51:55 +00:00
|
|
|
|
#[derive(Debug, Clone)]
|
2015-08-17 15:51:30 +00:00
|
|
|
|
pub enum Constant {
|
2015-08-13 07:25:44 +00:00
|
|
|
|
/// a String "abc"
|
2016-02-01 11:51:33 +00:00
|
|
|
|
Str(String, StrStyle),
|
2015-08-13 07:25:44 +00:00
|
|
|
|
/// a Binary String b"abc"
|
2016-02-01 11:51:33 +00:00
|
|
|
|
Binary(Rc<Vec<u8>>),
|
2015-08-13 07:25:44 +00:00
|
|
|
|
/// a single char 'a'
|
2016-02-01 11:51:33 +00:00
|
|
|
|
Char(char),
|
2016-02-12 17:35:44 +00:00
|
|
|
|
/// an integer, third argument is whether the value is negated
|
2016-03-16 11:38:26 +00:00
|
|
|
|
Int(ConstInt),
|
2015-08-13 07:25:44 +00:00
|
|
|
|
/// a float with given type
|
2016-02-01 11:51:33 +00:00
|
|
|
|
Float(String, FloatWidth),
|
2015-08-13 07:25:44 +00:00
|
|
|
|
/// true or false
|
2016-02-01 11:51:33 +00:00
|
|
|
|
Bool(bool),
|
2015-08-13 07:25:44 +00:00
|
|
|
|
/// an array of constants
|
2016-02-01 11:51:33 +00:00
|
|
|
|
Vec(Vec<Constant>),
|
2015-08-13 07:25:44 +00:00
|
|
|
|
/// also an array, but with only one constant, repeated N times
|
2016-02-01 11:51:33 +00:00
|
|
|
|
Repeat(Box<Constant>, usize),
|
2015-08-13 07:25:44 +00:00
|
|
|
|
/// a tuple of constants
|
2016-02-01 11:51:33 +00:00
|
|
|
|
Tuple(Vec<Constant>),
|
2015-08-12 11:49:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-08-17 15:51:30 +00:00
|
|
|
|
impl Constant {
|
2015-08-13 08:45:30 +00:00
|
|
|
|
/// convert to u64 if possible
|
|
|
|
|
///
|
|
|
|
|
/// # panics
|
|
|
|
|
///
|
|
|
|
|
/// if the constant could not be converted to u64 losslessly
|
|
|
|
|
fn as_u64(&self) -> u64 {
|
2016-03-16 11:38:26 +00:00
|
|
|
|
if let Constant::Int(val) = *self {
|
|
|
|
|
val.to_u64().expect("negative constant can't be casted to u64")
|
2015-08-13 08:45:30 +00:00
|
|
|
|
} else {
|
2015-12-23 21:36:37 +00:00
|
|
|
|
panic!("Could not convert a {:?} to u64", self);
|
2015-08-13 08:45:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-08-17 15:51:30 +00:00
|
|
|
|
|
|
|
|
|
/// convert this constant to a f64, if possible
|
2016-03-16 11:38:26 +00:00
|
|
|
|
#[allow(cast_precision_loss, cast_possible_wrap)]
|
2015-08-19 22:04:01 +00:00
|
|
|
|
pub fn as_float(&self) -> Option<f64> {
|
|
|
|
|
match *self {
|
2016-02-01 11:51:33 +00:00
|
|
|
|
Constant::Float(ref s, _) => s.parse().ok(),
|
2016-03-16 11:38:26 +00:00
|
|
|
|
Constant::Int(i) if i.is_negative() => Some(i.to_u64_unchecked() as i64 as f64),
|
|
|
|
|
Constant::Int(i) => Some(i.to_u64_unchecked() as f64),
|
2016-01-04 04:26:12 +00:00
|
|
|
|
_ => None,
|
2015-08-19 22:04:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-08-13 08:45:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-08-17 15:51:30 +00:00
|
|
|
|
impl PartialEq for Constant {
|
|
|
|
|
fn eq(&self, other: &Constant) -> bool {
|
2015-08-17 11:18:14 +00:00
|
|
|
|
match (self, other) {
|
2016-03-01 09:13:54 +00:00
|
|
|
|
(&Constant::Str(ref ls, ref l_sty), &Constant::Str(ref rs, ref r_sty)) => ls == rs && l_sty == r_sty,
|
2016-02-01 11:51:33 +00:00
|
|
|
|
(&Constant::Binary(ref l), &Constant::Binary(ref r)) => l == r,
|
|
|
|
|
(&Constant::Char(l), &Constant::Char(r)) => l == r,
|
2016-04-14 18:14:03 +00:00
|
|
|
|
(&Constant::Int(l), &Constant::Int(r)) => {
|
|
|
|
|
l.is_negative() == r.is_negative() && l.to_u64_unchecked() == r.to_u64_unchecked()
|
|
|
|
|
}
|
2016-02-12 14:51:55 +00:00
|
|
|
|
(&Constant::Float(ref ls, _), &Constant::Float(ref rs, _)) => {
|
|
|
|
|
// we want `Fw32 == FwAny` and `FwAny == Fw64`, by transitivity we must have
|
|
|
|
|
// `Fw32 == Fw64` so don’t compare them
|
|
|
|
|
match (ls.parse::<f64>(), rs.parse::<f64>()) {
|
|
|
|
|
(Ok(l), Ok(r)) => l.eq(&r),
|
2015-08-17 11:18:14 +00:00
|
|
|
|
_ => false,
|
2016-01-04 04:26:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-02-01 11:51:33 +00: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 11:18:14 +00:00
|
|
|
|
_ => false, //TODO: Are there inter-type equalities?
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-12 14:51:55 +00:00
|
|
|
|
impl Hash for Constant {
|
2016-02-24 16:38:57 +00:00
|
|
|
|
fn hash<H>(&self, state: &mut H)
|
|
|
|
|
where H: Hasher
|
|
|
|
|
{
|
2016-02-12 14:51:55 +00:00
|
|
|
|
match *self {
|
|
|
|
|
Constant::Str(ref s, ref k) => {
|
|
|
|
|
s.hash(state);
|
|
|
|
|
k.hash(state);
|
|
|
|
|
}
|
|
|
|
|
Constant::Binary(ref b) => {
|
|
|
|
|
b.hash(state);
|
|
|
|
|
}
|
|
|
|
|
Constant::Char(c) => {
|
|
|
|
|
c.hash(state);
|
|
|
|
|
}
|
2016-03-16 11:38:26 +00:00
|
|
|
|
Constant::Int(i) => {
|
2016-03-16 15:28:31 +00:00
|
|
|
|
i.to_u64_unchecked().hash(state);
|
|
|
|
|
i.is_negative().hash(state);
|
2016-02-12 14:51:55 +00:00
|
|
|
|
}
|
|
|
|
|
Constant::Float(ref f, _) => {
|
|
|
|
|
// don’t use the width here because of PartialEq implementation
|
|
|
|
|
if let Ok(f) = f.parse::<f64>() {
|
|
|
|
|
unsafe { mem::transmute::<f64, u64>(f) }.hash(state);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Constant::Bool(b) => {
|
|
|
|
|
b.hash(state);
|
|
|
|
|
}
|
2016-04-14 18:14:03 +00:00
|
|
|
|
Constant::Vec(ref v) |
|
|
|
|
|
Constant::Tuple(ref v) => {
|
2016-02-12 14:51:55 +00:00
|
|
|
|
v.hash(state);
|
|
|
|
|
}
|
|
|
|
|
Constant::Repeat(ref c, l) => {
|
|
|
|
|
c.hash(state);
|
|
|
|
|
l.hash(state);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-17 15:51:30 +00:00
|
|
|
|
impl PartialOrd for Constant {
|
|
|
|
|
fn partial_cmp(&self, other: &Constant) -> Option<Ordering> {
|
2015-08-17 11:18:14 +00:00
|
|
|
|
match (self, other) {
|
2016-03-01 09:13:54 +00:00
|
|
|
|
(&Constant::Str(ref ls, ref l_sty), &Constant::Str(ref rs, ref r_sty)) => {
|
|
|
|
|
if l_sty == r_sty {
|
2016-01-04 04:26:12 +00:00
|
|
|
|
Some(ls.cmp(rs))
|
2016-02-29 08:45:36 +00:00
|
|
|
|
} else {
|
|
|
|
|
None
|
2016-01-04 04:26:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-02-01 11:51:33 +00:00
|
|
|
|
(&Constant::Char(ref l), &Constant::Char(ref r)) => Some(l.cmp(r)),
|
2016-03-16 11:38:26 +00:00
|
|
|
|
(&Constant::Int(l), &Constant::Int(r)) => Some(l.cmp(&r)),
|
2016-02-12 14:51:55 +00:00
|
|
|
|
(&Constant::Float(ref ls, _), &Constant::Float(ref rs, _)) => {
|
|
|
|
|
match (ls.parse::<f64>(), rs.parse::<f64>()) {
|
|
|
|
|
(Ok(ref l), Ok(ref r)) => l.partial_cmp(r),
|
|
|
|
|
_ => None,
|
2016-01-04 04:26:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-02-01 11:51:33 +00: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 11:18:14 +00:00
|
|
|
|
match lv.partial_cmp(rv) {
|
|
|
|
|
Some(Equal) => Some(ls.cmp(rs)),
|
|
|
|
|
x => x,
|
2016-01-04 04:26:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-02-01 11:51:33 +00:00
|
|
|
|
(&Constant::Tuple(ref l), &Constant::Tuple(ref r)) => l.partial_cmp(r),
|
2016-01-04 04:26:12 +00:00
|
|
|
|
_ => None, //TODO: Are there any useful inter-type orderings?
|
|
|
|
|
}
|
2015-08-17 11:18:14 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-16 11:38:26 +00:00
|
|
|
|
#[allow(cast_possible_wrap)]
|
2016-02-12 17:35:44 +00:00
|
|
|
|
fn lit_to_constant(lit: &LitKind) -> Constant {
|
2015-08-18 12:18:36 +00:00
|
|
|
|
match *lit {
|
2016-02-12 17:35:44 +00:00
|
|
|
|
LitKind::Str(ref is, style) => Constant::Str(is.to_string(), style),
|
2016-03-16 11:38:26 +00:00
|
|
|
|
LitKind::Byte(b) => Constant::Int(ConstInt::U8(b)),
|
2016-02-12 17:35:44 +00:00
|
|
|
|
LitKind::ByteStr(ref s) => Constant::Binary(s.clone()),
|
|
|
|
|
LitKind::Char(c) => Constant::Char(c),
|
2016-03-16 11:38:26 +00:00
|
|
|
|
LitKind::Int(value, LitIntType::Unsuffixed) => Constant::Int(ConstInt::Infer(value)),
|
|
|
|
|
LitKind::Int(value, LitIntType::Unsigned(UintTy::U8)) => Constant::Int(ConstInt::U8(value as u8)),
|
|
|
|
|
LitKind::Int(value, LitIntType::Unsigned(UintTy::U16)) => Constant::Int(ConstInt::U16(value as u16)),
|
|
|
|
|
LitKind::Int(value, LitIntType::Unsigned(UintTy::U32)) => Constant::Int(ConstInt::U32(value as u32)),
|
|
|
|
|
LitKind::Int(value, LitIntType::Unsigned(UintTy::U64)) => Constant::Int(ConstInt::U64(value as u64)),
|
2016-04-14 18:14:03 +00:00
|
|
|
|
LitKind::Int(value, LitIntType::Unsigned(UintTy::Us)) => {
|
|
|
|
|
Constant::Int(ConstInt::Usize(ConstUsize::Us32(value as u32)))
|
|
|
|
|
}
|
2016-03-16 11:38:26 +00:00
|
|
|
|
LitKind::Int(value, LitIntType::Signed(IntTy::I8)) => Constant::Int(ConstInt::I8(value as i8)),
|
|
|
|
|
LitKind::Int(value, LitIntType::Signed(IntTy::I16)) => Constant::Int(ConstInt::I16(value as i16)),
|
|
|
|
|
LitKind::Int(value, LitIntType::Signed(IntTy::I32)) => Constant::Int(ConstInt::I32(value as i32)),
|
|
|
|
|
LitKind::Int(value, LitIntType::Signed(IntTy::I64)) => Constant::Int(ConstInt::I64(value as i64)),
|
2016-04-14 18:14:03 +00:00
|
|
|
|
LitKind::Int(value, LitIntType::Signed(IntTy::Is)) => {
|
|
|
|
|
Constant::Int(ConstInt::Isize(ConstIsize::Is32(value as i32)))
|
|
|
|
|
}
|
2016-02-12 17:35:44 +00:00
|
|
|
|
LitKind::Float(ref is, ty) => Constant::Float(is.to_string(), ty.into()),
|
2016-02-15 16:00:06 +00:00
|
|
|
|
LitKind::FloatUnsuffixed(ref is) => Constant::Float(is.to_string(), FloatWidth::Any),
|
2016-02-12 17:35:44 +00:00
|
|
|
|
LitKind::Bool(b) => Constant::Bool(b),
|
2015-08-12 11:49:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-17 14:45:50 +00:00
|
|
|
|
fn constant_not(o: Constant) -> Option<Constant> {
|
2016-02-03 14:39:22 +00:00
|
|
|
|
use self::Constant::*;
|
|
|
|
|
match o {
|
|
|
|
|
Bool(b) => Some(Bool(!b)),
|
2016-03-16 11:38:26 +00:00
|
|
|
|
Int(value) => (!value).ok().map(Int),
|
2016-02-03 14:39:22 +00:00
|
|
|
|
_ => None,
|
|
|
|
|
}
|
2015-08-17 14:45:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-08-13 07:25:44 +00:00
|
|
|
|
fn constant_negate(o: Constant) -> Option<Constant> {
|
2016-02-03 14:39:22 +00:00
|
|
|
|
use self::Constant::*;
|
|
|
|
|
match o {
|
2016-03-16 11:38:26 +00:00
|
|
|
|
Int(value) => (-value).ok().map(Int),
|
2016-02-03 14:39:22 +00:00
|
|
|
|
Float(is, ty) => Some(Float(neg_float_str(is), ty)),
|
|
|
|
|
_ => None,
|
|
|
|
|
}
|
2015-08-13 07:25:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-08-14 15:14:54 +00:00
|
|
|
|
fn neg_float_str(s: String) -> String {
|
|
|
|
|
if s.starts_with('-') {
|
|
|
|
|
s[1..].to_owned()
|
2015-08-12 11:49:28 +00:00
|
|
|
|
} else {
|
2015-08-25 12:41:35 +00:00
|
|
|
|
format!("-{}", s)
|
2015-08-12 11:49:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-08-13 07:25:44 +00:00
|
|
|
|
|
2015-09-19 02:53:04 +00:00
|
|
|
|
pub fn constant(lcx: &LateContext, e: &Expr) -> Option<(Constant, bool)> {
|
2016-01-04 04:26:12 +00:00
|
|
|
|
let mut cx = ConstEvalLateContext {
|
|
|
|
|
lcx: Some(lcx),
|
|
|
|
|
needed_resolution: false,
|
|
|
|
|
};
|
2015-08-17 15:51:30 +00:00
|
|
|
|
cx.expr(e).map(|cst| (cst, cx.needed_resolution))
|
2015-08-13 07:25:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-08-17 15:51:30 +00:00
|
|
|
|
pub fn constant_simple(e: &Expr) -> Option<Constant> {
|
2016-01-04 04:26:12 +00:00
|
|
|
|
let mut cx = ConstEvalLateContext {
|
|
|
|
|
lcx: None,
|
|
|
|
|
needed_resolution: false,
|
|
|
|
|
};
|
2015-08-17 15:51:30 +00:00
|
|
|
|
cx.expr(e)
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-19 02:53:04 +00:00
|
|
|
|
struct ConstEvalLateContext<'c, 'cc: 'c> {
|
|
|
|
|
lcx: Option<&'c LateContext<'c, 'cc>>,
|
2016-01-04 04:26:12 +00:00
|
|
|
|
needed_resolution: bool,
|
2015-08-17 15:51:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-09-19 02:53:04 +00:00
|
|
|
|
impl<'c, 'cc> ConstEvalLateContext<'c, 'cc> {
|
2015-08-17 15:51:30 +00:00
|
|
|
|
/// simple constant folding: Insert an expression, get a constant or none.
|
|
|
|
|
fn expr(&mut self, e: &Expr) -> Option<Constant> {
|
2015-08-17 17:55:59 +00:00
|
|
|
|
match e.node {
|
|
|
|
|
ExprPath(_, _) => self.fetch_path(e),
|
|
|
|
|
ExprBlock(ref block) => self.block(block),
|
2016-01-04 04:26:12 +00:00
|
|
|
|
ExprIf(ref cond, ref then, ref otherwise) => self.ifthenelse(cond, then, otherwise),
|
2015-08-17 17:55:59 +00:00
|
|
|
|
ExprLit(ref lit) => Some(lit_to_constant(&lit.node)),
|
2016-02-01 11:51:33 +00:00
|
|
|
|
ExprVec(ref vec) => self.multi(vec).map(Constant::Vec),
|
|
|
|
|
ExprTup(ref tup) => self.multi(tup).map(Constant::Tuple),
|
2016-01-04 04:26:12 +00:00
|
|
|
|
ExprRepeat(ref value, ref number) => {
|
2016-02-01 11:51:33 +00:00
|
|
|
|
self.binop_apply(value, number, |v, n| Some(Constant::Repeat(Box::new(v), n.as_u64() as usize)))
|
2016-01-04 04:26:12 +00: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 15:51:30 +00:00
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-18 10:26:01 +00:00
|
|
|
|
/// create `Some(Vec![..])` of all constants, unless there is any
|
2015-08-17 15:51:30 +00:00
|
|
|
|
/// non-constant part
|
2016-01-04 04:26:12 +00: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 15:51:30 +00: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 07:31:54 +00:00
|
|
|
|
let mut maybe_id = None;
|
2016-04-14 18:14:03 +00:00
|
|
|
|
if let Some(&PathResolution { base_def: Def::Const(id), .. }) = lcx.tcx.def_map.borrow().get(&e.id) {
|
2015-08-22 07:31:54 +00:00
|
|
|
|
maybe_id = Some(id);
|
|
|
|
|
}
|
2016-01-18 12:09:46 +00:00
|
|
|
|
// separate if lets to avoid double borrowing the def_map
|
2015-08-22 07:31:54 +00:00
|
|
|
|
if let Some(id) = maybe_id {
|
2016-03-20 20:24:18 +00:00
|
|
|
|
if let Some((const_expr, _ty)) = lookup_const_by_id(lcx.tcx, id, None) {
|
2015-08-17 15:51:30 +00: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 17:55:59 +00:00
|
|
|
|
block.expr.as_ref().and_then(|ref b| self.expr(b))
|
2016-01-04 04:26:12 +00:00
|
|
|
|
} else {
|
|
|
|
|
None
|
|
|
|
|
}
|
2015-08-17 15:51:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-04 04:26:12 +00:00
|
|
|
|
fn ifthenelse(&mut self, cond: &Expr, then: &Block, otherwise: &Option<P<Expr>>) -> Option<Constant> {
|
2016-02-01 11:51:33 +00:00
|
|
|
|
if let Some(Constant::Bool(b)) = self.expr(cond) {
|
2015-08-17 15:51:30 +00:00
|
|
|
|
if b {
|
|
|
|
|
self.block(then)
|
2015-08-14 15:14:54 +00:00
|
|
|
|
} else {
|
2015-08-25 12:41:35 +00:00
|
|
|
|
otherwise.as_ref().and_then(|expr| self.expr(expr))
|
2015-08-14 15:14:54 +00:00
|
|
|
|
}
|
2016-01-04 04:26:12 +00:00
|
|
|
|
} else {
|
|
|
|
|
None
|
|
|
|
|
}
|
2015-08-17 15:51:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn binop(&mut self, op: BinOp, left: &Expr, right: &Expr) -> Option<Constant> {
|
2016-04-14 18:14:03 +00:00
|
|
|
|
let l = if let Some(l) = self.expr(left) {
|
|
|
|
|
l
|
|
|
|
|
} else {
|
|
|
|
|
return None;
|
|
|
|
|
};
|
2016-03-16 11:38:26 +00:00
|
|
|
|
let r = self.expr(right);
|
|
|
|
|
match (op.node, l, r) {
|
|
|
|
|
(BiAdd, Constant::Int(l), Some(Constant::Int(r))) => (l + r).ok().map(Constant::Int),
|
|
|
|
|
(BiSub, Constant::Int(l), Some(Constant::Int(r))) => (l - r).ok().map(Constant::Int),
|
|
|
|
|
(BiMul, Constant::Int(l), Some(Constant::Int(r))) => (l * r).ok().map(Constant::Int),
|
|
|
|
|
(BiDiv, Constant::Int(l), Some(Constant::Int(r))) => (l / r).ok().map(Constant::Int),
|
|
|
|
|
(BiRem, Constant::Int(l), Some(Constant::Int(r))) => (l % r).ok().map(Constant::Int),
|
|
|
|
|
(BiAnd, Constant::Bool(false), _) => Some(Constant::Bool(false)),
|
|
|
|
|
(BiAnd, Constant::Bool(true), Some(r)) => Some(r),
|
|
|
|
|
(BiOr, Constant::Bool(true), _) => Some(Constant::Bool(true)),
|
|
|
|
|
(BiOr, Constant::Bool(false), Some(r)) => Some(r),
|
|
|
|
|
(BiBitXor, Constant::Bool(l), Some(Constant::Bool(r))) => Some(Constant::Bool(l ^ r)),
|
|
|
|
|
(BiBitXor, Constant::Int(l), Some(Constant::Int(r))) => (l ^ r).ok().map(Constant::Int),
|
|
|
|
|
(BiBitAnd, Constant::Bool(l), Some(Constant::Bool(r))) => Some(Constant::Bool(l & r)),
|
|
|
|
|
(BiBitAnd, Constant::Int(l), Some(Constant::Int(r))) => (l & r).ok().map(Constant::Int),
|
|
|
|
|
(BiBitOr, Constant::Bool(l), Some(Constant::Bool(r))) => Some(Constant::Bool(l | r)),
|
|
|
|
|
(BiBitOr, Constant::Int(l), Some(Constant::Int(r))) => (l | r).ok().map(Constant::Int),
|
|
|
|
|
(BiShl, Constant::Int(l), Some(Constant::Int(r))) => (l << r).ok().map(Constant::Int),
|
|
|
|
|
(BiShr, Constant::Int(l), Some(Constant::Int(r))) => (l >> r).ok().map(Constant::Int),
|
|
|
|
|
(BiEq, Constant::Int(l), Some(Constant::Int(r))) => Some(Constant::Bool(l == r)),
|
|
|
|
|
(BiNe, Constant::Int(l), Some(Constant::Int(r))) => Some(Constant::Bool(l != r)),
|
|
|
|
|
(BiLt, Constant::Int(l), Some(Constant::Int(r))) => Some(Constant::Bool(l < r)),
|
|
|
|
|
(BiLe, Constant::Int(l), Some(Constant::Int(r))) => Some(Constant::Bool(l <= r)),
|
|
|
|
|
(BiGe, Constant::Int(l), Some(Constant::Int(r))) => Some(Constant::Bool(l >= r)),
|
|
|
|
|
(BiGt, Constant::Int(l), Some(Constant::Int(r))) => Some(Constant::Bool(l > r)),
|
2016-01-04 04:26:12 +00:00
|
|
|
|
_ => None,
|
2015-08-17 15:51:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-01 09:13:54 +00:00
|
|
|
|
|
2015-08-17 15:51:30 +00:00
|
|
|
|
fn binop_apply<F>(&mut self, left: &Expr, right: &Expr, op: F) -> Option<Constant>
|
2016-01-04 04:26:12 +00:00
|
|
|
|
where F: Fn(Constant, Constant) -> Option<Constant>
|
|
|
|
|
{
|
2015-08-17 15:51:30 +00:00
|
|
|
|
if let (Some(lc), Some(rc)) = (self.expr(left), self.expr(right)) {
|
|
|
|
|
op(lc, rc)
|
2016-01-04 04:26:12 +00:00
|
|
|
|
} else {
|
|
|
|
|
None
|
|
|
|
|
}
|
2015-08-17 15:51:30 +00:00
|
|
|
|
}
|
2016-02-12 17:35:44 +00:00
|
|
|
|
}
|