Get CPU Brand

來源:互聯網
上載者:User

Get CPU Brand

Recent Intel and AMD processors have an extend CPUID function call, that returns the name of the processor. In earlier cpu models you had to use the version and feature information function of CPUID to look up names in a string list of your own.

The function GetBrandString shows how to access the brand string, provided the CPUID instuction is available.

Some AMD (K5 Model 1/2/3,K6 Model 6/7, K6 -2 Model 8, K6-III Model 9, all Athlon and Duron) and Intel Pentium IV support a Processor Name String that is a 0 byte terminated string that can be a up to 47 characters long (terminating 0 byte excluded) terminating.

function GetBrandString : string;

  function CPUIDAvail : boolean; assembler;
  {Thests wheter the CPUID instruction is available}
  asm
    pushfd                // get flags into ax
    pop   eax             // save a copy on the stack
    mov   edx,eax
    xor   eax, 0200000h   // flip bit 21
    push  eax             // load new value into flags
    popfd                 // get them back
    pushfd
    pop   eax
    xor   eax,edx
    and   eax, 0200000h   // clear all but bit 21
    shr   eax, 21
  end;

const
  CPUID=$a20f;
var
  s:array[0..48] of char;
begin
  fillchar(s,sizeof(s),0);
  if CPUIDAvail then begin
    asm
      //save regs
      push ebx
      push ecx
      push edx
      //check if necessary extended CPUID calls are
      //supported, if not return null string
      mov  eax,080000000h
      dw   CPUID
      cmp  eax,080000004h
      jb   @@endbrandstr
      //get first name part
      mov  eax,080000002h
      dw   CPUID
      mov  longword(s[0]),eax
      mov  longword(s[4]),ebx
      mov  longword(s[8]),ecx
      mov  longword(s[12]),edx
      //get second name part
      mov  eax,080000003h
      dw   CPUID
      mov  longword(s[16]),eax
      mov  longword(s[20]),ebx
      mov  longword(s[24]),ecx
      mov  longword(s[28]),edx
      //get third name part
      mov  eax,080000004h
      dw   CPUID
      mov  longword(s[32]),eax
      mov  longword(s[36]),ebx
      mov  longword(s[40]),ecx
      mov  longword(s[44]),edx
    @@endbrandstr:
      //restore regs
      pop  edx
      pop  ecx
      pop  ebx
     end;
   end;
   result:=StrPas(s);
end;

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.