mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-05 00:16:50 +02:00
gcc-4.0 defines __PIC__ but not __pic__. This leaves the test for __pic__ should the inverse case exist. Fixes issue #103; build failing with: "error: can't find a register in class 'BREG' while reloading 'asm'" Change-Id: Ia767a733de6ce0294146f9477ff9c46f0ebe13b0
72 lines
2.0 KiB
C
72 lines
2.0 KiB
C
// Copyright 2011 Google Inc. All Rights Reserved.
|
|
//
|
|
// This code is licensed under the same terms as WebM:
|
|
// Software License Agreement: http://www.webmproject.org/license/software/
|
|
// Additional IP Rights Grant: http://www.webmproject.org/license/additional/
|
|
// -----------------------------------------------------------------------------
|
|
//
|
|
// CPU detection
|
|
//
|
|
// Author: Christian Duvivier (cduvivier@google.com)
|
|
|
|
#include <stddef.h> // for NULL
|
|
|
|
#include "./dsp.h"
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
//------------------------------------------------------------------------------
|
|
// SSE2 detection.
|
|
//
|
|
|
|
// apple/darwin gcc-4.0.1 defines __PIC__, but not __pic__ with -fPIC.
|
|
#if (defined(__pic__) || defined(__PIC__)) && defined(__i386__)
|
|
static WEBP_INLINE void GetCPUInfo(int cpu_info[4], int info_type) {
|
|
__asm__ volatile (
|
|
"mov %%ebx, %%edi\n"
|
|
"cpuid\n"
|
|
"xchg %%edi, %%ebx\n"
|
|
: "=a"(cpu_info[0]), "=D"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3])
|
|
: "a"(info_type));
|
|
}
|
|
#elif defined(__i386__) || defined(__x86_64__)
|
|
static WEBP_INLINE void GetCPUInfo(int cpu_info[4], int info_type) {
|
|
__asm__ volatile (
|
|
"cpuid\n"
|
|
: "=a"(cpu_info[0]), "=b"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3])
|
|
: "a"(info_type));
|
|
}
|
|
#elif defined(WEBP_MSC_SSE2)
|
|
#define GetCPUInfo __cpuid
|
|
#endif
|
|
|
|
#if defined(__i386__) || defined(__x86_64__) || defined(WEBP_MSC_SSE2)
|
|
static int x86CPUInfo(CPUFeature feature) {
|
|
int cpu_info[4];
|
|
GetCPUInfo(cpu_info, 1);
|
|
if (feature == kSSE2) {
|
|
return 0 != (cpu_info[3] & 0x04000000);
|
|
}
|
|
if (feature == kSSE3) {
|
|
return 0 != (cpu_info[2] & 0x00000001);
|
|
}
|
|
return 0;
|
|
}
|
|
VP8CPUInfo VP8GetCPUInfo = x86CPUInfo;
|
|
#elif defined(__ARM_NEON__)
|
|
// define a dummy function to enable turning off NEON at runtime by setting
|
|
// VP8DecGetCPUInfo = NULL
|
|
static int armCPUInfo(CPUFeature feature) {
|
|
return 1;
|
|
}
|
|
VP8CPUInfo VP8GetCPUInfo = armCPUInfo;
|
|
#else
|
|
VP8CPUInfo VP8GetCPUInfo = NULL;
|
|
#endif
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
} // extern "C"
|
|
#endif
|