We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Old processors -like Pentium 4- provide cache information via descriptors available in cpuid leaf 2. https://www.felixcloutier.com/x86/cpuid#input-eax-=-02h--tlb-cache-prefetch-information-returned-in-eax--ebx--ecx--edx
On newer processors this information is provided via leaf 0x00000004 for Intel and leaf 0x8000001D for AMD.
Both detection run sequentially. Unfortunately the ParseCacheInfo function overrides the CacheInfo data already setup by ParseLeaf2.
ParseCacheInfo
CacheInfo
ParseLeaf2
The text was updated successfully, but these errors were encountered:
This patch introduced
Sorry, something went wrong.
gchatelet
Successfully merging a pull request may close this issue.
Old processors -like Pentium 4- provide cache information via descriptors available in cpuid leaf 2.
https://www.felixcloutier.com/x86/cpuid#input-eax-=-02h--tlb-cache-prefetch-information-returned-in-eax--ebx--ecx--edx
On newer processors this information is provided via leaf 0x00000004 for Intel and leaf 0x8000001D for AMD.
Both detection run sequentially. Unfortunately the
ParseCacheInfo
function overrides theCacheInfo
data already setup byParseLeaf2
.The text was updated successfully, but these errors were encountered: