summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
diff options
context:
space:
mode:
authorGuozhi Wei <carrot@google.com>2016-05-19 21:07:01 +0000
committerGuozhi Wei <carrot@google.com>2016-05-19 21:07:01 +0000
commitb1d37199ccfad5654d587cb9a81bcfde613315b4 (patch)
tree0fc5dd31d440f74dfcbafc103c5649288309d355 /llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
parentcfe75fa72e8460fb7bd7c131240f874f50767fee (diff)
downloadbcm5719-llvm-b1d37199ccfad5654d587cb9a81bcfde613315b4.tar.gz
bcm5719-llvm-b1d37199ccfad5654d587cb9a81bcfde613315b4.zip
[InstCombine] Avoid combining the bitcast of a var that is used as both address and result of load instructions
This patch fixes https://llvm.org/bugs/show_bug.cgi?id=27703. If there is a sequence of one or more load instructions, each loaded value is used as address of later load instruction, bitcast is necessary to change the value type, don't optimize it. llvm-svn: 270135
Diffstat (limited to 'llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp')
-rw-r--r--llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
index 2327ba4995c..80b138e8c36 100644
--- a/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
+++ b/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
@@ -1820,6 +1820,13 @@ Instruction *InstCombiner::optimizeBitCastFromPhi(CastInst &CI, PHINode *PN) {
auto *LI = dyn_cast<LoadInst>(IncValue);
if (LI) {
+ // If there is a sequence of one or more load instructions, each loaded
+ // value is used as address of later load instruction, bitcast is
+ // necessary to change the value type, don't optimize it. For
+ // simplicity we give up if the load address comes from another load.
+ Value *Addr = LI->getOperand(0);
+ if (Addr == &CI || isa<LoadInst>(Addr))
+ return nullptr;
if (LI->hasOneUse() && LI->isSimple())
continue;
// If a LoadInst has more than one use, changing the type of loaded
OpenPOWER on IntegriCloud