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

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

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

revision 1.3, Sun Nov 17 00:51:11 2002 UTC revision 1.9, Sun Aug 29 10:02:38 2004 UTC
# Line 1  Line 1 
1  ;/******************************************************************************  ;/****************************************************************************
2  ; *  ; *
3  ; *  Copyright (C) 2001 - Michael Militzer <isibaar@xvid.org>  ; *  XVID MPEG-4 VIDEO CODEC
4    ; *  - CPUID check processors capabilities -
5  ; *  ; *
6  ; *  This file is part of XviD, a free MPEG-4 video encoder/decoder  ; *  Copyright (C) 2001 Michael Militzer <isibaar@xvid.org>
7  ; *  ; *
8  ; *  XviD is free software; you can redistribute it and/or modify it  ; *  This program is free software ; you can redistribute it and/or modify
9  ; *  under the terms of the GNU General Public License as published by  ; *  it under the terms of the GNU General Public License as published by
10  ; *  the Free Software Foundation; either version 2 of the License, or  ; *  the Free Software Foundation; either version 2 of the License, or
11  ; *  (at your option) any later version.  ; *  (at your option) any later version.
12  ; *  ; *
# Line 18  Line 19 
19  ; *  along with this program; if not, write to the Free Software  ; *  along with this program; if not, write to the Free Software
20  ; *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA  ; *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21  ; *  ; *
 ; *  Under section 8 of the GNU General Public License, the copyright  
 ; *  holders of XVID explicitly forbid distribution in the following  
 ; *  countries:  
 ; *  
 ; *    - Japan  
 ; *    - United States of America  
 ; *  
 ; *  Linking XviD statically or dynamically with other modules is making a  
 ; *  combined work based on XviD.  Thus, the terms and conditions of the  
 ; *  GNU General Public License cover the whole combination.  
 ; *  
 ; *  As a special exception, the copyright holders of XviD give you  
 ; *  permission to link XviD with independent modules that communicate with  
 ; *  XviD solely through the VFW1.1 and DShow interfaces, regardless of the  
 ; *  license terms of these independent modules, and to copy and distribute  
 ; *  the resulting combined work under terms of your choice, provided that  
 ; *  every copy of the combined work is accompanied by a complete copy of  
 ; *  the source code of XviD (the version of XviD used to produce the  
 ; *  combined work), being distributed under the terms of the GNU General  
 ; *  Public License plus this exception.  An independent module is a module  
 ; *  which is not derived from or based on XviD.  
 ; *  
 ; *  Note that people who make modified versions of XviD are not obligated  
 ; *  to grant this special exception for their modified versions; it is  
 ; *  their choice whether to do so.  The GNU General Public License gives  
 ; *  permission to release a modified version without this exception; this  
 ; *  exception also makes it possible to release a modified version which  
 ; *  carries forward this exception.  
 ; *  
22  ; * $Id$  ; * $Id$
23  ; ******************************************************************************/  ; *
24    ; ***************************************************************************/
25    
26    BITS 32
27    
28    %macro cglobal 1
29            %ifdef PREFIX
30                    %ifdef MARK_FUNCS
31                            global _%1:function %1.endfunc-%1
32                            %define %1 _%1:function %1.endfunc-%1
33                    %else
34                            global _%1
35                            %define %1 _%1
36                    %endif
37            %else
38                    %ifdef MARK_FUNCS
39                            global %1:function %1.endfunc-%1
40                    %else
41                            global %1
42                    %endif
43            %endif
44    %endmacro
45    
46  bits 32  ;=============================================================================
47    ; Constants
48    ;=============================================================================
49    
50  %define CPUID_TSC                               0x00000010  %define CPUID_TSC                               0x00000010
51  %define CPUID_MMX                               0x00800000  %define CPUID_MMX                               0x00800000
# Line 61  Line 56 
56  %define EXT_CPUID_AMD_3DNOWEXT  0x40000000  %define EXT_CPUID_AMD_3DNOWEXT  0x40000000
57  %define EXT_CPUID_AMD_MMXEXT    0x00400000  %define EXT_CPUID_AMD_MMXEXT    0x00400000
58    
59  %define XVID_CPU_MMX                    0x00000001  ;;; NB: Make sure these defines match the ones defined in xvid.h
60  %define XVID_CPU_MMXEXT                 0x00000002  %define XVID_CPU_MMX      (1<< 0)
61  %define XVID_CPU_SSE            0x00000004  %define XVID_CPU_MMXEXT   (1<< 1)
62  %define XVID_CPU_SSE2                   0x00000008  %define XVID_CPU_SSE      (1<< 2)
63  %define XVID_CPU_3DNOW          0x00000010  %define XVID_CPU_SSE2     (1<< 3)
64  %define XVID_CPU_3DNOWEXT               0x00000020  %define XVID_CPU_3DNOW    (1<< 4)
65  %define XVID_CPU_TSC            0x00000040  %define XVID_CPU_3DNOWEXT (1<< 5)
66    %define XVID_CPU_TSC      (1<< 6)
67    
68    ;=============================================================================
69    ; Read only data
70    ;=============================================================================
71    
72  %macro cglobal 1  ALIGN 32
73          %ifdef PREFIX  %ifdef FORMAT_COFF
74                  global _%1  SECTION .rodata
                 %define %1 _%1  
