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§
- 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:
Enums§
- See
MirPhase::Analysis
. - Information about an assertion failure.
- Represents how a
TerminatorKind::Call
was constructed. Used only for diagnostics. - Represents how a
CastKind::PointerCoercion
was constructed. Used only for diagnostics. - The
FakeReadCause
describes the type of pattern why a FakeRead statement exists. - The macro that an inline assembly block was created by
- Represents the “flavors” of MIR.
- 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.
- Describes what kind of retag is to be performed.
- See
MirPhase::Runtime
. - The various kinds of rvalues that can appear in MIR.
- The various kinds of statements that can appear in MIR.
- The various kinds of terminators, representing ways of exiting from a basic block.
- Action to be taken when a stack unwind happens.
- The reason we are terminating the process during unwinding.
Type Aliases§
- Type for MIR
Assert
terminator error messages. - Alias for projections as they appear in places, where the base is a place and the index is a local.