diff options
author | Quentin Colombet <qcolombet@apple.com> | 2013-07-24 20:20:37 +0000 |
---|---|---|
committer | Quentin Colombet <qcolombet@apple.com> | 2013-07-24 20:20:37 +0000 |
commit | bdab227e53dbcf8a55db85c2641c6eaae680bdde (patch) | |
tree | cae2942df6e7760200923670ae16e370dfc8ef71 /llvm/lib/CodeGen/IfConversion.cpp | |
parent | 8ed8689132a1be0687fd7d938efd70ab047d97e0 (diff) | |
download | bcm5719-llvm-bdab227e53dbcf8a55db85c2641c6eaae680bdde.tar.gz bcm5719-llvm-bdab227e53dbcf8a55db85c2641c6eaae680bdde.zip |
Fix a bug in IfConverter with nested predicates.
Prior to this patch, IfConverter may widen the cases where a sequence of
instructions were executed because of the way it uses nested predicates. This
result in incorrect execution.
For instance, Let A be a basic block that flows conditionally into B and B be a
predicated block.
B can be predicated with A.BrToBPredicate into A iff B.Predicate is less
"permissive" than A.BrToBPredicate, i.e., iff A.BrToBPredicate subsumes
B.Predicate.
The IfConverter was checking the opposite: B.Predicate subsumes
A.BrToBPredicate.
<rdar://problem/14379453>
llvm-svn: 187071
Diffstat (limited to 'llvm/lib/CodeGen/IfConversion.cpp')
-rw-r--r-- | llvm/lib/CodeGen/IfConversion.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/IfConversion.cpp b/llvm/lib/CodeGen/IfConversion.cpp index f4485d5d9a2..1ae7e3b5ca6 100644 --- a/llvm/lib/CodeGen/IfConversion.cpp +++ b/llvm/lib/CodeGen/IfConversion.cpp @@ -720,9 +720,9 @@ bool IfConverter::FeasibilityAnalysis(BBInfo &BBI, if (BBI.IsDone || BBI.IsUnpredicable) return false; - // If it is already predicated, check if its predicate subsumes the new - // predicate. - if (BBI.Predicate.size() && !TII->SubsumesPredicate(BBI.Predicate, Pred)) + // If it is already predicated, check if the new predicate subsumes + // its predicate. + if (BBI.Predicate.size() && !TII->SubsumesPredicate(Pred, BBI.Predicate)) return false; if (BBI.BrCond.size()) { |