pub enum MirPhase {
Built,
Analysis(AnalysisPhase),
Runtime(RuntimePhase),
}
Expand description
Represents the “flavors” of MIR.
All flavors of MIR use the same data structure, but there are some important differences. These differences come in two forms: Dialects and phases.
Dialects represent a stronger distinction than phases. This is because the transitions between
dialects are semantic changes, and therefore technically lowerings between distinct IRs. In
other words, the same Body
might be well-formed for multiple dialects, but
have different semantic meaning and different behavior at runtime.
Each dialect additionally has a number of phases. However, phase changes never involve semantic changes. If some MIR is well-formed both before and after a phase change, it is also guaranteed that it has the same semantic meaning. In this sense, phase changes can only add additional restrictions on what MIR is well-formed.
When adding phases, remember to update MirPhase::phase_index
.
Variants
Built
The MIR that is generated by MIR building.
The only things that operate on this dialect are unsafeck, the various MIR lints, and const qualifs.
This has no distinct phases.
Analysis(AnalysisPhase)
The MIR used for most analysis.
The only semantic change between analysis and built MIR is constant promotion. In built MIR, sequences of statements that would generally be subject to constant promotion are semantically constants, while in analysis MIR all constants are explicit.
The result of const promotion is available from the mir_promoted
and promoted_mir
queries.
This is the version of MIR used by borrowck and friends.
Runtime(RuntimePhase)
The MIR used for CTFE, optimizations, and codegen.
The semantic changes that occur in the lowering from analysis to runtime MIR are as follows:
- Drops: In analysis MIR,
Drop
terminators represent conditional drops; roughly speaking, if dataflow analysis determines that the place being dropped is uninitialized, the drop will not be executed. The exact semantics of this aren’t written down anywhere, which means they are essentially “what drop elaboration does.” In runtime MIR, the drops are unconditional; when aDrop
terminator is reached, if the type has drop glue that drop glue is always executed. This may be UB if the underlying place is not initialized. - Packed drops: Places might in general be misaligned - in most cases this is UB, the exception
is fields of packed structs. In analysis MIR,
Drop(P)
for aP
that might be misaligned for this reason implicitly movesP
to a temporary before dropping. Runtime MIR has no such rules, and dropping a misaligned place is simply UB. - Unwinding: in analysis MIR, unwinding from a function which may not unwind aborts. In runtime MIR, this is UB.
- Retags: If
-Zmir-emit-retag
is enabled, analysis MIR has “implicit” retags in the same way that Rust itself has them. Where exactly these are is generally subject to change, and so we don’t document this here. Runtime MIR has all retags explicit. - Generator bodies: In analysis MIR, locals may actually be behind a pointer that user code has access to. This occurs in generator bodies. Such locals do not behave like other locals, because they eg may be aliased in surprising ways. Runtime MIR has no such special locals - all generator bodies are lowered and so all places that look like locals really are locals.
- Const prop lints: The lint pass which reports eg
200_u8 + 200_u8
as an error is run as a part of analysis to runtime MIR lowering. This means that transformations which may supress such errors may not run on analysis MIR.
Implementations
sourceimpl MirPhase
impl MirPhase
sourcepub fn phase_index(&self) -> usize
pub fn phase_index(&self) -> usize
Gets the index of the current MirPhase within the set of all MirPhase
s.
FIXME(JakobDegen): Return a (usize, usize)
instead.
Trait Implementations
sourceimpl<'__ctx> HashStable<StableHashingContext<'__ctx>> for MirPhase
impl<'__ctx> HashStable<StableHashingContext<'__ctx>> for MirPhase
fn hash_stable(
&self,
__hcx: &mut StableHashingContext<'__ctx>,
__hasher: &mut StableHasher
)
sourceimpl Ord for MirPhase
impl Ord for MirPhase
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
sourceimpl PartialOrd<MirPhase> for MirPhase
impl PartialOrd<MirPhase> for MirPhase
sourcefn partial_cmp(&self, other: &MirPhase) -> Option<Ordering>
fn partial_cmp(&self, other: &MirPhase) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresourceimpl<'tcx> TypeFoldable<'tcx> for MirPhase
impl<'tcx> TypeFoldable<'tcx> for MirPhase
sourcefn try_fold_with<F: FallibleTypeFolder<'tcx>>(
self,
_: &mut F
) -> Result<MirPhase, F::Error>
fn try_fold_with<F: FallibleTypeFolder<'tcx>>(
self,
_: &mut F
) -> Result<MirPhase, F::Error>
sourcefn fold_with<F: TypeFolder<'tcx>>(self, folder: &mut F) -> Self
fn fold_with<F: TypeFolder<'tcx>>(self, folder: &mut F) -> Self
try_fold_with
for use with infallible
folders. Do not override this method, to ensure coherence with
try_fold_with
. Read moresourceimpl<'tcx> TypeVisitable<'tcx> for MirPhase
impl<'tcx> TypeVisitable<'tcx> for MirPhase
sourcefn visit_with<F: TypeVisitor<'tcx>>(&self, _: &mut F) -> ControlFlow<F::BreakTy>
fn visit_with<F: TypeVisitor<'tcx>>(&self, _: &mut F) -> ControlFlow<F::BreakTy>
sourcefn has_vars_bound_at_or_above(&self, binder: DebruijnIndex) -> bool
fn has_vars_bound_at_or_above(&self, binder: DebruijnIndex) -> bool
true
if self
has any late-bound regions that are either
bound by binder
or bound by some binder outside of binder
.
If binder
is ty::INNERMOST
, this indicates whether
there are any late-bound regions that appear free. Read moresourcefn has_vars_bound_above(&self, binder: DebruijnIndex) -> bool
fn has_vars_bound_above(&self, binder: DebruijnIndex) -> bool
true
if this self
has any regions that escape binder
(and
hence are not bound by it). Read morefn has_escaping_bound_vars(&self) -> bool
fn has_type_flags(&self, flags: TypeFlags) -> bool
fn has_projections(&self) -> bool
fn has_opaque_types(&self) -> bool
fn references_error(&self) -> bool
fn error_reported(&self) -> Option<ErrorGuaranteed>
fn has_param_types_or_consts(&self) -> bool
fn has_infer_regions(&self) -> bool
fn has_infer_types(&self) -> bool
fn has_infer_types_or_consts(&self) -> bool
fn needs_infer(&self) -> bool
fn has_placeholders(&self) -> bool
fn needs_subst(&self) -> bool
sourcefn has_free_regions(&self) -> bool
fn has_free_regions(&self) -> bool
fn has_erased_regions(&self) -> bool
sourcefn has_erasable_regions(&self) -> bool
fn has_erasable_regions(&self) -> bool
sourcefn is_global(&self) -> bool
fn is_global(&self) -> bool
sourcefn has_late_bound_regions(&self) -> bool
fn has_late_bound_regions(&self) -> bool
sourcefn still_further_specializable(&self) -> bool
fn still_further_specializable(&self) -> bool
impl
specialization. Read moreimpl Copy for MirPhase
impl Eq for MirPhase
impl StructuralEq for MirPhase
impl StructuralPartialEq for MirPhase
Auto Trait Implementations
impl RefUnwindSafe for MirPhase
impl Send for MirPhase
impl Sync for MirPhase
impl Unpin for MirPhase
impl UnwindSafe for MirPhase
Blanket Implementations
sourceimpl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
fn allocate_on(self, arena: &'a Arena<'tcx>) -> &'a mut T
fn allocate_from_iter(
arena: &'a Arena<'tcx>,
iter: impl IntoIterator<Item = T>
) -> &'a mut [T]ⓘNotable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8]
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<Ctxt, T> DepNodeParams<Ctxt> for Twhere
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
impl<Ctxt, T> DepNodeParams<Ctxt> for Twhere
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
default fn fingerprint_style() -> FingerprintStyle
sourcedefault fn to_fingerprint(&self, tcx: Ctxt) -> Fingerprint
default fn to_fingerprint(&self, tcx: Ctxt) -> Fingerprint
default fn to_debug_str(&self, Ctxt) -> String
sourcedefault fn recover(Ctxt, &DepNode<<Ctxt as DepContext>::DepKind>) -> Option<T>
default fn recover(Ctxt, &DepNode<<Ctxt as DepContext>::DepKind>) -> Option<T>
DepNode
,
something which is needed when forcing DepNode
s during red-green
evaluation. The query system will only call this method if
fingerprint_style()
is not FingerprintStyle::Opaque
.
It is always valid to return None
here, in which case incremental
compilation will treat the query as having changed instead of forcing it. Read moresourceimpl<T, R> InternIteratorElement<T, R> for T
impl<T, R> InternIteratorElement<T, R> for T
type Output = R
fn intern_with<I, F>(iter: I, f: F) -> <T as InternIteratorElement<T, R>>::Outputwhere
I: Iterator<Item = T>,
F: FnOnce(&[T]) -> R,
sourceimpl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
sourceimpl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
impl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
default fn from_cycle_error(tcx: CTX) -> T
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
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: 2 bytes
Size for each variant:
Built
: 0 bytesAnalysis
: 1 byteRuntime
: 1 byte