[llvm] 93a1642 - Revert "[NFCI][InstCombine] visitUnreachableInst(): iteratively erase instructions leading to unreachable"
Roman Lebedev via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 2 07:18:20 PDT 2021
Author: Roman Lebedev
Date: 2021-07-02T17:17:47+03:00
New Revision: 93a1642763c9105f0e7d8388dcd7dfc6e2bae630
URL: https://github.com/llvm/llvm-project/commit/93a1642763c9105f0e7d8388dcd7dfc6e2bae630
DIFF: https://github.com/llvm/llvm-project/commit/93a1642763c9105f0e7d8388dcd7dfc6e2bae630.diff
LOG: Revert "[NFCI][InstCombine] visitUnreachableInst(): iteratively erase instructions leading to unreachable"
This reverts commit d9d65527c289fb27a9f92f150723bbb3c58e413f.
Added:
Modified:
llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp b/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
index d29527f3a0dcb..8f75a7eac6f95 100644
--- a/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
+++ b/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
@@ -2874,24 +2874,23 @@ Instruction *InstCombinerImpl::visitUnreachableInst(UnreachableInst &I) {
// Try to remove the previous instruction if it must lead to unreachable.
// This includes instructions like stores and "llvm.assume" that may not get
// removed by simple dead code elimination.
- while (Instruction *Prev = I.getPrevNonDebugInstruction()) {
- if (Prev->isEHPad() || !isGuaranteedToTransferExecutionToSuccessor(Prev))
- return nullptr; // Can not drop any more instructions. We're done here.
+ Instruction *Prev = I.getPrevNonDebugInstruction();
+ if (Prev && !Prev->isEHPad() &&
+ isGuaranteedToTransferExecutionToSuccessor(Prev)) {
// Temporarily disable removal of volatile stores preceding unreachable,
// pending a potential LangRef change permitting volatile stores to trap.
// TODO: Either remove this code, or properly integrate the check into
// isGuaranteedToTransferExecutionToSuccessor().
if (auto *SI = dyn_cast<StoreInst>(Prev))
if (SI->isVolatile())
- return nullptr; // Can not drop this instruction. We're done here.
+ return nullptr;
// A value may still have uses before we process it here (for example, in
// another unreachable block), so convert those to poison.
replaceInstUsesWith(*Prev, PoisonValue::get(Prev->getType()));
eraseInstFromFunction(*Prev);
+ return &I;
}
- assert(I.getParent()->sizeWithoutDebug() == 1 && "The block is now empty.");
- // FIXME: recurse into unconditional predecessors?
return nullptr;
}
More information about the llvm-commits
mailing list