]> git.lizzy.rs Git - rust.git/blob - crates/hir_ty/src/consteval.rs
clippy::redundant_closure
[rust.git] / crates / hir_ty / src / consteval.rs
1 //! Constant evaluation details
2
3 use std::convert::TryInto;
4
5 use hir_def::{
6     builtin_type::BuiltinUint,
7     expr::{Expr, Literal},
8     type_ref::ConstScalar,
9 };
10
11 use crate::{Const, ConstData, ConstValue, Interner, TyKind};
12
13 /// Extension trait for [`Const`]
14 pub trait ConstExt {
15     /// Is a [`Const`] unknown?
16     fn is_unknown(&self) -> bool;
17 }
18
19 impl ConstExt for Const {
20     fn is_unknown(&self) -> bool {
21         match self.data(&Interner).value {
22             // interned Unknown
23             chalk_ir::ConstValue::Concrete(chalk_ir::ConcreteConst {
24                 interned: ConstScalar::Unknown,
25             }) => true,
26
27             // interned concrete anything else
28             chalk_ir::ConstValue::Concrete(..) => false,
29
30             _ => {
31                 log::error!("is_unknown was called on a non-concrete constant value! {:?}", self);
32                 true
33             }
34         }
35     }
36 }
37
38 // FIXME: support more than just evaluating literals
39 pub fn eval_usize(expr: &Expr) -> Option<u64> {
40     match expr {
41         Expr::Literal(Literal::Uint(v, None))
42         | Expr::Literal(Literal::Uint(v, Some(BuiltinUint::Usize))) => (*v).try_into().ok(),
43         _ => None,
44     }
45 }
46
47 /// Interns a possibly-unknown target usize
48 pub fn usize_const(value: Option<u64>) -> Const {
49     ConstData {
50         ty: TyKind::Scalar(chalk_ir::Scalar::Uint(chalk_ir::UintTy::Usize)).intern(&Interner),
51         value: ConstValue::Concrete(chalk_ir::ConcreteConst {
52             interned: value.map(ConstScalar::Usize).unwrap_or(ConstScalar::Unknown),
53         }),
54     }
55     .intern(&Interner)
56 }