add comments
[platform/upstream/flac.git] / src / libFLAC / cpu.c
1 /* libFLAC - Free Lossless Audio Codec library
2  * Copyright (C) 2001  Josh Coalson
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library 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  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA  02111-1307, USA.
18  */
19
20 #include "private/cpu.h"
21 #include<stdlib.h>
22 #include<stdio.h>
23
24 const unsigned FLAC__CPUINFO_IA32_CPUID_CMOV = 0x00008000;
25 const unsigned FLAC__CPUINFO_IA32_CPUID_MMX = 0x00800000;
26 const unsigned FLAC__CPUINFO_IA32_CPUID_FXSR = 0x01000000;
27 const unsigned FLAC__CPUINFO_IA32_CPUID_SSE = 0x02000000;
28 const unsigned FLAC__CPUINFO_IA32_CPUID_SSE2 = 0x04000000;
29
30
31 void FLAC__cpu_info(FLAC__CPUInfo *info)
32 {
33 #ifdef FLAC__CPU_IA32
34 fprintf(stderr,"@@@ FLAC__CPU_IA32 defined\n");
35         info->type = FLAC__CPUINFO_TYPE_IA32;
36 #if !defined FLAC__NO_ASM && defined FLAC__HAS_NASM
37 fprintf(stderr,"@@@ !defined FLAC__NO_ASM && defined FLAC__HAS_NASM\n");
38         info->use_asm = true;
39         {
40                 unsigned cpuid = FLAC__cpu_info_asm_i386();
41                 info->data.ia32.cmov = (cpuid & FLAC__CPUINFO_IA32_CPUID_CMOV)? true : false;
42                 info->data.ia32.mmx = (cpuid & FLAC__CPUINFO_IA32_CPUID_MMX)? true : false;
43                 info->data.ia32.fxsr = (cpuid & FLAC__CPUINFO_IA32_CPUID_FXSR)? true : false;
44                 info->data.ia32.sse = (cpuid & FLAC__CPUINFO_IA32_CPUID_SSE)? true : false; /* @@@ also need to check for operating system support */
45                 info->data.ia32.sse2 = (cpuid & FLAC__CPUINFO_IA32_CPUID_SSE2)? true : false; /* @@@ also need to check for operating system support */
46 fprintf(stderr,"@@@ \tcpuid=%08X\n",cpuid);
47 fprintf(stderr,"@@@ \tcmov=%u\n",info->data.ia32.cmov);
48 fprintf(stderr,"@@@ \tmmx=%u\n",info->data.ia32.mmx);
49 fprintf(stderr,"@@@ \tfxsr=%u\n",info->data.ia32.fxsr);
50 fprintf(stderr,"@@@ \tsse=%u\n",info->data.ia32.sse);
51 fprintf(stderr,"@@@ \tsse2=%u\n",info->data.ia32.sse2);
52         }
53 #else
54 fprintf(stderr,"@@@ not: !defined FLAC__NO_ASM && defined FLAC__HAS_NASM\n");
55         info->use_asm = true;
56         info->use_asm = false;
57 #endif
58 #else
59 fprintf(stderr,"@@@ FLAC__CPU_UNKNOWN\n");
60         info->type = FLAC__CPUINFO_TYPE_UNKNOWN;
61         info->use_asm = false;
62 #endif
63 }