aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/GVN.cpp
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2007-11-26 02:26:36 +0000
committerOwen Anderson <resistor@mac.com>2007-11-26 02:26:36 +0000
commit00a6d1448d27b5140b911caf2eca9585abdae5c8 (patch)
treed82b6247c7d85f350e2dae27128387261a2d1a32 /lib/Transforms/Scalar/GVN.cpp
parentfd94dd58ffef1be3597ef8cb64f3b1d476d7d5ec (diff)
Allow GVN to eliminate read-only function calls when it can detect that they are redundant.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44323 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/GVN.cpp')
-rw-r--r--lib/Transforms/Scalar/GVN.cpp19
1 files changed, 18 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/GVN.cpp b/lib/Transforms/Scalar/GVN.cpp
index 7cbd617a2e..11fa336c7b 100644
--- a/lib/Transforms/Scalar/GVN.cpp
+++ b/lib/Transforms/Scalar/GVN.cpp
@@ -476,7 +476,8 @@ uint32_t ValueTable::lookup_or_add(Value* V) {
if (CallInst* C = dyn_cast<CallInst>(V)) {
if (C->getCalledFunction() &&
- AA->doesNotAccessMemory(C->getCalledFunction())) {
+ (AA->doesNotAccessMemory(C->getCalledFunction()) ||
+ AA->onlyReadsMemory(C->getCalledFunction()))) {
Expression e = create_expression(C);
DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
@@ -1038,6 +1039,22 @@ bool GVN::processInstruction(Instruction* I,
} else if (currAvail.test(num)) {
Value* repl = find_leader(currAvail, num);
+ if (CallInst* CI = dyn_cast<CallInst>(I)) {
+ AliasAnalysis& AA = getAnalysis<AliasAnalysis>();
+ if (CI->getCalledFunction() &&
+ !AA.doesNotAccessMemory(CI->getCalledFunction())) {
+ MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>();
+ if (MD.getDependency(CI) != MD.getDependency(cast<CallInst>(repl))) {
+ // There must be an intervening may-alias store, so nothing from
+ // this point on will be able to be replaced with the preceding call
+ currAvail.erase(repl);
+ currAvail.insert(I);
+
+ return false;
+ }
+ }
+ }
+
VN.erase(I);
I->replaceAllUsesWith(repl);
toErase.push_back(I);