Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Implemented 64-bit version of cpuid code
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 17, 2009
1 parent a6bfcec commit fa90aa1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/cpuinfo/SDL_cpuinfo.c
Expand Up @@ -157,14 +157,22 @@ CPUid by definition. But it's nice to be able to prove it. :) */
return has_CPUID;
}

#if defined(__GNUC__) && (defined(i386) || defined(__x86_64__))
#if defined(__GNUC__) && defined(i386)
#define cpuid(func, a, b, c, d) \
__asm__ __volatile__ ( \
" pushl %%ebx \n" \
" cpuid \n" \
" movl %%ebx, %%esi \n" \
" popl %%ebx \n" : \
"=a" (a), "=S" (b), "=c" (c), "=d" (d) : "a" (func))
#elif defined(__GNUC__) && defined(__x86_64__)
#define cpuid(func, a, b, c, d) \
__asm__ __volatile__ ( \
" pushq %%rbx \n" \
" cpuid \n" \
" movq %%rbx, %%rsi \n" \
" popq %%rbx \n" : \
"=a" (a), "=S" (b), "=c" (c), "=d" (d) : "a" (func))
#elif (defined(_MSC_VER) && defined(_M_IX86)) || defined(__WATCOMC__)
#define cpuid(func, a, b, c, d) \
__asm { \
Expand Down

0 comments on commit fa90aa1

Please sign in to comment.