[svn] / trunk / xvidcore / src / utils / x86_asm / cpuid.asm Repository:
ViewVC logotype

Diff of /trunk/xvidcore/src/utils/x86_asm/cpuid.asm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 851, Sat Feb 15 15:22:19 2003 UTC revision 1485, Sat Jul 10 17:42:18 2004 UTC
# Line 1  Line 1 
1  ;/******************************************************************************  ;/****************************************************************************
2  ; *                                                                            *  ; *
3  ; *  This file is part of XviD, a free MPEG-4 video encoder/decoder            *  ; *  XVID MPEG-4 VIDEO CODEC
4  ; *                                                                            *  ; *  - CPUID check processors capabilities -
5  ; *  XviD is an implementation of a part of one or more MPEG-4 Video tools     *  ; *
6  ; *  as specified in ISO/IEC 14496-2 standard.  Those intending to use this    *  ; *  Copyright (C) 2001 Michael Militzer <isibaar@xvid.org>
7  ; *  software module in hardware or software products are advised that its     *  ; *
8  ; *  use may infringe existing patents or copyrights, and any such use         *  ; *  This program is free software ; you can redistribute it and/or modify
9  ; *  would be at such party's own risk.  The original developer of this        *  ; *  it under the terms of the GNU General Public License as published by
10  ; *  software module and his/her company, and subsequent editors and their     *  ; *  the Free Software Foundation ; either version 2 of the License, or
11  ; *  companies, will have no liability for use of this software or             *  ; *  (at your option) any later version.
12  ; *  modifications or derivatives thereof.                                     *  ; *
13  ; *                                                                            *  ; *  This program is distributed in the hope that it will be useful,
14  ; *  XviD is free software; you can redistribute it and/or modify it           *  ; *  but WITHOUT ANY WARRANTY ; without even the implied warranty of
15  ; *  under the terms of the GNU General Public License as published by         *  ; *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  ; *  the Free Software Foundation; either version 2 of the License, or         *  ; *  GNU General Public License for more details.
17  ; *  (at your option) any later version.                                       *  ; *
18  ; *                                                                            *  ; *  You should have received a copy of the GNU General Public License
19  ; *  XviD is distributed in the hope that it will be useful, but               *  ; *  along with this program ; if not, write to the Free Software
20  ; *  WITHOUT ANY WARRANTY; without even the implied warranty of                *  ; *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21  ; *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the             *  ; *
22  ; *  GNU General Public License for more details.                              *  ; * $Id: cpuid.asm,v 1.6 2004-07-10 17:42:18 edgomez Exp $
23  ; *                                                                            *  ; *
24  ; *  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., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA  *  
 ; *                                                                            *  
 ; ******************************************************************************/  
 ;  
 ;/******************************************************************************  
 ; *                                                                            *  
 ; *  cpuid.asm, check cpu features                                             *  
 ; *                                                                            *  
 ; *  Copyright (C) 2001 - Michael Militzer <isibaar@xvid.org>,                 *  
 ; *                                                                            *  
 ; *  For more information visit the XviD homepage: http://www.xvid.org         *  
 ; *                                                                            *  
 ; ******************************************************************************/  
 ;  
 ;/******************************************************************************  
 ; *                                                                            *  
 ; *  Revision history:                                                         *  
 ; *                                                                            *  
 ; *  17.12.2001 initial version  (Isibaar)                                     *  
 ; *                                                                            *  
 ; ******************************************************************************/  
25    
26  bits 32  BITS 32
27    
28    %macro cglobal 1
29            %ifdef PREFIX
30                    global _%1
31                    %define %1 _%1
32            %else
33                    global %1
34            %endif
35    %endmacro
36    
37    ;=============================================================================
38    ; Constants
39    ;=============================================================================
40    
41  %define CPUID_TSC                               0x00000010  %define CPUID_TSC                               0x00000010
42  %define CPUID_MMX                               0x00800000  %define CPUID_MMX                               0x00800000
# Line 56  Line 47 
47  %define EXT_CPUID_AMD_3DNOWEXT  0x40000000  %define EXT_CPUID_AMD_3DNOWEXT  0x40000000
48  %define EXT_CPUID_AMD_MMXEXT    0x00400000  %define EXT_CPUID_AMD_MMXEXT    0x00400000
49    
50  %define XVID_CPU_MMX                    0x00000001  ;;; NB: Make sure these defines match the ones defined in xvid.h
51  %define XVID_CPU_MMXEXT                 0x00000002  %define XVID_CPU_MMX      (1<< 0)
52  %define XVID_CPU_SSE            0x00000004  %define XVID_CPU_MMXEXT   (1<< 1)
53  %define XVID_CPU_SSE2                   0x00000008  %define XVID_CPU_SSE      (1<< 2)
54  %define XVID_CPU_3DNOW          0x00000010  %define XVID_CPU_SSE2     (1<< 3)
55  %define XVID_CPU_3DNOWEXT               0x00000020  %define XVID_CPU_3DNOW    (1<< 4)
56  %define XVID_CPU_TSC            0x00000040  %define XVID_CPU_3DNOWEXT (1<< 5)
57    %define XVID_CPU_TSC      (1<< 6)
58    
59    ;=============================================================================
60    ; Read only data
61    ;=============================================================================
62    
63    ALIGN 32
64  %macro cglobal 1  %ifdef FORMAT_COFF
65          %ifdef PREFIX  SECTION .rodata data
                 global _%1  
                 %define %1 _%1  
