2015-12-08 16:51:59 -08:00
|
|
|
/*===---- x86intrin.h - X86 intrinsics -------------------------------------===
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*
|
|
|
|
*===-----------------------------------------------------------------------===
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __X86INTRIN_H
|
|
|
|
#define __X86INTRIN_H
|
|
|
|
|
|
|
|
#include <ia32intrin.h>
|
|
|
|
|
|
|
|
#include <immintrin.h>
|
|
|
|
|
2017-06-16 11:35:00 -07:00
|
|
|
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__3dNOW__)
|
2015-12-08 16:51:59 -08:00
|
|
|
#include <mm3dnow.h>
|
|
|
|
#endif
|
|
|
|
|
2017-06-16 11:35:00 -07:00
|
|
|
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__PRFCHW__)
|
2015-12-08 16:51:59 -08:00
|
|
|
#include <prfchwintrin.h>
|
|
|
|
#endif
|
|
|
|
|
2017-06-16 11:35:00 -07:00
|
|
|
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__SSE4A__)
|
2015-12-08 16:51:59 -08:00
|
|
|
#include <ammintrin.h>
|
|
|
|
#endif
|
|
|
|
|
2017-06-16 11:35:00 -07:00
|
|
|
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__FMA4__)
|
2015-12-08 16:51:59 -08:00
|
|
|
#include <fma4intrin.h>
|
|
|
|
#endif
|
|
|
|
|
2017-06-16 11:35:00 -07:00
|
|
|
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__XOP__)
|
2015-12-08 16:51:59 -08:00
|
|
|
#include <xopintrin.h>
|
|
|
|
#endif
|
|
|
|
|
2017-06-16 11:35:00 -07:00
|
|
|
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__TBM__)
|
2015-12-08 16:51:59 -08:00
|
|
|
#include <tbmintrin.h>
|
|
|
|
#endif
|
|
|
|
|
2017-09-30 15:20:12 -07:00
|
|
|
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__LWP__)
|
|
|
|
#include <lwpintrin.h>
|
|
|
|
#endif
|
|
|
|
|
2017-06-16 11:35:00 -07:00
|
|
|
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__MWAITX__)
|
|
|
|
#include <mwaitxintrin.h>
|
|
|
|
#endif
|
|
|
|
|
2017-09-30 15:20:12 -07:00
|
|
|
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__CLZERO__)
|
|
|
|
#include <clzerointrin.h>
|
|
|
|
#endif
|
2015-12-08 16:51:59 -08:00
|
|
|
|
2018-08-04 23:20:05 -07:00
|
|
|
|
2015-12-08 16:51:59 -08:00
|
|
|
#endif /* __X86INTRIN_H */
|