mir-opt: Eliminate dead ref statements

This commit is contained in:
dianqk
2025-06-08 15:30:09 +08:00
parent 42b384ec0d
commit 571412f819
69 changed files with 2142 additions and 514 deletions

View File

@@ -260,6 +260,10 @@ impl<'a, 'b, 'tcx, Bx: BuilderMethods<'b, 'tcx>> Visitor<'tcx> for LocalAnalyzer
PlaceContext::MutatingUse(MutatingUseContext::Yield) => bug!(),
}
}
fn visit_statement_debuginfo(&mut self, _: &mir::StmtDebugInfo<'tcx>, _: Location) {
// Debuginfo does not generate actual code.
}
}
#[derive(Copy, Clone, Debug, PartialEq, Eq)]

View File

@@ -1298,6 +1298,10 @@ pub struct BasicBlockData<'tcx> {
/// List of statements in this block.
pub statements: Vec<Statement<'tcx>>,
/// All debuginfos happen before the statement.
/// Put debuginfos here when the last statement is eliminated.
pub after_last_stmt_debuginfos: StmtDebugInfos<'tcx>,
/// Terminator for this block.
///
/// N.B., this should generally ONLY be `None` during construction.
@@ -1325,7 +1329,12 @@ impl<'tcx> BasicBlockData<'tcx> {
terminator: Option<Terminator<'tcx>>,
is_cleanup: bool,
) -> BasicBlockData<'tcx> {
BasicBlockData { statements, terminator, is_cleanup }
BasicBlockData {
statements,
after_last_stmt_debuginfos: StmtDebugInfos::default(),
terminator,
is_cleanup,
}
}
/// Accessor for terminator.
@@ -1360,6 +1369,36 @@ impl<'tcx> BasicBlockData<'tcx> {
self.terminator().successors()
}
}
pub fn retain_statements<F>(&mut self, mut f: F)
where
F: FnMut(&Statement<'tcx>) -> bool,
{
// Place debuginfos into the next retained statement,
// this `debuginfos` variable is used to cache debuginfos between two retained statements.
let mut debuginfos = StmtDebugInfos::default();
self.statements.retain_mut(|stmt| {
let retain = f(stmt);
if retain {
stmt.debuginfos.prepend(&mut debuginfos);
} else {
debuginfos.append(&mut stmt.debuginfos);
}
retain
});
self.after_last_stmt_debuginfos.prepend(&mut debuginfos);
}
pub fn strip_nops(&mut self) {
self.retain_statements(|stmt| !matches!(stmt.kind, StatementKind::Nop))
}
pub fn drop_debuginfo(&mut self) {
self.after_last_stmt_debuginfos.drop_debuginfo();
for stmt in self.statements.iter_mut() {
stmt.debuginfos.drop_debuginfo();
}
}
}
///////////////////////////////////////////////////////////////////////////
@@ -1664,10 +1703,10 @@ mod size_asserts {
use super::*;
// tidy-alphabetical-start
static_assert_size!(BasicBlockData<'_>, 128);
static_assert_size!(BasicBlockData<'_>, 152);
static_assert_size!(LocalDecl<'_>, 40);
static_assert_size!(SourceScopeData<'_>, 64);
static_assert_size!(Statement<'_>, 32);
static_assert_size!(Statement<'_>, 56);
static_assert_size!(Terminator<'_>, 96);
static_assert_size!(VarDebugInfo<'_>, 88);
// tidy-alphabetical-end

View File

@@ -719,6 +719,11 @@ impl<'de, 'tcx> MirWriter<'de, 'tcx> {
let mut current_location = Location { block, statement_index: 0 };
for statement in &data.statements {
(self.extra_data)(PassWhere::BeforeLocation(current_location), w)?;
for debuginfo in statement.debuginfos.iter() {
writeln!(w, "{INDENT}{INDENT}// DBG: {debuginfo:?};")?;
}
let indented_body = format!("{INDENT}{INDENT}{statement:?};");
if self.options.include_extra_comments {
writeln!(
@@ -749,6 +754,10 @@ impl<'de, 'tcx> MirWriter<'de, 'tcx> {
current_location.statement_index += 1;
}
for debuginfo in data.after_last_stmt_debuginfos.iter() {
writeln!(w, "{INDENT}{INDENT}// DBG: {debuginfo:?};")?;
}
// Terminator at the bottom.
(self.extra_data)(PassWhere::BeforeLocation(current_location), w)?;
if data.terminator.is_some() {
@@ -829,6 +838,16 @@ impl Debug for Statement<'_> {
}
}
impl Debug for StmtDebugInfo<'_> {
fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
match self {
StmtDebugInfo::AssignRef(local, place) => {
write!(fmt, "{local:?} = &{place:?}")
}
}
}
}
impl Display for NonDivergingIntrinsic<'_> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {

View File

@@ -1,5 +1,7 @@
//! Functionality for statements, operands, places, and things that appear in them.
use std::ops;
use tracing::{debug, instrument};
use super::interpret::GlobalAlloc;
@@ -15,17 +17,34 @@ use crate::ty::CoroutineArgsExt;
pub struct Statement<'tcx> {
pub source_info: SourceInfo,
pub kind: StatementKind<'tcx>,
/// Some debuginfos appearing before the primary statement.
pub debuginfos: StmtDebugInfos<'tcx>,
}
impl<'tcx> Statement<'tcx> {
/// Changes a statement to a nop. This is both faster than deleting instructions and avoids
/// invalidating statement indices in `Location`s.
pub fn make_nop(&mut self) {
self.kind = StatementKind::Nop
pub fn make_nop(&mut self, drop_debuginfo: bool) {
if matches!(self.kind, StatementKind::Nop) {
return;
}
let replaced_stmt = std::mem::replace(&mut self.kind, StatementKind::Nop);
if !drop_debuginfo {
match replaced_stmt {
StatementKind::Assign(box (place, Rvalue::Ref(_, _, ref_place)))
if let Some(local) = place.as_local() =>
{
self.debuginfos.push(StmtDebugInfo::AssignRef(local, ref_place));
}
_ => {
bug!("debuginfo is not yet supported.")
}
}
}
}
pub fn new(source_info: SourceInfo, kind: StatementKind<'tcx>) -> Self {
Statement { source_info, kind }
Statement { source_info, kind, debuginfos: StmtDebugInfos::default() }
}
}
@@ -63,6 +82,17 @@ impl<'tcx> StatementKind<'tcx> {
_ => None,
}
}
pub fn as_debuginfo(&self) -> Option<StmtDebugInfo<'tcx>> {
match self {
StatementKind::Assign(box (place, Rvalue::Ref(_, _, ref_place)))
if let Some(local) = place.as_local() =>
{
Some(StmtDebugInfo::AssignRef(local, *ref_place))
}
_ => None,
}
}
}
///////////////////////////////////////////////////////////////////////////
@@ -967,3 +997,70 @@ impl RawPtrKind {
}
}
}
#[derive(Default, Debug, Clone, TyEncodable, TyDecodable, HashStable, TypeFoldable, TypeVisitable)]
pub struct StmtDebugInfos<'tcx>(Vec<StmtDebugInfo<'tcx>>);
impl<'tcx> StmtDebugInfos<'tcx> {
pub fn push(&mut self, debuginfo: StmtDebugInfo<'tcx>) {
self.0.push(debuginfo);
}
pub fn drop_debuginfo(&mut self) {
self.0.clear();
}
pub fn is_empty(&self) -> bool {
self.0.is_empty()
}
pub fn prepend(&mut self, debuginfos: &mut Self) {
if debuginfos.is_empty() {
return;
};
debuginfos.0.append(self);
std::mem::swap(debuginfos, self);
}
pub fn append(&mut self, debuginfos: &mut Self) {
if debuginfos.is_empty() {
return;
};
self.0.append(debuginfos);
}
pub fn extend(&mut self, debuginfos: &Self) {
if debuginfos.is_empty() {
return;
};
self.0.extend_from_slice(debuginfos);
}
pub fn retain<F>(&mut self, f: F)
where
F: FnMut(&StmtDebugInfo<'tcx>) -> bool,
{
self.0.retain(f);
}
}
impl<'tcx> ops::Deref for StmtDebugInfos<'tcx> {
type Target = Vec<StmtDebugInfo<'tcx>>;
#[inline]
fn deref(&self) -> &Vec<StmtDebugInfo<'tcx>> {
&self.0
}
}
impl<'tcx> ops::DerefMut for StmtDebugInfos<'tcx> {
#[inline]
fn deref_mut(&mut self) -> &mut Vec<StmtDebugInfo<'tcx>> {
&mut self.0
}
}
#[derive(Clone, TyEncodable, TyDecodable, HashStable, TypeFoldable, TypeVisitable)]
pub enum StmtDebugInfo<'tcx> {
AssignRef(Local, Place<'tcx>),
}

View File

@@ -95,6 +95,14 @@ macro_rules! make_mir_visitor {
self.super_source_scope_data(scope_data);
}
fn visit_statement_debuginfo(
&mut self,
stmt_debuginfo: & $($mutability)? StmtDebugInfo<'tcx>,
location: Location
) {
self.super_statement_debuginfo(stmt_debuginfo, location);
}
fn visit_statement(
&mut self,
statement: & $($mutability)? Statement<'tcx>,
@@ -301,6 +309,7 @@ macro_rules! make_mir_visitor {
{
let BasicBlockData {
statements,
after_last_stmt_debuginfos,
terminator,
is_cleanup: _
} = data;
@@ -312,8 +321,11 @@ macro_rules! make_mir_visitor {
index += 1;
}
let location = Location { block, statement_index: index };
for debuginfo in after_last_stmt_debuginfos as & $($mutability)? [_] {
self.visit_statement_debuginfo(debuginfo, location);
}
if let Some(terminator) = terminator {
let location = Location { block, statement_index: index };
self.visit_terminator(terminator, location);
}
}
@@ -376,14 +388,38 @@ macro_rules! make_mir_visitor {
}
}
fn super_statement_debuginfo(
&mut self,
stmt_debuginfo: & $($mutability)? StmtDebugInfo<'tcx>,
location: Location
) {
match stmt_debuginfo {
StmtDebugInfo::AssignRef(local, place) => {
self.visit_local(
$(& $mutability)? *local,
PlaceContext::NonUse(NonUseContext::VarDebugInfo),
location
);
self.visit_place(
place,
PlaceContext::NonUse(NonUseContext::VarDebugInfo),
location
);
},
}
}
fn super_statement(
&mut self,
statement: & $($mutability)? Statement<'tcx>,
location: Location
) {
let Statement { source_info, kind } = statement;
let Statement { source_info, kind, debuginfos } = statement;
self.visit_source_info(source_info);
for debuginfo in debuginfos as & $($mutability)? [_] {
self.visit_statement_debuginfo(debuginfo, location);
}
match kind {
StatementKind::Assign(box (place, rvalue)) => {
self.visit_assign(place, rvalue, location);

View File

@@ -5,16 +5,16 @@ use rustc_middle::mir::*;
/// Return the set of locals that appear in debuginfo.
pub fn debuginfo_locals(body: &Body<'_>) -> DenseBitSet<Local> {
let mut visitor = DebuginfoLocals(DenseBitSet::new_empty(body.local_decls.len()));
for debuginfo in body.var_debug_info.iter() {
visitor.visit_var_debug_info(debuginfo);
}
visitor.visit_body(body);
visitor.0
}
struct DebuginfoLocals(DenseBitSet<Local>);
impl Visitor<'_> for DebuginfoLocals {
fn visit_local(&mut self, local: Local, _: PlaceContext, _: Location) {
self.0.insert(local);
fn visit_local(&mut self, local: Local, place_context: PlaceContext, _: Location) {
if place_context == PlaceContext::NonUse(NonUseContext::VarDebugInfo) {
self.0.insert(local);
}
}
}

View File

@@ -210,6 +210,7 @@ impl DefUse {
/// All of the caveats of `MaybeLiveLocals` apply.
pub struct MaybeTransitiveLiveLocals<'a> {
always_live: &'a DenseBitSet<Local>,
debuginfo_locals: &'a DenseBitSet<Local>,
}
impl<'a> MaybeTransitiveLiveLocals<'a> {
@@ -217,8 +218,46 @@ impl<'a> MaybeTransitiveLiveLocals<'a> {
/// considered live.
///
/// This should include at least all locals that are ever borrowed.
pub fn new(always_live: &'a DenseBitSet<Local>) -> Self {
MaybeTransitiveLiveLocals { always_live }
pub fn new(
always_live: &'a DenseBitSet<Local>,
debuginfo_locals: &'a DenseBitSet<Local>,
) -> Self {
MaybeTransitiveLiveLocals { always_live, debuginfo_locals }
}
pub fn can_be_removed_if_dead<'tcx>(
stmt_kind: &StatementKind<'tcx>,
always_live: &DenseBitSet<Local>,
debuginfo_locals: &'a DenseBitSet<Local>,
) -> Option<Place<'tcx>> {
// Compute the place that we are storing to, if any
let destination = match stmt_kind {
StatementKind::Assign(box (place, rvalue)) => (rvalue.is_safe_to_remove()
&& (!debuginfo_locals.contains(place.local)
|| (place.as_local().is_some() && matches!(rvalue, mir::Rvalue::Ref(..)))))
.then_some(*place),
StatementKind::SetDiscriminant { place, .. } | StatementKind::Deinit(place) => {
(!debuginfo_locals.contains(place.local)).then_some(**place)
}
StatementKind::FakeRead(_)
| StatementKind::StorageLive(_)
| StatementKind::StorageDead(_)
| StatementKind::Retag(..)
| StatementKind::AscribeUserType(..)
| StatementKind::PlaceMention(..)
| StatementKind::Coverage(..)
| StatementKind::Intrinsic(..)
| StatementKind::ConstEvalCounter
| StatementKind::BackwardIncompatibleDropHint { .. }
| StatementKind::Nop => None,
};
if let Some(destination) = destination
&& !destination.is_indirect()
&& !always_live.contains(destination.local)
{
return Some(destination);
}
None
}
}
@@ -243,32 +282,15 @@ impl<'a, 'tcx> Analysis<'tcx> for MaybeTransitiveLiveLocals<'a> {
statement: &mir::Statement<'tcx>,
location: Location,
) {
// Compute the place that we are storing to, if any
let destination = match &statement.kind {
StatementKind::Assign(assign) => assign.1.is_safe_to_remove().then_some(assign.0),
StatementKind::SetDiscriminant { place, .. } | StatementKind::Deinit(place) => {
Some(**place)
}
StatementKind::FakeRead(_)
| StatementKind::StorageLive(_)
| StatementKind::StorageDead(_)
| StatementKind::Retag(..)
| StatementKind::AscribeUserType(..)
| StatementKind::PlaceMention(..)
| StatementKind::Coverage(..)
| StatementKind::Intrinsic(..)
| StatementKind::ConstEvalCounter
| StatementKind::BackwardIncompatibleDropHint { .. }
| StatementKind::Nop => None,
};
if let Some(destination) = destination {
if !destination.is_indirect()
&& !state.contains(destination.local)
&& !self.always_live.contains(destination.local)
{
// This store is dead
return;
}
if let Some(destination) =
Self::can_be_removed_if_dead(&statement.kind, &self.always_live, &self.debuginfo_locals)
&& !state.contains(destination.local)
// FIXME: We can eliminate the statement, but we'll need the statements it depends on
// for debuginfos. We need a way to handle this.
&& !self.debuginfo_locals.contains(destination.local)
{
// This store is dead
return;
}
TransferFunction(state).visit_statement(statement, location);
}

View File

@@ -36,7 +36,9 @@ impl<'tcx> crate::MirPass<'tcx> for CleanupPostBorrowck {
CoverageKind::BlockMarker { .. } | CoverageKind::SpanMarker { .. },
)
| StatementKind::FakeRead(..)
| StatementKind::BackwardIncompatibleDropHint { .. } => statement.make_nop(),
| StatementKind::BackwardIncompatibleDropHint { .. } => {
statement.make_nop(true)
}
StatementKind::Assign(box (
_,
Rvalue::Cast(

View File

@@ -138,7 +138,7 @@ impl<'tcx> MutVisitor<'tcx> for Replacer<'_, 'tcx> {
if let StatementKind::StorageLive(l) | StatementKind::StorageDead(l) = stmt.kind
&& self.storage_to_remove.contains(l)
{
stmt.make_nop();
stmt.make_nop(true);
return;
}
@@ -150,7 +150,7 @@ impl<'tcx> MutVisitor<'tcx> for Replacer<'_, 'tcx> {
*rhs
&& lhs == rhs
{
stmt.make_nop();
stmt.make_nop(true);
}
}
}

View File

@@ -411,7 +411,7 @@ impl<'tcx> MutVisitor<'tcx> for TransformVisitor<'tcx> {
if let StatementKind::StorageLive(l) | StatementKind::StorageDead(l) = s.kind
&& self.remap.contains(l)
{
s.make_nop();
s.make_nop(true);
}
}

View File

@@ -33,10 +33,9 @@ fn eliminate<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
// If the user requests complete debuginfo, mark the locals that appear in it as live, so
// we don't remove assignments to them.
let mut always_live = debuginfo_locals(body);
always_live.union(&borrowed_locals);
let debuginfo_locals = debuginfo_locals(body);
let mut live = MaybeTransitiveLiveLocals::new(&always_live)
let mut live = MaybeTransitiveLiveLocals::new(&borrowed_locals, &debuginfo_locals)
.iterate_to_fixpoint(tcx, body, None)
.into_results_cursor(body);
@@ -75,35 +74,23 @@ fn eliminate<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
}
for (statement_index, statement) in bb_data.statements.iter().enumerate().rev() {
let loc = Location { block: bb, statement_index };
if let StatementKind::Assign(assign) = &statement.kind {
if !assign.1.is_safe_to_remove() {
continue;
}
}
match &statement.kind {
StatementKind::Assign(box (place, _))
| StatementKind::SetDiscriminant { place: box place, .. }
| StatementKind::Deinit(box place) => {
if !place.is_indirect() && !always_live.contains(place.local) {
live.seek_before_primary_effect(loc);
if !live.get().contains(place.local) {
patch.push(loc);
}
}
}
StatementKind::Retag(_, _)
| StatementKind::StorageLive(_)
| StatementKind::StorageDead(_)
| StatementKind::Coverage(_)
| StatementKind::Intrinsic(_)
| StatementKind::ConstEvalCounter
| StatementKind::PlaceMention(_)
| StatementKind::BackwardIncompatibleDropHint { .. }
| StatementKind::Nop => {}
StatementKind::FakeRead(_) | StatementKind::AscribeUserType(_, _) => {
bug!("{:?} not found in this MIR phase!", statement.kind)
if let Some(destination) = MaybeTransitiveLiveLocals::can_be_removed_if_dead(
&statement.kind,
&borrowed_locals,
&debuginfo_locals,
) {
let loc = Location { block: bb, statement_index };
live.seek_before_primary_effect(loc);
if !live.get().contains(destination.local) {
let drop_debuginfo = !debuginfo_locals.contains(destination.local);
// When eliminating a dead statement, we need to address
// the debug information for that statement.
assert!(
drop_debuginfo || statement.kind.as_debuginfo().is_some(),
"don't know how to retain the debug information for {:?}",
statement.kind
);
patch.push((loc, drop_debuginfo));
}
}
}
@@ -114,8 +101,8 @@ fn eliminate<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
}
let bbs = body.basic_blocks.as_mut_preserves_cfg();
for Location { block, statement_index } in patch {
bbs[block].statements[statement_index].make_nop();
for (Location { block, statement_index }, drop_debuginfo) in patch {
bbs[block].statements[statement_index].make_nop(drop_debuginfo);
}
for (block, argument_index) in call_operands_to_move {
let TerminatorKind::Call { ref mut args, .. } = bbs[block].terminator_mut().kind else {

View File

@@ -276,7 +276,7 @@ impl<'tcx> MutVisitor<'tcx> for Merger<'tcx> {
StatementKind::StorageDead(local) | StatementKind::StorageLive(local)
if self.merged_locals.contains(*local) =>
{
statement.make_nop();
statement.make_nop(true);
return;
}
_ => (),
@@ -291,7 +291,7 @@ impl<'tcx> MutVisitor<'tcx> for Merger<'tcx> {
// (this includes the original statement we wanted to eliminate).
if dest == place {
debug!("{:?} turned into self-assignment, deleting", location);
statement.make_nop();
statement.make_nop(true);
}
}
_ => {}

View File

@@ -1877,7 +1877,7 @@ impl<'tcx> MutVisitor<'tcx> for StorageRemover<'tcx> {
StatementKind::StorageLive(l) | StatementKind::StorageDead(l)
if self.reused_locals.contains(l) =>
{
stmt.make_nop()
stmt.make_nop(true)
}
_ => self.super_statement(stmt, loc),
}

View File

@@ -156,7 +156,7 @@ impl<'tcx> crate::MirPass<'tcx> for EnumSizeOpt {
patch.add_statement(location, stmt);
}
st.make_nop();
st.make_nop(true);
}
}

View File

@@ -270,7 +270,7 @@ impl<'tcx> MirPatch<'tcx> {
body.local_decls.extend(self.new_locals);
for loc in self.nop_statements {
bbs[loc.block].statements[loc.statement_index].make_nop();
bbs[loc.block].statements[loc.statement_index].make_nop(true);
}
let mut new_statements = self.new_statements;

View File

@@ -1049,7 +1049,7 @@ fn promote_candidates<'tcx>(
// Eliminate assignments to, and drops of promoted temps.
let promoted = |index: Local| temps[index] == TempState::PromotedOut;
for block in body.basic_blocks_mut() {
block.statements.retain(|statement| match &statement.kind {
block.retain_statements(|statement| match &statement.kind {
StatementKind::Assign(box (place, _)) => {
if let Some(index) = place.as_local() {
!promoted(index)

View File

@@ -435,7 +435,7 @@ impl<'tcx> MutVisitor<'tcx> for Replacer<'tcx> {
StatementKind::StorageLive(l) | StatementKind::StorageDead(l)
if self.storage_to_remove.contains(l) =>
{
stmt.make_nop();
stmt.make_nop(true);
}
// Do not remove assignments as they may still be useful for debuginfo.
_ => self.super_statement(stmt, loc),

View File

@@ -14,7 +14,7 @@ impl<'tcx> crate::MirPass<'tcx> for RemovePlaceMention {
fn run_pass(&self, _: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
trace!("Running RemovePlaceMention on {:?}", body.source);
for data in body.basic_blocks.as_mut_preserves_cfg() {
data.statements.retain(|statement| match statement.kind {
data.retain_statements(|statement| match statement.kind {
StatementKind::PlaceMention(..) | StatementKind::Nop => false,
_ => true,
})

View File

@@ -14,7 +14,7 @@ impl<'tcx> crate::MirPass<'tcx> for RemoveStorageMarkers {
fn run_pass(&self, _tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
trace!("Running RemoveStorageMarkers on {:?}", body.source);
for data in body.basic_blocks.as_mut_preserves_cfg() {
data.statements.retain(|statement| match statement.kind {
data.retain_statements(|statement| match statement.kind {
StatementKind::StorageLive(..)
| StatementKind::StorageDead(..)
| StatementKind::Nop => false,

View File

@@ -141,7 +141,7 @@ impl<'tcx> MutVisitor<'tcx> for Replacer<'_, 'tcx> {
&& let ty = place_for_ty.ty(self.local_decls, self.tcx).ty
&& self.known_to_be_zst(ty)
{
statement.make_nop();
statement.make_nop(true);
} else {
self.super_statement(statement, loc);
}

View File

@@ -36,7 +36,9 @@
use itertools::Itertools as _;
use rustc_index::{Idx, IndexSlice, IndexVec};
use rustc_middle::mir::visit::{MutVisitor, MutatingUseContext, PlaceContext, Visitor};
use rustc_middle::mir::visit::{
MutVisitor, MutatingUseContext, NonUseContext, PlaceContext, Visitor,
};
use rustc_middle::mir::*;
use rustc_middle::ty::TyCtxt;
use rustc_span::DUMMY_SP;
@@ -303,7 +305,7 @@ impl<'a, 'tcx> CfgSimplifier<'a, 'tcx> {
fn strip_nops(&mut self) {
for blk in self.basic_blocks.iter_mut() {
blk.statements.retain(|stmt| !matches!(stmt.kind, StatementKind::Nop))
blk.retain_statements(|stmt| !matches!(stmt.kind, StatementKind::Nop))
}
}
}
@@ -539,12 +541,20 @@ impl<'tcx> Visitor<'tcx> for UsedLocals {
self.super_statement(statement, location);
}
StatementKind::ConstEvalCounter | StatementKind::Nop => {}
StatementKind::StorageLive(_local) | StatementKind::StorageDead(_local) => {}
StatementKind::ConstEvalCounter
| StatementKind::Nop
| StatementKind::StorageLive(..)
| StatementKind::StorageDead(..) => {
for debuginfo in statement.debuginfos.iter() {
self.visit_statement_debuginfo(debuginfo, location);
}
}
StatementKind::Assign(box (ref place, ref rvalue)) => {
if rvalue.is_safe_to_remove() {
for debuginfo in statement.debuginfos.iter() {
self.visit_statement_debuginfo(debuginfo, location);
}
self.visit_lhs(place, location);
self.visit_rvalue(rvalue, location);
} else {
@@ -555,15 +565,18 @@ impl<'tcx> Visitor<'tcx> for UsedLocals {
StatementKind::SetDiscriminant { ref place, variant_index: _ }
| StatementKind::Deinit(ref place)
| StatementKind::BackwardIncompatibleDropHint { ref place, reason: _ } => {
for debuginfo in statement.debuginfos.iter() {
self.visit_statement_debuginfo(debuginfo, location);
}
self.visit_lhs(place, location);
}
}
}
fn visit_local(&mut self, local: Local, _ctx: PlaceContext, _location: Location) {
fn visit_local(&mut self, local: Local, ctx: PlaceContext, _location: Location) {
if self.increment {
self.use_count[local] += 1;
} else {
} else if ctx != PlaceContext::NonUse(NonUseContext::VarDebugInfo) {
assert_ne!(self.use_count[local], 0);
self.use_count[local] -= 1;
}
@@ -583,7 +596,7 @@ fn remove_unused_definitions_helper(used_locals: &mut UsedLocals, body: &mut Bod
for data in body.basic_blocks.as_mut_preserves_cfg() {
// Remove unnecessary StorageLive and StorageDead annotations.
data.statements.retain(|statement| {
data.retain_statements(|statement| {
let keep = match &statement.kind {
StatementKind::StorageLive(local) | StatementKind::StorageDead(local) => {
used_locals.is_used(*local)

View File

@@ -76,7 +76,7 @@ impl<'tcx> crate::MirPass<'tcx> for SimplifyComparisonIntegral {
// delete comparison statement if it the value being switched on was moved, which means
// it can not be user later on
if opt.can_remove_bin_op_stmt {
bb.statements[opt.bin_op_stmt_idx].make_nop();
bb.statements[opt.bin_op_stmt_idx].make_nop(true);
} else {
// if the integer being compared to a const integral is being moved into the
// comparison, e.g `_2 = Eq(move _3, const 'x');`
@@ -136,7 +136,7 @@ impl<'tcx> crate::MirPass<'tcx> for SimplifyComparisonIntegral {
}
for (idx, bb_idx) in storage_deads_to_remove {
body.basic_blocks_mut()[bb_idx].statements[idx].make_nop();
body.basic_blocks_mut()[bb_idx].statements[idx].make_nop(true);
}
for (idx, stmt) in storage_deads_to_insert {

View File

@@ -318,7 +318,7 @@ impl<'tcx, 'll> MutVisitor<'tcx> for ReplacementVisitor<'tcx, 'll> {
for (_, _, fl) in final_locals {
self.patch.add_statement(location, StatementKind::StorageLive(fl));
}
statement.make_nop();
statement.make_nop(true);
}
return;
}
@@ -327,7 +327,7 @@ impl<'tcx, 'll> MutVisitor<'tcx> for ReplacementVisitor<'tcx, 'll> {
for (_, _, fl) in final_locals {
self.patch.add_statement(location, StatementKind::StorageDead(fl));
}
statement.make_nop();
statement.make_nop(true);
}
return;
}
@@ -337,7 +337,7 @@ impl<'tcx, 'll> MutVisitor<'tcx> for ReplacementVisitor<'tcx, 'll> {
self.patch
.add_statement(location, StatementKind::Deinit(Box::new(fl.into())));
}
statement.make_nop();
statement.make_nop(true);
return;
}
}
@@ -367,7 +367,7 @@ impl<'tcx, 'll> MutVisitor<'tcx> for ReplacementVisitor<'tcx, 'll> {
);
}
}
statement.make_nop();
statement.make_nop(true);
return;
}
}
@@ -429,7 +429,7 @@ impl<'tcx, 'll> MutVisitor<'tcx> for ReplacementVisitor<'tcx, 'll> {
StatementKind::Assign(Box::new((new_local.into(), rvalue))),
);
}
statement.make_nop();
statement.make_nop(true);
return;
}
}

View File

@@ -16,5 +16,5 @@ pub fn main() {
// CHECK: %compare.dbg.spill = alloca [0 x i8], align 1
// CHECK: dbg{{.}}declare({{(metadata )?}}ptr %compare.dbg.spill, {{(metadata )?}}![[VAR:.*]], {{(metadata )?}}!DIExpression()
// CHECK: ![[TYPE:.*]] = !DIDerivedType(tag: DW_TAG_pointer_type, name: "fn(&i32, &i32) -> core::cmp::Ordering", baseType: !{{.*}}, align: 8, dwarfAddressSpace: {{.*}})
// CHECK: ![[VAR]] = !DILocalVariable(name: "compare", scope: !{{.*}}, file: !{{.*}}, line: {{.*}}, type: ![[TYPE]], align: 8)
// CHECK-DAG: ![[TYPE:.*]] = !DIDerivedType(tag: DW_TAG_pointer_type, name: "fn(&i32, &i32) -> core::cmp::Ordering", baseType: !{{.*}}, align: 8, dwarfAddressSpace: {{.*}})
// CHECK-DAG: ![[VAR]] = !DILocalVariable(name: "compare", scope: !{{.*}}, file: !{{.*}}, line: {{.*}}, type: ![[TYPE]], align: 8)

View File

@@ -0,0 +1,31 @@
- // MIR for `dead_first` before DeadStoreElimination-initial
+ // MIR for `dead_first` after DeadStoreElimination-initial
fn dead_first(_1: &Foo) -> &i32 {
debug v => _1;
let mut _0: &i32;
let mut _2: &i32;
let mut _3: &i32;
let _4: &i32;
scope 1 {
debug a => _2;
}
bb0: {
StorageLive(_2);
- _2 = &((*_1).2: i32);
+ // DBG: _2 = &((*_1).2: i32);
+ nop;
StorageLive(_3);
StorageLive(_4);
_4 = &((*_1).0: i32);
_3 = &(*_4);
_2 = move _3;
StorageDead(_3);
StorageDead(_4);
_0 = &(*_2);
StorageDead(_2);
return;
}
}

View File

@@ -0,0 +1,33 @@
//@ test-mir-pass: DeadStoreElimination-initial
pub struct Foo {
a: i32,
b: i64,
c: i32,
}
// EMIT_MIR ref.tuple.DeadStoreElimination-initial.diff
pub fn tuple(v: (i32, &Foo)) -> i32 {
// CHECK-LABEL: fn tuple
// CHECK: debug _dead => [[dead:_[0-9]+]];
// CHECK: bb0:
// FIXME: Preserve `tmp` for debuginfo, but we can merge it into the debuginfo.
// CHECK: [[tmp:_[0-9]+]] = deref_copy (_1.1: &Foo);
// CHECK-NEXT: DBG: [[dead]] = &((*[[tmp]]).2: i32)
let _dead = &v.1.c;
v.1.a
}
// EMIT_MIR ref.dead_first.DeadStoreElimination-initial.diff
pub fn dead_first(v: &Foo) -> &i32 {
// CHECK-LABEL: fn dead_first
// CHECK: debug a => [[var_a:_[0-9]+]];
// CHECK: bb0:
// CHECK: DBG: [[var_a]] = &((*_1).2: i32)
// CHECK: [[tmp_4:_[0-9]+]] = &((*_1).0: i32)
// CHECK: [[tmp_3:_[0-9]+]] = &(*[[tmp_4]])
// CHECK: [[var_a]] = move [[tmp_3]]
let mut a = &v.c;
a = &v.a;
a
}

View File

@@ -0,0 +1,26 @@
- // MIR for `tuple` before DeadStoreElimination-initial
+ // MIR for `tuple` after DeadStoreElimination-initial
fn tuple(_1: (i32, &Foo)) -> i32 {
debug v => _1;
let mut _0: i32;
let _2: &i32;
let mut _3: &Foo;
let mut _4: &Foo;
scope 1 {
debug _dead => _2;
}
bb0: {
StorageLive(_2);
_3 = deref_copy (_1.1: &Foo);
- _2 = &((*_3).2: i32);
+ // DBG: _2 = &((*_3).2: i32);
+ nop;
_4 = deref_copy (_1.1: &Foo);
_0 = copy ((*_4).0: i32);
StorageDead(_2);
return;
}
}

View File

@@ -0,0 +1,26 @@
- // MIR for `drop_debuginfo` before SimplifyCfg-final
+ // MIR for `drop_debuginfo` after SimplifyCfg-final
fn drop_debuginfo(_1: &Foo, _2: bool) -> i32 {
debug foo_a => _3;
debug foo_b => _4;
let mut _0: i32;
let mut _3: &i32;
let mut _4: &i64;
bb0: {
- switchInt(copy _2) -> [1: bb1, otherwise: bb2];
- }
-
- bb1: {
- // DBG: _3 = &((*_1).0: i32);
- goto -> bb2;
- }
-
- bb2: {
// DBG: _4 = &((*_1).1: i64);
_0 = copy ((*_1).2: i32);
return;
}
}

View File

@@ -0,0 +1,30 @@
- // MIR for `preserve_debuginfo_1` before SimplifyCfg-final
+ // MIR for `preserve_debuginfo_1` after SimplifyCfg-final
fn preserve_debuginfo_1(_1: &Foo, _2: &mut bool) -> i32 {
debug foo_a => _3;
debug foo_b => _4;
debug foo_c => _5;
let mut _0: i32;
let mut _3: &i32;
let mut _4: &i64;
let mut _5: &i32;
bb0: {
- goto -> bb1;
- }
-
- bb1: {
(*_2) = const true;
// DBG: _3 = &((*_1).0: i32);
- goto -> bb2;
- }
-
- bb2: {
// DBG: _4 = &((*_1).1: i64);
_0 = copy ((*_1).2: i32);
// DBG: _5 = &((*_1).2: i32);
return;
}
}

View File

@@ -0,0 +1,29 @@
- // MIR for `preserve_debuginfo_2` before SimplifyCfg-final
+ // MIR for `preserve_debuginfo_2` after SimplifyCfg-final
fn preserve_debuginfo_2(_1: &Foo) -> i32 {
debug foo_a => _2;
debug foo_b => _3;
debug foo_c => _4;
let mut _0: i32;
let mut _2: &i32;
let mut _3: &i64;
let mut _4: &i32;
bb0: {
- goto -> bb1;
- }
-
- bb1: {
// DBG: _2 = &((*_1).0: i32);
- goto -> bb2;
- }
-
- bb2: {
// DBG: _3 = &((*_1).1: i64);
_0 = copy ((*_1).2: i32);
// DBG: _4 = &((*_1).2: i32);
return;
}
}

View File

@@ -16,10 +16,12 @@
+ let mut _9: *mut A;
+ let mut _10: usize;
+ scope 3 (inlined Vec::<A>::as_mut_ptr) {
+ let mut _11: &alloc::raw_vec::RawVec<A>;
+ scope 4 (inlined alloc::raw_vec::RawVec::<A>::ptr) {
+ let mut _12: &alloc::raw_vec::RawVecInner;
+ scope 5 (inlined alloc::raw_vec::RawVecInner::ptr::<A>) {
+ scope 6 (inlined alloc::raw_vec::RawVecInner::non_null::<A>) {
+ let mut _11: std::ptr::NonNull<u8>;
+ let mut _13: std::ptr::NonNull<u8>;
+ scope 7 (inlined Unique::<u8>::cast::<A>) {
+ scope 8 (inlined NonNull::<u8>::cast::<A>) {
+ scope 9 (inlined NonNull::<u8>::as_ptr) {
@@ -39,15 +41,15 @@
+ }
+ }
+ scope 14 (inlined drop_in_place::<[A]> - shim(Some([A]))) {
+ let mut _12: usize;
+ let mut _13: *mut A;
+ let mut _14: bool;
+ let mut _14: usize;
+ let mut _15: *mut A;
+ let mut _16: bool;
+ }
+ }
+ }
+ scope 15 (inlined drop_in_place::<Option<B>> - shim(Some(Option<B>))) {
+ let mut _15: isize;
+ let mut _16: isize;
+ let mut _17: isize;
+ let mut _18: isize;
+ }
bb0: {
@@ -62,16 +64,22 @@
+ StorageLive(_8);
+ StorageLive(_9);
+ StorageLive(_11);
+ _11 = copy (((((*_6).0: alloc::raw_vec::RawVec<A>).0: alloc::raw_vec::RawVecInner).0: std::ptr::Unique<u8>).0: std::ptr::NonNull<u8>);
+ _9 = copy _11 as *mut A (Transmute);
+ // DBG: _11 = &((*_6).0: alloc::raw_vec::RawVec<A>);
+ StorageLive(_12);
+ // DBG: _12 = &(((*_6).0: alloc::raw_vec::RawVec<A>).0: alloc::raw_vec::RawVecInner);
+ StorageLive(_13);
+ _13 = copy (((((*_6).0: alloc::raw_vec::RawVec<A>).0: alloc::raw_vec::RawVecInner).0: std::ptr::Unique<u8>).0: std::ptr::NonNull<u8>);
+ _9 = copy _13 as *mut A (Transmute);
+ StorageDead(_13);
+ StorageDead(_12);
+ StorageDead(_11);
+ _10 = copy ((*_6).1: usize);
+ _8 = *mut [A] from (copy _9, copy _10);
+ StorageDead(_9);
+ StorageLive(_12);
+ StorageLive(_13);
+ StorageLive(_14);
+ _12 = const 0_usize;
+ StorageLive(_15);
+ StorageLive(_16);
+ _14 = const 0_usize;
+ goto -> bb4;
}
@@ -83,35 +91,35 @@
StorageLive(_5);
_5 = copy _2;
- _0 = drop_in_place::<Option<B>>(move _5) -> [return: bb2, unwind unreachable];
+ StorageLive(_15);
+ StorageLive(_16);
+ _15 = discriminant((*_5));
+ switchInt(move _15) -> [0: bb5, otherwise: bb6];
+ StorageLive(_17);
+ StorageLive(_18);
+ _17 = discriminant((*_5));
+ switchInt(move _17) -> [0: bb5, otherwise: bb6];
}
bb2: {
+ StorageDead(_16);
+ StorageDead(_15);
+ StorageDead(_14);
+ StorageDead(_13);
+ StorageDead(_12);
+ StorageDead(_8);
+ StorageDead(_10);
+ drop(((*_4).0: alloc::raw_vec::RawVec<A>)) -> [return: bb1, unwind unreachable];
+ }
+
+ bb3: {
+ _13 = &raw mut (*_8)[_12];
+ _12 = Add(move _12, const 1_usize);
+ drop((*_13)) -> [return: bb4, unwind unreachable];
+ _15 = &raw mut (*_8)[_14];
+ _14 = Add(move _14, const 1_usize);
+ drop((*_15)) -> [return: bb4, unwind unreachable];
+ }
+
+ bb4: {
+ _14 = Eq(copy _12, copy _10);
+ switchInt(move _14) -> [0: bb3, otherwise: bb2];
+ _16 = Eq(copy _14, copy _10);
+ switchInt(move _16) -> [0: bb3, otherwise: bb2];
+ }
+
+ bb5: {
+ StorageDead(_16);
+ StorageDead(_15);
+ StorageDead(_18);
+ StorageDead(_17);
StorageDead(_5);
return;
+ }

View File

@@ -228,12 +228,12 @@
+ StorageLive(_41);
+ StorageLive(_42);
+ StorageLive(_43);
+ _45 = &mut _19;
+ // DBG: _45 = &_19;
+ StorageLive(_46);
+ _46 = &mut (_19.0: &mut std::future::Ready<()>);
+ // DBG: _46 = &(_19.0: &mut std::future::Ready<()>);
+ _44 = copy (_19.0: &mut std::future::Ready<()>);
+ StorageDead(_46);
+ _43 = &mut ((*_44).0: std::option::Option<()>);
+ // DBG: _43 = &((*_44).0: std::option::Option<()>);
+ StorageLive(_47);
+ _47 = Option::<()>::None;
+ _42 = copy ((*_44).0: std::option::Option<()>);

View File

@@ -245,12 +245,12 @@
+ StorageLive(_43);
+ StorageLive(_44);
+ StorageLive(_45);
+ _47 = &mut _19;
+ // DBG: _47 = &_19;
+ StorageLive(_48);
+ _48 = &mut (_19.0: &mut std::future::Ready<()>);
+ // DBG: _48 = &(_19.0: &mut std::future::Ready<()>);
+ _46 = copy (_19.0: &mut std::future::Ready<()>);
+ StorageDead(_48);
+ _45 = &mut ((*_46).0: std::option::Option<()>);
+ // DBG: _45 = &((*_46).0: std::option::Option<()>);
+ StorageLive(_49);
+ _49 = Option::<()>::None;
+ _44 = copy ((*_46).0: std::option::Option<()>);

View File

@@ -34,11 +34,11 @@
bb2: {
StorageLive(_5);
_5 = &(*_2)[0 of 3];
// DBG: _5 = &(*_2)[0 of 3];
StorageLive(_6);
_6 = &(*_2)[1 of 3];
// DBG: _6 = &(*_2)[1 of 3];
StorageLive(_7);
_7 = &(*_2)[2 of 3];
// DBG: _7 = &(*_2)[2 of 3];
StorageDead(_7);
StorageDead(_6);
StorageDead(_5);

View File

@@ -34,11 +34,11 @@
bb2: {
StorageLive(_5);
_5 = &(*_2)[0 of 3];
// DBG: _5 = &(*_2)[0 of 3];
StorageLive(_6);
_6 = &(*_2)[1 of 3];
// DBG: _6 = &(*_2)[1 of 3];
StorageLive(_7);
_7 = &(*_2)[2 of 3];
// DBG: _7 = &(*_2)[2 of 3];
StorageDead(_7);
StorageDead(_6);
StorageDead(_5);

View File

@@ -6,6 +6,7 @@ fn num_to_digit(_1: char) -> u32 {
let mut _4: std::option::Option<u32>;
scope 1 (inlined char::methods::<impl char>::is_digit) {
let _2: std::option::Option<u32>;
let mut _7: &std::option::Option<u32>;
scope 2 (inlined Option::<u32>::is_some) {
let mut _3: isize;
scope 3 {
@@ -20,14 +21,17 @@ fn num_to_digit(_1: char) -> u32 {
}
bb0: {
StorageLive(_7);
StorageLive(_2);
_2 = char::methods::<impl char>::to_digit(copy _1, const 8_u32) -> [return: bb1, unwind unreachable];
}
bb1: {
// DBG: _7 = &_2;
StorageLive(_3);
_3 = discriminant(_2);
StorageDead(_2);
StorageDead(_7);
switchInt(move _3) -> [1: bb2, otherwise: bb7];
}

View File

@@ -6,6 +6,7 @@ fn num_to_digit(_1: char) -> u32 {
let mut _4: std::option::Option<u32>;
scope 1 (inlined char::methods::<impl char>::is_digit) {
let _2: std::option::Option<u32>;
let mut _7: &std::option::Option<u32>;
scope 2 (inlined Option::<u32>::is_some) {
let mut _3: isize;
scope 3 {
@@ -20,14 +21,17 @@ fn num_to_digit(_1: char) -> u32 {
}
bb0: {
StorageLive(_7);
StorageLive(_2);
_2 = char::methods::<impl char>::to_digit(copy _1, const 8_u32) -> [return: bb1, unwind continue];
}
bb1: {
// DBG: _7 = &_2;
StorageLive(_3);
_3 = discriminant(_2);
StorageDead(_2);
StorageDead(_7);
switchInt(move _3) -> [1: bb2, otherwise: bb7];
}

View File

@@ -6,6 +6,7 @@ fn num_to_digit(_1: char) -> u32 {
let mut _4: std::option::Option<u32>;
scope 1 (inlined char::methods::<impl char>::is_digit) {
let _2: std::option::Option<u32>;
let mut _7: &std::option::Option<u32>;
scope 2 (inlined Option::<u32>::is_some) {
let mut _3: isize;
scope 3 {
@@ -20,14 +21,17 @@ fn num_to_digit(_1: char) -> u32 {
}
bb0: {
StorageLive(_7);
StorageLive(_2);
_2 = char::methods::<impl char>::to_digit(copy _1, const 8_u32) -> [return: bb1, unwind unreachable];
}
bb1: {
// DBG: _7 = &_2;
StorageLive(_3);
_3 = discriminant(_2);
StorageDead(_2);
StorageDead(_7);
switchInt(move _3) -> [1: bb2, otherwise: bb7];
}

View File

@@ -6,6 +6,7 @@ fn num_to_digit(_1: char) -> u32 {
let mut _4: std::option::Option<u32>;
scope 1 (inlined char::methods::<impl char>::is_digit) {
let _2: std::option::Option<u32>;
let mut _7: &std::option::Option<u32>;
scope 2 (inlined Option::<u32>::is_some) {
let mut _3: isize;
scope 3 {
@@ -20,14 +21,17 @@ fn num_to_digit(_1: char) -> u32 {
}
bb0: {
StorageLive(_7);
StorageLive(_2);
_2 = char::methods::<impl char>::to_digit(copy _1, const 8_u32) -> [return: bb1, unwind continue];
}
bb1: {
// DBG: _7 = &_2;
StorageLive(_3);
_3 = discriminant(_2);
StorageDead(_2);
StorageDead(_7);
switchInt(move _3) -> [1: bb2, otherwise: bb7];
}

View File

@@ -5,7 +5,9 @@ fn step_forward(_1: u16, _2: usize) -> u16 {
debug n => _2;
let mut _0: u16;
scope 1 (inlined <u16 as Step>::forward) {
let mut _8: u16;
let _8: std::option::Option<u16>;
let mut _10: u16;
let mut _11: &std::option::Option<u16>;
scope 2 {
}
scope 3 (inlined <u16 as Step>::forward_checked) {
@@ -13,8 +15,9 @@ fn step_forward(_1: u16, _2: usize) -> u16 {
scope 6 (inlined core::num::<impl u16>::checked_add) {
let mut _5: (u16, bool);
let mut _6: bool;
let mut _7: u16;
scope 7 (inlined std::intrinsics::unlikely) {
let _7: ();
let _9: ();
}
}
}
@@ -35,6 +38,8 @@ fn step_forward(_1: u16, _2: usize) -> u16 {
bb0: {
StorageLive(_4);
StorageLive(_11);
StorageLive(_8);
StorageLive(_3);
_3 = Gt(copy _2, const 65535_usize);
switchInt(move _3) -> [0: bb1, otherwise: bb5];
@@ -53,34 +58,55 @@ fn step_forward(_1: u16, _2: usize) -> u16 {
bb2: {
StorageDead(_5);
StorageDead(_6);
StorageLive(_7);
_7 = AddUnchecked(copy _1, copy _4);
_8 = Option::<u16>::Some(move _7);
StorageDead(_7);
// DBG: _11 = &_8;
StorageDead(_8);
StorageDead(_11);
goto -> bb7;
}
bb3: {
_7 = std::intrinsics::cold_path() -> [return: bb4, unwind unreachable];
_9 = std::intrinsics::cold_path() -> [return: bb4, unwind unreachable];
}
bb4: {
StorageDead(_5);
StorageDead(_6);
_8 = const Option::<u16>::None;
// DBG: _11 = &_8;
goto -> bb6;
}
bb5: {
StorageDead(_3);
_8 = const Option::<u16>::None;
// DBG: _11 = &_8;
goto -> bb6;
}
bb6: {
StorageDead(_8);
StorageDead(_11);
assert(!const true, "attempt to compute `{} + {}`, which would overflow", const core::num::<impl u16>::MAX, const 1_u16) -> [success: bb7, unwind unreachable];
}
bb7: {
StorageLive(_8);
_8 = copy _2 as u16 (IntToInt);
_0 = Add(copy _1, copy _8);
StorageDead(_8);
StorageLive(_10);
_10 = copy _2 as u16 (IntToInt);
_0 = Add(copy _1, copy _10);
StorageDead(_10);
StorageDead(_4);
return;
}
}
ALLOC0 (size: 4, align: 2) {
00 00 __ __ ..
}
ALLOC1 (size: 4, align: 2) {
00 00 __ __ ..
}

View File

@@ -5,7 +5,9 @@ fn step_forward(_1: u16, _2: usize) -> u16 {
debug n => _2;
let mut _0: u16;
scope 1 (inlined <u16 as Step>::forward) {
let mut _8: u16;
let _8: std::option::Option<u16>;
let mut _10: u16;
let mut _11: &std::option::Option<u16>;
scope 2 {
}
scope 3 (inlined <u16 as Step>::forward_checked) {
@@ -13,8 +15,9 @@ fn step_forward(_1: u16, _2: usize) -> u16 {
scope 6 (inlined core::num::<impl u16>::checked_add) {
let mut _5: (u16, bool);
let mut _6: bool;
let mut _7: u16;
scope 7 (inlined std::intrinsics::unlikely) {
let _7: ();
let _9: ();
}
}
}
@@ -35,6 +38,8 @@ fn step_forward(_1: u16, _2: usize) -> u16 {
bb0: {
StorageLive(_4);
StorageLive(_11);
StorageLive(_8);
StorageLive(_3);
_3 = Gt(copy _2, const 65535_usize);
switchInt(move _3) -> [0: bb1, otherwise: bb5];
@@ -53,34 +58,55 @@ fn step_forward(_1: u16, _2: usize) -> u16 {
bb2: {
StorageDead(_5);
StorageDead(_6);
StorageLive(_7);
_7 = AddUnchecked(copy _1, copy _4);
_8 = Option::<u16>::Some(move _7);
StorageDead(_7);
// DBG: _11 = &_8;
StorageDead(_8);
StorageDead(_11);
goto -> bb7;
}
bb3: {
_7 = std::intrinsics::cold_path() -> [return: bb4, unwind unreachable];
_9 = std::intrinsics::cold_path() -> [return: bb4, unwind unreachable];
}
bb4: {
StorageDead(_5);
StorageDead(_6);
_8 = const Option::<u16>::None;
// DBG: _11 = &_8;
goto -> bb6;
}
bb5: {
StorageDead(_3);
_8 = const Option::<u16>::None;
// DBG: _11 = &_8;
goto -> bb6;
}
bb6: {
StorageDead(_8);
StorageDead(_11);
assert(!const true, "attempt to compute `{} + {}`, which would overflow", const core::num::<impl u16>::MAX, const 1_u16) -> [success: bb7, unwind continue];
}
bb7: {
StorageLive(_8);
_8 = copy _2 as u16 (IntToInt);
_0 = Add(copy _1, copy _8);
StorageDead(_8);
StorageLive(_10);
_10 = copy _2 as u16 (IntToInt);
_0 = Add(copy _1, copy _10);
StorageDead(_10);
StorageDead(_4);
return;
}
}
ALLOC0 (size: 4, align: 2) {
00 00 __ __ ..
}
ALLOC1 (size: 4, align: 2) {
00 00 __ __ ..
}

View File

@@ -13,7 +13,7 @@ fn clone_as_copy(_1: &NestCopy) -> NestCopy {
bb0: {
StorageLive(_2);
_2 = &((*_1).1: AllCopy);
// DBG: _2 = &((*_1).1: AllCopy);
_0 = copy (*_1);
StorageDead(_2);
return;

View File

@@ -35,15 +35,15 @@ fn enum_clone_as_copy(_1: &Enum1) -> Enum1 {
}
bb1: {
_3 = &(((*_1) as A).0: AllCopy);
// DBG: _3 = &(((*_1) as A).0: AllCopy);
_0 = copy (*_1);
goto -> bb3;
}
bb2: {
_4 = &(((*_1) as B).0: NestCopy);
// DBG: _4 = &(((*_1) as B).0: NestCopy);
StorageLive(_5);
_5 = &((((*_1) as B).0: NestCopy).1: AllCopy);
// DBG: _5 = &((((*_1) as B).0: NestCopy).1: AllCopy);
StorageDead(_5);
_0 = copy (*_1);
goto -> bb3;

View File

@@ -8,9 +8,10 @@ fn generic_in_place(_1: *mut Box<[T]>) -> () {
let _2: std::ptr::NonNull<[T]>;
let mut _3: *mut [T];
let mut _4: *const [T];
let _11: ();
let _12: ();
let mut _13: &std::alloc::Layout;
scope 3 {
let _8: std::ptr::alignment::AlignmentEnum;
let _8: std::alloc::Layout;
scope 4 {
scope 12 (inlined Layout::size) {
}
@@ -26,15 +27,19 @@ fn generic_in_place(_1: *mut Box<[T]>) -> () {
}
scope 18 (inlined <std::alloc::Global as Allocator>::deallocate) {
let mut _9: *mut u8;
let mut _14: &std::alloc::Layout;
scope 19 (inlined Layout::size) {
}
scope 20 (inlined NonNull::<u8>::as_ptr) {
}
scope 21 (inlined std::alloc::dealloc) {
let mut _10: usize;
let mut _11: usize;
let mut _15: &std::alloc::Layout;
let mut _16: &std::alloc::Layout;
scope 22 (inlined Layout::size) {
}
scope 23 (inlined Layout::align) {
let mut _10: std::ptr::alignment::AlignmentEnum;
scope 24 (inlined std::ptr::Alignment::as_usize) {
}
}
@@ -63,6 +68,7 @@ fn generic_in_place(_1: *mut Box<[T]>) -> () {
}
bb0: {
StorageLive(_8);
StorageLive(_2);
_2 = copy (((*_1).0: std::ptr::Unique<[T]>).0: std::ptr::NonNull<[T]>);
StorageLive(_4);
@@ -74,31 +80,45 @@ fn generic_in_place(_1: *mut Box<[T]>) -> () {
bb1: {
_6 = AlignOf(T);
StorageLive(_7);
_7 = copy _6 as std::ptr::Alignment (Transmute);
_8 = move (_7.0: std::ptr::alignment::AlignmentEnum);
StorageDead(_7);
_8 = Layout { size: copy _5, align: copy _7 };
StorageDead(_6);
StorageDead(_4);
StorageLive(_13);
// DBG: _13 = &_8;
StorageDead(_13);
switchInt(copy _5) -> [0: bb4, otherwise: bb2];
}
bb2: {
StorageLive(_14);
// DBG: _14 = &_8;
StorageDead(_14);
StorageLive(_9);
_9 = copy _3 as *mut u8 (PtrToPtr);
StorageLive(_15);
// DBG: _15 = &_8;
StorageDead(_15);
StorageLive(_11);
StorageLive(_16);
// DBG: _16 = &_8;
StorageLive(_10);
_10 = discriminant(_8);
_11 = alloc::alloc::__rust_dealloc(move _9, move _5, move _10) -> [return: bb3, unwind unreachable];
_10 = copy (_7.0: std::ptr::alignment::AlignmentEnum);
_11 = discriminant(_10);
StorageDead(_10);
StorageDead(_16);
_12 = alloc::alloc::__rust_dealloc(move _9, move _5, move _11) -> [return: bb3, unwind unreachable];
}
bb3: {
StorageDead(_10);
StorageDead(_11);
StorageDead(_9);
goto -> bb4;
}
bb4: {
StorageDead(_2);
StorageDead(_8);
return;
}
}

View File

@@ -8,9 +8,10 @@ fn generic_in_place(_1: *mut Box<[T]>) -> () {
let _2: std::ptr::NonNull<[T]>;
let mut _3: *mut [T];
let mut _4: *const [T];
let _11: ();
let _12: ();
let mut _13: &std::alloc::Layout;
scope 3 {
let _8: std::ptr::alignment::AlignmentEnum;
let _8: std::alloc::Layout;
scope 4 {
scope 12 (inlined Layout::size) {
}
@@ -26,15 +27,19 @@ fn generic_in_place(_1: *mut Box<[T]>) -> () {
}
scope 18 (inlined <std::alloc::Global as Allocator>::deallocate) {
let mut _9: *mut u8;
let mut _14: &std::alloc::Layout;
scope 19 (inlined Layout::size) {
}
scope 20 (inlined NonNull::<u8>::as_ptr) {
}
scope 21 (inlined std::alloc::dealloc) {
let mut _10: usize;
let mut _11: usize;
let mut _15: &std::alloc::Layout;
let mut _16: &std::alloc::Layout;
scope 22 (inlined Layout::size) {
}
scope 23 (inlined Layout::align) {
let mut _10: std::ptr::alignment::AlignmentEnum;
scope 24 (inlined std::ptr::Alignment::as_usize) {
}
}
@@ -63,6 +68,7 @@ fn generic_in_place(_1: *mut Box<[T]>) -> () {
}
bb0: {
StorageLive(_8);
StorageLive(_2);
_2 = copy (((*_1).0: std::ptr::Unique<[T]>).0: std::ptr::NonNull<[T]>);
StorageLive(_4);
@@ -74,31 +80,45 @@ fn generic_in_place(_1: *mut Box<[T]>) -> () {
bb1: {
_6 = AlignOf(T);
StorageLive(_7);
_7 = copy _6 as std::ptr::Alignment (Transmute);
_8 = move (_7.0: std::ptr::alignment::AlignmentEnum);
StorageDead(_7);
_8 = Layout { size: copy _5, align: copy _7 };
StorageDead(_6);
StorageDead(_4);
StorageLive(_13);
// DBG: _13 = &_8;
StorageDead(_13);
switchInt(copy _5) -> [0: bb4, otherwise: bb2];
}
bb2: {
StorageLive(_14);
// DBG: _14 = &_8;
StorageDead(_14);
StorageLive(_9);
_9 = copy _3 as *mut u8 (PtrToPtr);
StorageLive(_15);
// DBG: _15 = &_8;
StorageDead(_15);
StorageLive(_11);
StorageLive(_16);
// DBG: _16 = &_8;
StorageLive(_10);
_10 = discriminant(_8);
_11 = alloc::alloc::__rust_dealloc(move _9, move _5, move _10) -> [return: bb3, unwind unreachable];
_10 = copy (_7.0: std::ptr::alignment::AlignmentEnum);
_11 = discriminant(_10);
StorageDead(_10);
StorageDead(_16);
_12 = alloc::alloc::__rust_dealloc(move _9, move _5, move _11) -> [return: bb3, unwind unreachable];
}
bb3: {
StorageDead(_10);
StorageDead(_11);
StorageDead(_9);
goto -> bb4;
}
bb4: {
StorageDead(_2);
StorageDead(_8);
return;
}
}

View File

@@ -8,9 +8,10 @@ fn generic_in_place(_1: *mut Box<[T]>) -> () {
let _2: std::ptr::NonNull<[T]>;
let mut _3: *mut [T];
let mut _4: *const [T];
let _11: ();
let _12: ();
let mut _13: &std::alloc::Layout;
scope 3 {
let _8: std::ptr::alignment::AlignmentEnum;
let _8: std::alloc::Layout;
scope 4 {
scope 12 (inlined Layout::size) {
}
@@ -26,15 +27,19 @@ fn generic_in_place(_1: *mut Box<[T]>) -> () {
}
scope 18 (inlined <std::alloc::Global as Allocator>::deallocate) {
let mut _9: *mut u8;
let mut _14: &std::alloc::Layout;
scope 19 (inlined Layout::size) {
}
scope 20 (inlined NonNull::<u8>::as_ptr) {
}
scope 21 (inlined std::alloc::dealloc) {
let mut _10: usize;
let mut _11: usize;
let mut _15: &std::alloc::Layout;
let mut _16: &std::alloc::Layout;
scope 22 (inlined Layout::size) {
}
scope 23 (inlined Layout::align) {
let mut _10: std::ptr::alignment::AlignmentEnum;
scope 24 (inlined std::ptr::Alignment::as_usize) {
}
}
@@ -63,6 +68,7 @@ fn generic_in_place(_1: *mut Box<[T]>) -> () {
}
bb0: {
StorageLive(_8);
StorageLive(_2);
_2 = copy (((*_1).0: std::ptr::Unique<[T]>).0: std::ptr::NonNull<[T]>);
StorageLive(_4);
@@ -74,31 +80,45 @@ fn generic_in_place(_1: *mut Box<[T]>) -> () {
bb1: {
_6 = AlignOf(T);
StorageLive(_7);
_7 = copy _6 as std::ptr::Alignment (Transmute);
_8 = move (_7.0: std::ptr::alignment::AlignmentEnum);
StorageDead(_7);
_8 = Layout { size: copy _5, align: copy _7 };
StorageDead(_6);
StorageDead(_4);
StorageLive(_13);
// DBG: _13 = &_8;
StorageDead(_13);
switchInt(copy _5) -> [0: bb4, otherwise: bb2];
}
bb2: {
StorageLive(_14);
// DBG: _14 = &_8;
StorageDead(_14);
StorageLive(_9);
_9 = copy _3 as *mut u8 (PtrToPtr);
StorageLive(_15);
// DBG: _15 = &_8;
StorageDead(_15);
StorageLive(_11);
StorageLive(_16);
// DBG: _16 = &_8;
StorageLive(_10);
_10 = discriminant(_8);
_11 = alloc::alloc::__rust_dealloc(move _9, move _5, move _10) -> [return: bb3, unwind unreachable];
_10 = copy (_7.0: std::ptr::alignment::AlignmentEnum);
_11 = discriminant(_10);
StorageDead(_10);
StorageDead(_16);
_12 = alloc::alloc::__rust_dealloc(move _9, move _5, move _11) -> [return: bb3, unwind unreachable];
}
bb3: {
StorageDead(_10);
StorageDead(_11);
StorageDead(_9);
goto -> bb4;
}
bb4: {
StorageDead(_2);
StorageDead(_8);
return;
}
}

View File

@@ -8,9 +8,10 @@ fn generic_in_place(_1: *mut Box<[T]>) -> () {
let _2: std::ptr::NonNull<[T]>;
let mut _3: *mut [T];
let mut _4: *const [T];
let _11: ();
let _12: ();
let mut _13: &std::alloc::Layout;
scope 3 {
let _8: std::ptr::alignment::AlignmentEnum;
let _8: std::alloc::Layout;
scope 4 {
scope 12 (inlined Layout::size) {
}
@@ -26,15 +27,19 @@ fn generic_in_place(_1: *mut Box<[T]>) -> () {
}
scope 18 (inlined <std::alloc::Global as Allocator>::deallocate) {
let mut _9: *mut u8;
let mut _14: &std::alloc::Layout;
scope 19 (inlined Layout::size) {
}
scope 20 (inlined NonNull::<u8>::as_ptr) {
}
scope 21 (inlined std::alloc::dealloc) {
let mut _10: usize;
let mut _11: usize;
let mut _15: &std::alloc::Layout;
let mut _16: &std::alloc::Layout;
scope 22 (inlined Layout::size) {
}
scope 23 (inlined Layout::align) {
let mut _10: std::ptr::alignment::AlignmentEnum;
scope 24 (inlined std::ptr::Alignment::as_usize) {
}
}
@@ -63,6 +68,7 @@ fn generic_in_place(_1: *mut Box<[T]>) -> () {
}
bb0: {
StorageLive(_8);
StorageLive(_2);
_2 = copy (((*_1).0: std::ptr::Unique<[T]>).0: std::ptr::NonNull<[T]>);
StorageLive(_4);
@@ -74,31 +80,45 @@ fn generic_in_place(_1: *mut Box<[T]>) -> () {
bb1: {
_6 = AlignOf(T);
StorageLive(_7);
_7 = copy _6 as std::ptr::Alignment (Transmute);
_8 = move (_7.0: std::ptr::alignment::AlignmentEnum);
StorageDead(_7);
_8 = Layout { size: copy _5, align: copy _7 };
StorageDead(_6);
StorageDead(_4);
StorageLive(_13);
// DBG: _13 = &_8;
StorageDead(_13);
switchInt(copy _5) -> [0: bb4, otherwise: bb2];
}
bb2: {
StorageLive(_14);
// DBG: _14 = &_8;
StorageDead(_14);
StorageLive(_9);
_9 = copy _3 as *mut u8 (PtrToPtr);
StorageLive(_15);
// DBG: _15 = &_8;
StorageDead(_15);
StorageLive(_11);
StorageLive(_16);
// DBG: _16 = &_8;
StorageLive(_10);
_10 = discriminant(_8);
_11 = alloc::alloc::__rust_dealloc(move _9, move _5, move _10) -> [return: bb3, unwind unreachable];
_10 = copy (_7.0: std::ptr::alignment::AlignmentEnum);
_11 = discriminant(_10);
StorageDead(_10);
StorageDead(_16);
_12 = alloc::alloc::__rust_dealloc(move _9, move _5, move _11) -> [return: bb3, unwind unreachable];
}
bb3: {
StorageDead(_10);
StorageDead(_11);
StorageDead(_9);
goto -> bb4;
}
bb4: {
StorageDead(_2);
StorageDead(_8);
return;
}
}

View File

@@ -11,7 +11,7 @@ pub unsafe fn generic_in_place<T: Copy>(ptr: *mut Box<[T]>) {
// CHECK: [[SIZE:_.+]] = std::intrinsics::size_of_val::<[T]>
// CHECK: [[ALIGN:_.+]] = AlignOf(T);
// CHECK: [[B:_.+]] = copy [[ALIGN]] as std::ptr::Alignment (Transmute);
// CHECK: [[C:_.+]] = move ([[B]].0: std::ptr::alignment::AlignmentEnum);
// CHECK: [[C:_.+]] = copy ([[B]].0: std::ptr::alignment::AlignmentEnum);
// CHECK: [[D:_.+]] = discriminant([[C]]);
// CHECK: = alloc::alloc::__rust_dealloc({{.+}}, move [[SIZE]], move [[D]]) ->
std::ptr::drop_in_place(ptr)

View File

@@ -6,20 +6,20 @@ fn filter_mapped(_1: impl Iterator<Item = T>, _2: impl Fn(T) -> Option<U>) -> ()
let mut _0: ();
let mut _3: std::iter::FilterMap<impl Iterator<Item = T>, impl Fn(T) -> Option<U>>;
let mut _4: std::iter::FilterMap<impl Iterator<Item = T>, impl Fn(T) -> Option<U>>;
let mut _5: &mut std::iter::FilterMap<impl Iterator<Item = T>, impl Fn(T) -> Option<U>>;
let mut _8: std::option::Option<U>;
let mut _9: isize;
let _11: ();
let mut _7: std::option::Option<U>;
let mut _8: isize;
let _10: ();
let mut _11: &mut std::iter::FilterMap<impl Iterator<Item = T>, impl Fn(T) -> Option<U>>;
scope 1 {
debug iter => _4;
let _10: U;
let _9: U;
scope 2 {
debug x => _10;
debug x => _9;
}
scope 4 (inlined <FilterMap<impl Iterator<Item = T>, impl Fn(T) -> Option<U>> as Iterator>::next) {
debug self => _5;
let mut _6: &mut impl Iterator<Item = T>;
let mut _7: &mut impl Fn(T) -> Option<U>;
debug self => _11;
let mut _5: &mut impl Iterator<Item = T>;
let mut _6: &mut impl Fn(T) -> Option<U>;
}
}
scope 3 (inlined <FilterMap<impl Iterator<Item = T>, impl Fn(T) -> Option<U>> as IntoIterator>::into_iter) {
@@ -37,24 +37,24 @@ fn filter_mapped(_1: impl Iterator<Item = T>, _2: impl Fn(T) -> Option<U>) -> ()
}
bb2: {
StorageLive(_8);
_5 = &mut _4;
StorageLive(_6);
_6 = &mut (_4.0: impl Iterator<Item = T>);
StorageLive(_7);
_7 = &mut (_4.1: impl Fn(T) -> Option<U>);
_8 = <impl Iterator<Item = T> as Iterator>::find_map::<U, &mut impl Fn(T) -> Option<U>>(move _6, move _7) -> [return: bb3, unwind: bb9];
// DBG: _11 = &_4;
StorageLive(_5);
_5 = &mut (_4.0: impl Iterator<Item = T>);
StorageLive(_6);
_6 = &mut (_4.1: impl Fn(T) -> Option<U>);
_7 = <impl Iterator<Item = T> as Iterator>::find_map::<U, &mut impl Fn(T) -> Option<U>>(move _5, move _6) -> [return: bb3, unwind: bb9];
}
bb3: {
StorageDead(_7);
StorageDead(_6);
_9 = discriminant(_8);
switchInt(move _9) -> [0: bb4, 1: bb6, otherwise: bb8];
StorageDead(_5);
_8 = discriminant(_7);
switchInt(move _8) -> [0: bb4, 1: bb6, otherwise: bb8];
}
bb4: {
StorageDead(_8);
StorageDead(_7);
drop(_4) -> [return: bb5, unwind continue];
}
@@ -64,12 +64,12 @@ fn filter_mapped(_1: impl Iterator<Item = T>, _2: impl Fn(T) -> Option<U>) -> ()
}
bb6: {
_10 = move ((_8 as Some).0: U);
_11 = opaque::<U>(move _10) -> [return: bb7, unwind: bb9];
_9 = move ((_7 as Some).0: U);
_10 = opaque::<U>(move _9) -> [return: bb7, unwind: bb9];
}
bb7: {
StorageDead(_8);
StorageDead(_7);
goto -> bb2;
}

View File

@@ -5,32 +5,31 @@ fn int_range(_1: usize, _2: usize) -> () {
debug end => _2;
let mut _0: ();
let mut _3: std::ops::Range<usize>;
let mut _4: std::ops::Range<usize>;
let mut _5: &mut std::ops::Range<usize>;
let mut _13: std::option::Option<usize>;
let _15: ();
let mut _9: std::option::Option<usize>;
let _11: ();
let mut _12: &mut std::ops::Range<usize>;
scope 1 {
debug iter => _4;
let _14: usize;
debug iter => _3;
let _10: usize;
scope 2 {
debug i => _14;
debug i => _10;
}
scope 4 (inlined iter::range::<impl Iterator for std::ops::Range<usize>>::next) {
debug self => _5;
debug self => _12;
scope 5 (inlined <std::ops::Range<usize> as iter::range::RangeIteratorImpl>::spec_next) {
debug self => _5;
let mut _6: &usize;
let mut _7: &usize;
let mut _10: bool;
let _11: usize;
let mut _12: usize;
debug self => _12;
let mut _6: bool;
let _7: usize;
let mut _8: usize;
let mut _13: &usize;
let mut _14: &usize;
scope 6 {
debug old => _11;
debug old => _7;
scope 8 (inlined <usize as Step>::forward_unchecked) {
debug start => _11;
debug start => _7;
debug n => const 1_usize;
scope 9 (inlined #[track_caller] core::num::<impl usize>::unchecked_add) {
debug self => _11;
debug self => _7;
debug rhs => const 1_usize;
scope 10 (inlined core::ub_checks::check_language_ub) {
scope 11 (inlined core::ub_checks::check_language_ub::runtime) {
@@ -40,10 +39,10 @@ fn int_range(_1: usize, _2: usize) -> () {
}
}
scope 7 (inlined std::cmp::impls::<impl PartialOrd for usize>::lt) {
debug self => _6;
debug other => _7;
let mut _8: usize;
let mut _9: usize;
debug self => _13;
debug other => _14;
let mut _4: usize;
let mut _5: usize;
}
}
}
@@ -54,54 +53,51 @@ fn int_range(_1: usize, _2: usize) -> () {
bb0: {
_3 = std::ops::Range::<usize> { start: copy _1, end: copy _2 };
StorageLive(_4);
_4 = copy _3;
goto -> bb1;
}
bb1: {
StorageLive(_13);
_5 = &mut _4;
StorageLive(_10);
StorageLive(_6);
_6 = &(_4.0: usize);
StorageLive(_7);
_7 = &(_4.1: usize);
StorageLive(_8);
_8 = copy (_4.0: usize);
StorageLive(_9);
_9 = copy (_4.1: usize);
_10 = Lt(move _8, move _9);
StorageDead(_9);
StorageDead(_8);
switchInt(move _10) -> [0: bb2, otherwise: bb3];
// DBG: _12 = &_3;
StorageLive(_6);
StorageLive(_13);
// DBG: _13 = &(_3.0: usize);
StorageLive(_14);
// DBG: _14 = &(_3.1: usize);
StorageLive(_4);
_4 = copy (_3.0: usize);
StorageLive(_5);
_5 = copy (_3.1: usize);
_6 = Lt(move _4, move _5);
StorageDead(_5);
StorageDead(_4);
switchInt(move _6) -> [0: bb2, otherwise: bb3];
}
bb2: {
StorageDead(_7);
StorageDead(_6);
StorageDead(_10);
StorageDead(_14);
StorageDead(_13);
StorageDead(_4);
StorageDead(_6);
StorageDead(_9);
return;
}
bb3: {
StorageDead(_7);
StorageDead(_14);
StorageDead(_13);
_7 = copy (_3.0: usize);
StorageLive(_8);
_8 = AddUnchecked(copy _7, const 1_usize);
(_3.0: usize) = move _8;
StorageDead(_8);
_9 = Option::<usize>::Some(copy _7);
StorageDead(_6);
_11 = copy (_4.0: usize);
StorageLive(_12);
_12 = AddUnchecked(copy _11, const 1_usize);
(_4.0: usize) = move _12;
StorageDead(_12);
_13 = Option::<usize>::Some(copy _11);
StorageDead(_10);
_14 = copy ((_13 as Some).0: usize);
_15 = opaque::<usize>(move _14) -> [return: bb4, unwind continue];
_10 = copy ((_9 as Some).0: usize);
_11 = opaque::<usize>(move _10) -> [return: bb4, unwind continue];
}
bb4: {
StorageDead(_13);
StorageDead(_9);
goto -> bb1;
}
}

View File

@@ -6,32 +6,32 @@ fn mapped(_1: impl Iterator<Item = T>, _2: impl Fn(T) -> U) -> () {
let mut _0: ();
let mut _3: std::iter::Map<impl Iterator<Item = T>, impl Fn(T) -> U>;
let mut _4: std::iter::Map<impl Iterator<Item = T>, impl Fn(T) -> U>;
let mut _5: &mut std::iter::Map<impl Iterator<Item = T>, impl Fn(T) -> U>;
let mut _13: std::option::Option<U>;
let _15: ();
let mut _12: std::option::Option<U>;
let _14: ();
let mut _15: &mut std::iter::Map<impl Iterator<Item = T>, impl Fn(T) -> U>;
scope 1 {
debug iter => _4;
let _14: U;
let _13: U;
scope 2 {
debug x => _14;
debug x => _13;
}
scope 4 (inlined <Map<impl Iterator<Item = T>, impl Fn(T) -> U> as Iterator>::next) {
debug self => _5;
let mut _6: &mut impl Iterator<Item = T>;
let mut _7: std::option::Option<T>;
let mut _8: &mut impl Fn(T) -> U;
debug self => _15;
let mut _5: &mut impl Iterator<Item = T>;
let mut _6: std::option::Option<T>;
let mut _7: &mut impl Fn(T) -> U;
scope 5 (inlined Option::<T>::map::<U, &mut impl Fn(T) -> U>) {
debug self => _7;
debug f => _8;
let mut _9: isize;
let _10: T;
let mut _11: (T,);
let mut _12: U;
debug self => _6;
debug f => _7;
let mut _8: isize;
let _9: T;
let mut _10: (T,);
let mut _11: U;
scope 6 {
debug x => _10;
debug x => _9;
scope 7 (inlined ops::function::impls::<impl FnOnce<(T,)> for &mut impl Fn(T) -> U>::call_once) {
debug self => _8;
debug args => _11;
debug self => _7;
debug args => _10;
}
}
}
@@ -52,30 +52,30 @@ fn mapped(_1: impl Iterator<Item = T>, _2: impl Fn(T) -> U) -> () {
}
bb2: {
StorageLive(_13);
_5 = &mut _4;
StorageLive(_8);
StorageLive(_12);
// DBG: _15 = &_4;
StorageLive(_7);
StorageLive(_6);
_6 = &mut (_4.0: impl Iterator<Item = T>);
_7 = <impl Iterator<Item = T> as Iterator>::next(move _6) -> [return: bb3, unwind: bb10];
StorageLive(_5);
_5 = &mut (_4.0: impl Iterator<Item = T>);
_6 = <impl Iterator<Item = T> as Iterator>::next(move _5) -> [return: bb3, unwind: bb10];
}
bb3: {
StorageDead(_6);
_8 = &mut (_4.1: impl Fn(T) -> U);
StorageDead(_5);
_7 = &mut (_4.1: impl Fn(T) -> U);
StorageLive(_8);
StorageLive(_9);
StorageLive(_10);
_9 = discriminant(_7);
switchInt(move _9) -> [0: bb4, 1: bb6, otherwise: bb9];
_8 = discriminant(_6);
switchInt(move _8) -> [0: bb4, 1: bb6, otherwise: bb9];
}
bb4: {
StorageDead(_10);
StorageDead(_9);
StorageDead(_7);
StorageDead(_8);
StorageDead(_13);
StorageDead(_6);
StorageDead(_7);
StorageDead(_12);
drop(_4) -> [return: bb5, unwind continue];
}
@@ -85,27 +85,27 @@ fn mapped(_1: impl Iterator<Item = T>, _2: impl Fn(T) -> U) -> () {
}
bb6: {
_10 = move ((_7 as Some).0: T);
StorageLive(_12);
_9 = move ((_6 as Some).0: T);
StorageLive(_11);
_11 = (copy _10,);
_12 = <impl Fn(T) -> U as FnMut<(T,)>>::call_mut(move _8, move _11) -> [return: bb7, unwind: bb10];
StorageLive(_10);
_10 = (copy _9,);
_11 = <impl Fn(T) -> U as FnMut<(T,)>>::call_mut(move _7, move _10) -> [return: bb7, unwind: bb10];
}
bb7: {
StorageDead(_11);
_13 = Option::<U>::Some(move _12);
StorageDead(_12);
StorageDead(_10);
_12 = Option::<U>::Some(move _11);
StorageDead(_11);
StorageDead(_9);
StorageDead(_7);
StorageDead(_8);
_14 = move ((_13 as Some).0: U);
_15 = opaque::<U>(move _14) -> [return: bb8, unwind: bb10];
StorageDead(_6);
StorageDead(_7);
_13 = move ((_12 as Some).0: U);
_14 = opaque::<U>(move _13) -> [return: bb8, unwind: bb10];
}
bb8: {
StorageDead(_13);
StorageDead(_12);
goto -> bb2;
}

View File

@@ -1,5 +1,6 @@
// skip-filecheck
//@ compile-flags: -O -Zmir-opt-level=2 -g
//@ ignore-std-debug-assertions (debug assertions result in different inlines)
//@ needs-unwind
#![crate_type = "lib"]

View File

@@ -3,72 +3,354 @@
fn vec_move(_1: Vec<impl Sized>) -> () {
debug v => _1;
let mut _0: ();
let mut _2: std::vec::IntoIter<impl Sized>;
let mut _3: std::vec::IntoIter<impl Sized>;
let mut _4: &mut std::vec::IntoIter<impl Sized>;
let mut _5: std::option::Option<impl Sized>;
let mut _6: isize;
let _8: ();
let mut _22: std::vec::IntoIter<impl Sized>;
let mut _23: std::vec::IntoIter<impl Sized>;
let mut _24: &mut std::vec::IntoIter<impl Sized>;
let mut _25: std::option::Option<impl Sized>;
let mut _26: isize;
let _28: ();
scope 1 {
debug iter => _3;
let _7: impl Sized;
debug iter => _23;
let _27: impl Sized;
scope 2 {
debug x => _7;
debug x => _27;
}
}
scope 3 (inlined <Vec<impl Sized> as IntoIterator>::into_iter) {
debug self => _1;
let _2: std::mem::ManuallyDrop<std::vec::Vec<impl Sized>>;
let mut _3: *const std::alloc::Global;
let mut _8: usize;
let mut _10: *mut impl Sized;
let mut _11: *const impl Sized;
let mut _12: usize;
let _29: &std::vec::Vec<impl Sized>;
let mut _30: &std::mem::ManuallyDrop<std::vec::Vec<impl Sized>>;
let mut _31: &alloc::raw_vec::RawVec<impl Sized>;
let mut _32: &std::mem::ManuallyDrop<std::vec::Vec<impl Sized>>;
let _33: &std::vec::Vec<impl Sized>;
let mut _34: &std::mem::ManuallyDrop<std::vec::Vec<impl Sized>>;
let _35: &std::vec::Vec<impl Sized>;
let mut _36: &std::mem::ManuallyDrop<std::vec::Vec<impl Sized>>;
let mut _37: &alloc::raw_vec::RawVec<impl Sized>;
let mut _38: &std::mem::ManuallyDrop<std::vec::Vec<impl Sized>>;
scope 4 {
debug me => _2;
scope 5 {
debug alloc => const ManuallyDrop::<std::alloc::Global> {{ value: std::alloc::Global }};
let _6: std::ptr::NonNull<impl Sized>;
scope 6 {
debug buf => _6;
let _7: *mut impl Sized;
scope 7 {
debug begin => _7;
scope 8 {
debug end => _11;
let _20: usize;
scope 9 {
debug cap => _20;
}
scope 39 (inlined <ManuallyDrop<Vec<impl Sized>> as Deref>::deref) {
debug self => _38;
}
scope 40 (inlined alloc::raw_vec::RawVec::<impl Sized>::capacity) {
debug self => _37;
let mut _19: usize;
let mut _42: &alloc::raw_vec::RawVecInner;
scope 41 (inlined std::mem::size_of::<impl Sized>) {
}
scope 42 (inlined alloc::raw_vec::RawVecInner::capacity) {
debug self => _42;
debug elem_size => _19;
let mut _21: core::num::niche_types::UsizeNoHighBit;
scope 43 (inlined core::num::niche_types::UsizeNoHighBit::as_inner) {
debug self => _21;
}
}
}
}
scope 25 (inlined <ManuallyDrop<Vec<impl Sized>> as Deref>::deref) {
debug self => _34;
}
scope 26 (inlined Vec::<impl Sized>::len) {
debug self => _33;
let mut _13: bool;
scope 27 {
}
}
scope 28 (inlined std::ptr::mut_ptr::<impl *mut impl Sized>::wrapping_byte_add) {
debug self => _7;
debug count => _12;
let mut _14: *mut u8;
let mut _18: *mut u8;
scope 29 (inlined std::ptr::mut_ptr::<impl *mut impl Sized>::cast::<u8>) {
debug self => _7;
}
scope 30 (inlined std::ptr::mut_ptr::<impl *mut u8>::wrapping_add) {
debug self => _14;
debug count => _12;
let mut _15: isize;
scope 31 (inlined std::ptr::mut_ptr::<impl *mut u8>::wrapping_offset) {
debug self => _14;
debug count => _15;
let mut _16: *const u8;
let mut _17: *const u8;
}
}
scope 32 (inlined std::ptr::mut_ptr::<impl *mut u8>::with_metadata_of::<impl Sized>) {
debug self => _18;
debug meta => _5;
scope 33 (inlined std::ptr::metadata::<impl Sized>) {
debug ptr => _5;
}
scope 34 (inlined std::ptr::from_raw_parts_mut::<impl Sized, ()>) {
}
}
}
scope 35 (inlined <ManuallyDrop<Vec<impl Sized>> as Deref>::deref) {
debug self => _36;
}
scope 36 (inlined Vec::<impl Sized>::len) {
debug self => _35;
let mut _9: bool;
scope 37 {
}
}
scope 38 (inlined #[track_caller] std::ptr::mut_ptr::<impl *mut impl Sized>::add) {
debug self => _7;
debug count => _8;
}
}
scope 24 (inlined NonNull::<impl Sized>::as_ptr) {
debug self => _6;
}
}
scope 17 (inlined <ManuallyDrop<Vec<impl Sized>> as Deref>::deref) {
debug self => _32;
}
scope 18 (inlined alloc::raw_vec::RawVec::<impl Sized>::non_null) {
debug self => _31;
let mut _41: &alloc::raw_vec::RawVecInner;
scope 19 (inlined alloc::raw_vec::RawVecInner::non_null::<impl Sized>) {
let mut _4: std::ptr::NonNull<u8>;
scope 20 (inlined Unique::<u8>::cast::<impl Sized>) {
scope 21 (inlined NonNull::<u8>::cast::<impl Sized>) {
let mut _5: *const impl Sized;
scope 22 (inlined NonNull::<u8>::as_ptr) {
}
}
}
scope 23 (inlined Unique::<impl Sized>::as_non_null_ptr) {
}
}
}
}
scope 11 (inlined <ManuallyDrop<Vec<impl Sized>> as Deref>::deref) {
debug self => _30;
}
scope 12 (inlined Vec::<impl Sized>::allocator) {
debug self => _29;
let mut _39: &alloc::raw_vec::RawVec<impl Sized>;
scope 13 (inlined alloc::raw_vec::RawVec::<impl Sized>::allocator) {
let mut _40: &alloc::raw_vec::RawVecInner;
scope 14 (inlined alloc::raw_vec::RawVecInner::allocator) {
}
}
}
scope 15 (inlined #[track_caller] std::ptr::read::<std::alloc::Global>) {
debug src => _3;
}
scope 16 (inlined ManuallyDrop::<std::alloc::Global>::new) {
debug value => const std::alloc::Global;
}
}
scope 10 (inlined ManuallyDrop::<Vec<impl Sized>>::new) {
debug value => _1;
}
}
bb0: {
StorageLive(_22);
StorageLive(_29);
StorageLive(_6);
StorageLive(_7);
StorageLive(_33);
StorageLive(_11);
StorageLive(_35);
StorageLive(_20);
StorageLive(_5);
StorageLive(_4);
StorageLive(_17);
StorageLive(_2);
_2 = <Vec<impl Sized> as IntoIterator>::into_iter(move _1) -> [return: bb1, unwind continue];
_2 = ManuallyDrop::<Vec<impl Sized>> { value: copy _1 };
StorageLive(_3);
StorageLive(_30);
// DBG: _30 = &_2;
// DBG: _29 = &(_2.0: std::vec::Vec<impl Sized>);
StorageDead(_30);
StorageLive(_39);
// DBG: _39 = &((_2.0: std::vec::Vec<impl Sized>).0: alloc::raw_vec::RawVec<impl Sized>);
StorageLive(_40);
// DBG: _40 = &(((_2.0: std::vec::Vec<impl Sized>).0: alloc::raw_vec::RawVec<impl Sized>).0: alloc::raw_vec::RawVecInner);
StorageDead(_40);
StorageDead(_39);
_3 = &raw const ((((_2.0: std::vec::Vec<impl Sized>).0: alloc::raw_vec::RawVec<impl Sized>).0: alloc::raw_vec::RawVecInner).2: std::alloc::Global);
StorageDead(_3);
StorageLive(_31);
StorageLive(_32);
// DBG: _32 = &_2;
StorageDead(_32);
// DBG: _31 = &((_2.0: std::vec::Vec<impl Sized>).0: alloc::raw_vec::RawVec<impl Sized>);
StorageLive(_41);
// DBG: _41 = &(((_2.0: std::vec::Vec<impl Sized>).0: alloc::raw_vec::RawVec<impl Sized>).0: alloc::raw_vec::RawVecInner);
_4 = copy (((((_2.0: std::vec::Vec<impl Sized>).0: alloc::raw_vec::RawVec<impl Sized>).0: alloc::raw_vec::RawVecInner).0: std::ptr::Unique<u8>).0: std::ptr::NonNull<u8>);
_5 = copy _4 as *const impl Sized (Transmute);
_6 = NonNull::<impl Sized> { pointer: copy _5 };
StorageDead(_41);
StorageDead(_31);
_7 = copy _4 as *mut impl Sized (Transmute);
switchInt(const <impl Sized as std::mem::SizedTypeProperties>::IS_ZST) -> [0: bb1, otherwise: bb2];
}
bb1: {
StorageLive(_3);
_3 = move _2;
goto -> bb2;
StorageLive(_10);
StorageLive(_8);
StorageLive(_36);
// DBG: _36 = &_2;
// DBG: _35 = &(_2.0: std::vec::Vec<impl Sized>);
StorageDead(_36);
_8 = copy ((_2.0: std::vec::Vec<impl Sized>).1: usize);
StorageLive(_9);
_9 = Le(copy _8, const <impl Sized as std::mem::SizedTypeProperties>::MAX_SLICE_LEN);
assume(move _9);
StorageDead(_9);
_10 = Offset(copy _7, copy _8);
_11 = copy _10 as *const impl Sized (PtrToPtr);
StorageDead(_8);
StorageDead(_10);
goto -> bb4;
}
bb2: {
StorageLive(_5);
_4 = &mut _3;
_5 = <std::vec::IntoIter<impl Sized> as Iterator>::next(move _4) -> [return: bb3, unwind: bb9];
StorageLive(_12);
StorageLive(_34);
// DBG: _34 = &_2;
// DBG: _33 = &(_2.0: std::vec::Vec<impl Sized>);
StorageDead(_34);
_12 = copy ((_2.0: std::vec::Vec<impl Sized>).1: usize);
StorageLive(_13);
_13 = Le(copy _12, const <impl Sized as std::mem::SizedTypeProperties>::MAX_SLICE_LEN);
assume(move _13);
StorageDead(_13);
StorageLive(_18);
StorageLive(_14);
_14 = copy _4 as *mut u8 (Transmute);
StorageLive(_15);
_15 = copy _12 as isize (IntToInt);
StorageLive(_16);
_16 = copy _4 as *const u8 (Transmute);
_17 = arith_offset::<u8>(move _16, move _15) -> [return: bb3, unwind unreachable];
}
bb3: {
_6 = discriminant(_5);
switchInt(move _6) -> [0: bb4, 1: bb6, otherwise: bb8];
StorageDead(_16);
_18 = copy _17 as *mut u8 (PtrToPtr);
StorageDead(_15);
StorageDead(_14);
StorageDead(_18);
StorageDead(_12);
_11 = copy _17 as *const impl Sized (PtrToPtr);
goto -> bb4;
}
bb4: {
StorageDead(_5);
drop(_3) -> [return: bb5, unwind continue];
StorageLive(_37);
StorageLive(_38);
// DBG: _38 = &_2;
StorageDead(_38);
// DBG: _37 = &((_2.0: std::vec::Vec<impl Sized>).0: alloc::raw_vec::RawVec<impl Sized>);
StorageLive(_42);
// DBG: _42 = &(((_2.0: std::vec::Vec<impl Sized>).0: alloc::raw_vec::RawVec<impl Sized>).0: alloc::raw_vec::RawVecInner);
StorageLive(_19);
_19 = SizeOf(impl Sized);
switchInt(move _19) -> [0: bb5, otherwise: bb6];
}
bb5: {
StorageDead(_3);
StorageDead(_2);
return;
_20 = const usize::MAX;
goto -> bb7;
}
bb6: {
_7 = move ((_5 as Some).0: impl Sized);
_8 = opaque::<impl Sized>(move _7) -> [return: bb7, unwind: bb9];
StorageLive(_21);
_21 = copy ((((_2.0: std::vec::Vec<impl Sized>).0: alloc::raw_vec::RawVec<impl Sized>).0: alloc::raw_vec::RawVecInner).1: core::num::niche_types::UsizeNoHighBit);
_20 = copy _21 as usize (Transmute);
StorageDead(_21);
goto -> bb7;
}
bb7: {
StorageDead(_19);
StorageDead(_42);
StorageDead(_37);
_22 = std::vec::IntoIter::<impl Sized> { buf: copy _6, phantom: const ZeroSized: PhantomData<impl Sized>, cap: move _20, alloc: const ManuallyDrop::<std::alloc::Global> {{ value: std::alloc::Global }}, ptr: copy _6, end: copy _11 };
StorageDead(_2);
StorageDead(_17);
StorageDead(_4);
StorageDead(_5);
goto -> bb2;
StorageDead(_20);
StorageDead(_35);
StorageDead(_11);
StorageDead(_33);
StorageDead(_7);
StorageDead(_6);
StorageDead(_29);
StorageLive(_23);
_23 = move _22;
goto -> bb8;
}
bb8: {
StorageLive(_25);
_24 = &mut _23;
_25 = <std::vec::IntoIter<impl Sized> as Iterator>::next(move _24) -> [return: bb9, unwind: bb15];
}
bb9: {
_26 = discriminant(_25);
switchInt(move _26) -> [0: bb10, 1: bb12, otherwise: bb14];
}
bb10: {
StorageDead(_25);
drop(_23) -> [return: bb11, unwind continue];
}
bb11: {
StorageDead(_23);
StorageDead(_22);
return;
}
bb12: {
_27 = move ((_25 as Some).0: impl Sized);
_28 = opaque::<impl Sized>(move _27) -> [return: bb13, unwind: bb15];
}
bb13: {
StorageDead(_25);
goto -> bb8;
}
bb14: {
unreachable;
}
bb9 (cleanup): {
drop(_3) -> [return: bb10, unwind terminate(cleanup)];
bb15 (cleanup): {
drop(_23) -> [return: bb16, unwind terminate(cleanup)];
}
bb10 (cleanup): {
bb16 (cleanup): {
resume;
}
}

View File

@@ -3,183 +3,164 @@
fn variant_a::{closure#0}(_1: &mut {closure@$DIR/slice_filter.rs:7:25: 7:39}, _2: &&(usize, usize, usize, usize)) -> bool {
let mut _0: bool;
let mut _3: &(usize, usize, usize, usize);
let _4: &usize;
let _5: &usize;
let _6: &usize;
let _7: &usize;
let mut _8: &&usize;
let _9: &usize;
let mut _10: &&usize;
let mut _13: bool;
let mut _14: &&usize;
let mut _6: bool;
let mut _9: bool;
let mut _10: bool;
let _13: &usize;
let _14: &usize;
let _15: &usize;
let mut _16: &&usize;
let mut _19: bool;
let _16: &usize;
let mut _17: &&usize;
let mut _18: &&usize;
let mut _19: &&usize;
let mut _20: &&usize;
let _21: &usize;
let mut _21: &&usize;
let mut _22: &&usize;
let mut _23: bool;
let mut _23: &&usize;
let mut _24: &&usize;
let _25: &usize;
let mut _26: &&usize;
scope 1 {
debug a => _4;
debug b => _5;
debug c => _6;
debug d => _7;
debug a => _13;
debug b => _14;
debug c => _15;
debug d => _16;
scope 2 (inlined std::cmp::impls::<impl PartialOrd for &usize>::le) {
debug self => _8;
debug other => _10;
debug self => _17;
debug other => _18;
scope 3 (inlined std::cmp::impls::<impl PartialOrd for usize>::le) {
debug self => _4;
debug other => _6;
let mut _11: usize;
let mut _12: usize;
debug self => _13;
debug other => _15;
let mut _4: usize;
let mut _5: usize;
}
}
scope 4 (inlined std::cmp::impls::<impl PartialOrd for &usize>::le) {
debug self => _14;
debug other => _16;
debug self => _19;
debug other => _20;
scope 5 (inlined std::cmp::impls::<impl PartialOrd for usize>::le) {
debug self => _7;
debug other => _5;
let mut _17: usize;
let mut _18: usize;
debug self => _16;
debug other => _14;
let mut _7: usize;
let mut _8: usize;
}
}
scope 6 (inlined std::cmp::impls::<impl PartialOrd for &usize>::le) {
debug self => _20;
debug self => _21;
debug other => _22;
scope 7 (inlined std::cmp::impls::<impl PartialOrd for usize>::le) {
debug self => _6;
debug other => _4;
debug self => _15;
debug other => _13;
}
}
scope 8 (inlined std::cmp::impls::<impl PartialOrd for &usize>::le) {
debug self => _24;
debug other => _26;
debug self => _23;
debug other => _24;
scope 9 (inlined std::cmp::impls::<impl PartialOrd for usize>::le) {
debug self => _5;
debug other => _7;
let mut _27: usize;
let mut _28: usize;
debug self => _14;
debug other => _16;
let mut _11: usize;
let mut _12: usize;
}
}
}
bb0: {
_3 = copy (*_2);
_4 = &((*_3).0: usize);
_5 = &((*_3).1: usize);
_6 = &((*_3).2: usize);
_7 = &((*_3).3: usize);
StorageLive(_13);
StorageLive(_8);
_8 = &_4;
StorageLive(_10);
StorageLive(_9);
_9 = copy _6;
_10 = &_9;
_11 = copy ((*_3).0: usize);
_12 = copy ((*_3).2: usize);
_13 = Le(copy _11, copy _12);
switchInt(move _13) -> [0: bb1, otherwise: bb2];
// DBG: _13 = &((*_3).0: usize);
// DBG: _14 = &((*_3).1: usize);
// DBG: _15 = &((*_3).2: usize);
// DBG: _16 = &((*_3).3: usize);
StorageLive(_6);
StorageLive(_17);
// DBG: _17 = &_13;
StorageLive(_18);
// DBG: _18 = &_15;
_4 = copy ((*_3).0: usize);
_5 = copy ((*_3).2: usize);
_6 = Le(copy _4, copy _5);
switchInt(move _6) -> [0: bb1, otherwise: bb2];
}
bb1: {
StorageDead(_9);
StorageDead(_10);
StorageDead(_8);
StorageDead(_18);
StorageDead(_17);
goto -> bb4;
}
bb2: {
StorageDead(_9);
StorageDead(_10);
StorageDead(_8);
StorageLive(_19);
StorageLive(_14);
_14 = &_7;
StorageLive(_16);
StorageLive(_15);
_15 = copy _5;
_16 = &_15;
StorageLive(_17);
_17 = copy ((*_3).3: usize);
StorageLive(_18);
_18 = copy ((*_3).1: usize);
_19 = Le(move _17, move _18);
StorageDead(_18);
StorageDead(_17);
switchInt(move _19) -> [0: bb3, otherwise: bb8];
StorageLive(_9);
StorageLive(_19);
// DBG: _19 = &_16;
StorageLive(_20);
// DBG: _20 = &_14;
StorageLive(_7);
_7 = copy ((*_3).3: usize);
StorageLive(_8);
_8 = copy ((*_3).1: usize);
_9 = Le(move _7, move _8);
StorageDead(_8);
StorageDead(_7);
switchInt(move _9) -> [0: bb3, otherwise: bb8];
}
bb3: {
StorageDead(_15);
StorageDead(_16);
StorageDead(_14);
StorageDead(_20);
StorageDead(_19);
goto -> bb4;
}
bb4: {
StorageLive(_23);
StorageLive(_20);
_20 = &_6;
StorageLive(_22);
StorageLive(_10);
StorageLive(_21);
_21 = copy _4;
_22 = &_21;
_23 = Le(copy _12, copy _11);
switchInt(move _23) -> [0: bb5, otherwise: bb6];
// DBG: _21 = &_15;
StorageLive(_22);
// DBG: _22 = &_13;
_10 = Le(copy _5, copy _4);
switchInt(move _10) -> [0: bb5, otherwise: bb6];
}
bb5: {
StorageDead(_21);
StorageDead(_22);
StorageDead(_20);
StorageDead(_21);
_0 = const false;
goto -> bb7;
}
bb6: {
StorageDead(_21);
StorageDead(_22);
StorageDead(_20);
StorageDead(_21);
StorageLive(_23);
// DBG: _23 = &_14;
StorageLive(_24);
_24 = &_5;
StorageLive(_26);
StorageLive(_25);
_25 = copy _7;
_26 = &_25;
StorageLive(_27);
_27 = copy ((*_3).1: usize);
StorageLive(_28);
_28 = copy ((*_3).3: usize);
_0 = Le(move _27, move _28);
StorageDead(_28);
StorageDead(_27);
StorageDead(_25);
StorageDead(_26);
// DBG: _24 = &_16;
StorageLive(_11);
_11 = copy ((*_3).1: usize);
StorageLive(_12);
_12 = copy ((*_3).3: usize);
_0 = Le(move _11, move _12);
StorageDead(_12);
StorageDead(_11);
StorageDead(_24);
StorageDead(_23);
goto -> bb7;
}
bb7: {
StorageDead(_23);
StorageDead(_10);
goto -> bb9;
}
bb8: {
StorageDead(_15);
StorageDead(_16);
StorageDead(_14);
StorageDead(_20);
StorageDead(_19);
_0 = const true;
goto -> bb9;
}
bb9: {
StorageDead(_19);
StorageDead(_13);
StorageDead(_9);
StorageDead(_6);
return;
}
}

View File

@@ -51,6 +51,9 @@ fn enumerated_loop(_1: &[T], _2: impl Fn(usize, &T)) -> () {
let mut _16: bool;
let mut _20: usize;
let _22: &T;
let mut _34: &std::ptr::NonNull<T>;
let mut _35: &std::ptr::NonNull<T>;
let mut _36: &std::ptr::NonNull<T>;
scope 29 {
let _12: *const T;
scope 30 {
@@ -186,7 +189,11 @@ fn enumerated_loop(_1: &[T], _2: impl Fn(usize, &T)) -> () {
bb5: {
StorageLive(_16);
StorageLive(_34);
// DBG: _34 = &_11;
StorageLive(_35);
_13 = copy _12 as std::ptr::NonNull<T> (Transmute);
// DBG: _35 = &_13;
StorageLive(_14);
_14 = copy _11 as *mut T (Transmute);
StorageLive(_15);
@@ -198,6 +205,8 @@ fn enumerated_loop(_1: &[T], _2: impl Fn(usize, &T)) -> () {
}
bb6: {
StorageDead(_35);
StorageDead(_34);
StorageDead(_16);
StorageLive(_18);
StorageLive(_17);
@@ -210,6 +219,8 @@ fn enumerated_loop(_1: &[T], _2: impl Fn(usize, &T)) -> () {
}
bb7: {
StorageDead(_35);
StorageDead(_34);
StorageDead(_16);
StorageDead(_22);
StorageDead(_13);
@@ -255,10 +266,13 @@ fn enumerated_loop(_1: &[T], _2: impl Fn(usize, &T)) -> () {
}
bb13: {
StorageLive(_36);
// DBG: _36 = &_11;
StorageLive(_21);
_21 = copy _11 as *const T (Transmute);
_22 = &(*_21);
StorageDead(_21);
StorageDead(_36);
_23 = Option::<&T>::Some(copy _22);
StorageDead(_22);
StorageDead(_13);

View File

@@ -23,6 +23,9 @@ fn forward_loop(_1: &[T], _2: impl Fn(&T)) -> () {
let mut _15: bool;
let mut _19: usize;
let _21: &T;
let mut _27: &std::ptr::NonNull<T>;
let mut _28: &std::ptr::NonNull<T>;
let mut _29: &std::ptr::NonNull<T>;
scope 17 {
let _11: *const T;
scope 18 {
@@ -148,7 +151,11 @@ fn forward_loop(_1: &[T], _2: impl Fn(&T)) -> () {
bb5: {
StorageLive(_15);
StorageLive(_27);
// DBG: _27 = &_10;
StorageLive(_28);
_12 = copy _11 as std::ptr::NonNull<T> (Transmute);
// DBG: _28 = &_12;
StorageLive(_13);
_13 = copy _10 as *mut T (Transmute);
StorageLive(_14);
@@ -160,6 +167,8 @@ fn forward_loop(_1: &[T], _2: impl Fn(&T)) -> () {
}
bb6: {
StorageDead(_28);
StorageDead(_27);
StorageDead(_15);
StorageLive(_17);
StorageLive(_16);
@@ -172,6 +181,8 @@ fn forward_loop(_1: &[T], _2: impl Fn(&T)) -> () {
}
bb7: {
StorageDead(_28);
StorageDead(_27);
StorageDead(_15);
StorageDead(_21);
StorageDead(_12);
@@ -213,10 +224,13 @@ fn forward_loop(_1: &[T], _2: impl Fn(&T)) -> () {
}
bb13: {
StorageLive(_29);
// DBG: _29 = &_10;
StorageLive(_20);
_20 = copy _10 as *const T (Transmute);
_21 = &(*_20);
StorageDead(_20);
StorageDead(_29);
_22 = Option::<&T>::Some(copy _21);
StorageDead(_21);
StorageDead(_12);

View File

@@ -23,6 +23,9 @@ fn forward_loop(_1: &[T], _2: impl Fn(&T)) -> () {
let mut _15: bool;
let mut _19: usize;
let _21: &T;
let mut _27: &std::ptr::NonNull<T>;
let mut _28: &std::ptr::NonNull<T>;
let mut _29: &std::ptr::NonNull<T>;
scope 17 {
let _11: *const T;
scope 18 {
@@ -148,7 +151,11 @@ fn forward_loop(_1: &[T], _2: impl Fn(&T)) -> () {
bb5: {
StorageLive(_15);
StorageLive(_27);
// DBG: _27 = &_10;
StorageLive(_28);
_12 = copy _11 as std::ptr::NonNull<T> (Transmute);
// DBG: _28 = &_12;
StorageLive(_13);
_13 = copy _10 as *mut T (Transmute);
StorageLive(_14);
@@ -160,6 +167,8 @@ fn forward_loop(_1: &[T], _2: impl Fn(&T)) -> () {
}
bb6: {
StorageDead(_28);
StorageDead(_27);
StorageDead(_15);
StorageLive(_17);
StorageLive(_16);
@@ -172,6 +181,8 @@ fn forward_loop(_1: &[T], _2: impl Fn(&T)) -> () {
}
bb7: {
StorageDead(_28);
StorageDead(_27);
StorageDead(_15);
StorageDead(_21);
StorageDead(_12);
@@ -213,10 +224,13 @@ fn forward_loop(_1: &[T], _2: impl Fn(&T)) -> () {
}
bb13: {
StorageLive(_29);
// DBG: _29 = &_10;
StorageLive(_20);
_20 = copy _10 as *const T (Transmute);
_21 = &(*_20);
StorageDead(_20);
StorageDead(_29);
_22 = Option::<&T>::Some(copy _21);
StorageDead(_21);
StorageDead(_12);

View File

@@ -7,19 +7,90 @@ fn reverse_loop(_1: &[T], _2: impl Fn(&T)) -> () {
let mut _10: std::slice::Iter<'_, T>;
let mut _11: std::iter::Rev<std::slice::Iter<'_, T>>;
let mut _12: std::iter::Rev<std::slice::Iter<'_, T>>;
let mut _14: std::option::Option<&T>;
let mut _15: isize;
let mut _17: &impl Fn(&T);
let mut _18: (&T,);
let _19: ();
let mut _33: std::option::Option<&T>;
let mut _35: &impl Fn(&T);
let mut _36: (&T,);
let _37: ();
scope 1 {
debug iter => _12;
let _16: &T;
let _34: &T;
scope 2 {
debug x => _16;
debug x => _34;
}
scope 18 (inlined <Rev<std::slice::Iter<'_, T>> as Iterator>::next) {
let mut _13: &mut std::slice::Iter<'_, T>;
scope 19 (inlined <std::slice::Iter<'_, T> as DoubleEndedIterator>::next_back) {
let mut _13: *const T;
let mut _18: bool;
let mut _19: *const T;
let _32: &T;
let mut _38: &std::ptr::NonNull<T>;
let mut _39: &std::ptr::NonNull<T>;
scope 20 {
let _14: std::ptr::NonNull<T>;
let _20: usize;
scope 21 {
}
scope 22 {
scope 25 (inlined <NonNull<T> as PartialEq>::eq) {
let mut _15: std::ptr::NonNull<T>;
let mut _16: *mut T;
let mut _17: *mut T;
scope 26 (inlined NonNull::<T>::as_ptr) {
}
scope 27 (inlined NonNull::<T>::as_ptr) {
}
}
}
scope 23 (inlined std::ptr::const_ptr::<impl *const T>::addr) {
scope 24 (inlined std::ptr::const_ptr::<impl *const T>::cast::<()>) {
}
}
}
scope 28 (inlined std::slice::Iter::<'_, T>::next_back_unchecked) {
let _26: std::ptr::NonNull<T>;
let mut _40: &std::ptr::NonNull<T>;
scope 29 (inlined std::slice::Iter::<'_, T>::pre_dec_end) {
let mut _21: *mut *const T;
let mut _22: *mut std::ptr::NonNull<T>;
let mut _23: std::ptr::NonNull<T>;
let mut _27: *mut *const T;
let mut _28: *mut usize;
let mut _29: usize;
let mut _30: usize;
scope 30 {
scope 31 {
}
scope 32 {
scope 35 (inlined NonNull::<T>::sub) {
scope 36 (inlined #[track_caller] core::num::<impl isize>::unchecked_neg) {
scope 37 (inlined core::ub_checks::check_language_ub) {
scope 38 (inlined core::ub_checks::check_language_ub::runtime) {
}
}
}
scope 39 (inlined NonNull::<T>::offset) {
let mut _24: *const T;
let mut _25: *const T;
scope 40 (inlined NonNull::<T>::as_ptr) {
}
}
}
}
scope 33 (inlined std::ptr::mut_ptr::<impl *mut *const T>::cast::<usize>) {
}
scope 34 (inlined std::ptr::mut_ptr::<impl *mut *const T>::cast::<NonNull<T>>) {
}
}
}
scope 41 (inlined NonNull::<T>::as_ref::<'_>) {
let _31: *const T;
scope 42 (inlined NonNull::<T>::as_ptr) {
}
scope 43 (inlined std::ptr::mut_ptr::<impl *mut T>::cast_const) {
}
}
}
}
}
}
scope 3 (inlined core::slice::<impl [T]>::iter) {
@@ -105,45 +176,145 @@ fn reverse_loop(_1: &[T], _2: impl Fn(&T)) -> () {
}
bb4: {
StorageLive(_33);
StorageLive(_20);
StorageLive(_19);
StorageLive(_14);
StorageLive(_13);
_13 = &mut (_12.0: std::slice::Iter<'_, T>);
_14 = <std::slice::Iter<'_, T> as DoubleEndedIterator>::next_back(move _13) -> [return: bb5, unwind unreachable];
StorageLive(_32);
StorageLive(_18);
switchInt(const <T as std::mem::SizedTypeProperties>::IS_ZST) -> [0: bb5, otherwise: bb6];
}
bb5: {
StorageLive(_13);
_13 = copy ((_12.0: std::slice::Iter<'_, T>).1: *const T);
_14 = copy _13 as std::ptr::NonNull<T> (Transmute);
StorageDead(_13);
_15 = discriminant(_14);
switchInt(move _15) -> [0: bb6, 1: bb8, otherwise: bb10];
StorageLive(_38);
// DBG: _38 = &((_12.0: std::slice::Iter<'_, T>).0: std::ptr::NonNull<T>);
StorageLive(_39);
// DBG: _39 = &_14;
StorageLive(_16);
StorageLive(_15);
_15 = copy ((_12.0: std::slice::Iter<'_, T>).0: std::ptr::NonNull<T>);
_16 = copy _15 as *mut T (Transmute);
StorageDead(_15);
StorageLive(_17);
_17 = copy _14 as *mut T (Transmute);
_18 = Eq(copy _16, copy _17);
StorageDead(_17);
StorageDead(_16);
StorageDead(_39);
StorageDead(_38);
goto -> bb7;
}
bb6: {
StorageDead(_14);
StorageDead(_12);
drop(_2) -> [return: bb7, unwind unreachable];
_19 = copy ((_12.0: std::slice::Iter<'_, T>).1: *const T);
_20 = copy _19 as usize (Transmute);
_18 = Eq(copy _20, const 0_usize);
goto -> bb7;
}
bb7: {
return;
switchInt(move _18) -> [0: bb8, otherwise: bb15];
}
bb8: {
_16 = copy ((_14 as Some).0: &T);
StorageLive(_17);
_17 = &_2;
StorageLive(_18);
_18 = (copy _16,);
_19 = <impl Fn(&T) as Fn<(&T,)>>::call(move _17, move _18) -> [return: bb9, unwind unreachable];
StorageLive(_26);
StorageLive(_40);
StorageLive(_28);
StorageLive(_22);
StorageLive(_23);
switchInt(const <T as std::mem::SizedTypeProperties>::IS_ZST) -> [0: bb9, otherwise: bb12];
}
bb9: {
StorageDead(_18);
StorageDead(_17);
StorageDead(_14);
goto -> bb4;
StorageLive(_21);
_21 = &raw mut ((_12.0: std::slice::Iter<'_, T>).1: *const T);
_22 = copy _21 as *mut std::ptr::NonNull<T> (PtrToPtr);
StorageDead(_21);
_23 = copy (*_22);
switchInt(const <T as std::mem::SizedTypeProperties>::IS_ZST) -> [0: bb10, otherwise: bb11];
}
bb10: {
unreachable;
StorageLive(_25);
StorageLive(_24);
_24 = copy _23 as *const T (Transmute);
_25 = Offset(copy _24, const -1_isize);
StorageDead(_24);
_23 = NonNull::<T> { pointer: copy _25 };
StorageDead(_25);
goto -> bb11;
}
bb11: {
(*_22) = move _23;
_26 = copy (*_22);
goto -> bb13;
}
bb12: {
StorageLive(_27);
_27 = &raw mut ((_12.0: std::slice::Iter<'_, T>).1: *const T);
_28 = copy _27 as *mut usize (PtrToPtr);
StorageDead(_27);
StorageLive(_30);
StorageLive(_29);
_29 = copy (*_28);
_30 = SubUnchecked(move _29, const 1_usize);
StorageDead(_29);
(*_28) = move _30;
StorageDead(_30);
_26 = copy ((_12.0: std::slice::Iter<'_, T>).0: std::ptr::NonNull<T>);
goto -> bb13;
}
bb13: {
StorageDead(_23);
StorageDead(_22);
StorageDead(_28);
// DBG: _40 = &_26;
StorageLive(_31);
_31 = copy _26 as *const T (Transmute);
_32 = &(*_31);
StorageDead(_31);
StorageDead(_40);
StorageDead(_26);
_33 = Option::<&T>::Some(copy _32);
StorageDead(_18);
StorageDead(_32);
StorageDead(_14);
StorageDead(_19);
StorageDead(_20);
_34 = copy ((_33 as Some).0: &T);
StorageLive(_35);
_35 = &_2;
StorageLive(_36);
_36 = (copy _34,);
_37 = <impl Fn(&T) as Fn<(&T,)>>::call(move _35, move _36) -> [return: bb14, unwind unreachable];
}
bb14: {
StorageDead(_36);
StorageDead(_35);
StorageDead(_33);
goto -> bb4;
}
bb15: {
StorageDead(_18);
StorageDead(_32);
StorageDead(_14);
StorageDead(_19);
StorageDead(_20);
StorageDead(_33);
StorageDead(_12);
drop(_2) -> [return: bb16, unwind unreachable];
}
bb16: {
return;
}
}

View File

@@ -7,19 +7,90 @@ fn reverse_loop(_1: &[T], _2: impl Fn(&T)) -> () {
let mut _10: std::slice::Iter<'_, T>;
let mut _11: std::iter::Rev<std::slice::Iter<'_, T>>;
let mut _12: std::iter::Rev<std::slice::Iter<'_, T>>;
let mut _14: std::option::Option<&T>;
let mut _15: isize;
let mut _17: &impl Fn(&T);
let mut _18: (&T,);
let _19: ();
let mut _33: std::option::Option<&T>;
let mut _35: &impl Fn(&T);
let mut _36: (&T,);
let _37: ();
scope 1 {
debug iter => _12;
let _16: &T;
let _34: &T;
scope 2 {
debug x => _16;
debug x => _34;
}
scope 18 (inlined <Rev<std::slice::Iter<'_, T>> as Iterator>::next) {
let mut _13: &mut std::slice::Iter<'_, T>;
scope 19 (inlined <std::slice::Iter<'_, T> as DoubleEndedIterator>::next_back) {
let mut _13: *const T;
let mut _18: bool;
let mut _19: *const T;
let _32: &T;
let mut _38: &std::ptr::NonNull<T>;
let mut _39: &std::ptr::NonNull<T>;
scope 20 {
let _14: std::ptr::NonNull<T>;
let _20: usize;
scope 21 {
}
scope 22 {
scope 25 (inlined <NonNull<T> as PartialEq>::eq) {
let mut _15: std::ptr::NonNull<T>;
let mut _16: *mut T;
let mut _17: *mut T;
scope 26 (inlined NonNull::<T>::as_ptr) {
}
scope 27 (inlined NonNull::<T>::as_ptr) {
}
}
}
scope 23 (inlined std::ptr::const_ptr::<impl *const T>::addr) {
scope 24 (inlined std::ptr::const_ptr::<impl *const T>::cast::<()>) {
}
}
}
scope 28 (inlined std::slice::Iter::<'_, T>::next_back_unchecked) {
let _26: std::ptr::NonNull<T>;
let mut _40: &std::ptr::NonNull<T>;
scope 29 (inlined std::slice::Iter::<'_, T>::pre_dec_end) {
let mut _21: *mut *const T;
let mut _22: *mut std::ptr::NonNull<T>;
let mut _23: std::ptr::NonNull<T>;
let mut _27: *mut *const T;
let mut _28: *mut usize;
let mut _29: usize;
let mut _30: usize;
scope 30 {
scope 31 {
}
scope 32 {
scope 35 (inlined NonNull::<T>::sub) {
scope 36 (inlined #[track_caller] core::num::<impl isize>::unchecked_neg) {
scope 37 (inlined core::ub_checks::check_language_ub) {
scope 38 (inlined core::ub_checks::check_language_ub::runtime) {
}
}
}
scope 39 (inlined NonNull::<T>::offset) {
let mut _24: *const T;
let mut _25: *const T;
scope 40 (inlined NonNull::<T>::as_ptr) {
}
}
}
}
scope 33 (inlined std::ptr::mut_ptr::<impl *mut *const T>::cast::<usize>) {
}
scope 34 (inlined std::ptr::mut_ptr::<impl *mut *const T>::cast::<NonNull<T>>) {
}
}
}
scope 41 (inlined NonNull::<T>::as_ref::<'_>) {
let _31: *const T;
scope 42 (inlined NonNull::<T>::as_ptr) {
}
scope 43 (inlined std::ptr::mut_ptr::<impl *mut T>::cast_const) {
}
}
}
}
}
}
scope 3 (inlined core::slice::<impl [T]>::iter) {
@@ -105,53 +176,153 @@ fn reverse_loop(_1: &[T], _2: impl Fn(&T)) -> () {
}
bb4: {
StorageLive(_33);
StorageLive(_20);
StorageLive(_19);
StorageLive(_14);
StorageLive(_13);
_13 = &mut (_12.0: std::slice::Iter<'_, T>);
_14 = <std::slice::Iter<'_, T> as DoubleEndedIterator>::next_back(move _13) -> [return: bb5, unwind: bb11];
StorageLive(_32);
StorageLive(_18);
switchInt(const <T as std::mem::SizedTypeProperties>::IS_ZST) -> [0: bb5, otherwise: bb6];
}
bb5: {
StorageLive(_13);
_13 = copy ((_12.0: std::slice::Iter<'_, T>).1: *const T);
_14 = copy _13 as std::ptr::NonNull<T> (Transmute);
StorageDead(_13);
_15 = discriminant(_14);
switchInt(move _15) -> [0: bb6, 1: bb8, otherwise: bb10];
StorageLive(_38);
// DBG: _38 = &((_12.0: std::slice::Iter<'_, T>).0: std::ptr::NonNull<T>);
StorageLive(_39);
// DBG: _39 = &_14;
StorageLive(_16);
StorageLive(_15);
_15 = copy ((_12.0: std::slice::Iter<'_, T>).0: std::ptr::NonNull<T>);
_16 = copy _15 as *mut T (Transmute);
StorageDead(_15);
StorageLive(_17);
_17 = copy _14 as *mut T (Transmute);
_18 = Eq(copy _16, copy _17);
StorageDead(_17);
StorageDead(_16);
StorageDead(_39);
StorageDead(_38);
goto -> bb7;
}
bb6: {
StorageDead(_14);
StorageDead(_12);
drop(_2) -> [return: bb7, unwind continue];
_19 = copy ((_12.0: std::slice::Iter<'_, T>).1: *const T);
_20 = copy _19 as usize (Transmute);
_18 = Eq(copy _20, const 0_usize);
goto -> bb7;
}
bb7: {
return;
switchInt(move _18) -> [0: bb8, otherwise: bb17];
}
bb8: {
_16 = copy ((_14 as Some).0: &T);
StorageLive(_17);
_17 = &_2;
StorageLive(_18);
_18 = (copy _16,);
_19 = <impl Fn(&T) as Fn<(&T,)>>::call(move _17, move _18) -> [return: bb9, unwind: bb11];
StorageLive(_26);
StorageLive(_40);
StorageLive(_28);
StorageLive(_22);
StorageLive(_23);
switchInt(const <T as std::mem::SizedTypeProperties>::IS_ZST) -> [0: bb9, otherwise: bb12];
}
bb9: {
StorageDead(_18);
StorageDead(_17);
StorageDead(_14);
goto -> bb4;
StorageLive(_21);
_21 = &raw mut ((_12.0: std::slice::Iter<'_, T>).1: *const T);
_22 = copy _21 as *mut std::ptr::NonNull<T> (PtrToPtr);
StorageDead(_21);
_23 = copy (*_22);
switchInt(const <T as std::mem::SizedTypeProperties>::IS_ZST) -> [0: bb10, otherwise: bb11];
}
bb10: {
unreachable;
StorageLive(_25);
StorageLive(_24);
_24 = copy _23 as *const T (Transmute);
_25 = Offset(copy _24, const -1_isize);
StorageDead(_24);
_23 = NonNull::<T> { pointer: copy _25 };
StorageDead(_25);
goto -> bb11;
}
bb11 (cleanup): {
drop(_2) -> [return: bb12, unwind terminate(cleanup)];
bb11: {
(*_22) = move _23;
_26 = copy (*_22);
goto -> bb13;
}
bb12 (cleanup): {
bb12: {
StorageLive(_27);
_27 = &raw mut ((_12.0: std::slice::Iter<'_, T>).1: *const T);
_28 = copy _27 as *mut usize (PtrToPtr);
StorageDead(_27);
StorageLive(_30);
StorageLive(_29);
_29 = copy (*_28);
_30 = SubUnchecked(move _29, const 1_usize);
StorageDead(_29);
(*_28) = move _30;
StorageDead(_30);
_26 = copy ((_12.0: std::slice::Iter<'_, T>).0: std::ptr::NonNull<T>);
goto -> bb13;
}
bb13: {
StorageDead(_23);
StorageDead(_22);
StorageDead(_28);
// DBG: _40 = &_26;
StorageLive(_31);
_31 = copy _26 as *const T (Transmute);
_32 = &(*_31);
StorageDead(_31);
StorageDead(_40);
StorageDead(_26);
_33 = Option::<&T>::Some(copy _32);
StorageDead(_18);
StorageDead(_32);
StorageDead(_14);
StorageDead(_19);
StorageDead(_20);
_34 = copy ((_33 as Some).0: &T);
StorageLive(_35);
_35 = &_2;
StorageLive(_36);
_36 = (copy _34,);
_37 = <impl Fn(&T) as Fn<(&T,)>>::call(move _35, move _36) -> [return: bb14, unwind: bb15];
}
bb14: {
StorageDead(_36);
StorageDead(_35);
StorageDead(_33);
goto -> bb4;
}
bb15 (cleanup): {
drop(_2) -> [return: bb16, unwind terminate(cleanup)];
}
bb16 (cleanup): {
resume;
}
bb17: {
StorageDead(_18);
StorageDead(_32);
StorageDead(_14);
StorageDead(_19);
StorageDead(_20);
StorageDead(_33);
StorageDead(_12);
drop(_2) -> [return: bb18, unwind continue];
}
bb18: {
return;
}
}

View File

@@ -6,6 +6,8 @@ fn slice_iter_generic_is_empty(_1: &std::slice::Iter<'_, T>) -> bool {
scope 1 (inlined <std::slice::Iter<'_, T> as ExactSizeIterator>::is_empty) {
let mut _2: *const T;
let mut _7: *const T;
let mut _9: &std::ptr::NonNull<T>;
let mut _10: &std::ptr::NonNull<T>;
scope 2 {
let _3: std::ptr::NonNull<T>;
let _8: usize;
@@ -41,6 +43,10 @@ fn slice_iter_generic_is_empty(_1: &std::slice::Iter<'_, T>) -> bool {
_2 = copy ((*_1).1: *const T);
_3 = copy _2 as std::ptr::NonNull<T> (Transmute);
StorageDead(_2);
StorageLive(_9);
// DBG: _9 = &((*_1).0: std::ptr::NonNull<T>);
StorageLive(_10);
// DBG: _10 = &_3;
StorageLive(_5);
StorageLive(_4);
_4 = copy ((*_1).0: std::ptr::NonNull<T>);
@@ -51,6 +57,8 @@ fn slice_iter_generic_is_empty(_1: &std::slice::Iter<'_, T>) -> bool {
_0 = Eq(copy _5, copy _6);
StorageDead(_6);
StorageDead(_5);
StorageDead(_10);
StorageDead(_9);
goto -> bb3;
}

View File

@@ -6,6 +6,8 @@ fn slice_iter_generic_is_empty(_1: &std::slice::Iter<'_, T>) -> bool {
scope 1 (inlined <std::slice::Iter<'_, T> as ExactSizeIterator>::is_empty) {
let mut _2: *const T;
let mut _7: *const T;
let mut _9: &std::ptr::NonNull<T>;
let mut _10: &std::ptr::NonNull<T>;
scope 2 {
let _3: std::ptr::NonNull<T>;
let _8: usize;
@@ -41,6 +43,10 @@ fn slice_iter_generic_is_empty(_1: &std::slice::Iter<'_, T>) -> bool {
_2 = copy ((*_1).1: *const T);
_3 = copy _2 as std::ptr::NonNull<T> (Transmute);
StorageDead(_2);
StorageLive(_9);
// DBG: _9 = &((*_1).0: std::ptr::NonNull<T>);
StorageLive(_10);
// DBG: _10 = &_3;
StorageLive(_5);
StorageLive(_4);
_4 = copy ((*_1).0: std::ptr::NonNull<T>);
@@ -51,6 +57,8 @@ fn slice_iter_generic_is_empty(_1: &std::slice::Iter<'_, T>) -> bool {
_0 = Eq(copy _5, copy _6);
StorageDead(_6);
StorageDead(_5);
StorageDead(_10);
StorageDead(_9);
goto -> bb3;
}

View File

@@ -3,12 +3,199 @@
fn slice_iter_mut_next_back(_1: &mut std::slice::IterMut<'_, T>) -> Option<&mut T> {
debug it => _1;
let mut _0: std::option::Option<&mut T>;
scope 1 (inlined <std::slice::IterMut<'_, T> as DoubleEndedIterator>::next_back) {
let mut _2: *mut T;
let mut _7: bool;
let mut _8: *mut T;
let mut _21: &mut T;
let mut _22: &std::ptr::NonNull<T>;
let mut _23: &std::ptr::NonNull<T>;
scope 2 {
let _3: std::ptr::NonNull<T>;
let _9: usize;
scope 3 {
}
scope 4 {
scope 7 (inlined <NonNull<T> as PartialEq>::eq) {
let mut _4: std::ptr::NonNull<T>;
let mut _5: *mut T;
let mut _6: *mut T;
scope 8 (inlined NonNull::<T>::as_ptr) {
}
scope 9 (inlined NonNull::<T>::as_ptr) {
}
}
}
scope 5 (inlined std::ptr::mut_ptr::<impl *mut T>::addr) {
scope 6 (inlined std::ptr::mut_ptr::<impl *mut T>::cast::<()>) {
}
}
}
scope 10 (inlined std::slice::IterMut::<'_, T>::next_back_unchecked) {
let mut _15: std::ptr::NonNull<T>;
let mut _24: &mut std::ptr::NonNull<T>;
scope 11 (inlined std::slice::IterMut::<'_, T>::pre_dec_end) {
let mut _10: *mut *mut T;
let mut _11: *mut std::ptr::NonNull<T>;
let mut _12: std::ptr::NonNull<T>;
let mut _16: *mut *mut T;
let mut _17: *mut usize;
let mut _18: usize;
let mut _19: usize;
scope 12 {
scope 13 {
}
scope 14 {
scope 17 (inlined NonNull::<T>::sub) {
scope 18 (inlined #[track_caller] core::num::<impl isize>::unchecked_neg) {
scope 19 (inlined core::ub_checks::check_language_ub) {
scope 20 (inlined core::ub_checks::check_language_ub::runtime) {
}
}
}
scope 21 (inlined NonNull::<T>::offset) {
let mut _13: *const T;
let mut _14: *const T;
scope 22 (inlined NonNull::<T>::as_ptr) {
}
}
}
}
scope 15 (inlined std::ptr::mut_ptr::<impl *mut *mut T>::cast::<usize>) {
}
scope 16 (inlined std::ptr::mut_ptr::<impl *mut *mut T>::cast::<NonNull<T>>) {
}
}
}
scope 23 (inlined NonNull::<T>::as_mut::<'_>) {
let mut _20: *mut T;
scope 24 (inlined NonNull::<T>::as_ptr) {
}
}
}
}
bb0: {
_0 = <std::slice::IterMut<'_, T> as DoubleEndedIterator>::next_back(move _1) -> [return: bb1, unwind unreachable];
StorageLive(_9);
StorageLive(_8);
StorageLive(_3);
StorageLive(_2);
StorageLive(_21);
StorageLive(_7);
switchInt(const <T as std::mem::SizedTypeProperties>::IS_ZST) -> [0: bb1, otherwise: bb2];
}
bb1: {
_2 = copy ((*_1).1: *mut T);
_3 = copy _2 as std::ptr::NonNull<T> (Transmute);
StorageLive(_22);
// DBG: _22 = &((*_1).0: std::ptr::NonNull<T>);
StorageLive(_23);
// DBG: _23 = &_3;
StorageLive(_5);
StorageLive(_4);
_4 = copy ((*_1).0: std::ptr::NonNull<T>);
_5 = copy _4 as *mut T (Transmute);
StorageDead(_4);
StorageLive(_6);
_6 = copy _3 as *mut T (Transmute);
_7 = Eq(copy _5, copy _6);
StorageDead(_6);
StorageDead(_5);
StorageDead(_23);
StorageDead(_22);
goto -> bb3;
}
bb2: {
_8 = copy ((*_1).1: *mut T);
_9 = copy _8 as usize (Transmute);
_7 = Eq(copy _9, const 0_usize);
goto -> bb3;
}
bb3: {
switchInt(move _7) -> [0: bb4, otherwise: bb10];
}
bb4: {
StorageLive(_15);
StorageLive(_24);
StorageLive(_17);
StorageLive(_11);
StorageLive(_12);
switchInt(const <T as std::mem::SizedTypeProperties>::IS_ZST) -> [0: bb5, otherwise: bb8];
}
bb5: {
StorageLive(_10);
_10 = &raw mut ((*_1).1: *mut T);
_11 = copy _10 as *mut std::ptr::NonNull<T> (PtrToPtr);
StorageDead(_10);
_12 = copy (*_11);
switchInt(const <T as std::mem::SizedTypeProperties>::IS_ZST) -> [0: bb6, otherwise: bb7];
}
bb6: {
StorageLive(_14);
StorageLive(_13);
_13 = copy _12 as *const T (Transmute);
_14 = Offset(copy _13, const -1_isize);
StorageDead(_13);
_12 = NonNull::<T> { pointer: copy _14 };
StorageDead(_14);
goto -> bb7;
}
bb7: {
(*_11) = move _12;
_15 = copy (*_11);
goto -> bb9;
}
bb8: {
StorageLive(_16);
_16 = &raw mut ((*_1).1: *mut T);
_17 = copy _16 as *mut usize (PtrToPtr);
StorageDead(_16);
StorageLive(_19);
StorageLive(_18);
_18 = copy (*_17);
_19 = SubUnchecked(move _18, const 1_usize);
StorageDead(_18);
(*_17) = move _19;
StorageDead(_19);
_15 = copy ((*_1).0: std::ptr::NonNull<T>);
goto -> bb9;
}
bb9: {
StorageDead(_12);
StorageDead(_11);
StorageDead(_17);
// DBG: _24 = &_15;
StorageLive(_20);
_20 = copy _15 as *mut T (Transmute);
_21 = &mut (*_20);
StorageDead(_20);
StorageDead(_24);
StorageDead(_15);
_0 = Option::<&mut T>::Some(copy _21);
goto -> bb11;
}
bb10: {
_0 = const {transmute(0x0000000000000000): Option<&mut T>};
goto -> bb11;
}
bb11: {
StorageDead(_7);
StorageDead(_21);
StorageDead(_2);
StorageDead(_3);
StorageDead(_8);
StorageDead(_9);
return;
}
}

View File

@@ -3,12 +3,199 @@
fn slice_iter_mut_next_back(_1: &mut std::slice::IterMut<'_, T>) -> Option<&mut T> {
debug it => _1;
let mut _0: std::option::Option<&mut T>;
scope 1 (inlined <std::slice::IterMut<'_, T> as DoubleEndedIterator>::next_back) {
let mut _2: *mut T;
let mut _7: bool;
let mut _8: *mut T;
let mut _21: &mut T;
let mut _22: &std::ptr::NonNull<T>;
let mut _23: &std::ptr::NonNull<T>;
scope 2 {
let _3: std::ptr::NonNull<T>;
let _9: usize;
scope 3 {
}
scope 4 {
scope 7 (inlined <NonNull<T> as PartialEq>::eq) {
let mut _4: std::ptr::NonNull<T>;
let mut _5: *mut T;
let mut _6: *mut T;
scope 8 (inlined NonNull::<T>::as_ptr) {
}
scope 9 (inlined NonNull::<T>::as_ptr) {
}
}
}
scope 5 (inlined std::ptr::mut_ptr::<impl *mut T>::addr) {
scope 6 (inlined std::ptr::mut_ptr::<impl *mut T>::cast::<()>) {
}
}
}
scope 10 (inlined std::slice::IterMut::<'_, T>::next_back_unchecked) {
let mut _15: std::ptr::NonNull<T>;
let mut _24: &mut std::ptr::NonNull<T>;
scope 11 (inlined std::slice::IterMut::<'_, T>::pre_dec_end) {
let mut _10: *mut *mut T;
let mut _11: *mut std::ptr::NonNull<T>;
let mut _12: std::ptr::NonNull<T>;
let mut _16: *mut *mut T;
let mut _17: *mut usize;
let mut _18: usize;
let mut _19: usize;
scope 12 {
scope 13 {
}
scope 14 {
scope 17 (inlined NonNull::<T>::sub) {
scope 18 (inlined #[track_caller] core::num::<impl isize>::unchecked_neg) {
scope 19 (inlined core::ub_checks::check_language_ub) {
scope 20 (inlined core::ub_checks::check_language_ub::runtime) {
}
}
}
scope 21 (inlined NonNull::<T>::offset) {
let mut _13: *const T;
let mut _14: *const T;
scope 22 (inlined NonNull::<T>::as_ptr) {
}
}
}
}
scope 15 (inlined std::ptr::mut_ptr::<impl *mut *mut T>::cast::<usize>) {
}
scope 16 (inlined std::ptr::mut_ptr::<impl *mut *mut T>::cast::<NonNull<T>>) {
}
}
}
scope 23 (inlined NonNull::<T>::as_mut::<'_>) {
let mut _20: *mut T;
scope 24 (inlined NonNull::<T>::as_ptr) {
}
}
}
}
bb0: {
_0 = <std::slice::IterMut<'_, T> as DoubleEndedIterator>::next_back(move _1) -> [return: bb1, unwind continue];
StorageLive(_9);
StorageLive(_8);
StorageLive(_3);
StorageLive(_2);
StorageLive(_21);
StorageLive(_7);
switchInt(const <T as std::mem::SizedTypeProperties>::IS_ZST) -> [0: bb1, otherwise: bb2];
}
bb1: {
_2 = copy ((*_1).1: *mut T);
_3 = copy _2 as std::ptr::NonNull<T> (Transmute);
StorageLive(_22);
// DBG: _22 = &((*_1).0: std::ptr::NonNull<T>);
StorageLive(_23);
// DBG: _23 = &_3;
StorageLive(_5);
StorageLive(_4);
_4 = copy ((*_1).0: std::ptr::NonNull<T>);
_5 = copy _4 as *mut T (Transmute);
StorageDead(_4);
StorageLive(_6);
_6 = copy _3 as *mut T (Transmute);
_7 = Eq(copy _5, copy _6);
StorageDead(_6);
StorageDead(_5);
StorageDead(_23);
StorageDead(_22);
goto -> bb3;
}
bb2: {
_8 = copy ((*_1).1: *mut T);
_9 = copy _8 as usize (Transmute);
_7 = Eq(copy _9, const 0_usize);
goto -> bb3;
}
bb3: {
switchInt(move _7) -> [0: bb4, otherwise: bb10];
}
bb4: {
StorageLive(_15);
StorageLive(_24);
StorageLive(_17);
StorageLive(_11);
StorageLive(_12);
switchInt(const <T as std::mem::SizedTypeProperties>::IS_ZST) -> [0: bb5, otherwise: bb8];
}
bb5: {
StorageLive(_10);
_10 = &raw mut ((*_1).1: *mut T);
_11 = copy _10 as *mut std::ptr::NonNull<T> (PtrToPtr);
StorageDead(_10);
_12 = copy (*_11);
switchInt(const <T as std::mem::SizedTypeProperties>::IS_ZST) -> [0: bb6, otherwise: bb7];
}
bb6: {
StorageLive(_14);
StorageLive(_13);
_13 = copy _12 as *const T (Transmute);
_14 = Offset(copy _13, const -1_isize);
StorageDead(_13);
_12 = NonNull::<T> { pointer: copy _14 };
StorageDead(_14);
goto -> bb7;
}
bb7: {
(*_11) = move _12;
_15 = copy (*_11);
goto -> bb9;
}
bb8: {
StorageLive(_16);
_16 = &raw mut ((*_1).1: *mut T);
_17 = copy _16 as *mut usize (PtrToPtr);
StorageDead(_16);
StorageLive(_19);
StorageLive(_18);
_18 = copy (*_17);
_19 = SubUnchecked(move _18, const 1_usize);
StorageDead(_18);
(*_17) = move _19;
StorageDead(_19);
_15 = copy ((*_1).0: std::ptr::NonNull<T>);
goto -> bb9;
}
bb9: {
StorageDead(_12);
StorageDead(_11);
StorageDead(_17);
// DBG: _24 = &_15;
StorageLive(_20);
_20 = copy _15 as *mut T (Transmute);
_21 = &mut (*_20);
StorageDead(_20);
StorageDead(_24);
StorageDead(_15);
_0 = Option::<&mut T>::Some(copy _21);
goto -> bb11;
}
bb10: {
_0 = const {transmute(0x0000000000000000): Option<&mut T>};
goto -> bb11;
}
bb11: {
StorageDead(_7);
StorageDead(_21);
StorageDead(_2);
StorageDead(_3);
StorageDead(_8);
StorageDead(_9);
return;
}
}

View File

@@ -10,6 +10,9 @@ fn slice_iter_next(_1: &mut std::slice::Iter<'_, T>) -> Option<&T> {
let mut _10: std::ptr::NonNull<T>;
let mut _12: usize;
let _14: &T;
let mut _15: &std::ptr::NonNull<T>;
let mut _16: &std::ptr::NonNull<T>;
let mut _17: &std::ptr::NonNull<T>;
scope 2 {
let _3: *const T;
scope 3 {
@@ -67,7 +70,11 @@ fn slice_iter_next(_1: &mut std::slice::Iter<'_, T>) -> Option<&T> {
bb1: {
StorageLive(_7);
StorageLive(_15);
// DBG: _15 = &_2;
StorageLive(_16);
_4 = copy _3 as std::ptr::NonNull<T> (Transmute);
// DBG: _16 = &_4;
StorageLive(_5);
_5 = copy _2 as *mut T (Transmute);
StorageLive(_6);
@@ -79,6 +86,8 @@ fn slice_iter_next(_1: &mut std::slice::Iter<'_, T>) -> Option<&T> {
}
bb2: {
StorageDead(_16);
StorageDead(_15);
StorageDead(_7);
StorageLive(_10);
StorageLive(_9);
@@ -94,6 +103,8 @@ fn slice_iter_next(_1: &mut std::slice::Iter<'_, T>) -> Option<&T> {
}
bb3: {
StorageDead(_16);
StorageDead(_15);
_0 = const {transmute(0x0000000000000000): Option<&T>};
StorageDead(_7);
goto -> bb8;
@@ -116,10 +127,13 @@ fn slice_iter_next(_1: &mut std::slice::Iter<'_, T>) -> Option<&T> {
}
bb7: {
StorageLive(_17);
// DBG: _17 = &_2;
StorageLive(_13);
_13 = copy _2 as *const T (Transmute);
_14 = &(*_13);
StorageDead(_13);
StorageDead(_17);
_0 = Option::<&T>::Some(copy _14);
goto -> bb8;
}

View File

@@ -10,6 +10,9 @@ fn slice_iter_next(_1: &mut std::slice::Iter<'_, T>) -> Option<&T> {
let mut _10: std::ptr::NonNull<T>;
let mut _12: usize;
let _14: &T;
let mut _15: &std::ptr::NonNull<T>;
let mut _16: &std::ptr::NonNull<T>;
let mut _17: &std::ptr::NonNull<T>;
scope 2 {
let _3: *const T;
scope 3 {
@@ -67,7 +70,11 @@ fn slice_iter_next(_1: &mut std::slice::Iter<'_, T>) -> Option<&T> {
bb1: {
StorageLive(_7);
StorageLive(_15);
// DBG: _15 = &_2;
StorageLive(_16);
_4 = copy _3 as std::ptr::NonNull<T> (Transmute);
// DBG: _16 = &_4;
StorageLive(_5);
_5 = copy _2 as *mut T (Transmute);
StorageLive(_6);
@@ -79,6 +86,8 @@ fn slice_iter_next(_1: &mut std::slice::Iter<'_, T>) -> Option<&T> {
}
bb2: {
StorageDead(_16);
StorageDead(_15);
StorageDead(_7);
StorageLive(_10);
StorageLive(_9);
@@ -94,6 +103,8 @@ fn slice_iter_next(_1: &mut std::slice::Iter<'_, T>) -> Option<&T> {
}
bb3: {
StorageDead(_16);
StorageDead(_15);
_0 = const {transmute(0x0000000000000000): Option<&T>};
StorageDead(_7);
goto -> bb8;
@@ -116,10 +127,13 @@ fn slice_iter_next(_1: &mut std::slice::Iter<'_, T>) -> Option<&T> {
}
bb7: {
StorageLive(_17);
// DBG: _17 = &_2;
StorageLive(_13);
_13 = copy _2 as *const T (Transmute);
_14 = &(*_13);
StorageDead(_13);
StorageDead(_17);
_0 = Option::<&T>::Some(copy _14);
goto -> bb8;
}

View File

@@ -9,7 +9,7 @@ fn outer(_1: u8) -> u8 {
}
bb0: {
_2 = &_1; // scope 0 at $DIR/spans.rs:11:11: 11:13
// DBG: _2 = &_1;
_0 = copy _1; // scope 1 at $DIR/spans.rs:15:5: 15:7
return; // scope 0 at $DIR/spans.rs:12:2: 12:2
}

View File

@@ -9,7 +9,7 @@ fn outer(_1: u8) -> u8 {
}
bb0: {
_2 = &_1; // scope 0 at $DIR/spans.rs:11:11: 11:13
// DBG: _2 = &_1;
_0 = copy _1; // scope 1 at $DIR/spans.rs:15:5: 15:7
return; // scope 0 at $DIR/spans.rs:12:2: 12:2
}

View File

@@ -11,7 +11,9 @@ fn vec_deref_to_slice(_1: &Vec<u8>) -> &[u8] {
let mut _4: usize;
scope 3 (inlined Vec::<u8>::as_ptr) {
debug self => _1;
let mut _6: &alloc::raw_vec::RawVec<u8>;
scope 4 (inlined alloc::raw_vec::RawVec::<u8>::ptr) {
let mut _7: &alloc::raw_vec::RawVecInner;
scope 5 (inlined alloc::raw_vec::RawVecInner::ptr::<u8>) {
scope 6 (inlined alloc::raw_vec::RawVecInner::non_null::<u8>) {
let mut _2: std::ptr::NonNull<u8>;
@@ -55,8 +57,14 @@ fn vec_deref_to_slice(_1: &Vec<u8>) -> &[u8] {
bb0: {
StorageLive(_2);
StorageLive(_3);
StorageLive(_6);
// DBG: _6 = &((*_1).0: alloc::raw_vec::RawVec<u8>);
StorageLive(_7);
// DBG: _7 = &(((*_1).0: alloc::raw_vec::RawVec<u8>).0: alloc::raw_vec::RawVecInner);
_2 = copy (((((*_1).0: alloc::raw_vec::RawVec<u8>).0: alloc::raw_vec::RawVecInner).0: std::ptr::Unique<u8>).0: std::ptr::NonNull<u8>);
StorageDead(_7);
_3 = copy _2 as *const u8 (Transmute);
StorageDead(_6);
StorageLive(_4);
_4 = copy ((*_1).1: usize);
StorageLive(_5);

View File

@@ -11,7 +11,9 @@ fn vec_deref_to_slice(_1: &Vec<u8>) -> &[u8] {
let mut _4: usize;
scope 3 (inlined Vec::<u8>::as_ptr) {
debug self => _1;
let mut _6: &alloc::raw_vec::RawVec<u8>;
scope 4 (inlined alloc::raw_vec::RawVec::<u8>::ptr) {
let mut _7: &alloc::raw_vec::RawVecInner;
scope 5 (inlined alloc::raw_vec::RawVecInner::ptr::<u8>) {
scope 6 (inlined alloc::raw_vec::RawVecInner::non_null::<u8>) {
let mut _2: std::ptr::NonNull<u8>;
@@ -55,8 +57,14 @@ fn vec_deref_to_slice(_1: &Vec<u8>) -> &[u8] {
bb0: {
StorageLive(_2);
StorageLive(_3);
StorageLive(_6);
// DBG: _6 = &((*_1).0: alloc::raw_vec::RawVec<u8>);
StorageLive(_7);
// DBG: _7 = &(((*_1).0: alloc::raw_vec::RawVec<u8>).0: alloc::raw_vec::RawVecInner);
_2 = copy (((((*_1).0: alloc::raw_vec::RawVec<u8>).0: alloc::raw_vec::RawVecInner).0: std::ptr::Unique<u8>).0: std::ptr::NonNull<u8>);
StorageDead(_7);
_3 = copy _2 as *const u8 (Transmute);
StorageDead(_6);
StorageLive(_4);
_4 = copy ((*_1).1: usize);
StorageLive(_5);