Is the following code valid to check if a CPU supports SSE3? Using the IsProcessorFeaturePresent() function does apparently not work on Windows XP (see http://msdn.microsoft.com/en-us/library/ms724482(v=vs.85).aspx).

   bool CheckSSE3()
   {
      int CPUInfo[4] = {-1};

      //-- Get number of valid info ids
      __cpuid(CPUInfo, 0);
      int nIds = CPUInfo[0];

      //-- Get info for id "1"
      if (nIds >= 1)
      {
         __cpuid(CPUInfo, 1);
         bool bSSE3NewInstructions = (CPUInfo[2] & 0x1) || false;
         return bSSE3NewInstructions;     
      }

      return false;      
   }
link|improve this question

1  
It seems correct, as far as I can tell from reading Intel® 64 and IA-32 Architectures Software Developer’s Manual Volume 2 (2A & 2B): Instruction Set Reference, A-Z, page 284. Also, bit 9 of CPUInfo[2] signals supplemental SSE3 instructions. – Norbert P. May 25 '11 at 15:19
feedback

1 Answer

up vote 3 down vote accepted

I know this was already answered in the comment, but I thought I'd add this since it might be useful. This is pulled from one of my CPU-dispatchers and covers everything from MMX all the way to XOP.

int x64     = false;
int MMX     = false;
int SSE     = false;
int SSE2    = false;
int SSE3    = false;
int SSSE3   = false;
int SSE41   = false;
int SSE42   = false;
int SSE4a   = false;
int AVX     = false;
int XOP     = false;
int FMA3    = false;
int FMA4    = false;

int info[4];
__cpuid(info, 0);
int nIds = info[0];

__cpuid(info, 0x80000000);
int nExIds = info[0];

//  Detect Instruction Set
if (nIds >= 1){
    __cpuid(info,0x00000001);
    MMX   = (info[3] & ((int)1 << 23)) != 0;
    SSE   = (info[3] & ((int)1 << 25)) != 0;
    SSE2  = (info[3] & ((int)1 << 26)) != 0;
    SSE3  = (info[2] & ((int)1 <<  0)) != 0;

    SSSE3 = (info[2] & ((int)1 <<  9)) != 0;
    SSE41 = (info[2] & ((int)1 << 19)) != 0;
    SSE42 = (info[2] & ((int)1 << 20)) != 0;

    AVX   = (info[2] & ((int)1 << 28)) != 0;
    FMA3  = (info[2] & ((int)1 << 12)) != 0;
}

if (nExIds >= 0x80000001){
    __cpuid(info,0x80000001);
    x64   = (info[3] & ((int)1 << 29)) != 0;
    SSE4a = (info[2] & ((int)1 <<  6)) != 0;
    FMA4  = (info[2] & ((int)1 << 16)) != 0;
    XOP   = (info[2] & ((int)1 << 11)) != 0;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.