diff options
author | Duncan Sands <baldrick@free.fr> | 2010-12-21 09:09:15 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2010-12-21 09:09:15 +0000 |
commit | 0312a93693abc2eb682b2b101c889959888fd883 (patch) | |
tree | 45f7b817d61255a02f183f3d433e9d199d6f80dd /lib/Analysis/InstructionSimplify.cpp | |
parent | 566edb04b890cebca8f2eefa37af7371a1e756c9 (diff) |
Move checking of the recursion limit into the various Thread methods.
No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122327 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/InstructionSimplify.cpp')
-rw-r--r-- | lib/Analysis/InstructionSimplify.cpp | 56 |
1 files changed, 36 insertions, 20 deletions
diff --git a/lib/Analysis/InstructionSimplify.cpp b/lib/Analysis/InstructionSimplify.cpp index c81d3defef..675a109f0c 100644 --- a/lib/Analysis/InstructionSimplify.cpp +++ b/lib/Analysis/InstructionSimplify.cpp @@ -155,6 +155,10 @@ static Value *ThreadBinOpOverSelect(unsigned Opcode, Value *LHS, Value *RHS, const TargetData *TD, const DominatorTree *DT, unsigned MaxRecurse) { + // Recursion is always used, so bail out at once if we already hit the limit. + if (!MaxRecurse--) + return 0; + SelectInst *SI; if (isa<SelectInst>(LHS)) { SI = cast<SelectInst>(LHS); @@ -225,6 +229,10 @@ static Value *ThreadCmpOverSelect(CmpInst::Predicate Pred, Value *LHS, Value *RHS, const TargetData *TD, const DominatorTree *DT, unsigned MaxRecurse) { + // Recursion is always used, so bail out at once if we already hit the limit. + if (!MaxRecurse--) + return 0; + // Make sure the select is on the LHS. if (!isa<SelectInst>(LHS)) { std::swap(LHS, RHS); @@ -254,6 +262,10 @@ static Value *ThreadCmpOverSelect(CmpInst::Predicate Pred, Value *LHS, static Value *ThreadBinOpOverPHI(unsigned Opcode, Value *LHS, Value *RHS, const TargetData *TD, const DominatorTree *DT, unsigned MaxRecurse) { + // Recursion is always used, so bail out at once if we already hit the limit. + if (!MaxRecurse--) + return 0; + PHINode *PI; if (isa<PHINode>(LHS)) { PI = cast<PHINode>(LHS); @@ -294,6 +306,10 @@ static Value *ThreadBinOpOverPHI(unsigned Opcode, Value *LHS, Value *RHS, static Value *ThreadCmpOverPHI(CmpInst::Predicate Pred, Value *LHS, Value *RHS, const TargetData *TD, const DominatorTree *DT, unsigned MaxRecurse) { + // Recursion is always used, so bail out at once if we already hit the limit. + if (!MaxRecurse--) + return 0; + // Make sure the phi is on the LHS. if (!isa<PHINode>(LHS)) { std::swap(LHS, RHS); @@ -485,16 +501,16 @@ static Value *SimplifyAndInst(Value *Op0, Value *Op1, const TargetData *TD, // If the operation is with the result of a select instruction, check whether // operating on either branch of the select always yields the same value. - if (MaxRecurse && (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))) + if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1)) if (Value *V = ThreadBinOpOverSelect(Instruction::And, Op0, Op1, TD, DT, - MaxRecurse-1)) + MaxRecurse)) return V; // If the operation is with the result of a phi instruction, check whether // operating on all incoming values of the phi always yields the same value. - if (MaxRecurse && (isa<PHINode>(Op0) || isa<PHINode>(Op1))) + if (isa<PHINode>(Op0) || isa<PHINode>(Op1)) if (Value *V = ThreadBinOpOverPHI(Instruction::And, Op0, Op1, TD, DT, - MaxRecurse-1)) + MaxRecurse)) return V; return 0; @@ -559,16 +575,16 @@ static Value *SimplifyOrInst(Value *Op0, Value *Op1, const TargetData *TD, // If the operation is with the result of a select instruction, check whether // operating on either branch of the select always yields the same value. - if (MaxRecurse && (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))) + if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1)) if (Value *V = ThreadBinOpOverSelect(Instruction::Or, Op0, Op1, TD, DT, - MaxRecurse-1)) + MaxRecurse)) return V; // If the operation is with the result of a phi instruction, check whether // operating on all incoming values of the phi always yields the same value. - if (MaxRecurse && (isa<PHINode>(Op0) || isa<PHINode>(Op1))) + if (isa<PHINode>(Op0) || isa<PHINode>(Op1)) if (Value *V = ThreadBinOpOverPHI(Instruction::Or, Op0, Op1, TD, DT, - MaxRecurse-1)) + MaxRecurse)) return V; return 0; @@ -700,14 +716,14 @@ static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS, // If the comparison is with the result of a select instruction, check whether // comparing with either branch of the select always yields the same value. - if (MaxRecurse && (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))) - if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, TD, DT, MaxRecurse-1)) + if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS)) + if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, TD, DT, MaxRecurse)) return V; // If the comparison is with the result of a phi instruction, check whether // doing the compare with each incoming phi value yields a common result. - if (MaxRecurse && (isa<PHINode>(LHS) || isa<PHINode>(RHS))) - if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, TD, DT, MaxRecurse-1)) + if (isa<PHINode>(LHS) || isa<PHINode>(RHS)) + if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, TD, DT, MaxRecurse)) return V; return 0; @@ -795,14 +811,14 @@ static Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS, // If the comparison is with the result of a select instruction, check whether // comparing with either branch of the select always yields the same value. - if (MaxRecurse && (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))) - if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, TD, DT, MaxRecurse-1)) + if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS)) + if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, TD, DT, MaxRecurse)) return V; // If the comparison is with the result of a phi instruction, check whether // doing the compare with each incoming phi value yields a common result. - if (MaxRecurse && (isa<PHINode>(LHS) || isa<PHINode>(RHS))) - if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, TD, DT, MaxRecurse-1)) + if (isa<PHINode>(LHS) || isa<PHINode>(RHS)) + if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, TD, DT, MaxRecurse)) return V; return 0; @@ -947,15 +963,15 @@ static Value *SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS, // If the operation is with the result of a select instruction, check whether // operating on either branch of the select always yields the same value. - if (MaxRecurse && (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))) + if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS)) if (Value *V = ThreadBinOpOverSelect(Opcode, LHS, RHS, TD, DT, - MaxRecurse-1)) + MaxRecurse)) return V; // If the operation is with the result of a phi instruction, check whether // operating on all incoming values of the phi always yields the same value. - if (MaxRecurse && (isa<PHINode>(LHS) || isa<PHINode>(RHS))) - if (Value *V = ThreadBinOpOverPHI(Opcode, LHS, RHS, TD, DT, MaxRecurse-1)) + if (isa<PHINode>(LHS) || isa<PHINode>(RHS)) + if (Value *V = ThreadBinOpOverPHI(Opcode, LHS, RHS, TD, DT, MaxRecurse)) return V; return 0; |