Auto merge of #111440 - cjgillot:refprop-debuginfo, r=oli-obk

Allow MIR debuginfo to point to a variable's address

MIR optimizations currently do not to operate on borrowed locals.

When enabling #106285, many borrows will be left as-is because they are used in debuginfo. This pass allows to replace this pattern directly in MIR debuginfo:
```rust
a => _1
_1 = &raw? mut? _2
```
becomes
```rust
a => &_2
// No statement to borrow _2.
```

This pass is implemented as a drive-by in ReferencePropagation MIR pass.

This transformation allows following following MIR opts to treat _2 as an unborrowed local, and optimize it as such, even in builds with debuginfo.

In codegen, when encountering `a => &..&_2`, we create a list of allocas:
```llvm
store ptr %_2.dbg.spill, ptr %a.ref0.dbg.spill
store ptr %a.ref0.dbg.spill, ptr %a.ref1.dbg.spill
...
call void `@llvm.dbg.declare(metadata` ptr %a.ref{n}.dbg.spill, /* ... */)
```

Caveat: this transformation looses the exact type, we do not differentiate `a` as a immutable, mutable reference or a raw pointer. Everything is declared to `*mut` to codegen. I'm not convinced this is a blocker.
This commit is contained in:
bors 2023-05-14 05:31:10 +00:00
commit bc888958c9
26 changed files with 1537 additions and 653 deletions

View file

@ -8,7 +8,7 @@ use rustc_middle::ty::layout::{HasTyCtxt, LayoutOf};
use rustc_session::config::DebugInfo;
use rustc_span::symbol::{kw, Symbol};
use rustc_span::{BytePos, Span};
use rustc_target::abi::{Abi, FieldIdx, Size, VariantIdx};
use rustc_target::abi::{Abi, FieldIdx, FieldsShape, Size, VariantIdx};
use super::operand::{OperandRef, OperandValue};
use super::place::PlaceRef;
@ -41,6 +41,9 @@ pub struct PerLocalVarDebugInfo<'tcx, D> {
/// `.place.projection` from `mir::VarDebugInfo`.
pub projection: &'tcx ty::List<mir::PlaceElem<'tcx>>,
/// `references` from `mir::VarDebugInfo`.
pub references: u8,
}
#[derive(Clone, Copy, Debug)]
@ -80,6 +83,7 @@ trait DebugInfoOffsetLocation<'tcx, Bx> {
fn deref(&self, bx: &mut Bx) -> Self;
fn layout(&self) -> TyAndLayout<'tcx>;
fn project_field(&self, bx: &mut Bx, field: FieldIdx) -> Self;
fn project_constant_index(&self, bx: &mut Bx, offset: u64) -> Self;
fn downcast(&self, bx: &mut Bx, variant: VariantIdx) -> Self;
}
@ -98,6 +102,11 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> DebugInfoOffsetLocation<'tcx, Bx>
PlaceRef::project_field(*self, bx, field.index())
}
fn project_constant_index(&self, bx: &mut Bx, offset: u64) -> Self {
let lloffset = bx.cx().const_usize(offset);
self.project_index(bx, lloffset)
}
fn downcast(&self, bx: &mut Bx, variant: VariantIdx) -> Self {
self.project_downcast(bx, variant)
}
@ -120,6 +129,10 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> DebugInfoOffsetLocation<'tcx, Bx>
self.field(bx.cx(), field.index())
}
fn project_constant_index(&self, bx: &mut Bx, index: u64) -> Self {
self.field(bx.cx(), index as usize)
}
fn downcast(&self, bx: &mut Bx, variant: VariantIdx) -> Self {
self.for_variant(bx.cx(), variant)
}
@ -165,6 +178,18 @@ fn calculate_debuginfo_offset<
mir::ProjectionElem::Downcast(_, variant) => {
place = place.downcast(bx, variant);
}
mir::ProjectionElem::ConstantIndex {
offset: index,
min_length: _,
from_end: false,
} => {
let offset = indirect_offsets.last_mut().unwrap_or(&mut direct_offset);
let FieldsShape::Array { stride, count: _ } = place.layout().fields else {
span_bug!(var.source_info.span, "ConstantIndex on non-array type {:?}", place.layout())
};
*offset += stride * index;
place = place.project_constant_index(bx, index);
}
_ => {
// Sanity check for `can_use_in_debuginfo`.
debug_assert!(!elem.can_use_in_debuginfo());
@ -293,6 +318,7 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
dbg_var,
fragment: None,
projection: ty::List::empty(),
references: 0,
})
}
} else {
@ -358,57 +384,76 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
let vars = vars.iter().cloned().chain(fallback_var);
for var in vars {
let Some(dbg_var) = var.dbg_var else { continue };
let Some(dbg_loc) = self.dbg_loc(var.source_info) else { continue };
let DebugInfoOffset { direct_offset, indirect_offsets, result: _ } =
calculate_debuginfo_offset(bx, local, &var, base.layout);
// When targeting MSVC, create extra allocas for arguments instead of pointing multiple
// dbg_var_addr() calls into the same alloca with offsets. MSVC uses CodeView records
// not DWARF and LLVM doesn't support translating the resulting
// [DW_OP_deref, DW_OP_plus_uconst, offset, DW_OP_deref] debug info to CodeView.
// Creating extra allocas on the stack makes the resulting debug info simple enough
// that LLVM can generate correct CodeView records and thus the values appear in the
// debugger. (#83709)
let should_create_individual_allocas = bx.cx().sess().target.is_like_msvc
&& self.mir.local_kind(local) == mir::LocalKind::Arg
// LLVM can handle simple things but anything more complex than just a direct
// offset or one indirect offset of 0 is too complex for it to generate CV records
// correctly.
&& (direct_offset != Size::ZERO
|| !matches!(&indirect_offsets[..], [Size::ZERO] | []));
if should_create_individual_allocas {
let DebugInfoOffset { direct_offset: _, indirect_offsets: _, result: place } =
calculate_debuginfo_offset(bx, local, &var, base);
// Create a variable which will be a pointer to the actual value
let ptr_ty = bx
.tcx()
.mk_ptr(ty::TypeAndMut { mutbl: mir::Mutability::Mut, ty: place.layout.ty });
let ptr_layout = bx.layout_of(ptr_ty);
let alloca = PlaceRef::alloca(bx, ptr_layout);
bx.set_var_name(alloca.llval, &(var.name.to_string() + ".dbg.spill"));
// Write the pointer to the variable
bx.store(place.llval, alloca.llval, alloca.align);
// Point the debug info to `*alloca` for the current variable
bx.dbg_var_addr(dbg_var, dbg_loc, alloca.llval, Size::ZERO, &[Size::ZERO], None);
} else {
bx.dbg_var_addr(
dbg_var,
dbg_loc,
base.llval,
direct_offset,
&indirect_offsets,
None,
);
}
self.debug_introduce_local_as_var(bx, local, base, var);
}
}
fn debug_introduce_local_as_var(
&self,
bx: &mut Bx,
local: mir::Local,
mut base: PlaceRef<'tcx, Bx::Value>,
var: PerLocalVarDebugInfo<'tcx, Bx::DIVariable>,
) {
let Some(dbg_var) = var.dbg_var else { return };
let Some(dbg_loc) = self.dbg_loc(var.source_info) else { return };
let DebugInfoOffset { mut direct_offset, indirect_offsets, result: _ } =
calculate_debuginfo_offset(bx, local, &var, base.layout);
let mut indirect_offsets = &indirect_offsets[..];
// When targeting MSVC, create extra allocas for arguments instead of pointing multiple
// dbg_var_addr() calls into the same alloca with offsets. MSVC uses CodeView records
// not DWARF and LLVM doesn't support translating the resulting
// [DW_OP_deref, DW_OP_plus_uconst, offset, DW_OP_deref] debug info to CodeView.
// Creating extra allocas on the stack makes the resulting debug info simple enough
// that LLVM can generate correct CodeView records and thus the values appear in the
// debugger. (#83709)
let should_create_individual_allocas = bx.cx().sess().target.is_like_msvc
&& self.mir.local_kind(local) == mir::LocalKind::Arg
// LLVM can handle simple things but anything more complex than just a direct
// offset or one indirect offset of 0 is too complex for it to generate CV records
// correctly.
&& (direct_offset != Size::ZERO || !matches!(indirect_offsets, [Size::ZERO] | []));
let create_alloca = |bx: &mut Bx, place: PlaceRef<'tcx, Bx::Value>, refcount| {
// Create a variable which will be a pointer to the actual value
let ptr_ty = bx
.tcx()
.mk_ptr(ty::TypeAndMut { mutbl: mir::Mutability::Mut, ty: place.layout.ty });
let ptr_layout = bx.layout_of(ptr_ty);
let alloca = PlaceRef::alloca(bx, ptr_layout);
bx.set_var_name(alloca.llval, &format!("{}.ref{}.dbg.spill", var.name, refcount));
// Write the pointer to the variable
bx.store(place.llval, alloca.llval, alloca.align);
// Point the debug info to `*alloca` for the current variable
alloca
};
if var.references > 0 {
base = calculate_debuginfo_offset(bx, local, &var, base).result;
// Point the debug info to `&...&base == alloca` for the current variable
for refcount in 0..var.references {
base = create_alloca(bx, base, refcount);
}
direct_offset = Size::ZERO;
indirect_offsets = &[];
} else if should_create_individual_allocas {
let place = calculate_debuginfo_offset(bx, local, &var, base).result;
// Point the debug info to `*alloca` for the current variable
base = create_alloca(bx, place, 0);
direct_offset = Size::ZERO;
indirect_offsets = &[Size::ZERO];
}
bx.dbg_var_addr(dbg_var, dbg_loc, base.llval, direct_offset, indirect_offsets, None);
}
pub fn debug_introduce_locals(&self, bx: &mut Bx) {
if bx.sess().opts.debuginfo == DebugInfo::Full || !bx.sess().fewer_names() {
for local in self.locals.indices() {
@ -439,7 +484,7 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
};
let dbg_var = dbg_scope_and_span.map(|(dbg_scope, _, span)| {
let (var_ty, var_kind) = match var.value {
let (mut var_ty, var_kind) = match var.value {
mir::VarDebugInfoContents::Place(place) => {
let var_ty = self.monomorphized_place_ty(place.as_ref());
let var_kind = if let Some(arg_index) = var.argument_index
@ -476,6 +521,11 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
}
};
for _ in 0..var.references {
var_ty =
bx.tcx().mk_ptr(ty::TypeAndMut { mutbl: mir::Mutability::Mut, ty: var_ty });
}
self.cx.create_dbg_var(var.name, var_ty, dbg_scope, var_kind, span)
});
@ -487,6 +537,7 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
dbg_var,
fragment: None,
projection: place.projection,
references: var.references,
});
}
mir::VarDebugInfoContents::Const(c) => {
@ -540,6 +591,7 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
Some(fragment_start..fragment_start + fragment_layout.size)
},
projection: place.projection,
references: var.references,
});
}
}

View file

@ -448,7 +448,15 @@ impl<'a, 'tcx> Visitor<'tcx> for TypeChecker<'a, 'tcx> {
};
match debuginfo.value {
VarDebugInfoContents::Const(_) => {}
VarDebugInfoContents::Place(place) => check_place(place),
VarDebugInfoContents::Place(place) => {
check_place(place);
if debuginfo.references != 0 && place.projection.last() == Some(&PlaceElem::Deref) {
self.fail(
START_BLOCK.start_location(),
format!("debuginfo {:?}, has both ref and deref", debuginfo),
);
}
}
VarDebugInfoContents::Composite { ty, ref fragments } => {
for f in fragments {
check_place(f.contents);

View file

@ -1111,6 +1111,10 @@ pub struct VarDebugInfo<'tcx> {
/// originated from (starting from 1). Note, if MIR inlining is enabled, then this is the
/// argument number in the original function before it was inlined.
pub argument_index: Option<u16>,
/// The data represents `name` dereferenced `references` times,
/// and not the direct value.
pub references: u8,
}
///////////////////////////////////////////////////////////////////////////
@ -1550,8 +1554,11 @@ impl<V, T> ProjectionElem<V, T> {
/// Returns `true` if this is accepted inside `VarDebugInfoContents::Place`.
pub fn can_use_in_debuginfo(&self) -> bool {
match self {
Self::Deref | Self::Downcast(_, _) | Self::Field(_, _) => true,
Self::ConstantIndex { .. }
Self::ConstantIndex { from_end: false, .. }
| Self::Deref
| Self::Downcast(_, _)
| Self::Field(_, _) => true,
Self::ConstantIndex { from_end: true, .. }
| Self::Index(_)
| Self::OpaqueCast(_)
| Self::Subslice { .. } => false,
@ -1639,18 +1646,7 @@ impl<'tcx> Place<'tcx> {
return self;
}
let mut v: Vec<PlaceElem<'tcx>>;
let new_projections = if self.projection.is_empty() {
more_projections
} else {
v = Vec::with_capacity(self.projection.len() + more_projections.len());
v.extend(self.projection);
v.extend(more_projections);
&v
};
Place { local: self.local, projection: tcx.mk_place_elems(new_projections) }
self.as_ref().project_deeper(more_projections, tcx)
}
}
@ -1721,6 +1717,27 @@ impl<'tcx> PlaceRef<'tcx> {
(base, *proj)
})
}
/// Generates a new place by appending `more_projections` to the existing ones
/// and interning the result.
pub fn project_deeper(
self,
more_projections: &[PlaceElem<'tcx>],
tcx: TyCtxt<'tcx>,
) -> Place<'tcx> {
let mut v: Vec<PlaceElem<'tcx>>;
let new_projections = if self.projection.is_empty() {
more_projections
} else {
v = Vec::with_capacity(self.projection.len() + more_projections.len());
v.extend(self.projection);
v.extend(more_projections);
&v
};
Place { local: self.local, projection: tcx.mk_place_elems(new_projections) }
}
}
impl Debug for Place<'_> {

View file

