forked from OSchip/llvm-project
Reapply "[LoopIdiom] Don't remove dead operands manually"
This reverts commit r273160, reapplying r273132. RecursivelyDeleteTriviallyDeadInstructions cannot be called on a parentless Instruction. llvm-svn: 273162
This commit is contained in:
parent
86100fc8be
commit
c5601df9fd
|
@ -150,17 +150,9 @@ INITIALIZE_PASS_END(LoopIdiomRecognize, "loop-idiom", "Recognize loop idioms",
|
|||
|
||||
Pass *llvm::createLoopIdiomPass() { return new LoopIdiomRecognize(); }
|
||||
|
||||
/// deleteDeadInstruction - Delete this instruction. Before we do, go through
|
||||
/// and zero out all the operands of this instruction. If any of them become
|
||||
/// dead, delete them and the computation tree that feeds them.
|
||||
///
|
||||
static void deleteDeadInstruction(Instruction *I,
|
||||
const TargetLibraryInfo *TLI) {
|
||||
SmallVector<Value *, 16> Operands(I->value_op_begin(), I->value_op_end());
|
||||
static void deleteDeadInstruction(Instruction *I) {
|
||||
I->replaceAllUsesWith(UndefValue::get(I->getType()));
|
||||
I->eraseFromParent();
|
||||
for (Value *Op : Operands)
|
||||
RecursivelyDeleteTriviallyDeadInstructions(Op, TLI);
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
|
|
@ -0,0 +1,26 @@
|
|||
; RUN: opt -loop-idiom -S < %s | FileCheck %s
|
||||
|
||||
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
||||
target triple = "x86_64-unknown-linux-gnu"
|
||||
|
||||
define void @test1() {
|
||||
entry:
|
||||
br label %for.body.preheader
|
||||
|
||||
for.body.preheader: ; preds = %for.cond
|
||||
br label %for.body
|
||||
|
||||
for.body: ; preds = %for.body, %for.body.preheader
|
||||
%indvars.iv = phi i32 [ 0, %for.body.preheader ], [ %indvars.iv.next, %for.body ]
|
||||
%add.ptr3 = getelementptr inbounds i32, i32* null, i32 %indvars.iv
|
||||
%add.ptr4 = getelementptr inbounds i32, i32* %add.ptr3, i32 1
|
||||
%0 = load i32, i32* %add.ptr4, align 4
|
||||
store i32 %0, i32* %add.ptr3, align 4
|
||||
%indvars.iv.next = add nsw i32 %indvars.iv, 1
|
||||
%exitcond = icmp ne i32 %indvars.iv.next, 6
|
||||
br i1 %exitcond, label %for.body, label %for.body.preheader
|
||||
}
|
||||
|
||||
; CHECK-LABEL: define void @test1(
|
||||
; CHECK: call void @llvm.memcpy.p0i8.p0i8.i64(i8* null, i8* inttoptr (i64 4 to i8*), i64 24, i32 4, i1 false)
|
||||
; CHECK-NOT: store
|
Loading…
Reference in New Issue