blob: 6b2b1b1b186ddd46994826738be54a2a2de30f18 [file] [log] [blame]
Bruno Cardoso Lopes3f7eb9a2011-08-24 01:35:04 +00001// RUN: %clang_cc1 %s -O3 -triple=x86_64-apple-darwin -target-feature +avx -emit-llvm -o - | FileCheck %s
2
3// Don't include mm_malloc.h, it's system specific.
4#define __MM_MALLOC_H
5
6#include <immintrin.h>
7
8//
9// Test LLVM IR codegen of shuffle instructions
10//
11
12__m256 x(__m256 a, __m256 b) {
13 // Check if the mask is correct
14 // CHECK: shufflevector{{.*}}<i32 3, i32 2, i32 8, i32 11, i32 7, i32 6, i32 12, i32 15>
15 return _mm256_shuffle_ps(a, b, 203);
16}
Craig Topper10c57a82012-02-08 05:16:54 +000017
18__m128d test_mm_permute_pd(__m128d a) {
19 // Check if the mask is correct
20 // CHECK: shufflevector{{.*}}<i32 1, i32 0>
21 return _mm_permute_pd(a, 1);
22}
23
24__m256d test_mm256_permute_pd(__m256d a) {
25 // Check if the mask is correct
26 // CHECK: shufflevector{{.*}}<i32 1, i32 0, i32 3, i32 2>
27 return _mm256_permute_pd(a, 5);
28}
29
30__m128 test_mm_permute_ps(__m128 a) {
31 // Check if the mask is correct
32 // CHECK: shufflevector{{.*}}<i32 3, i32 2, i32 1, i32 0>
33 return _mm_permute_ps(a, 0x1b);
34}
35
36__m256 test_mm256_permute_ps(__m256 a) {
37 // Check if the mask is correct
38 // CHECK: shufflevector{{.*}}<i32 3, i32 2, i32 1, i32 0, i32 7, i32 6, i32 5, i32 4>
39 return _mm256_permute_ps(a, 0x1b);
40}