mirror of https://github.com/microsoft/clang.git
[X86] NFC Include immintrin.h in CodeGen tests
Following r333110: "Move all Intel defined intrinsic includes into immintrin.h" git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@333160 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6948c9e096
commit
be604857d3
|
@ -1,6 +1,6 @@
|
|||
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -ffreestanding -target-feature +adx -emit-llvm -o - %s | FileCheck %s
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
unsigned char test_addcarryx_u32(unsigned char __cf, unsigned int __x,
|
||||
unsigned int __y, unsigned int *__p) {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +avx -fno-signed-char -emit-llvm -o - -Wall -Werror | FileCheck %s
|
||||
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
// NOTE: This should match the tests in llvm/test/CodeGen/X86/sse-intrinsics-fast-isel.ll
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +avx2 -fno-signed-char -emit-llvm -o - -Wall -Werror | FileCheck %s
|
||||
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
// NOTE: This should match the tests in llvm/test/CodeGen/X86/avx2-intrinsics-fast-isel.ll
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +bmi -emit-llvm -o - -Wall -Werror | FileCheck %s
|
||||
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
// NOTE: This should match the tests in llvm/test/CodeGen/X86/bmi-intrinsics-fast-isel.ll
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding %s -triple=i386-apple-darwin -target-feature +bmi2 -emit-llvm -o - | FileCheck %s --check-prefix=B32
|
||||
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
unsigned int test_bzhi_u32(unsigned int __X, unsigned int __Y) {
|
||||
// CHECK: @llvm.x86.bmi.bzhi.32
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-apple-darwin -target-feature +clflushopt -emit-llvm -o - -Wall -Werror | FileCheck %s
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
void test_mm_clflushopt(char * __m) {
|
||||
//CHECK-LABEL: @test_mm_clflushopt
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-apple-darwin -target-feature +clwb -emit-llvm -o - -Wall -Werror | FileCheck %s
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
void test_mm_clwb(const void *__m) {
|
||||
//CHECK-LABEL: @test_mm_clwb
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding -Wall -pedantic -triple x86_64-unknown-unknown -target-feature +movdiri -target-feature +movdir64b %s -emit-llvm -o - | FileCheck %s --check-prefix=X86_64 --check-prefix=CHECK
|
||||
// RUN: %clang_cc1 -ffreestanding -Wall -pedantic -triple i386-unknown-unknown -target-feature +movdiri -target-feature +movdir64b %s -emit-llvm -o - | FileCheck %s --check-prefix=X86 --check-prefix=CHECK
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
#include <stdint.h>
|
||||
|
||||
void test_directstore32(void *dst, uint32_t value) {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-unknown-unknown -target-feature +wbnoinvd -emit-llvm -o - -Wall -Werror | FileCheck %s
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
void test_wbnoinvd(void) {
|
||||
//CHECK-LABEL: @test_wbnoinvd
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-unknown-unknown -target-feature +cldemote -emit-llvm -o - -Wall -Werror | FileCheck %s
|
||||
// RUN: %clang_cc1 %s -ffreestanding -triple=i386-unknown-unknown -target-feature +cldemote -emit-llvm -o - -Wall -Werror | FileCheck %s
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
void test_cldemote(const void *p) {
|
||||
//CHECK-LABEL: @test_cldemote
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +f16c -emit-llvm -o - -Wall -Werror | FileCheck %s
|
||||
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
float test_cvtsh_ss(unsigned short a) {
|
||||
// CHECK-LABEL: test_cvtsh_ss
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +fsgsbase -emit-llvm -o - | FileCheck %s
|
||||
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
unsigned int test_readfsbase_u32()
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +lzcnt -emit-llvm -o - | FileCheck %s
|
||||
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
unsigned short test__lzcnt16(unsigned short __X)
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +ssse3 -fno-signed-char -emit-llvm -o - -Wall -Werror | FileCheck %s
|
||||
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
__m64 test_mm_abs_pi8(__m64 a) {
|
||||
// CHECK-LABEL: test_mm_abs_pi8
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +popcnt -emit-llvm -o - | FileCheck %s
|
||||
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
unsigned int test_mm_popcnt_u32(unsigned int __X) {
|
||||
//CHECK: call i32 @llvm.ctpop.i32
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-unknown-unknown -target-feature +ptwrite -emit-llvm -o - -Wall -Werror -pedantic | FileCheck %s --check-prefix=X86 --check-prefix=X86_64
|
||||
// RUN: %clang_cc1 %s -ffreestanding -triple=i386-unknown-unknown -target-feature +ptwrite -emit-llvm -o - -Wall -Werror -pedantic | FileCheck %s --check-prefix=X86
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding -triple x86_64-unknown-unknown -target-feature +rdpid -emit-llvm -o - %s | FileCheck %s
|
||||
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
unsigned int test_rdpid_u32(void) {
|
||||
// CHECK-LABEL: @test_rdpid_u32
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding -triple x86_64-unknown-unknown -target-feature +rdrnd -target-feature +rdseed -emit-llvm -o - %s | FileCheck %s
|
||||
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
int rdrand16(unsigned short *p) {
|
||||
return _rdrand16_step(p);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +sse -emit-llvm -o - -Wall -Werror | FileCheck %s
|
||||
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
// NOTE: This should match the tests in llvm/test/CodeGen/X86/sse-intrinsics-fast-isel.ll
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +sse2 -fno-signed-char -emit-llvm -o - -Wall -Werror | FileCheck %s
|
||||
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
// NOTE: This should match the tests in llvm/test/CodeGen/X86/sse2-intrinsics-fast-isel.ll
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +sse3 -emit-llvm -o - -Wall -Werror | FileCheck %s
|
||||
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
// NOTE: This should match the tests in llvm/test/CodeGen/X86/sse3-intrinsics-fast-isel.ll
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +sse4.1 -fno-signed-char -emit-llvm -o - -Wall -Werror | FileCheck %s
|
||||
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
// NOTE: This should match the tests in llvm/test/CodeGen/X86/sse41-intrinsics-fast-isel.ll
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +sse4.2 -fno-signed-char -emit-llvm -o - -Wall -Werror | FileCheck %s
|
||||
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
// NOTE: This should match the tests in llvm/test/CodeGen/X86/sse42-intrinsics-fast-isel.ll
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +ssse3 -emit-llvm -o - -Wall -Werror | FileCheck %s
|
||||
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
// NOTE: This should match the tests in llvm/test/CodeGen/X86/ssse3-intrinsics-fast-isel.ll
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 %s -ffreestanding -triple x86_64-unknown-unknown -emit-llvm -target-feature +waitpkg -Wall -pedantic -o - | FileCheck %s
|
||||
// RUN: %clang_cc1 %s -ffreestanding -triple i386-unknown-unknown -emit-llvm -target-feature +waitpkg -Wall -pedantic -o - | FileCheck %s
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +sse4.1 -target-feature +avx -target-feature +avx2 -target-feature +avx512f -emit-llvm -o - -Wall -Werror -fmax-type-align=16 | FileCheck %s --check-prefix=CHECK
|
||||
// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +sse4.1 -target-feature +avx -target-feature +avx2 -target-feature +avx512f -fno-signed-char -emit-llvm -o - -Wall -Werror -fmax-type-align=16 | FileCheck %s --check-prefix=CHECK
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
// (PR33830) Tests ensure the correct alignment of non-temporal load/stores on darwin targets where fmax-type-align is set to 16.
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 %s -ffreestanding -triple x86_64-unknown-unknown -target-feature +pconfig -emit-llvm -o - | FileCheck %s --check-prefix=CHECK-64
|
||||
// RUN: %clang_cc1 %s -ffreestanding -triple i386 -target-feature +pconfig -emit-llvm -o - | FileCheck %s --check-prefix=CHECK-32
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 %s -ffreestanding -triple x86_64-unknown-unknown -target-feature +sgx -emit-llvm -o - | FileCheck %s --check-prefix=CHECK-64
|
||||
// RUN: %clang_cc1 %s -ffreestanding -triple i386 -target-feature +sgx -emit-llvm -o - | FileCheck %s --check-prefix=CHECK-32
|
||||
|
||||
#include <x86intrin.h>
|
||||
#include <immintrin.h>
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
|
|
Loading…
Reference in New Issue