[PATCH] D105298: [InstSimplify] do not propagate poison from select arm to icmp user
Sanjay Patel via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 1 14:47:27 PDT 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG9eb613b2de31: [InstSimplify] do not propagate poison from select arm to icmp user (authored by spatel).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D105298/new/
https://reviews.llvm.org/D105298
Files:
llvm/lib/Analysis/InstructionSimplify.cpp
llvm/test/Transforms/InstCombine/icmp.ll
Index: llvm/test/Transforms/InstCombine/icmp.ll
===================================================================
--- llvm/test/Transforms/InstCombine/icmp.ll
+++ llvm/test/Transforms/InstCombine/icmp.ll
@@ -3935,7 +3935,7 @@
define i1 @thread_cmp_over_select_with_poison_trueval(i1 %b) {
; CHECK-LABEL: @thread_cmp_over_select_with_poison_trueval(
-; CHECK-NEXT: ret i1 poison
+; CHECK-NEXT: ret i1 false
;
%s = select i1 %b, i32 poison, i32 0
%tobool = icmp ne i32 %s, 0
@@ -3944,7 +3944,7 @@
define i1 @thread_cmp_over_select_with_poison_falseval(i1 %b) {
; CHECK-LABEL: @thread_cmp_over_select_with_poison_falseval(
-; CHECK-NEXT: ret i1 poison
+; CHECK-NEXT: ret i1 true
;
%s = select i1 %b, i32 1, i32 poison
%tobool = icmp ne i32 %s, 0
Index: llvm/lib/Analysis/InstructionSimplify.cpp
===================================================================
--- llvm/lib/Analysis/InstructionSimplify.cpp
+++ llvm/lib/Analysis/InstructionSimplify.cpp
@@ -189,12 +189,15 @@
// If the false value simplified to false, then the result of the compare
// is equal to "Cond && TCmp". This also catches the case when the false
// value simplified to false and the true value to true, returning "Cond".
- if (match(FCmp, m_Zero()))
+ // Folding select to and/or isn't poison-safe in general; impliesPoison
+ // checks whether folding it does not convert a well-defined value into
+ // poison.
+ if (match(FCmp, m_Zero()) && impliesPoison(TCmp, Cond))
if (Value *V = SimplifyAndInst(Cond, TCmp, Q, MaxRecurse))
return V;
// If the true value simplified to true, then the result of the compare
// is equal to "Cond || FCmp".
- if (match(TCmp, m_One()))
+ if (match(TCmp, m_One()) && impliesPoison(FCmp, Cond))
if (Value *V = SimplifyOrInst(Cond, FCmp, Q, MaxRecurse))
return V;
// Finally, if the false value simplified to true and the true value to
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D105298.356020.patch
Type: text/x-patch
Size: 1927 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210701/4b3121ed/attachment.bin>
More information about the llvm-commits
mailing list