Struct rustc_mir_transform::promote_consts::Validator

source ·
struct Validator<'a, 'tcx> {
    ccx: &'a ConstCx<'a, 'tcx>,
    temps: &'a mut IndexSlice<Local, TempState>,
    promotion_safe_blocks: Option<FxHashSet<BasicBlock>>,
}
Expand description

Checks whether locals that appear in a promotion context (Candidate) are actually promotable.

This wraps an Item, and has access to all fields of that Item via Deref coercion.

Fields§

§ccx: &'a ConstCx<'a, 'tcx>§temps: &'a mut IndexSlice<Local, TempState>§promotion_safe_blocks: Option<FxHashSet<BasicBlock>>

For backwards compatibility, we are promoting function calls in const/static initializers. But we want to avoid evaluating code that might panic and that otherwise would not have been evaluated, so we only promote such calls in basic blocks that are guaranteed to execute. In other words, we only promote such calls in basic blocks that are definitely not dead code. Here we cache the result of computing that set of basic blocks.

Implementations§

source§

impl<'tcx> Validator<'_, 'tcx>

source

fn validate_candidate( &mut self, candidate: Candidate ) -> Result<(), Unpromotable>

source

fn qualif_local<Q: Qualif>(&mut self, local: Local) -> bool

source

fn validate_local(&mut self, local: Local) -> Result<(), Unpromotable>

source

fn validate_place(&mut self, place: PlaceRef<'tcx>) -> Result<(), Unpromotable>

source

fn validate_operand( &mut self, operand: &Operand<'tcx> ) -> Result<(), Unpromotable>

source

fn validate_ref( &mut self, kind: BorrowKind, place: &Place<'tcx> ) -> Result<(), Unpromotable>

source

fn validate_rvalue(&mut self, rvalue: &Rvalue<'tcx>) -> Result<(), Unpromotable>

source

fn promotion_safe_blocks(body: &Body<'tcx>) -> FxHashSet<BasicBlock>

Computes the sets of blocks of this MIR that are definitely going to be executed if the function returns successfully. That makes it safe to promote calls in them that might fail.

source

fn is_promotion_safe_block(&mut self, block: BasicBlock) -> bool

Returns whether the block is “safe” for promotion, which means it cannot be dead code. We use this to avoid promoting operations that can fail in dead code.

source

fn validate_call( &mut self, callee: &Operand<'tcx>, args: &[Spanned<Operand<'tcx>>], block: BasicBlock ) -> Result<(), Unpromotable>

Methods from Deref<Target = ConstCx<'a, 'tcx>>§

source

pub fn def_id(&self) -> LocalDefId

source

pub fn const_kind(&self) -> ConstContext

Returns the kind of const context this Item represents (const, static, etc.).

Panics if this Item is not const.

source

pub fn is_const_stable_const_fn(&self) -> bool

source

pub fn fn_sig(&self) -> Binder<'tcx, FnSig<'tcx>>

Trait Implementations§

source§

impl<'a, 'tcx> Deref for Validator<'a, 'tcx>

§

type Target = ConstCx<'a, 'tcx>

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.

Auto Trait Implementations§

§

impl<'a, 'tcx> DynSend for Validator<'a, 'tcx>

§

impl<'a, 'tcx> DynSync for Validator<'a, 'tcx>

§

impl<'a, 'tcx> Freeze for Validator<'a, 'tcx>

§

impl<'a, 'tcx> !RefUnwindSafe for Validator<'a, 'tcx>

§

impl<'a, 'tcx> !Send for Validator<'a, 'tcx>

§

impl<'a, 'tcx> !Sync for Validator<'a, 'tcx>

§

impl<'a, 'tcx> Unpin for Validator<'a, 'tcx>

§

impl<'a, 'tcx> !UnwindSafe for Validator<'a, 'tcx>

Blanket Implementations§

source§

impl<T> Aligned for T

source§

const ALIGN: Alignment = _

Alignment of Self.
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, R> CollectAndApply<T, R> for T

source§

fn collect_and_apply<I, F>(iter: I, f: F) -> R
where I: Iterator<Item = T>, F: FnOnce(&[T]) -> R,

Equivalent to f(&iter.collect::<Vec<_>>()).

§

type Output = R

source§

impl<T> Filterable for T

source§

fn filterable( self, filter_name: &'static str ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>

Creates a filterable data provider with the given name for debugging. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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<P> IntoQueryParam<P> for P

source§

impl<T> MaybeResult<T> for T

§

type Error = !

source§

fn from(_: Result<T, <T as MaybeResult<T>>::Error>) -> T

source§

fn to_result(self) -> Result<T, <T as MaybeResult<T>>::Error>

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<'tcx, T> ToPredicate<'tcx, T> for T

source§

fn to_predicate(self, _tcx: TyCtxt<'tcx>) -> T

source§

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

§

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>,

§

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.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<Tcx, T> Value<Tcx> for T
where Tcx: DepContext,

source§

default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed ) -> T

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<'a, T> Captures<'a> for T
where T: ?Sized,

source§

impl<'a, T> Captures<'a> for T
where T: ?Sized,

source§

impl<T> ErasedDestructor for T
where T: 'static,

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: 56 bytes