Files
flac/src/libFLAC/ia32/cpu_asm.nasm

101 lines
2.2 KiB
NASM
Raw Normal View History

2001-06-13 18:03:09 +00:00
; libFLAC - Free Lossless Audio Codec library
; Copyright (C) 2001 Josh Coalson
;
; This library is free software; you can redistribute it and/or
; modify it under the terms of the GNU Library General Public
; License as published by the Free Software Foundation; either
; version 2 of the License, or (at your option) any later version.
;
; This library 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
; Library General Public License for more details.
;
; You should have received a copy of the GNU Library General Public
; License along with this library; if not, write to the
; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
; Boston, MA 02111-1307, USA.
%include "nasm.h"
data_section
2001-06-13 18:11:25 +00:00
cglobal FLAC__cpu_info_asm_ia32
2001-07-16 21:13:19 +00:00
cglobal FLAC__cpu_info_extended_amd_asm_ia32
cglobal FLAC__cpu_info_sse_os_asm_ia32
2001-06-13 18:03:09 +00:00
code_section
; **********************************************************************
;
2001-07-16 21:13:19 +00:00
have_cpuid:
2001-06-13 18:03:09 +00:00
pushfd
pop eax
mov edx, eax
2001-07-16 21:13:19 +00:00
xor eax, 0x00200000
2001-06-13 18:03:09 +00:00
push eax
popfd
pushfd
pop eax
cmp eax, edx
jz .no_cpuid
mov eax, 1
2001-07-16 21:13:19 +00:00
jmp .end
.no_cpuid:
xor eax, eax
.end:
ret
cident FLAC__cpu_info_asm_ia32
push ebx
call have_cpuid
test eax, eax
jz .no_cpuid
mov eax, 1
2001-06-13 18:03:09 +00:00
cpuid
mov eax, edx
2001-07-16 21:13:19 +00:00
jmp .end
2001-06-13 18:03:09 +00:00
.no_cpuid:
2001-07-16 21:13:19 +00:00
xor eax, eax
.end
pop ebx
ret
cident FLAC__cpu_info_extended_amd_asm_ia32
push ebx
call have_cpuid
test eax, eax
jz .no_cpuid
mov eax, 0x80000000
cpuid
cmp eax, 0x80000001
jb .no_cpuid
mov eax, 0x80000001
cpuid
mov eax, edx
jmp .end
.no_cpuid
xor eax, eax
.end
2001-06-13 18:03:09 +00:00
pop ebx
ret
;WATCHOUT - DO NOT call this function until you have verified CPU support of
; SSE by inspecting the return value from FLAC__cpu_info_asm_ia32
;NOTE - Since we're not in priv level 0 we can't just check CR4 bits 9 & 10,
; so right now we just assume there is no OS support. If you know
; how to write code to trap a #UD exception in nasm so we can implement
; this function correctly, let us know!
cident FLAC__cpu_info_sse_os_asm_ia32
push ebx
mov eax, 1
cpuid
mov eax, 0 ;we would like to 'move eax, cr4'
shr eax, 9
and eax, 3
pop ebx
ret
2001-06-13 18:03:09 +00:00
end