Expand description
This defines the syntax of MIR, i.e., the set of available MIR operations, and other definitions closely related to MIR semantics. This is in a dedicated file so that changes to this file can be reviewed more carefully. The intention is that this file only contains datatype declarations, no code.
Modules§
Structs§
- Const
Operand - Copy
NonOverlapping - Place
- Places roughly correspond to a “location in memory.” Places in MIR are the same mathematical object as places in Rust. This of course means that what exactly they are is undecided and part of the Rust memory model. However, they will likely contain at least the following pieces of information in some form:
- Switch
Targets
Enums§
- Aggregate
Kind - Analysis
Phase - See
MirPhase::Analysis
. - Assert
Kind - Information about an assertion failure.
- Backward
Incompatible Drop Reason - BinOp
- Borrow
Kind - Call
Source - Represents how a
TerminatorKind::Call
was constructed. Used only for diagnostics. - Cast
Kind - Coercion
Source - Represents how a
CastKind::PointerCoercion
was constructed. Used only for diagnostics. - Fake
Borrow Kind - Fake
Read Cause - The
FakeReadCause
describes the type of pattern why a FakeRead statement exists. - Inline
AsmMacro - The macro that an inline assembly block was created by
- Inline
AsmOperand - MirPhase
- Represents the “flavors” of MIR.
- MutBorrow
Kind - NonDiverging
Intrinsic - NullOp
- Operand
- An operand in MIR represents a “value” in Rust, the definition of which is undecided and part of the memory model. One proposal for a definition of values can be found on UCG.
- Projection
Elem - Retag
Kind - Describes what kind of retag is to be performed.
- Runtime
Phase - See
MirPhase::Runtime
. - Rvalue
- The various kinds of rvalues that can appear in MIR.
- Statement
Kind - The various kinds of statements that can appear in MIR.
- Terminator
Kind - The various kinds of terminators, representing ways of exiting from a basic block.
- UnOp
- Unwind
Action - Action to be taken when a stack unwind happens.
- Unwind
Terminate Reason - The reason we are terminating the process during unwinding.
Type Aliases§
- Assert
Message - Type for MIR
Assert
terminator error messages. - Place
Elem - Alias for projections as they appear in places, where the base is a place and the index is a local.