2018-08-01 20:48:41 +00:00
|
|
|
|
#![allow(clippy::float_cmp)]
|
2015-08-26 23:10:01 +00:00
|
|
|
|
|
2019-05-11 02:37:37 +00:00
|
|
|
|
use crate::utils::{clip, higher, sext, unsext};
|
2019-02-01 04:32:16 +00:00
|
|
|
|
use if_chain::if_chain;
|
2020-03-01 03:23:33 +00:00
|
|
|
|
use rustc_ast::ast::{FloatTy, LitFloatType, LitKind};
|
2019-01-03 17:17:43 +00:00
|
|
|
|
use rustc_data_structures::sync::Lrc;
|
2020-01-06 16:39:50 +00:00
|
|
|
|
use rustc_hir::def::{DefKind, Res};
|
2020-02-21 08:39:38 +00:00
|
|
|
|
use rustc_hir::{BinOp, BinOpKind, Block, Expr, ExprKind, HirId, QPath, UnOp};
|
2020-01-12 06:08:41 +00:00
|
|
|
|
use rustc_lint::LateContext;
|
2020-03-30 09:02:14 +00:00
|
|
|
|
use rustc_middle::ty::subst::{Subst, SubstsRef};
|
|
|
|
|
use rustc_middle::ty::{self, Ty, TyCtxt};
|
|
|
|
|
use rustc_middle::{bug, span_bug};
|
2019-12-31 00:17:56 +00:00
|
|
|
|
use rustc_span::symbol::Symbol;
|
2016-03-16 11:38:26 +00:00
|
|
|
|
use std::cmp::Ordering::{self, Equal};
|
2018-10-09 04:40:21 +00:00
|
|
|
|
use std::convert::TryInto;
|
2016-02-12 14:51:55 +00:00
|
|
|
|
use std::hash::{Hash, Hasher};
|
2015-09-17 00:01:41 +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 {
|
2019-01-31 01:15:29 +00:00
|
|
|
|
/// A `String` (e.g., "abc").
|
2018-03-13 10:38:11 +00:00
|
|
|
|
Str(String),
|
2019-01-31 01:15:29 +00:00
|
|
|
|
/// A binary string (e.g., `b"abc"`).
|
2019-01-03 17:17:43 +00:00
|
|
|
|
Binary(Lrc<Vec<u8>>),
|
2019-01-31 01:15:29 +00:00
|
|
|
|
/// A single `char` (e.g., `'a'`).
|
2016-02-01 11:51:33 +00:00
|
|
|
|
Char(char),
|
2019-01-31 01:15:29 +00:00
|
|
|
|
/// An integer's bit representation.
|
2018-03-13 10:38:11 +00:00
|
|
|
|
Int(u128),
|
2019-01-31 01:15:29 +00:00
|
|
|
|
/// An `f32`.
|
2018-03-13 10:38:11 +00:00
|
|
|
|
F32(f32),
|
2019-01-31 01:15:29 +00:00
|
|
|
|
/// An `f64`.
|
2018-03-13 10:38:11 +00:00
|
|
|
|
F64(f64),
|
2019-01-31 01:15:29 +00:00
|
|
|
|
/// `true` or `false`.
|
2016-02-01 11:51:33 +00:00
|
|
|
|
Bool(bool),
|
2019-01-31 01:15:29 +00:00
|
|
|
|
/// An array of constants.
|
2016-02-01 11:51:33 +00:00
|
|
|
|
Vec(Vec<Constant>),
|
2019-01-31 01:15:29 +00:00
|
|
|
|
/// Also an array, but with only one constant, repeated N times.
|
2017-09-13 13:34:04 +00:00
|
|
|
|
Repeat(Box<Constant>, u64),
|
2019-01-31 01:15:29 +00:00
|
|
|
|
/// A tuple of constants.
|
2016-02-01 11:51:33 +00:00
|
|
|
|
Tuple(Vec<Constant>),
|
2019-03-26 14:12:14 +00:00
|
|
|
|
/// A raw pointer.
|
|
|
|
|
RawPtr(u128),
|
2019-01-31 01:15:29 +00:00
|
|
|
|
/// A literal with syntax error.
|
2019-01-20 20:54:04 +00:00
|
|
|
|
Err(Symbol),
|
2015-08-12 11:49:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-08-17 15:51:30 +00:00
|
|
|
|
impl PartialEq for Constant {
|
2017-08-21 11:32:12 +00:00
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
2015-08-17 11:18:14 +00:00
|
|
|
|
match (self, other) {
|
2019-07-31 00:25:35 +00:00
|
|
|
|
(&Self::Str(ref ls), &Self::Str(ref rs)) => ls == rs,
|
|
|
|
|
(&Self::Binary(ref l), &Self::Binary(ref r)) => l == r,
|
|
|
|
|
(&Self::Char(l), &Self::Char(r)) => l == r,
|
|
|
|
|
(&Self::Int(l), &Self::Int(r)) => l == r,
|
|
|
|
|
(&Self::F64(l), &Self::F64(r)) => {
|
2019-01-31 01:15:29 +00:00
|
|
|
|
// We want `Fw32 == FwAny` and `FwAny == Fw64`, and by transitivity we must have
|
|
|
|
|
// `Fw32 == Fw64`, so don’t compare them.
|
|
|
|
|
// `to_bits` is required to catch non-matching 0.0, -0.0, and NaNs.
|
2018-12-28 23:40:48 +00:00
|
|
|
|
l.to_bits() == r.to_bits()
|
2016-12-20 17:21:30 +00:00
|
|
|
|
},
|
2019-07-31 00:25:35 +00:00
|
|
|
|
(&Self::F32(l), &Self::F32(r)) => {
|
2019-01-31 01:15:29 +00:00
|
|
|
|
// We want `Fw32 == FwAny` and `FwAny == Fw64`, and by transitivity we must have
|
|
|
|
|
// `Fw32 == Fw64`, so don’t compare them.
|
|
|
|
|
// `to_bits` is required to catch non-matching 0.0, -0.0, and NaNs.
|
2018-12-28 23:40:48 +00:00
|
|
|
|
f64::from(l).to_bits() == f64::from(r).to_bits()
|
2016-12-20 17:21:30 +00:00
|
|
|
|
},
|
2019-07-31 00:25:35 +00:00
|
|
|
|
(&Self::Bool(l), &Self::Bool(r)) => l == r,
|
2019-08-01 05:09:57 +00:00
|
|
|
|
(&Self::Vec(ref l), &Self::Vec(ref r)) | (&Self::Tuple(ref l), &Self::Tuple(ref r)) => l == r,
|
2019-07-31 00:25:35 +00:00
|
|
|
|
(&Self::Repeat(ref lv, ref ls), &Self::Repeat(ref rv, ref rs)) => ls == rs && lv == rv,
|
2019-01-31 01:15:29 +00:00
|
|
|
|
// TODO: are there inter-type equalities?
|
|
|
|
|
_ => false,
|
2015-08-17 11:18:14 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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)
|
2017-08-09 07:30:56 +00:00
|
|
|
|
where
|
|
|
|
|
H: Hasher,
|
2016-02-24 16:38:57 +00:00
|
|
|
|
{
|
2019-05-07 12:48:00 +00:00
|
|
|
|
std::mem::discriminant(self).hash(state);
|
2016-02-12 14:51:55 +00:00
|
|
|
|
match *self {
|
2019-07-31 00:25:35 +00:00
|
|
|
|
Self::Str(ref s) => {
|
2016-02-12 14:51:55 +00:00
|
|
|
|
s.hash(state);
|
2016-12-20 17:21:30 +00:00
|
|
|
|
},
|
2019-07-31 00:25:35 +00:00
|
|
|
|
Self::Binary(ref b) => {
|
2016-02-12 14:51:55 +00:00
|
|
|
|
b.hash(state);
|
2016-12-20 17:21:30 +00:00
|
|
|
|
},
|
2019-07-31 00:25:35 +00:00
|
|
|
|
Self::Char(c) => {
|
2016-02-12 14:51:55 +00:00
|
|
|
|
c.hash(state);
|
2016-12-20 17:21:30 +00:00
|
|
|
|
},
|
2019-07-31 00:25:35 +00:00
|
|
|
|
Self::Int(i) => {
|
2018-03-13 10:38:11 +00:00
|
|
|
|
i.hash(state);
|
2016-12-20 17:21:30 +00:00
|
|
|
|
},
|
2019-07-31 00:25:35 +00:00
|
|
|
|
Self::F32(f) => {
|
2018-12-28 23:40:48 +00:00
|
|
|
|
f64::from(f).to_bits().hash(state);
|
2018-03-13 10:38:11 +00:00
|
|
|
|
},
|
2019-07-31 00:25:35 +00:00
|
|
|
|
Self::F64(f) => {
|
2018-12-28 23:40:48 +00:00
|
|
|
|
f.to_bits().hash(state);
|
2016-12-20 17:21:30 +00:00
|
|
|
|
},
|
2019-07-31 00:25:35 +00:00
|
|
|
|
Self::Bool(b) => {
|
2016-02-12 14:51:55 +00:00
|
|
|
|
b.hash(state);
|
2016-12-20 17:21:30 +00:00
|
|
|
|
},
|
2019-07-31 00:25:35 +00:00
|
|
|
|
Self::Vec(ref v) | Self::Tuple(ref v) => {
|
2016-02-12 14:51:55 +00:00
|
|
|
|
v.hash(state);
|
2016-12-20 17:21:30 +00:00
|
|
|
|
},
|
2019-07-31 00:25:35 +00:00
|
|
|
|
Self::Repeat(ref c, l) => {
|
2016-02-12 14:51:55 +00:00
|
|
|
|
c.hash(state);
|
|
|
|
|
l.hash(state);
|
2016-12-20 17:21:30 +00:00
|
|
|
|
},
|
2019-07-31 00:25:35 +00:00
|
|
|
|
Self::RawPtr(u) => {
|
2019-03-26 14:12:14 +00:00
|
|
|
|
u.hash(state);
|
|
|
|
|
},
|
2019-07-31 00:25:35 +00:00
|
|
|
|
Self::Err(ref s) => {
|
2019-01-20 20:54:04 +00:00
|
|
|
|
s.hash(state);
|
|
|
|
|
},
|
2016-02-12 14:51:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-19 05:37:09 +00:00
|
|
|
|
impl Constant {
|
2019-06-14 16:47:48 +00:00
|
|
|
|
pub fn partial_cmp(tcx: TyCtxt<'_>, cmp_type: Ty<'_>, left: &Self, right: &Self) -> Option<Ordering> {
|
2018-06-19 05:37:09 +00:00
|
|
|
|
match (left, right) {
|
2019-07-31 00:25:35 +00:00
|
|
|
|
(&Self::Str(ref ls), &Self::Str(ref rs)) => Some(ls.cmp(rs)),
|
|
|
|
|
(&Self::Char(ref l), &Self::Char(ref r)) => Some(l.cmp(r)),
|
|
|
|
|
(&Self::Int(l), &Self::Int(r)) => {
|
2019-09-26 09:03:36 +00:00
|
|
|
|
if let ty::Int(int_ty) = cmp_type.kind {
|
2018-06-19 05:37:09 +00:00
|
|
|
|
Some(sext(tcx, l, int_ty).cmp(&sext(tcx, r, int_ty)))
|
|
|
|
|
} else {
|
|
|
|
|
Some(l.cmp(&r))
|
|
|
|
|
}
|
|
|
|
|
},
|
2019-07-31 00:25:35 +00:00
|
|
|
|
(&Self::F64(l), &Self::F64(r)) => l.partial_cmp(&r),
|
|
|
|
|
(&Self::F32(l), &Self::F32(r)) => l.partial_cmp(&r),
|
|
|
|
|
(&Self::Bool(ref l), &Self::Bool(ref r)) => Some(l.cmp(r)),
|
|
|
|
|
(&Self::Tuple(ref l), &Self::Tuple(ref r)) | (&Self::Vec(ref l), &Self::Vec(ref r)) => l
|
2018-06-19 05:37:09 +00:00
|
|
|
|
.iter()
|
|
|
|
|
.zip(r.iter())
|
2018-09-26 09:32:05 +00:00
|
|
|
|
.map(|(li, ri)| Self::partial_cmp(tcx, cmp_type, li, ri))
|
2018-06-19 05:37:09 +00:00
|
|
|
|
.find(|r| r.map_or(true, |o| o != Ordering::Equal))
|
|
|
|
|
.unwrap_or_else(|| Some(l.len().cmp(&r.len()))),
|
2019-07-31 00:25:35 +00:00
|
|
|
|
(&Self::Repeat(ref lv, ref ls), &Self::Repeat(ref rv, ref rs)) => {
|
2018-09-26 09:32:05 +00:00
|
|
|
|
match Self::partial_cmp(tcx, cmp_type, lv, rv) {
|
2018-06-19 05:37:09 +00:00
|
|
|
|
Some(Equal) => Some(ls.cmp(rs)),
|
|
|
|
|
x => x,
|
|
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
|
},
|
2019-01-31 01:15:29 +00:00
|
|
|
|
// TODO: are there any useful inter-type orderings?
|
|
|
|
|
_ => None,
|
2016-01-04 04:26:12 +00:00
|
|
|
|
}
|
2015-08-17 11:18:14 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
|
/// Parses a `LitKind` to a `Constant`.
|
2019-09-27 13:36:56 +00:00
|
|
|
|
pub fn lit_to_constant(lit: &LitKind, ty: Option<Ty<'_>>) -> Constant {
|
2015-08-18 12:18:36 +00:00
|
|
|
|
match *lit {
|
2018-03-13 10:38:11 +00:00
|
|
|
|
LitKind::Str(ref is, _) => Constant::Str(is.to_string()),
|
2018-03-15 15:07:15 +00:00
|
|
|
|
LitKind::Byte(b) => Constant::Int(u128::from(b)),
|
2019-01-03 17:17:43 +00:00
|
|
|
|
LitKind::ByteStr(ref s) => Constant::Binary(Lrc::clone(s)),
|
2016-02-12 17:35:44 +00:00
|
|
|
|
LitKind::Char(c) => Constant::Char(c),
|
2018-03-13 10:38:11 +00:00
|
|
|
|
LitKind::Int(n, _) => Constant::Int(n),
|
2019-11-07 12:27:00 +00:00
|
|
|
|
LitKind::Float(ref is, LitFloatType::Suffixed(fty)) => match fty {
|
|
|
|
|
FloatTy::F32 => Constant::F32(is.as_str().parse().unwrap()),
|
|
|
|
|
FloatTy::F64 => Constant::F64(is.as_str().parse().unwrap()),
|
|
|
|
|
},
|
|
|
|
|
LitKind::Float(ref is, LitFloatType::Unsuffixed) => match ty.expect("type of float is known").kind {
|
2018-08-22 21:34:52 +00:00
|
|
|
|
ty::Float(FloatTy::F32) => Constant::F32(is.as_str().parse().unwrap()),
|
|
|
|
|
ty::Float(FloatTy::F64) => Constant::F64(is.as_str().parse().unwrap()),
|
2017-09-05 09:33:04 +00:00
|
|
|
|
_ => bug!(),
|
2017-03-05 09:27:20 +00:00
|
|
|
|
},
|
2016-02-12 17:35:44 +00:00
|
|
|
|
LitKind::Bool(b) => Constant::Bool(b),
|
2019-01-20 20:54:04 +00:00
|
|
|
|
LitKind::Err(s) => Constant::Err(s),
|
2015-08-12 11:49:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-27 20:14:15 +00:00
|
|
|
|
pub fn constant<'c, 'cc>(
|
|
|
|
|
lcx: &LateContext<'c, 'cc>,
|
|
|
|
|
tables: &'c ty::TypeckTables<'cc>,
|
2019-12-27 07:12:26 +00:00
|
|
|
|
e: &Expr<'_>,
|
2018-11-27 20:14:15 +00:00
|
|
|
|
) -> Option<(Constant, bool)> {
|
2016-01-04 04:26:12 +00:00
|
|
|
|
let mut cx = ConstEvalLateContext {
|
2019-04-07 17:44:10 +00:00
|
|
|
|
lcx,
|
2018-05-13 11:16:31 +00:00
|
|
|
|
tables,
|
2017-07-31 10:37:38 +00:00
|
|
|
|
param_env: lcx.param_env,
|
2016-01-04 04:26:12 +00:00
|
|
|
|
needed_resolution: false,
|
2017-04-28 16:10:10 +00:00
|
|
|
|
substs: lcx.tcx.intern_substs(&[]),
|
2016-01-04 04:26:12 +00:00
|
|
|
|
};
|
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
|
|
|
|
}
|
|
|
|
|
|
2018-11-27 20:14:15 +00:00
|
|
|
|
pub fn constant_simple<'c, 'cc>(
|
|
|
|
|
lcx: &LateContext<'c, 'cc>,
|
|
|
|
|
tables: &'c ty::TypeckTables<'cc>,
|
2019-12-27 07:12:26 +00:00
|
|
|
|
e: &Expr<'_>,
|
2018-11-27 20:14:15 +00:00
|
|
|
|
) -> Option<Constant> {
|
2018-05-13 11:16:31 +00:00
|
|
|
|
constant(lcx, tables, e).and_then(|(cst, res)| if res { None } else { Some(cst) })
|
2015-08-17 15:51:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-26 14:12:14 +00:00
|
|
|
|
/// Creates a `ConstEvalLateContext` from the given `LateContext` and `TypeckTables`.
|
2018-11-27 20:14:15 +00:00
|
|
|
|
pub fn constant_context<'c, 'cc>(
|
2019-04-07 17:44:10 +00:00
|
|
|
|
lcx: &'c LateContext<'c, 'cc>,
|
2018-11-27 20:14:15 +00:00
|
|
|
|
tables: &'c ty::TypeckTables<'cc>,
|
|
|
|
|
) -> ConstEvalLateContext<'c, 'cc> {
|
2018-02-05 23:31:06 +00:00
|
|
|
|
ConstEvalLateContext {
|
2019-04-07 17:44:10 +00:00
|
|
|
|
lcx,
|
2018-02-05 23:31:06 +00:00
|
|
|
|
tables,
|
|
|
|
|
param_env: lcx.param_env,
|
|
|
|
|
needed_resolution: false,
|
|
|
|
|
substs: lcx.tcx.intern_substs(&[]),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-19 18:36:23 +00:00
|
|
|
|
pub struct ConstEvalLateContext<'a, 'tcx> {
|
2019-04-07 17:44:10 +00:00
|
|
|
|
lcx: &'a LateContext<'a, 'tcx>,
|
2017-03-01 17:46:18 +00:00
|
|
|
|
tables: &'a ty::TypeckTables<'tcx>,
|
2017-07-31 10:37:38 +00:00
|
|
|
|
param_env: ty::ParamEnv<'tcx>,
|
2016-01-04 04:26:12 +00:00
|
|
|
|
needed_resolution: bool,
|
2019-02-27 06:20:49 +00:00
|
|
|
|
substs: SubstsRef<'tcx>,
|
2015-08-17 15:51:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-09-19 02:53:04 +00:00
|
|
|
|
impl<'c, 'cc> ConstEvalLateContext<'c, 'cc> {
|
2019-03-26 14:12:14 +00:00
|
|
|
|
/// Simple constant folding: Insert an expression, get a constant or none.
|
2019-12-27 07:12:26 +00:00
|
|
|
|
pub fn expr(&mut self, e: &Expr<'_>) -> Option<Constant> {
|
2019-05-11 02:37:37 +00:00
|
|
|
|
if let Some((ref cond, ref then, otherwise)) = higher::if_block(&e) {
|
|
|
|
|
return self.ifthenelse(cond, then, otherwise);
|
|
|
|
|
}
|
2019-09-27 15:16:06 +00:00
|
|
|
|
match e.kind {
|
2020-02-18 22:33:19 +00:00
|
|
|
|
ExprKind::Path(ref qpath) => self.fetch_path(qpath, e.hir_id, self.tables.expr_ty(e)),
|
2018-07-12 07:30:57 +00:00
|
|
|
|
ExprKind::Block(ref block, _) => self.block(block),
|
2019-09-27 13:36:56 +00:00
|
|
|
|
ExprKind::Lit(ref lit) => Some(lit_to_constant(&lit.node, self.tables.expr_ty_opt(e))),
|
2018-07-12 07:30:57 +00:00
|
|
|
|
ExprKind::Array(ref vec) => self.multi(vec).map(Constant::Vec),
|
|
|
|
|
ExprKind::Tup(ref tup) => self.multi(tup).map(Constant::Tuple),
|
|
|
|
|
ExprKind::Repeat(ref value, _) => {
|
2019-09-26 09:03:36 +00:00
|
|
|
|
let n = match self.tables.expr_ty(e).kind {
|
2020-03-03 14:13:25 +00:00
|
|
|
|
ty::Array(_, n) => n.try_eval_usize(self.lcx.tcx, self.lcx.param_env)?,
|
2017-03-03 13:46:33 +00:00
|
|
|
|
_ => span_bug!(e.span, "typeck error"),
|
|
|
|
|
};
|
2018-09-06 13:57:32 +00:00
|
|
|
|
self.expr(value).map(|v| Constant::Repeat(Box::new(v), n))
|
2016-12-20 17:21:30 +00:00
|
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
|
ExprKind::Unary(op, ref operand) => self.expr(operand).and_then(|o| match op {
|
2020-01-06 16:39:50 +00:00
|
|
|
|
UnOp::UnNot => self.constant_not(&o, self.tables.expr_ty(e)),
|
|
|
|
|
UnOp::UnNeg => self.constant_negate(&o, self.tables.expr_ty(e)),
|
|
|
|
|
UnOp::UnDeref => Some(o),
|
2017-09-05 09:33:04 +00:00
|
|
|
|
}),
|
2018-07-12 07:30:57 +00:00
|
|
|
|
ExprKind::Binary(op, ref left, ref right) => self.binop(op, left, right),
|
2019-02-01 04:32:16 +00:00
|
|
|
|
ExprKind::Call(ref callee, ref args) => {
|
2019-03-26 14:12:14 +00:00
|
|
|
|
// We only handle a few const functions for now.
|
2019-02-01 04:32:16 +00:00
|
|
|
|
if_chain! {
|
|
|
|
|
if args.is_empty();
|
2019-09-27 15:16:06 +00:00
|
|
|
|
if let ExprKind::Path(qpath) = &callee.kind;
|
2019-05-04 00:03:12 +00:00
|
|
|
|
let res = self.tables.qpath_res(qpath, callee.hir_id);
|
|
|
|
|
if let Some(def_id) = res.opt_def_id();
|
2019-12-22 21:49:59 +00:00
|
|
|
|
let def_path: Vec<_> = self.lcx.get_def_path(def_id).into_iter().map(Symbol::as_str).collect();
|
2019-12-23 20:06:52 +00:00
|
|
|
|
let def_path: Vec<&str> = def_path.iter().take(4).map(|s| &**s).collect();
|
2019-12-22 21:49:59 +00:00
|
|
|
|
if let ["core", "num", int_impl, "max_value"] = *def_path;
|
2019-02-01 04:32:16 +00:00
|
|
|
|
then {
|
2019-12-22 21:49:59 +00:00
|
|
|
|
let value = match int_impl {
|
2019-02-01 04:32:16 +00:00
|
|
|
|
"<impl i8>" => i8::max_value() as u128,
|
|
|
|
|
"<impl i16>" => i16::max_value() as u128,
|
|
|
|
|
"<impl i32>" => i32::max_value() as u128,
|
|
|
|
|
"<impl i64>" => i64::max_value() as u128,
|
|
|
|
|
"<impl i128>" => i128::max_value() as u128,
|
|
|
|
|
_ => return None,
|
|
|
|
|
};
|
|
|
|
|
Some(Constant::Int(value))
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2019-03-26 14:12:14 +00:00
|
|
|
|
// TODO: add other expressions.
|
2015-08-17 15:51:30 +00:00
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-09 05:34:10 +00:00
|
|
|
|
#[allow(clippy::cast_possible_wrap)]
|
2019-03-18 11:43:10 +00:00
|
|
|
|
fn constant_not(&self, o: &Constant, ty: Ty<'_>) -> Option<Constant> {
|
2020-02-21 08:39:38 +00:00
|
|
|
|
use self::Constant::{Bool, Int};
|
2018-03-13 10:38:11 +00:00
|
|
|
|
match *o {
|
|
|
|
|
Bool(b) => Some(Bool(!b)),
|
|
|
|
|
Int(value) => {
|
2018-07-31 05:45:05 +00:00
|
|
|
|
let value = !value;
|
2019-09-26 09:03:36 +00:00
|
|
|
|
match ty.kind {
|
2019-04-07 17:44:10 +00:00
|
|
|
|
ty::Int(ity) => Some(Int(unsext(self.lcx.tcx, value as i128, ity))),
|
|
|
|
|
ty::Uint(ity) => Some(Int(clip(self.lcx.tcx, value, ity))),
|
2018-03-13 10:38:11 +00:00
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-18 11:43:10 +00:00
|
|
|
|
fn constant_negate(&self, o: &Constant, ty: Ty<'_>) -> Option<Constant> {
|
2020-02-21 08:39:38 +00:00
|
|
|
|
use self::Constant::{Int, F32, F64};
|
2018-03-15 15:07:15 +00:00
|
|
|
|
match *o {
|
2018-03-13 10:38:11 +00:00
|
|
|
|
Int(value) => {
|
2019-09-26 09:03:36 +00:00
|
|
|
|
let ity = match ty.kind {
|
2018-08-22 21:34:52 +00:00
|
|
|
|
ty::Int(ity) => ity,
|
2018-03-13 10:38:11 +00:00
|
|
|
|
_ => return None,
|
|
|
|
|
};
|
|
|
|
|
// sign extend
|
2019-04-07 17:44:10 +00:00
|
|
|
|
let value = sext(self.lcx.tcx, value, ity);
|
2018-03-13 10:38:11 +00:00
|
|
|
|
let value = value.checked_neg()?;
|
|
|
|
|
// clear unused bits
|
2019-04-07 17:44:10 +00:00
|
|
|
|
Some(Int(unsext(self.lcx.tcx, value, ity)))
|
2018-03-13 10:38:11 +00:00
|
|
|
|
},
|
|
|
|
|
F32(f) => Some(F32(-f)),
|
|
|
|
|
F64(f) => Some(F64(-f)),
|
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-26 14:12:14 +00:00
|
|
|
|
/// Create `Some(Vec![..])` of all constants, unless there is any
|
|
|
|
|
/// non-constant part.
|
2019-12-27 07:12:26 +00:00
|
|
|
|
fn multi(&mut self, vec: &[Expr<'_>]) -> Option<Vec<Constant>> {
|
2018-11-27 20:14:15 +00:00
|
|
|
|
vec.iter().map(|elem| self.expr(elem)).collect::<Option<_>>()
|
2015-08-17 15:51:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-02 15:19:30 +00:00
|
|
|
|
/// Lookup a possibly constant expression from a `ExprKind::Path`.
|
2020-02-18 22:33:19 +00:00
|
|
|
|
fn fetch_path(&mut self, qpath: &QPath<'_>, id: HirId, ty: Ty<'cc>) -> Option<Constant> {
|
2019-05-04 00:03:12 +00:00
|
|
|
|
let res = self.tables.qpath_res(qpath, id);
|
|
|
|
|
match res {
|
2020-03-16 06:23:03 +00:00
|
|
|
|
Res::Def(DefKind::Const | DefKind::AssocConst, def_id) => {
|
2017-06-02 04:13:04 +00:00
|
|
|
|
let substs = self.tables.node_substs(id);
|
2017-04-28 16:10:10 +00:00
|
|
|
|
let substs = if self.substs.is_empty() {
|
|
|
|
|
substs
|
|
|
|
|
} else {
|
2019-04-07 17:44:10 +00:00
|
|
|
|
substs.subst(self.lcx.tcx, self.substs)
|
2017-04-28 16:10:10 +00:00
|
|
|
|
};
|
2018-11-17 12:47:27 +00:00
|
|
|
|
|
2019-12-22 23:39:33 +00:00
|
|
|
|
let result = self
|
|
|
|
|
.lcx
|
|
|
|
|
.tcx
|
2020-01-11 18:41:54 +00:00
|
|
|
|
.const_eval_resolve(self.param_env, def_id, substs, None, None)
|
2020-02-18 22:33:19 +00:00
|
|
|
|
.ok()
|
2020-03-30 09:02:14 +00:00
|
|
|
|
.map(|val| rustc_middle::ty::Const::from_value(self.lcx.tcx, val, ty))?;
|
2019-05-26 14:47:26 +00:00
|
|
|
|
let result = miri_to_const(&result);
|
2019-05-04 00:03:12 +00:00
|
|
|
|
if result.is_some() {
|
2018-03-13 10:38:11 +00:00
|
|
|
|
self.needed_resolution = true;
|
2017-03-01 17:46:18 +00:00
|
|
|
|
}
|
2019-05-04 00:03:12 +00:00
|
|
|
|
result
|
2017-03-01 17:46:18 +00:00
|
|
|
|
},
|
2019-04-30 09:10:31 +00:00
|
|
|
|
// FIXME: cover all usable cases.
|
2019-03-26 14:12:14 +00:00
|
|
|
|
_ => None,
|
2015-08-17 15:51:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-26 14:12:14 +00:00
|
|
|
|
/// A block can only yield a constant if it only has one constant expression.
|
2019-12-27 07:12:26 +00:00
|
|
|
|
fn block(&mut self, block: &Block<'_>) -> Option<Constant> {
|
2015-08-17 15:51:30 +00:00
|
|
|
|
if block.stmts.is_empty() {
|
2016-08-01 14:59:14 +00:00
|
|
|
|
block.expr.as_ref().and_then(|b| self.expr(b))
|
2016-01-04 04:26:12 +00:00
|
|
|
|
} else {
|
|
|
|
|
None
|
|
|
|
|
}
|
2015-08-17 15:51:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-27 07:12:26 +00:00
|
|
|
|
fn ifthenelse(&mut self, cond: &Expr<'_>, then: &Expr<'_>, otherwise: Option<&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 {
|
2019-05-11 02:37:37 +00:00
|
|
|
|
self.expr(&*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
|
|
|
|
}
|
|
|
|
|
|
2019-12-27 07:12:26 +00:00
|
|
|
|
fn binop(&mut self, op: BinOp, left: &Expr<'_>, right: &Expr<'_>) -> Option<Constant> {
|
2018-03-13 10:38:11 +00:00
|
|
|
|
let l = self.expr(left)?;
|
2016-03-16 11:38:26 +00:00
|
|
|
|
let r = self.expr(right);
|
2018-03-13 10:38:11 +00:00
|
|
|
|
match (l, r) {
|
2019-09-26 09:03:36 +00:00
|
|
|
|
(Constant::Int(l), Some(Constant::Int(r))) => match self.tables.expr_ty(left).kind {
|
2018-11-27 20:14:15 +00:00
|
|
|
|
ty::Int(ity) => {
|
2019-04-07 17:44:10 +00:00
|
|
|
|
let l = sext(self.lcx.tcx, l, ity);
|
|
|
|
|
let r = sext(self.lcx.tcx, r, ity);
|
|
|
|
|
let zext = |n: i128| Constant::Int(unsext(self.lcx.tcx, n, ity));
|
2018-11-27 20:14:15 +00:00
|
|
|
|
match op.node {
|
|
|
|
|
BinOpKind::Add => l.checked_add(r).map(zext),
|
|
|
|
|
BinOpKind::Sub => l.checked_sub(r).map(zext),
|
|
|
|
|
BinOpKind::Mul => l.checked_mul(r).map(zext),
|
|
|
|
|
BinOpKind::Div if r != 0 => l.checked_div(r).map(zext),
|
|
|
|
|
BinOpKind::Rem if r != 0 => l.checked_rem(r).map(zext),
|
|
|
|
|
BinOpKind::Shr => l.checked_shr(r.try_into().expect("invalid shift")).map(zext),
|
|
|
|
|
BinOpKind::Shl => l.checked_shl(r.try_into().expect("invalid shift")).map(zext),
|
|
|
|
|
BinOpKind::BitXor => Some(zext(l ^ r)),
|
|
|
|
|
BinOpKind::BitOr => Some(zext(l | r)),
|
|
|
|
|
BinOpKind::BitAnd => Some(zext(l & r)),
|
|
|
|
|
BinOpKind::Eq => Some(Constant::Bool(l == r)),
|
|
|
|
|
BinOpKind::Ne => Some(Constant::Bool(l != r)),
|
|
|
|
|
BinOpKind::Lt => Some(Constant::Bool(l < r)),
|
|
|
|
|
BinOpKind::Le => Some(Constant::Bool(l <= r)),
|
|
|
|
|
BinOpKind::Ge => Some(Constant::Bool(l >= r)),
|
|
|
|
|
BinOpKind::Gt => Some(Constant::Bool(l > r)),
|
|
|
|
|
_ => None,
|
2018-03-13 10:38:11 +00:00
|
|
|
|
}
|
2018-11-27 20:14:15 +00:00
|
|
|
|
},
|
|
|
|
|
ty::Uint(_) => match op.node {
|
|
|
|
|
BinOpKind::Add => l.checked_add(r).map(Constant::Int),
|
|
|
|
|
BinOpKind::Sub => l.checked_sub(r).map(Constant::Int),
|
|
|
|
|
BinOpKind::Mul => l.checked_mul(r).map(Constant::Int),
|
|
|
|
|
BinOpKind::Div => l.checked_div(r).map(Constant::Int),
|
|
|
|
|
BinOpKind::Rem => l.checked_rem(r).map(Constant::Int),
|
|
|
|
|
BinOpKind::Shr => l.checked_shr(r.try_into().expect("shift too large")).map(Constant::Int),
|
|
|
|
|
BinOpKind::Shl => l.checked_shl(r.try_into().expect("shift too large")).map(Constant::Int),
|
|
|
|
|
BinOpKind::BitXor => Some(Constant::Int(l ^ r)),
|
|
|
|
|
BinOpKind::BitOr => Some(Constant::Int(l | r)),
|
|
|
|
|
BinOpKind::BitAnd => Some(Constant::Int(l & r)),
|
|
|
|
|
BinOpKind::Eq => Some(Constant::Bool(l == r)),
|
|
|
|
|
BinOpKind::Ne => Some(Constant::Bool(l != r)),
|
|
|
|
|
BinOpKind::Lt => Some(Constant::Bool(l < r)),
|
|
|
|
|
BinOpKind::Le => Some(Constant::Bool(l <= r)),
|
|
|
|
|
BinOpKind::Ge => Some(Constant::Bool(l >= r)),
|
|
|
|
|
BinOpKind::Gt => Some(Constant::Bool(l > r)),
|
2018-03-13 10:38:11 +00:00
|
|
|
|
_ => None,
|
2018-11-27 20:14:15 +00:00
|
|
|
|
},
|
|
|
|
|
_ => None,
|
2018-03-13 10:38:11 +00:00
|
|
|
|
},
|
|
|
|
|
(Constant::F32(l), Some(Constant::F32(r))) => match op.node {
|
2018-07-12 07:50:09 +00:00
|
|
|
|
BinOpKind::Add => Some(Constant::F32(l + r)),
|
|
|
|
|
BinOpKind::Sub => Some(Constant::F32(l - r)),
|
|
|
|
|
BinOpKind::Mul => Some(Constant::F32(l * r)),
|
|
|
|
|
BinOpKind::Div => Some(Constant::F32(l / r)),
|
|
|
|
|
BinOpKind::Rem => Some(Constant::F32(l % r)),
|
|
|
|
|
BinOpKind::Eq => Some(Constant::Bool(l == r)),
|
|
|
|
|
BinOpKind::Ne => Some(Constant::Bool(l != r)),
|
|
|
|
|
BinOpKind::Lt => Some(Constant::Bool(l < r)),
|
|
|
|
|
BinOpKind::Le => Some(Constant::Bool(l <= r)),
|
|
|
|
|
BinOpKind::Ge => Some(Constant::Bool(l >= r)),
|
|
|
|
|
BinOpKind::Gt => Some(Constant::Bool(l > r)),
|
2018-03-13 10:38:11 +00:00
|
|
|
|
_ => None,
|
|
|
|
|
},
|
|
|
|
|
(Constant::F64(l), Some(Constant::F64(r))) => match op.node {
|
2018-07-12 07:50:09 +00:00
|
|
|
|
BinOpKind::Add => Some(Constant::F64(l + r)),
|
|
|
|
|
BinOpKind::Sub => Some(Constant::F64(l - r)),
|
|
|
|
|
BinOpKind::Mul => Some(Constant::F64(l * r)),
|
|
|
|
|
BinOpKind::Div => Some(Constant::F64(l / r)),
|
|
|
|
|
BinOpKind::Rem => Some(Constant::F64(l % r)),
|
|
|
|
|
BinOpKind::Eq => Some(Constant::Bool(l == r)),
|
|
|
|
|
BinOpKind::Ne => Some(Constant::Bool(l != r)),
|
|
|
|
|
BinOpKind::Lt => Some(Constant::Bool(l < r)),
|
|
|
|
|
BinOpKind::Le => Some(Constant::Bool(l <= r)),
|
|
|
|
|
BinOpKind::Ge => Some(Constant::Bool(l >= r)),
|
|
|
|
|
BinOpKind::Gt => Some(Constant::Bool(l > r)),
|
2018-03-13 10:38:11 +00:00
|
|
|
|
_ => None,
|
|
|
|
|
},
|
|
|
|
|
(l, r) => match (op.node, l, r) {
|
2018-07-12 07:50:09 +00:00
|
|
|
|
(BinOpKind::And, Constant::Bool(false), _) => Some(Constant::Bool(false)),
|
|
|
|
|
(BinOpKind::Or, Constant::Bool(true), _) => Some(Constant::Bool(true)),
|
2018-11-27 20:14:15 +00:00
|
|
|
|
(BinOpKind::And, Constant::Bool(true), Some(r)) | (BinOpKind::Or, Constant::Bool(false), Some(r)) => {
|
|
|
|
|
Some(r)
|
|
|
|
|
},
|
2018-07-12 07:50:09 +00:00
|
|
|
|
(BinOpKind::BitXor, Constant::Bool(l), Some(Constant::Bool(r))) => Some(Constant::Bool(l ^ r)),
|
|
|
|
|
(BinOpKind::BitAnd, Constant::Bool(l), Some(Constant::Bool(r))) => Some(Constant::Bool(l & r)),
|
|
|
|
|
(BinOpKind::BitOr, Constant::Bool(l), Some(Constant::Bool(r))) => Some(Constant::Bool(l | r)),
|
2018-03-13 10:38:11 +00:00
|
|
|
|
_ => None,
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-26 14:47:26 +00:00
|
|
|
|
pub fn miri_to_const(result: &ty::Const<'_>) -> Option<Constant> {
|
2020-03-30 09:02:14 +00:00
|
|
|
|
use rustc_middle::mir::interpret::{ConstValue, Scalar};
|
2018-03-13 10:38:11 +00:00
|
|
|
|
match result.val {
|
2019-11-14 08:13:07 +00:00
|
|
|
|
ty::ConstKind::Value(ConstValue::Scalar(Scalar::Raw { data: d, .. })) => match result.ty.kind {
|
2019-05-28 18:47:16 +00:00
|
|
|
|
ty::Bool => Some(Constant::Bool(d == 1)),
|
|
|
|
|
ty::Uint(_) | ty::Int(_) => Some(Constant::Int(d)),
|
2018-10-09 04:40:21 +00:00
|
|
|
|
ty::Float(FloatTy::F32) => Some(Constant::F32(f32::from_bits(
|
2019-05-28 18:47:16 +00:00
|
|
|
|
d.try_into().expect("invalid f32 bit representation"),
|
2018-10-09 04:40:21 +00:00
|
|
|
|
))),
|
|
|
|
|
ty::Float(FloatTy::F64) => Some(Constant::F64(f64::from_bits(
|
2019-05-28 18:47:16 +00:00
|
|
|
|
d.try_into().expect("invalid f64 bit representation"),
|
2018-10-09 04:40:21 +00:00
|
|
|
|
))),
|
2019-03-26 14:12:14 +00:00
|
|
|
|
ty::RawPtr(type_and_mut) => {
|
2019-09-26 09:03:36 +00:00
|
|
|
|
if let ty::Uint(_) = type_and_mut.ty.kind {
|
2019-05-28 18:47:16 +00:00
|
|
|
|
return Some(Constant::RawPtr(d));
|
2019-03-26 14:12:14 +00:00
|
|
|
|
}
|
|
|
|
|
None
|
|
|
|
|
},
|
|
|
|
|
// FIXME: implement other conversions.
|
2018-03-13 10:38:11 +00:00
|
|
|
|
_ => None,
|
|
|
|
|
},
|
2019-11-14 08:13:07 +00:00
|
|
|
|
ty::ConstKind::Value(ConstValue::Slice { data, start, end }) => match result.ty.kind {
|
2019-09-26 09:03:36 +00:00
|
|
|
|
ty::Ref(_, tam, _) => match tam.kind {
|
2019-09-03 09:25:56 +00:00
|
|
|
|
ty::Str => String::from_utf8(
|
|
|
|
|
data.inspect_with_undef_and_ptr_outside_interpreter(start..end)
|
|
|
|
|
.to_owned(),
|
|
|
|
|
)
|
|
|
|
|
.ok()
|
|
|
|
|
.map(Constant::Str),
|
2018-03-13 10:38:11 +00:00
|
|
|
|
_ => None,
|
|
|
|
|
},
|
2016-01-04 04:26:12 +00:00
|
|
|
|
_ => None,
|
2018-11-27 20:14:15 +00:00
|
|
|
|
},
|
2020-03-19 14:53:02 +00:00
|
|
|
|
ty::ConstKind::Value(ConstValue::ByRef { alloc, offset: _ }) => match result.ty.kind {
|
|
|
|
|
ty::Array(sub_type, len) => match sub_type.kind {
|
|
|
|
|
ty::Float(FloatTy::F32) => match miri_to_const(len) {
|
|
|
|
|
Some(Constant::Int(len)) => alloc
|
|
|
|
|
.inspect_with_undef_and_ptr_outside_interpreter(0..(4 * len as usize))
|
|
|
|
|
.to_owned()
|
|
|
|
|
.chunks(4)
|
|
|
|
|
.map(|chunk| {
|
|
|
|
|
Some(Constant::F32(f32::from_le_bytes(
|
|
|
|
|
chunk.try_into().expect("this shouldn't happen"),
|
|
|
|
|
)))
|
|
|
|
|
})
|
|
|
|
|
.collect::<Option<Vec<Constant>>>()
|
|
|
|
|
.map(Constant::Vec),
|
|
|
|
|
_ => None,
|
|
|
|
|
},
|
|
|
|
|
ty::Float(FloatTy::F64) => match miri_to_const(len) {
|
|
|
|
|
Some(Constant::Int(len)) => alloc
|
|
|
|
|
.inspect_with_undef_and_ptr_outside_interpreter(0..(8 * len as usize))
|
|
|
|
|
.to_owned()
|
|
|
|
|
.chunks(8)
|
|
|
|
|
.map(|chunk| {
|
|
|
|
|
Some(Constant::F64(f64::from_le_bytes(
|
|
|
|
|
chunk.try_into().expect("this shouldn't happen"),
|
|
|
|
|
)))
|
|
|
|
|
})
|
|
|
|
|
.collect::<Option<Vec<Constant>>>()
|
|
|
|
|
.map(Constant::Vec),
|
|
|
|
|
_ => None,
|
|
|
|
|
},
|
|
|
|
|
// FIXME: implement other array type conversions.
|
|
|
|
|
_ => None,
|
|
|
|
|
},
|
|
|
|
|
_ => None,
|
|
|
|
|
},
|
2019-03-26 14:12:14 +00:00
|
|
|
|
// FIXME: implement other conversions.
|
2018-03-13 10:38:11 +00:00
|
|
|
|
_ => None,
|
2015-08-17 15:51:30 +00:00
|
|
|
|
}
|
2016-02-12 17:35:44 +00:00
|
|
|
|
}
|