Enum rustc_middle::mir::StatementKind [−][src]
pub enum StatementKind<'tcx> {
Assign(Box<(Place<'tcx>, Rvalue<'tcx>)>),
FakeRead(Box<(FakeReadCause, Place<'tcx>)>),
SetDiscriminant {
place: Box<Place<'tcx>>,
variant_index: VariantIdx,
},
StorageLive(Local),
StorageDead(Local),
LlvmInlineAsm(Box<LlvmInlineAsm<'tcx>>),
Retag(RetagKind, Box<Place<'tcx>>),
AscribeUserType(Box<(Place<'tcx>, UserTypeProjection)>, Variance),
Coverage(Box<Coverage>),
CopyNonOverlapping(Box<CopyNonOverlapping<'tcx>>),
Nop,
}
Variants
Write the RHS Rvalue to the LHS Place.
FakeRead(Box<(FakeReadCause, Place<'tcx>)>)
This represents all the reading that a pattern match may do (e.g., inspecting constants and discriminant values), and the kind of pattern it comes from. This is in order to adapt potential error messages to these specific patterns.
Note that this also is emitted for regular let
bindings to ensure that locals that are
never accessed still get some sanity checks for, e.g., let x: ! = ..;
Tuple Fields of FakeRead
0: Box<(FakeReadCause, Place<'tcx>)>
Write the discriminant for a variant to the enum Place.
Fields of SetDiscriminant
place: Box<Place<'tcx>>
variant_index: VariantIdx
StorageLive(Local)
Start a live range for the storage of the local.
Tuple Fields of StorageLive
0: Local
StorageDead(Local)
End the current live range for the storage of the local.
Tuple Fields of StorageDead
0: Local
LlvmInlineAsm(Box<LlvmInlineAsm<'tcx>>)
Executes a piece of inline Assembly. Stored in a Box to keep the size
of StatementKind
low.
Tuple Fields of LlvmInlineAsm
0: Box<LlvmInlineAsm<'tcx>>
Retag references in the given place, ensuring they got fresh tags. This is part of the Stacked Borrows model. These statements are currently only interpreted by miri and only generated when “-Z mir-emit-retag” is passed. See https://internals.rust-lang.org/t/stacked-borrows-an-aliasing-model-for-rust/8153/ for more details.
Encodes a user’s type ascription. These need to be preserved intact so that NLL can respect them. For example:
let a: T = y;
The effect of this annotation is to relate the type T_y
of the place y
to the user-given type T
. The effect depends on the specified variance:
Covariant
– requires thatT_y <: T
Contravariant
– requires thatT_y :> T
Invariant
– requires thatT_y == T
Bivariant
– no effect
Marks the start of a “coverage region”, injected with ‘-Zinstrument-coverage’. A
Coverage
statement carries metadata about the coverage region, used to inject a coverage
map into the binary. If Coverage::kind
is a Counter
, the statement also generates
executable code, to increment a counter variable at runtime, each time the code region is
executed.
CopyNonOverlapping(Box<CopyNonOverlapping<'tcx>>)
Denotes a call to the intrinsic function copy_overlapping, where src_dst
denotes the
memory being read from and written to(one field to save memory), and size
indicates how many bytes are being copied over.
Tuple Fields of CopyNonOverlapping
0: Box<CopyNonOverlapping<'tcx>>
No-op. Useful for deleting instructions without affecting statement indices.
Implementations
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
fn super_visit_with<__F: TypeVisitor<'tcx>>(
&self,
__folder: &mut __F
) -> ControlFlow<__F::BreakTy>
Returns 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 more
Returns true
if this self
has any regions that escape binder
(and
hence are not bound by it). Read more
“Free” regions in this context means that it has any region that is not (a) erased or (b) late-bound. Read more
True if there are any un-erased free regions.
Indicates whether this value definitely references only ‘global’ generic parameters that are the same regardless of what fn we are in. This is used for caching. Read more
Indicates whether this value references only ‘global’ generic parameters that are the same regardless of what fn we are in. This is used for caching. Read more
True if there are any late-bound regions
Indicates whether this value still has parameters/placeholders/inference variables
which could be replaced later, in a way that would change the results of impl
specialization. Read more
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for StatementKind<'tcx>
impl<'tcx> !Send for StatementKind<'tcx>
impl<'tcx> !Sync for StatementKind<'tcx>
impl<'tcx> Unpin for StatementKind<'tcx>
impl<'tcx> !UnwindSafe for StatementKind<'tcx>
Blanket Implementations
Mutably borrows from an owned value. Read more
impl<Ctxt, T> DepNodeParams<Ctxt> for T where
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
impl<Ctxt, T> DepNodeParams<Ctxt> for T where
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
This method turns the parameters of a DepNodeConstructor into an opaque Fingerprint to be used in DepNode. Not all DepNodeParams support being turned into a Fingerprint (they don’t need to if the corresponding DepNode is anonymous). Read more
This method tries to recover the query key from the given 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 more
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: 16 bytes
Size for each variant:
Assign
: 15 bytesFakeRead
: 15 bytesSetDiscriminant
: 15 bytesStorageLive
: 7 bytesStorageDead
: 7 bytesLlvmInlineAsm
: 15 bytesRetag
: 15 bytesAscribeUserType
: 15 bytesCoverage
: 15 bytesCopyNonOverlapping
: 15 bytesNop
: 0 bytes