Struct rustc_middle::mir::Body
source · [−]pub struct Body<'tcx> {Show 14 fields
pub basic_blocks: BasicBlocks<'tcx>,
pub phase: MirPhase,
pub source: MirSource<'tcx>,
pub source_scopes: IndexVec<SourceScope, SourceScopeData<'tcx>>,
pub generator: Option<Box<GeneratorInfo<'tcx>>>,
pub local_decls: LocalDecls<'tcx>,
pub user_type_annotations: CanonicalUserTypeAnnotations<'tcx>,
pub arg_count: usize,
pub spread_arg: Option<Local>,
pub var_debug_info: Vec<VarDebugInfo<'tcx>>,
pub span: Span,
pub required_consts: Vec<Constant<'tcx>>,
pub is_polymorphic: bool,
pub tainted_by_errors: Option<ErrorGuaranteed>,
}
Expand description
The lowered representation of a single function.
Fields
basic_blocks: BasicBlocks<'tcx>
A list of basic blocks. References to basic block use a newtyped index type BasicBlock
that indexes into this vector.
phase: MirPhase
Records how far through the “desugaring and optimization” process this particular MIR has traversed. This is particularly useful when inlining, since in that context we instantiate the promoted constants and add them to our promoted vector – but those promoted items have already been optimized, whereas ours have not. This field allows us to see the difference and forego optimization on the inlined promoted items.
source: MirSource<'tcx>
source_scopes: IndexVec<SourceScope, SourceScopeData<'tcx>>
A list of source scopes; these are referenced by statements
and used for debuginfo. Indexed by a SourceScope
.
generator: Option<Box<GeneratorInfo<'tcx>>>
local_decls: LocalDecls<'tcx>
Declarations of locals.
The first local is the return value pointer, followed by arg_count
locals for the function arguments, followed by any user-declared
variables and temporaries.
user_type_annotations: CanonicalUserTypeAnnotations<'tcx>
User type annotations.
arg_count: usize
The number of arguments this function takes.
Starting at local 1, arg_count
locals will be provided by the caller
and can be assumed to be initialized.
If this MIR was built for a constant, this will be 0.
spread_arg: Option<Local>
Mark an argument local (which must be a tuple) as getting passed as its individual components at the LLVM level.
This is used for the “rust-call” ABI.
var_debug_info: Vec<VarDebugInfo<'tcx>>
Debug information pertaining to user variables, including captures.
span: Span
A span representing this MIR, for error reporting.
required_consts: Vec<Constant<'tcx>>
Constants that are required to evaluate successfully for this MIR to be well-formed. We hold in this field all the constants we are not able to evaluate yet.
is_polymorphic: bool
Does this body use generic parameters. This is used for the ConstEvaluatable
check.
Note that this does not actually mean that this body is not computable right now.
The repeat count in the following example is polymorphic, but can still be evaluated
without knowing anything about the type parameter T
.
fn test<T>() {
let _ = [0; std::mem::size_of::<*mut T>()];
}
WARNING: Do not change this flags after the MIR was originally created, even if an optimization
removed the last mention of all generic params. We do not want to rely on optimizations and
potentially allow things like [u8; std::mem::size_of::<T>() * 0]
due to this.
tainted_by_errors: Option<ErrorGuaranteed>
Implementations
sourceimpl<'tcx> Body<'tcx>
impl<'tcx> Body<'tcx>
pub fn new(
source: MirSource<'tcx>,
basic_blocks: IndexVec<BasicBlock, BasicBlockData<'tcx>>,
source_scopes: IndexVec<SourceScope, SourceScopeData<'tcx>>,
local_decls: LocalDecls<'tcx>,
user_type_annotations: CanonicalUserTypeAnnotations<'tcx>,
arg_count: usize,
var_debug_info: Vec<VarDebugInfo<'tcx>>,
span: Span,
generator_kind: Option<GeneratorKind>,
tainted_by_errors: Option<ErrorGuaranteed>
) -> Self
sourcepub fn new_cfg_only(
basic_blocks: IndexVec<BasicBlock, BasicBlockData<'tcx>>
) -> Self
pub fn new_cfg_only(
basic_blocks: IndexVec<BasicBlock, BasicBlockData<'tcx>>
) -> Self
Returns a partially initialized MIR body containing only a list of basic blocks.
The returned MIR contains no LocalDecl
s (even for the return place) or source scopes. It
is only useful for testing but cannot be #[cfg(test)]
because it is used in a different
crate.
pub fn basic_blocks_mut(
&mut self
) -> &mut IndexVec<BasicBlock, BasicBlockData<'tcx>>
pub fn local_kind(&self, local: Local) -> LocalKind
sourcepub fn mut_vars_iter<'a>(
&'a self
) -> impl Iterator<Item = Local> + Captures<'tcx> + 'a
pub fn mut_vars_iter<'a>(
&'a self
) -> impl Iterator<Item = Local> + Captures<'tcx> + 'a
Returns an iterator over all user-declared mutable locals.
sourcepub fn mut_vars_and_args_iter<'a>(
&'a self
) -> impl Iterator<Item = Local> + Captures<'tcx> + 'a
pub fn mut_vars_and_args_iter<'a>(
&'a self
) -> impl Iterator<Item = Local> + Captures<'tcx> + 'a
Returns an iterator over all user-declared mutable arguments and locals.
sourcepub fn args_iter(&self) -> impl Iterator<Item = Local> + ExactSizeIterator
pub fn args_iter(&self) -> impl Iterator<Item = Local> + ExactSizeIterator
Returns an iterator over all function arguments.
sourcepub fn vars_and_temps_iter(
&self
) -> impl DoubleEndedIterator<Item = Local> + ExactSizeIterator
pub fn vars_and_temps_iter(
&self
) -> impl DoubleEndedIterator<Item = Local> + ExactSizeIterator
Returns an iterator over all user-defined variables and compiler-generated temporaries (all locals that are neither arguments nor the return place).
pub fn drain_vars_and_temps<'a>(
&'a mut self
) -> impl Iterator<Item = LocalDecl<'tcx>> + 'a
sourcepub fn source_info(&self, location: Location) -> &SourceInfo
pub fn source_info(&self, location: Location) -> &SourceInfo
Returns the source info associated with location
.
sourcepub fn return_ty(&self) -> Ty<'tcx>
pub fn return_ty(&self) -> Ty<'tcx>
Returns the return type; it always return first element from local_decls
array.
sourcepub fn bound_return_ty(&self) -> EarlyBinder<Ty<'tcx>>
pub fn bound_return_ty(&self) -> EarlyBinder<Ty<'tcx>>
Returns the return type; it always return first element from local_decls
array.
sourcepub fn terminator_loc(&self, bb: BasicBlock) -> Location
pub fn terminator_loc(&self, bb: BasicBlock) -> Location
Gets the location of the terminator for the given block.
pub fn stmt_at(
&self,
location: Location
) -> Either<&Statement<'tcx>, &Terminator<'tcx>>
pub fn yield_ty(&self) -> Option<Ty<'tcx>>
pub fn generator_layout(&self) -> Option<&GeneratorLayout<'tcx>>
pub fn generator_drop(&self) -> Option<&Body<'tcx>>
pub fn generator_kind(&self) -> Option<GeneratorKind>
Trait Implementations
sourceimpl<'tcx> ArenaAllocatable<'tcx, IsNotCopy> for Body<'tcx>
impl<'tcx> ArenaAllocatable<'tcx, IsNotCopy> for Body<'tcx>
fn allocate_on<'a>(self, arena: &'a Arena<'tcx>) -> &'a mut Self
fn allocate_from_iter<'a>(
arena: &'a Arena<'tcx>,
iter: impl IntoIterator<Item = Self>
) -> &'a mut [Self]ⓘNotable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8]
sourceimpl<'tcx> HasLocalDecls<'tcx> for Body<'tcx>
impl<'tcx> HasLocalDecls<'tcx> for Body<'tcx>
fn local_decls(&self) -> &LocalDecls<'tcx>
sourceimpl<'tcx, '__ctx> HashStable<StableHashingContext<'__ctx>> for Body<'tcx>
impl<'tcx, '__ctx> HashStable<StableHashingContext<'__ctx>> for Body<'tcx>
fn hash_stable(
&self,
__hcx: &mut StableHashingContext<'__ctx>,
__hasher: &mut StableHasher
)
sourceimpl<'tcx> Index<BasicBlock> for Body<'tcx>
impl<'tcx> Index<BasicBlock> for Body<'tcx>
type Output = BasicBlockData<'tcx>
type Output = BasicBlockData<'tcx>
sourcefn index(&self, index: BasicBlock) -> &BasicBlockData<'tcx>
fn index(&self, index: BasicBlock) -> &BasicBlockData<'tcx>
container[index]
) operation. Read moresourceimpl<'tcx> IndexMut<BasicBlock> for Body<'tcx>
impl<'tcx> IndexMut<BasicBlock> for Body<'tcx>
sourcefn index_mut(&mut self, index: BasicBlock) -> &mut BasicBlockData<'tcx>
fn index_mut(&mut self, index: BasicBlock) -> &mut BasicBlockData<'tcx>
container[index]
) operation. Read moresourceimpl ParameterizedOverTcx for Body<'static>
impl ParameterizedOverTcx for Body<'static>
sourceimpl<'tcx, D: TyDecoder<I = TyCtxt<'tcx>>> RefDecodable<'tcx, D> for Body<'tcx>
impl<'tcx, D: TyDecoder<I = TyCtxt<'tcx>>> RefDecodable<'tcx, D> for Body<'tcx>
sourceimpl<'tcx> TypeFoldable<'tcx> for Body<'tcx>
impl<'tcx> TypeFoldable<'tcx> for Body<'tcx>
sourcefn try_fold_with<__F: FallibleTypeFolder<'tcx>>(
self,
__folder: &mut __F
) -> Result<Self, __F::Error>
fn try_fold_with<__F: FallibleTypeFolder<'tcx>>(
self,
__folder: &mut __F
) -> Result<Self, __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 Body<'tcx>
impl<'tcx> TypeVisitable<'tcx> for Body<'tcx>
sourcefn visit_with<__V: TypeVisitor<'tcx>>(
&self,
__visitor: &mut __V
) -> ControlFlow<__V::BreakTy>
fn visit_with<__V: TypeVisitor<'tcx>>(
&self,
__visitor: &mut __V
) -> ControlFlow<__V::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 moreAuto Trait Implementations
impl<'tcx> !RefUnwindSafe for Body<'tcx>
impl<'tcx> !Send for Body<'tcx>
impl<'tcx> !Sync for Body<'tcx>
impl<'tcx> Unpin for Body<'tcx>
impl<'tcx> !UnwindSafe for Body<'tcx>
Blanket Implementations
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: 296 bytes