Struct clippy_utils::consts::ConstEvalCtxt

source ·
pub struct ConstEvalCtxt<'tcx> {
    tcx: TyCtxt<'tcx>,
    param_env: ParamEnv<'tcx>,
    typeck: &'tcx TypeckResults<'tcx>,
    source: Cell<ConstantSource>,
}
Expand description

The context required to evaluate a constant expression.

This is currently limited to constant folding and reading the value of named constants.

Fields§

§tcx: TyCtxt<'tcx>§param_env: ParamEnv<'tcx>§typeck: &'tcx TypeckResults<'tcx>§source: Cell<ConstantSource>

Implementations§

source§

impl<'tcx> ConstEvalCtxt<'tcx>

source

pub fn new(cx: &LateContext<'tcx>) -> Self

Creates the evaluation context from the lint context. This requires the lint context to be in a body (i.e. cx.enclosing_body.is_some()).

source

pub fn with_env( tcx: TyCtxt<'tcx>, param_env: ParamEnv<'tcx>, typeck: &'tcx TypeckResults<'tcx>, ) -> Self

Creates an evaluation context.

source

pub fn eval_with_source( &self, e: &Expr<'_>, ) -> Option<(Constant<'tcx>, ConstantSource)>

Attempts to evaluate the expression and returns both the value and whether it’s dependant on other items.

source

pub fn eval(&self, e: &Expr<'_>) -> Option<Constant<'tcx>>

Attempts to evaluate the expression.

source

pub fn eval_simple(&self, e: &Expr<'_>) -> Option<Constant<'tcx>>

Attempts to evaluate the expression without accessing other items.

source

pub fn eval_full_int(&self, e: &Expr<'_>) -> Option<FullInt>

Attempts to evaluate the expression as an integer without accessing other items.

source

fn expr(&self, e: &Expr<'_>) -> Option<Constant<'tcx>>

Simple constant folding: Insert an expression, get a constant or none.

source

pub fn eval_is_empty(&self, e: &Expr<'_>) -> Option<bool>

Simple constant folding to determine if an expression is an empty slice, str, array, … None will be returned if the constness cannot be determined, or if the resolution leaves the local crate.

source

fn constant_not(&self, o: &Constant<'tcx>, ty: Ty<'_>) -> Option<Constant<'tcx>>

source

fn constant_negate( &self, o: &Constant<'tcx>, ty: Ty<'_>, ) -> Option<Constant<'tcx>>

source

fn multi(&self, vec: &[Expr<'_>]) -> Option<Vec<Constant<'tcx>>>

Create Some(Vec![..]) of all constants, unless there is any non-constant part.

source

fn fetch_path_and_apply<T, F>( &self, qpath: &QPath<'_>, id: HirId, ty: Ty<'tcx>, f: F, ) -> Option<T>
where F: FnOnce(&Self, Const<'tcx>) -> Option<T>,

Lookup a possibly constant expression from an ExprKind::Path and apply a function on it.

source

fn index(&self, lhs: &Expr<'_>, index: &Expr<'_>) -> Option<Constant<'tcx>>

source

fn block(&self, block: &Block<'_>) -> Option<Constant<'tcx>>

A block can only yield a constant if it has exactly one constant expression.

source

fn ifthenelse( &self, cond: &Expr<'_>, then: &Expr<'_>, otherwise: Option<&Expr<'_>>, ) -> Option<Constant<'tcx>>

source

fn binop( &self, op: BinOp, left: &Expr<'_>, right: &Expr<'_>, ) -> Option<Constant<'tcx>>

Auto Trait Implementations§

§

impl<'tcx> !Freeze for ConstEvalCtxt<'tcx>

§

impl<'tcx> !RefUnwindSafe for ConstEvalCtxt<'tcx>

§

impl<'tcx> !Send for ConstEvalCtxt<'tcx>

§

impl<'tcx> !Sync for ConstEvalCtxt<'tcx>

§

impl<'tcx> Unpin for ConstEvalCtxt<'tcx>

§

impl<'tcx> !UnwindSafe for ConstEvalCtxt<'tcx>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 32 bytes