如何在Linux 中使用「cpuid」指令
在常用GCC 的Linux 環境中,開發者可以透過以下方式取得CPU 資訊“cpuid”指令。雖然可以使用彙編語言,但還有一種更有效的方法。
使用__get_cpuid_max 和__get_cpuid
GCC 包含cpuid.h 頭文件,它提供以下函數:
使用GCC 函數的好處:
<code class="cpp">#include <cpuid.h> int main() { unsigned int eax, ebx, ecx, edx; // Determine the highest supported CPUID level. unsigned int max_level = __get_cpuid_max(0, NULL); // Fetch CPUID information for each supported level. for (unsigned int level = 0; level <= max_level; level++) { if (__get_cpuid(level, &eax, &ebx, &ecx, &edx)) { printf("CPUID Level %u: EAX=%08X, EBX=%08X, ECX=%08X, EDX=%08X\n", level, eax, ebx, ecx, edx); } } return 0; }</code>
使用GCC 函數的好處:
使用GCC 函數的好處:
以上是如何在有 GCC 的 Linux 中使用「cpuid」指令檢索 CPU 資訊?的詳細內容。更多資訊請關注PHP中文網其他相關文章!