[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / InstCombine / ARM / 2012-04-23-Neon-Intrinsics.ll
blob9efed367d19fb8dc2fcdee2a60053880522e6eb5
1 ; RUN: opt -S -instcombine < %s | FileCheck %s
3 define <4 x i32> @mulByZero(<4 x i16> %x) nounwind readnone ssp {
4 entry:
5   %a = tail call <4 x i32> @llvm.arm.neon.vmulls.v4i32(<4 x i16> %x, <4 x i16> zeroinitializer) nounwind
6   ret <4 x i32> %a
7 ; CHECK: entry:
8 ; CHECK-NEXT: ret <4 x i32> zeroinitializer
11 define <4 x i32> @mulByOne(<4 x i16> %x) nounwind readnone ssp {
12 entry:
13   %a = tail call <4 x i32> @llvm.arm.neon.vmulls.v4i32(<4 x i16> %x, <4 x i16> <i16 1, i16 1, i16 1, i16 1>) nounwind
14   ret <4 x i32> %a
15 ; CHECK: entry:
16 ; CHECK-NEXT: %a = sext <4 x i16> %x to <4 x i32>
17 ; CHECK-NEXT: ret <4 x i32> %a
20 define <4 x i32> @constantMul() nounwind readnone ssp {
21 entry:
22   %a = tail call <4 x i32> @llvm.arm.neon.vmulls.v4i32(<4 x i16> <i16 3, i16 3, i16 3, i16 3>, <4 x i16> <i16 2, i16 2, i16 2, i16 2>) nounwind
23   ret <4 x i32> %a
24 ; CHECK: entry:
25 ; CHECK-NEXT: ret <4 x i32> <i32 6, i32 6, i32 6, i32 6>
28 define <4 x i32> @constantMulS() nounwind readnone ssp {
29 entry:
30   %b = tail call <4 x i32> @llvm.arm.neon.vmulls.v4i32(<4 x i16> <i16 -1, i16 -1, i16 -1, i16 -1>, <4 x i16> <i16 1, i16 1, i16 1, i16 1>) nounwind
31   ret <4 x i32> %b
32 ; CHECK: entry:
33 ; CHECK-NEXT: ret <4 x i32> <i32 -1, i32 -1, i32 -1, i32 -1>
36 define <4 x i32> @constantMulU() nounwind readnone ssp {
37 entry:
38   %b = tail call <4 x i32> @llvm.arm.neon.vmullu.v4i32(<4 x i16> <i16 -1, i16 -1, i16 -1, i16 -1>, <4 x i16> <i16 1, i16 1, i16 1, i16 1>) nounwind
39   ret <4 x i32> %b
40 ; CHECK: entry:
41 ; CHECK-NEXT: ret <4 x i32> <i32 65535, i32 65535, i32 65535, i32 65535>
44 define <4 x i32> @complex1(<4 x i16> %x) nounwind readnone ssp {
45 entry:
46   %a = tail call <4 x i32> @llvm.arm.neon.vmulls.v4i32(<4 x i16> <i16 2, i16 2, i16 2, i16 2>, <4 x i16> %x) nounwind
47   %b = add <4 x i32> zeroinitializer, %a
48   ret <4 x i32> %b
49 ; CHECK: entry:
50 ; CHECK-NEXT: %a = tail call <4 x i32> @llvm.arm.neon.vmulls.v4i32(<4 x i16> <i16 2, i16 2, i16 2, i16 2>, <4 x i16> %x) [[NUW:#[0-9]+]]
51 ; CHECK-NEXT: ret <4 x i32> %a
54 define <4 x i32> @complex2(<4 x i32> %x) nounwind readnone ssp {
55 entry:
56   %a = tail call <4 x i32> @llvm.arm.neon.vmulls.v4i32(<4 x i16> <i16 3, i16 3, i16 3, i16 3>, <4 x i16> <i16 2, i16 2, i16 2, i16 2>) nounwind
57   %b = add <4 x i32> %x, %a
58   ret <4 x i32> %b  
59 ; CHECK: entry:
60 ; CHECK-NEXT: %b = add <4 x i32> %x, <i32 6, i32 6, i32 6, i32 6>
61 ; CHECK-NEXT: ret <4 x i32> %b
64 declare <4 x i32> @llvm.arm.neon.vmulls.v4i32(<4 x i16>, <4 x i16>) nounwind readnone
65 declare <4 x i32> @llvm.arm.neon.vmullu.v4i32(<4 x i16>, <4 x i16>) nounwind readnone