reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/Host.cpp
 1356   Features["sahf"]   = HasExtLeaf1 && ((ECX >>  0) & 1);
 1357   Features["lzcnt"]  = HasExtLeaf1 && ((ECX >>  5) & 1);
 1358   Features["sse4a"]  = HasExtLeaf1 && ((ECX >>  6) & 1);
 1359   Features["prfchw"] = HasExtLeaf1 && ((ECX >>  8) & 1);
 1360   Features["xop"]    = HasExtLeaf1 && ((ECX >> 11) & 1) && HasAVXSave;
 1361   Features["lwp"]    = HasExtLeaf1 && ((ECX >> 15) & 1);
 1362   Features["fma4"]   = HasExtLeaf1 && ((ECX >> 16) & 1) && HasAVXSave;
 1363   Features["tbm"]    = HasExtLeaf1 && ((ECX >> 21) & 1);
 1364   Features["mwaitx"] = HasExtLeaf1 && ((ECX >> 29) & 1);
 1366   Features["64bit"]  = HasExtLeaf1 && ((EDX >> 29) & 1);