1 // RUN: %clang_cc1 -triple hexagon -target-cpu hexagonv66 -target-feature +hvxv66 -target-feature +hvx-length128b -emit-llvm -o - %s | FileCheck %s
2 // REQUIRES: hexagon-registered-target
4 typedef long HEXAGON_VecPred128
__attribute__((__vector_size__(128)))
5 __attribute__((aligned(128)));
6 typedef long HEXAGON_Vect1024
__attribute__((__vector_size__(128)))
7 __attribute__((aligned(128)));
8 typedef long HEXAGON_Vect2048
__attribute__((__vector_size__(256)))
9 __attribute__((aligned(256)));
11 // CHECK-LABEL: @test1
12 // CHECK: call <32 x i32> @llvm.hexagon.V6.vaddcarrysat.128B(<32 x i32> %{{[0-9]+}}, <32 x i32> %{{[0-9]+}}, <128 x i1> %{{[0-9]+}})
13 HEXAGON_Vect1024
test1(void *in
, void *out
) {
14 HEXAGON_Vect1024 v1
, v2
;
16 HEXAGON_VecPred128 q1
;
18 p
= (HEXAGON_Vect1024
*)in
;
23 return __builtin_HEXAGON_V6_vaddcarrysat_128B(v1
, v2
, __builtin_HEXAGON_V6_vandvrt_128B(q1
, -1));
26 // CHECK-LABEL: @test26
27 // CHECK: call <32 x i32> @llvm.hexagon.V6.vrotr.128B(<32 x i32> %{{[0-9]+}}, <32 x i32> %{{[0-9]+}})
28 HEXAGON_Vect1024
test26(void *in
, void *out
) {
29 HEXAGON_Vect1024 v1
, v2
;
32 p
= (HEXAGON_Vect1024
*)in
;
36 return __builtin_HEXAGON_V6_vrotr_128B(v1
, v2
);
39 // CHECK-LABEL: @test27
40 // CHECK: call <32 x i32> @llvm.hexagon.V6.vsatdw.128B(<32 x i32> %{{[0-9]+}}, <32 x i32> %{{[0-9]+}})
41 HEXAGON_Vect1024
test27(void *in
, void *out
) {
42 HEXAGON_Vect1024 v1
, v2
;
45 p
= (HEXAGON_Vect1024
*)in
;
49 return __builtin_HEXAGON_V6_vsatdw_128B(v1
, v2
);
52 // CHECK-LABEL: @test28
53 // CHECK: call <64 x i32> @llvm.hexagon.V6.vasr.into.128B(<64 x i32> %{{[0-9]+}}, <32 x i32> %{{[0-9]+}}, <32 x i32> %{{[0-9]+}})
54 HEXAGON_Vect2048
test28(void *in1
, void *in2
, void *out
) {
55 HEXAGON_Vect1024 v1
, v2
;
60 p1
= (HEXAGON_Vect1024
*)in1
;
63 p2
= (HEXAGON_Vect2048
*)in2
;
66 return __builtin_HEXAGON_V6_vasr_into_128B(vr
, v1
, v2
);
69 // CHECK-LABEL: @test29
70 // CHECK: call { <32 x i32>, <128 x i1> } @llvm.hexagon.V6.vaddcarryo.128B(<32 x i32> %{{[0-9]+}}, <32 x i32> %{{[0-9]+}})
71 HEXAGON_Vect1024
test29(void *in
, void *out
) {
72 HEXAGON_Vect1024 v1
, v2
;
74 HEXAGON_VecPred128 q1
;
76 p
= (HEXAGON_Vect1024
*)in
;
81 return __builtin_HEXAGON_V6_vaddcarryo_128B(v1
, v2
, &q1
);
84 // CHECK-LABEL: @test30
85 // CHECK: call { <32 x i32>, <128 x i1> } @llvm.hexagon.V6.vsubcarryo.128B(<32 x i32> %{{[0-9]+}}, <32 x i32> %{{[0-9]+}})
86 HEXAGON_Vect1024
test30(void *in
, void *out
) {
87 HEXAGON_Vect1024 v1
, v2
;
89 HEXAGON_VecPred128 q1
;
91 p
= (HEXAGON_Vect1024
*)in
;
96 return __builtin_HEXAGON_V6_vsubcarryo_128B(v1
, v2
, &q1
);