]> git.sesse.net Git - ffmpeg/blob - libavutil/cpu.c
e23d40180fbc8fa4bf6ea3b104b529fbaa0fa658
[ffmpeg] / libavutil / cpu.c
1 /*
2  * This file is part of Libav.
3  *
4  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #include "cpu.h"
20 #include "config.h"
21
22 static int cpuflags_mask = -1, checked;
23
24 int av_get_cpu_flags(void)
25 {
26     static int flags;
27
28     if (checked)
29         return flags;
30
31     if (ARCH_ARM) flags = ff_get_cpu_flags_arm();
32     if (ARCH_PPC) flags = ff_get_cpu_flags_ppc();
33     if (ARCH_X86) flags = ff_get_cpu_flags_x86();
34
35     flags  &= cpuflags_mask;
36     checked = 1;
37
38     return flags;
39 }
40
41 void av_set_cpu_flags_mask(int mask)
42 {
43     cpuflags_mask = mask;
44     checked       = 0;
45 }
46
47 #ifdef TEST
48
49 #undef printf
50 #include <stdio.h>
51
52 static const struct {
53     int flag;
54     const char *name;
55 } cpu_flag_tab[] = {
56 #if   ARCH_ARM
57     { AV_CPU_FLAG_ARMV5TE,   "armv5te"    },
58     { AV_CPU_FLAG_ARMV6,     "armv6"      },
59     { AV_CPU_FLAG_ARMV6T2,   "armv6t2"    },
60     { AV_CPU_FLAG_VFP,       "vfp"        },
61     { AV_CPU_FLAG_VFPV3,     "vfpv3"      },
62     { AV_CPU_FLAG_NEON,      "neon"       },
63 #elif ARCH_PPC
64     { AV_CPU_FLAG_ALTIVEC,   "altivec"    },
65 #elif ARCH_X86
66     { AV_CPU_FLAG_MMX,       "mmx"        },
67     { AV_CPU_FLAG_MMX2,      "mmx2"       },
68     { AV_CPU_FLAG_SSE,       "sse"        },
69     { AV_CPU_FLAG_SSE2,      "sse2"       },
70     { AV_CPU_FLAG_SSE2SLOW,  "sse2(slow)" },
71     { AV_CPU_FLAG_SSE3,      "sse3"       },
72     { AV_CPU_FLAG_SSE3SLOW,  "sse3(slow)" },
73     { AV_CPU_FLAG_SSSE3,     "ssse3"      },
74     { AV_CPU_FLAG_ATOM,      "atom"       },
75     { AV_CPU_FLAG_SSE4,      "sse4.1"     },
76     { AV_CPU_FLAG_SSE42,     "sse4.2"     },
77     { AV_CPU_FLAG_AVX,       "avx"        },
78     { AV_CPU_FLAG_XOP,       "xop"        },
79     { AV_CPU_FLAG_FMA4,      "fma4"       },
80     { AV_CPU_FLAG_3DNOW,     "3dnow"      },
81     { AV_CPU_FLAG_3DNOWEXT,  "3dnowext"   },
82 #endif
83     { 0 }
84 };
85
86 int main(void)
87 {
88     int cpu_flags = av_get_cpu_flags();
89     int i;
90
91     printf("cpu_flags = 0x%08X\n", cpu_flags);
92     printf("cpu_flags =");
93     for (i = 0; cpu_flag_tab[i].flag; i++)
94         if (cpu_flags & cpu_flag_tab[i].flag)
95             printf(" %s", cpu_flag_tab[i].name);
96     printf("\n");
97
98     return 0;
99 }
100
101 #endif