Lines Matching defs:HasExtLeaf1
1365 bool HasExtLeaf1 = MaxExtLevel >= 0x80000001 &&
1367 if (HasExtLeaf1 && ((ECX >> 6) & 1))
1369 if (HasExtLeaf1 && ((ECX >> 11) & 1))
1371 if (HasExtLeaf1 && ((ECX >> 16) & 1))
1374 if (HasExtLeaf1 && ((EDX >> 29) & 1))
1796 bool HasExtLeaf1 = MaxExtLevel >= 0x80000001 &&
1798 Features["sahf"] = HasExtLeaf1 && ((ECX >> 0) & 1);
1799 Features["lzcnt"] = HasExtLeaf1 && ((ECX >> 5) & 1);
1800 Features["sse4a"] = HasExtLeaf1 && ((ECX >> 6) & 1);
1801 Features["prfchw"] = HasExtLeaf1 && ((ECX >> 8) & 1);
1802 Features["xop"] = HasExtLeaf1 && ((ECX >> 11) & 1) && HasAVXSave;
1803 Features["lwp"] = HasExtLeaf1 && ((ECX >> 15) & 1);
1804 Features["fma4"] = HasExtLeaf1 && ((ECX >> 16) & 1) && HasAVXSave;
1805 Features["tbm"] = HasExtLeaf1 && ((ECX >> 21) & 1);
1806 Features["mwaitx"] = HasExtLeaf1 && ((ECX >> 29) & 1);
1808 Features["64bit"] = HasExtLeaf1 && ((EDX >> 29) & 1);