2019-09-19 02:38:32 +08:00
|
|
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
2020-09-29 23:02:03 +08:00
|
|
|
; RUN: opt < %s -instcombine -S | FileCheck %s
|
2019-09-19 02:38:32 +08:00
|
|
|
|
|
|
|
; If we have some pattern that leaves only some low bits set, and then performs
|
|
|
|
; left-shift of those bits, we can combine those two shifts into a shift+mask.
|
|
|
|
|
|
|
|
; There are many variants to this pattern:
|
|
|
|
; d) (x & ((-1 << maskNbits) >> maskNbits)) << shiftNbits
|
|
|
|
; simplify to:
|
|
|
|
; (x << shiftNbits) & (-1 >> ((-(maskNbits+shiftNbits))+32))
|
|
|
|
|
|
|
|
; Simple tests.
|
|
|
|
|
|
|
|
declare void @use32(i32)
|
|
|
|
|
|
|
|
define i32 @t0_basic(i32 %x, i32 %nbits) {
|
|
|
|
; CHECK-LABEL: @t0_basic(
|
|
|
|
; CHECK-NEXT: [[T0:%.*]] = shl i32 -1, [[NBITS:%.*]]
|
|
|
|
; CHECK-NEXT: [[T1:%.*]] = lshr i32 [[T0]], [[NBITS]]
|
|
|
|
; CHECK-NEXT: [[T3:%.*]] = add i32 [[NBITS]], -1
|
|
|
|
; CHECK-NEXT: call void @use32(i32 [[T0]])
|
|
|
|
; CHECK-NEXT: call void @use32(i32 [[T1]])
|
|
|
|
; CHECK-NEXT: call void @use32(i32 [[T3]])
|
[InstCombine] dropRedundantMaskingOfLeftShiftInput(): pat. c/d/e with mask (PR42563)
Summary:
If we have a pattern `(x & (-1 >> maskNbits)) << shiftNbits`,
we already know (have a fold) that will drop the `& (-1 >> maskNbits)`
mask iff `(shiftNbits-maskNbits) s>= 0` (i.e. `shiftNbits u>= maskNbits`).
So even if `(shiftNbits-maskNbits) s< 0`, we can still
fold, we will just need to apply a **constant** mask afterwards:
```
Name: c, normal+mask
%t0 = lshr i32 -1, C1
%t1 = and i32 %t0, %x
%r = shl i32 %t1, C2
=>
%n0 = shl i32 %x, C2
%n1 = i32 ((-(C2-C1))+32)
%n2 = zext i32 %n1 to i64
%n3 = lshr i64 -1, %n2
%n4 = trunc i64 %n3 to i32
%r = and i32 %n0, %n4
```
https://rise4fun.com/Alive/gslRa
Naturally, old `%masked` will have to be one-use.
This is not valid for pattern f - where "masking" is done via `ashr`.
https://bugs.llvm.org/show_bug.cgi?id=42563
Reviewers: spatel, nikic, xbolva00
Reviewed By: spatel
Subscribers: hiraditya, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D67725
llvm-svn: 372630
2019-09-24 01:04:28 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = shl i32 [[X:%.*]], [[T3]]
|
|
|
|
; CHECK-NEXT: [[T4:%.*]] = and i32 [[TMP1]], 2147483647
|
2019-09-19 02:38:32 +08:00
|
|
|
; CHECK-NEXT: ret i32 [[T4]]
|
|
|
|
;
|
|
|
|
%t0 = shl i32 -1, %nbits
|
|
|
|
%t1 = lshr i32 %t0, %nbits
|
|
|
|
%t2 = and i32 %t1, %x
|
|
|
|
%t3 = add i32 %nbits, -1
|
|
|
|
call void @use32(i32 %t0)
|
|
|
|
call void @use32(i32 %t1)
|
|
|
|
call void @use32(i32 %t3)
|
|
|
|
%t4 = shl i32 %t2, %t3 ; shift is smaller than mask
|
|
|
|
ret i32 %t4
|
|
|
|
}
|
|
|
|
|
|
|
|
; Vectors
|
|
|
|
|
|
|
|
declare void @use8xi32(<8 x i32>)
|
|
|
|
|
|
|
|
define <8 x i32> @t2_vec_splat(<8 x i32> %x, <8 x i32> %nbits) {
|
|
|
|
; CHECK-LABEL: @t2_vec_splat(
|
|
|
|
; CHECK-NEXT: [[T0:%.*]] = shl <8 x i32> <i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1>, [[NBITS:%.*]]
|
|
|
|
; CHECK-NEXT: [[T1:%.*]] = lshr <8 x i32> [[T0]], [[NBITS]]
|
|
|
|
; CHECK-NEXT: [[T3:%.*]] = add <8 x i32> [[NBITS]], <i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1>
|
|
|
|
; CHECK-NEXT: call void @use8xi32(<8 x i32> [[T0]])
|
|
|
|
; CHECK-NEXT: call void @use8xi32(<8 x i32> [[T1]])
|
|
|
|
; CHECK-NEXT: call void @use8xi32(<8 x i32> [[T3]])
|
[InstCombine] dropRedundantMaskingOfLeftShiftInput(): pat. c/d/e with mask (PR42563)
Summary:
If we have a pattern `(x & (-1 >> maskNbits)) << shiftNbits`,
we already know (have a fold) that will drop the `& (-1 >> maskNbits)`
mask iff `(shiftNbits-maskNbits) s>= 0` (i.e. `shiftNbits u>= maskNbits`).
So even if `(shiftNbits-maskNbits) s< 0`, we can still
fold, we will just need to apply a **constant** mask afterwards:
```
Name: c, normal+mask
%t0 = lshr i32 -1, C1
%t1 = and i32 %t0, %x
%r = shl i32 %t1, C2
=>
%n0 = shl i32 %x, C2
%n1 = i32 ((-(C2-C1))+32)
%n2 = zext i32 %n1 to i64
%n3 = lshr i64 -1, %n2
%n4 = trunc i64 %n3 to i32
%r = and i32 %n0, %n4
```
https://rise4fun.com/Alive/gslRa
Naturally, old `%masked` will have to be one-use.
This is not valid for pattern f - where "masking" is done via `ashr`.
https://bugs.llvm.org/show_bug.cgi?id=42563
Reviewers: spatel, nikic, xbolva00
Reviewed By: spatel
Subscribers: hiraditya, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D67725
llvm-svn: 372630
2019-09-24 01:04:28 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = shl <8 x i32> [[X:%.*]], [[T3]]
|
|
|
|
; CHECK-NEXT: [[T4:%.*]] = and <8 x i32> [[TMP1]], <i32 2147483647, i32 2147483647, i32 2147483647, i32 2147483647, i32 2147483647, i32 2147483647, i32 2147483647, i32 2147483647>
|
2019-09-19 02:38:32 +08:00
|
|
|
; CHECK-NEXT: ret <8 x i32> [[T4]]
|
|
|
|
;
|
|
|
|
%t0 = shl <8 x i32> <i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1>, %nbits
|
|
|
|
%t1 = lshr <8 x i32> %t0, %nbits
|
|
|
|
%t2 = and <8 x i32> %t1, %x
|
|
|
|
%t3 = add <8 x i32> %nbits, <i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1>
|
|
|
|
call void @use8xi32(<8 x i32> %t0)
|
|
|
|
call void @use8xi32(<8 x i32> %t1)
|
|
|
|
call void @use8xi32(<8 x i32> %t3)
|
|
|
|
%t4 = shl <8 x i32> %t2, %t3 ; shift is smaller than mask
|
|
|
|
ret <8 x i32> %t4
|
|
|
|
}
|
|
|
|
|
2019-10-01 03:15:51 +08:00
|
|
|
define <8 x i32> @t2_vec_splat_undef(<8 x i32> %x, <8 x i32> %nbits) {
|
|
|
|
; CHECK-LABEL: @t2_vec_splat_undef(
|
|
|
|
; CHECK-NEXT: [[T0:%.*]] = shl <8 x i32> <i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 undef, i32 -1>, [[NBITS:%.*]]
|
|
|
|
; CHECK-NEXT: [[T1:%.*]] = lshr <8 x i32> [[T0]], [[NBITS]]
|
|
|
|
; CHECK-NEXT: [[T3:%.*]] = add <8 x i32> [[NBITS]], <i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 undef, i32 -1>
|
|
|
|
; CHECK-NEXT: call void @use8xi32(<8 x i32> [[T0]])
|
|
|
|
; CHECK-NEXT: call void @use8xi32(<8 x i32> [[T1]])
|
|
|
|
; CHECK-NEXT: call void @use8xi32(<8 x i32> [[T3]])
|
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = shl <8 x i32> [[X:%.*]], [[T3]]
|
2020-11-29 03:26:44 +08:00
|
|
|
; CHECK-NEXT: [[T4:%.*]] = and <8 x i32> [[TMP1]], <i32 2147483647, i32 2147483647, i32 2147483647, i32 2147483647, i32 2147483647, i32 2147483647, i32 poison, i32 2147483647>
|
2019-10-01 03:15:51 +08:00
|
|
|
; CHECK-NEXT: ret <8 x i32> [[T4]]
|
|
|
|
;
|
|
|
|
%t0 = shl <8 x i32> <i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 undef, i32 -1>, %nbits
|
|
|
|
%t1 = lshr <8 x i32> %t0, %nbits
|
|
|
|
%t2 = and <8 x i32> %t1, %x
|
|
|
|
%t3 = add <8 x i32> %nbits, <i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 undef, i32 -1>
|
|
|
|
call void @use8xi32(<8 x i32> %t0)
|
|
|
|
call void @use8xi32(<8 x i32> %t1)
|
|
|
|
call void @use8xi32(<8 x i32> %t3)
|
|
|
|
%t4 = shl <8 x i32> %t2, %t3 ; shift is smaller than mask
|
|
|
|
ret <8 x i32> %t4
|
|
|
|
}
|
|
|
|
|
2019-09-19 02:38:32 +08:00
|
|
|
define <8 x i32> @t2_vec_nonsplat(<8 x i32> %x, <8 x i32> %nbits) {
|
|
|
|
; CHECK-LABEL: @t2_vec_nonsplat(
|
|
|
|
; CHECK-NEXT: [[T0:%.*]] = shl <8 x i32> <i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1>, [[NBITS:%.*]]
|
|
|
|
; CHECK-NEXT: [[T1:%.*]] = lshr <8 x i32> [[T0]], [[NBITS]]
|
|
|
|
; CHECK-NEXT: [[T3:%.*]] = add <8 x i32> [[NBITS]], <i32 -32, i32 -31, i32 -1, i32 0, i32 1, i32 31, i32 32, i32 33>
|
|
|
|
; CHECK-NEXT: call void @use8xi32(<8 x i32> [[T0]])
|
|
|
|
; CHECK-NEXT: call void @use8xi32(<8 x i32> [[T1]])
|
|
|
|
; CHECK-NEXT: call void @use8xi32(<8 x i32> [[T3]])
|
[InstCombine] dropRedundantMaskingOfLeftShiftInput(): pat. c/d/e with mask (PR42563)
Summary:
If we have a pattern `(x & (-1 >> maskNbits)) << shiftNbits`,
we already know (have a fold) that will drop the `& (-1 >> maskNbits)`
mask iff `(shiftNbits-maskNbits) s>= 0` (i.e. `shiftNbits u>= maskNbits`).
So even if `(shiftNbits-maskNbits) s< 0`, we can still
fold, we will just need to apply a **constant** mask afterwards:
```
Name: c, normal+mask
%t0 = lshr i32 -1, C1
%t1 = and i32 %t0, %x
%r = shl i32 %t1, C2
=>
%n0 = shl i32 %x, C2
%n1 = i32 ((-(C2-C1))+32)
%n2 = zext i32 %n1 to i64
%n3 = lshr i64 -1, %n2
%n4 = trunc i64 %n3 to i32
%r = and i32 %n0, %n4
```
https://rise4fun.com/Alive/gslRa
Naturally, old `%masked` will have to be one-use.
This is not valid for pattern f - where "masking" is done via `ashr`.
https://bugs.llvm.org/show_bug.cgi?id=42563
Reviewers: spatel, nikic, xbolva00
Reviewed By: spatel
Subscribers: hiraditya, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D67725
llvm-svn: 372630
2019-09-24 01:04:28 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = shl <8 x i32> [[X:%.*]], [[T3]]
|
2020-11-29 03:26:44 +08:00
|
|
|
; CHECK-NEXT: [[T4:%.*]] = and <8 x i32> [[TMP1]], <i32 poison, i32 1, i32 2147483647, i32 -1, i32 -1, i32 -1, i32 -1, i32 poison>
|
2019-09-19 02:38:32 +08:00
|
|
|
; CHECK-NEXT: ret <8 x i32> [[T4]]
|
|
|
|
;
|
|
|
|
%t0 = shl <8 x i32> <i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1>, %nbits
|
|
|
|
%t1 = lshr <8 x i32> %t0, %nbits
|
|
|
|
%t2 = and <8 x i32> %t1, %x
|
|
|
|
%t3 = add <8 x i32> %nbits, <i32 -32, i32 -31, i32 -1, i32 0, i32 1, i32 31, i32 32, i32 33>
|
|
|
|
call void @use8xi32(<8 x i32> %t0)
|
|
|
|
call void @use8xi32(<8 x i32> %t1)
|
|
|
|
call void @use8xi32(<8 x i32> %t3)
|
|
|
|
%t4 = shl <8 x i32> %t2, %t3 ; shift is smaller than mask
|
|
|
|
ret <8 x i32> %t4
|
|
|
|
}
|
|
|
|
|
|
|
|
; Extra uses.
|
|
|
|
|
|
|
|
define i32 @n3_extrause(i32 %x, i32 %nbits) {
|
|
|
|
; CHECK-LABEL: @n3_extrause(
|
|
|
|
; CHECK-NEXT: [[T0:%.*]] = shl i32 -1, [[NBITS:%.*]]
|
|
|
|
; CHECK-NEXT: [[T1:%.*]] = lshr i32 [[T0]], [[NBITS]]
|
|
|
|
; CHECK-NEXT: [[T2:%.*]] = and i32 [[T1]], [[X:%.*]]
|
|
|
|
; CHECK-NEXT: [[T3:%.*]] = add i32 [[NBITS]], -1
|
|
|
|
; CHECK-NEXT: call void @use32(i32 [[T0]])
|
|
|
|
; CHECK-NEXT: call void @use32(i32 [[T1]])
|
|
|
|
; CHECK-NEXT: call void @use32(i32 [[T2]])
|
|
|
|
; CHECK-NEXT: call void @use32(i32 [[T3]])
|
|
|
|
; CHECK-NEXT: [[T4:%.*]] = shl i32 [[T2]], [[T3]]
|
|
|
|
; CHECK-NEXT: ret i32 [[T4]]
|
|
|
|
;
|
|
|
|
%t0 = shl i32 -1, %nbits
|
|
|
|
%t1 = lshr i32 %t0, %nbits
|
|
|
|
%t2 = and i32 %t1, %x
|
|
|
|
%t3 = add i32 %nbits, -1
|
|
|
|
call void @use32(i32 %t0)
|
|
|
|
call void @use32(i32 %t1)
|
|
|
|
call void @use32(i32 %t2) ; BAD
|
|
|
|
call void @use32(i32 %t3)
|
|
|
|
%t4 = shl i32 %t2, %t3 ; shift is smaller than mask
|
|
|
|
ret i32 %t4
|
|
|
|
}
|