Swap exit condition operands if it works.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41817 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Devang Patel 2007-09-10 23:34:06 +00:00
parent 569f7371d6
commit 0c0f7c935b

View File

@ -328,14 +328,24 @@ void LoopIndexSplit::findLoopConditionals() {
if (!CI) if (!CI)
return; return;
// FIXME // FIXME
if (CI->getPredicate() == ICmpInst::ICMP_EQ
|| CI->getPredicate() == ICmpInst::ICMP_NE)
return;
if (CI->getPredicate() == ICmpInst::ICMP_SGT if (CI->getPredicate() == ICmpInst::ICMP_SGT
|| CI->getPredicate() == ICmpInst::ICMP_UGT || CI->getPredicate() == ICmpInst::ICMP_UGT
|| CI->getPredicate() == ICmpInst::ICMP_SGE || CI->getPredicate() == ICmpInst::ICMP_SGE
|| CI->getPredicate() == ICmpInst::ICMP_UGE || CI->getPredicate() == ICmpInst::ICMP_UGE) {
|| CI->getPredicate() == ICmpInst::ICMP_EQ
|| CI->getPredicate() == ICmpInst::ICMP_NE) BasicBlock *FirstSuccessor = BR->getSuccessor(0);
return; // splitLoop() is expecting LT/LE as exit condition predicate.
// Swap operands here if possible to meet this requirement.
if (!L->contains(FirstSuccessor))
CI->swapOperands();
else
return;
}
ExitCondition = CI; ExitCondition = CI;