diff options
| author | Guozhi Wei <carrot@google.com> | 2016-05-19 21:07:01 +0000 |
|---|---|---|
| committer | Guozhi Wei <carrot@google.com> | 2016-05-19 21:07:01 +0000 |
| commit | b1d37199ccfad5654d587cb9a81bcfde613315b4 (patch) | |
| tree | 0fc5dd31d440f74dfcbafc103c5649288309d355 | |
| parent | cfe75fa72e8460fb7bd7c131240f874f50767fee (diff) | |
| download | bcm5719-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
| -rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp | 7 | ||||
| -rw-r--r-- | llvm/test/Transforms/InstCombine/pr27703.ll | 20 |
2 files changed, 27 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 diff --git a/llvm/test/Transforms/InstCombine/pr27703.ll b/llvm/test/Transforms/InstCombine/pr27703.ll new file mode 100644 index 00000000000..2981afe171e --- /dev/null +++ b/llvm/test/Transforms/InstCombine/pr27703.ll @@ -0,0 +1,20 @@ +; RUN: opt < %s -instcombine -S | FileCheck %s + +define void @mem() { +bb: + br label %bb6 + +bb6: + %.0 = phi i8** [ undef, %bb ], [ %t2, %bb6 ] + %tmp = load i8*, i8** %.0, align 8 + %bc = bitcast i8* %tmp to i8** + %t1 = load i8*, i8** %bc, align 8 + %t2 = bitcast i8* %t1 to i8** + br label %bb6 + +bb206: + ret void +; CHECK: phi +; CHECK: bitcast +; CHECK: load +} |

