aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2012-01-25 08:27:40 +0000
committerNick Lewycky <nicholas@mxc.ca>2012-01-25 08:27:40 +0000
commit6977e79526a6342b9408c358bca21c3b0c7e61d5 (patch)
treebbd83da702e4e35ee06a813dd4aabb23c9a09a22 /lib/Analysis
parent8f7fe08fee403994a50bb3c07384453c0d046558 (diff)
downloadexternal_llvm-6977e79526a6342b9408c358bca21c3b0c7e61d5.zip
external_llvm-6977e79526a6342b9408c358bca21c3b0c7e61d5.tar.gz
external_llvm-6977e79526a6342b9408c358bca21c3b0c7e61d5.tar.bz2
Support pointer comparisons against constants, when looking at the inline-cost
savings from a pointer argument becoming an alloca. Sometimes callees will even compare a pointer to null and then branch to an otherwise unreachable block! Detect these cases and compute the number of saved instructions, instead of bailing out and reporting no savings. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148941 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r--lib/Analysis/InlineCost.cpp56
1 files changed, 55 insertions, 1 deletions
diff --git a/lib/Analysis/InlineCost.cpp b/lib/Analysis/InlineCost.cpp
index fb5861c..94b14be 100644
--- a/lib/Analysis/InlineCost.cpp
+++ b/lib/Analysis/InlineCost.cpp
@@ -222,6 +222,11 @@ unsigned CodeMetrics::CountCodeReductionForAlloca(Value *V) {
if (!V->getType()->isPointerTy()) return 0; // Not a pointer
unsigned Reduction = 0;
+ // Looking at ICmpInsts will never abort the analysis and return zero, and
+ // analyzing them is expensive, so save them for last so that we don't do
+ // extra work that we end up throwing out.
+ SmallVector<ICmpInst *, 4> ICmpInsts;
+
SmallVector<Value *, 4> Worklist;
Worklist.push_back(V);
do {
@@ -271,10 +276,14 @@ unsigned CodeMetrics::CountCodeReductionForAlloca(Value *V) {
case Intrinsic::memmove:
case Intrinsic::lifetime_start:
case Intrinsic::lifetime_end:
- // SROA can usually chew through these intrinsics.
+ // SROA can usually chew through these intrinsics.
Reduction += InlineConstants::InstrCost;
break;
}
+ } else if (ICmpInst *ICI = dyn_cast<ICmpInst>(I)) {
+ if (!isa<Constant>(ICI->getOperand(1)))
+ return 0;
+ ICmpInsts.push_back(ICI);
} else {
// If there is some other strange instruction, we're not going to be
// able to do much if we inline this.
@@ -283,6 +292,51 @@ unsigned CodeMetrics::CountCodeReductionForAlloca(Value *V) {
}
} while (!Worklist.empty());
+ while (!ICmpInsts.empty()) {
+ ICmpInst *ICI = ICmpInsts.pop_back_val();
+
+ // An icmp pred (alloca, C) becomes true if the predicate is true when
+ // equal and false otherwise.
+ bool Result = ICI->isTrueWhenEqual();
+
+ SmallVector<Instruction *, 4> Worklist;
+ Worklist.push_back(ICI);
+ do {
+ Instruction *U = Worklist.pop_back_val();
+ Reduction += InlineConstants::InstrCost;
+ for (Value::use_iterator UI = U->use_begin(), UE = U->use_end();
+ UI != UE; ++UI) {
+ Instruction *I = dyn_cast<Instruction>(*UI);
+ if (!I || I->mayHaveSideEffects()) continue;
+ if (I->getNumOperands() == 1)
+ Worklist.push_back(I);
+ if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
+ // If BO produces the same value as U, then the other operand is
+ // irrelevant and we can put it into the Worklist to continue
+ // deleting dead instructions. If BO produces the same value as the
+ // other operand, we can delete BO but that's it.
+ if (Result == true) {
+ if (BO->getOpcode() == Instruction::Or)
+ Worklist.push_back(I);
+ if (BO->getOpcode() == Instruction::And)
+ Reduction += InlineConstants::InstrCost;
+ } else {
+ if (BO->getOpcode() == Instruction::Or ||
+ BO->getOpcode() == Instruction::Xor)
+ Reduction += InlineConstants::InstrCost;
+ if (BO->getOpcode() == Instruction::And)
+ Worklist.push_back(I);
+ }
+ }
+ if (BranchInst *BI = dyn_cast<BranchInst>(I)) {
+ BasicBlock *BB = BI->getSuccessor(Result ? 0 : 1);
+ if (BB->getSinglePredecessor())
+ Reduction += InlineConstants::InstrCost * BB->size();
+ }
+ }
+ } while (!Worklist.empty());
+ }
+
return Reduction;
}