precondition_check functions can survive MonoReachable #131578
Labels
A-codegen
Area: Code generation
C-bug
Category: This is a bug.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
The motivating example is this: https://rust.godbolt.org/z/dGe6EMrEz, the IR of the function at the top which is
IndexRange as SliceIndex<[T]>>::get_unchecked_mut
contains a precondition check. The fact that the call is in a block without any predecessors does not make this unimportant, #121421 is not working here.The MIR for the function in question looks like this:
The MIR optimization pipeline has helpfully hoisted the assignment of
UbChecks()
to a local then consulted that twice. But mono-reachable traversal onlky understands that the very specific pattern inbb0
, and does not figure out thatbb3
is also a switch on a constant that it could handle.Post-mono GVN is really the way out of this. We'd love to have
switchInt(const true)
orswitchInt(const false)
in the MIR. Codegen could figure that out easily. I'm going to see what it takes to paper another hack over this instead, on the off-chance that it is highly effective and easy to do.The text was updated successfully, but these errors were encountered: