Searched refs:_cpuFeatures (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dvm_version_x86.hpp226 static int _cpuFeatures; // features returned by the "cpuid" instruction member in class:VM_Version
540 static bool supports_cpuid() { return _cpuFeatures != 0; }
541 static bool supports_cmpxchg8() { return (_cpuFeatures & CPU_CX8) != 0; }
542 static bool supports_cmov() { return (_cpuFeatures & CPU_CMOV) != 0; }
543 static bool supports_fxsr() { return (_cpuFeatures & CPU_FXSR) != 0; }
544 static bool supports_ht() { return (_cpuFeatures & CPU_HT) != 0; }
545 static bool supports_mmx() { return (_cpuFeatures & CPU_MMX) != 0; }
546 static bool supports_sse() { return (_cpuFeatures & CPU_SSE) != 0; }
547 static bool supports_sse2() { return (_cpuFeatures & CPU_SSE2) != 0; }
548 static bool supports_sse3() { return (_cpuFeatures
[all...]
H A Dvm_version_x86.cpp48 int VM_Version::_cpuFeatures; member in class:VM_Version
346 _cpuFeatures = 0;
358 _cpuFeatures = feature_flags();
397 _cpuFeatures &= ~(CPU_SSE|CPU_SSE2|CPU_SSE3|CPU_SSSE3|CPU_SSE4A|CPU_SSE4_1|CPU_SSE4_2);
400 _cpuFeatures &= ~CPU_SSE4_1;
401 _cpuFeatures &= ~CPU_SSE4_2;
405 _cpuFeatures &= ~CPU_SSE3;
406 _cpuFeatures &= ~CPU_SSSE3;
407 _cpuFeatures &= ~CPU_SSE4A;
411 _cpuFeatures
[all...]

Completed in 259 milliseconds