Skip to content

Commit 3ddad0b

Browse files
committed
[CVP] Deduce no-wrap on mul
Summary: `ConstantRange::makeGuaranteedNoWrapRegion()` knows how to deal with `mul` since rL335646, there is exhaustive test coverage. This is already used by CVP's `processOverflowIntrinsic()`, and by SCEV's `StrengthenNoWrapFlags()` That being said, currently, this doesn't help much in the end: | statistic | old | new | delta | percentage | | correlated-value-propagation.NumMulNSW | 4 | 275 | 271 | 6775.00% | | correlated-value-propagation.NumMulNUW | 4 | 1323 | 1319 | 32975.00% | | correlated-value-propagation.NumMulNW | 8 | 1598 | 1590 | 19875.00% | | correlated-value-propagation.NumNSW | 5715 | 5986 | 271 | 4.74% | | correlated-value-propagation.NumNUW | 9193 | 10512 | 1319 | 14.35% | | correlated-value-propagation.NumNW | 14908 | 16498 | 1590 | 10.67% | | instcount.NumAddInst | 275871 | 275869 | -2 | 0.00% | | instcount.NumBrInst | 708234 | 708232 | -2 | 0.00% | | instcount.NumMulInst | 43812 | 43810 | -2 | 0.00% | | instcount.NumPHIInst | 316786 | 316784 | -2 | 0.00% | | instcount.NumTruncInst | 62165 | 62167 | 2 | 0.00% | | instcount.NumUDivInst | 2528 | 2526 | -2 | -0.08% | | instcount.TotalBlocks | 842995 | 842993 | -2 | 0.00% | | instcount.TotalInsts | 7376486 | 7376478 | -8 | 0.00% | (^ test-suite plain, tests still pass) Reviewers: nikic, reames, luqmana, sanjoy, timshen Reviewed By: reames Subscribers: hiraditya, javed.absar, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D69203 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@375396 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent ec10cb2 commit 3ddad0b

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

lib/Transforms/Scalar/CorrelatedValuePropagation.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -860,6 +860,7 @@ static bool runImpl(Function &F, LazyValueInfo *LVI, DominatorTree *DT,
860860
break;
861861
case Instruction::Add:
862862
case Instruction::Sub:
863+
case Instruction::Mul:
863864
BBChanged |= processBinOp(cast<BinaryOperator>(II), LVI);
864865
break;
865866
case Instruction::And:

test/Transforms/CorrelatedValuePropagation/mul.ll

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ define i8 @test0(i8 %a) {
77
; CHECK-NEXT: [[CMP:%.*]] = icmp ult i8 [[A:%.*]], 3
88
; CHECK-NEXT: br i1 [[CMP]], label [[BB:%.*]], label [[EXIT:%.*]]
99
; CHECK: bb:
10-
; CHECK-NEXT: [[MUL:%.*]] = mul i8 [[A]], 50
10+
; CHECK-NEXT: [[MUL:%.*]] = mul nuw nsw i8 [[A]], 50
1111
; CHECK-NEXT: ret i8 [[MUL]]
1212
; CHECK: exit:
1313
; CHECK-NEXT: ret i8 0
@@ -30,7 +30,7 @@ define i8 @test1(i8 %a) {
3030
; CHECK-NEXT: [[CMP:%.*]] = icmp ult i8 [[A:%.*]], 4
3131
; CHECK-NEXT: br i1 [[CMP]], label [[BB:%.*]], label [[EXIT:%.*]]
3232
; CHECK: bb:
33-
; CHECK-NEXT: [[MUL:%.*]] = mul i8 [[A]], 50
33+
; CHECK-NEXT: [[MUL:%.*]] = mul nuw i8 [[A]], 50
3434
; CHECK-NEXT: ret i8 [[MUL]]
3535
; CHECK: exit:
3636
; CHECK-NEXT: ret i8 0
@@ -53,7 +53,7 @@ define i8 @test2(i8 %a) {
5353
; CHECK-NEXT: [[CMP:%.*]] = icmp ult i8 [[A:%.*]], 6
5454
; CHECK-NEXT: br i1 [[CMP]], label [[BB:%.*]], label [[EXIT:%.*]]
5555
; CHECK: bb:
56-
; CHECK-NEXT: [[MUL:%.*]] = mul i8 [[A]], 50
56+
; CHECK-NEXT: [[MUL:%.*]] = mul nuw i8 [[A]], 50
5757
; CHECK-NEXT: ret i8 [[MUL]]
5858
; CHECK: exit:
5959
; CHECK-NEXT: ret i8 0
@@ -101,7 +101,7 @@ define i8 @test4(i8 %a) {
101101
; CHECK-NEXT: [[COND:%.*]] = and i1 [[CMP1]], [[CMP2]]
102102
; CHECK-NEXT: br i1 [[COND]], label [[BB:%.*]], label [[EXIT:%.*]]
103103
; CHECK: bb:
104-
; CHECK-NEXT: [[MUL:%.*]] = mul i8 [[A]], 50
104+
; CHECK-NEXT: [[MUL:%.*]] = mul nsw i8 [[A]], 50
105105
; CHECK-NEXT: ret i8 [[MUL]]
106106
; CHECK: exit:
107107
; CHECK-NEXT: ret i8 0

0 commit comments

Comments
 (0)