1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 #ifndef AVUTIL_X86_CPU_H
20 #define AVUTIL_X86_CPU_H
21 
22 #include "config.h"
23 
24 #include "libavutil/cpu.h"
25 #include "libavutil/cpu_internal.h"
26 
27 #define AV_CPU_FLAG_AMD3DNOW    AV_CPU_FLAG_3DNOW
28 #define AV_CPU_FLAG_AMD3DNOWEXT AV_CPU_FLAG_3DNOWEXT
29 
30 #define X86_AMD3DNOW(flags)         CPUEXT(flags, AMD3DNOW)
31 #define X86_AMD3DNOWEXT(flags)      CPUEXT(flags, AMD3DNOWEXT)
32 #define X86_MMX(flags)              CPUEXT(flags, MMX)
33 #define X86_MMXEXT(flags)           CPUEXT(flags, MMXEXT)
34 #define X86_SSE(flags)              CPUEXT(flags, SSE)
35 #define X86_SSE2(flags)             CPUEXT(flags, SSE2)
36 #define X86_SSE3(flags)             CPUEXT(flags, SSE3)
37 #define X86_SSSE3(flags)            CPUEXT(flags, SSSE3)
38 #define X86_SSE4(flags)             CPUEXT(flags, SSE4)
39 #define X86_SSE42(flags)            CPUEXT(flags, SSE42)
40 #define X86_AVX(flags)              CPUEXT(flags, AVX)
41 #define X86_XOP(flags)              CPUEXT(flags, XOP)
42 #define X86_FMA3(flags)             CPUEXT(flags, FMA3)
43 #define X86_FMA4(flags)             CPUEXT(flags, FMA4)
44 #define X86_AVX2(flags)             CPUEXT(flags, AVX2)
45 
46 #define EXTERNAL_AMD3DNOW(flags)    CPUEXT_SUFFIX(flags, _EXTERNAL, AMD3DNOW)
47 #define EXTERNAL_AMD3DNOWEXT(flags) CPUEXT_SUFFIX(flags, _EXTERNAL, AMD3DNOWEXT)
48 #define EXTERNAL_MMX(flags)         CPUEXT_SUFFIX(flags, _EXTERNAL, MMX)
49 #define EXTERNAL_MMXEXT(flags)      CPUEXT_SUFFIX(flags, _EXTERNAL, MMXEXT)
50 #define EXTERNAL_SSE(flags)         CPUEXT_SUFFIX(flags, _EXTERNAL, SSE)
51 #define EXTERNAL_SSE2(flags)        CPUEXT_SUFFIX(flags, _EXTERNAL, SSE2)
52 #define EXTERNAL_SSE3(flags)        CPUEXT_SUFFIX(flags, _EXTERNAL, SSE3)
53 #define EXTERNAL_SSSE3(flags)       CPUEXT_SUFFIX(flags, _EXTERNAL, SSSE3)
54 #define EXTERNAL_SSE4(flags)        CPUEXT_SUFFIX(flags, _EXTERNAL, SSE4)
55 #define EXTERNAL_SSE42(flags)       CPUEXT_SUFFIX(flags, _EXTERNAL, SSE42)
56 #define EXTERNAL_AVX(flags)         CPUEXT_SUFFIX(flags, _EXTERNAL, AVX)
57 #define EXTERNAL_XOP(flags)         CPUEXT_SUFFIX(flags, _EXTERNAL, XOP)
58 #define EXTERNAL_FMA3(flags)        CPUEXT_SUFFIX(flags, _EXTERNAL, FMA3)
59 #define EXTERNAL_FMA4(flags)        CPUEXT_SUFFIX(flags, _EXTERNAL, FMA4)
60 #define EXTERNAL_AVX2(flags)        CPUEXT_SUFFIX(flags, _EXTERNAL, AVX2)
61 
62 #define INLINE_AMD3DNOW(flags)      CPUEXT_SUFFIX(flags, _INLINE, AMD3DNOW)
63 #define INLINE_AMD3DNOWEXT(flags)   CPUEXT_SUFFIX(flags, _INLINE, AMD3DNOWEXT)
64 #define INLINE_MMX(flags)           CPUEXT_SUFFIX(flags, _INLINE, MMX)
65 #define INLINE_MMXEXT(flags)        CPUEXT_SUFFIX(flags, _INLINE, MMXEXT)
66 #define INLINE_SSE(flags)           CPUEXT_SUFFIX(flags, _INLINE, SSE)
67 #define INLINE_SSE2(flags)          CPUEXT_SUFFIX(flags, _INLINE, SSE2)
68 #define INLINE_SSE3(flags)          CPUEXT_SUFFIX(flags, _INLINE, SSE3)
69 #define INLINE_SSSE3(flags)         CPUEXT_SUFFIX(flags, _INLINE, SSSE3)
70 #define INLINE_SSE4(flags)          CPUEXT_SUFFIX(flags, _INLINE, SSE4)
71 #define INLINE_SSE42(flags)         CPUEXT_SUFFIX(flags, _INLINE, SSE42)
72 #define INLINE_AVX(flags)           CPUEXT_SUFFIX(flags, _INLINE, AVX)
73 #define INLINE_XOP(flags)           CPUEXT_SUFFIX(flags, _INLINE, XOP)
74 #define INLINE_FMA3(flags)          CPUEXT_SUFFIX(flags, _INLINE, FMA3)
75 #define INLINE_FMA4(flags)          CPUEXT_SUFFIX(flags, _INLINE, FMA4)
76 #define INLINE_AVX2(flags)          CPUEXT_SUFFIX(flags, _INLINE, AVX2)
77 
78 void ff_cpu_cpuid(int index, int *eax, int *ebx, int *ecx, int *edx);
79 void ff_cpu_xgetbv(int op, int *eax, int *edx);
80 int  ff_cpu_cpuid_test(void);
81 
82 #endif /* AVUTIL_X86_CPU_H */
83