<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/133344>133344</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
`(trunc nuw A) == (trunc nuw B)` should not take multiple `xor`s [InstCombine]
</td>
</tr>
<tr>
<th>Labels</th>
<td>
new issue
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
scottmcm
</td>
</tr>
</table>
<pre>
Take this input IR:
```llvm
define noundef i1 @src(i8 noundef %a, i8 noundef %b) local_unnamed_addr {
%at = trunc nuw i8 %a to i1
%bt = trunc nuw i8 %b to i1
%eq = icmp eq i1 %at, %bt
ret i1 %eq
}
```
(That's the kind of thing you might see from looking at `bool`s in `Option`s or `union`s in Rust.)
Today, it "optimizes" to a lossy truncation and a couple of xors:
```llvm
define noundef i1 @src(i8 noundef %a, i8 noundef %b) local_unnamed_addr #0 {
%1 = xor i8 %b, %a
%2 = trunc i8 %1 to i1
%eq = xor i1 %2, true
ret i1 %eq
}
```
Now, if the `nuw`s weren't there that would make sense, but *with* the `nuw`s it would be *much* better to simplify it to
```llvm
define noundef i1 @tgt(i8 noundef %a, i8 noundef %b) local_unnamed_addr {
%eq = icmp eq i8 %a, %b
ret i1 %eq
}
```
instead. Alive2 proof: <https://alive2.llvm.org/ce/z/X3Uh23>
Notably, that *does* happen already if you truncate to something that's *not* `i1`, like <https://alive2.llvm.org/ce/z/H-QrGZ>
```llvm
define noundef i1 @src(i8 noundef %a, i8 noundef %b) local_unnamed_addr {
%at = trunc nuw i8 %a to i2
%bt = trunc nuw i8 %b to i2
%eq = icmp eq i2 %at, %bt
ret i1 %eq
}
```
So hopefully this is just a matter of disabling an `i1` special case in InstCombine when `nuw` is there.
cc @nikic -- I think this might be part of the enduring problem of [`Option<bool>::eq` being terrible](https://rust.godbolt.org/z/hPn8TvvYP) you've mentioned before.
</pre>
<img width="1" height="1" alt="" src="http://email.email.llvm.org/o/eJzMVk1v4zYQ_TX0ZRBDIm3LPuigJOt2L-12mwJtLwtSGllcU6TCD3u9v74Y2s4miy2aFkVRIEAicjicee_NY2QIemcRa7a8Zcv7mUxxcL4OrYtxbMeZct2pfpB7hDjoANpOKcLb90w0rGjYqjj_GHMYWdF02GuLYF2yHfagS2CLIviW8bVePy0zvpSM38HLJcX4BoxrpfmQrJUjdh9k13lg1S0rGsinIjBxD9En24JNR8pAyxAd6PIapb4dpV5G4WOO0u04AT7mUukCqivnyHEe42UHH6nd6v550_Q3Xz8MdKoKEAeEvbYduJ6wsjs4uQSj3g0RAiL03o1gnNvTFrWyKpRzhq0KgpU-f5yidjYvOE8LyV6_tYX3KcQ54xu6tmgeXCdPGcUIjHM3RT3qzxgY59SoBONCOJ1RkJQWpO1AQuvSZJBq_OR8-A9p5KJ4zmWZ4f_k_JWeC_KSAhhf8mckniPKbxKYM2SKOGWIPuErqSuaH9wxN9Bn7tiqsOmY0T6iR8t4FWnDk_RlhKNLpoORRiGgDUhHVSL0m6OOA-PN12n09ZBCihpTm6MUxoieugl6nIzuTxQZ3WuZiLv4Lw3U10OwfkqVzxfNX8OobYgouzlAY_QBOUzeuZ6JBpi4G2Kcssb4lvGtzAFzam3u_I7xbYuMbz8zvv1V_DJwwcSbKzFRKpPlnaFnvOkcabuBQU4TWpDGo-xOxB1N2UXmmEF1I57nL15Hk_HGukjH2arQJVXO78DoPf6tKr-_-cl_9_ulyv-R9fFXWR__M9b5P7O-ovnZweAm7JMxp8vzEOBjChEkjDKL3PXQ6SCVyaZnn_CHMGGrpYFWBiR3e2tDvHOjIhCPA9ovc0RJ8xjOz7e2LUFr9V63cHMDb7PZ7s_3n91WIUzSx7MRI6Dtkqf7J--UwZHW6bV7Mlxxl41YvCERiAYf6VaFWULovVYG2fKe8fVLpXgy5J3rlDPxIhVSyfDOrh8Oh9_eEasnlxivDggjWroLyQx6d25m1tWi24iNnGFdVgtRluvVqpoNdV_2Qsiq71tRyKos1xVWAjdVteRiXbWrma55wZeF4BUXolpUc2zVpuy6tShVp1bI2aLAUWrzpOOZDiFhXQohFouZkQpNyG8-5xaPkHcZ5_QvgK_p0I1Ku8AWhdEhhi9poo4G6zxB6y86a6hXJu5JVy82bunBIrqHbITWRYjkoGMyUdNDxFbFJ-ezXbLl7TMVUCXJm_ol5jsdh6TmrRsZ3-bRO_-6mbz7iG1kfJtbCYxvL70eav5HAAAA___96LCc">