@ -551,8 +551,13 @@ fn write_scope_tree(
}
let indented_debug_info = format!(
"{0:1$}debug {2} => {3:?};",
INDENT, indent, var_debug_info.name, var_debug_info.value,
"{0:1$}debug {2} => {3:&<4$}{5:?};",
INDENT,
indent,
var_debug_info.name,
"",
var_debug_info.references as usize,
var_debug_info.value,
);
writeln!(

View file

@ -842,6 +842,7 @@ macro_rules! make_mir_visitor {
source_info,
value,
argument_index: _,
references: _,
} = var_debug_info;
self.visit_source_info(source_info);

View file

@ -204,6 +204,7 @@ CloneLiftImpls! {
(),
bool,
usize,
u8,
u16,
u32,
u64,

View file

@ -2241,6 +2241,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
self.var_debug_info.push(VarDebugInfo {
name,
source_info: debug_source_info,
references: 0,
value: VarDebugInfoContents::Place(for_arm_body.into()),
argument_index: None,
});
@ -2260,6 +2261,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
self.var_debug_info.push(VarDebugInfo {
name,
source_info: debug_source_info,
references: 0,
value: VarDebugInfoContents::Place(ref_for_guard.into()),
argument_index: None,
});

View file

@ -798,6 +798,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
};
self.var_debug_info.push(VarDebugInfo {
name,
references: 0,
source_info: SourceInfo::outermost(captured_place.var_ident.span),
value: VarDebugInfoContents::Place(use_place),
argument_index: None,
@ -828,6 +829,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
self.var_debug_info.push(VarDebugInfo {
name,
source_info,
references: 0,
value: VarDebugInfoContents::Place(arg_local.into()),
argument_index: Some(argument_index as u16 + 1),
});

View file

@ -77,11 +77,11 @@ impl<'tcx> MirPass<'tcx> for ReferencePropagation {
#[instrument(level = "trace", skip(self, tcx, body))]
fn run_pass(&self, tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
debug!(def_id = ?body.source.def_id());
propagate_ssa(tcx, body);
while propagate_ssa(tcx, body) {}
}
}
fn propagate_ssa<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
fn propagate_ssa<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) -> bool {
let ssa = SsaLocals::new(body);
let mut replacer = compute_replacement(tcx, body, &ssa);
@ -94,6 +94,8 @@ fn propagate_ssa<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
if replacer.any_replacement {
crate::simplify::remove_unused_definitions(body);
}
replacer.any_replacement
}
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
@ -263,6 +265,7 @@ fn compute_replacement<'tcx>(
targets,
storage_to_remove,
allowed_replacements,
fully_replacable_locals,
any_replacement: false,
};
@ -343,6 +346,7 @@ struct Replacer<'tcx> {
storage_to_remove: BitSet<Local>,
allowed_replacements: FxHashSet<(Local, Location)>,
any_replacement: bool,
fully_replacable_locals: BitSet<Local>,
}
impl<'tcx> MutVisitor<'tcx> for Replacer<'tcx> {
@ -350,6 +354,25 @@ impl<'tcx> MutVisitor<'tcx> for Replacer<'tcx> {
self.tcx
}
fn visit_var_debug_info(&mut self, debuginfo: &mut VarDebugInfo<'tcx>) {
if let VarDebugInfoContents::Place(ref mut place) = debuginfo.value
&& place.projection.is_empty()
&& let Value::Pointer(target, _) = self.targets[place.local]
&& target.projection.iter().all(|p| p.can_use_in_debuginfo())
{
if let Some((&PlaceElem::Deref, rest)) = target.projection.split_last() {
*place = Place::from(target.local).project_deeper(rest, self.tcx);
self.any_replacement = true;
} else if self.fully_replacable_locals.contains(place.local)
&& let Some(references) = debuginfo.references.checked_add(1)
{
debuginfo.references = references;
*place = target;
self.any_replacement = true;
}
}
}
fn visit_place(&mut self, place: &mut Place<'tcx>, ctxt: PlaceContext, loc: Location) {
if place.projection.first() != Some(&PlaceElem::Deref) {
return;

View file

@ -21,6 +21,7 @@ TrivialTypeTraversalImpls! {
(),
bool,
usize,
u8,
u16,
u32,
u64,

View file

@ -0,0 +1,173 @@
// Copy of `borrowed-basic.rs` which enables the `ReferencePropagation` MIR pass.
// That pass replaces debuginfo for `a => _x` where `_x = &b` to be `a => &b`,
// and leaves codegen to create a ladder of allocations so as `*a == b`.
//
// compile-flags:-g -Zmir-enable-passes=+ReferencePropagation,-ConstDebugInfo
// min-lldb-version: 310
// === GDB TESTS ===================================================================================
// gdb-command:run
// gdb-command:print *bool_ref
// gdb-check:$1 = true
// gdb-command:print *int_ref
// gdb-check:$2 = -1
// gdb-command:print/d *char_ref
// gdb-check:$3 = 97
// gdb-command:print *i8_ref
// gdbg-check:$4 = 68 'D'
// gdbr-check:$4 = 68
// gdb-command:print *i16_ref
// gdb-check:$5 = -16
// gdb-command:print *i32_ref
// gdb-check:$6 = -32
// gdb-command:print *i64_ref
// gdb-check:$7 = -64
// gdb-command:print *uint_ref
// gdb-check:$8 = 1
// gdb-command:print *u8_ref
// gdbg-check:$9 = 100 'd'
// gdbr-check:$9 = 100
// gdb-command:print *u16_ref
// gdb-check:$10 = 16
// gdb-command:print *u32_ref
// gdb-check:$11 = 32
// gdb-command:print *u64_ref
// gdb-check:$12 = 64
// gdb-command:print *f32_ref
// gdb-check:$13 = 2.5
// gdb-command:print *f64_ref
// gdb-check:$14 = 3.5
// gdb-command:print *f64_double_ref
// gdb-check:$15 = 3.5
// === LLDB TESTS ==================================================================================
// lldb-command:run
// lldb-command:print *bool_ref
// lldbg-check:[...]$0 = true
// lldbr-check:(bool) *bool_ref = true
// lldb-command:print *int_ref
// lldbg-check:[...]$1 = -1
// lldbr-check:(isize) *int_ref = -1
// NOTE: only rust-enabled lldb supports 32bit chars
// lldbr-command:print *char_ref
// lldbr-check:(char) *char_ref = 'a'
// lldb-command:print *i8_ref
// lldbg-check:[...]$2 = 'D'
// lldbr-check:(i8) *i8_ref = 68
// lldb-command:print *i16_ref
// lldbg-check:[...]$3 = -16
// lldbr-check:(i16) *i16_ref = -16
// lldb-command:print *i32_ref
// lldbg-check:[...]$4 = -32
// lldbr-check:(i32) *i32_ref = -32
// lldb-command:print *i64_ref
// lldbg-check:[...]$5 = -64
// lldbr-check:(i64) *i64_ref = -64
// lldb-command:print *uint_ref
// lldbg-check:[...]$6 = 1
// lldbr-check:(usize) *uint_ref = 1
// lldb-command:print *u8_ref
// lldbg-check:[...]$7 = 'd'
// lldbr-check:(u8) *u8_ref = 100
// lldb-command:print *u16_ref
// lldbg-check:[...]$8 = 16
// lldbr-check:(u16) *u16_ref = 16
// lldb-command:print *u32_ref
// lldbg-check:[...]$9 = 32
// lldbr-check:(u32) *u32_ref = 32
// lldb-command:print *u64_ref
// lldbg-check:[...]$10 = 64
// lldbr-check:(u64) *u64_ref = 64
// lldb-command:print *f32_ref
// lldbg-check:[...]$11 = 2.5
// lldbr-check:(f32) *f32_ref = 2.5
// lldb-command:print *f64_ref
// lldbg-check:[...]$12 = 3.5
// lldbr-check:(f64) *f64_ref = 3.5
// lldb-command:print *f64_double_ref
// lldbg-check:[...]$13 = 3.5
// lldbr-check:(f64) **f64_double_ref = 3.5
#![allow(unused_variables)]
#![feature(omit_gdb_pretty_printer_section)]
#![omit_gdb_pretty_printer_section]
fn main() {
let bool_val: bool = true;
let bool_ref: &bool = &bool_val;
let int_val: isize = -1;
let int_ref: &isize = &int_val;
let char_val: char = 'a';
let char_ref: &char = &char_val;
let i8_val: i8 = 68;
let i8_ref: &i8 = &i8_val;
let i16_val: i16 = -16;
let i16_ref: &i16 = &i16_val;
let i32_val: i32 = -32;
let i32_ref: &i32 = &i32_val;
let i64_val: i64 = -64;
let i64_ref: &i64 = &i64_val;
let uint_val: usize = 1;
let uint_ref: &usize = &uint_val;
let u8_val: u8 = 100;
let u8_ref: &u8 = &u8_val;
let u16_val: u16 = 16;
let u16_ref: &u16 = &u16_val;
let u32_val: u32 = 32;
let u32_ref: &u32 = &u32_val;
let u64_val: u64 = 64;
let u64_ref: &u64 = &u64_val;
let f32_val: f32 = 2.5;
let f32_ref: &f32 = &f32_val;
let f64_val: f64 = 3.5;
let f64_ref: &f64 = &f64_val;
let f64_double_ref: &f64 = &f64_ref;
zzz(); // #break
}
fn zzz() {()}

View file

@ -21,9 +21,9 @@
let _13: &T; // in scope 1 at $DIR/issue_76432.rs:+3:18: +3:24
let _14: &T; // in scope 1 at $DIR/issue_76432.rs:+3:26: +3:32
scope 2 {
debug v1 => _12; // in scope 2 at $DIR/issue_76432.rs:+3:10: +3:16
debug v2 => _13; // in scope 2 at $DIR/issue_76432.rs:+3:18: +3:24
debug v3 => _14; // in scope 2 at $DIR/issue_76432.rs:+3:26: +3:32
debug v1 => &(*_2)[0 of 3]; // in scope 2 at $DIR/issue_76432.rs:+3:10: +3:16
debug v2 => &(*_2)[1 of 3]; // in scope 2 at $DIR/issue_76432.rs:+3:18: +3:24
debug v3 => &(*_2)[2 of 3]; // in scope 2 at $DIR/issue_76432.rs:+3:26: +3:32
}
}
@ -52,15 +52,6 @@
}
bb2: {
StorageLive(_12); // scope 1 at $DIR/issue_76432.rs:+3:10: +3:16
_12 = &(*_2)[0 of 3]; // scope 1 at $DIR/issue_76432.rs:+3:10: +3:16
StorageLive(_13); // scope 1 at $DIR/issue_76432.rs:+3:18: +3:24
_13 = &(*_2)[1 of 3]; // scope 1 at $DIR/issue_76432.rs:+3:18: +3:24
StorageLive(_14); // scope 1 at $DIR/issue_76432.rs:+3:26: +3:32
_14 = &(*_2)[2 of 3]; // scope 1 at $DIR/issue_76432.rs:+3:26: +3:32
StorageDead(_14); // scope 1 at $DIR/issue_76432.rs:+3:84: +3:85
StorageDead(_13); // scope 1 at $DIR/issue_76432.rs:+3:84: +3:85
StorageDead(_12); // scope 1 at $DIR/issue_76432.rs:+3:84: +3:85
StorageDead(_5); // scope 0 at $DIR/issue_76432.rs:+6:1: +6:2
StorageDead(_2); // scope 0 at $DIR/issue_76432.rs:+6:1: +6:2
return; // scope 0 at $DIR/issue_76432.rs:+6:2: +6:2

View file

@ -0,0 +1,175 @@
- // MIR for `debuginfo` before ReferencePropagation
+ // MIR for `debuginfo` after ReferencePropagation
fn debuginfo() -> () {
let mut _0: (); // return place in scope 0 at $DIR/reference_prop.rs:+0:16: +0:16
let _1: &mut u8; // in scope 0 at $DIR/reference_prop.rs:+3:9: +3:19
let mut _2: u8; // in scope 0 at $DIR/reference_prop.rs:+3:27: +3:31
let _4: debuginfo::T; // in scope 0 at $DIR/reference_prop.rs:+4:18: +4:22
let _6: (); // in scope 0 at $DIR/reference_prop.rs:+9:5: +12:6
let mut _7: std::option::Option<i32>; // in scope 0 at $DIR/reference_prop.rs:+9:11: +9:18
let mut _8: isize; // in scope 0 at $DIR/reference_prop.rs:+10:9: +10:13
let _10: (); // in scope 0 at $DIR/reference_prop.rs:+16:5: +17:6
let mut _11: &[i32]; // in scope 0 at $DIR/reference_prop.rs:+16:82: +16:94
let _12: &[i32]; // in scope 0 at $DIR/reference_prop.rs:+16:83: +16:94
let mut _13: &[i32; 10]; // in scope 0 at $DIR/reference_prop.rs:+16:83: +16:90
let _14: [i32; 10]; // in scope 0 at $DIR/reference_prop.rs:+16:83: +16:90
let mut _15: std::ops::RangeFull; // in scope 0 at $DIR/reference_prop.rs:+16:91: +16:93
let mut _16: usize; // in scope 0 at $DIR/reference_prop.rs:+16:12: +16:79
let mut _17: usize; // in scope 0 at $DIR/reference_prop.rs:+16:12: +16:79
let mut _18: bool; // in scope 0 at $DIR/reference_prop.rs:+16:12: +16:79
let _23: &&mut u8; // in scope 0 at $DIR/reference_prop.rs:+19:28: +19:40
let _24: &mut u8; // in scope 0 at $DIR/reference_prop.rs:+19:29: +19:40
let mut _25: debuginfo::T; // in scope 0 at $DIR/reference_prop.rs:+19:34: +19:38
scope 1 {
- debug ref_mut_u8 => _1; // in scope 1 at $DIR/reference_prop.rs:+3:9: +3:19
+ debug ref_mut_u8 => &_2; // in scope 1 at $DIR/reference_prop.rs:+3:9: +3:19
let _3: &u8; // in scope 1 at $DIR/reference_prop.rs:+4:9: +4:14
let mut _28: &debuginfo::T; // in scope 1 at $DIR/reference_prop.rs:+4:17: +4:24
scope 2 {
- debug field => _3; // in scope 2 at $DIR/reference_prop.rs:+4:9: +4:14
+ debug field => &((*_28).0: u8); // in scope 2 at $DIR/reference_prop.rs:+4:9: +4:14
let _5: &u8; // in scope 2 at $DIR/reference_prop.rs:+7:9: +7:17
scope 3 {
- debug reborrow => _5; // in scope 3 at $DIR/reference_prop.rs:+7:9: +7:17
+ debug reborrow => &_2; // in scope 3 at $DIR/reference_prop.rs:+7:9: +7:17
let _9: &i32; // in scope 3 at $DIR/reference_prop.rs:+11:14: +11:31
let _22: &&&mut u8; // in scope 3 at $DIR/reference_prop.rs:+19:9: +19:24
let mut _27: &std::option::Option<i32>; // in scope 3 at $DIR/reference_prop.rs:+11:14: +11:31
scope 4 {
- debug variant_field => _9; // in scope 4 at $DIR/reference_prop.rs:+11:14: +11:31
+ debug variant_field => &(((*_27) as Some).0: i32); // in scope 4 at $DIR/reference_prop.rs:+11:14: +11:31
}
scope 5 {
- debug constant_index => _19; // in scope 5 at $DIR/reference_prop.rs:+16:16: +16:34
+ debug constant_index => &(*_11)[1 of 3]; // in scope 5 at $DIR/reference_prop.rs:+16:16: +16:34
debug subslice => _20; // in scope 5 at $DIR/reference_prop.rs:+16:36: +16:44
debug constant_index_from_end => _21; // in scope 5 at $DIR/reference_prop.rs:+16:51: +16:78
let _19: &i32; // in scope 5 at $DIR/reference_prop.rs:+16:16: +16:34
let _20: &[i32]; // in scope 5 at $DIR/reference_prop.rs:+16:36: +16:44
let _21: &i32; // in scope 5 at $DIR/reference_prop.rs:+16:51: +16:78
let mut _26: &[i32; 10]; // in scope 5 at $DIR/reference_prop.rs:+16:83: +16:90
}
scope 6 {
- debug multiple_borrow => _22; // in scope 6 at $DIR/reference_prop.rs:+19:9: +19:24
+ debug multiple_borrow => &&&(_25.0: u8); // in scope 6 at $DIR/reference_prop.rs:+19:9: +19:24
}
}
}
}
bb0: {
- StorageLive(_1); // scope 0 at $DIR/reference_prop.rs:+3:9: +3:19
StorageLive(_2); // scope 0 at $DIR/reference_prop.rs:+3:27: +3:31
_2 = const 5_u8; // scope 0 at $DIR/reference_prop.rs:+3:27: +3:31
- _1 = &mut _2; // scope 0 at $DIR/reference_prop.rs:+3:22: +3:31
- StorageLive(_3); // scope 1 at $DIR/reference_prop.rs:+4:9: +4:14
_28 = const _; // scope 1 at $DIR/reference_prop.rs:+4:17: +4:24
// mir::Constant
// + span: $DIR/reference_prop.rs:535:17: 535:24
// + literal: Const { ty: &T, val: Unevaluated(debuginfo, [], Some(promoted[2])) }
- _3 = &((*_28).0: u8); // scope 1 at $DIR/reference_prop.rs:+4:17: +4:24
- StorageLive(_5); // scope 2 at $DIR/reference_prop.rs:+7:9: +7:17
- _5 = &(*_1); // scope 2 at $DIR/reference_prop.rs:+7:20: +7:32
- StorageLive(_6); // scope 3 at $DIR/reference_prop.rs:+9:5: +12:6
StorageLive(_7); // scope 3 at $DIR/reference_prop.rs:+9:11: +9:18
_7 = Option::<i32>::Some(const 0_i32); // scope 3 at $DIR/reference_prop.rs:+9:11: +9:18
_8 = discriminant(_7); // scope 3 at $DIR/reference_prop.rs:+9:11: +9:18
switchInt(move _8) -> [0: bb3, 1: bb1, otherwise: bb2]; // scope 3 at $DIR/reference_prop.rs:+9:5: +9:18
}
bb1: {
- StorageLive(_9); // scope 3 at $DIR/reference_prop.rs:+11:14: +11:31
_27 = const _; // scope 3 at $DIR/reference_prop.rs:+11:14: +11:31
// mir::Constant
// + span: $DIR/reference_prop.rs:542:14: 542:31
// + literal: Const { ty: &Option<i32>, val: Unevaluated(debuginfo, [], Some(promoted[1])) }
- _9 = &(((*_27) as Some).0: i32); // scope 3 at $DIR/reference_prop.rs:+11:14: +11:31
- _6 = const (); // scope 4 at $DIR/reference_prop.rs:+11:36: +11:38
- StorageDead(_9); // scope 3 at $DIR/reference_prop.rs:+11:37: +11:38
goto -> bb4; // scope 3 at $DIR/reference_prop.rs:+11:37: +11:38
}
bb2: {
unreachable; // scope 3 at $DIR/reference_prop.rs:+9:11: +9:18
}
bb3: {
- _6 = const (); // scope 3 at $DIR/reference_prop.rs:+10:17: +10:19
goto -> bb4; // scope 3 at $DIR/reference_prop.rs:+10:17: +10:19
}
bb4: {
StorageDead(_7); // scope 3 at $DIR/reference_prop.rs:+12:5: +12:6
- StorageDead(_6); // scope 3 at $DIR/reference_prop.rs:+12:5: +12:6
- StorageLive(_10); // scope 3 at $DIR/reference_prop.rs:+16:5: +17:6
StorageLive(_11); // scope 5 at $DIR/reference_prop.rs:+16:82: +16:94
StorageLive(_12); // scope 5 at $DIR/reference_prop.rs:+16:83: +16:94
StorageLive(_13); // scope 5 at $DIR/reference_prop.rs:+16:83: +16:90
_26 = const _; // scope 5 at $DIR/reference_prop.rs:+16:83: +16:90
// mir::Constant
// + span: $DIR/reference_prop.rs:547:83: 547:90
// + literal: Const { ty: &[i32; 10], val: Unevaluated(debuginfo, [], Some(promoted[0])) }
_13 = &(*_26); // scope 5 at $DIR/reference_prop.rs:+16:83: +16:90
StorageLive(_15); // scope 5 at $DIR/reference_prop.rs:+16:91: +16:93
_15 = RangeFull; // scope 5 at $DIR/reference_prop.rs:+16:91: +16:93
_12 = <[i32; 10] as Index<RangeFull>>::index(move _13, move _15) -> bb5; // scope 5 at $DIR/reference_prop.rs:+16:83: +16:94
// mir::Constant
// + span: $DIR/reference_prop.rs:547:83: 547:94
// + literal: Const { ty: for<'a> fn(&'a [i32; 10], RangeFull) -> &'a <[i32; 10] as Index<RangeFull>>::Output {<[i32; 10] as Index<RangeFull>>::index}, val: Value(<ZST>) }
}
bb5: {
StorageDead(_15); // scope 5 at $DIR/reference_prop.rs:+16:93: +16:94
StorageDead(_13); // scope 5 at $DIR/reference_prop.rs:+16:93: +16:94
_11 = &(*_12); // scope 5 at $DIR/reference_prop.rs:+16:82: +16:94
_16 = Len((*_11)); // scope 5 at $DIR/reference_prop.rs:+16:12: +16:79
_17 = const 3_usize; // scope 5 at $DIR/reference_prop.rs:+16:12: +16:79
_18 = Ge(move _16, move _17); // scope 5 at $DIR/reference_prop.rs:+16:12: +16:79
switchInt(move _18) -> [0: bb7, otherwise: bb6]; // scope 5 at $DIR/reference_prop.rs:+16:12: +16:79
}
bb6: {
- StorageLive(_19); // scope 5 at $DIR/reference_prop.rs:+16:16: +16:34
- _19 = &(*_11)[1 of 3]; // scope 5 at $DIR/reference_prop.rs:+16:16: +16:34
StorageLive(_20); // scope 5 at $DIR/reference_prop.rs:+16:36: +16:44
_20 = &(*_11)[2:-1]; // scope 5 at $DIR/reference_prop.rs:+16:36: +16:44
StorageLive(_21); // scope 5 at $DIR/reference_prop.rs:+16:51: +16:78
_21 = &(*_11)[-1 of 3]; // scope 5 at $DIR/reference_prop.rs:+16:51: +16:78
- _10 = const (); // scope 5 at $DIR/reference_prop.rs:+16:95: +17:6
StorageDead(_21); // scope 3 at $DIR/reference_prop.rs:+17:5: +17:6
StorageDead(_20); // scope 3 at $DIR/reference_prop.rs:+17:5: +17:6
- StorageDead(_19); // scope 3 at $DIR/reference_prop.rs:+17:5: +17:6
goto -> bb8; // scope 3 at $DIR/reference_prop.rs:+16:5: +17:6
}
bb7: {
- _10 = const (); // scope 3 at $DIR/reference_prop.rs:+17:6: +17:6
goto -> bb8; // scope 3 at $DIR/reference_prop.rs:+16:5: +17:6
}
bb8: {
StorageDead(_12); // scope 3 at $DIR/reference_prop.rs:+17:5: +17:6
StorageDead(_11); // scope 3 at $DIR/reference_prop.rs:+17:5: +17:6
- StorageDead(_10); // scope 3 at $DIR/reference_prop.rs:+17:5: +17:6
- StorageLive(_22); // scope 3 at $DIR/reference_prop.rs:+19:9: +19:24
- StorageLive(_23); // scope 3 at $DIR/reference_prop.rs:+19:28: +19:40
- StorageLive(_24); // scope 3 at $DIR/reference_prop.rs:+19:29: +19:40
StorageLive(_25); // scope 3 at $DIR/reference_prop.rs:+19:34: +19:38
_25 = T(const 6_u8); // scope 3 at $DIR/reference_prop.rs:+19:34: +19:38
- _24 = &mut (_25.0: u8); // scope 3 at $DIR/reference_prop.rs:+19:29: +19:40
- _23 = &_24; // scope 3 at $DIR/reference_prop.rs:+19:28: +19:40
- _22 = &_23; // scope 3 at $DIR/reference_prop.rs:+19:27: +19:40
_0 = const (); // scope 0 at $DIR/reference_prop.rs:+0:16: +20:2
StorageDead(_25); // scope 3 at $DIR/reference_prop.rs:+20:1: +20:2
- StorageDead(_24); // scope 3 at $DIR/reference_prop.rs:+20:1: +20:2
- StorageDead(_23); // scope 3 at $DIR/reference_prop.rs:+20:1: +20:2
- StorageDead(_22); // scope 3 at $DIR/reference_prop.rs:+20:1: +20:2
- StorageDead(_5); // scope 2 at $DIR/reference_prop.rs:+20:1: +20:2
- StorageDead(_3); // scope 1 at $DIR/reference_prop.rs:+20:1: +20:2
StorageDead(_2); // scope 0 at $DIR/reference_prop.rs:+20:1: +20:2
- StorageDead(_1); // scope 0 at $DIR/reference_prop.rs:+20:1: +20:2
return; // scope 0 at $DIR/reference_prop.rs:+20:2: +20:2
}
}

View file

@ -24,7 +24,7 @@
_5 = (*_2); // scope 0 at $SRC_DIR/core/src/intrinsics/mir.rs:LL:COL
_0 = opaque::<i32>(_5) -> bb3; // scope 0 at $DIR/reference_prop.rs:+16:13: +16:38
// mir::Constant
// + span: $DIR/reference_prop.rs:383:28: 383:34
// + span: $DIR/reference_prop.rs:455:28: 455:34
// + literal: Const { ty: fn(i32) {opaque::<i32>}, val: Value(<ZST>) }
}

View file

@ -29,7 +29,7 @@
StorageDead(_3); // scope 0 at $DIR/reference_prop.rs:+21:13: +21:27
_0 = opaque::<i32>(_6) -> bb2; // scope 0 at $DIR/reference_prop.rs:+22:13: +22:38
// mir::Constant
// + span: $DIR/reference_prop.rs:417:28: 417:34
// + span: $DIR/reference_prop.rs:489:28: 489:34
// + literal: Const { ty: fn(i32) {opaque::<i32>}, val: Value(<ZST>) }
}
@ -37,7 +37,7 @@
_7 = (*_4); // scope 0 at $SRC_DIR/core/src/intrinsics/mir.rs:LL:COL
_0 = opaque::<i32>(_7) -> bb3; // scope 0 at $DIR/reference_prop.rs:+27:13: +27:38
// mir::Constant
// + span: $DIR/reference_prop.rs:422:28: 422:34
// + span: $DIR/reference_prop.rs:494:28: 494:34
// + literal: Const { ty: fn(i32) {opaque::<i32>}, val: Value(<ZST>) }
}
@ -45,7 +45,7 @@
_8 = (*_5); // scope 0 at $SRC_DIR/core/src/intrinsics/mir.rs:LL:COL
_0 = opaque::<i32>(_8) -> bb4; // scope 0 at $DIR/reference_prop.rs:+33:13: +33:43
// mir::Constant
// + span: $DIR/reference_prop.rs:428:33: 428:39
// + span: $DIR/reference_prop.rs:500:33: 500:39
// + literal: Const { ty: fn(i32) {opaque::<i32>}, val: Value(<ZST>) }
}

View file

@ -16,7 +16,7 @@
_3 = (*_2); // scope 0 at $SRC_DIR/core/src/intrinsics/mir.rs:LL:COL
_0 = opaque::<i32>(_3) -> bb1; // scope 0 at $DIR/reference_prop.rs:+14:13: +14:43
// mir::Constant
// + span: $DIR/reference_prop.rs:357:33: 357:39
// + span: $DIR/reference_prop.rs:429:33: 429:39
// + literal: Const { ty: fn(i32) {opaque::<i32>}, val: Value(<ZST>) }
}

View file

@ -13,13 +13,16 @@
debug x => _1; // in scope 1 at $DIR/reference_prop.rs:+1:9: +1:14
let _2: &mut i32; // in scope 1 at $DIR/reference_prop.rs:+2:9: +2:13
scope 2 {
debug xref => _2; // in scope 2 at $DIR/reference_prop.rs:+2:9: +2:13
- debug xref => _2; // in scope 2 at $DIR/reference_prop.rs:+2:9: +2:13
+ debug xref => &_1; // in scope 2 at $DIR/reference_prop.rs:+2:9: +2:13
let _3: *mut i32; // in scope 2 at $DIR/reference_prop.rs:+3:9: +3:13
scope 3 {
debug xraw => _3; // in scope 3 at $DIR/reference_prop.rs:+3:9: +3:13
- debug xraw => _3; // in scope 3 at $DIR/reference_prop.rs:+3:9: +3:13
+ debug xraw => &_1; // in scope 3 at $DIR/reference_prop.rs:+3:9: +3:13
let _6: &i32; // in scope 3 at $DIR/reference_prop.rs:+4:9: +4:13
scope 4 {
debug xshr => _6; // in scope 4 at $DIR/reference_prop.rs:+4:9: +4:13
- debug xshr => _6; // in scope 4 at $DIR/reference_prop.rs:+4:9: +4:13
+ debug xshr => &_1; // in scope 4 at $DIR/reference_prop.rs:+4:9: +4:13
let _7: i32; // in scope 4 at $DIR/reference_prop.rs:+6:9: +6:10
scope 5 {
debug a => _7; // in scope 5 at $DIR/reference_prop.rs:+6:9: +6:10
@ -35,19 +38,17 @@
StorageLive(_1); // scope 0 at $DIR/reference_prop.rs:+1:9: +1:14
_1 = const 2_i32; // scope 0 at $DIR/reference_prop.rs:+1:17: +1:18
- StorageLive(_2); // scope 1 at $DIR/reference_prop.rs:+2:9: +2:13
_2 = &mut _1; // scope 1 at $DIR/reference_prop.rs:+2:16: +2:22
StorageLive(_3); // scope 2 at $DIR/reference_prop.rs:+3:9: +3:13
- _2 = &mut _1; // scope 1 at $DIR/reference_prop.rs:+2:16: +2:22
- StorageLive(_3); // scope 2 at $DIR/reference_prop.rs:+3:9: +3:13
- StorageLive(_4); // scope 2 at $DIR/reference_prop.rs:+3:16: +3:36
- StorageLive(_5); // scope 2 at $DIR/reference_prop.rs:+3:16: +3:26
- _5 = &mut (*_2); // scope 2 at $DIR/reference_prop.rs:+3:16: +3:26
- _4 = &raw mut (*_5); // scope 2 at $DIR/reference_prop.rs:+3:16: +3:26
+ _4 = &raw mut _1; // scope 2 at $DIR/reference_prop.rs:+3:16: +3:26
_3 = _4; // scope 2 at $DIR/reference_prop.rs:+3:16: +3:36
- _3 = _4; // scope 2 at $DIR/reference_prop.rs:+3:16: +3:36
- StorageDead(_5); // scope 2 at $DIR/reference_prop.rs:+3:36: +3:37
- StorageDead(_4); // scope 2 at $DIR/reference_prop.rs:+3:36: +3:37
StorageLive(_6); // scope 3 at $DIR/reference_prop.rs:+4:9: +4:13
- StorageLive(_6); // scope 3 at $DIR/reference_prop.rs:+4:9: +4:13
- _6 = &(*_2); // scope 3 at $DIR/reference_prop.rs:+4:16: +4:22
+ _6 = &_1; // scope 3 at $DIR/reference_prop.rs:+4:16: +4:22
StorageLive(_7); // scope 4 at $DIR/reference_prop.rs:+6:9: +6:10
- _7 = (*_6); // scope 4 at $DIR/reference_prop.rs:+6:13: +6:18
- StorageLive(_8); // scope 5 at $DIR/reference_prop.rs:+7:5: +7:26
@ -64,8 +65,8 @@
StorageDead(_10); // scope 5 at $DIR/reference_prop.rs:+8:10: +8:11
StorageDead(_9); // scope 5 at $DIR/reference_prop.rs:+8:10: +8:11
StorageDead(_7); // scope 4 at $DIR/reference_prop.rs:+9:1: +9:2
StorageDead(_6); // scope 3 at $DIR/reference_prop.rs:+9:1: +9:2
StorageDead(_3); // scope 2 at $DIR/reference_prop.rs:+9:1: +9:2
- StorageDead(_6); // scope 3 at $DIR/reference_prop.rs:+9:1: +9:2
- StorageDead(_3); // scope 2 at $DIR/reference_prop.rs:+9:1: +9:2
- StorageDead(_2); // scope 1 at $DIR/reference_prop.rs:+9:1: +9:2
StorageDead(_1); // scope 0 at $DIR/reference_prop.rs:+9:1: +9:2
return; // scope 0 at $DIR/reference_prop.rs:+9:2: +9:2

View file

@ -17,12 +17,12 @@
let mut _17: (); // in scope 0 at $DIR/reference_prop.rs:+17:16: +17:18
let _18: (); // in scope 0 at $DIR/reference_prop.rs:+21:5: +27:6
let _19: usize; // in scope 0 at $DIR/reference_prop.rs:+22:13: +22:14
let _23: (); // in scope 0 at $DIR/reference_prop.rs:+26:9: +26:19
let mut _24: (); // in scope 0 at $DIR/reference_prop.rs:+26:16: +26:18
let _23: (); // in scope 0 at $DIR/reference_prop.rs:+26:9: +26:18
let mut _24: &&usize; // in scope 0 at $DIR/reference_prop.rs:+26:16: +26:17
let _25: (); // in scope 0 at $DIR/reference_prop.rs:+30:5: +36:6
let _26: usize; // in scope 0 at $DIR/reference_prop.rs:+31:13: +31:14
let _30: (); // in scope 0 at $DIR/reference_prop.rs:+35:9: +35:19
let mut _31: (); // in scope 0 at $DIR/reference_prop.rs:+35:16: +35:18
let _30: (); // in scope 0 at $DIR/reference_prop.rs:+35:9: +35:18
let mut _31: *mut &usize; // in scope 0 at $DIR/reference_prop.rs:+35:16: +35:17
let _32: (); // in scope 0 at $DIR/reference_prop.rs:+39:5: +44:6
let _33: usize; // in scope 0 at $DIR/reference_prop.rs:+40:13: +40:14
let _36: (); // in scope 0 at $DIR/reference_prop.rs:+43:9: +43:18
@ -35,16 +35,25 @@
let _48: &T; // in scope 0 at $DIR/reference_prop.rs:+61:13: +61:14
let _50: (); // in scope 0 at $DIR/reference_prop.rs:+63:9: +63:19
let mut _51: (); // in scope 0 at $DIR/reference_prop.rs:+63:16: +63:18
let _52: &T; // in scope 0 at $DIR/reference_prop.rs:+68:13: +68:14
let mut _53: &T; // in scope 0 at $DIR/reference_prop.rs:+69:20: +69:28
let _54: &T; // in scope 0 at $DIR/reference_prop.rs:+69:20: +69:28
let _56: (); // in scope 0 at $DIR/reference_prop.rs:+71:9: +71:19
let mut _57: (); // in scope 0 at $DIR/reference_prop.rs:+71:16: +71:18
let _52: (); // in scope 0 at $DIR/reference_prop.rs:+67:5: +72:6
let _53: &T; // in scope 0 at $DIR/reference_prop.rs:+68:13: +68:14
let mut _54: &T; // in scope 0 at $DIR/reference_prop.rs:+69:20: +69:28
let _55: &T; // in scope 0 at $DIR/reference_prop.rs:+69:20: +69:28
let _57: (); // in scope 0 at $DIR/reference_prop.rs:+71:9: +71:19
let mut _58: (); // in scope 0 at $DIR/reference_prop.rs:+71:16: +71:18
let _59: (); // in scope 0 at $DIR/reference_prop.rs:+75:5: +81:6
let _60: usize; // in scope 0 at $DIR/reference_prop.rs:+76:13: +76:14
let _64: (); // in scope 0 at $DIR/reference_prop.rs:+80:9: +80:19
let mut _65: (); // in scope 0 at $DIR/reference_prop.rs:+80:16: +80:18
let _66: usize; // in scope 0 at $DIR/reference_prop.rs:+85:13: +85:14
let _70: (); // in scope 0 at $DIR/reference_prop.rs:+89:9: +89:19
let mut _71: (); // in scope 0 at $DIR/reference_prop.rs:+89:16: +89:18
scope 1 {
debug a => _4; // in scope 1 at $DIR/reference_prop.rs:+3:13: +3:14
let _5: &usize; // in scope 1 at $DIR/reference_prop.rs:+4:13: +4:14
scope 2 {
debug b => _5; // in scope 2 at $DIR/reference_prop.rs:+4:13: +4:14
- debug b => _5; // in scope 2 at $DIR/reference_prop.rs:+4:13: +4:14
+ debug b => &_4; // in scope 2 at $DIR/reference_prop.rs:+4:13: +4:14
let _6: usize; // in scope 2 at $DIR/reference_prop.rs:+5:13: +5:14
scope 3 {
debug c => _6; // in scope 3 at $DIR/reference_prop.rs:+5:13: +5:14
@ -86,7 +95,7 @@
let mut _27: &usize; // in scope 12 at $DIR/reference_prop.rs:+32:13: +32:18
scope 13 {
debug b => _27; // in scope 13 at $DIR/reference_prop.rs:+32:13: +32:18
let _28: &mut &usize; // in scope 13 at $DIR/reference_prop.rs:+33:13: +33:14
let _28: *mut &usize; // in scope 13 at $DIR/reference_prop.rs:+33:13: +33:14
scope 14 {
debug d => _28; // in scope 14 at $DIR/reference_prop.rs:+33:13: +33:14
let _29: usize; // in scope 14 at $DIR/reference_prop.rs:+34:13: +34:14
@ -131,17 +140,52 @@
}
}
scope 25 {
debug a => _48; // in scope 25 at $DIR/reference_prop.rs:+61:13: +61:14
- debug a => _48; // in scope 25 at $DIR/reference_prop.rs:+61:13: +61:14
+ debug a => _1; // in scope 25 at $DIR/reference_prop.rs:+61:13: +61:14
let _49: T; // in scope 25 at $DIR/reference_prop.rs:+62:13: +62:14
scope 26 {
debug b => _49; // in scope 26 at $DIR/reference_prop.rs:+62:13: +62:14
}
}
scope 27 {
debug a => _52; // in scope 27 at $DIR/reference_prop.rs:+68:13: +68:14
let _55: T; // in scope 27 at $DIR/reference_prop.rs:+70:13: +70:14
debug a => _53; // in scope 27 at $DIR/reference_prop.rs:+68:13: +68:14
let _56: T; // in scope 27 at $DIR/reference_prop.rs:+70:13: +70:14
scope 28 {
debug b => _55; // in scope 28 at $DIR/reference_prop.rs:+70:13: +70:14
debug b => _56; // in scope 28 at $DIR/reference_prop.rs:+70:13: +70:14
}
}
scope 29 {
debug a => _60; // in scope 29 at $DIR/reference_prop.rs:+76:13: +76:14
let _61: &usize; // in scope 29 at $DIR/reference_prop.rs:+77:13: +77:14
scope 30 {
- debug b => _61; // in scope 30 at $DIR/reference_prop.rs:+77:13: +77:14
+ debug b => &_60; // in scope 30 at $DIR/reference_prop.rs:+77:13: +77:14
let _62: &&usize; // in scope 30 at $DIR/reference_prop.rs:+78:13: +78:14
scope 31 {
- debug d => _62; // in scope 31 at $DIR/reference_prop.rs:+78:13: +78:14
+ debug d => &&_60; // in scope 31 at $DIR/reference_prop.rs:+78:13: +78:14
let _63: usize; // in scope 31 at $DIR/reference_prop.rs:+79:13: +79:14
scope 32 {
debug c => _63; // in scope 32 at $DIR/reference_prop.rs:+79:13: +79:14
}
}
}
}
scope 33 {
debug a => _66; // in scope 33 at $DIR/reference_prop.rs:+85:13: +85:14
let mut _67: &usize; // in scope 33 at $DIR/reference_prop.rs:+86:13: +86:18
scope 34 {
- debug b => _67; // in scope 34 at $DIR/reference_prop.rs:+86:13: +86:18
+ debug b => &_66; // in scope 34 at $DIR/reference_prop.rs:+86:13: +86:18
let _68: &mut &usize; // in scope 34 at $DIR/reference_prop.rs:+87:13: +87:14
scope 35 {
- debug d => _68; // in scope 35 at $DIR/reference_prop.rs:+87:13: +87:14
+ debug d => &&_66; // in scope 35 at $DIR/reference_prop.rs:+87:13: +87:14
let _69: usize; // in scope 35 at $DIR/reference_prop.rs:+88:13: +88:14
scope 36 {
debug c => _69; // in scope 36 at $DIR/reference_prop.rs:+88:13: +88:14
}
}
}
}
@ -149,8 +193,8 @@
- StorageLive(_3); // scope 0 at $DIR/reference_prop.rs:+2:5: +7:6
StorageLive(_4); // scope 0 at $DIR/reference_prop.rs:+3:13: +3:14
_4 = const 5_usize; // scope 0 at $DIR/reference_prop.rs:+3:17: +3:24
StorageLive(_5); // scope 1 at $DIR/reference_prop.rs:+4:13: +4:14
_5 = &_4; // scope 1 at $DIR/reference_prop.rs:+4:17: +4:19
- StorageLive(_5); // scope 1 at $DIR/reference_prop.rs:+4:13: +4:14
- _5 = &_4; // scope 1 at $DIR/reference_prop.rs:+4:17: +4:19
StorageLive(_6); // scope 2 at $DIR/reference_prop.rs:+5:13: +5:14
- _6 = (*_5); // scope 2 at $DIR/reference_prop.rs:+5:17: +5:19
+ _6 = _4; // scope 2 at $DIR/reference_prop.rs:+5:17: +5:19
@ -168,7 +212,7 @@
StorageDead(_7); // scope 3 at $DIR/reference_prop.rs:+6:19: +6:20
- _3 = const (); // scope 0 at $DIR/reference_prop.rs:+2:5: +7:6
StorageDead(_6); // scope 2 at $DIR/reference_prop.rs:+7:5: +7:6
StorageDead(_5); // scope 1 at $DIR/reference_prop.rs:+7:5: +7:6
- StorageDead(_5); // scope 1 at $DIR/reference_prop.rs:+7:5: +7:6
StorageDead(_4); // scope 0 at $DIR/reference_prop.rs:+7:5: +7:6
- StorageDead(_3); // scope 0 at $DIR/reference_prop.rs:+7:5: +7:6
- StorageLive(_9); // scope 0 at $DIR/reference_prop.rs:+10:5: +18:6
@ -215,18 +259,18 @@
_21 = &_20; // scope 9 at $DIR/reference_prop.rs:+24:17: +24:19
StorageLive(_22); // scope 10 at $DIR/reference_prop.rs:+25:13: +25:14
_22 = (*_20); // scope 10 at $DIR/reference_prop.rs:+25:17: +25:19
StorageLive(_23); // scope 11 at $DIR/reference_prop.rs:+26:9: +26:19
StorageLive(_24); // scope 11 at $DIR/reference_prop.rs:+26:16: +26:18
_24 = (); // scope 11 at $DIR/reference_prop.rs:+26:16: +26:18
_23 = opaque::<()>(move _24) -> bb3; // scope 11 at $DIR/reference_prop.rs:+26:9: +26:19
StorageLive(_23); // scope 11 at $DIR/reference_prop.rs:+26:9: +26:18
StorageLive(_24); // scope 11 at $DIR/reference_prop.rs:+26:16: +26:17
_24 = _21; // scope 11 at $DIR/reference_prop.rs:+26:16: +26:17
_23 = opaque::<&&usize>(move _24) -> bb3; // scope 11 at $DIR/reference_prop.rs:+26:9: +26:18
// mir::Constant
// + span: $DIR/reference_prop.rs:36:9: 36:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
// + literal: Const { ty: fn(&&usize) {opaque::<&&usize>}, val: Value(<ZST>) }
}
bb3: {
StorageDead(_24); // scope 11 at $DIR/reference_prop.rs:+26:18: +26:19
StorageDead(_23); // scope 11 at $DIR/reference_prop.rs:+26:19: +26:20
StorageDead(_24); // scope 11 at $DIR/reference_prop.rs:+26:17: +26:18
StorageDead(_23); // scope 11 at $DIR/reference_prop.rs:+26:18: +26:19
- _18 = const (); // scope 0 at $DIR/reference_prop.rs:+21:5: +27:6
StorageDead(_22); // scope 10 at $DIR/reference_prop.rs:+27:5: +27:6
StorageDead(_21); // scope 9 at $DIR/reference_prop.rs:+27:5: +27:6
@ -239,21 +283,21 @@
StorageLive(_27); // scope 12 at $DIR/reference_prop.rs:+32:13: +32:18
_27 = &_26; // scope 12 at $DIR/reference_prop.rs:+32:21: +32:23
StorageLive(_28); // scope 13 at $DIR/reference_prop.rs:+33:13: +33:14
_28 = &mut _27; // scope 13 at $DIR/reference_prop.rs:+33:17: +33:23
_28 = &raw mut _27; // scope 13 at $DIR/reference_prop.rs:+33:17: +33:27
StorageLive(_29); // scope 14 at $DIR/reference_prop.rs:+34:13: +34:14
_29 = (*_27); // scope 14 at $DIR/reference_prop.rs:+34:17: +34:19
StorageLive(_30); // scope 15 at $DIR/reference_prop.rs:+35:9: +35:19
StorageLive(_31); // scope 15 at $DIR/reference_prop.rs:+35:16: +35:18
_31 = (); // scope 15 at $DIR/reference_prop.rs:+35:16: +35:18
_30 = opaque::<()>(move _31) -> bb4; // scope 15 at $DIR/reference_prop.rs:+35:9: +35:19
StorageLive(_30); // scope 15 at $DIR/reference_prop.rs:+35:9: +35:18
StorageLive(_31); // scope 15 at $DIR/reference_prop.rs:+35:16: +35:17
_31 = _28; // scope 15 at $DIR/reference_prop.rs:+35:16: +35:17
_30 = opaque::<*mut &usize>(move _31) -> bb4; // scope 15 at $DIR/reference_prop.rs:+35:9: +35:18
// mir::Constant
// + span: $DIR/reference_prop.rs:45:9: 45:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
// + literal: Const { ty: fn(*mut &usize) {opaque::<*mut &usize>}, val: Value(<ZST>) }
}
bb4: {
StorageDead(_31); // scope 15 at $DIR/reference_prop.rs:+35:18: +35:19
StorageDead(_30); // scope 15 at $DIR/reference_prop.rs:+35:19: +35:20
StorageDead(_31); // scope 15 at $DIR/reference_prop.rs:+35:17: +35:18
StorageDead(_30); // scope 15 at $DIR/reference_prop.rs:+35:18: +35:19
- _25 = const (); // scope 0 at $DIR/reference_prop.rs:+30:5: +36:6
StorageDead(_29); // scope 14 at $DIR/reference_prop.rs:+36:5: +36:6
StorageDead(_28); // scope 13 at $DIR/reference_prop.rs:+36:5: +36:6
@ -321,8 +365,8 @@
StorageDead(_39); // scope 0 at $DIR/reference_prop.rs:+57:5: +57:6
- StorageDead(_38); // scope 0 at $DIR/reference_prop.rs:+57:5: +57:6
- StorageLive(_47); // scope 0 at $DIR/reference_prop.rs:+60:5: +64:6
StorageLive(_48); // scope 0 at $DIR/reference_prop.rs:+61:13: +61:14
_48 = &(*_1); // scope 0 at $DIR/reference_prop.rs:+61:17: +61:25
- StorageLive(_48); // scope 0 at $DIR/reference_prop.rs:+61:13: +61:14
- _48 = &(*_1); // scope 0 at $DIR/reference_prop.rs:+61:17: +61:25
StorageLive(_49); // scope 25 at $DIR/reference_prop.rs:+62:13: +62:14
- _49 = (*_48); // scope 25 at $DIR/reference_prop.rs:+62:17: +62:19
+ _49 = (*_1); // scope 25 at $DIR/reference_prop.rs:+62:17: +62:19
@ -340,36 +384,92 @@
StorageDead(_50); // scope 26 at $DIR/reference_prop.rs:+63:19: +63:20
- _47 = const (); // scope 0 at $DIR/reference_prop.rs:+60:5: +64:6
StorageDead(_49); // scope 25 at $DIR/reference_prop.rs:+64:5: +64:6
StorageDead(_48); // scope 0 at $DIR/reference_prop.rs:+64:5: +64:6
- StorageDead(_48); // scope 0 at $DIR/reference_prop.rs:+64:5: +64:6
- StorageDead(_47); // scope 0 at $DIR/reference_prop.rs:+64:5: +64:6
StorageLive(_52); // scope 0 at $DIR/reference_prop.rs:+68:13: +68:14
_52 = &(*_2); // scope 0 at $DIR/reference_prop.rs:+68:17: +68:27
StorageLive(_53); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:28
- StorageLive(_54); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:28
- _54 = &(*_1); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:28
- _53 = &(*_54); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:28
+ _53 = &(*_1); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:28
_2 = move _53; // scope 27 at $DIR/reference_prop.rs:+69:9: +69:28
StorageDead(_53); // scope 27 at $DIR/reference_prop.rs:+69:27: +69:28
- StorageDead(_54); // scope 27 at $DIR/reference_prop.rs:+69:28: +69:29
StorageLive(_55); // scope 27 at $DIR/reference_prop.rs:+70:13: +70:14
_55 = (*_52); // scope 27 at $DIR/reference_prop.rs:+70:17: +70:19
StorageLive(_56); // scope 28 at $DIR/reference_prop.rs:+71:9: +71:19
StorageLive(_57); // scope 28 at $DIR/reference_prop.rs:+71:16: +71:18
_57 = (); // scope 28 at $DIR/reference_prop.rs:+71:16: +71:18
_56 = opaque::<()>(move _57) -> bb8; // scope 28 at $DIR/reference_prop.rs:+71:9: +71:19
- StorageLive(_52); // scope 0 at $DIR/reference_prop.rs:+67:5: +72:6
StorageLive(_53); // scope 0 at $DIR/reference_prop.rs:+68:13: +68:14
_53 = &(*_2); // scope 0 at $DIR/reference_prop.rs:+68:17: +68:27
StorageLive(_54); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:28
- StorageLive(_55); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:28
- _55 = &(*_1); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:28
- _54 = &(*_55); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:28
+ _54 = &(*_1); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:28
_2 = move _54; // scope 27 at $DIR/reference_prop.rs:+69:9: +69:28
StorageDead(_54); // scope 27 at $DIR/reference_prop.rs:+69:27: +69:28
- StorageDead(_55); // scope 27 at $DIR/reference_prop.rs:+69:28: +69:29
StorageLive(_56); // scope 27 at $DIR/reference_prop.rs:+70:13: +70:14
_56 = (*_53); // scope 27 at $DIR/reference_prop.rs:+70:17: +70:19
StorageLive(_57); // scope 28 at $DIR/reference_prop.rs:+71:9: +71:19
StorageLive(_58); // scope 28 at $DIR/reference_prop.rs:+71:16: +71:18
_58 = (); // scope 28 at $DIR/reference_prop.rs:+71:16: +71:18
_57 = opaque::<()>(move _58) -> bb8; // scope 28 at $DIR/reference_prop.rs:+71:9: +71:19
// mir::Constant
// + span: $DIR/reference_prop.rs:81:9: 81:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
bb8: {
StorageDead(_57); // scope 28 at $DIR/reference_prop.rs:+71:18: +71:19
StorageDead(_56); // scope 28 at $DIR/reference_prop.rs:+71:19: +71:20
_0 = const (); // scope 0 at $DIR/reference_prop.rs:+67:5: +72:6
StorageDead(_55); // scope 27 at $DIR/reference_prop.rs:+72:5: +72:6
StorageDead(_52); // scope 0 at $DIR/reference_prop.rs:+72:5: +72:6
return; // scope 0 at $DIR/reference_prop.rs:+73:2: +73:2
StorageDead(_58); // scope 28 at $DIR/reference_prop.rs:+71:18: +71:19
StorageDead(_57); // scope 28 at $DIR/reference_prop.rs:+71:19: +71:20
- _52 = const (); // scope 0 at $DIR/reference_prop.rs:+67:5: +72:6
StorageDead(_56); // scope 27 at $DIR/reference_prop.rs:+72:5: +72:6
StorageDead(_53); // scope 0 at $DIR/reference_prop.rs:+72:5: +72:6
- StorageDead(_52); // scope 0 at $DIR/reference_prop.rs:+72:5: +72:6
- StorageLive(_59); // scope 0 at $DIR/reference_prop.rs:+75:5: +81:6
StorageLive(_60); // scope 0 at $DIR/reference_prop.rs:+76:13: +76:14
_60 = const 5_usize; // scope 0 at $DIR/reference_prop.rs:+76:17: +76:24
- StorageLive(_61); // scope 29 at $DIR/reference_prop.rs:+77:13: +77:14
- _61 = &_60; // scope 29 at $DIR/reference_prop.rs:+77:17: +77:19
- StorageLive(_62); // scope 30 at $DIR/reference_prop.rs:+78:13: +78:14
- _62 = &_61; // scope 30 at $DIR/reference_prop.rs:+78:17: +78:19
StorageLive(_63); // scope 31 at $DIR/reference_prop.rs:+79:13: +79:14
- _63 = (*_61); // scope 31 at $DIR/reference_prop.rs:+79:17: +79:19
+ _63 = _60; // scope 31 at $DIR/reference_prop.rs:+79:17: +79:19
StorageLive(_64); // scope 32 at $DIR/reference_prop.rs:+80:9: +80:19
StorageLive(_65); // scope 32 at $DIR/reference_prop.rs:+80:16: +80:18
_65 = (); // scope 32 at $DIR/reference_prop.rs:+80:16: +80:18
_64 = opaque::<()>(move _65) -> bb9; // scope 32 at $DIR/reference_prop.rs:+80:9: +80:19
// mir::Constant
// + span: $DIR/reference_prop.rs:90:9: 90:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
bb9: {
StorageDead(_65); // scope 32 at $DIR/reference_prop.rs:+80:18: +80:19
StorageDead(_64); // scope 32 at $DIR/reference_prop.rs:+80:19: +80:20
- _59 = const (); // scope 0 at $DIR/reference_prop.rs:+75:5: +81:6
StorageDead(_63); // scope 31 at $DIR/reference_prop.rs:+81:5: +81:6
- StorageDead(_62); // scope 30 at $DIR/reference_prop.rs:+81:5: +81:6
- StorageDead(_61); // scope 29 at $DIR/reference_prop.rs:+81:5: +81:6
StorageDead(_60); // scope 0 at $DIR/reference_prop.rs:+81:5: +81:6
- StorageDead(_59); // scope 0 at $DIR/reference_prop.rs:+81:5: +81:6
StorageLive(_66); // scope 0 at $DIR/reference_prop.rs:+85:13: +85:14
_66 = const 5_usize; // scope 0 at $DIR/reference_prop.rs:+85:17: +85:24
- StorageLive(_67); // scope 33 at $DIR/reference_prop.rs:+86:13: +86:18
- _67 = &_66; // scope 33 at $DIR/reference_prop.rs:+86:21: +86:23
- StorageLive(_68); // scope 34 at $DIR/reference_prop.rs:+87:13: +87:14
- _68 = &mut _67; // scope 34 at $DIR/reference_prop.rs:+87:17: +87:23
StorageLive(_69); // scope 35 at $DIR/reference_prop.rs:+88:13: +88:14
- _69 = (*_67); // scope 35 at $DIR/reference_prop.rs:+88:17: +88:19
+ _69 = _66; // scope 35 at $DIR/reference_prop.rs:+88:17: +88:19
StorageLive(_70); // scope 36 at $DIR/reference_prop.rs:+89:9: +89:19
StorageLive(_71); // scope 36 at $DIR/reference_prop.rs:+89:16: +89:18
_71 = (); // scope 36 at $DIR/reference_prop.rs:+89:16: +89:18
_70 = opaque::<()>(move _71) -> bb10; // scope 36 at $DIR/reference_prop.rs:+89:9: +89:19
// mir::Constant
// + span: $DIR/reference_prop.rs:99:9: 99:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
bb10: {
StorageDead(_71); // scope 36 at $DIR/reference_prop.rs:+89:18: +89:19
StorageDead(_70); // scope 36 at $DIR/reference_prop.rs:+89:19: +89:20
_0 = const (); // scope 0 at $DIR/reference_prop.rs:+84:5: +90:6
StorageDead(_69); // scope 35 at $DIR/reference_prop.rs:+90:5: +90:6
- StorageDead(_68); // scope 34 at $DIR/reference_prop.rs:+90:5: +90:6
- StorageDead(_67); // scope 33 at $DIR/reference_prop.rs:+90:5: +90:6
StorageDead(_66); // scope 0 at $DIR/reference_prop.rs:+90:5: +90:6
return; // scope 0 at $DIR/reference_prop.rs:+91:2: +91:2
}
}

View file

@ -13,11 +13,11 @@
let _15: (); // in scope 0 at $DIR/reference_prop.rs:+17:9: +17:19
let mut _16: (); // in scope 0 at $DIR/reference_prop.rs:+17:16: +17:18
let _17: (); // in scope 0 at $DIR/reference_prop.rs:+21:5: +27:6
let _22: (); // in scope 0 at $DIR/reference_prop.rs:+26:9: +26:19
let mut _23: (); // in scope 0 at $DIR/reference_prop.rs:+26:16: +26:18
let _22: (); // in scope 0 at $DIR/reference_prop.rs:+26:9: +26:18
let mut _23: &*const usize; // in scope 0 at $DIR/reference_prop.rs:+26:16: +26:17
let _24: (); // in scope 0 at $DIR/reference_prop.rs:+30:5: +36:6
let _29: (); // in scope 0 at $DIR/reference_prop.rs:+35:9: +35:19
let mut _30: (); // in scope 0 at $DIR/reference_prop.rs:+35:16: +35:18
let _29: (); // in scope 0 at $DIR/reference_prop.rs:+35:9: +35:18
let mut _30: *mut *const usize; // in scope 0 at $DIR/reference_prop.rs:+35:16: +35:17
let _31: (); // in scope 0 at $DIR/reference_prop.rs:+39:5: +44:6
let _35: (); // in scope 0 at $DIR/reference_prop.rs:+43:9: +43:18
let mut _36: *const usize; // in scope 0 at $DIR/reference_prop.rs:+43:16: +43:17
@ -31,15 +31,22 @@
let mut _53: *const T; // in scope 0 at $DIR/reference_prop.rs:+69:20: +69:38
let _55: (); // in scope 0 at $DIR/reference_prop.rs:+71:9: +71:19
let mut _56: (); // in scope 0 at $DIR/reference_prop.rs:+71:16: +71:18
let _61: (); // in scope 0 at $DIR/reference_prop.rs:+80:9: +80:19
let mut _62: (); // in scope 0 at $DIR/reference_prop.rs:+80:16: +80:18
let _57: (); // in scope 0 at $DIR/reference_prop.rs:+75:5: +81:6
let _62: (); // in scope 0 at $DIR/reference_prop.rs:+80:9: +80:19
let mut _63: (); // in scope 0 at $DIR/reference_prop.rs:+80:16: +80:18
let _64: (); // in scope 0 at $DIR/reference_prop.rs:+84:5: +90:6
let _69: (); // in scope 0 at $DIR/reference_prop.rs:+89:9: +89:19
let mut _70: (); // in scope 0 at $DIR/reference_prop.rs:+89:16: +89:18
let _75: (); // in scope 0 at $DIR/reference_prop.rs:+98:9: +98:19
let mut _76: (); // in scope 0 at $DIR/reference_prop.rs:+98:16: +98:18
scope 1 {
let _4: usize; // in scope 1 at $DIR/reference_prop.rs:+3:13: +3:14
scope 2 {
debug a => _4; // in scope 2 at $DIR/reference_prop.rs:+3:13: +3:14
let _5: *const usize; // in scope 2 at $DIR/reference_prop.rs:+4:13: +4:14
scope 3 {
debug b => _5; // in scope 3 at $DIR/reference_prop.rs:+4:13: +4:14
- debug b => _5; // in scope 3 at $DIR/reference_prop.rs:+4:13: +4:14
+ debug b => &_4; // in scope 3 at $DIR/reference_prop.rs:+4:13: +4:14
let _6: usize; // in scope 3 at $DIR/reference_prop.rs:+5:13: +5:14
scope 4 {
debug c => _6; // in scope 4 at $DIR/reference_prop.rs:+5:13: +5:14
@ -90,7 +97,7 @@
let mut _26: *const usize; // in scope 16 at $DIR/reference_prop.rs:+32:13: +32:18
scope 17 {
debug b => _26; // in scope 17 at $DIR/reference_prop.rs:+32:13: +32:18
let _27: &mut *const usize; // in scope 17 at $DIR/reference_prop.rs:+33:13: +33:14
let _27: *mut *const usize; // in scope 17 at $DIR/reference_prop.rs:+33:13: +33:14
scope 18 {
debug d => _27; // in scope 18 at $DIR/reference_prop.rs:+33:13: +33:14
let _28: usize; // in scope 18 at $DIR/reference_prop.rs:+34:13: +34:14
@ -144,7 +151,8 @@
scope 31 {
let _47: *const T; // in scope 31 at $DIR/reference_prop.rs:+61:13: +61:14
scope 32 {
debug a => _47; // in scope 32 at $DIR/reference_prop.rs:+61:13: +61:14
- debug a => _47; // in scope 32 at $DIR/reference_prop.rs:+61:13: +61:14
+ debug a => _1; // in scope 32 at $DIR/reference_prop.rs:+61:13: +61:14
let _48: T; // in scope 32 at $DIR/reference_prop.rs:+62:13: +62:14
scope 33 {
debug b => _48; // in scope 33 at $DIR/reference_prop.rs:+62:13: +62:14
@ -162,18 +170,60 @@
}
}
scope 37 {
let _57: usize; // in scope 37 at $DIR/reference_prop.rs:+76:13: +76:14
let _58: usize; // in scope 37 at $DIR/reference_prop.rs:+76:13: +76:14
scope 38 {
debug a => _57; // in scope 38 at $DIR/reference_prop.rs:+76:13: +76:14
let _58: *const usize; // in scope 38 at $DIR/reference_prop.rs:+77:13: +77:14
debug a => _58; // in scope 38 at $DIR/reference_prop.rs:+76:13: +76:14
let _59: *const usize; // in scope 38 at $DIR/reference_prop.rs:+77:13: +77:14
scope 39 {
debug b => _58; // in scope 39 at $DIR/reference_prop.rs:+77:13: +77:14
let _59: *const usize; // in scope 39 at $DIR/reference_prop.rs:+78:13: +78:14
- debug b => _59; // in scope 39 at $DIR/reference_prop.rs:+77:13: +77:14
+ debug b => &_58; // in scope 39 at $DIR/reference_prop.rs:+77:13: +77:14
let _60: *const usize; // in scope 39 at $DIR/reference_prop.rs:+78:13: +78:14
scope 40 {
debug c => _59; // in scope 40 at $DIR/reference_prop.rs:+78:13: +78:14
let _60: usize; // in scope 40 at $DIR/reference_prop.rs:+79:13: +79:14
- debug c => _60; // in scope 40 at $DIR/reference_prop.rs:+78:13: +78:14
+ debug c => &_58; // in scope 40 at $DIR/reference_prop.rs:+78:13: +78:14
let _61: usize; // in scope 40 at $DIR/reference_prop.rs:+79:13: +79:14
scope 41 {
debug e => _60; // in scope 41 at $DIR/reference_prop.rs:+79:13: +79:14
debug e => _61; // in scope 41 at $DIR/reference_prop.rs:+79:13: +79:14
}
}
}
}
}
scope 42 {
let _65: usize; // in scope 42 at $DIR/reference_prop.rs:+85:13: +85:14
scope 43 {
debug a => _65; // in scope 43 at $DIR/reference_prop.rs:+85:13: +85:14
let _66: *const usize; // in scope 43 at $DIR/reference_prop.rs:+86:13: +86:14
scope 44 {
- debug b => _66; // in scope 44 at $DIR/reference_prop.rs:+86:13: +86:14
+ debug b => &_65; // in scope 44 at $DIR/reference_prop.rs:+86:13: +86:14
let _67: &*const usize; // in scope 44 at $DIR/reference_prop.rs:+87:13: +87:14
scope 45 {
- debug d => _67; // in scope 45 at $DIR/reference_prop.rs:+87:13: +87:14
+ debug d => &&_65; // in scope 45 at $DIR/reference_prop.rs:+87:13: +87:14
let _68: usize; // in scope 45 at $DIR/reference_prop.rs:+88:13: +88:14
scope 46 {
debug c => _68; // in scope 46 at $DIR/reference_prop.rs:+88:13: +88:14
}
}
}
}
}
scope 47 {
let _71: usize; // in scope 47 at $DIR/reference_prop.rs:+94:13: +94:14
scope 48 {
debug a => _71; // in scope 48 at $DIR/reference_prop.rs:+94:13: +94:14
let mut _72: *const usize; // in scope 48 at $DIR/reference_prop.rs:+95:13: +95:18
scope 49 {
- debug b => _72; // in scope 49 at $DIR/reference_prop.rs:+95:13: +95:18
+ debug b => &_71; // in scope 49 at $DIR/reference_prop.rs:+95:13: +95:18
let _73: &mut *const usize; // in scope 49 at $DIR/reference_prop.rs:+96:13: +96:14
scope 50 {
- debug d => _73; // in scope 50 at $DIR/reference_prop.rs:+96:13: +96:14
+ debug d => &&_71; // in scope 50 at $DIR/reference_prop.rs:+96:13: +96:14
let _74: usize; // in scope 50 at $DIR/reference_prop.rs:+97:13: +97:14
scope 51 {
debug c => _74; // in scope 51 at $DIR/reference_prop.rs:+97:13: +97:14
}
}
}
@ -184,8 +234,8 @@
- StorageLive(_3); // scope 0 at $DIR/reference_prop.rs:+2:5: +7:6
StorageLive(_4); // scope 1 at $DIR/reference_prop.rs:+3:13: +3:14
_4 = const 5_usize; // scope 1 at $DIR/reference_prop.rs:+3:17: +3:24
StorageLive(_5); // scope 2 at $DIR/reference_prop.rs:+4:13: +4:14
_5 = &raw const _4; // scope 2 at $DIR/reference_prop.rs:+4:17: +4:29
- StorageLive(_5); // scope 2 at $DIR/reference_prop.rs:+4:13: +4:14
- _5 = &raw const _4; // scope 2 at $DIR/reference_prop.rs:+4:17: +4:29
StorageLive(_6); // scope 3 at $DIR/reference_prop.rs:+5:13: +5:14
- _6 = (*_5); // scope 3 at $DIR/reference_prop.rs:+5:17: +5:19
+ _6 = _4; // scope 3 at $DIR/reference_prop.rs:+5:17: +5:19
@ -194,7 +244,7 @@
_8 = (); // scope 4 at $DIR/reference_prop.rs:+6:16: +6:18
_7 = opaque::<()>(move _8) -> bb1; // scope 4 at $DIR/reference_prop.rs:+6:9: +6:19
// mir::Constant
// + span: $DIR/reference_prop.rs:166:9: 166:15
// + span: $DIR/reference_prop.rs:202:9: 202:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
@ -203,7 +253,7 @@
StorageDead(_7); // scope 4 at $DIR/reference_prop.rs:+6:19: +6:20
- _3 = const (); // scope 1 at $DIR/reference_prop.rs:+2:5: +7:6
StorageDead(_6); // scope 3 at $DIR/reference_prop.rs:+7:5: +7:6
StorageDead(_5); // scope 2 at $DIR/reference_prop.rs:+7:5: +7:6
- StorageDead(_5); // scope 2 at $DIR/reference_prop.rs:+7:5: +7:6
StorageDead(_4); // scope 1 at $DIR/reference_prop.rs:+7:5: +7:6
- StorageDead(_3); // scope 0 at $DIR/reference_prop.rs:+7:5: +7:6
- StorageLive(_9); // scope 0 at $DIR/reference_prop.rs:+10:5: +18:6
@ -224,7 +274,7 @@
_16 = (); // scope 9 at $DIR/reference_prop.rs:+17:16: +17:18
_15 = opaque::<()>(move _16) -> bb2; // scope 9 at $DIR/reference_prop.rs:+17:9: +17:19
// mir::Constant
// + span: $DIR/reference_prop.rs:177:9: 177:15
// + span: $DIR/reference_prop.rs:213:9: 213:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
@ -246,18 +296,18 @@
_20 = &_19; // scope 12 at $DIR/reference_prop.rs:+24:17: +24:19
StorageLive(_21); // scope 13 at $DIR/reference_prop.rs:+25:13: +25:14
_21 = (*_19); // scope 13 at $DIR/reference_prop.rs:+25:17: +25:19
StorageLive(_22); // scope 14 at $DIR/reference_prop.rs:+26:9: +26:19
StorageLive(_23); // scope 14 at $DIR/reference_prop.rs:+26:16: +26:18
_23 = (); // scope 14 at $DIR/reference_prop.rs:+26:16: +26:18
_22 = opaque::<()>(move _23) -> bb3; // scope 14 at $DIR/reference_prop.rs:+26:9: +26:19
StorageLive(_22); // scope 14 at $DIR/reference_prop.rs:+26:9: +26:18
StorageLive(_23); // scope 14 at $DIR/reference_prop.rs:+26:16: +26:17
_23 = _20; // scope 14 at $DIR/reference_prop.rs:+26:16: +26:17
_22 = opaque::<&*const usize>(move _23) -> bb3; // scope 14 at $DIR/reference_prop.rs:+26:9: +26:18
// mir::Constant
// + span: $DIR/reference_prop.rs:186:9: 186:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
// + span: $DIR/reference_prop.rs:222:9: 222:15
// + literal: Const { ty: fn(&*const usize) {opaque::<&*const usize>}, val: Value(<ZST>) }
}
bb3: {
StorageDead(_23); // scope 14 at $DIR/reference_prop.rs:+26:18: +26:19
StorageDead(_22); // scope 14 at $DIR/reference_prop.rs:+26:19: +26:20
StorageDead(_23); // scope 14 at $DIR/reference_prop.rs:+26:17: +26:18
StorageDead(_22); // scope 14 at $DIR/reference_prop.rs:+26:18: +26:19
- _17 = const (); // scope 10 at $DIR/reference_prop.rs:+21:5: +27:6
StorageDead(_21); // scope 13 at $DIR/reference_prop.rs:+27:5: +27:6
StorageDead(_20); // scope 12 at $DIR/reference_prop.rs:+27:5: +27:6
@ -270,21 +320,21 @@
StorageLive(_26); // scope 16 at $DIR/reference_prop.rs:+32:13: +32:18
_26 = &raw const _25; // scope 16 at $DIR/reference_prop.rs:+32:21: +32:33
StorageLive(_27); // scope 17 at $DIR/reference_prop.rs:+33:13: +33:14
_27 = &mut _26; // scope 17 at $DIR/reference_prop.rs:+33:17: +33:23
_27 = &raw mut _26; // scope 17 at $DIR/reference_prop.rs:+33:17: +33:27
StorageLive(_28); // scope 18 at $DIR/reference_prop.rs:+34:13: +34:14
_28 = (*_26); // scope 18 at $DIR/reference_prop.rs:+34:17: +34:19
StorageLive(_29); // scope 19 at $DIR/reference_prop.rs:+35:9: +35:19
StorageLive(_30); // scope 19 at $DIR/reference_prop.rs:+35:16: +35:18
_30 = (); // scope 19 at $DIR/reference_prop.rs:+35:16: +35:18
_29 = opaque::<()>(move _30) -> bb4; // scope 19 at $DIR/reference_prop.rs:+35:9: +35:19
StorageLive(_29); // scope 19 at $DIR/reference_prop.rs:+35:9: +35:18
StorageLive(_30); // scope 19 at $DIR/reference_prop.rs:+35:16: +35:17
_30 = _27; // scope 19 at $DIR/reference_prop.rs:+35:16: +35:17
_29 = opaque::<*mut *const usize>(move _30) -> bb4; // scope 19 at $DIR/reference_prop.rs:+35:9: +35:18
// mir::Constant
// + span: $DIR/reference_prop.rs:195:9: 195:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
// + span: $DIR/reference_prop.rs:231:9: 231:15
// + literal: Const { ty: fn(*mut *const usize) {opaque::<*mut *const usize>}, val: Value(<ZST>) }
}
bb4: {
StorageDead(_30); // scope 19 at $DIR/reference_prop.rs:+35:18: +35:19
StorageDead(_29); // scope 19 at $DIR/reference_prop.rs:+35:19: +35:20
StorageDead(_30); // scope 19 at $DIR/reference_prop.rs:+35:17: +35:18
StorageDead(_29); // scope 19 at $DIR/reference_prop.rs:+35:18: +35:19
- _24 = const (); // scope 15 at $DIR/reference_prop.rs:+30:5: +36:6
StorageDead(_28); // scope 18 at $DIR/reference_prop.rs:+36:5: +36:6
StorageDead(_27); // scope 17 at $DIR/reference_prop.rs:+36:5: +36:6
@ -304,7 +354,7 @@
_36 = _33; // scope 23 at $DIR/reference_prop.rs:+43:16: +43:17
_35 = opaque::<*const usize>(move _36) -> bb5; // scope 23 at $DIR/reference_prop.rs:+43:9: +43:18
// mir::Constant
// + span: $DIR/reference_prop.rs:203:9: 203:15
// + span: $DIR/reference_prop.rs:239:9: 239:15
// + literal: Const { ty: fn(*const usize) {opaque::<*const usize>}, val: Value(<ZST>) }
}
@ -336,7 +386,7 @@
_45 = _43; // scope 30 at $DIR/reference_prop.rs:+56:16: +56:18
_44 = opaque::<*const usize>(move _45) -> bb6; // scope 30 at $DIR/reference_prop.rs:+56:9: +56:19
// mir::Constant
// + span: $DIR/reference_prop.rs:216:9: 216:15
// + span: $DIR/reference_prop.rs:252:9: 252:15
// + literal: Const { ty: fn(*const usize) {opaque::<*const usize>}, val: Value(<ZST>) }
}
@ -352,8 +402,8 @@
StorageDead(_38); // scope 24 at $DIR/reference_prop.rs:+57:5: +57:6
- StorageDead(_37); // scope 0 at $DIR/reference_prop.rs:+57:5: +57:6
- StorageLive(_46); // scope 0 at $DIR/reference_prop.rs:+60:5: +64:6
StorageLive(_47); // scope 31 at $DIR/reference_prop.rs:+61:13: +61:14
_47 = &raw const (*_1); // scope 31 at $DIR/reference_prop.rs:+61:17: +61:35
- StorageLive(_47); // scope 31 at $DIR/reference_prop.rs:+61:13: +61:14
- _47 = &raw const (*_1); // scope 31 at $DIR/reference_prop.rs:+61:17: +61:35
StorageLive(_48); // scope 32 at $DIR/reference_prop.rs:+62:13: +62:14
- _48 = (*_47); // scope 32 at $DIR/reference_prop.rs:+62:17: +62:19
+ _48 = (*_1); // scope 32 at $DIR/reference_prop.rs:+62:17: +62:19
@ -362,7 +412,7 @@
_50 = (); // scope 33 at $DIR/reference_prop.rs:+63:16: +63:18
_49 = opaque::<()>(move _50) -> bb7; // scope 33 at $DIR/reference_prop.rs:+63:9: +63:19
// mir::Constant
// + span: $DIR/reference_prop.rs:223:9: 223:15
// + span: $DIR/reference_prop.rs:259:9: 259:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
@ -371,7 +421,7 @@
StorageDead(_49); // scope 33 at $DIR/reference_prop.rs:+63:19: +63:20
- _46 = const (); // scope 31 at $DIR/reference_prop.rs:+60:5: +64:6
StorageDead(_48); // scope 32 at $DIR/reference_prop.rs:+64:5: +64:6
StorageDead(_47); // scope 31 at $DIR/reference_prop.rs:+64:5: +64:6
- StorageDead(_47); // scope 31 at $DIR/reference_prop.rs:+64:5: +64:6
- StorageDead(_46); // scope 0 at $DIR/reference_prop.rs:+64:5: +64:6
- StorageLive(_51); // scope 0 at $DIR/reference_prop.rs:+67:5: +72:6
StorageLive(_52); // scope 34 at $DIR/reference_prop.rs:+68:13: +68:14
@ -387,7 +437,7 @@
_56 = (); // scope 36 at $DIR/reference_prop.rs:+71:16: +71:18
_55 = opaque::<()>(move _56) -> bb8; // scope 36 at $DIR/reference_prop.rs:+71:9: +71:19
// mir::Constant
// + span: $DIR/reference_prop.rs:231:9: 231:15
// + span: $DIR/reference_prop.rs:267:9: 267:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
@ -398,34 +448,89 @@
StorageDead(_54); // scope 35 at $DIR/reference_prop.rs:+72:5: +72:6
StorageDead(_52); // scope 34 at $DIR/reference_prop.rs:+72:5: +72:6
- StorageDead(_51); // scope 0 at $DIR/reference_prop.rs:+72:5: +72:6
StorageLive(_57); // scope 37 at $DIR/reference_prop.rs:+76:13: +76:14
_57 = const 13_usize; // scope 37 at $DIR/reference_prop.rs:+76:17: +76:25
StorageLive(_58); // scope 38 at $DIR/reference_prop.rs:+77:13: +77:14
_58 = &raw const _57; // scope 38 at $DIR/reference_prop.rs:+77:17: +77:29
StorageLive(_59); // scope 39 at $DIR/reference_prop.rs:+78:13: +78:14
- _59 = &raw const (*_58); // scope 39 at $DIR/reference_prop.rs:+78:17: +78:30
+ _59 = &raw const _57; // scope 39 at $DIR/reference_prop.rs:+78:17: +78:30
StorageLive(_60); // scope 40 at $DIR/reference_prop.rs:+79:13: +79:14
- _60 = (*_59); // scope 40 at $DIR/reference_prop.rs:+79:17: +79:19
+ _60 = _57; // scope 40 at $DIR/reference_prop.rs:+79:17: +79:19
StorageLive(_61); // scope 41 at $DIR/reference_prop.rs:+80:9: +80:19
StorageLive(_62); // scope 41 at $DIR/reference_prop.rs:+80:16: +80:18
_62 = (); // scope 41 at $DIR/reference_prop.rs:+80:16: +80:18
_61 = opaque::<()>(move _62) -> bb9; // scope 41 at $DIR/reference_prop.rs:+80:9: +80:19
- StorageLive(_57); // scope 0 at $DIR/reference_prop.rs:+75:5: +81:6
StorageLive(_58); // scope 37 at $DIR/reference_prop.rs:+76:13: +76:14
_58 = const 13_usize; // scope 37 at $DIR/reference_prop.rs:+76:17: +76:25
- StorageLive(_59); // scope 38 at $DIR/reference_prop.rs:+77:13: +77:14
- _59 = &raw const _58; // scope 38 at $DIR/reference_prop.rs:+77:17: +77:29
- StorageLive(_60); // scope 39 at $DIR/reference_prop.rs:+78:13: +78:14
- _60 = &raw const (*_59); // scope 39 at $DIR/reference_prop.rs:+78:17: +78:30
StorageLive(_61); // scope 40 at $DIR/reference_prop.rs:+79:13: +79:14
- _61 = (*_60); // scope 40 at $DIR/reference_prop.rs:+79:17: +79:19
+ _61 = _58; // scope 40 at $DIR/reference_prop.rs:+79:17: +79:19
StorageLive(_62); // scope 41 at $DIR/reference_prop.rs:+80:9: +80:19
StorageLive(_63); // scope 41 at $DIR/reference_prop.rs:+80:16: +80:18
_63 = (); // scope 41 at $DIR/reference_prop.rs:+80:16: +80:18
_62 = opaque::<()>(move _63) -> bb9; // scope 41 at $DIR/reference_prop.rs:+80:9: +80:19
// mir::Constant
// + span: $DIR/reference_prop.rs:240:9: 240:15
// + span: $DIR/reference_prop.rs:276:9: 276:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
bb9: {
StorageDead(_62); // scope 41 at $DIR/reference_prop.rs:+80:18: +80:19
StorageDead(_61); // scope 41 at $DIR/reference_prop.rs:+80:19: +80:20
_0 = const (); // scope 37 at $DIR/reference_prop.rs:+75:5: +81:6
StorageDead(_60); // scope 40 at $DIR/reference_prop.rs:+81:5: +81:6
StorageDead(_59); // scope 39 at $DIR/reference_prop.rs:+81:5: +81:6
StorageDead(_58); // scope 38 at $DIR/reference_prop.rs:+81:5: +81:6
StorageDead(_57); // scope 37 at $DIR/reference_prop.rs:+81:5: +81:6
return; // scope 0 at $DIR/reference_prop.rs:+82:2: +82:2
StorageDead(_63); // scope 41 at $DIR/reference_prop.rs:+80:18: +80:19
StorageDead(_62); // scope 41 at $DIR/reference_prop.rs:+80:19: +80:20
- _57 = const (); // scope 37 at $DIR/reference_prop.rs:+75:5: +81:6
StorageDead(_61); // scope 40 at $DIR/reference_prop.rs:+81:5: +81:6
- StorageDead(_60); // scope 39 at $DIR/reference_prop.rs:+81:5: +81:6
- StorageDead(_59); // scope 38 at $DIR/reference_prop.rs:+81:5: +81:6
StorageDead(_58); // scope 37 at $DIR/reference_prop.rs:+81:5: +81:6
- StorageDead(_57); // scope 0 at $DIR/reference_prop.rs:+81:5: +81:6
- StorageLive(_64); // scope 0 at $DIR/reference_prop.rs:+84:5: +90:6
StorageLive(_65); // scope 42 at $DIR/reference_prop.rs:+85:13: +85:14
_65 = const 5_usize; // scope 42 at $DIR/reference_prop.rs:+85:17: +85:24
- StorageLive(_66); // scope 43 at $DIR/reference_prop.rs:+86:13: +86:14
- _66 = &raw const _65; // scope 43 at $DIR/reference_prop.rs:+86:17: +86:29
- StorageLive(_67); // scope 44 at $DIR/reference_prop.rs:+87:13: +87:14
- _67 = &_66; // scope 44 at $DIR/reference_prop.rs:+87:17: +87:19
StorageLive(_68); // scope 45 at $DIR/reference_prop.rs:+88:13: +88:14
- _68 = (*_66); // scope 45 at $DIR/reference_prop.rs:+88:17: +88:19
+ _68 = _65; // scope 45 at $DIR/reference_prop.rs:+88:17: +88:19
StorageLive(_69); // scope 46 at $DIR/reference_prop.rs:+89:9: +89:19
StorageLive(_70); // scope 46 at $DIR/reference_prop.rs:+89:16: +89:18
_70 = (); // scope 46 at $DIR/reference_prop.rs:+89:16: +89:18
_69 = opaque::<()>(move _70) -> bb10; // scope 46 at $DIR/reference_prop.rs:+89:9: +89:19
// mir::Constant
// + span: $DIR/reference_prop.rs:285:9: 285:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
bb10: {
StorageDead(_70); // scope 46 at $DIR/reference_prop.rs:+89:18: +89:19
StorageDead(_69); // scope 46 at $DIR/reference_prop.rs:+89:19: +89:20
- _64 = const (); // scope 42 at $DIR/reference_prop.rs:+84:5: +90:6
StorageDead(_68); // scope 45 at $DIR/reference_prop.rs:+90:5: +90:6
- StorageDead(_67); // scope 44 at $DIR/reference_prop.rs:+90:5: +90:6
- StorageDead(_66); // scope 43 at $DIR/reference_prop.rs:+90:5: +90:6
StorageDead(_65); // scope 42 at $DIR/reference_prop.rs:+90:5: +90:6
- StorageDead(_64); // scope 0 at $DIR/reference_prop.rs:+90:5: +90:6
StorageLive(_71); // scope 47 at $DIR/reference_prop.rs:+94:13: +94:14
_71 = const 5_usize; // scope 47 at $DIR/reference_prop.rs:+94:17: +94:24
- StorageLive(_72); // scope 48 at $DIR/reference_prop.rs:+95:13: +95:18
- _72 = &raw const _71; // scope 48 at $DIR/reference_prop.rs:+95:21: +95:33
- StorageLive(_73); // scope 49 at $DIR/reference_prop.rs:+96:13: +96:14
- _73 = &mut _72; // scope 49 at $DIR/reference_prop.rs:+96:17: +96:23
StorageLive(_74); // scope 50 at $DIR/reference_prop.rs:+97:13: +97:14
- _74 = (*_72); // scope 50 at $DIR/reference_prop.rs:+97:17: +97:19
+ _74 = _71; // scope 50 at $DIR/reference_prop.rs:+97:17: +97:19
StorageLive(_75); // scope 51 at $DIR/reference_prop.rs:+98:9: +98:19
StorageLive(_76); // scope 51 at $DIR/reference_prop.rs:+98:16: +98:18
_76 = (); // scope 51 at $DIR/reference_prop.rs:+98:16: +98:18
_75 = opaque::<()>(move _76) -> bb11; // scope 51 at $DIR/reference_prop.rs:+98:9: +98:19
// mir::Constant
// + span: $DIR/reference_prop.rs:294:9: 294:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
bb11: {
StorageDead(_76); // scope 51 at $DIR/reference_prop.rs:+98:18: +98:19
StorageDead(_75); // scope 51 at $DIR/reference_prop.rs:+98:19: +98:20
_0 = const (); // scope 47 at $DIR/reference_prop.rs:+93:5: +99:6
StorageDead(_74); // scope 50 at $DIR/reference_prop.rs:+99:5: +99:6
- StorageDead(_73); // scope 49 at $DIR/reference_prop.rs:+99:5: +99:6
- StorageDead(_72); // scope 48 at $DIR/reference_prop.rs:+99:5: +99:6
StorageDead(_71); // scope 47 at $DIR/reference_prop.rs:+99:5: +99:6
return; // scope 0 at $DIR/reference_prop.rs:+100:2: +100:2
}
}

View file

@ -17,12 +17,12 @@
let mut _17: (); // in scope 0 at $DIR/reference_prop.rs:+17:16: +17:18
let _18: (); // in scope 0 at $DIR/reference_prop.rs:+21:5: +27:6
let mut _19: usize; // in scope 0 at $DIR/reference_prop.rs:+22:13: +22:18
let _23: (); // in scope 0 at $DIR/reference_prop.rs:+26:9: +26:19
let mut _24: (); // in scope 0 at $DIR/reference_prop.rs:+26:16: +26:18
let _23: (); // in scope 0 at $DIR/reference_prop.rs:+26:9: +26:18
let mut _24: &&mut usize; // in scope 0 at $DIR/reference_prop.rs:+26:16: +26:17
let _25: (); // in scope 0 at $DIR/reference_prop.rs:+30:5: +36:6
let mut _26: usize; // in scope 0 at $DIR/reference_prop.rs:+31:13: +31:18
let _30: (); // in scope 0 at $DIR/reference_prop.rs:+35:9: +35:19
let mut _31: (); // in scope 0 at $DIR/reference_prop.rs:+35:16: +35:18
let _30: (); // in scope 0 at $DIR/reference_prop.rs:+35:9: +35:18
let mut _31: *mut &mut usize; // in scope 0 at $DIR/reference_prop.rs:+35:16: +35:17
let _32: (); // in scope 0 at $DIR/reference_prop.rs:+39:5: +44:6
let mut _33: usize; // in scope 0 at $DIR/reference_prop.rs:+40:13: +40:18
let _36: (); // in scope 0 at $DIR/reference_prop.rs:+43:9: +43:18
@ -35,16 +35,25 @@
let _48: &mut T; // in scope 0 at $DIR/reference_prop.rs:+61:13: +61:14
let _50: (); // in scope 0 at $DIR/reference_prop.rs:+63:9: +63:19
let mut _51: (); // in scope 0 at $DIR/reference_prop.rs:+63:16: +63:18
let _52: &mut T; // in scope 0 at $DIR/reference_prop.rs:+68:13: +68:14
let mut _53: &mut T; // in scope 0 at $DIR/reference_prop.rs:+69:20: +69:32
let _52: (); // in scope 0 at $DIR/reference_prop.rs:+67:5: +72:6
let _53: &mut T; // in scope 0 at $DIR/reference_prop.rs:+68:13: +68:14
let mut _54: &mut T; // in scope 0 at $DIR/reference_prop.rs:+69:20: +69:32
let _56: (); // in scope 0 at $DIR/reference_prop.rs:+71:9: +71:19
let mut _57: (); // in scope 0 at $DIR/reference_prop.rs:+71:16: +71:18
let mut _55: &mut T; // in scope 0 at $DIR/reference_prop.rs:+69:20: +69:32
let _57: (); // in scope 0 at $DIR/reference_prop.rs:+71:9: +71:19
let mut _58: (); // in scope 0 at $DIR/reference_prop.rs:+71:16: +71:18
let _59: (); // in scope 0 at $DIR/reference_prop.rs:+75:5: +81:6
let mut _60: usize; // in scope 0 at $DIR/reference_prop.rs:+76:13: +76:18
let _64: (); // in scope 0 at $DIR/reference_prop.rs:+80:9: +80:19
let mut _65: (); // in scope 0 at $DIR/reference_prop.rs:+80:16: +80:18
let mut _66: usize; // in scope 0 at $DIR/reference_prop.rs:+85:13: +85:18
let _70: (); // in scope 0 at $DIR/reference_prop.rs:+89:9: +89:19
let mut _71: (); // in scope 0 at $DIR/reference_prop.rs:+89:16: +89:18
scope 1 {
debug a => _4; // in scope 1 at $DIR/reference_prop.rs:+3:13: +3:18
let _5: &mut usize; // in scope 1 at $DIR/reference_prop.rs:+4:13: +4:14
scope 2 {
debug b => _5; // in scope 2 at $DIR/reference_prop.rs:+4:13: +4:14
- debug b => _5; // in scope 2 at $DIR/reference_prop.rs:+4:13: +4:14
+ debug b => &_4; // in scope 2 at $DIR/reference_prop.rs:+4:13: +4:14
let _6: usize; // in scope 2 at $DIR/reference_prop.rs:+5:13: +5:14
scope 3 {
debug c => _6; // in scope 3 at $DIR/reference_prop.rs:+5:13: +5:14
@ -86,7 +95,7 @@
let mut _27: &mut usize; // in scope 12 at $DIR/reference_prop.rs:+32:13: +32:18
scope 13 {
debug b => _27; // in scope 13 at $DIR/reference_prop.rs:+32:13: +32:18
let _28: &mut &mut usize; // in scope 13 at $DIR/reference_prop.rs:+33:13: +33:14
let _28: *mut &mut usize; // in scope 13 at $DIR/reference_prop.rs:+33:13: +33:14
scope 14 {
debug d => _28; // in scope 14 at $DIR/reference_prop.rs:+33:13: +33:14
let _29: usize; // in scope 14 at $DIR/reference_prop.rs:+34:13: +34:14
@ -131,17 +140,52 @@
}
}
scope 25 {
debug a => _48; // in scope 25 at $DIR/reference_prop.rs:+61:13: +61:14
- debug a => _48; // in scope 25 at $DIR/reference_prop.rs:+61:13: +61:14
+ debug a => _1; // in scope 25 at $DIR/reference_prop.rs:+61:13: +61:14
let _49: T; // in scope 25 at $DIR/reference_prop.rs:+62:13: +62:14
scope 26 {
debug b => _49; // in scope 26 at $DIR/reference_prop.rs:+62:13: +62:14
}
}
scope 27 {
debug a => _52; // in scope 27 at $DIR/reference_prop.rs:+68:13: +68:14
let _55: T; // in scope 27 at $DIR/reference_prop.rs:+70:13: +70:14
debug a => _53; // in scope 27 at $DIR/reference_prop.rs:+68:13: +68:14
let _56: T; // in scope 27 at $DIR/reference_prop.rs:+70:13: +70:14
scope 28 {
debug b => _55; // in scope 28 at $DIR/reference_prop.rs:+70:13: +70:14
debug b => _56; // in scope 28 at $DIR/reference_prop.rs:+70:13: +70:14
}
}
scope 29 {
debug a => _60; // in scope 29 at $DIR/reference_prop.rs:+76:13: +76:18
let _61: &mut usize; // in scope 29 at $DIR/reference_prop.rs:+77:13: +77:14
scope 30 {
- debug b => _61; // in scope 30 at $DIR/reference_prop.rs:+77:13: +77:14
+ debug b => &_60; // in scope 30 at $DIR/reference_prop.rs:+77:13: +77:14
let _62: &&mut usize; // in scope 30 at $DIR/reference_prop.rs:+78:13: +78:14
scope 31 {
- debug d => _62; // in scope 31 at $DIR/reference_prop.rs:+78:13: +78:14
+ debug d => &&_60; // in scope 31 at $DIR/reference_prop.rs:+78:13: +78:14
let _63: usize; // in scope 31 at $DIR/reference_prop.rs:+79:13: +79:14
scope 32 {
debug c => _63; // in scope 32 at $DIR/reference_prop.rs:+79:13: +79:14
}
}
}
}
scope 33 {
debug a => _66; // in scope 33 at $DIR/reference_prop.rs:+85:13: +85:18
let mut _67: &mut usize; // in scope 33 at $DIR/reference_prop.rs:+86:13: +86:18
scope 34 {
- debug b => _67; // in scope 34 at $DIR/reference_prop.rs:+86:13: +86:18
+ debug b => &_66; // in scope 34 at $DIR/reference_prop.rs:+86:13: +86:18
let _68: &mut &mut usize; // in scope 34 at $DIR/reference_prop.rs:+87:13: +87:14
scope 35 {
- debug d => _68; // in scope 35 at $DIR/reference_prop.rs:+87:13: +87:14
+ debug d => &&_66; // in scope 35 at $DIR/reference_prop.rs:+87:13: +87:14
let _69: usize; // in scope 35 at $DIR/reference_prop.rs:+88:13: +88:14
scope 36 {
debug c => _69; // in scope 36 at $DIR/reference_prop.rs:+88:13: +88:14
}
}
}
}
@ -149,8 +193,8 @@
- StorageLive(_3); // scope 0 at $DIR/reference_prop.rs:+2:5: +7:6
StorageLive(_4); // scope 0 at $DIR/reference_prop.rs:+3:13: +3:18
_4 = const 5_usize; // scope 0 at $DIR/reference_prop.rs:+3:21: +3:28
StorageLive(_5); // scope 1 at $DIR/reference_prop.rs:+4:13: +4:14
_5 = &mut _4; // scope 1 at $DIR/reference_prop.rs:+4:17: +4:23
- StorageLive(_5); // scope 1 at $DIR/reference_prop.rs:+4:13: +4:14
- _5 = &mut _4; // scope 1 at $DIR/reference_prop.rs:+4:17: +4:23
StorageLive(_6); // scope 2 at $DIR/reference_prop.rs:+5:13: +5:14
- _6 = (*_5); // scope 2 at $DIR/reference_prop.rs:+5:17: +5:19
+ _6 = _4; // scope 2 at $DIR/reference_prop.rs:+5:17: +5:19
@ -159,7 +203,7 @@
_8 = (); // scope 3 at $DIR/reference_prop.rs:+6:16: +6:18
_7 = opaque::<()>(move _8) -> bb1; // scope 3 at $DIR/reference_prop.rs:+6:9: +6:19
// mir::Constant
// + span: $DIR/reference_prop.rs:91:9: 91:15
// + span: $DIR/reference_prop.rs:109:9: 109:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
@ -168,7 +212,7 @@
StorageDead(_7); // scope 3 at $DIR/reference_prop.rs:+6:19: +6:20
- _3 = const (); // scope 0 at $DIR/reference_prop.rs:+2:5: +7:6
StorageDead(_6); // scope 2 at $DIR/reference_prop.rs:+7:5: +7:6
StorageDead(_5); // scope 1 at $DIR/reference_prop.rs:+7:5: +7:6
- StorageDead(_5); // scope 1 at $DIR/reference_prop.rs:+7:5: +7:6
StorageDead(_4); // scope 0 at $DIR/reference_prop.rs:+7:5: +7:6
- StorageDead(_3); // scope 0 at $DIR/reference_prop.rs:+7:5: +7:6
- StorageLive(_9); // scope 0 at $DIR/reference_prop.rs:+10:5: +18:6
@ -193,7 +237,7 @@
_17 = (); // scope 7 at $DIR/reference_prop.rs:+17:16: +17:18
_16 = opaque::<()>(move _17) -> bb2; // scope 7 at $DIR/reference_prop.rs:+17:9: +17:19
// mir::Constant
// + span: $DIR/reference_prop.rs:102:9: 102:15
// + span: $DIR/reference_prop.rs:120:9: 120:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
@ -215,18 +259,18 @@
_21 = &_20; // scope 9 at $DIR/reference_prop.rs:+24:17: +24:19
StorageLive(_22); // scope 10 at $DIR/reference_prop.rs:+25:13: +25:14
_22 = (*_20); // scope 10 at $DIR/reference_prop.rs:+25:17: +25:19
StorageLive(_23); // scope 11 at $DIR/reference_prop.rs:+26:9: +26:19
StorageLive(_24); // scope 11 at $DIR/reference_prop.rs:+26:16: +26:18
_24 = (); // scope 11 at $DIR/reference_prop.rs:+26:16: +26:18
_23 = opaque::<()>(move _24) -> bb3; // scope 11 at $DIR/reference_prop.rs:+26:9: +26:19
StorageLive(_23); // scope 11 at $DIR/reference_prop.rs:+26:9: +26:18
StorageLive(_24); // scope 11 at $DIR/reference_prop.rs:+26:16: +26:17
_24 = _21; // scope 11 at $DIR/reference_prop.rs:+26:16: +26:17
_23 = opaque::<&&mut usize>(move _24) -> bb3; // scope 11 at $DIR/reference_prop.rs:+26:9: +26:18
// mir::Constant
// + span: $DIR/reference_prop.rs:111:9: 111:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
// + span: $DIR/reference_prop.rs:129:9: 129:15
// + literal: Const { ty: fn(&&mut usize) {opaque::<&&mut usize>}, val: Value(<ZST>) }
}
bb3: {
StorageDead(_24); // scope 11 at $DIR/reference_prop.rs:+26:18: +26:19
StorageDead(_23); // scope 11 at $DIR/reference_prop.rs:+26:19: +26:20
StorageDead(_24); // scope 11 at $DIR/reference_prop.rs:+26:17: +26:18
StorageDead(_23); // scope 11 at $DIR/reference_prop.rs:+26:18: +26:19
- _18 = const (); // scope 0 at $DIR/reference_prop.rs:+21:5: +27:6
StorageDead(_22); // scope 10 at $DIR/reference_prop.rs:+27:5: +27:6
StorageDead(_21); // scope 9 at $DIR/reference_prop.rs:+27:5: +27:6
@ -239,21 +283,21 @@
StorageLive(_27); // scope 12 at $DIR/reference_prop.rs:+32:13: +32:18
_27 = &mut _26; // scope 12 at $DIR/reference_prop.rs:+32:21: +32:27
StorageLive(_28); // scope 13 at $DIR/reference_prop.rs:+33:13: +33:14
_28 = &mut _27; // scope 13 at $DIR/reference_prop.rs:+33:17: +33:23
_28 = &raw mut _27; // scope 13 at $DIR/reference_prop.rs:+33:17: +33:27
StorageLive(_29); // scope 14 at $DIR/reference_prop.rs:+34:13: +34:14
_29 = (*_27); // scope 14 at $DIR/reference_prop.rs:+34:17: +34:19
StorageLive(_30); // scope 15 at $DIR/reference_prop.rs:+35:9: +35:19
StorageLive(_31); // scope 15 at $DIR/reference_prop.rs:+35:16: +35:18
_31 = (); // scope 15 at $DIR/reference_prop.rs:+35:16: +35:18
_30 = opaque::<()>(move _31) -> bb4; // scope 15 at $DIR/reference_prop.rs:+35:9: +35:19
StorageLive(_30); // scope 15 at $DIR/reference_prop.rs:+35:9: +35:18
StorageLive(_31); // scope 15 at $DIR/reference_prop.rs:+35:16: +35:17
_31 = _28; // scope 15 at $DIR/reference_prop.rs:+35:16: +35:17
_30 = opaque::<*mut &mut usize>(move _31) -> bb4; // scope 15 at $DIR/reference_prop.rs:+35:9: +35:18
// mir::Constant
// + span: $DIR/reference_prop.rs:120:9: 120:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
// + span: $DIR/reference_prop.rs:138:9: 138:15
// + literal: Const { ty: fn(*mut &mut usize) {opaque::<*mut &mut usize>}, val: Value(<ZST>) }
}
bb4: {
StorageDead(_31); // scope 15 at $DIR/reference_prop.rs:+35:18: +35:19
StorageDead(_30); // scope 15 at $DIR/reference_prop.rs:+35:19: +35:20
StorageDead(_31); // scope 15 at $DIR/reference_prop.rs:+35:17: +35:18
StorageDead(_30); // scope 15 at $DIR/reference_prop.rs:+35:18: +35:19
- _25 = const (); // scope 0 at $DIR/reference_prop.rs:+30:5: +36:6
StorageDead(_29); // scope 14 at $DIR/reference_prop.rs:+36:5: +36:6
StorageDead(_28); // scope 13 at $DIR/reference_prop.rs:+36:5: +36:6
@ -272,7 +316,7 @@
_37 = move _34; // scope 18 at $DIR/reference_prop.rs:+43:16: +43:17
_36 = opaque::<&mut usize>(move _37) -> bb5; // scope 18 at $DIR/reference_prop.rs:+43:9: +43:18
// mir::Constant
// + span: $DIR/reference_prop.rs:128:9: 128:15
// + span: $DIR/reference_prop.rs:146:9: 146:15
// + literal: Const { ty: fn(&mut usize) {opaque::<&mut usize>}, val: Value(<ZST>) }
}
@ -302,7 +346,7 @@
_46 = move _44; // scope 24 at $DIR/reference_prop.rs:+56:16: +56:18
_45 = opaque::<&mut usize>(move _46) -> bb6; // scope 24 at $DIR/reference_prop.rs:+56:9: +56:19
// mir::Constant
// + span: $DIR/reference_prop.rs:141:9: 141:15
// + span: $DIR/reference_prop.rs:159:9: 159:15
// + literal: Const { ty: fn(&mut usize) {opaque::<&mut usize>}, val: Value(<ZST>) }
}
@ -318,8 +362,8 @@
StorageDead(_39); // scope 0 at $DIR/reference_prop.rs:+57:5: +57:6
- StorageDead(_38); // scope 0 at $DIR/reference_prop.rs:+57:5: +57:6
- StorageLive(_47); // scope 0 at $DIR/reference_prop.rs:+60:5: +64:6
StorageLive(_48); // scope 0 at $DIR/reference_prop.rs:+61:13: +61:14
_48 = &mut (*_1); // scope 0 at $DIR/reference_prop.rs:+61:17: +61:29
- StorageLive(_48); // scope 0 at $DIR/reference_prop.rs:+61:13: +61:14
- _48 = &mut (*_1); // scope 0 at $DIR/reference_prop.rs:+61:17: +61:29
StorageLive(_49); // scope 25 at $DIR/reference_prop.rs:+62:13: +62:14
- _49 = (*_48); // scope 25 at $DIR/reference_prop.rs:+62:17: +62:19
+ _49 = (*_1); // scope 25 at $DIR/reference_prop.rs:+62:17: +62:19
@ -328,7 +372,7 @@
_51 = (); // scope 26 at $DIR/reference_prop.rs:+63:16: +63:18
_50 = opaque::<()>(move _51) -> bb7; // scope 26 at $DIR/reference_prop.rs:+63:9: +63:19
// mir::Constant
// + span: $DIR/reference_prop.rs:148:9: 148:15
// + span: $DIR/reference_prop.rs:166:9: 166:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
@ -337,36 +381,92 @@
StorageDead(_50); // scope 26 at $DIR/reference_prop.rs:+63:19: +63:20
- _47 = const (); // scope 0 at $DIR/reference_prop.rs:+60:5: +64:6
StorageDead(_49); // scope 25 at $DIR/reference_prop.rs:+64:5: +64:6
StorageDead(_48); // scope 0 at $DIR/reference_prop.rs:+64:5: +64:6
- StorageDead(_48); // scope 0 at $DIR/reference_prop.rs:+64:5: +64:6
- StorageDead(_47); // scope 0 at $DIR/reference_prop.rs:+64:5: +64:6
StorageLive(_52); // scope 0 at $DIR/reference_prop.rs:+68:13: +68:14
_52 = &mut (*_2); // scope 0 at $DIR/reference_prop.rs:+68:17: +68:31
StorageLive(_53); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:32
- StorageLive(_54); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:32
- _54 = &mut (*_1); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:32
- _53 = &mut (*_54); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:32
+ _53 = &mut (*_1); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:32
_2 = move _53; // scope 27 at $DIR/reference_prop.rs:+69:9: +69:32
StorageDead(_53); // scope 27 at $DIR/reference_prop.rs:+69:31: +69:32
- StorageDead(_54); // scope 27 at $DIR/reference_prop.rs:+69:32: +69:33
StorageLive(_55); // scope 27 at $DIR/reference_prop.rs:+70:13: +70:14
_55 = (*_52); // scope 27 at $DIR/reference_prop.rs:+70:17: +70:19
StorageLive(_56); // scope 28 at $DIR/reference_prop.rs:+71:9: +71:19
StorageLive(_57); // scope 28 at $DIR/reference_prop.rs:+71:16: +71:18
_57 = (); // scope 28 at $DIR/reference_prop.rs:+71:16: +71:18
_56 = opaque::<()>(move _57) -> bb8; // scope 28 at $DIR/reference_prop.rs:+71:9: +71:19
- StorageLive(_52); // scope 0 at $DIR/reference_prop.rs:+67:5: +72:6
StorageLive(_53); // scope 0 at $DIR/reference_prop.rs:+68:13: +68:14
_53 = &mut (*_2); // scope 0 at $DIR/reference_prop.rs:+68:17: +68:31
StorageLive(_54); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:32
- StorageLive(_55); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:32
- _55 = &mut (*_1); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:32
- _54 = &mut (*_55); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:32
+ _54 = &mut (*_1); // scope 27 at $DIR/reference_prop.rs:+69:20: +69:32
_2 = move _54; // scope 27 at $DIR/reference_prop.rs:+69:9: +69:32
StorageDead(_54); // scope 27 at $DIR/reference_prop.rs:+69:31: +69:32
- StorageDead(_55); // scope 27 at $DIR/reference_prop.rs:+69:32: +69:33
StorageLive(_56); // scope 27 at $DIR/reference_prop.rs:+70:13: +70:14
_56 = (*_53); // scope 27 at $DIR/reference_prop.rs:+70:17: +70:19
StorageLive(_57); // scope 28 at $DIR/reference_prop.rs:+71:9: +71:19
StorageLive(_58); // scope 28 at $DIR/reference_prop.rs:+71:16: +71:18
_58 = (); // scope 28 at $DIR/reference_prop.rs:+71:16: +71:18
_57 = opaque::<()>(move _58) -> bb8; // scope 28 at $DIR/reference_prop.rs:+71:9: +71:19
// mir::Constant
// + span: $DIR/reference_prop.rs:156:9: 156:15
// + span: $DIR/reference_prop.rs:174:9: 174:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
bb8: {
StorageDead(_57); // scope 28 at $DIR/reference_prop.rs:+71:18: +71:19
StorageDead(_56); // scope 28 at $DIR/reference_prop.rs:+71:19: +71:20
_0 = const (); // scope 0 at $DIR/reference_prop.rs:+67:5: +72:6
StorageDead(_55); // scope 27 at $DIR/reference_prop.rs:+72:5: +72:6
StorageDead(_52); // scope 0 at $DIR/reference_prop.rs:+72:5: +72:6
return; // scope 0 at $DIR/reference_prop.rs:+73:2: +73:2
StorageDead(_58); // scope 28 at $DIR/reference_prop.rs:+71:18: +71:19
StorageDead(_57); // scope 28 at $DIR/reference_prop.rs:+71:19: +71:20
- _52 = const (); // scope 0 at $DIR/reference_prop.rs:+67:5: +72:6
StorageDead(_56); // scope 27 at $DIR/reference_prop.rs:+72:5: +72:6
StorageDead(_53); // scope 0 at $DIR/reference_prop.rs:+72:5: +72:6
- StorageDead(_52); // scope 0 at $DIR/reference_prop.rs:+72:5: +72:6
- StorageLive(_59); // scope 0 at $DIR/reference_prop.rs:+75:5: +81:6
StorageLive(_60); // scope 0 at $DIR/reference_prop.rs:+76:13: +76:18
_60 = const 5_usize; // scope 0 at $DIR/reference_prop.rs:+76:21: +76:28
- StorageLive(_61); // scope 29 at $DIR/reference_prop.rs:+77:13: +77:14
- _61 = &mut _60; // scope 29 at $DIR/reference_prop.rs:+77:17: +77:23
- StorageLive(_62); // scope 30 at $DIR/reference_prop.rs:+78:13: +78:14
- _62 = &_61; // scope 30 at $DIR/reference_prop.rs:+78:17: +78:19
StorageLive(_63); // scope 31 at $DIR/reference_prop.rs:+79:13: +79:14
- _63 = (*_61); // scope 31 at $DIR/reference_prop.rs:+79:17: +79:19
+ _63 = _60; // scope 31 at $DIR/reference_prop.rs:+79:17: +79:19
StorageLive(_64); // scope 32 at $DIR/reference_prop.rs:+80:9: +80:19
StorageLive(_65); // scope 32 at $DIR/reference_prop.rs:+80:16: +80:18
_65 = (); // scope 32 at $DIR/reference_prop.rs:+80:16: +80:18
_64 = opaque::<()>(move _65) -> bb9; // scope 32 at $DIR/reference_prop.rs:+80:9: +80:19
// mir::Constant
// + span: $DIR/reference_prop.rs:183:9: 183:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
bb9: {
StorageDead(_65); // scope 32 at $DIR/reference_prop.rs:+80:18: +80:19
StorageDead(_64); // scope 32 at $DIR/reference_prop.rs:+80:19: +80:20
- _59 = const (); // scope 0 at $DIR/reference_prop.rs:+75:5: +81:6
StorageDead(_63); // scope 31 at $DIR/reference_prop.rs:+81:5: +81:6
- StorageDead(_62); // scope 30 at $DIR/reference_prop.rs:+81:5: +81:6
- StorageDead(_61); // scope 29 at $DIR/reference_prop.rs:+81:5: +81:6
StorageDead(_60); // scope 0 at $DIR/reference_prop.rs:+81:5: +81:6
- StorageDead(_59); // scope 0 at $DIR/reference_prop.rs:+81:5: +81:6
StorageLive(_66); // scope 0 at $DIR/reference_prop.rs:+85:13: +85:18
_66 = const 5_usize; // scope 0 at $DIR/reference_prop.rs:+85:21: +85:28
- StorageLive(_67); // scope 33 at $DIR/reference_prop.rs:+86:13: +86:18
- _67 = &mut _66; // scope 33 at $DIR/reference_prop.rs:+86:21: +86:27
- StorageLive(_68); // scope 34 at $DIR/reference_prop.rs:+87:13: +87:14
- _68 = &mut _67; // scope 34 at $DIR/reference_prop.rs:+87:17: +87:23
StorageLive(_69); // scope 35 at $DIR/reference_prop.rs:+88:13: +88:14
- _69 = (*_67); // scope 35 at $DIR/reference_prop.rs:+88:17: +88:19
+ _69 = _66; // scope 35 at $DIR/reference_prop.rs:+88:17: +88:19
StorageLive(_70); // scope 36 at $DIR/reference_prop.rs:+89:9: +89:19
StorageLive(_71); // scope 36 at $DIR/reference_prop.rs:+89:16: +89:18
_71 = (); // scope 36 at $DIR/reference_prop.rs:+89:16: +89:18
_70 = opaque::<()>(move _71) -> bb10; // scope 36 at $DIR/reference_prop.rs:+89:9: +89:19
// mir::Constant
// + span: $DIR/reference_prop.rs:192:9: 192:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
bb10: {
StorageDead(_71); // scope 36 at $DIR/reference_prop.rs:+89:18: +89:19
StorageDead(_70); // scope 36 at $DIR/reference_prop.rs:+89:19: +89:20
_0 = const (); // scope 0 at $DIR/reference_prop.rs:+84:5: +90:6
StorageDead(_69); // scope 35 at $DIR/reference_prop.rs:+90:5: +90:6
- StorageDead(_68); // scope 34 at $DIR/reference_prop.rs:+90:5: +90:6
- StorageDead(_67); // scope 33 at $DIR/reference_prop.rs:+90:5: +90:6
StorageDead(_66); // scope 0 at $DIR/reference_prop.rs:+90:5: +90:6
return; // scope 0 at $DIR/reference_prop.rs:+91:2: +91:2
}
}

View file

@ -13,11 +13,11 @@
let _15: (); // in scope 0 at $DIR/reference_prop.rs:+17:9: +17:19
let mut _16: (); // in scope 0 at $DIR/reference_prop.rs:+17:16: +17:18
let _17: (); // in scope 0 at $DIR/reference_prop.rs:+21:5: +27:6
let _22: (); // in scope 0 at $DIR/reference_prop.rs:+26:9: +26:19
let mut _23: (); // in scope 0 at $DIR/reference_prop.rs:+26:16: +26:18
let _22: (); // in scope 0 at $DIR/reference_prop.rs:+26:9: +26:18
let mut _23: &*mut usize; // in scope 0 at $DIR/reference_prop.rs:+26:16: +26:17
let _24: (); // in scope 0 at $DIR/reference_prop.rs:+30:5: +36:6
let _29: (); // in scope 0 at $DIR/reference_prop.rs:+35:9: +35:19
let mut _30: (); // in scope 0 at $DIR/reference_prop.rs:+35:16: +35:18
let _29: (); // in scope 0 at $DIR/reference_prop.rs:+35:9: +35:18
let mut _30: *mut *mut usize; // in scope 0 at $DIR/reference_prop.rs:+35:16: +35:17
let _31: (); // in scope 0 at $DIR/reference_prop.rs:+39:5: +44:6
let _35: (); // in scope 0 at $DIR/reference_prop.rs:+43:9: +43:18
let mut _36: *mut usize; // in scope 0 at $DIR/reference_prop.rs:+43:16: +43:17
@ -27,16 +27,23 @@
let _46: (); // in scope 0 at $DIR/reference_prop.rs:+60:5: +64:6
let _49: (); // in scope 0 at $DIR/reference_prop.rs:+63:9: +63:19
let mut _50: (); // in scope 0 at $DIR/reference_prop.rs:+63:16: +63:18
let mut _52: *mut T; // in scope 0 at $DIR/reference_prop.rs:+69:20: +69:36
let _54: (); // in scope 0 at $DIR/reference_prop.rs:+71:9: +71:19
let mut _55: (); // in scope 0 at $DIR/reference_prop.rs:+71:16: +71:18
let _51: (); // in scope 0 at $DIR/reference_prop.rs:+67:5: +72:6
let mut _53: *mut T; // in scope 0 at $DIR/reference_prop.rs:+69:20: +69:36
let _55: (); // in scope 0 at $DIR/reference_prop.rs:+71:9: +71:19
let mut _56: (); // in scope 0 at $DIR/reference_prop.rs:+71:16: +71:18
let _57: (); // in scope 0 at $DIR/reference_prop.rs:+75:5: +81:6
let _62: (); // in scope 0 at $DIR/reference_prop.rs:+80:9: +80:19
let mut _63: (); // in scope 0 at $DIR/reference_prop.rs:+80:16: +80:18
let _68: (); // in scope 0 at $DIR/reference_prop.rs:+89:9: +89:19
let mut _69: (); // in scope 0 at $DIR/reference_prop.rs:+89:16: +89:18
scope 1 {
let mut _4: usize; // in scope 1 at $DIR/reference_prop.rs:+3:13: +3:18
scope 2 {
debug a => _4; // in scope 2 at $DIR/reference_prop.rs:+3:13: +3:18
let _5: *mut usize; // in scope 2 at $DIR/reference_prop.rs:+4:13: +4:14
scope 3 {
debug b => _5; // in scope 3 at $DIR/reference_prop.rs:+4:13: +4:14
- debug b => _5; // in scope 3 at $DIR/reference_prop.rs:+4:13: +4:14
+ debug b => &_4; // in scope 3 at $DIR/reference_prop.rs:+4:13: +4:14
let _6: usize; // in scope 3 at $DIR/reference_prop.rs:+5:13: +5:14
scope 4 {
debug c => _6; // in scope 4 at $DIR/reference_prop.rs:+5:13: +5:14
@ -87,7 +94,7 @@
let mut _26: *mut usize; // in scope 16 at $DIR/reference_prop.rs:+32:13: +32:18
scope 17 {
debug b => _26; // in scope 17 at $DIR/reference_prop.rs:+32:13: +32:18
let _27: &mut *mut usize; // in scope 17 at $DIR/reference_prop.rs:+33:13: +33:14
let _27: *mut *mut usize; // in scope 17 at $DIR/reference_prop.rs:+33:13: +33:14
scope 18 {
debug d => _27; // in scope 18 at $DIR/reference_prop.rs:+33:13: +33:14
let _28: usize; // in scope 18 at $DIR/reference_prop.rs:+34:13: +34:14
@ -141,7 +148,8 @@
scope 31 {
let _47: *mut T; // in scope 31 at $DIR/reference_prop.rs:+61:13: +61:14
scope 32 {
debug a => _47; // in scope 32 at $DIR/reference_prop.rs:+61:13: +61:14
- debug a => _47; // in scope 32 at $DIR/reference_prop.rs:+61:13: +61:14
+ debug a => _1; // in scope 32 at $DIR/reference_prop.rs:+61:13: +61:14
let _48: T; // in scope 32 at $DIR/reference_prop.rs:+62:13: +62:14
scope 33 {
debug b => _48; // in scope 33 at $DIR/reference_prop.rs:+62:13: +62:14
@ -149,12 +157,52 @@
}
}
scope 34 {
let _51: *mut T; // in scope 34 at $DIR/reference_prop.rs:+68:13: +68:14
let _52: *mut T; // in scope 34 at $DIR/reference_prop.rs:+68:13: +68:14
scope 35 {
debug a => _51; // in scope 35 at $DIR/reference_prop.rs:+68:13: +68:14
let _53: T; // in scope 35 at $DIR/reference_prop.rs:+70:13: +70:14
debug a => _52; // in scope 35 at $DIR/reference_prop.rs:+68:13: +68:14
let _54: T; // in scope 35 at $DIR/reference_prop.rs:+70:13: +70:14
scope 36 {
debug b => _53; // in scope 36 at $DIR/reference_prop.rs:+70:13: +70:14
debug b => _54; // in scope 36 at $DIR/reference_prop.rs:+70:13: +70:14
}
}
}
scope 37 {
let mut _58: usize; // in scope 37 at $DIR/reference_prop.rs:+76:13: +76:18
scope 38 {
debug a => _58; // in scope 38 at $DIR/reference_prop.rs:+76:13: +76:18
let _59: *mut usize; // in scope 38 at $DIR/reference_prop.rs:+77:13: +77:14
scope 39 {
- debug b => _59; // in scope 39 at $DIR/reference_prop.rs:+77:13: +77:14
+ debug b => &_58; // in scope 39 at $DIR/reference_prop.rs:+77:13: +77:14
let _60: &*mut usize; // in scope 39 at $DIR/reference_prop.rs:+78:13: +78:14
scope 40 {
- debug d => _60; // in scope 40 at $DIR/reference_prop.rs:+78:13: +78:14
+ debug d => &&_58; // in scope 40 at $DIR/reference_prop.rs:+78:13: +78:14
let _61: usize; // in scope 40 at $DIR/reference_prop.rs:+79:13: +79:14
scope 41 {
debug c => _61; // in scope 41 at $DIR/reference_prop.rs:+79:13: +79:14
}
}
}
}
}
scope 42 {
let mut _64: usize; // in scope 42 at $DIR/reference_prop.rs:+85:13: +85:18
scope 43 {
debug a => _64; // in scope 43 at $DIR/reference_prop.rs:+85:13: +85:18
let mut _65: *mut usize; // in scope 43 at $DIR/reference_prop.rs:+86:13: +86:18
scope 44 {
- debug b => _65; // in scope 44 at $DIR/reference_prop.rs:+86:13: +86:18
+ debug b => &_64; // in scope 44 at $DIR/reference_prop.rs:+86:13: +86:18
let _66: &mut *mut usize; // in scope 44 at $DIR/reference_prop.rs:+87:13: +87:14
scope 45 {
- debug d => _66; // in scope 45 at $DIR/reference_prop.rs:+87:13: +87:14
+ debug d => &&_64; // in scope 45 at $DIR/reference_prop.rs:+87:13: +87:14
let _67: usize; // in scope 45 at $DIR/reference_prop.rs:+88:13: +88:14
scope 46 {
debug c => _67; // in scope 46 at $DIR/reference_prop.rs:+88:13: +88:14
}
}
}
}
}
@ -163,8 +211,8 @@
- StorageLive(_3); // scope 0 at $DIR/reference_prop.rs:+2:5: +7:6
StorageLive(_4); // scope 1 at $DIR/reference_prop.rs:+3:13: +3:18
_4 = const 5_usize; // scope 1 at $DIR/reference_prop.rs:+3:21: +3:28
StorageLive(_5); // scope 2 at $DIR/reference_prop.rs:+4:13: +4:14
_5 = &raw mut _4; // scope 2 at $DIR/reference_prop.rs:+4:17: +4:27
- StorageLive(_5); // scope 2 at $DIR/reference_prop.rs:+4:13: +4:14
- _5 = &raw mut _4; // scope 2 at $DIR/reference_prop.rs:+4:17: +4:27
StorageLive(_6); // scope 3 at $DIR/reference_prop.rs:+5:13: +5:14
- _6 = (*_5); // scope 3 at $DIR/reference_prop.rs:+5:17: +5:19
+ _6 = _4; // scope 3 at $DIR/reference_prop.rs:+5:17: +5:19
@ -173,7 +221,7 @@
_8 = (); // scope 4 at $DIR/reference_prop.rs:+6:16: +6:18
_7 = opaque::<()>(move _8) -> bb1; // scope 4 at $DIR/reference_prop.rs:+6:9: +6:19
// mir::Constant
// + span: $DIR/reference_prop.rs:250:9: 250:15
// + span: $DIR/reference_prop.rs:304:9: 304:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
@ -182,7 +230,7 @@
StorageDead(_7); // scope 4 at $DIR/reference_prop.rs:+6:19: +6:20
- _3 = const (); // scope 1 at $DIR/reference_prop.rs:+2:5: +7:6
StorageDead(_6); // scope 3 at $DIR/reference_prop.rs:+7:5: +7:6
StorageDead(_5); // scope 2 at $DIR/reference_prop.rs:+7:5: +7:6
- StorageDead(_5); // scope 2 at $DIR/reference_prop.rs:+7:5: +7:6
StorageDead(_4); // scope 1 at $DIR/reference_prop.rs:+7:5: +7:6
- StorageDead(_3); // scope 0 at $DIR/reference_prop.rs:+7:5: +7:6
- StorageLive(_9); // scope 0 at $DIR/reference_prop.rs:+10:5: +18:6
@ -203,7 +251,7 @@
_16 = (); // scope 9 at $DIR/reference_prop.rs:+17:16: +17:18
_15 = opaque::<()>(move _16) -> bb2; // scope 9 at $DIR/reference_prop.rs:+17:9: +17:19
// mir::Constant
// + span: $DIR/reference_prop.rs:261:9: 261:15
// + span: $DIR/reference_prop.rs:315:9: 315:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
@ -225,18 +273,18 @@
_20 = &_19; // scope 12 at $DIR/reference_prop.rs:+24:17: +24:19
StorageLive(_21); // scope 13 at $DIR/reference_prop.rs:+25:13: +25:14
_21 = (*_19); // scope 13 at $DIR/reference_prop.rs:+25:17: +25:19
StorageLive(_22); // scope 14 at $DIR/reference_prop.rs:+26:9: +26:19
StorageLive(_23); // scope 14 at $DIR/reference_prop.rs:+26:16: +26:18
_23 = (); // scope 14 at $DIR/reference_prop.rs:+26:16: +26:18
_22 = opaque::<()>(move _23) -> bb3; // scope 14 at $DIR/reference_prop.rs:+26:9: +26:19
StorageLive(_22); // scope 14 at $DIR/reference_prop.rs:+26:9: +26:18
StorageLive(_23); // scope 14 at $DIR/reference_prop.rs:+26:16: +26:17
_23 = _20; // scope 14 at $DIR/reference_prop.rs:+26:16: +26:17
_22 = opaque::<&*mut usize>(move _23) -> bb3; // scope 14 at $DIR/reference_prop.rs:+26:9: +26:18
// mir::Constant
// + span: $DIR/reference_prop.rs:270:9: 270:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
// + span: $DIR/reference_prop.rs:324:9: 324:15
// + literal: Const { ty: fn(&*mut usize) {opaque::<&*mut usize>}, val: Value(<ZST>) }
}
bb3: {
StorageDead(_23); // scope 14 at $DIR/reference_prop.rs:+26:18: +26:19
StorageDead(_22); // scope 14 at $DIR/reference_prop.rs:+26:19: +26:20
StorageDead(_23); // scope 14 at $DIR/reference_prop.rs:+26:17: +26:18
StorageDead(_22); // scope 14 at $DIR/reference_prop.rs:+26:18: +26:19
- _17 = const (); // scope 10 at $DIR/reference_prop.rs:+21:5: +27:6
StorageDead(_21); // scope 13 at $DIR/reference_prop.rs:+27:5: +27:6
StorageDead(_20); // scope 12 at $DIR/reference_prop.rs:+27:5: +27:6
@ -249,21 +297,21 @@
StorageLive(_26); // scope 16 at $DIR/reference_prop.rs:+32:13: +32:18
_26 = &raw mut _25; // scope 16 at $DIR/reference_prop.rs:+32:21: +32:31
StorageLive(_27); // scope 17 at $DIR/reference_prop.rs:+33:13: +33:14
_27 = &mut _26; // scope 17 at $DIR/reference_prop.rs:+33:17: +33:23
_27 = &raw mut _26; // scope 17 at $DIR/reference_prop.rs:+33:17: +33:27
StorageLive(_28); // scope 18 at $DIR/reference_prop.rs:+34:13: +34:14
_28 = (*_26); // scope 18 at $DIR/reference_prop.rs:+34:17: +34:19
StorageLive(_29); // scope 19 at $DIR/reference_prop.rs:+35:9: +35:19
StorageLive(_30); // scope 19 at $DIR/reference_prop.rs:+35:16: +35:18
_30 = (); // scope 19 at $DIR/reference_prop.rs:+35:16: +35:18
_29 = opaque::<()>(move _30) -> bb4; // scope 19 at $DIR/reference_prop.rs:+35:9: +35:19
StorageLive(_29); // scope 19 at $DIR/reference_prop.rs:+35:9: +35:18
StorageLive(_30); // scope 19 at $DIR/reference_prop.rs:+35:16: +35:17
_30 = _27; // scope 19 at $DIR/reference_prop.rs:+35:16: +35:17
_29 = opaque::<*mut *mut usize>(move _30) -> bb4; // scope 19 at $DIR/reference_prop.rs:+35:9: +35:18
// mir::Constant
// + span: $DIR/reference_prop.rs:279:9: 279:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
// + span: $DIR/reference_prop.rs:333:9: 333:15
// + literal: Const { ty: fn(*mut *mut usize) {opaque::<*mut *mut usize>}, val: Value(<ZST>) }
}
bb4: {
StorageDead(_30); // scope 19 at $DIR/reference_prop.rs:+35:18: +35:19
StorageDead(_29); // scope 19 at $DIR/reference_prop.rs:+35:19: +35:20
StorageDead(_30); // scope 19 at $DIR/reference_prop.rs:+35:17: +35:18
StorageDead(_29); // scope 19 at $DIR/reference_prop.rs:+35:18: +35:19
- _24 = const (); // scope 15 at $DIR/reference_prop.rs:+30:5: +36:6
StorageDead(_28); // scope 18 at $DIR/reference_prop.rs:+36:5: +36:6
StorageDead(_27); // scope 17 at $DIR/reference_prop.rs:+36:5: +36:6
@ -282,7 +330,7 @@
_36 = _33; // scope 23 at $DIR/reference_prop.rs:+43:16: +43:17
_35 = opaque::<*mut usize>(move _36) -> bb5; // scope 23 at $DIR/reference_prop.rs:+43:9: +43:18
// mir::Constant
// + span: $DIR/reference_prop.rs:287:9: 287:15
// + span: $DIR/reference_prop.rs:341:9: 341:15
// + literal: Const { ty: fn(*mut usize) {opaque::<*mut usize>}, val: Value(<ZST>) }
}
@ -312,7 +360,7 @@
_45 = _43; // scope 30 at $DIR/reference_prop.rs:+56:16: +56:18
_44 = opaque::<*mut usize>(move _45) -> bb6; // scope 30 at $DIR/reference_prop.rs:+56:9: +56:19
// mir::Constant
// + span: $DIR/reference_prop.rs:300:9: 300:15
// + span: $DIR/reference_prop.rs:354:9: 354:15
// + literal: Const { ty: fn(*mut usize) {opaque::<*mut usize>}, val: Value(<ZST>) }
}
@ -328,8 +376,8 @@
StorageDead(_38); // scope 24 at $DIR/reference_prop.rs:+57:5: +57:6
- StorageDead(_37); // scope 0 at $DIR/reference_prop.rs:+57:5: +57:6
- StorageLive(_46); // scope 0 at $DIR/reference_prop.rs:+60:5: +64:6
StorageLive(_47); // scope 31 at $DIR/reference_prop.rs:+61:13: +61:14
_47 = &raw mut (*_1); // scope 31 at $DIR/reference_prop.rs:+61:17: +61:33
- StorageLive(_47); // scope 31 at $DIR/reference_prop.rs:+61:13: +61:14
- _47 = &raw mut (*_1); // scope 31 at $DIR/reference_prop.rs:+61:17: +61:33
StorageLive(_48); // scope 32 at $DIR/reference_prop.rs:+62:13: +62:14
- _48 = (*_47); // scope 32 at $DIR/reference_prop.rs:+62:17: +62:19
+ _48 = (*_1); // scope 32 at $DIR/reference_prop.rs:+62:17: +62:19
@ -338,7 +386,7 @@
_50 = (); // scope 33 at $DIR/reference_prop.rs:+63:16: +63:18
_49 = opaque::<()>(move _50) -> bb7; // scope 33 at $DIR/reference_prop.rs:+63:9: +63:19
// mir::Constant
// + span: $DIR/reference_prop.rs:307:9: 307:15
// + span: $DIR/reference_prop.rs:361:9: 361:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
@ -347,32 +395,88 @@
StorageDead(_49); // scope 33 at $DIR/reference_prop.rs:+63:19: +63:20
- _46 = const (); // scope 31 at $DIR/reference_prop.rs:+60:5: +64:6
StorageDead(_48); // scope 32 at $DIR/reference_prop.rs:+64:5: +64:6
StorageDead(_47); // scope 31 at $DIR/reference_prop.rs:+64:5: +64:6
- StorageDead(_47); // scope 31 at $DIR/reference_prop.rs:+64:5: +64:6
- StorageDead(_46); // scope 0 at $DIR/reference_prop.rs:+64:5: +64:6
StorageLive(_51); // scope 34 at $DIR/reference_prop.rs:+68:13: +68:14
_51 = &raw mut (*_2); // scope 34 at $DIR/reference_prop.rs:+68:17: +68:35
StorageLive(_52); // scope 35 at $DIR/reference_prop.rs:+69:20: +69:36
_52 = &raw mut (*_1); // scope 35 at $DIR/reference_prop.rs:+69:20: +69:36
_2 = move _52; // scope 35 at $DIR/reference_prop.rs:+69:9: +69:36
StorageDead(_52); // scope 35 at $DIR/reference_prop.rs:+69:35: +69:36
StorageLive(_53); // scope 35 at $DIR/reference_prop.rs:+70:13: +70:14
_53 = (*_51); // scope 35 at $DIR/reference_prop.rs:+70:17: +70:19
StorageLive(_54); // scope 36 at $DIR/reference_prop.rs:+71:9: +71:19
StorageLive(_55); // scope 36 at $DIR/reference_prop.rs:+71:16: +71:18
_55 = (); // scope 36 at $DIR/reference_prop.rs:+71:16: +71:18
_54 = opaque::<()>(move _55) -> bb8; // scope 36 at $DIR/reference_prop.rs:+71:9: +71:19
- StorageLive(_51); // scope 0 at $DIR/reference_prop.rs:+67:5: +72:6
StorageLive(_52); // scope 34 at $DIR/reference_prop.rs:+68:13: +68:14
_52 = &raw mut (*_2); // scope 34 at $DIR/reference_prop.rs:+68:17: +68:35
StorageLive(_53); // scope 35 at $DIR/reference_prop.rs:+69:20: +69:36
_53 = &raw mut (*_1); // scope 35 at $DIR/reference_prop.rs:+69:20: +69:36
_2 = move _53; // scope 35 at $DIR/reference_prop.rs:+69:9: +69:36
StorageDead(_53); // scope 35 at $DIR/reference_prop.rs:+69:35: +69:36
StorageLive(_54); // scope 35 at $DIR/reference_prop.rs:+70:13: +70:14
_54 = (*_52); // scope 35 at $DIR/reference_prop.rs:+70:17: +70:19
StorageLive(_55); // scope 36 at $DIR/reference_prop.rs:+71:9: +71:19
StorageLive(_56); // scope 36 at $DIR/reference_prop.rs:+71:16: +71:18
_56 = (); // scope 36 at $DIR/reference_prop.rs:+71:16: +71:18
_55 = opaque::<()>(move _56) -> bb8; // scope 36 at $DIR/reference_prop.rs:+71:9: +71:19
// mir::Constant
// + span: $DIR/reference_prop.rs:315:9: 315:15
// + span: $DIR/reference_prop.rs:369:9: 369:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
bb8: {
StorageDead(_55); // scope 36 at $DIR/reference_prop.rs:+71:18: +71:19
StorageDead(_54); // scope 36 at $DIR/reference_prop.rs:+71:19: +71:20
_0 = const (); // scope 34 at $DIR/reference_prop.rs:+67:5: +72:6
StorageDead(_53); // scope 35 at $DIR/reference_prop.rs:+72:5: +72:6
StorageDead(_51); // scope 34 at $DIR/reference_prop.rs:+72:5: +72:6
return; // scope 0 at $DIR/reference_prop.rs:+73:2: +73:2
StorageDead(_56); // scope 36 at $DIR/reference_prop.rs:+71:18: +71:19
StorageDead(_55); // scope 36 at $DIR/reference_prop.rs:+71:19: +71:20
- _51 = const (); // scope 34 at $DIR/reference_prop.rs:+67:5: +72:6
StorageDead(_54); // scope 35 at $DIR/reference_prop.rs:+72:5: +72:6
StorageDead(_52); // scope 34 at $DIR/reference_prop.rs:+72:5: +72:6
- StorageDead(_51); // scope 0 at $DIR/reference_prop.rs:+72:5: +72:6
- StorageLive(_57); // scope 0 at $DIR/reference_prop.rs:+75:5: +81:6
StorageLive(_58); // scope 37 at $DIR/reference_prop.rs:+76:13: +76:18
_58 = const 5_usize; // scope 37 at $DIR/reference_prop.rs:+76:21: +76:28
- StorageLive(_59); // scope 38 at $DIR/reference_prop.rs:+77:13: +77:14
- _59 = &raw mut _58; // scope 38 at $DIR/reference_prop.rs:+77:17: +77:27
- StorageLive(_60); // scope 39 at $DIR/reference_prop.rs:+78:13: +78:14
- _60 = &_59; // scope 39 at $DIR/reference_prop.rs:+78:17: +78:19
StorageLive(_61); // scope 40 at $DIR/reference_prop.rs:+79:13: +79:14
- _61 = (*_59); // scope 40 at $DIR/reference_prop.rs:+79:17: +79:19
+ _61 = _58; // scope 40 at $DIR/reference_prop.rs:+79:17: +79:19
StorageLive(_62); // scope 41 at $DIR/reference_prop.rs:+80:9: +80:19
StorageLive(_63); // scope 41 at $DIR/reference_prop.rs:+80:16: +80:18
_63 = (); // scope 41 at $DIR/reference_prop.rs:+80:16: +80:18
_62 = opaque::<()>(move _63) -> bb9; // scope 41 at $DIR/reference_prop.rs:+80:9: +80:19
// mir::Constant
// + span: $DIR/reference_prop.rs:378:9: 378:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
bb9: {
StorageDead(_63); // scope 41 at $DIR/reference_prop.rs:+80:18: +80:19
StorageDead(_62); // scope 41 at $DIR/reference_prop.rs:+80:19: +80:20
- _57 = const (); // scope 37 at $DIR/reference_prop.rs:+75:5: +81:6
StorageDead(_61); // scope 40 at $DIR/reference_prop.rs:+81:5: +81:6
- StorageDead(_60); // scope 39 at $DIR/reference_prop.rs:+81:5: +81:6
- StorageDead(_59); // scope 38 at $DIR/reference_prop.rs:+81:5: +81:6
StorageDead(_58); // scope 37 at $DIR/reference_prop.rs:+81:5: +81:6
- StorageDead(_57); // scope 0 at $DIR/reference_prop.rs:+81:5: +81:6
StorageLive(_64); // scope 42 at $DIR/reference_prop.rs:+85:13: +85:18
_64 = const 5_usize; // scope 42 at $DIR/reference_prop.rs:+85:21: +85:28
- StorageLive(_65); // scope 43 at $DIR/reference_prop.rs:+86:13: +86:18
- _65 = &raw mut _64; // scope 43 at $DIR/reference_prop.rs:+86:21: +86:31
- StorageLive(_66); // scope 44 at $DIR/reference_prop.rs:+87:13: +87:14
- _66 = &mut _65; // scope 44 at $DIR/reference_prop.rs:+87:17: +87:23
StorageLive(_67); // scope 45 at $DIR/reference_prop.rs:+88:13: +88:14
- _67 = (*_65); // scope 45 at $DIR/reference_prop.rs:+88:17: +88:19
+ _67 = _64; // scope 45 at $DIR/reference_prop.rs:+88:17: +88:19
StorageLive(_68); // scope 46 at $DIR/reference_prop.rs:+89:9: +89:19
StorageLive(_69); // scope 46 at $DIR/reference_prop.rs:+89:16: +89:18
_69 = (); // scope 46 at $DIR/reference_prop.rs:+89:16: +89:18
_68 = opaque::<()>(move _69) -> bb10; // scope 46 at $DIR/reference_prop.rs:+89:9: +89:19
// mir::Constant
// + span: $DIR/reference_prop.rs:387:9: 387:15
// + literal: Const { ty: fn(()) {opaque::<()>}, val: Value(<ZST>) }
}
bb10: {
StorageDead(_69); // scope 46 at $DIR/reference_prop.rs:+89:18: +89:19
StorageDead(_68); // scope 46 at $DIR/reference_prop.rs:+89:19: +89:20
_0 = const (); // scope 42 at $DIR/reference_prop.rs:+84:5: +90:6
StorageDead(_67); // scope 45 at $DIR/reference_prop.rs:+90:5: +90:6
- StorageDead(_66); // scope 44 at $DIR/reference_prop.rs:+90:5: +90:6
- StorageDead(_65); // scope 43 at $DIR/reference_prop.rs:+90:5: +90:6
StorageDead(_64); // scope 42 at $DIR/reference_prop.rs:+90:5: +90:6
return; // scope 0 at $DIR/reference_prop.rs:+91:2: +91:2
}
}

View file

@ -33,16 +33,16 @@ fn reference_propagation<'a, T: Copy>(single: &'a T, mut multiple: &'a T) {
let b = &a;
let d = &b;
let c = *b; // `b` is immutably borrowed, we know its value, but do not propagate it
opaque(());
opaque(d); // prevent `d` from being removed.
}
// Propagation through a borrowed reference.
{
let a = 5_usize;
let mut b = &a;
let d = &mut b;
let d = &raw mut b;
let c = *b; // `b` is mutably borrowed, we cannot know its value.
opaque(());
opaque(d); // prevent `d` from being removed.
}
// Propagation through an escaping borrow.
@ -80,6 +80,24 @@ fn reference_propagation<'a, T: Copy>(single: &'a T, mut multiple: &'a T) {
let b = *a; // This should not be optimized.
opaque(());
}
// Fixed-point propagation through a borrowed reference.
{
let a = 5_usize;
let b = &a;
let d = &b; // first round promotes debuginfo for `d`
let c = *b; // second round propagates this dereference
opaque(());
}
// Fixed-point propagation through a borrowed reference.
{
let a = 5_usize;
let mut b = &a;
let d = &mut b; // first round promotes debuginfo for `d`
let c = *b; // second round propagates this dereference
opaque(());
}
}
fn reference_propagation_mut<'a, T: Copy>(single: &'a mut T, mut multiple: &'a mut T) {
@ -108,16 +126,16 @@ fn reference_propagation_mut<'a, T: Copy>(single: &'a mut T, mut multiple: &'a m
let b = &mut a;
let d = &b;
let c = *b; // `b` is immutably borrowed, we know its value, but cannot be removed.
opaque(());
opaque(d); // prevent `d` from being removed.
}
// Propagation through a borrowed reference.
{
let mut a = 5_usize;
let mut b = &mut a;
let d = &mut b;
let d = &raw mut b;
let c = *b; // `b` is mutably borrowed, we cannot know its value.
opaque(());
opaque(d); // prevent `d` from being removed.
}
// Propagation through an escaping borrow.
@ -155,6 +173,24 @@ fn reference_propagation_mut<'a, T: Copy>(single: &'a mut T, mut multiple: &'a m
let b = *a; // This should not be optimized.
opaque(());
}
// Fixed-point propagation through a borrowed reference.
{
let mut a = 5_usize;
let b = &mut a;
let d = &b; // first round promotes debuginfo for `d`
let c = *b; // second round propagates this dereference
opaque(());
}
// Fixed-point propagation through a borrowed reference.
{
let mut a = 5_usize;
let mut b = &mut a;
let d = &mut b; // first round promotes debuginfo for `d`
let c = *b; // second round propagates this dereference
opaque(());
}
}
fn reference_propagation_const_ptr<T: Copy>(single: *const T, mut multiple: *const T) {
@ -183,16 +219,16 @@ fn reference_propagation_const_ptr<T: Copy>(single: *const T, mut multiple: *con
let b = &raw const a;
let d = &b;
let c = *b; // `b` is immutably borrowed, we know its value, but cannot be removed.
opaque(());
opaque(d); // prevent `d` from being removed.
}
// Propagation through a borrowed reference.
unsafe {
let a = 5_usize;
let mut b = &raw const a;
let d = &mut b;
let d = &raw mut b;
let c = *b; // `b` is mutably borrowed, we cannot know its value.
opaque(());
opaque(d); // prevent `d` from being removed.
}
// Propagation through an escaping borrow.
@ -239,6 +275,24 @@ fn reference_propagation_const_ptr<T: Copy>(single: *const T, mut multiple: *con
let e = *c;
opaque(());
}
// Fixed-point propagation through a borrowed reference.
unsafe {
let a = 5_usize;
let b = &raw const a;
let d = &b; // first round promotes debuginfo for `d`
let c = *b; // second round propagates this dereference
opaque(());
}
// Fixed-point propagation through a borrowed reference.
unsafe {
let a = 5_usize;
let mut b = &raw const a;
let d = &mut b; // first round promotes debuginfo for `d`
let c = *b; // second round propagates this dereference
opaque(());
}
}
fn reference_propagation_mut_ptr<T: Copy>(single: *mut T, mut multiple: *mut T) {
@ -267,16 +321,16 @@ fn reference_propagation_mut_ptr<T: Copy>(single: *mut T, mut multiple: *mut T)
let b = &raw mut a;
let d = &b;
let c = *b; // `b` is immutably borrowed, we know its value, but cannot be removed.
opaque(());
opaque(d); // prevent `d` from being removed.
}
// Propagation through a borrowed reference.
unsafe {
let mut a = 5_usize;
let mut b = &raw mut a;
let d = &mut b;
let d = &raw mut b;
let c = *b; // `b` is mutably borrowed, we cannot know its value.
opaque(());
opaque(d); // prevent `d` from being removed.
}
// Propagation through an escaping borrow.
@ -314,6 +368,24 @@ fn reference_propagation_mut_ptr<T: Copy>(single: *mut T, mut multiple: *mut T)
let b = *a; // This should not be optimized.
opaque(());
}
// Fixed-point propagation through a borrowed reference.
unsafe {
let mut a = 5_usize;
let b = &raw mut a;
let d = &b; // first round promotes debuginfo for `d`
let c = *b; // second round propagates this dereference
opaque(());
}
// Fixed-point propagation through a borrowed reference.
unsafe {
let mut a = 5_usize;
let mut b = &raw mut a;
let d = &mut b; // first round promotes debuginfo for `d`
let c = *b; // second round propagates this dereference
opaque(());
}
}
#[custom_mir(dialect = "runtime", phase = "post-cleanup")]
@ -456,6 +528,40 @@ fn unique_with_copies() {
unsafe { opaque(*y) };
}
fn debuginfo() {
struct T(u8);
let ref_mut_u8 = &mut 5_u8;
let field = &T(0).0;
// Verify that we don't emit `&*` in debuginfo.
let reborrow = &*ref_mut_u8;
match Some(0) {
None => {}
Some(ref variant_field) => {}
}
// `constant_index_from_end` and `subslice` should not be promoted, as their value depends
// on the slice length.
if let [_, ref constant_index, subslice @ .., ref constant_index_from_end] = &[6; 10][..] {
}
let multiple_borrow = &&&mut T(6).0;
}
fn many_debuginfo() {
let a = 0;
// Verify that we do not ICE on deeply nested borrows.
let many_borrow =
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&a;
}
fn main() {
let mut x = 5_usize;
let mut y = 7_usize;
@ -469,6 +575,8 @@ fn main() {
maybe_dead(true);
mut_raw_then_mut_shr();
unique_with_copies();
debuginfo();
many_debuginfo();
}
// EMIT_MIR reference_prop.reference_propagation.ReferencePropagation.diff
@ -481,3 +589,4 @@ fn main() {
// EMIT_MIR reference_prop.maybe_dead.ReferencePropagation.diff
// EMIT_MIR reference_prop.mut_raw_then_mut_shr.ReferencePropagation.diff
// EMIT_MIR reference_prop.unique_with_copies.ReferencePropagation.diff
// EMIT_MIR reference_prop.debuginfo.ReferencePropagation.diff

View file

@ -10,7 +10,8 @@
let _6: (); // in scope 0 at $DIR/reference_prop.rs:+9:14: +9:24
let mut _7: i32; // in scope 0 at $DIR/reference_prop.rs:+9:21: +9:23
scope 1 {
debug y => _1; // in scope 1 at $DIR/reference_prop.rs:+1:9: +1:10
- debug y => _1; // in scope 1 at $DIR/reference_prop.rs:+1:9: +1:10
+ debug y => _3; // in scope 1 at $DIR/reference_prop.rs:+1:9: +1:10
scope 5 {
}
}
@ -25,7 +26,7 @@
}
bb0: {
StorageLive(_1); // scope 0 at $DIR/reference_prop.rs:+1:9: +1:10
- StorageLive(_1); // scope 0 at $DIR/reference_prop.rs:+1:9: +1:10
StorageLive(_2); // scope 0 at $DIR/reference_prop.rs:+2:13: +2:18
_2 = const 0_i32; // scope 0 at $DIR/reference_prop.rs:+2:21: +2:22
- StorageLive(_3); // scope 2 at $DIR/reference_prop.rs:+3:13: +3:14
@ -35,14 +36,14 @@
_5 = (*_3); // scope 4 at $DIR/reference_prop.rs:+5:25: +5:27
_4 = opaque::<i32>(move _5) -> bb1; // scope 4 at $DIR/reference_prop.rs:+5:18: +5:28
// mir::Constant
// + span: $DIR/reference_prop.rs:452:18: 452:24
// + span: $DIR/reference_prop.rs:524:18: 524:24
// + literal: Const { ty: fn(i32) {opaque::<i32>}, val: Value(<ZST>) }
}
bb1: {
StorageDead(_5); // scope 4 at $DIR/reference_prop.rs:+5:27: +5:28
StorageDead(_4); // scope 3 at $DIR/reference_prop.rs:+5:30: +5:31
_1 = _3; // scope 3 at $DIR/reference_prop.rs:+6:9: +6:10
- _1 = _3; // scope 3 at $DIR/reference_prop.rs:+6:9: +6:10
- StorageDead(_3); // scope 2 at $DIR/reference_prop.rs:+7:5: +7:6
StorageDead(_2); // scope 0 at $DIR/reference_prop.rs:+7:5: +7:6
StorageLive(_6); // scope 1 at $DIR/reference_prop.rs:+9:5: +9:26
@ -51,7 +52,7 @@
+ _7 = (*_3); // scope 5 at $DIR/reference_prop.rs:+9:21: +9:23
_6 = opaque::<i32>(move _7) -> bb2; // scope 5 at $DIR/reference_prop.rs:+9:14: +9:24
// mir::Constant
// + span: $DIR/reference_prop.rs:456:14: 456:20
// + span: $DIR/reference_prop.rs:528:14: 528:20
// + literal: Const { ty: fn(i32) {opaque::<i32>}, val: Value(<ZST>) }
}
@ -59,7 +60,7 @@
StorageDead(_7); // scope 5 at $DIR/reference_prop.rs:+9:23: +9:24
StorageDead(_6); // scope 1 at $DIR/reference_prop.rs:+9:26: +9:27
_0 = const (); // scope 0 at $DIR/reference_prop.rs:+0:25: +10:2
StorageDead(_1); // scope 0 at $DIR/reference_prop.rs:+10:1: +10:2
- StorageDead(_1); // scope 0 at $DIR/reference_prop.rs:+10:1: +10:2
return; // scope 0 at $DIR/reference_prop.rs:+10:2: +10:2
}
}

View file

@ -3,136 +3,79 @@
fn variant_a::{closure#0}(_1: &mut [closure@$DIR/slice_filter.rs:8:25: 8:39], _2: &&(usize, usize, usize, usize)) -> bool {
let mut _0: bool; // return place in scope 0 at $DIR/slice_filter.rs:+0:40: +0:40
let _3: &usize; // in scope 0 at $DIR/slice_filter.rs:+0:27: +0:28
let _4: &usize; // in scope 0 at $DIR/slice_filter.rs:+0:30: +0:31
let _5: &usize; // in scope 0 at $DIR/slice_filter.rs:+0:33: +0:34
let _6: &usize; // in scope 0 at $DIR/slice_filter.rs:+0:36: +0:37
let mut _7: bool; // in scope 0 at $DIR/slice_filter.rs:+0:40: +0:56
let mut _8: bool; // in scope 0 at $DIR/slice_filter.rs:+0:40: +0:46
let mut _9: &&usize; // in scope 0 at $DIR/slice_filter.rs:+0:40: +0:41
let mut _10: &&usize; // in scope 0 at $DIR/slice_filter.rs:+0:45: +0:46
let _11: &usize; // in scope 0 at $DIR/slice_filter.rs:+0:45: +0:46
let mut _12: bool; // in scope 0 at $DIR/slice_filter.rs:+0:50: +0:56
let mut _13: &&usize; // in scope 0 at $DIR/slice_filter.rs:+0:50: +0:51
let mut _14: &&usize; // in scope 0 at $DIR/slice_filter.rs:+0:55: +0:56
let _15: &usize; // in scope 0 at $DIR/slice_filter.rs:+0:55: +0:56
let mut _16: bool; // in scope 0 at $DIR/slice_filter.rs:+0:60: +0:76
let mut _17: bool; // in scope 0 at $DIR/slice_filter.rs:+0:60: +0:66
let mut _18: &&usize; // in scope 0 at $DIR/slice_filter.rs:+0:60: +0:61
let mut _19: &&usize; // in scope 0 at $DIR/slice_filter.rs:+0:65: +0:66
let _20: &usize; // in scope 0 at $DIR/slice_filter.rs:+0:65: +0:66
let mut _21: bool; // in scope 0 at $DIR/slice_filter.rs:+0:70: +0:76
let mut _22: &&usize; // in scope 0 at $DIR/slice_filter.rs:+0:70: +0:71
let mut _23: &&usize; // in scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
let _24: &usize; // in scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
let mut _25: &(usize, usize, usize, usize); // in scope 0 at $DIR/slice_filter.rs:+0:26: +0:38
let mut _26: &(usize, usize, usize, usize); // in scope 0 at $DIR/slice_filter.rs:+0:26: +0:38
let mut _27: &(usize, usize, usize, usize); // in scope 0 at $DIR/slice_filter.rs:+0:26: +0:38
let mut _28: &(usize, usize, usize, usize); // in scope 0 at $DIR/slice_filter.rs:+0:26: +0:38
let mut _3: bool; // in scope 0 at $DIR/slice_filter.rs:+0:40: +0:56
let mut _4: bool; // in scope 0 at $DIR/slice_filter.rs:+0:40: +0:46
let mut _5: bool; // in scope 0 at $DIR/slice_filter.rs:+0:50: +0:56
let mut _6: bool; // in scope 0 at $DIR/slice_filter.rs:+0:60: +0:76
let mut _7: bool; // in scope 0 at $DIR/slice_filter.rs:+0:60: +0:66
let mut _8: bool; // in scope 0 at $DIR/slice_filter.rs:+0:70: +0:76
let mut _9: &(usize, usize, usize, usize); // in scope 0 at $DIR/slice_filter.rs:+0:26: +0:38
let mut _10: &(usize, usize, usize, usize); // in scope 0 at $DIR/slice_filter.rs:+0:26: +0:38
let mut _11: &(usize, usize, usize, usize); // in scope 0 at $DIR/slice_filter.rs:+0:26: +0:38
let mut _12: &(usize, usize, usize, usize); // in scope 0 at $DIR/slice_filter.rs:+0:26: +0:38
scope 1 {
- debug a => _3; // in scope 1 at $DIR/slice_filter.rs:+0:27: +0:28
- debug b => _4; // in scope 1 at $DIR/slice_filter.rs:+0:30: +0:31
- debug c => _5; // in scope 1 at $DIR/slice_filter.rs:+0:33: +0:34
- debug d => _6; // in scope 1 at $DIR/slice_filter.rs:+0:36: +0:37
+ debug a => _20; // in scope 1 at $DIR/slice_filter.rs:+0:27: +0:28
+ debug b => _15; // in scope 1 at $DIR/slice_filter.rs:+0:30: +0:31
+ debug c => _11; // in scope 1 at $DIR/slice_filter.rs:+0:33: +0:34
+ debug d => _24; // in scope 1 at $DIR/slice_filter.rs:+0:36: +0:37
debug a => &((*_9).0: usize); // in scope 1 at $DIR/slice_filter.rs:+0:27: +0:28
debug b => &((*_10).1: usize); // in scope 1 at $DIR/slice_filter.rs:+0:30: +0:31
debug c => &((*_11).2: usize); // in scope 1 at $DIR/slice_filter.rs:+0:33: +0:34
debug d => &((*_12).3: usize); // in scope 1 at $DIR/slice_filter.rs:+0:36: +0:37
scope 2 (inlined cmp::impls::<impl PartialOrd for &usize>::le) { // at $DIR/slice_filter.rs:8:40: 8:46
debug self => _9; // in scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => _10; // in scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _29: &usize; // in scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _30: &usize; // in scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug self => &&((*_9).0: usize); // in scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => &&((*_11).2: usize); // in scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
scope 3 (inlined cmp::impls::<impl PartialOrd for usize>::le) { // at $SRC_DIR/core/src/cmp.rs:LL:COL
debug self => _29; // in scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => _30; // in scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _31: usize; // in scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _32: usize; // in scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug self => &((*_9).0: usize); // in scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => &((*_11).2: usize); // in scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _13: usize; // in scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _14: usize; // in scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
}
}
scope 4 (inlined cmp::impls::<impl PartialOrd for &usize>::le) { // at $DIR/slice_filter.rs:8:60: 8:66
debug self => _18; // in scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => _19; // in scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _33: &usize; // in scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _34: &usize; // in scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug self => &&((*_11).2: usize); // in scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => &&((*_9).0: usize); // in scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
scope 5 (inlined cmp::impls::<impl PartialOrd for usize>::le) { // at $SRC_DIR/core/src/cmp.rs:LL:COL
debug self => _33; // in scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => _34; // in scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _35: usize; // in scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _36: usize; // in scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug self => &((*_11).2: usize); // in scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => &((*_9).0: usize); // in scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _15: usize; // in scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _16: usize; // in scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
}
}
scope 6 (inlined cmp::impls::<impl PartialOrd for &usize>::le) { // at $DIR/slice_filter.rs:8:50: 8:56
debug self => _13; // in scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => _14; // in scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _37: &usize; // in scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _38: &usize; // in scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug self => &&((*_12).3: usize); // in scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => &&((*_10).1: usize); // in scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
scope 7 (inlined cmp::impls::<impl PartialOrd for usize>::le) { // at $SRC_DIR/core/src/cmp.rs:LL:COL
debug self => _37; // in scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => _38; // in scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _39: usize; // in scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _40: usize; // in scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug self => &((*_12).3: usize); // in scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => &((*_10).1: usize); // in scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _17: usize; // in scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _18: usize; // in scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
}
}
scope 8 (inlined cmp::impls::<impl PartialOrd for &usize>::le) { // at $DIR/slice_filter.rs:8:70: 8:76
debug self => _22; // in scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => _23; // in scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _41: &usize; // in scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _42: &usize; // in scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug self => &&((*_10).1: usize); // in scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => &&((*_12).3: usize); // in scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
scope 9 (inlined cmp::impls::<impl PartialOrd for usize>::le) { // at $SRC_DIR/core/src/cmp.rs:LL:COL
debug self => _41; // in scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => _42; // in scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _43: usize; // in scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _44: usize; // in scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug self => &((*_10).1: usize); // in scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => &((*_12).3: usize); // in scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _19: usize; // in scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _20: usize; // in scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
}
}
}
bb0: {
- StorageLive(_3); // scope 0 at $DIR/slice_filter.rs:+0:27: +0:28
+ nop; // scope 0 at $DIR/slice_filter.rs:+0:27: +0:28
_25 = deref_copy (*_2); // scope 0 at $DIR/slice_filter.rs:+0:27: +0:28
- _3 = &((*_25).0: usize); // scope 0 at $DIR/slice_filter.rs:+0:27: +0:28
- StorageLive(_4); // scope 0 at $DIR/slice_filter.rs:+0:30: +0:31
+ _20 = &((*_25).0: usize); // scope 0 at $DIR/slice_filter.rs:+0:27: +0:28
+ nop; // scope 0 at $DIR/slice_filter.rs:+0:30: +0:31
_26 = deref_copy (*_2); // scope 0 at $DIR/slice_filter.rs:+0:30: +0:31
- _4 = &((*_26).1: usize); // scope 0 at $DIR/slice_filter.rs:+0:30: +0:31
- StorageLive(_5); // scope 0 at $DIR/slice_filter.rs:+0:33: +0:34
+ _15 = &((*_26).1: usize); // scope 0 at $DIR/slice_filter.rs:+0:30: +0:31
+ nop; // scope 0 at $DIR/slice_filter.rs:+0:33: +0:34
_27 = deref_copy (*_2); // scope 0 at $DIR/slice_filter.rs:+0:33: +0:34
- _5 = &((*_27).2: usize); // scope 0 at $DIR/slice_filter.rs:+0:33: +0:34
- StorageLive(_6); // scope 0 at $DIR/slice_filter.rs:+0:36: +0:37
+ _11 = &((*_27).2: usize); // scope 0 at $DIR/slice_filter.rs:+0:33: +0:34
+ nop; // scope 0 at $DIR/slice_filter.rs:+0:36: +0:37
_28 = deref_copy (*_2); // scope 0 at $DIR/slice_filter.rs:+0:36: +0:37
- _6 = &((*_28).3: usize); // scope 0 at $DIR/slice_filter.rs:+0:36: +0:37
- StorageLive(_7); // scope 1 at $DIR/slice_filter.rs:+0:40: +0:56
+ _24 = &((*_28).3: usize); // scope 0 at $DIR/slice_filter.rs:+0:36: +0:37
_9 = deref_copy (*_2); // scope 0 at $DIR/slice_filter.rs:+0:27: +0:28
_10 = deref_copy (*_2); // scope 0 at $DIR/slice_filter.rs:+0:30: +0:31
_11 = deref_copy (*_2); // scope 0 at $DIR/slice_filter.rs:+0:33: +0:34
_12 = deref_copy (*_2); // scope 0 at $DIR/slice_filter.rs:+0:36: +0:37
- StorageLive(_3); // scope 1 at $DIR/slice_filter.rs:+0:40: +0:56
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:56
StorageLive(_8); // scope 1 at $DIR/slice_filter.rs:+0:40: +0:46
StorageLive(_9); // scope 1 at $DIR/slice_filter.rs:+0:40: +0:41
StorageLive(_10); // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
- StorageLive(_11); // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
- _11 = _5; // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
- _29 = deref_copy _3; // scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
+ _29 = deref_copy _20; // scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
_30 = deref_copy _11; // scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_31); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
_31 = (*_29); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_32); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
_32 = (*_30); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
_8 = Le(move _31, move _32); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_32); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_31); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
- StorageDead(_11); // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
StorageDead(_10); // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
StorageDead(_9); // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
switchInt(move _8) -> [0: bb4, otherwise: bb5]; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:56
StorageLive(_4); // scope 1 at $DIR/slice_filter.rs:+0:40: +0:46
StorageLive(_13); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
_13 = ((*_9).0: usize); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_14); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
_14 = ((*_11).2: usize); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
_4 = Le(move _13, move _14); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_14); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_13); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
switchInt(move _4) -> [0: bb4, otherwise: bb5]; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:56
}
bb1: {
@ -141,127 +84,80 @@
}
bb2: {
- StorageLive(_16); // scope 1 at $DIR/slice_filter.rs:+0:60: +0:76
- StorageLive(_6); // scope 1 at $DIR/slice_filter.rs:+0:60: +0:76
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:60: +0:76
StorageLive(_17); // scope 1 at $DIR/slice_filter.rs:+0:60: +0:66
StorageLive(_18); // scope 1 at $DIR/slice_filter.rs:+0:60: +0:61
StorageLive(_19); // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
- StorageLive(_20); // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
- _20 = _3; // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
- _33 = deref_copy _5; // scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
+ _33 = deref_copy _11; // scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
_34 = deref_copy _20; // scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_35); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
_35 = (*_33); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_36); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
_36 = (*_34); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
_17 = Le(move _35, move _36); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_36); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_35); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
- StorageDead(_20); // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
StorageDead(_19); // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
StorageDead(_18); // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
switchInt(move _17) -> [0: bb6, otherwise: bb7]; // scope 1 at $DIR/slice_filter.rs:+0:60: +0:76
StorageLive(_7); // scope 1 at $DIR/slice_filter.rs:+0:60: +0:66
StorageLive(_15); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
_15 = ((*_11).2: usize); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_16); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
_16 = ((*_9).0: usize); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
_7 = Le(move _15, move _16); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_16); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_15); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
switchInt(move _7) -> [0: bb6, otherwise: bb7]; // scope 1 at $DIR/slice_filter.rs:+0:60: +0:76
}
bb3: {
- StorageDead(_16); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageDead(_7); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageDead(_6); // scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageDead(_5); // scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageDead(_4); // scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageDead(_3); // scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageDead(_6); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageDead(_3); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
+ nop; // scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
+ nop; // scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
+ nop; // scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
+ nop; // scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
return; // scope 0 at $DIR/slice_filter.rs:+0:76: +0:76
}
bb4: {
- StorageDead(_12); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
- StorageDead(_5); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
StorageDead(_8); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
StorageDead(_4); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
goto -> bb2; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:56
}
bb5: {
- StorageLive(_12); // scope 1 at $DIR/slice_filter.rs:+0:50: +0:56
- StorageLive(_5); // scope 1 at $DIR/slice_filter.rs:+0:50: +0:56
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:50: +0:56
StorageLive(_13); // scope 1 at $DIR/slice_filter.rs:+0:50: +0:51
StorageLive(_14); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
- StorageLive(_15); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
- _15 = _4; // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
- _37 = deref_copy _6; // scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
+ _37 = deref_copy _24; // scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
_38 = deref_copy _15; // scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_39); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
_39 = (*_37); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_40); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
_40 = (*_38); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
_12 = Le(move _39, move _40); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_40); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_39); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
- StorageDead(_15); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
StorageDead(_14); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
StorageDead(_13); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
- _7 = move _12; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:56
- StorageDead(_12); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
StorageLive(_17); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
_17 = ((*_12).3: usize); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_18); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
_18 = ((*_10).1: usize); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
_5 = Le(move _17, move _18); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_18); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_17); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
- _3 = move _5; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:56
- StorageDead(_5); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:56
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
StorageDead(_8); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
- switchInt(move _7) -> [0: bb2, otherwise: bb1]; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:76
+ switchInt(move _12) -> [0: bb2, otherwise: bb1]; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:76
StorageDead(_4); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
- switchInt(move _3) -> [0: bb2, otherwise: bb1]; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:76
+ switchInt(move _5) -> [0: bb2, otherwise: bb1]; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:76
}
bb6: {
- _16 = const false; // scope 1 at $DIR/slice_filter.rs:+0:60: +0:76
- _6 = const false; // scope 1 at $DIR/slice_filter.rs:+0:60: +0:76
+ _0 = const false; // scope 1 at $DIR/slice_filter.rs:+0:60: +0:76
goto -> bb8; // scope 1 at $DIR/slice_filter.rs:+0:60: +0:76
}
bb7: {
- StorageLive(_21); // scope 1 at $DIR/slice_filter.rs:+0:70: +0:76
- StorageLive(_8); // scope 1 at $DIR/slice_filter.rs:+0:70: +0:76
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:70: +0:76
StorageLive(_22); // scope 1 at $DIR/slice_filter.rs:+0:70: +0:71
StorageLive(_23); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageLive(_24); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- _24 = _6; // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- _41 = deref_copy _4; // scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
+ _41 = deref_copy _15; // scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
_42 = deref_copy _24; // scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_43); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
_43 = (*_41); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_44); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
_44 = (*_42); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
- _21 = Le(move _43, move _44); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _0 = Le(move _43, move _44); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_44); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_43); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
- StorageDead(_24); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
StorageDead(_23); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
StorageDead(_22); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- _16 = move _21; // scope 1 at $DIR/slice_filter.rs:+0:60: +0:76
StorageLive(_19); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
_19 = ((*_10).1: usize); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_20); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
_20 = ((*_12).3: usize); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
- _8 = Le(move _19, move _20); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _0 = Le(move _19, move _20); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_20); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_19); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
- _6 = move _8; // scope 1 at $DIR/slice_filter.rs:+0:60: +0:76
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:60: +0:76
goto -> bb8; // scope 1 at $DIR/slice_filter.rs:+0:60: +0:76
}
bb8: {
- StorageDead(_21); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageDead(_8); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
StorageDead(_17); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- _0 = move _16; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:76
StorageDead(_7); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- _0 = move _6; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:76
+ nop; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:76
goto -> bb3; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:76
}

