Revision 539576ec53104316dacac738fca7bc8fd967de62 authored by Son Ho on 26 February 2021, 12:56:35 UTC, committed by Son Ho on 26 February 2021, 12:56:35 UTC
1 parent 7fc6186
Raw File
cpuid-x86_64-msvc.asm
.code
ALIGN 16
check_aesni proc
  mov r9, rbx
  mov rcx, 0
  mov rax, 1
  cpuid
  mov rax, rcx
  and rax, 33554432
  shr rax, 24
  and rcx, 2
  and rax, rcx
  mov rbx, r9
  ret
check_aesni endp
ALIGN 16
check_sha proc
  mov r9, rbx
  mov rax, 7
  mov rcx, 0
  cpuid
  and rbx, 536870912
  mov rax, rbx
  mov rbx, r9
  ret
check_sha endp
ALIGN 16
check_adx_bmi2 proc
  mov r9, rbx
  mov rax, 7
  mov rcx, 0
  cpuid
  mov rax, rbx
  and rax, 524288
  shr rax, 11
  and rbx, 256
  and rax, rbx
  mov rbx, r9
  ret
check_adx_bmi2 endp
ALIGN 16
check_avx proc
  mov r9, rbx
  mov rcx, 0
  mov rax, 1
  cpuid
  mov rax, rcx
  and rax, 268435456
  shr rax, 27
  mov rbx, r9
  ret
check_avx endp
ALIGN 16
check_avx2 proc
  mov r9, rbx
  mov rax, 7
  mov rcx, 0
  cpuid
  and rbx, 32
  mov rax, rbx
  mov rbx, r9
  ret
check_avx2 endp
ALIGN 16
check_movbe proc
  mov r9, rbx
  mov rcx, 0
  mov rax, 1
  cpuid
  mov rax, rcx
  and rax, 4194304
  shr rax, 21
  mov rbx, r9
  ret
check_movbe endp
ALIGN 16
check_sse proc
  mov r9, rbx
  mov rcx, 0
  mov rax, 1
  cpuid
  mov rax, rcx
  and rax, 524288
  and rcx, 512
  and rdx, 67108864
  shr rax, 10
  shr rdx, 17
  and rax, rdx
  and rax, rcx
  mov rbx, r9
  ret
check_sse endp
ALIGN 16
check_rdrand proc
  mov r9, rbx
  mov rcx, 0
  mov rax, 1
  cpuid
  mov rax, rcx
  and rax, 1073741824
  shr rax, 29
  mov rbx, r9
  ret
check_rdrand endp
ALIGN 16
check_avx512 proc
  mov r9, rbx
  mov rax, 7
  mov rcx, 0
  cpuid
  mov rax, rbx
  mov r10, rbx
  mov r11, rbx
  and rbx, 65536
  and rax, 131072
  and r10, 1073741824
  shr rax, 1
  shr r10, 14
  and rax, rbx
  mov rbx, 2147483648
  and r11, rbx
  shr r11, 15
  and rax, r10
  and rax, r11
  mov rbx, r9
  ret
check_avx512 endp
ALIGN 16
check_osxsave proc
  mov r9, rbx
  mov rcx, 0
  mov rax, 1
  cpuid
  mov rax, rcx
  and rax, 134217728
  shr rax, 26
  mov rbx, r9
  ret
check_osxsave endp
ALIGN 16
check_avx_xcr0 proc
  mov rcx, 0
  xgetbv
  mov rcx, rax
  and rax, 4
  shr rax, 1
  and rcx, 2
  and rax, rcx
  ret
check_avx_xcr0 endp
ALIGN 16
check_avx512_xcr0 proc
  mov rcx, 0
  xgetbv
  mov rcx, rax
  mov rdx, rax
  and rax, 32
  and rcx, 64
  and rdx, 128
  shr rdx, 2
  shr rcx, 1
  and rax, rdx
  and rax, rcx
  ret
check_avx512_xcr0 endp
end
back to top