-
Notifications
You must be signed in to change notification settings - Fork 13.4k
[mir-opt] Run SimplifyLocals to a fixedpoint and handle most rvalues #70755
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
0e0a71a
7c0802b
de3cf6e
da8f3bb
9666d31
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -368,21 +368,39 @@ impl<'a, 'tcx> Visitor<'tcx> for DeclMarker<'a, 'tcx> { | |
if location.statement_index != block.statements.len() { | ||
let stmt = &block.statements[location.statement_index]; | ||
|
||
fn can_skip_constant(c: &ty::Const<'tcx>) -> bool { | ||
// Keep assignments from unevaluated constants around, since the | ||
// evaluation may report errors, even if the use of the constant | ||
// is dead code. | ||
!matches!(c.val, ty::ConstKind::Unevaluated(..)) | ||
} | ||
|
||
fn can_skip_operand(o: &Operand<'_>) -> bool { | ||
match o { | ||
Operand::Copy(p) | Operand::Move(p) => !p.is_indirect(), | ||
Operand::Constant(c) => can_skip_constant(c.literal), | ||
} | ||
} | ||
|
||
if let StatementKind::Assign(box (dest, rvalue)) = &stmt.kind { | ||
if !dest.is_indirect() && dest.local == *local { | ||
if let Rvalue::Use(Operand::Constant(c)) = rvalue { | ||
match c.literal.val { | ||
// Keep assignments from unevaluated constants around, since the | ||
// evaluation may report errors, even if the use of the constant | ||
// is dead code. | ||
ty::ConstKind::Unevaluated(..) => {} | ||
_ => { | ||
trace!("skipping store of const value {:?} to {:?}", c, dest); | ||
return; | ||
} | ||
let can_skip = match rvalue { | ||
Rvalue::Use(op) => can_skip_operand(op), | ||
Rvalue::Discriminant(_) => true, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think eliminating a read of an indirect place's discriminant is ok in the same way removing a read of its address is. Is there a situation you're thinking of where that wouldn't be true? |
||
Rvalue::BinaryOp(_, l, r) | Rvalue::CheckedBinaryOp(_, l, r) => { | ||
can_skip_operand(l) && can_skip_operand(r) | ||
} | ||
} else if let Rvalue::Discriminant(d) = rvalue { | ||
trace!("skipping store of discriminant value {:?} to {:?}", d, dest); | ||
Rvalue::Repeat(op, c) => can_skip_operand(op) && can_skip_constant(c), | ||
Rvalue::AddressOf(_, _) => true, | ||
Rvalue::Len(_) => true, | ||
Rvalue::UnaryOp(_, op) => can_skip_operand(op), | ||
Rvalue::Aggregate(_, operands) => operands.iter().all(can_skip_operand), | ||
|
||
_ => false, | ||
}; | ||
|
||
if can_skip { | ||
trace!("skipping store of {:?} to {:?}", rvalue, dest); | ||
return; | ||
} | ||
} | ||
|
Uh oh!
There was an error while loading. Please reload this page.