aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/LoadValueNumbering.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-09-08 18:13:58 +0000
committerChris Lattner <sabre@nondot.org>2003-09-08 18:13:58 +0000
commitbd70a31c51267a3ef4840877bdc0b98f590e94a6 (patch)
tree2df571e0fb9de6a87ca4e7b5c4bb3c1cb46379bd /lib/Analysis/LoadValueNumbering.cpp
parent09b47f91bdf94caaabbc14048c833e84a695dc06 (diff)
Fix bug: RLE-Preserve-Volatile.ll
Volatile loads and stores must not be value numbered git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8398 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/LoadValueNumbering.cpp')
-rw-r--r--lib/Analysis/LoadValueNumbering.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/Analysis/LoadValueNumbering.cpp b/lib/Analysis/LoadValueNumbering.cpp
index c47010c383..b433de3d53 100644
--- a/lib/Analysis/LoadValueNumbering.cpp
+++ b/lib/Analysis/LoadValueNumbering.cpp
@@ -90,6 +90,10 @@ void LoadVN::getEqualNumberNodes(Value *V,
getAnalysis<AliasAnalysis>().getMustAliases(V, RetVals);
if (LoadInst *LI = dyn_cast<LoadInst>(V)) {
+ // Volatile loads cannot be replaced with the value of other loads.
+ if (LI->isVolatile())
+ return getAnalysis<ValueNumbering>().getEqualNumberNodes(V, RetVals);
+
// If we have a load instruction, find all of the load and store
// instructions that use the same source operand. We implement this
// recursively, because there could be a load of a load of a load that are
@@ -119,10 +123,10 @@ void LoadVN::getEqualNumberNodes(Value *V,
UI != UE; ++UI)
if (LoadInst *Cand = dyn_cast<LoadInst>(*UI)) {// Is a load of source?
if (Cand->getParent()->getParent() == F && // In the same function?
- Cand != LI) // Not LI itself?
+ Cand != LI && !Cand->isVolatile()) // Not LI itself?
CandidateLoads.push_back(Cand); // Got one...
} else if (StoreInst *Cand = dyn_cast<StoreInst>(*UI)) {
- if (Cand->getParent()->getParent() == F &&
+ if (Cand->getParent()->getParent() == F && !Cand->isVolatile() &&
Cand->getOperand(1) == Source) // It's a store THROUGH the ptr...
CandidateStores.push_back(Cand);
}