2 Simple DirectMedia Layer
5 This software is provided 'as-is', without any express or implied
6 warranty. In no event will the authors be held liable for any damages
7 arising from the use of this software.
9 Permission is granted to anyone to use this software for any purpose,
10 including commercial applications, and to alter it and redistribute it
11 freely, subject to the following restrictions:
13 1. The origin of this software must not be misrepresented; you must not
14 claim that you wrote the original software. If you use this software
15 in a product, an acknowledgment in the product documentation would be
16 appreciated but is not required.
17 2. Altered source versions must be plainly marked as such, and must not be
18 misrepresented as being the original software.
19 3. This notice may not be removed or altered from any source distribution.
25 * CPU feature detection for SDL.
28 #ifndef _SDL_cpuinfo_h
29 #define _SDL_cpuinfo_h
31 #include "SDL_stdinc.h"
33 /* Need to do this here because intrin.h has C++ code in it */
34 /* Visual Studio 2005 has a bug where intrin.h conflicts with winnt.h */
35 #if defined(_MSC_VER) && (_MSC_VER >= 1500) && (defined(_M_IX86) || defined(_M_X64))
43 #elif defined(__MINGW64_VERSION_MAJOR)
47 #if HAVE_ALTIVEC_H && !defined(__APPLE_ALTIVEC__)
59 #include <xmmintrin.h>
62 #include <emmintrin.h>
66 #include "begin_code.h"
67 /* Set up for C function definitions, even when using C++ */
72 /* This is a guess for the cacheline size used for padding.
73 * Most x86 processors have a 64 byte cache line.
74 * The 64-bit PowerPC processors have a 128 byte cache line.
75 * We'll use the larger value to be generally safe.
77 #define SDL_CACHELINE_SIZE 128
80 * This function returns the number of CPU cores available.
82 extern DECLSPEC int SDLCALL SDL_GetCPUCount(void);
85 * This function returns the L1 cache line size of the CPU
87 * This is useful for determining multi-threaded structure padding
88 * or SIMD prefetch sizes.
90 extern DECLSPEC int SDLCALL SDL_GetCPUCacheLineSize(void);
93 * This function returns true if the CPU has the RDTSC instruction.
95 extern DECLSPEC SDL_bool SDLCALL SDL_HasRDTSC(void);
98 * This function returns true if the CPU has AltiVec features.
100 extern DECLSPEC SDL_bool SDLCALL SDL_HasAltiVec(void);
103 * This function returns true if the CPU has MMX features.
105 extern DECLSPEC SDL_bool SDLCALL SDL_HasMMX(void);
108 * This function returns true if the CPU has 3DNow! features.
110 extern DECLSPEC SDL_bool SDLCALL SDL_Has3DNow(void);
113 * This function returns true if the CPU has SSE features.
115 extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE(void);
118 * This function returns true if the CPU has SSE2 features.
120 extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE2(void);
123 * This function returns true if the CPU has SSE3 features.
125 extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE3(void);
128 * This function returns true if the CPU has SSE4.1 features.
130 extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE41(void);
133 * This function returns true if the CPU has SSE4.2 features.
135 extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE42(void);
138 * This function returns true if the CPU has AVX features.
140 extern DECLSPEC SDL_bool SDLCALL SDL_HasAVX(void);
143 * This function returns the amount of RAM configured in the system, in MB.
145 extern DECLSPEC int SDLCALL SDL_GetSystemRAM(void);
148 /* Ends C function definitions when using C++ */
152 #include "close_code.h"
154 #endif /* _SDL_cpuinfo_h */
156 /* vi: set ts=4 sw=4 expandtab: */