66          %else          %else
67                  global %1  SECTION .rodata data align=16
68          %endif          %endif
 %endmacro  
   
 ALIGN 32  
69    
70  section .data  vendorAMD:
71                    db "AuthenticAMD"
72    
73  vendorAMD       db "AuthenticAMD"  ;=============================================================================
74    ; Macros
75    ;=============================================================================
76    
77  %macro  CHECK_FEATURE         3  %macro  CHECK_FEATURE         3
   
78      mov     ecx, %1      mov     ecx, %1
79      and     ecx, edx      and     ecx, edx
80      neg     ecx      neg     ecx
81      sbb     ecx, ecx      sbb     ecx, ecx
82      and     ecx, %2      and     ecx, %2
83      or      %3, ecx      or      %3, ecx
   
84  %endmacro  %endmacro
85    
86  section .text  ;=============================================================================
87    ; Code
88    ;=============================================================================
89    
90    SECTION .text
91    
92  ; int check_cpu_feature(void)  ; int check_cpu_feature(void)
93    
# Line 103  Line 99 
99          push edi          push edi
100          push ebp          push ebp
101    
102      sub esp, 12             ; Stack space for vendor name
103    
104          xor ebp,ebp          xor ebp,ebp
105    
106          ; CPUID command ?          ; CPUID command ?
# Line 122  Line 120 
120          ; get vendor string, used later          ; get vendor string, used later
121      xor     eax, eax      xor     eax, eax
122      cpuid      cpuid
123      mov     [esp-12], ebx       ; vendor string    mov [esp], ebx       ; vendor string
124      mov     [esp-12+4], edx    mov [esp+4], edx
125      mov     [esp-12+8], ecx    mov [esp+8], ecx
126      test    eax, eax      test    eax, eax
127    
128      jz      near .cpu_quit      jz      near .cpu_quit
# Line 155  Line 153 
153    
154          ; AMD cpu ?          ; AMD cpu ?
155      lea     esi, [vendorAMD]      lea     esi, [vendorAMD]
156      lea     edi, [esp-12]    lea edi, [esp]
157      mov     ecx, 12      mov     ecx, 12
158      cld      cld
159      repe    cmpsb      repe    cmpsb
# Line 174  Line 172 
172    
173          mov eax, ebp          mov eax, ebp
174    
175      add esp, 12
176    
177          pop ebp          pop ebp
178          pop edi          pop edi
179          pop esi          pop esi
# Line 181  Line 181 
181    
182          ret          ret
183    
   
   
184  ; sse/sse2 operating support detection routines  ; sse/sse2 operating support detection routines
185  ; these will trigger an invalid instruction signal if not supported.  ; these will trigger an invalid instruction signal if not supported.
186    ALIGN 16
187  cglobal sse_os_trigger  cglobal sse_os_trigger
 align 16  
188  sse_os_trigger:  sse_os_trigger:
189          xorps xmm0, xmm0          xorps xmm0, xmm0
190          ret          ret
191    
192    
193    ALIGN 16
194  cglobal sse2_os_trigger  cglobal sse2_os_trigger
 align 16  
195  sse2_os_trigger:  sse2_os_trigger:
196          xorpd xmm0, xmm0          xorpd xmm0, xmm0
197          ret          ret
198    
199    
200  ; enter/exit mmx state  ; enter/exit mmx state
201    ALIGN 16
202  cglobal emms_mmx  cglobal emms_mmx
 align 16  
203  emms_mmx:  emms_mmx:
204          emms          emms
205          ret          ret
206    
207  ; faster enter/exit mmx state  ; faster enter/exit mmx state
208    ALIGN 16
209  cglobal emms_3dn  cglobal emms_3dn
 align 16  
210  emms_3dn:  emms_3dn:
211          femms          femms
212          ret          ret

Legend:
Removed from v.851  
changed lines
  Added in v.1485

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4