]> git.sesse.net Git - vlc/blob - include/vlc_cpu.h
Check for MMX at build-time if possible
[vlc] / include / vlc_cpu.h
1 /*****************************************************************************
2  * vlc_cpu.h: CPU capabilities
3  *****************************************************************************
4  * Copyright (C) 1998-2009 VLC authors and VideoLAN
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU Lesser General Public License as published by
8  * the Free Software Foundation; either version 2.1 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19  *****************************************************************************/
20
21 /**
22  * \file
23  * This file provides CPU features detection.
24  */
25
26 #ifndef VLC_CPU_H
27 # define VLC_CPU_H 1
28
29 VLC_API unsigned vlc_CPU(void);
30
31 # if defined (__i386__) || defined (__x86_64__)
32 #  define HAVE_FPU 1
33 #  define VLC_CPU_MMX    8
34 #  define CPU_CAPABILITY_3DNOW   (1<<4)
35 #  define CPU_CAPABILITY_MMXEXT  (1<<5)
36 #  define CPU_CAPABILITY_SSE     (1<<6)
37 #  define CPU_CAPABILITY_SSE2    (1<<7)
38 #  define CPU_CAPABILITY_SSE3    (1<<8)
39 #  define CPU_CAPABILITY_SSSE3   (1<<9)
40 #  define CPU_CAPABILITY_SSE4_1  (1<<10)
41 #  define CPU_CAPABILITY_SSE4_2  (1<<11)
42 #  define CPU_CAPABILITY_SSE4A   (1<<12)
43
44 # if defined (__MMX__)
45 #  define vlc_CPU_MMX() (1)
46 #  define VLC_MMX
47 # else
48 #  define vlc_CPU_MMX() ((vlc_CPU() & VLC_CPU_MMX) != 0)
49 #  if VLC_GCC_VERSION(4, 4)
50 #   define VLC_MMX __attribute__ ((__target__ ("mmx")))
51 #  else
52 #   define VLC_MMX VLC_MMX_is_not_implemented_on_this_compiler
53 #  endif
54 # endif
55
56 # if defined (__SSE__)
57 #  define VLC_SSE
58 # elif VLC_GCC_VERSION(4, 4)
59 #  define VLC_SSE __attribute__ ((__target__ ("sse")))
60 # else
61 #  define VLC_SSE VLC_SSE_is_not_implemented_on_this_compiler
62 # endif
63
64 # elif defined (__ppc__) || defined (__ppc64__) || defined (__powerpc__)
65 #  define HAVE_FPU 1
66 #  define VLC_CPU_ALTIVEC 2
67
68 #  ifdef ALTIVEC
69 #   define vlc_CPU_ALTIVEC() (1)
70 #  else
71 #   define vlc_CPU_ALTIVEC() ((vlc_CPU() & VLC_CPU_ALTIVEC) != 0)
72 #  endif
73
74 # elif defined (__arm__)
75 #  if defined (__VFP_FP__) && !defined (__SOFTFP__)
76 #   define HAVE_FPU 1
77 #  else
78 #   define HAVE_FPU 0
79 #  endif
80 #  define VLC_CPU_ARM_NEON 2
81
82 #  ifdef __ARM_NEON__
83 #   define vlc_CPU_ARM_NEON() (1)
84 #  else
85 #   define vlc_CPU_ARM_NEON() ((vlc_CPU() & VLC_CPU_ARM_NEON) != 0)
86 #  endif
87
88 # elif defined (__sparc__)
89 #  define HAVE_FPU 1
90
91 # else
92 /**
93  * Are single precision floating point operations "fast"?
94  * If this preprocessor constant is zero, floating point should be avoided
95  * (especially relevant for audio codecs).
96  */
97 #  define HAVE_FPU 0
98
99 # endif
100
101 #endif /* !VLC_CPU_H */