blob: 40e5cea99f63dc58ae72fe9cca2981b8e01d7766 [file] [log] [blame]
Bob Wilsone76c5942009-10-08 23:33:03 +00001; RUN: llc < %s -march=arm -mattr=+neon | FileCheck %s
Bob Wilsone60fee02009-06-22 23:27:02 +00002
3define <8 x i8> @vraddhni16(<8 x i16>* %A, <8 x i16>* %B) nounwind {
Bob Wilsone76c5942009-10-08 23:33:03 +00004;CHECK: vraddhni16:
5;CHECK: vraddhn.i16
Bob Wilsone60fee02009-06-22 23:27:02 +00006 %tmp1 = load <8 x i16>* %A
7 %tmp2 = load <8 x i16>* %B
8 %tmp3 = call <8 x i8> @llvm.arm.neon.vraddhn.v8i8(<8 x i16> %tmp1, <8 x i16> %tmp2)
9 ret <8 x i8> %tmp3
10}
11
12define <4 x i16> @vraddhni32(<4 x i32>* %A, <4 x i32>* %B) nounwind {
Bob Wilsone76c5942009-10-08 23:33:03 +000013;CHECK: vraddhni32:
14;CHECK: vraddhn.i32
Bob Wilsone60fee02009-06-22 23:27:02 +000015 %tmp1 = load <4 x i32>* %A
16 %tmp2 = load <4 x i32>* %B
17 %tmp3 = call <4 x i16> @llvm.arm.neon.vraddhn.v4i16(<4 x i32> %tmp1, <4 x i32> %tmp2)
18 ret <4 x i16> %tmp3
19}
20
21define <2 x i32> @vraddhni64(<2 x i64>* %A, <2 x i64>* %B) nounwind {
Bob Wilsone76c5942009-10-08 23:33:03 +000022;CHECK: vraddhni64:
23;CHECK: vraddhn.i64
Bob Wilsone60fee02009-06-22 23:27:02 +000024 %tmp1 = load <2 x i64>* %A
25 %tmp2 = load <2 x i64>* %B
26 %tmp3 = call <2 x i32> @llvm.arm.neon.vraddhn.v2i32(<2 x i64> %tmp1, <2 x i64> %tmp2)
27 ret <2 x i32> %tmp3
28}
29
30declare <8 x i8> @llvm.arm.neon.vraddhn.v8i8(<8 x i16>, <8 x i16>) nounwind readnone
31declare <4 x i16> @llvm.arm.neon.vraddhn.v4i16(<4 x i32>, <4 x i32>) nounwind readnone
32declare <2 x i32> @llvm.arm.neon.vraddhn.v2i32(<2 x i64>, <2 x i64>) nounwind readnone