1 // RUN: %clang_cc1 -x c -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +f16c -emit-llvm -o - -Wall -Werror | FileCheck %s
2 // RUN: %clang_cc1 -x c -ffreestanding %s -triple=i386-apple-darwin -target-feature +f16c -emit-llvm -o - -Wall -Werror | FileCheck %s
3 // RUN: %clang_cc1 -x c++ -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +f16c -emit-llvm -o - -Wall -Werror | FileCheck %s
4 // RUN: %clang_cc1 -x c++ -ffreestanding %s -triple=i386-apple-darwin -target-feature +f16c -emit-llvm -o - -Wall -Werror | FileCheck %s
9 float test_cvtsh_ss(unsigned short a
) {
10 // CHECK-LABEL: test_cvtsh_ss
11 // CHECK: insertelement <8 x i16> poison, i16 %{{.*}}, i32 0
12 // CHECK: insertelement <8 x i16> %{{.*}}, i16 0, i32 1
13 // CHECK: insertelement <8 x i16> %{{.*}}, i16 0, i32 2
14 // CHECK: insertelement <8 x i16> %{{.*}}, i16 0, i32 3
15 // CHECK: insertelement <8 x i16> %{{.*}}, i16 0, i32 4
16 // CHECK: insertelement <8 x i16> %{{.*}}, i16 0, i32 5
17 // CHECK: insertelement <8 x i16> %{{.*}}, i16 0, i32 6
18 // CHECK: insertelement <8 x i16> %{{.*}}, i16 0, i32 7
19 // CHECK: shufflevector <8 x i16> %{{.*}}, <8 x i16> poison, <4 x i32> <i32 0, i32 1, i32 2, i32 3>
20 // CHECK: fpext <4 x half> %{{.*}} to <4 x float>
21 // CHECK: extractelement <4 x float> %{{.*}}, i32 0
25 unsigned short test_cvtss_sh(float a
) {
26 // CHECK-LABEL: test_cvtss_sh
27 // CHECK: insertelement <4 x float> poison, float %{{.*}}, i32 0
28 // CHECK: insertelement <4 x float> %{{.*}}, float 0.000000e+00, i32 1
29 // CHECK: insertelement <4 x float> %{{.*}}, float 0.000000e+00, i32 2
30 // CHECK: insertelement <4 x float> %{{.*}}, float 0.000000e+00, i32 3
31 // CHECK: call <8 x i16> @llvm.x86.vcvtps2ph.128(<4 x float> %{{.*}}, i32 0)
32 // CHECK: extractelement <8 x i16> %{{.*}}, i32 0
33 return _cvtss_sh(a
, 0);
36 __m128
test_mm_cvtph_ps(__m128i a
) {
37 // CHECK-LABEL: test_mm_cvtph_ps
38 // CHECK: shufflevector <8 x i16> %{{.*}}, <8 x i16> poison, <4 x i32> <i32 0, i32 1, i32 2, i32 3>
39 // CHECK: fpext <4 x half> %{{.*}} to <4 x float>
40 return _mm_cvtph_ps(a
);
43 __m256
test_mm256_cvtph_ps(__m128i a
) {
44 // CHECK-LABEL: test_mm256_cvtph_ps
45 // CHECK: fpext <8 x half> %{{.*}} to <8 x float>
46 return _mm256_cvtph_ps(a
);
49 __m128i
test_mm_cvtps_ph(__m128 a
) {
50 // CHECK-LABEL: test_mm_cvtps_ph
51 // CHECK: call <8 x i16> @llvm.x86.vcvtps2ph.128(<4 x float> %{{.*}}, i32 0)
52 return _mm_cvtps_ph(a
, 0);
55 __m128i
test_mm256_cvtps_ph(__m256 a
) {
56 // CHECK-LABEL: test_mm256_cvtps_ph
57 // CHECK: call <8 x i16> @llvm.x86.vcvtps2ph.256(<8 x float> %{{.*}}, i32 0)
58 return _mm256_cvtps_ph(a
, 0);