The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: ASMManiac on February 15, 2012, 06:59:52 PM

Title: Determining Which instructions CPU supports
Post by: ASMManiac on February 15, 2012, 06:59:52 PM
I am looking for a way to determine which instructions my CPU supports e.g. SSE, SSE2 ... AVX  etc.  I am especially interested in AVX
How can I determine this by looking in my cpu settings (I am using windows 7)?

If I don't have an instruction but I write assembly code using that instruction, will it assemble into code that my machine will not understand or misinterpret and crash?
Title: Re: Determining Which instructions CPU supports
Post by: jj2007 on February 15, 2012, 07:27:12 PM
Try this...

include \masm32\include\masm32rt.inc
.code
start:
  db 0Fh, 0A2h
  bt ecx, 28 ; edx bit 26, SSE2
  .if Carry?
  MsgBox 0, "AVX supported", "Your CPU:", MB_OK
  .else
  MsgBox 0, "No AVX, sorry", "Your CPU:", MB_OK
  .endif
  exit
end start
Title: Re: Determining Which instructions CPU supports
Post by: clive on February 15, 2012, 07:58:46 PM
Quote from: ASMManiacI am looking for a way to determine which instructions my CPU supports e.g. SSE, SSE2 ... AVX  etc.  I am especially interested in AVX. How can I determine this by looking in my cpu settings (I am using windows 7)?

You'd use CPUID (JJ encoded as bytes), and use the mechanisms Intel and AMD have documented to determine the processors feature set. You'd typically do this once, and change your code paths accordingly.

QuoteIf I don't have an instruction but I write assembly code using that instruction, will it assemble into code that my machine will not understand or misinterpret and crash?

The assembler doesn't know what instructions will be present on the machine where the code is run, to handle a faulting instruction you'd put a SEH (structured exception handler) around it. Without one the machine will not explode, but the OS will kill your application.
Title: Re: Determining Which instructions CPU supports
Post by: baltoro on February 15, 2012, 08:26:59 PM
ASM MANIAC,
Here is an excellent MASM Forum thread that explores the full glory of the CPUID Instruction (author: DAVE): Another CPU ID Program (http://www.masm32.com/board/index.php?topic=13044.0)
I discovered through experience writing one of my own MASM programs that using the Windows API: IsProcessorFeaturePresent (http://msdn.microsoft.com/en-us/library/ms724482(v=vs.85).aspx) produces unreliable results.
The DAVE technique is optimal. :eek
...And, if you're interested, here is the OFFICIAL technical description from Intel: Intel® Processor Identification and the CPUID Instruction (http://www.intel.com/content/dam/www/public/us/en/documents/application-notes/processor-identification-cpuid-instruction-note.pdf)
Title: Re: Determining Which instructions CPU supports
Post by: dedndave on February 15, 2012, 09:04:06 PM
i might add....
Jochen hard-coded the CPUID instruction so that it would work in all cases
you do not have to hard-code it if the processor is .586 or higher

however, his comment on this line is a little confusing   :red
  bt ecx, 28  ; edx bit 26, SSE2
also, EAX should be set to 1
        .586

        push    1
        pop     eax
        cpuid
        bt      ecx,28       ;AVX ?
        jc      avx_present
Title: Re: Determining Which instructions CPU supports
Post by: jj2007 on February 15, 2012, 09:35:03 PM
Quote from: dedndave on February 15, 2012, 09:04:06 PM
also, EAX should be set to 1

Oops, I forgot that one... :red
Title: Re: Determining Which instructions CPU supports
Post by: dedndave on February 15, 2012, 09:38:07 PM
yah - but i stole the PUSH 1, POP EAX from you   :lol
Title: Re: Determining Which instructions CPU supports
Post by: ASMManiac on February 16, 2012, 02:18:30 AM
why is
  push    1
  pop     eax
better than
  mov eax,1
?
Title: Re: Determining Which instructions CPU supports
Post by: ASMManiac on February 16, 2012, 02:30:41 AM
How do I get the functions included in the line "include \masm32\include\masm32rt.inc"
I am using jWasm not Masm
Title: Re: Determining Which instructions CPU supports
Post by: dedndave on February 16, 2012, 02:47:36 AM
PUSH 1, POP EAX is a few bytes smaller than MOV EAX,1   :P
it's also slower - but, CPUID is slow anyways, so you may as well go for small

you should still be able to use the masm32rt.inc file with JwAsm
to see what it does, open it with NotePad or QE - it is a text file

also - a note about include files...
Andreas (Japheth) also has a set of "wininc" include files that differ from those with masm32
he went for a 1:1 translation of the MS C header files - a bit different than using the masm32 includes
also - masm32 has a library of functions and macros added that wininc does not
i would have to say that using Andreas' wininc files is for intermediate or advanced ASM programmers, at least
with some considerable effort, you can mix the two   :P