diff options
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/CodeGen/ARM/vld4.ll | 54 | 
1 files changed, 54 insertions, 0 deletions
| diff --git a/llvm/test/CodeGen/ARM/vld4.ll b/llvm/test/CodeGen/ARM/vld4.ll index 6e6bb75c168..08f67a793a5 100644 --- a/llvm/test/CodeGen/ARM/vld4.ll +++ b/llvm/test/CodeGen/ARM/vld4.ll @@ -5,6 +5,11 @@  %struct.__neon_int32x2x4_t = type { <2 x i32>, <2 x i32>, <2 x i32>, <2 x i32> }  %struct.__neon_float32x2x4_t = type { <2 x float>, <2 x float>, <2 x float>, <2 x float> } +%struct.__neon_int8x16x4_t = type { <16 x i8>,  <16 x i8>,  <16 x i8>, <16 x i8> } +%struct.__neon_int16x8x4_t = type { <8 x i16>, <8 x i16>, <8 x i16>, <8 x i16> } +%struct.__neon_int32x4x4_t = type { <4 x i32>, <4 x i32>, <4 x i32>, <4 x i32> } +%struct.__neon_float32x4x4_t = type { <4 x float>, <4 x float>, <4 x float>, <4 x float> } +  define <8 x i8> @vld4i8(i8* %A) nounwind {  ;CHECK: vld4i8:  ;CHECK: vld4.8 @@ -45,7 +50,56 @@ define <2 x float> @vld4f(float* %A) nounwind {  	ret <2 x float> %tmp4  } +define <16 x i8> @vld4Qi8(i8* %A) nounwind { +;CHECK: vld4Qi8: +;CHECK: vld4.8 +;CHECK: vld4.8 +	%tmp1 = call %struct.__neon_int8x16x4_t @llvm.arm.neon.vld4.v16i8(i8* %A) +        %tmp2 = extractvalue %struct.__neon_int8x16x4_t %tmp1, 0 +        %tmp3 = extractvalue %struct.__neon_int8x16x4_t %tmp1, 2 +        %tmp4 = add <16 x i8> %tmp2, %tmp3 +	ret <16 x i8> %tmp4 +} + +define <8 x i16> @vld4Qi16(i16* %A) nounwind { +;CHECK: vld4Qi16: +;CHECK: vld4.16 +;CHECK: vld4.16 +	%tmp1 = call %struct.__neon_int16x8x4_t @llvm.arm.neon.vld4.v8i16(i16* %A) +        %tmp2 = extractvalue %struct.__neon_int16x8x4_t %tmp1, 0 +        %tmp3 = extractvalue %struct.__neon_int16x8x4_t %tmp1, 2 +        %tmp4 = add <8 x i16> %tmp2, %tmp3 +	ret <8 x i16> %tmp4 +} + +define <4 x i32> @vld4Qi32(i32* %A) nounwind { +;CHECK: vld4Qi32: +;CHECK: vld4.32 +;CHECK: vld4.32 +	%tmp1 = call %struct.__neon_int32x4x4_t @llvm.arm.neon.vld4.v4i32(i32* %A) +        %tmp2 = extractvalue %struct.__neon_int32x4x4_t %tmp1, 0 +        %tmp3 = extractvalue %struct.__neon_int32x4x4_t %tmp1, 2 +        %tmp4 = add <4 x i32> %tmp2, %tmp3 +	ret <4 x i32> %tmp4 +} + +define <4 x float> @vld4Qf(float* %A) nounwind { +;CHECK: vld4Qf: +;CHECK: vld4.32 +;CHECK: vld4.32 +	%tmp1 = call %struct.__neon_float32x4x4_t @llvm.arm.neon.vld4.v4f32(float* %A) +        %tmp2 = extractvalue %struct.__neon_float32x4x4_t %tmp1, 0 +        %tmp3 = extractvalue %struct.__neon_float32x4x4_t %tmp1, 2 +        %tmp4 = add <4 x float> %tmp2, %tmp3 +	ret <4 x float> %tmp4 +} +  declare %struct.__neon_int8x8x4_t @llvm.arm.neon.vld4.v8i8(i8*) nounwind readonly  declare %struct.__neon_int16x4x4_t @llvm.arm.neon.vld4.v4i16(i8*) nounwind readonly  declare %struct.__neon_int32x2x4_t @llvm.arm.neon.vld4.v2i32(i8*) nounwind readonly  declare %struct.__neon_float32x2x4_t @llvm.arm.neon.vld4.v2f32(i8*) nounwind readonly + +declare %struct.__neon_int8x16x4_t @llvm.arm.neon.vld4.v16i8(i8*) nounwind readonly +declare %struct.__neon_int16x8x4_t @llvm.arm.neon.vld4.v8i16(i8*) nounwind readonly +declare %struct.__neon_int32x4x4_t @llvm.arm.neon.vld4.v4i32(i8*) nounwind readonly +declare %struct.__neon_float32x4x4_t @llvm.arm.neon.vld4.v4f32(i8*) nounwind readonly | 

