Lines Matching refs:HasExtLeaf1
1198 bool HasExtLeaf1 = MaxExtLevel >= 0x80000001 && in getAvailableFeatures() local
1200 if (HasExtLeaf1 && ((ECX >> 6) & 1)) in getAvailableFeatures()
1202 if (HasExtLeaf1 && ((ECX >> 11) & 1)) in getAvailableFeatures()
1204 if (HasExtLeaf1 && ((ECX >> 16) & 1)) in getAvailableFeatures()
1207 if (HasExtLeaf1 && ((EDX >> 29) & 1)) in getAvailableFeatures()
1718 bool HasExtLeaf1 = MaxExtLevel >= 0x80000001 && in getHostCPUFeatures() local
1720 Features["sahf"] = HasExtLeaf1 && ((ECX >> 0) & 1); in getHostCPUFeatures()
1721 Features["lzcnt"] = HasExtLeaf1 && ((ECX >> 5) & 1); in getHostCPUFeatures()
1722 Features["sse4a"] = HasExtLeaf1 && ((ECX >> 6) & 1); in getHostCPUFeatures()
1723 Features["prfchw"] = HasExtLeaf1 && ((ECX >> 8) & 1); in getHostCPUFeatures()
1724 Features["xop"] = HasExtLeaf1 && ((ECX >> 11) & 1) && HasAVXSave; in getHostCPUFeatures()
1725 Features["lwp"] = HasExtLeaf1 && ((ECX >> 15) & 1); in getHostCPUFeatures()
1726 Features["fma4"] = HasExtLeaf1 && ((ECX >> 16) & 1) && HasAVXSave; in getHostCPUFeatures()
1727 Features["tbm"] = HasExtLeaf1 && ((ECX >> 21) & 1); in getHostCPUFeatures()
1728 Features["mwaitx"] = HasExtLeaf1 && ((ECX >> 29) & 1); in getHostCPUFeatures()
1730 Features["64bit"] = HasExtLeaf1 && ((EDX >> 29) & 1); in getHostCPUFeatures()