]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/config/i386/x86intrin.h
x86intrin.h: New header file to support all x86 intrinsics
[thirdparty/gcc.git] / gcc / config / i386 / x86intrin.h
1 /* Copyright (C) 2008 Free Software Foundation, Inc.
2
3 This file is part of GCC.
4
5 GCC is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
8 any later version.
9
10 GCC is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with GCC; see the file COPYING. If not, write to
17 the Free Software Foundation, 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
19
20 /* As a special exception, if you include this header file into source
21 files compiled by GCC, this header file does not by itself cause
22 the resulting executable to be covered by the GNU General Public
23 License. This exception does not however invalidate any other
24 reasons why the executable file might be covered by the GNU General
25 Public License. */
26
27 #ifndef _X86INTRIN_H_INCLUDED
28 #define _X86INTRIN_H_INCLUDED
29
30 #ifdef __MMX__
31 #include <mmintrin.h>
32 #endif
33
34 #ifdef __SSE__
35 #include <xmmintrin.h>
36 #endif
37
38 #ifdef __SSE2__
39 #include <emmintrin.h>
40 #endif
41
42 #ifdef __SSE3__
43 #include <pmmintrin.h>
44 #endif
45
46 #ifdef __SSSE3__
47 #include <tmmintrin.h>
48 #endif
49
50 #ifdef __SSE4a__
51 #include <ammintrin.h>
52 #endif
53
54 #if defined (__SSE4_2__) || defined (__SSE4_1__)
55 #include <smmintrin.h>
56 #endif
57
58 #ifdef __SSE5__
59 #include <bmmintrin.h>
60 #endif
61
62 #if defined (__AES__) || defined (__PCLMUL__)
63 #include <wmmintrin.h>
64 #endif
65
66 /* For including AVX instructions */
67 #include <immintrin.h>
68
69 #ifdef __3dNOW__
70 #include <mm3dnow.h>
71 #endif
72
73 #endif /* _X86INTRIN_H_INCLUDED */