Fix part 1 of pr4682. PICADD is a 16-bit instruction even in thumb2 mode.
[llvm/avr.git] / test / CodeGen / ARM / vabs.ll
bloba7979eec52a5619fea0664aef0a223806343b5e5
1 ; RUN: llvm-as < %s | llc -march=arm -mattr=+neon | FileCheck %s
3 define <8 x i8> @vabss8(<8 x i8>* %A) nounwind {
4 ;CHECK: vabss8:
5 ;CHECK: vabs.s8
6         %tmp1 = load <8 x i8>* %A
7         %tmp2 = call <8 x i8> @llvm.arm.neon.vabs.v8i8(<8 x i8> %tmp1)
8         ret <8 x i8> %tmp2
11 define <4 x i16> @vabss16(<4 x i16>* %A) nounwind {
12 ;CHECK: vabss16:
13 ;CHECK: vabs.s16
14         %tmp1 = load <4 x i16>* %A
15         %tmp2 = call <4 x i16> @llvm.arm.neon.vabs.v4i16(<4 x i16> %tmp1)
16         ret <4 x i16> %tmp2
19 define <2 x i32> @vabss32(<2 x i32>* %A) nounwind {
20 ;CHECK: vabss32:
21 ;CHECK: vabs.s32
22         %tmp1 = load <2 x i32>* %A
23         %tmp2 = call <2 x i32> @llvm.arm.neon.vabs.v2i32(<2 x i32> %tmp1)
24         ret <2 x i32> %tmp2
27 define <2 x float> @vabsf32(<2 x float>* %A) nounwind {
28 ;CHECK: vabsf32:
29 ;CHECK: vabs.f32
30         %tmp1 = load <2 x float>* %A
31         %tmp2 = call <2 x float> @llvm.arm.neon.vabsf.v2f32(<2 x float> %tmp1)
32         ret <2 x float> %tmp2
35 define <16 x i8> @vabsQs8(<16 x i8>* %A) nounwind {
36 ;CHECK: vabsQs8:
37 ;CHECK: vabs.s8
38         %tmp1 = load <16 x i8>* %A
39         %tmp2 = call <16 x i8> @llvm.arm.neon.vabs.v16i8(<16 x i8> %tmp1)
40         ret <16 x i8> %tmp2
43 define <8 x i16> @vabsQs16(<8 x i16>* %A) nounwind {
44 ;CHECK: vabsQs16:
45 ;CHECK: vabs.s16
46         %tmp1 = load <8 x i16>* %A
47         %tmp2 = call <8 x i16> @llvm.arm.neon.vabs.v8i16(<8 x i16> %tmp1)
48         ret <8 x i16> %tmp2
51 define <4 x i32> @vabsQs32(<4 x i32>* %A) nounwind {
52 ;CHECK: vabsQs32:
53 ;CHECK: vabs.s32
54         %tmp1 = load <4 x i32>* %A
55         %tmp2 = call <4 x i32> @llvm.arm.neon.vabs.v4i32(<4 x i32> %tmp1)
56         ret <4 x i32> %tmp2
59 define <4 x float> @vabsQf32(<4 x float>* %A) nounwind {
60 ;CHECK: vabsQf32:
61 ;CHECK: vabs.f32
62         %tmp1 = load <4 x float>* %A
63         %tmp2 = call <4 x float> @llvm.arm.neon.vabsf.v4f32(<4 x float> %tmp1)
64         ret <4 x float> %tmp2
67 declare <8 x i8>  @llvm.arm.neon.vabs.v8i8(<8 x i8>) nounwind readnone
68 declare <4 x i16> @llvm.arm.neon.vabs.v4i16(<4 x i16>) nounwind readnone
69 declare <2 x i32> @llvm.arm.neon.vabs.v2i32(<2 x i32>) nounwind readnone
70 declare <2 x float> @llvm.arm.neon.vabsf.v2f32(<2 x float>) nounwind readnone
72 declare <16 x i8> @llvm.arm.neon.vabs.v16i8(<16 x i8>) nounwind readnone
73 declare <8 x i16> @llvm.arm.neon.vabs.v8i16(<8 x i16>) nounwind readnone
74 declare <4 x i32> @llvm.arm.neon.vabs.v4i32(<4 x i32>) nounwind readnone
75 declare <4 x float> @llvm.arm.neon.vabsf.v4f32(<4 x float>) nounwind readnone