[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / Hexagon / hvx-dbl-dual-output.ll
blobf22ad09bae8f1399dcd3a2a24015118dee0bbd3c
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
3 ; Test that we compile the HVX dual output intrinsics.
5 ; CHECK-LABEL: f0:
6 ; CHECK: v{{[0-9]+}}.w = vadd(v{{[0-9]+}}.w,v{{[0-9]+}}.w,q{{[0-3]}}):carry
7 define inreg <32 x i32> @f0(<32 x i32> %a0, <32 x i32> %a1, i8* nocapture readonly %a2) #0 {
8 b0:
9   %v0 = bitcast i8* %a2 to <1024 x i1>*
10   %v1 = load <1024 x i1>, <1024 x i1>* %v0, align 128
11   %v2 = tail call { <32 x i32>, <1024 x i1> } @llvm.hexagon.V6.vaddcarry.128B(<32 x i32> %a0, <32 x i32> %a1, <1024 x i1> %v1)
12   %v3 = extractvalue { <32 x i32>, <1024 x i1> } %v2, 0
13   ret <32 x i32> %v3
16 ; CHECK-LABEL: f1:
17 ; CHECK: v{{[0-9]+}}.w = vsub(v{{[0-9]+}}.w,v{{[0-9]+}}.w,q{{[0-3]}}):carry
18 define inreg <32 x i32> @f1(<32 x i32> %a0, <32 x i32> %a1, i8* nocapture readonly %a2) #0 {
19 b0:
20   %v0 = bitcast i8* %a2 to <1024 x i1>*
21   %v1 = load <1024 x i1>, <1024 x i1>* %v0, align 128
22   %v2 = tail call { <32 x i32>, <1024 x i1> } @llvm.hexagon.V6.vsubcarry.128B(<32 x i32> %a0, <32 x i32> %a1, <1024 x i1> %v1)
23   %v3 = extractvalue { <32 x i32>, <1024 x i1> } %v2, 0
24   ret <32 x i32> %v3
27 ; Function Attrs: nounwind readnone
28 declare { <32 x i32>, <1024 x i1> } @llvm.hexagon.V6.vaddcarry.128B(<32 x i32>, <32 x i32>, <1024 x i1>) #1
30 ; Function Attrs: nounwind readnone
31 declare { <32 x i32>, <1024 x i1> } @llvm.hexagon.V6.vsubcarry.128B(<32 x i32>, <32 x i32>, <1024 x i1>) #1
33 attributes #0 = { nounwind "target-cpu"="hexagonv65" "target-features"="+hvxv65,+hvx-length128b" }
34 attributes #1 = { nounwind readnone }