diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-08-15 23:55:52 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-08-15 23:55:52 +0000 |
commit | fd06b3cfa184a357f5f37625f50be104c8573fc3 (patch) | |
tree | 23f902666a4dab59f264beb91511c0ce2d3bb9b3 /lib/Transforms/Utils/PromoteMemoryToRegister.cpp | |
parent | 02e603f87a9745768a05411e16c47c558d2cbd6e (diff) | |
download | external_llvm-fd06b3cfa184a357f5f37625f50be104c8573fc3.zip external_llvm-fd06b3cfa184a357f5f37625f50be104c8573fc3.tar.gz external_llvm-fd06b3cfa184a357f5f37625f50be104c8573fc3.tar.bz2 |
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/PromoteMemoryToRegister.cpp')
-rw-r--r-- | lib/Transforms/Utils/PromoteMemoryToRegister.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Transforms/Utils/PromoteMemoryToRegister.cpp b/lib/Transforms/Utils/PromoteMemoryToRegister.cpp index e5a00f4..db3e942 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)) { |