aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2013-01-24 11:53:01 +0000
committerChandler Carruth <chandlerc@gmail.com>2013-01-24 11:53:01 +0000
commit681add7a63b44249fd0fd38e63f10f18d6e99e38 (patch)
tree19fb84b5126a5602e0047286653fe3f20d913ff7 /lib/Transforms
parent2c107a80206056cdc8c2c7cb715ff9e1db64add9 (diff)
downloadexternal_llvm-681add7a63b44249fd0fd38e63f10f18d6e99e38.zip
external_llvm-681add7a63b44249fd0fd38e63f10f18d6e99e38.tar.gz
external_llvm-681add7a63b44249fd0fd38e63f10f18d6e99e38.tar.bz2
Switch the constant expression speculation cost evaluation away from
a cost fuction that seems both a bit ad-hoc and also poorly suited to evaluating constant expressions. Notably, it is missing any support for trivial expressions such as 'inttoptr'. I could fix this routine, but it isn't clear to me all of the constraints its other users are operating under. The core protection that seems relevant here is avoiding the formation of a select instruction wich a further chain of select operations in a constant expression operand. Just explicitly encode that constraint. Also, update the comments and organization here to make it clear where this needs to go -- this should be driven off of real cost measurements which take into account the number of constants expressions and the depth of the constant expression tree. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173340 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/Utils/SimplifyCFG.cpp21
1 files changed, 14 insertions, 7 deletions
diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp
index 0e38287..7ec3165 100644
--- a/lib/Transforms/Utils/SimplifyCFG.cpp
+++ b/lib/Transforms/Utils/SimplifyCFG.cpp
@@ -1433,21 +1433,28 @@ static bool SpeculativelyExecuteBB(BranchInst *BI, BasicBlock *ThenBB) {
continue;
HaveRewritablePHIs = true;
-
- // Check for safety.
ConstantExpr *CE = dyn_cast<ConstantExpr>(ThenV);
if (!CE)
- continue; // Known safe.
+ continue; // Known safe and cheap.
+
+ if (!isSafeToSpeculativelyExecute(CE))
+ return false;
+
+ // Don't speculate into a select with a constant select expression operand.
+ // FIXME: This should really be a cost metric, but our cost model doesn't
+ // accurately model the expense of select.
+ if (Operator::getOpcode(CE) == Instruction::Select)
+ return false;
// An unfolded ConstantExpr could end up getting expanded into
// Instructions. Don't speculate this and another instruction at
// the same time.
+ // FIXME: This is strange because provided we haven't already hit the cost
+ // of 1, this code will speculate an arbitrary number of complex constant
+ // expression PHI nodes. Also, this doesn't account for how complex the
+ // constant expression is.
if (SpeculationCost > 0)
return false;
- if (!isSafeToSpeculativelyExecute(CE))
- return false;
- if (ComputeSpeculationCost(CE) > PHINodeFoldingThreshold)
- return false;
}
// If there are no PHIs to process, bail early. This helps ensure idempotence