Skip to content

Commit

Permalink
[GVN] Drop nsw/nuw flags when replacing the result of a with.overflow…
Browse files Browse the repository at this point in the history
… intrinsic with a overflowing binary operator (#82935)

Alive2: https://alive2.llvm.org/ce/z/gyL7mn
Fixes #82884.

(cherry picked from commit 892b4be)
  • Loading branch information
dtcxzyw authored and tstellar committed Feb 26, 2024
1 parent 9d51bd1 commit 3aea3d2
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
8 changes: 7 additions & 1 deletion llvm/lib/Transforms/Utils/Local.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3369,11 +3369,17 @@ void llvm::patchReplacementInstruction(Instruction *I, Value *Repl) {

// Patch the replacement so that it is not more restrictive than the value
// being replaced.
WithOverflowInst *UnusedWO;
// When replacing the result of a llvm.*.with.overflow intrinsic with a
// overflowing binary operator, nuw/nsw flags may no longer hold.
if (isa<OverflowingBinaryOperator>(ReplInst) &&
match(I, m_ExtractValue<0>(m_WithOverflowInst(UnusedWO))))
ReplInst->dropPoisonGeneratingFlags();
// Note that if 'I' is a load being replaced by some operation,
// for example, by an arithmetic operation, then andIRFlags()
// would just erase all math flags from the original arithmetic
// operation, which is clearly not wanted and not needed.
if (!isa<LoadInst>(I))
else if (!isa<LoadInst>(I))
ReplInst->andIRFlags(I);

// FIXME: If both the original and replacement value are part of the
Expand Down
21 changes: 21 additions & 0 deletions llvm/test/Transforms/GVN/pr82884.ll
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 4
; RUN: opt -S -passes=gvn < %s | FileCheck %s

; Make sure nsw/nuw flags are dropped.

define i32 @pr82884(i32 %x) {
; CHECK-LABEL: define i32 @pr82884(
; CHECK-SAME: i32 [[X:%.*]]) {
; CHECK-NEXT: [[MUL:%.*]] = mul i32 [[X]], [[X]]
; CHECK-NEXT: call void @use(i32 [[MUL]])
; CHECK-NEXT: [[MUL2:%.*]] = call { i32, i1 } @llvm.smul.with.overflow.i32(i32 [[X]], i32 [[X]])
; CHECK-NEXT: ret i32 [[MUL]]
;
%mul = mul nsw nuw i32 %x, %x
call void @use(i32 %mul)
%mul2 = call { i32, i1 } @llvm.smul.with.overflow.i32(i32 %x, i32 %x)
%ret = extractvalue { i32, i1 } %mul2, 0
ret i32 %ret
}

declare void @use(i32)

0 comments on commit 3aea3d2

Please sign in to comment.