From 222e2a7620e6520ffaf4fc4e69d79c18da31542e Mon Sep 17 00:00:00 2001 From: "Zancanaro; Carlo" Date: Mon, 24 Sep 2012 09:58:17 +1000 Subject: Add the clang library to the repo (with some of my changes, too). --- clang/test/CodeGen/avx-shuffle-builtins.c | 65 +++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 clang/test/CodeGen/avx-shuffle-builtins.c (limited to 'clang/test/CodeGen/avx-shuffle-builtins.c') diff --git a/clang/test/CodeGen/avx-shuffle-builtins.c b/clang/test/CodeGen/avx-shuffle-builtins.c new file mode 100644 index 0000000..d071f82 --- /dev/null +++ b/clang/test/CodeGen/avx-shuffle-builtins.c @@ -0,0 +1,65 @@ +// RUN: %clang_cc1 %s -O3 -triple=x86_64-apple-darwin -target-feature +avx -emit-llvm -o - | FileCheck %s + +// Don't include mm_malloc.h, it's system specific. +#define __MM_MALLOC_H + +#include + +// +// Test LLVM IR codegen of shuffle instructions +// + +__m256 x(__m256 a, __m256 b) { + // Check if the mask is correct + // CHECK: shufflevector{{.*}} + return _mm256_shuffle_ps(a, b, 203); +} + +__m128d test_mm_permute_pd(__m128d a) { + // Check if the mask is correct + // CHECK: shufflevector{{.*}} + return _mm_permute_pd(a, 1); +} + +__m256d test_mm256_permute_pd(__m256d a) { + // Check if the mask is correct + // CHECK: shufflevector{{.*}} + return _mm256_permute_pd(a, 5); +} + +__m128 test_mm_permute_ps(__m128 a) { + // Check if the mask is correct + // CHECK: shufflevector{{.*}} + return _mm_permute_ps(a, 0x1b); +} + +// Test case for PR12401 +__m128 test_mm_permute_ps2(__m128 a) { + // Check if the mask is correct + // CHECK: shufflevector{{.*}} + return _mm_permute_ps(a, 0xe6); +} + +__m256 test_mm256_permute_ps(__m256 a) { + // Check if the mask is correct + // CHECK: shufflevector{{.*}} + return _mm256_permute_ps(a, 0x1b); +} + +__m256d test_mm256_permute2f128_pd(__m256d a, __m256d b) { + // Check if the mask is correct + // CHECK: @llvm.x86.avx.vperm2f128.pd.256 + return _mm256_permute2f128_pd(a, b, 0x31); +} + +__m256 test_mm256_permute2f128_ps(__m256 a, __m256 b) { + // Check if the mask is correct + // CHECK: @llvm.x86.avx.vperm2f128.ps.256 + return _mm256_permute2f128_ps(a, b, 0x13); +} + +__m256i test_mm256_permute2f128_si256(__m256i a, __m256i b) { + // Check if the mask is correct + // CHECK: @llvm.x86.avx.vperm2f128.si.256 + return _mm256_permute2f128_si256(a, b, 0x20); +} -- cgit v1.2.3