diff --git a/include/llvm/IR/Instruction.h b/include/llvm/IR/Instruction.h index 391fb32c9ca..5ca9c69268e 100644 --- a/include/llvm/IR/Instruction.h +++ b/include/llvm/IR/Instruction.h @@ -627,11 +627,16 @@ public: /// Return true if the instruction may have side effects. /// + /// Side effects are: + /// * Writing to memory. + /// * Unwinding. + /// * Not returning (e.g. an infinite loop). + /// /// Note that this does not consider malloc and alloca to have side /// effects because the newly allocated memory is completely invisible to /// instructions which don't use the returned value. For cases where this /// matters, isSafeToSpeculativelyExecute may be more appropriate. - bool mayHaveSideEffects() const { return mayWriteToMemory() || mayThrow(); } + bool mayHaveSideEffects() const; /// Return true if the instruction can be removed if the result is unused. /// diff --git a/lib/Analysis/DemandedBits.cpp b/lib/Analysis/DemandedBits.cpp index 467dea9c023..ca6d58fac82 100644 --- a/lib/Analysis/DemandedBits.cpp +++ b/lib/Analysis/DemandedBits.cpp @@ -80,7 +80,7 @@ void DemandedBitsWrapperPass::print(raw_ostream &OS, const Module *M) const { static bool isAlwaysLive(Instruction *I) { return I->isTerminator() || isa(I) || I->isEHPad() || - I->mayHaveSideEffects() || !I->willReturn(); + I->mayHaveSideEffects(); } void DemandedBits::determineLiveOperandBits( diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index 3a1182ca01e..df38a850c28 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp @@ -6677,7 +6677,7 @@ ScalarEvolution::getLoopProperties(const Loop *L) { if (auto *SI = dyn_cast(I)) return !SI->isSimple(); - return I->mayHaveSideEffects(); + return I->mayThrow() || I->mayWriteToMemory(); }; LoopProperties LP = {/* HasNoAbnormalExits */ true, diff --git a/lib/IR/Instruction.cpp b/lib/IR/Instruction.cpp index a6fba2a7a24..649a85e6a4c 100644 --- a/lib/IR/Instruction.cpp +++ b/lib/IR/Instruction.cpp @@ -663,6 +663,10 @@ bool Instruction::mayThrow() const { return isa(this); } +bool Instruction::mayHaveSideEffects() const { + return mayWriteToMemory() || mayThrow() || !willReturn(); +} + bool Instruction::isSafeToRemove() const { return (!isa(this) || !this->mayHaveSideEffects()) && !this->isTerminator(); diff --git a/lib/Transforms/Scalar/ADCE.cpp b/lib/Transforms/Scalar/ADCE.cpp index 12a3e678393..6f3fdb88eda 100644 --- a/lib/Transforms/Scalar/ADCE.cpp +++ b/lib/Transforms/Scalar/ADCE.cpp @@ -326,7 +326,7 @@ void AggressiveDeadCodeElimination::initialize() { bool AggressiveDeadCodeElimination::isAlwaysLive(Instruction &I) { // TODO -- use llvm::isInstructionTriviallyDead - if (I.isEHPad() || I.mayHaveSideEffects() || !I.willReturn()) { + if (I.isEHPad() || I.mayHaveSideEffects()) { // Skip any value profile instrumentation calls if they are // instrumenting constants. if (isInstrumentsConstant(I)) diff --git a/test/Transforms/LICM/sinking.ll b/test/Transforms/LICM/sinking.ll index ee7f6338e6a..e8660695aa7 100644 --- a/test/Transforms/LICM/sinking.ll +++ b/test/Transforms/LICM/sinking.ll @@ -979,16 +979,16 @@ try.cont: ret void } -; TODO: Should not get sunk. define i32 @not_willreturn(i8* %p) { ; CHECK-LABEL: @not_willreturn( +; CHECK-NEXT: [[X:%.*]] = call i32 @getv() #[[ATTR5:[0-9]+]] ; CHECK-NEXT: br label [[LOOP:%.*]] ; CHECK: loop: ; CHECK-NEXT: store volatile i8 0, i8* [[P:%.*]], align 1 ; CHECK-NEXT: br i1 true, label [[LOOP]], label [[OUT:%.*]] ; CHECK: out: -; CHECK-NEXT: [[X_LE:%.*]] = call i32 @getv() #[[ATTR5:[0-9]+]] -; CHECK-NEXT: ret i32 [[X_LE]] +; CHECK-NEXT: [[X_LCSSA:%.*]] = phi i32 [ [[X]], [[LOOP]] ] +; CHECK-NEXT: ret i32 [[X_LCSSA]] ; br label %loop diff --git a/test/Transforms/LoopDeletion/noop-loops-with-subloops.ll b/test/Transforms/LoopDeletion/noop-loops-with-subloops.ll index 9163c9cd401..bf5288085df 100644 --- a/test/Transforms/LoopDeletion/noop-loops-with-subloops.ll +++ b/test/Transforms/LoopDeletion/noop-loops-with-subloops.ll @@ -395,11 +395,16 @@ exit: } ; Inner infinite loop hidden behind a call. -; TODO: Loop should not get deleted. define void @not_willreturn() { ; CHECK-LABEL: @not_willreturn( ; CHECK-NEXT: entry: -; CHECK-NEXT: br label [[EXIT:%.*]] +; CHECK-NEXT: br label [[LOOP:%.*]] +; CHECK: loop: +; CHECK-NEXT: [[IV:%.*]] = phi i32 [ 0, [[ENTRY:%.*]] ], [ [[IV_NEXT:%.*]], [[LOOP]] ] +; CHECK-NEXT: call void @sideeffect() #[[ATTR2:[0-9]+]] +; CHECK-NEXT: [[IV_NEXT]] = add nuw i32 [[IV]], 1 +; CHECK-NEXT: [[C:%.*]] = icmp ult i32 [[IV]], 100 +; CHECK-NEXT: br i1 [[C]], label [[LOOP]], label [[EXIT:%.*]] ; CHECK: exit: ; CHECK-NEXT: ret void ; diff --git a/test/Transforms/SCCP/calltest.ll b/test/Transforms/SCCP/calltest.ll index de793635600..2a6445fcb68 100644 --- a/test/Transforms/SCCP/calltest.ll +++ b/test/Transforms/SCCP/calltest.ll @@ -34,9 +34,9 @@ define i32 @test_1() { ret i32 0 } -; TODO: Call should not get dropped. define i32 @test_not_willreturn() { ; CHECK-LABEL: @test_not_willreturn( +; CHECK-NEXT: [[TMP1:%.*]] = call [[EMPTY:%.*]] @has_side_effects() #[[ATTR1:[0-9]+]] ; CHECK-NEXT: ret i32 0 ; %1 = call %empty @has_side_effects() nounwind readonly