summaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2011-08-15 23:55:52 +0000
committerEli Friedman <eli.friedman@gmail.com>2011-08-15 23:55:52 +0000
commitfd06b3cfa184a357f5f37625f50be104c8573fc3 (patch)
tree23f902666a4dab59f264beb91511c0ce2d3bb9b3 /lib/Transforms/Utils
parent02e603f87a9745768a05411e16c47c558d2cbd6e (diff)
downloadllvm-fd06b3cfa184a357f5f37625f50be104c8573fc3.tar.gz
llvm-fd06b3cfa184a357f5f37625f50be104c8573fc3.tar.bz2
llvm-fd06b3cfa184a357f5f37625f50be104c8573fc3.tar.xz
Add comments and test for atomic load/store and mem2reg.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137690 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils')
-rw-r--r--lib/Transforms/Utils/PromoteMemoryToRegister.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Transforms/Utils/PromoteMemoryToRegister.cpp b/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
index e5a00f4e97..db3e942513 100644
--- a/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
+++ b/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
@@ -86,11 +86,15 @@ bool llvm::isAllocaPromotable(const AllocaInst *AI) {
UI != UE; ++UI) { // Loop over all of the uses of the alloca
const User *U = *UI;
if (const LoadInst *LI = dyn_cast<LoadInst>(U)) {
+ // Note that atomic loads can be transformed; atomic semantics do
+ // not have any meaning for a local alloca.
if (LI->isVolatile())
return false;
} else if (const StoreInst *SI = dyn_cast<StoreInst>(U)) {
if (SI->getOperand(0) == AI)
return false; // Don't allow a store OF the AI, only INTO the AI.
+ // Note that atomic stores can be transformed; atomic semantics do
+ // not have any meaning for a local alloca.
if (SI->isVolatile())
return false;
} else if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(U)) {