75          %else          %else
76                  global %1  SECTION .rodata align=16
77          %endif          %endif
 %endmacro  
   
 ALIGN 32  
78    
79  section .data  vendorAMD:
80                    db "AuthenticAMD"
81    
82  vendorAMD       db "AuthenticAMD"  ;=============================================================================
83    ; Macros
84    ;=============================================================================
85    
86  %macro  CHECK_FEATURE         3  %macro  CHECK_FEATURE         3
   
87      mov     ecx, %1      mov     ecx, %1
88      and     ecx, edx      and     ecx, edx
89      neg     ecx      neg     ecx
90      sbb     ecx, ecx      sbb     ecx, ecx
91      and     ecx, %2      and     ecx, %2
92      or      %3, ecx      or      %3, ecx
   
93  %endmacro  %endmacro
94    
95  section .text  ;=============================================================================
96    ; Code
97    ;=============================================================================
98    
99    SECTION .text
100    
101  ; int check_cpu_feature(void)  ; int check_cpu_feature(void)
102    
# Line 108  Line 108 
108          push edi          push edi
109          push ebp          push ebp
110    
111      sub esp, 12             ; Stack space for vendor name
112    
113          xor ebp,ebp          xor ebp,ebp
114    
115          ; CPUID command ?          ; CPUID command ?
# Line 127  Line 129 
129          ; get vendor string, used later          ; get vendor string, used later
130      xor     eax, eax      xor     eax, eax
131      cpuid      cpuid
132      mov     [esp-12], ebx       ; vendor string    mov [esp], ebx       ; vendor string
133      mov     [esp-12+4], edx    mov [esp+4], edx
134      mov     [esp-12+8], ecx    mov [esp+8], ecx
135      test    eax, eax      test    eax, eax
136    
137      jz      near .cpu_quit      jz      near .cpu_quit
# Line 160  Line 162 
162    
163          ; AMD cpu ?          ; AMD cpu ?
164      lea     esi, [vendorAMD]      lea     esi, [vendorAMD]
165      lea     edi, [esp-12]    lea edi, [esp]
166      mov     ecx, 12      mov     ecx, 12
167      cld      cld
168      repe    cmpsb      repe    cmpsb
# Line 179  Line 181 
181    
182          mov eax, ebp          mov eax, ebp
183    
184      add esp, 12
185    
186          pop ebp          pop ebp
187          pop edi          pop edi
188          pop esi          pop esi
189          pop ebx          pop ebx
190    
191          ret          ret
192    .endfunc
   
193    
194  ; sse/sse2 operating support detection routines  ; sse/sse2 operating support detection routines
195  ; these will trigger an invalid instruction signal if not supported.  ; these will trigger an invalid instruction signal if not supported.
196    ALIGN 16
197  cglobal sse_os_trigger  cglobal sse_os_trigger
 align 16  
198  sse_os_trigger:  sse_os_trigger:
199          xorps xmm0, xmm0          xorps xmm0, xmm0
200          ret          ret
201    .endfunc
202    
203    
204    ALIGN 16
205  cglobal sse2_os_trigger  cglobal sse2_os_trigger
 align 16  
206  sse2_os_trigger:  sse2_os_trigger:
207          xorpd xmm0, xmm0          xorpd xmm0, xmm0
208          ret          ret
209    .endfunc
210    
211    
212    ; enter/exit mmx state
213    ALIGN 16
214    cglobal emms_mmx
215    emms_mmx:
216      emms
217      ret
218    .endfunc
219    
220    ; faster enter/exit mmx state
221    ALIGN 16
222    cglobal emms_3dn
223    emms_3dn:
224      femms
225      ret
226    .endfunc
227    
228    

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.9

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