Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 %s -triple=x86_64-apple-darwin -target-feature +sse4a -emit-llvm -o - -Werror | FileCheck %s
      2 
      3 // Don't include mm_malloc.h, it's system specific.
      4 #define __MM_MALLOC_H
      5 
      6 #include <x86intrin.h>
      7 
      8 __m128i test_mm_extracti_si64(__m128i x) {
      9   // CHECK-LABEL: test_mm_extracti_si64
     10   // CHECK: call <2 x i64> @llvm.x86.sse4a.extrqi(<2 x i64> %{{[^,]+}}, i8 3, i8 2)
     11   return _mm_extracti_si64(x, 3, 2);
     12 }
     13 
     14 __m128i test_mm_extract_si64(__m128i x, __m128i y) {
     15   // CHECK-LABEL: test_mm_extract_si64
     16   // CHECK: call <2 x i64> @llvm.x86.sse4a.extrq(<2 x i64> %{{[^,]+}}, <16 x i8> %{{[^,]+}})
     17   return _mm_extract_si64(x, y);
     18 }
     19 
     20 __m128i test_mm_inserti_si64(__m128i x, __m128i y) {
     21   // CHECK-LABEL: test_mm_inserti_si64
     22   // CHECK: call <2 x i64> @llvm.x86.sse4a.insertqi(<2 x i64> %{{[^,]+}}, <2 x i64> %{{[^,]+}}, i8 5, i8 6)
     23   return _mm_inserti_si64(x, y, 5, 6);
     24 }
     25 
     26 __m128i test_mm_insert_si64(__m128i x, __m128i y) {
     27   // CHECK-LABEL: test_mm_insert_si64
     28   // CHECK: call <2 x i64> @llvm.x86.sse4a.insertq(<2 x i64> %{{[^,]+}}, <2 x i64> %{{[^,]+}})
     29   return _mm_insert_si64(x, y);
     30 }
     31 
     32 void test_mm_stream_sd(double *p, __m128d a) {
     33   // CHECK-LABEL: test_mm_stream_sd
     34   // CHECK: call void @llvm.x86.sse4a.movnt.sd(i8* %{{[^,]+}}, <2 x double> %{{[^,]+}})
     35   _mm_stream_sd(p, a);
     36 }
     37 
     38 void test_mm_stream_ss(float *p, __m128 a) {
     39   // CHECK-LABEL: test_mm_stream_ss
     40   // CHECK: call void @llvm.x86.sse4a.movnt.ss(i8* %{{[^,]+}}, <4 x float> %{{[^,]+}})
     41   _mm_stream_ss(p, a);
     42 }
     43