zig/lib/include/x86intrin.h

55 lines
1.4 KiB
C
Raw Normal View History

2015-12-09 08:51:59 +08:00
/*===---- x86intrin.h - X86 intrinsics -------------------------------------===
*
* Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
* See https://llvm.org/LICENSE.txt for license information.
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
2015-12-09 08:51:59 +08:00
*
*===-----------------------------------------------------------------------===
*/
#ifndef __X86INTRIN_H
#define __X86INTRIN_H
#include <ia32intrin.h>
#include <immintrin.h>
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__3dNOW__)
2015-12-09 08:51:59 +08:00
#include <mm3dnow.h>
#endif
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__PRFCHW__)
2015-12-09 08:51:59 +08:00
#include <prfchwintrin.h>
#endif
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__SSE4A__)
2015-12-09 08:51:59 +08:00
#include <ammintrin.h>
#endif
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__FMA4__)
2015-12-09 08:51:59 +08:00
#include <fma4intrin.h>
#endif
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__XOP__)
2015-12-09 08:51:59 +08:00
#include <xopintrin.h>
#endif
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__TBM__)
2015-12-09 08:51:59 +08:00
#include <tbmintrin.h>
#endif
2017-10-01 06:20:12 +08:00
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__LWP__)
#include <lwpintrin.h>
#endif
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__MWAITX__)
#include <mwaitxintrin.h>
#endif
2017-10-01 06:20:12 +08:00
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__CLZERO__)
#include <clzerointrin.h>
#endif
2015-12-09 08:51:59 +08:00
2018-08-05 14:20:05 +08:00
2015-12-09 08:51:59 +08:00
#endif /* __X86INTRIN_H */