2016-09-28 19:59:09 +08:00
|
|
|
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +sse4a -emit-llvm -o - -Wall -Werror | FileCheck %s
|
2012-05-30 03:10:17 +08:00
|
|
|
|
2015-09-08 04:10:11 +08:00
|
|
|
|
|
|
|
#include <x86intrin.h>
|
2012-05-30 03:10:17 +08:00
|
|
|
|
2016-03-10 22:44:32 +08:00
|
|
|
// NOTE: This should match the tests in llvm/test/CodeGen/X86/sse4a-intrinsics-fast-isel.ll
|
|
|
|
|
2015-12-05 19:08:51 +08:00
|
|
|
__m128i test_mm_extracti_si64(__m128i x) {
|
|
|
|
// CHECK-LABEL: test_mm_extracti_si64
|
2015-09-08 04:10:11 +08:00
|
|
|
// CHECK: call <2 x i64> @llvm.x86.sse4a.extrqi(<2 x i64> %{{[^,]+}}, i8 3, i8 2)
|
2012-05-30 03:10:17 +08:00
|
|
|
return _mm_extracti_si64(x, 3, 2);
|
|
|
|
}
|
|
|
|
|
2015-12-05 19:08:51 +08:00
|
|
|
__m128i test_mm_extract_si64(__m128i x, __m128i y) {
|
|
|
|
// CHECK-LABEL: test_mm_extract_si64
|
2015-09-08 04:10:11 +08:00
|
|
|
// CHECK: call <2 x i64> @llvm.x86.sse4a.extrq(<2 x i64> %{{[^,]+}}, <16 x i8> %{{[^,]+}})
|
2012-05-30 03:10:17 +08:00
|
|
|
return _mm_extract_si64(x, y);
|
|
|
|
}
|
|
|
|
|
2015-12-05 19:08:51 +08:00
|
|
|
__m128i test_mm_inserti_si64(__m128i x, __m128i y) {
|
|
|
|
// CHECK-LABEL: test_mm_inserti_si64
|
2015-09-08 04:10:11 +08:00
|
|
|
// CHECK: call <2 x i64> @llvm.x86.sse4a.insertqi(<2 x i64> %{{[^,]+}}, <2 x i64> %{{[^,]+}}, i8 5, i8 6)
|
2012-05-30 03:10:17 +08:00
|
|
|
return _mm_inserti_si64(x, y, 5, 6);
|
|
|
|
}
|
|
|
|
|
2015-12-05 19:08:51 +08:00
|
|
|
__m128i test_mm_insert_si64(__m128i x, __m128i y) {
|
|
|
|
// CHECK-LABEL: test_mm_insert_si64
|
2015-09-08 04:10:11 +08:00
|
|
|
// CHECK: call <2 x i64> @llvm.x86.sse4a.insertq(<2 x i64> %{{[^,]+}}, <2 x i64> %{{[^,]+}})
|
2012-05-30 03:10:17 +08:00
|
|
|
return _mm_insert_si64(x, y);
|
|
|
|
}
|
|
|
|
|
2015-12-05 19:08:51 +08:00
|
|
|
void test_mm_stream_sd(double *p, __m128d a) {
|
|
|
|
// CHECK-LABEL: test_mm_stream_sd
|
2016-06-17 22:28:16 +08:00
|
|
|
// CHECK: extractelement <2 x double> %{{.*}}, i64 0
|
|
|
|
// CHECK: store double %{{.*}}, double* %{{.*}}, align 1, !nontemporal
|
|
|
|
_mm_stream_sd(p, a);
|
2012-05-30 03:10:17 +08:00
|
|
|
}
|
|
|
|
|
2015-12-05 19:08:51 +08:00
|
|
|
void test_mm_stream_ss(float *p, __m128 a) {
|
|
|
|
// CHECK-LABEL: test_mm_stream_ss
|
2016-06-17 22:28:16 +08:00
|
|
|
// CHECK: extractelement <4 x float> %{{.*}}, i64 0
|
|
|
|
// CHECK: store float %{{.*}}, float* %{{.*}}, align 1, !nontemporal
|
2012-05-30 03:10:17 +08:00
|
|
|
_mm_stream_ss(p, a);
|
|
|
|
}
|