View file

@ -38,54 +38,74 @@
let mut _49: &usize; // in scope 0 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _50: &usize; // in scope 0 at $SRC_DIR/core/src/cmp.rs:LL:COL
scope 1 {
debug a => _3; // in scope 1 at $DIR/slice_filter.rs:+0:27: +0:28
debug b => _4; // in scope 1 at $DIR/slice_filter.rs:+0:30: +0:31
debug c => _5; // in scope 1 at $DIR/slice_filter.rs:+0:33: +0:34
debug d => _6; // in scope 1 at $DIR/slice_filter.rs:+0:36: +0:37
- debug a => _3; // in scope 1 at $DIR/slice_filter.rs:+0:27: +0:28
- debug b => _4; // in scope 1 at $DIR/slice_filter.rs:+0:30: +0:31
- debug c => _5; // in scope 1 at $DIR/slice_filter.rs:+0:33: +0:34
- debug d => _6; // in scope 1 at $DIR/slice_filter.rs:+0:36: +0:37
+ debug a => &((*_25).0: usize); // in scope 1 at $DIR/slice_filter.rs:+0:27: +0:28
+ debug b => &((*_26).1: usize); // in scope 1 at $DIR/slice_filter.rs:+0:30: +0:31
+ debug c => &((*_27).2: usize); // in scope 1 at $DIR/slice_filter.rs:+0:33: +0:34
+ debug d => &((*_28).3: usize); // in scope 1 at $DIR/slice_filter.rs:+0:36: +0:37
scope 2 (inlined cmp::impls::<impl PartialOrd for &usize>::le) { // at $DIR/slice_filter.rs:8:40: 8:46
debug self => _9; // in scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => _10; // in scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
- debug self => _9; // in scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
- debug other => _10; // in scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ debug self => &&((*_25).0: usize); // in scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ debug other => &&((*_27).2: usize); // in scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _29: &usize; // in scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _30: &usize; // in scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
scope 3 (inlined cmp::impls::<impl PartialOrd for usize>::le) { // at $SRC_DIR/core/src/cmp.rs:LL:COL
debug self => _29; // in scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => _30; // in scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
- debug self => _29; // in scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
- debug other => _30; // in scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ debug self => &((*_25).0: usize); // in scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ debug other => &((*_27).2: usize); // in scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _33: usize; // in scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _34: usize; // in scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
}
}
scope 4 (inlined cmp::impls::<impl PartialOrd for &usize>::le) { // at $DIR/slice_filter.rs:8:60: 8:66
debug self => _18; // in scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => _19; // in scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
- debug self => _18; // in scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
- debug other => _19; // in scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ debug self => &&((*_27).2: usize); // in scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ debug other => &&((*_25).0: usize); // in scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _35: &usize; // in scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _36: &usize; // in scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
scope 5 (inlined cmp::impls::<impl PartialOrd for usize>::le) { // at $SRC_DIR/core/src/cmp.rs:LL:COL
debug self => _35; // in scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => _36; // in scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
- debug self => _35; // in scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
- debug other => _36; // in scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ debug self => &((*_27).2: usize); // in scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ debug other => &((*_25).0: usize); // in scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _39: usize; // in scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _40: usize; // in scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
}
}
scope 6 (inlined cmp::impls::<impl PartialOrd for &usize>::le) { // at $DIR/slice_filter.rs:8:50: 8:56
debug self => _13; // in scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => _14; // in scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
- debug self => _13; // in scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
- debug other => _14; // in scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ debug self => &&((*_28).3: usize); // in scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ debug other => &&((*_26).1: usize); // in scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _41: &usize; // in scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _42: &usize; // in scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
scope 7 (inlined cmp::impls::<impl PartialOrd for usize>::le) { // at $SRC_DIR/core/src/cmp.rs:LL:COL
debug self => _41; // in scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => _42; // in scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
- debug self => _41; // in scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
- debug other => _42; // in scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ debug self => &((*_28).3: usize); // in scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ debug other => &((*_26).1: usize); // in scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _45: usize; // in scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _46: usize; // in scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
}
}
scope 8 (inlined cmp::impls::<impl PartialOrd for &usize>::le) { // at $DIR/slice_filter.rs:8:70: 8:76
debug self => _22; // in scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => _23; // in scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
- debug self => _22; // in scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
- debug other => _23; // in scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ debug self => &&((*_26).1: usize); // in scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ debug other => &&((*_28).3: usize); // in scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _47: &usize; // in scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _48: &usize; // in scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
scope 9 (inlined cmp::impls::<impl PartialOrd for usize>::le) { // at $SRC_DIR/core/src/cmp.rs:LL:COL
debug self => _47; // in scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
debug other => _48; // in scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
- debug self => _47; // in scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
- debug other => _48; // in scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ debug self => &((*_26).1: usize); // in scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ debug other => &((*_28).3: usize); // in scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _51: usize; // in scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
let mut _52: usize; // in scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
}
@ -93,40 +113,40 @@
}
bb0: {
StorageLive(_3); // scope 0 at $DIR/slice_filter.rs:+0:27: +0:28
- StorageLive(_3); // scope 0 at $DIR/slice_filter.rs:+0:27: +0:28
_25 = deref_copy (*_2); // scope 0 at $DIR/slice_filter.rs:+0:27: +0:28
_3 = &((*_25).0: usize); // scope 0 at $DIR/slice_filter.rs:+0:27: +0:28
StorageLive(_4); // scope 0 at $DIR/slice_filter.rs:+0:30: +0:31
- _3 = &((*_25).0: usize); // scope 0 at $DIR/slice_filter.rs:+0:27: +0:28
- StorageLive(_4); // scope 0 at $DIR/slice_filter.rs:+0:30: +0:31
_26 = deref_copy (*_2); // scope 0 at $DIR/slice_filter.rs:+0:30: +0:31
_4 = &((*_26).1: usize); // scope 0 at $DIR/slice_filter.rs:+0:30: +0:31
StorageLive(_5); // scope 0 at $DIR/slice_filter.rs:+0:33: +0:34
- _4 = &((*_26).1: usize); // scope 0 at $DIR/slice_filter.rs:+0:30: +0:31
- StorageLive(_5); // scope 0 at $DIR/slice_filter.rs:+0:33: +0:34
_27 = deref_copy (*_2); // scope 0 at $DIR/slice_filter.rs:+0:33: +0:34
_5 = &((*_27).2: usize); // scope 0 at $DIR/slice_filter.rs:+0:33: +0:34
StorageLive(_6); // scope 0 at $DIR/slice_filter.rs:+0:36: +0:37
- _5 = &((*_27).2: usize); // scope 0 at $DIR/slice_filter.rs:+0:33: +0:34
- StorageLive(_6); // scope 0 at $DIR/slice_filter.rs:+0:36: +0:37
_28 = deref_copy (*_2); // scope 0 at $DIR/slice_filter.rs:+0:36: +0:37
_6 = &((*_28).3: usize); // scope 0 at $DIR/slice_filter.rs:+0:36: +0:37
- _6 = &((*_28).3: usize); // scope 0 at $DIR/slice_filter.rs:+0:36: +0:37
StorageLive(_7); // scope 1 at $DIR/slice_filter.rs:+0:40: +0:56
StorageLive(_8); // scope 1 at $DIR/slice_filter.rs:+0:40: +0:46
StorageLive(_9); // scope 1 at $DIR/slice_filter.rs:+0:40: +0:41
_9 = &_3; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:41
StorageLive(_10); // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
StorageLive(_11); // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
_11 = _5; // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
_10 = &_11; // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
- StorageLive(_9); // scope 1 at $DIR/slice_filter.rs:+0:40: +0:41
- _9 = &_3; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:41
- StorageLive(_10); // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
- StorageLive(_11); // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
- _11 = _5; // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
- _10 = &_11; // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
- _29 = deref_copy (*_9); // scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
- _30 = deref_copy (*_10); // scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _29 = deref_copy _3; // scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _30 = deref_copy _11; // scope 2 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_33); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
_33 = (*_29); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
- _33 = (*_29); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _33 = ((*_25).0: usize); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_34); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
_34 = (*_30); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
- _34 = (*_30); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _34 = ((*_27).2: usize); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
_8 = Le(move _33, move _34); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_34); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_33); // scope 3 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_11); // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
StorageDead(_10); // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
StorageDead(_9); // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
- StorageDead(_11); // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
- StorageDead(_10); // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
- StorageDead(_9); // scope 1 at $DIR/slice_filter.rs:+0:45: +0:46
switchInt(move _8) -> [0: bb4, otherwise: bb5]; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:56
}
@ -138,36 +158,36 @@
bb2: {
StorageLive(_16); // scope 1 at $DIR/slice_filter.rs:+0:60: +0:76
StorageLive(_17); // scope 1 at $DIR/slice_filter.rs:+0:60: +0:66
StorageLive(_18); // scope 1 at $DIR/slice_filter.rs:+0:60: +0:61
_18 = &_5; // scope 1 at $DIR/slice_filter.rs:+0:60: +0:61
StorageLive(_19); // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
StorageLive(_20); // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
_20 = _3; // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
_19 = &_20; // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
- StorageLive(_18); // scope 1 at $DIR/slice_filter.rs:+0:60: +0:61
- _18 = &_5; // scope 1 at $DIR/slice_filter.rs:+0:60: +0:61
- StorageLive(_19); // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
- StorageLive(_20); // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
- _20 = _3; // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
- _19 = &_20; // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
- _35 = deref_copy (*_18); // scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
- _36 = deref_copy (*_19); // scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _35 = deref_copy _5; // scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _36 = deref_copy _20; // scope 4 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_39); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
_39 = (*_35); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
- _39 = (*_35); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _39 = ((*_27).2: usize); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_40); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
_40 = (*_36); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
- _40 = (*_36); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _40 = ((*_25).0: usize); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
_17 = Le(move _39, move _40); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_40); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_39); // scope 5 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_20); // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
StorageDead(_19); // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
StorageDead(_18); // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
- StorageDead(_20); // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
- StorageDead(_19); // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
- StorageDead(_18); // scope 1 at $DIR/slice_filter.rs:+0:65: +0:66
switchInt(move _17) -> [0: bb6, otherwise: bb7]; // scope 1 at $DIR/slice_filter.rs:+0:60: +0:76
}
bb3: {
StorageDead(_16); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
StorageDead(_7); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
StorageDead(_6); // scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
StorageDead(_5); // scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
StorageDead(_4); // scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
StorageDead(_3); // scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageDead(_6); // scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageDead(_5); // scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageDead(_4); // scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageDead(_3); // scope 0 at $DIR/slice_filter.rs:+0:75: +0:76
return; // scope 0 at $DIR/slice_filter.rs:+0:76: +0:76
}
@ -180,26 +200,26 @@
bb5: {
StorageLive(_12); // scope 1 at $DIR/slice_filter.rs:+0:50: +0:56
StorageLive(_13); // scope 1 at $DIR/slice_filter.rs:+0:50: +0:51
_13 = &_6; // scope 1 at $DIR/slice_filter.rs:+0:50: +0:51
StorageLive(_14); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
StorageLive(_15); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
_15 = _4; // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
_14 = &_15; // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
- StorageLive(_13); // scope 1 at $DIR/slice_filter.rs:+0:50: +0:51
- _13 = &_6; // scope 1 at $DIR/slice_filter.rs:+0:50: +0:51
- StorageLive(_14); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
- StorageLive(_15); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
- _15 = _4; // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
- _14 = &_15; // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
- _41 = deref_copy (*_13); // scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
- _42 = deref_copy (*_14); // scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _41 = deref_copy _6; // scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _42 = deref_copy _15; // scope 6 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_45); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
_45 = (*_41); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
- _45 = (*_41); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _45 = ((*_28).3: usize); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_46); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
_46 = (*_42); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
- _46 = (*_42); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _46 = ((*_26).1: usize); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
_12 = Le(move _45, move _46); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_46); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_45); // scope 7 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_15); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
StorageDead(_14); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
StorageDead(_13); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
- StorageDead(_15); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
- StorageDead(_14); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
- StorageDead(_13); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
_7 = move _12; // scope 1 at $DIR/slice_filter.rs:+0:40: +0:56
StorageDead(_12); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
StorageDead(_8); // scope 1 at $DIR/slice_filter.rs:+0:55: +0:56
@ -213,26 +233,26 @@
bb7: {
StorageLive(_21); // scope 1 at $DIR/slice_filter.rs:+0:70: +0:76
StorageLive(_22); // scope 1 at $DIR/slice_filter.rs:+0:70: +0:71
_22 = &_4; // scope 1 at $DIR/slice_filter.rs:+0:70: +0:71
StorageLive(_23); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
StorageLive(_24); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
_24 = _6; // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
_23 = &_24; // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageLive(_22); // scope 1 at $DIR/slice_filter.rs:+0:70: +0:71
- _22 = &_4; // scope 1 at $DIR/slice_filter.rs:+0:70: +0:71
- StorageLive(_23); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageLive(_24); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- _24 = _6; // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- _23 = &_24; // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- _47 = deref_copy (*_22); // scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
- _48 = deref_copy (*_23); // scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _47 = deref_copy _4; // scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _48 = deref_copy _24; // scope 8 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_51); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
_51 = (*_47); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
- _51 = (*_47); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _51 = ((*_26).1: usize); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageLive(_52); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
_52 = (*_48); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
- _52 = (*_48); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
+ _52 = ((*_28).3: usize); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
_21 = Le(move _51, move _52); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_52); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_51); // scope 9 at $SRC_DIR/core/src/cmp.rs:LL:COL
StorageDead(_24); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
StorageDead(_23); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
StorageDead(_22); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageDead(_24); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageDead(_23); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
- StorageDead(_22); // scope 1 at $DIR/slice_filter.rs:+0:75: +0:76
_16 = move _21; // scope 1 at $DIR/slice_filter.rs:+0:60: +0:76
goto -> bb8; // scope 1 at $DIR/slice_filter.rs:+0:60: +0:76
}

View file

@ -3,16 +3,13 @@
fn process_void(_1: *const Void) -> () {
debug input => _1; // in scope 0 at $DIR/uninhabited_enum.rs:+0:21: +0:26
let mut _0: (); // return place in scope 0 at $DIR/uninhabited_enum.rs:+0:41: +0:41
let _2: &Void; // in scope 0 at $DIR/uninhabited_enum.rs:+1:8: +1:14
scope 1 {
debug _input => _2; // in scope 1 at $DIR/uninhabited_enum.rs:+1:8: +1:14
debug _input => _1; // in scope 1 at $DIR/uninhabited_enum.rs:+1:8: +1:14
}
scope 2 {
}
bb0: {
StorageLive(_2); // scope 0 at $DIR/uninhabited_enum.rs:+1:8: +1:14
StorageDead(_2); // scope 0 at $DIR/uninhabited_enum.rs:+4:1: +4:2
return; // scope 0 at $DIR/uninhabited_enum.rs:+4:2: +4:2
}
}