cpu.c
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:9k
源码类别:
midi
开发平台:
Unix_Linux
- /*****************************************************************************
- * cpu.c: CPU detection code
- *****************************************************************************
- * Copyright (C) 1998-2004 the VideoLAN team
- * $Id: 964578335f69c431fd1e23323b76abe2a783e859 $
- *
- * Authors: Samuel Hocevar <sam@zoy.org>
- * Christophe Massiot <massiot@via.ecp.fr>
- * Eugenio Jarosiewicz <ej0@cise.ufl.eduEujenio>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
- *****************************************************************************/
- /*****************************************************************************
- * Preamble
- *****************************************************************************/
- #ifdef HAVE_CONFIG_H
- # include "config.h"
- #endif
- #include <vlc_common.h>
- #include <sys/types.h>
- #ifndef WIN32
- #include <unistd.h>
- #include <sys/wait.h>
- #endif
- #include "libvlc.h"
- #if defined(__APPLE__) && (defined(__ppc__) || defined(__ppc64__))
- #include <sys/sysctl.h>
- #endif
- #if defined( __i386__ ) || defined( __x86_64__ ) || defined( __powerpc__ )
- || defined( __ppc__ ) || defined( __ppc64__ ) || defined( __powerpc64__ )
- static bool check_OS_capability( const char *psz_capability, pid_t pid )
- {
- #ifndef WIN32
- int status;
- if( pid == -1 )
- return false; /* fail safe :-/ */
- while( waitpid( pid, &status, 0 ) == -1 );
- if( WIFEXITED( status ) && WEXITSTATUS( status ) == 0 )
- return true;
- fprintf( stderr, "warning: your CPU has %s instructions, but not your "
- "operating system.n", psz_capability );
- fprintf( stderr, " some optimizations will be disabled unless "
- "you upgrade your OSn" );
- return false;
- #else
- # warning FIXME!
- # define fork() (errno = ENOSYS, -1)
- (void)pid;
- (void)psz_capability;
- return true;
- #endif
- }
- #endif
- /*****************************************************************************
- * CPUCapabilities: get the CPU capabilities
- *****************************************************************************
- * This function is called to list extensions the CPU may have.
- *****************************************************************************/
- uint32_t CPUCapabilities( void )
- {
- uint32_t i_capabilities = CPU_CAPABILITY_NONE;
- #if defined( __i386__ ) || defined( __x86_64__ )
- unsigned int i_eax, i_ebx, i_ecx, i_edx;
- bool b_amd;
- /* Needed for x86 CPU capabilities detection */
- # if defined( __x86_64__ )
- # define cpuid( reg )
- asm volatile ( "cpuidnt"
- "movl %%ebx,%1nt"
- : "=a" ( i_eax ),
- "=b" ( i_ebx ),
- "=c" ( i_ecx ),
- "=d" ( i_edx )
- : "a" ( reg )
- : "cc" );
- # else
- # define cpuid( reg )
- asm volatile ( "push %%ebxnt"
- "cpuidnt"
- "movl %%ebx,%1nt"
- "pop %%ebxnt"
- : "=a" ( i_eax ),
- "=r" ( i_ebx ),
- "=c" ( i_ecx ),
- "=d" ( i_edx )
- : "a" ( reg )
- : "cc" );
- # endif
- i_capabilities |= CPU_CAPABILITY_FPU;
- # if defined( __i386__ )
- /* check if cpuid instruction is supported */
- asm volatile ( "push %%ebxnt"
- "pushfnt"
- "pop %%eaxnt"
- "movl %%eax, %%ebxnt"
- "xorl $0x200000, %%eaxnt"
- "push %%eaxnt"
- "popfnt"
- "pushfnt"
- "pop %%eaxnt"
- "movl %%ebx,%1nt"
- "pop %%ebxnt"
- : "=a" ( i_eax ),
- "=r" ( i_ebx )
- :
- : "cc" );
- if( i_eax == i_ebx )
- goto out;
- # else
- /* x86_64 supports cpuid instruction, so we dont need to check it */
- # endif
- i_capabilities |= CPU_CAPABILITY_486;
- /* the CPU supports the CPUID instruction - get its level */
- cpuid( 0x00000000 );
- if( !i_eax )
- goto out;
- /* FIXME: this isn't correct, since some 486s have cpuid */
- i_capabilities |= CPU_CAPABILITY_586;
- /* borrowed from mpeg2dec */
- b_amd = ( i_ebx == 0x68747541 ) && ( i_ecx == 0x444d4163 )
- && ( i_edx == 0x69746e65 );
- /* test for the MMX flag */
- cpuid( 0x00000001 );
- if( ! (i_edx & 0x00800000) )
- goto out;
- i_capabilities |= CPU_CAPABILITY_MMX;
- if( i_edx & 0x02000000 )
- {
- i_capabilities |= CPU_CAPABILITY_MMXEXT;
- # ifdef CAN_COMPILE_SSE
- /* We test if OS supports the SSE instructions */
- pid_t pid = fork();
- if( pid == 0 )
- {
- /* Test a SSE instruction */
- __asm__ __volatile__ ( "xorps %%xmm0,%%xmm0n" : : );
- _exit(0);
- }
- if( check_OS_capability( "SSE", pid ) )
- i_capabilities |= CPU_CAPABILITY_SSE;
- # endif
- }
- if( i_edx & 0x04000000 )
- {
- # if defined(CAN_COMPILE_SSE)
- /* We test if OS supports the SSE2 instructions */
- pid_t pid = fork();
- if( pid == 0 )
- {
- /* Test a SSE2 instruction */
- __asm__ __volatile__ ( "movupd %%xmm0, %%xmm0n" : : );
- _exit(0);
- }
- if( check_OS_capability( "SSE2", pid ) )
- i_capabilities |= CPU_CAPABILITY_SSE2;
- # endif
- }
- /* test for additional capabilities */
- cpuid( 0x80000000 );
- if( i_eax < 0x80000001 )
- goto out;
- /* list these additional capabilities */
- cpuid( 0x80000001 );
- # ifdef CAN_COMPILE_3DNOW
- if( i_edx & 0x80000000 )
- {
- pid_t pid = fork();
- if( pid == 0 )
- {
- /* Test a 3D Now! instruction */
- __asm__ __volatile__ ( "pfadd %%mm0,%%mm0n" "femmsn" : : );
- _exit(0);
- }
- if( check_OS_capability( "3D Now!", pid ) )
- i_capabilities |= CPU_CAPABILITY_3DNOW;
- }
- # endif
- if( b_amd && ( i_edx & 0x00400000 ) )
- {
- i_capabilities |= CPU_CAPABILITY_MMXEXT;
- }
- out:
- #elif defined( __arm__ )
- # if defined( __ARM_EABI__ ) && !defined( __SOFTFP__ )
- i_capabilities |= CPU_CAPABILITY_FPU;
- # endif
- #elif defined( __powerpc__ ) || defined( __ppc__ ) || defined( __powerpc64__ )
- || defined( __ppc64__ )
- i_capabilities |= CPU_CAPABILITY_FPU;
- # if defined(__APPLE__)
- int selectors[2] = { CTL_HW, HW_VECTORUNIT };
- int i_has_altivec = 0;
- size_t i_length = sizeof( i_has_altivec );
- int i_error = sysctl( selectors, 2, &i_has_altivec, &i_length, NULL, 0);
- if( i_error == 0 && i_has_altivec != 0 )
- i_capabilities |= CPU_CAPABILITY_ALTIVEC;
- # elif defined( CAN_COMPILE_ALTIVEC )
- pid_t pid = fork();
- if( pid == 0 )
- {
- asm volatile ("mtspr 256, %0nt"
- "vand %%v0, %%v0, %%v0"
- :
- : "r" (-1));
- _exit(0);
- }
- if( check_OS_capability( "Altivec", pid ) )
- i_capabilities |= CPU_CAPABILITY_ALTIVEC;
- # endif
- #elif defined( __sparc__ )
- i_capabilities |= CPU_CAPABILITY_FPU;
- #elif defined( _MSC_VER ) && !defined( UNDER_CE )
- i_capabilities |= CPU_CAPABILITY_FPU;
- #endif
- return i_capabilities;
- }
- uint32_t cpu_flags = 0;
- /*****************************************************************************
- * vlc_CPU: get pre-computed CPU capability flags
- ****************************************************************************/
- unsigned vlc_CPU (void)
- {
- return cpu_flags;
- }
- static vlc_memcpy_t pf_vlc_memcpy = memcpy;
- static vlc_memset_t pf_vlc_memset = memset;
- void vlc_fastmem_register (vlc_memcpy_t cpy, vlc_memset_t set)
- {
- if (cpy)
- pf_vlc_memcpy = cpy;
- if (set)
- pf_vlc_memset = set;
- }
- /**
- * vlc_memcpy: fast CPU-dependent memcpy
- */
- void *vlc_memcpy (void *tgt, const void *src, size_t n)
- {
- return pf_vlc_memcpy (tgt, src, n);
- }
- /**
- * vlc_memset: fast CPU-dependent memset
- */
- void *vlc_memset (void *tgt, int c, size_t n)
- {
- return pf_vlc_memset (tgt, c, n);
- }