首頁 >後端開發 >C++ >如何在 Linux 中使用 GCC 存取 CPU 資訊:Assembly 與 `cpuid.h`?

如何在 Linux 中使用 GCC 存取 CPU 資訊:Assembly 與 `cpuid.h`?

Patricia Arquette
Patricia Arquette原創
2024-11-01 18:20:021005瀏覽

How to Access CPU Information using GCC in Linux: Assembly vs. `cpuid.h`?

如何使用GCC 在Linux 中存取CPU 資訊

在x86 架構領域,開發人員經常依賴Windows API 中的_cpuinfo()檢索有關其CPU 的有價值的資訊。然而,Linux 使用者有自己的一套工具可供使用,其中之一就是 cpuid 指令。

使用 GCC 在 Linux 中利用 cpuid 的一種方法涉及內聯彙編,這是一種將彙編指令與 C 混合的技術/C 程式碼。彙編程式可讓開發人員直接控制CPU 操作,並且您可能已經嘗試為cpuid 編寫自己的彙編例程:

<code class="c++">// Accessing CPUID using assembly

#include <iostream>

int main()
{
  int a, b;

  for (a = 0; a < 5; a++)
  {
    __asm ( "mov %1, %%eax; "            // a into eax
          "cpuid;&quot;
          "mov %%eax, %0;&quot;             // eax into b
          :&quot;=r&quot;(b)                     // output
          :&quot;r&quot;(a)                      // input
          :&quot;%eax&quot;,&quot;%ebx&quot;,&quot;%ecx&quot;,&quot;%edx&quot; // clobbered register
         );
    std::cout << "The CPUID level " << a << " gives EAX= " << b << '\n';
  }

  return 0;
}</code>

雖然此方法授予您對cpuid 的低階存取權限,但它需要彙編編碼,這可能非常耗時且容易出錯。幸運的是,有一種更簡單的方法可以消除彙編的需要。

GCC 提供了一個名為 cpuid.h 的強大頭文件,它為 cpuid 操作提供全面的支援。該標頭聲明了強大的函數,使您能夠檢索 CPU 信息,而無需複雜的內聯彙編。以下是如何利用 cpuid.h 檢索 CPU 資料:

<code class="c++">// Accessing CPUID using cpuid.h

#include <iostream>
#include <cpuid.h>

int main()
{
  unsigned int eax, ebx, ecx, edx;

  // Get the maximum supported CPUID level
  unsigned int max_level = __get_cpuid_max(0x0, NULL);

  // Retrieve CPUID data for level 0
  __get_cpuid(0, &eax, &ebx, &ecx, &edx);
  std::cout << "CPUID level 0:" << std::endl;
  std::cout << "  EAX: " << eax << std::endl;
  std::cout << "  EBX: " << ebx << std::endl;
  std::cout << "  ECX: " << ecx << std::endl;
  std::cout << "  EDX: " << edx << std::endl;

  // Repeat for other levels as needed
  // ...

  return 0;
}</code>

使用 cpuid.h 標頭,您可以輕鬆檢索 CPU 信息,而無需複雜的彙編編碼。它提供了一個方便可靠的介面來存取 Linux 應用程式中特定於 CPU 的資料。

以上是如何在 Linux 中使用 GCC 存取 CPU 資訊:Assembly 與 `cpuid.h`?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn