Lines Matching defs:HasExtLeaf1
1381 bool HasExtLeaf1 = MaxExtLevel >= 0x80000001 &&
1383 if (HasExtLeaf1 && ((ECX >> 6) & 1))
1385 if (HasExtLeaf1 && ((ECX >> 11) & 1))
1387 if (HasExtLeaf1 && ((ECX >> 16) & 1))
1390 if (HasExtLeaf1 && ((EDX >> 29) & 1))
1867 bool HasExtLeaf1 = MaxExtLevel >= 0x80000001 &&
1869 Features["sahf"] = HasExtLeaf1 && ((ECX >> 0) & 1);
1870 Features["lzcnt"] = HasExtLeaf1 && ((ECX >> 5) & 1);
1871 Features["sse4a"] = HasExtLeaf1 && ((ECX >> 6) & 1);
1872 Features["prfchw"] = HasExtLeaf1 && ((ECX >> 8) & 1);
1873 Features["xop"] = HasExtLeaf1 && ((ECX >> 11) & 1) && HasAVXSave;
1874 Features["lwp"] = HasExtLeaf1 && ((ECX >> 15) & 1);
1875 Features["fma4"] = HasExtLeaf1 && ((ECX >> 16) & 1) && HasAVXSave;
1876 Features["tbm"] = HasExtLeaf1 && ((ECX >> 21) & 1);
1877 Features["mwaitx"] = HasExtLeaf1 && ((ECX >> 29) & 1);
1879 Features["64bit"] = HasExtLeaf1 && ((EDX >> 29) & 1);