fbpx
Wikipedia

CPUID

In the x86 architecture, the CPUID instruction (identified by a CPUID opcode) is a processor supplementary instruction (its name derived from CPU Identification) allowing software to discover details of the processor. It was introduced by Intel in 1993 with the launch of the Pentium and SL-enhanced 486 processors.[1]

A program can use the CPUID to determine processor type and whether features such as MMX/SSE are implemented.

History edit

Prior to the general availability of the CPUID instruction, programmers would write esoteric machine code which exploited minor differences in CPU behavior in order to determine the processor make and model.[2][3] With the introduction of the 80386 processor, EDX on reset indicated the revision but this was only readable after reset and there was no standard way for applications to read the value.

Outside the x86 family, developers are mostly still required to use esoteric processes (involving instruction timing or CPU fault triggers) to determine the variations in CPU design that are present.

In the Motorola 680x0 family — that never had a CPUID instruction of any kind — certain specific instructions required elevated privileges. These could be used to tell various CPU family members apart. In the Motorola 68010 the instruction MOVE from SR became privileged. This notable instruction (and state machine) change allowed the 68010 to meet the Popek and Goldberg virtualization requirements. Because the 68000 offered an unprivileged MOVE from SR the 2 different CPUs could be told apart by a CPU error condition being triggered.

While the CPUID instruction is specific to the x86 architecture, other architectures (like ARM) often provide on-chip registers which can be read in prescribed ways to obtain the same sorts of information provided by the x86 CPUID instruction.

Calling CPUID edit

The CPUID opcode is 0F A2.

In assembly language, the CPUID instruction takes no parameters as CPUID implicitly uses the EAX register to determine the main category of information returned. In Intel's more recent terminology, this is called the CPUID leaf. CPUID should be called with EAX = 0 first, as this will store in the EAX register the highest EAX calling parameter (leaf) that the CPU implements.

To obtain extended function information CPUID should be called with the most significant bit of EAX set. To determine the highest extended function calling parameter, call CPUID with EAX = 80000000h.

CPUID leaves greater than 3 but less than 80000000 are accessible only when the model-specific registers have IA32_MISC_ENABLE.BOOT_NT4 [bit 22] = 0 (which is so by default). As the name suggests, Windows NT 4.0 until SP6 did not boot properly unless this bit was set,[4] but later versions of Windows do not need it, so basic leaves greater than 4 can be assumed visible on current Windows systems. As of July 2014, basic valid leaves go up to 14h, but the information returned by some leaves are not disclosed in the publicly available documentation, i.e. they are "reserved".

Some of the more recently added leaves also have sub-leaves, which are selected via the ECX register before calling CPUID.

EAX=0: Highest Function Parameter and Manufacturer ID edit

This returns the CPU's manufacturer ID string – a twelve-character ASCII string stored in EBX, EDX, ECX (in that order). The highest basic calling parameter (the largest value that EAX can be set to before calling CPUID) is returned in EAX.

Here is a list of processors and the highest function implemented.

Highest Function Parameter
Processors Basic Extended
Earlier Intel 486 CPUID Not Implemented
Later Intel 486 and Pentium 0x01 Not Implemented
Pentium Pro, Pentium II and Celeron 0x02 Not Implemented
Pentium III 0x03 Not Implemented
Pentium 4 0x02 0x8000 0004
Xeon 0x02 0x8000 0004
Pentium M 0x02 0x8000 0004
Pentium 4 with Hyper-Threading 0x05 0x8000 0008
Pentium D (8xx) 0x05 0x8000 0008
Pentium D (9xx) 0x06 0x8000 0008
Core Duo 0x0A 0x8000 0008
Core 2 Duo 0x0A 0x8000 0008
Xeon 3000, 5100, 5200, 5300, 5400 (5000 series) 0x0A 0x8000 0008
Core 2 Duo 8000 series 0x0D 0x8000 0008
Xeon 5200, 5400 series 0x0A 0x8000 0008
Atom 0x0A 0x8000 0008
Nehalem-based processors 0x0B 0x8000 0008
Ivy Bridge-based processors 0x0D 0x8000 0008
Skylake-based processors (proc base & max freq; Bus ref. freq) 0x16 0x8000 0008
System-On-Chip Vendor Attribute Enumeration Main Leaf 0x17 0x8000 0008

The following are known processor manufacturer ID strings:

The following are ID strings used by open source soft CPU cores:

  • "GenuineAO486" – ao486 CPU (old)[8][9]
  • "MiSTer AO486" – ao486 CPU (new)[10][9]
  • "GenuineIntel" – v586 core[11] (this is identical to the Intel ID string)

The following are known ID strings from virtual machines:

For instance, on a GenuineIntel processor values returned in EBX is 0x756e6547, EDX is 0x49656e69 and ECX is 0x6c65746e. The following example code displays the vendor ID string as well as the highest calling parameter that the CPU implements.

 .intel_syntax noprefix  .text .m0: .string "CPUID: %x\n" .m1: .string "Largest basic function number implemented: %i\n" .m2: .string "Vendor ID: %s\n"   .globl main  main:  push r12  mov eax, 1  sub rsp, 16  cpuid  lea rdi, .m0[rip]  mov esi, eax  call printf  mov eax, 0  cpuid  lea rdi, .m1[rip]  mov esi, eax  mov r12d, edx  mov ebp, ecx  call printf  mov 3[rsp], ebx  lea rsi, 3[rsp]  lea rdi, .m2[rip]  mov 7[rsp], r12d  mov 11[rsp], ebp  call printf  add rsp, 16  pop r12  ret   .section .note.GNU-stack,"",@progbits 

On some processors, it is possible to modify the Manufacturer ID string reported by CPUID.(EAX=0) by writing a new ID string to particular MSRs (Model-specific registers) using the WRMSR instruction. This has been used on non-Intel processors to enable features and optimizations that have been disabled in software for CPUs that don't return the GenuineIntel ID string.[14] Processors that are known to possess such MSRs include:

Manufacturer ID MSRs
Processor MSRs
IDT WinChip 108h-109h[15]
VIA C3, C7 1108h-1109h[16]
VIA Nano 1206h-1207h[17]
Transmeta Crusoe 80860001h-80860003h[18]
AMD Geode GX, LX 3000h-3001h[19]
DM&P Vortex86EX2 52444300h-52444301h[20]

EAX=1: Processor Info and Feature Bits edit

This returns the CPU's stepping, model, and family information in register EAX (also called the signature of a CPU), feature flags in registers EDX and ECX, and additional feature info in register EBX.[21]

CPUID EAX=1: Processor Version Information in EAX
EAX
31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
Reserved Extended Family ID Extended Model ID Reserved Processor Type Family ID Model Stepping ID
  • Stepping ID is a product revision number assigned due to fixed errata or other changes.
  • The actual processor model is derived from the Model, Extended Model ID and Family ID fields. If the Family ID field is either 6 or 15, the model is equal to the sum of the Extended Model ID field shifted left by 4 bits and the Model field. Otherwise, the model is equal to the value of the Model field.
  • The actual processor family is derived from the Family ID and Extended Family ID fields. If the Family ID field is equal to 15, the family is equal to the sum of the Extended Family ID and the Family ID fields. Otherwise, the family is equal to the value of the Family ID field.
  • The meaning of the Processor Type field is given in the table below.
Processor Type
Type Encoding in Binary
Original equipment manufacturer (OEM) Processor 00
Intel Overdrive Processor 01
Dual processor (applicable to Intel P5 Pentium processors only)[22] 10
Reserved value 11


As of October 2023, the following x86 processor family IDs are known:[23]

CPUID EAX=1: Processor Family IDs
Family ID +
Extended Family ID
Intel AMD Other
0h
1h
2h
3h [a]
4h 486 486,[24]
5x86,
Élan SC4xx/5xx[25]
Cyrix 5x86,[26]
Cyrix MediaGX,[27]
UMC Green CPU,[28]
MCST Elbrus (most models),[7]
MiSTer ao486[29]
5h Pentium,
Pentium MMX,
Quark X1000
K5,
K6
Cyrix 6x86,
Cyrix MediaGXm,[27]
Geode (except NX),
NexGen Nx586,[28]
IDT WinChip,
Transmeta Crusoe,
Rise mP6,
SiS 550,
DM&P Vortex86 (early),[30]
RDC IAD 100,
MCST Elbrus-8C2[7]
6h Pentium Pro,
Pentium II,
Pentium III,
Pentium M,
Intel Core (all variants),
Intel Atom (all variants),
Xeon (except NetBurst variants),
Xeon Phi (except KNC)
K7: Athlon,
Athlon XP
Cyrix 6x86MX/MII,
VIA C3,
VIA C7,
VIA Nano,
DM&P Vortex86 (DX3,EX2[31]),
Zhaoxin ZX-A/B/C/C+,
(Centaur CNS[32]),
MCST Elbrus-12C/16C/2C3[7]
7h Itanium
(in IA-32 mode)
Zhaoxin KaiXian,
Zhaoxin KaisHeng
8h [b]
9h
0Ah
0Bh Xeon Phi (Knights Corner)[34]
0Ch
0Dh
0Eh
0Fh NetBurst (Pentium 4) K8/Hammer
(Athlon 64)
Transmeta Efficeon
10h K10: Phenom
11h Itanium 2[35]
(in IA-32 mode)
Turion X2
12h Llano
13h
14h Bobcat
15h Bulldozer,
Piledriver,
Steamroller,
Excavator
16h Jaguar,
Puma
17h Zen 1,
Zen 2
18h Hygon Dhyana
19h Zen 3,
Zen 4
1Ah (Zen 5)
  1. ^ The i386 processor does not support the CPUID instruction - it does however return Family ID 3h in the reset-value of EDX.
  2. ^ Family ID 8h has been reported to have been deliberately avoided for the Pentium 4 processor family due to incompatibility with Windows NT 4.0.[33]


CPUID EAX=1: Additional Information in EBX
Bits EBX Valid
7:0 Brand Index
15:8 CLFLUSH line size (Value * 8 = cache line size in bytes) if CLFLUSH feature flag is set.

CPUID.01.EDX.CLFSH [bit 19]= 1

23:16 Maximum number of addressable IDs for logical processors in this physical package;

The nearest power-of-2 integer that is not smaller than this value is the number of unique initial APIC IDs reserved for addressing different logical processors in a physical package.

Former use: Number of logical processors per physical processor; two for the Pentium 4 processor with Hyper-Threading Technology.[36]

if Hyper-threading feature flag is set.

CPUID.01.EDX.HTT [bit 28]= 1

31:24 Local APIC ID: The initial APIC-ID is used to identify the executing logical processor.

It can also be identified via the cpuid 0BH leaf ( CPUID.0Bh.EDX[x2APIC-ID] ).

Pentium 4 and subsequent processors.

The processor info and feature flags are manufacturer specific but usually, the Intel values are used by other manufacturers for the sake of compatibility.

CPUID EAX=1: Feature Information in EDX and ECX
EDX ECX[a]
Bit Short Feature Short Feature Bit
0 fpu Onboard x87 FPU sse3 SSE3 (Prescott New Instructions - PNI) 0
1 vme Virtual 8086 mode extensions (such as VIF, VIP, PVI) pclmulqdq PCLMULQDQ (carry-less multiply) instruction 1
2 de Debugging extensions (CR4 bit 3) dtes64 64-bit debug store (edx bit 21) 2
3 pse Page Size Extension (4 MByte pages) monitor MONITOR and MWAIT instructions (PNI) 3
4 tsc Time Stamp Counter and RDTSC instruction ds-cpl CPL qualified debug store 4
5 msr Model-specific registers and RDMSR/WRMSR instructions vmx Virtual Machine eXtensions 5
6 pae Physical Address Extension smx Safer Mode Extensions (LaGrande) (GETSEC instruction) 6
7 mce Machine Check Exception est Enhanced SpeedStep 7
8 cx8[b] CMPXCHG8B (compare-and-swap) instruction tm2 Thermal Monitor 2 8
9 apic[c] Onboard Advanced Programmable Interrupt Controller ssse3 Supplemental SSE3 instructions 9
10 (mtrr)[d] (reserved) cnxt-id L1 Context ID 10
11 sep[e] SYSENTER and SYSEXIT fast system call instructions sdbg Silicon Debug interface 11
12 mtrr Memory Type Range Registers fma Fused multiply-add (FMA3) 12
13 pge Page Global Enable bit in CR4 cx16 CMPXCHG16B instruction 13
14 mca Machine check architecture xtpr Can disable sending task priority messages 14
15 cmov Conditional move: CMOV, FCMOV and FCOMI instructions[f] pdcm Perfmon & debug capability 15
16 pat Page Attribute Table (reserved)[g] 16
17 pse-36 36-bit page size extension pcid Process context identifiers (CR4 bit 17) 17
18 psn Processor Serial Number supported and enabled[h] dca Direct cache access for DMA writes[44][45] 18
19 clfsh CLFLUSH cache line flush instruction (SSE2) sse4.1 SSE4.1 instructions 19
20 (nx) No-execute (NX) bit (Itanium only)[46][i] sse4.2 SSE4.2 instructions 20
21 ds Debug store: save trace of executed jumps x2apic x2APIC (enhanced APIC) 21
22 acpi Onboard thermal control MSRs for ACPI movbe MOVBE instruction (big-endian) 22
23 mmx MMX instructions (64-bit SIMD) popcnt POPCNT instruction 23
24 fxsr FXSAVE, FXRSTOR instructions, CR4 bit 9 tsc-deadline APIC implements one-shot operation using a TSC deadline value 24
25 sse Streaming SIMD Extensions (SSE) instructions
(aka "Katmai New Instructions"; 128-bit SIMD)
aes-ni AES instruction set 25
26 sse2 SSE2 instructions xsave Extensible processor state save/restore:
XSAVE, XRSTOR, XSETBV, XGETBV instructions
26
27 ss CPU cache implements self-snoop osxsave XSAVE enabled by OS 27
28 htt Max APIC IDs reserved field is Valid[j] avx Advanced Vector Extensions (256-bit SIMD) 28
29 tm Thermal monitor automatically limits temperature f16c Floating-point conversion instructions to/from FP16 format 29
30 ia64 IA64 processor emulating x86[46] rdrnd RDRAND (on-chip random number generator) feature 30
31 pbe Pending Break Enable (PBE# pin) wakeup capability hypervisor Hypervisor present (always zero on physical CPUs)[49][50][51] 31
  1. ^ On some older processors, executing CPUID with a leaf index (EAX) greater than 0 may leave EBX and ECX unmodified, keeping their old values. For this reason, it is recommended to zero out EBX and ECX before executing CPUID with a leaf index of 1.

    Processors noted to exhibit this behavior include Cyrix MII[37] and IDT WinChip 2.[38]

  2. ^ On processors from IDT, Transmeta and Rise (vendor IDs CentaurHauls, GenuineTMx86 and RiseRiseRise), the CMPXCHG8B instruction is always supported, however the feature bit for the instruction might not be set. This is a workaround for a bug in Windows NT.[39]
  3. ^ On early AMD K5 (AuthenticAMD Family 5 Model 0) processors only, EDX bit 9 used to indicate support for PGE instead. This was moved to bit 13 from K5 Model 1 onwards.[40]
  4. ^ Intel AP-485, revisions 006[41] to 008, lists CPUID.(EAX=1):EDX[bit 10] as having the name "MTRR" (albeit described as "Reserved"/"Do not count on their value") - this name was removed in later revisions of AP-485, and the bit has been listed as reserved with no name since then.
  5. ^ On Pentium Pro (GenuineIntel Family 6 Model 1) processors only, EDX bit 11 is invalid - the bit it set, but the SYSENTER and SYSEXIT instructions are not supported on the Pentium Pro.[42]
  6. ^ FCMOV and FCOMI instructions only available if onboard x87 FPU also present (indicated by EDX bit 0).
  7. ^ ECX bit 16 is listed as "Reserved" in public Intel and AMD documentation and is not set in any known processor. However, some versions of the Windows Vista kernel are reported to be checking this bit[43] - if it is set, Vista will recognize it as a "processor channels" feature.
  8. ^ On Intel CPUs that support PSN (Processor Serial Number), the PSN can be disabled by setting bit 21 of MSR 119h (BBL_CR_CTL) to 1. Doing so will cause CPUID.(EAX=1):EDX[bit 18] to return 0.
  9. ^ On non-Itanium x86 processors, support for the No-execute bit is indicated in CPUID.(EAX=8000_0001):EDX[bit 20] instead.
  10. ^ EDX bit 28, if set, indicates that bits 23:16 of CPUID.(EAX=1):EBX are valid. If this bit is not set, then the CPU package contains only 1 logical processor.

    In older documentation, this bit is often listed as a "Hyper-threading technology"[47] flag - however, while this flag is a prerequisite for Hyper-Threading support, it does not by itself indicate support for Hyper-Threading and it has been set on many CPUs that do not feature any form of multi-threading technology.[48]

Reserved fields should be masked before using them for processor identification purposes.

EAX=2: Cache and TLB Descriptor information edit

This returns a list of descriptors indicating cache and TLB capabilities in EAX, EBX, ECX and EDX registers.

On processors that support this leaf, calling CPUID with EAX=2 will cause the bottom byte of EAX to be set to 01h and the remaining 15 bytes of EAX/EBX/ECX/EDX to be filled with 15 descriptors, one byte each. These descriptors provide information about the processor's caches, TLBs and prefetch. This is typically one cache or TLB per descriptor, but some descriptor-values provide other information as well - in particular, 00h is used for an empty descriptor, FFh indicates that the leaf does not contain valid cache information and that leaf 4h should be used instead, and FEh indicates that the leaf does not contain valid TLB information and that leaf 18h should be used instead. The descriptors may appear in any order.

For each of the four registers (EAX,EBX,ECX,EDX), if bit 31 is set, then the register should not be considered to contain valid descriptors (e.g. on Itanium in IA-32 mode, CPUID(EAX=2) returns 80000000h in EDX - this should be interpreted to mean that EDX contains no valid information, not that it contains a 512K L2 cache.)

The table below provides, for known descriptor values, a condensed description of the cache or TLB indicated by that descriptor value (or other information, where that applies). The suffixes used in the table are:

  • K,M,G : binary kilobyte, megabyte, gigabyte (capacity for caches, page-size for TLBs)
  • E : entries (for TLBs; e.g. 64E = 64 entries)
  • p : page-size (e.g. 4Kp for TLBs where each entry describes one 4KByte page, 4K/2Mp for TLBs where each entry can describe either one 4Kbyte page or one 2MByte hugepage)
  • L : cache-line size (e.g. 32L = 32-byte cache line size)
  • S : cache sector size (e.g. 2S means that the cache uses sectors of 2 cache-lines each)
  • A : associativity (e.g. 6A = 6-way set-associative, FA = fully-associative)
Legend for cache/TLB descriptor byte encodings
Level-1
instruction
or data cache
Level-2
cache
Level-3
cache
Instruction
or data TLB
Level-2
shared
TLB
Other
information
(reserved)
CPUID EAX=2: Cache/TLB descriptor byte encodings
x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC xD xE xF
0x null
descriptor
ITLB: 32E,
4Kp, 4A
ITLB: 2E,
4Mp, FA
DTLB: 64E,
4Kp, 4A
DTLB: 8E,
4Mp, 4A
DTLB: 32E,
4Mp, 4A
L1I: 8K,
4A, 32L
0x L1I: 16K,
4A, 32L
L1I: 32K,
4A, 64L
L1D: 8K,
2A, 32L
ITLB: 4E,
4Mp, FA
L1D: 16K,
4A, 32L
L1D: 16K,
4A, 64L
L1D: 24K,
6A, 64L
0x
1x (L1D: 16K,
4A, 32L)[a]
(L1I: 16K,
4A, 32L)[a]
1x (L2C: 96K,
6A, 64L)[a]
L2C: 128K,
2A, 64L
1x
2x L2C: 256K,
8A, 64L
L3C: 512K,
4A, 64L, 2S
L3C: 1M,
8A, 64L, 2S
L2C: 1M,
16A, 64L
L3C: 2M,
8A, 64L, 2S
(128-byte
prefetch)[b]
(128-byte
prefetch)[b]
2x (128-byte
prefetch)[b]
L3C: 4M,
8A, 64L, 2S
L1D: 32K,
8A, 64L
2x
3x L1I: 32K,
8A, 64L
3x L2C: 128K,
4A, 64L, 2S[c]
L2C: 192K,
6A, 64L, 2S[c]
L2C: 128K,
2A, 64L, 2S[c]
L2C: 256K,
4A, 64L, 2S[c]
L2C: 384K,
6A, 64L, 2S[c]
L2C: 512K,
4A, 64L, 2S[c]
3x
4x no L3 cache
present
L2C: 128K,
4A, 32L
L2C: 256K,
4A, 32L
L2C: 512K,
4A, 32L
L2C: 1M,
4A, 32L
L2C: 2M,
4A, 32L
L3C: 4M,
4A, 64L
L3C: 8M,
8A, 64L
4x L2C: 3M,
12A, 64L
L2C/L3C:[d]
4M, 16A, 64L
L3C: 6M,
12A, 64L
L3C: 8M,
16A, 64L
L3C: 12M,
12A, 64L
L3C: 16M,
16A, 64L
L2C: 6M,
24A, 64L
ITLB: 32E,
4Kp[e]
4x
5x ITLB: 64E,FA,
4K/2M/4Mp
ITLB: 128E,FA,
4K/2M/4Mp
ITLB: 256E,FA,
4K/2M/4Mp
ITLB: 7E,
2M/4Mp, FA
DTLB: 16E,
4Mp, 4A
DTLB: 16E,
4Kp, 4A
5x DTLB: 16E,
4Kp, FA
DTLB: 32E,
2M/4Mp, 4A
DTLB: 64E
4K/4Mp, FA
DTLB: 128E,
4K/4Mp, FA
DTLB: 256E,
4K/4Mp, FA
5x
6x L1D: 16K,
8A, 64L
ITLB: 48E,
4Kp, FA
Two DTLBs:
32E, 2M/4Mp, 4A
+ 4E, 1Gp, FA
DTLB: 512E,
4Kp, 4A
L1D: 8K,
4A, 64L
L1D: 16K,
4A, 64L
6x L1D: 32K,
4A, 64L
DTLB: 64E,
4Kp, 8A
DTLB: 256E,
4Kp, 8A
DTLB: 128E,
2M/4Mp, 8A
DTLB: 16E,
1Gp, FA
6x
7x Trace cache,
12K-μop, 8A[f]
Trace cache,
16K-μop, 8A
Trace cache,
32K-μop, 8A
Trace cache,
64K-μop, 8A[c]
ITLB: 8E,
2M/4Mp, FA[g]
(L1I: 16K,
4A, 64L)[h]
7x L2C: 1M,
4A, 64L
L2C: 128K,
8A, 64L, 2S
L2C: 256K,
8A, 64L, 2S
L2C: 512K,
8A, 64L, 2S
L2C: 1M,
8A, 64L, 2S
L2C: 2M,
8A, 64L
(L2C: 256K,
8A, 128L)[h]
L2C: 512K,
2A, 64L
7x
8x L2C: 512K,
8A, 64L[f]
(L2C: 128K,
8A, 32L)[b]
L2C: 256K,
8A, 32L
L2C: 512K,
8A, 32L
L2C: 1M,
8A, 32L
L2C: 2M,
8A, 32L
L2C: 512K,
4A, 64L
L2C: 1M,
8A, 64L
8x (L3C: 2M,
4A, 64L)[a]
(L3C: 4M,
4A, 64L)[a]
(L3C: 8M,
4A, 64L)[a]
(L3C: 3M,
12A, 128L)[h][i]
8x
9x (ITLB: 64E,FA,
4K-256Mp)[a]
(DTLB: 32E,FA,
4K-256Mp)[a]
9x (DTLB: 96E,FA,
4K-256Mp)[a]
9x
Ax DTLB: 32E,
4Kp, FA
Ax Ax
Bx ITLB: 128E,
4Kp, 4A
ITLB: 8E,
2M/4Mp, 4A[j]
ITLB: 64E,
4Kp, 4A
DTLB: 128E,
4Kp, 4A
DTLB: 256E,
4Kp, 4A
ITLB: 64E,
4Kp, 8A
ITLB: 128E,
4Kp, 8A
Bx DTLB: 64E,
4Kp, 4A
Bx
Cx DTLB: 8E,
4K/4Mp, 4A
L2TLB: 1024E,
4K/2Mp, 8A
DTLB: 16E,
2M/4Mp, 4A[62]
Two L2 STLBs:
1536E, 4K/2Mp, 6A
+ 16E, 1Gp, 4A
DTLB: 32E,
2M/4Mp, 4A
Cx L2TLB: 512E,
4Kp, 4A
Cx
Dx L3C: 512K,
4A, 64L
L3C: 1M,
4A, 64L
L3C: 2M,
4A, 64L
L3C: 1M,
8A, 64L
L3C: 2M,
8A, 64L
Dx L3C: 4M,
8A, 64L
L3C: 1.5M,
12A, 64L
L3C: 3M,
12A, 64L
L3C: 6M,
12A, 64L
Dx
Ex L3C: 2M,
16A, 64L
L3C: 4M,
16A, 64L
L3C: 8M,
16A, 64L
Ex L3C: 12M,
24A, 64L
L3C: 18M,
24A, 64L[63]
L3C: 24M,
24A, 64L
Ex
Fx 64-byte
prefetch
128-byte
prefetch
Fx Leaf 2 has
no TLB info,
use leaf 18h
Leaf 2 has
no cache info,
use leaf 4
Fx
x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC xD xE xF
  1. ^ a b c d e f g h i Descriptors 10h, 15h, 1Ah, 88h, 89h, 8Ah, 90h, 96h, 9Bh are documented for the IA-32 operation mode of Itanium only.[52]
  2. ^ a b c d Descriptor values 26h,27h,28h and 81h are not listed in Intel documentation and are not used in any known CPU, but have been reported to be recognized by the Windows NT kernel v5.1 (Windows XP) and higher. 81h is also recognized by v5.0 (Windows 2000).[59]
  3. ^ a b c d e f g Descriptors 39h-3Eh and 73h are listed in rev 36 of Intel AP-485,[53] but have been removed from later Intel documentation even though some of them have been used in Intel CPUs (e.g. 39h in "Willamette-128"-based Celeron processors[54]).
  4. ^ Descriptor 49h indicates a level-3 cache on GenuineIntel Family 0Fh Model 6 (Pentium 4 based Xeon) CPUs, and a level-2 cache on other CPUs.
  5. ^ Intel's CPUID documentation does not specify the associativity of the ITLB indicated by descriptor 4Fh. The processors that use this descriptor (Intel Atom "Bonnell"[55]) are listed elsewhere as having a fully-associative 32-entry ITLB.[56]
  6. ^ a b On Cyrix and Geode CPUs (Vendor IDs CyrixInstead and Geode by NSC), descriptors 70h and 80h have a different meaning:[57]
    • Descriptor 70h indicates a 32-entry shared instruction+data 4-way-set-associative TLB with a 4K page size.
    • Descriptor 80h indicates a 16 KByte shared instruction+data L1 cache with 4-way set-associativity and a cache-line size of 16 bytes.
  7. ^ Descriptor 76h is listed as an 1 MByte L2 cache in rev 37 of Intel AP-485,[58] but as an instruction TLB in rev 38 and all later Intel documentation.
  8. ^ a b c Descriptors 77h, 7Eh, 8Dh are documented for the IA-32 operation mode of Itanium 2 only.[60]
  9. ^ Under the IA-32 operation mode of Itanium 2, the L3 cache size is always reported as 3 megabytes regardless of the actual size of the cache.[61]
  10. ^ For descriptor B1h, the TLB capacity is 8 elements when using 2MByte pages, but reduced to 4 elements when using 4MByte pages.

EAX=3: Processor Serial Number edit

This returns the processor's serial number. The processor serial number was introduced on Intel Pentium III, but due to privacy concerns, this feature is no longer implemented on later models (the PSN feature bit is always cleared). Transmeta's Efficeon and Crusoe processors also provide this feature. AMD CPUs however, do not implement this feature in any CPU models.

For Intel Pentium III CPUs, the serial number is returned in the EDX:ECX registers. For Transmeta Efficeon CPUs, it is returned in the EBX:EAX registers. And for Transmeta Crusoe CPUs, it is returned in the EBX register only.

Note that the processor serial number feature must be enabled in the BIOS setting in order to function.

EAX=4 and EAX=Bh: Intel thread/core and cache topology edit

These two leaves are used for processor topology (thread, core, package) and cache hierarchy enumeration in Intel multi-core (and hyperthreaded) processors.[64] As of 2013 AMD does not use these leaves but has alternate ways of doing the core enumeration.[65]

Unlike most other CPUID leaves, leaf Bh will return different values in EDX depending on which logical processor the CPUID instruction runs; the value returned in EDX is actually the x2APIC id of the logical processor. The x2APIC id space is not continuously mapped to logical processors, however; there can be gaps in the mapping, meaning that some intermediate x2APIC ids don't necessarily correspond to any logical processor. Additional information for mapping the x2APIC ids to cores is provided in the other registers. Although the leaf Bh has sub-leaves (selected by ECX as described further below), the value returned in EDX is only affected by the logical processor on which the instruction is running but not by the subleaf.

The processor(s) topology exposed by leaf Bh is a hierarchical one, but with the strange caveat that the order of (logical) levels in this hierarchy doesn't necessarily correspond to the order in the physical hierarchy (SMT/core/package). However, every logical level can be queried as an ECX subleaf (of the Bh leaf) for its correspondence to a "level type", which can be either SMT, core, or "invalid". The level id space starts at 0 and is continuous, meaning that if a level id is invalid, all higher level ids will also be invalid. The level type is returned in bits 15:08 of ECX, while the number of logical processors at the level queried is returned in EBX. Finally, the connection between these levels and x2APIC ids is returned in EAX[4:0] as the number of bits that the x2APIC id must be shifted in order to obtain a unique id at the next level.

As an example, a dual-core Westmere processor capable of hyperthreading (thus having two cores and four threads in total) could have x2APIC ids 0, 1, 4 and 5 for its four logical processors. Leaf Bh (=EAX), subleaf 0 (=ECX) of CPUID could for instance return 100h in ECX, meaning that level 0 describes the SMT (hyperthreading) layer, and return 2 in EBX because there are two logical processors (SMT units) per physical core. The value returned in EAX for this 0-subleaf should be 1 in this case, because shifting the aforementioned x2APIC ids to the right by one bit gives a unique core number (at the next level of the level id hierarchy) and erases the SMT id bit inside each core. A simpler way to interpret this information is that the last bit (bit number 0) of the x2APIC id identifies the SMT/hyperthreading unit inside each core in our example. Advancing to subleaf 1 (by making another call to CPUID with EAX=Bh and ECX=1) could for instance return 201h in ECX, meaning that this is a core-type level, and 4 in EBX because there are 4 logical processors in the package; EAX returned could be any value greater than 3, because it so happens that bit number 2 is used to identify the core in the x2APIC id. Note that bit number 1 of the x2APIC id is not used in this example. However, EAX returned at this level could well be 4 (and it happens to be so on a Clarkdale Core i3 5x0) because that also gives a unique id at the package level (=0 obviously) when shifting the x2APIC id by 4 bits. Finally, you may wonder what the EAX=4 leaf can tell us that we didn't find out already. In EAX[31:26] it returns the APIC mask bits reserved for a package; that would be 111b in our example because bits 0 to 2 are used for identifying logical processors inside this package, but bit 1 is also reserved although not used as part of the logical processor identification scheme. In other words, APIC ids 0 to 7 are reserved for the package, even though half of these values don't map to a logical processor.

The cache hierarchy of the processor is explored by looking at the sub-leaves of leaf 4. The APIC ids are also used in this hierarchy to convey information about how the different levels of cache are shared by the SMT units and cores. To continue our example, the L2 cache, which is shared by SMT units of the same core but not between physical cores on the Westmere is indicated by EAX[26:14] being set to 1, while the information that the L3 cache is shared by the whole package is indicated by setting those bits to (at least) 111b. The cache details, including cache type, size, and associativity are communicated via the other registers on leaf 4.

Beware that older versions of the Intel app note 485 contain some misleading information, particularly with respect to identifying and counting cores in a multi-core processor;[66] errors from misinterpreting this information have even been incorporated in the Microsoft sample code for using CPUID, even for the 2013 edition of Visual Studio,[67] and also in the sandpile.org page for CPUID,[68] but the Intel code sample for identifying processor topology[64] has the correct interpretation, and the current Intel Software Developer's Manual has a more clear language. The (open source) cross-platform production code[69] from Wildfire Games also implements the correct interpretation of the Intel documentation.

Topology detection examples involving older (pre-2010) Intel processors that lack x2APIC (thus don't implement the EAX=Bh leaf) are given in a 2010 Intel presentation.[70] Beware that using that older detection method on 2010 and newer Intel processors may overestimate the number of cores and logical processors because the old detection method assumes there are no gaps in the APIC id space, and this assumption is violated by some newer processors (starting with the Core i3 5x0 series), but these newer processors also come with an x2APIC, so their topology can be correctly determined using the EAX=Bh leaf method.

EAX=6: Thermal and power management edit

This returns feature bits in the EAX register and additional information in the EBX, ECX and EDX registers.

CPUID EAX=6: Thermal/power management feature bits in EAX
Bit EAX
Short Feature
0 DTS Digital Thermal Sensor capability
1 Intel Turbo Boost Technology capability
2 ARAT[a] Always Running APIC Timer capability
3 (reserved)
4 PLN Power Limit Notification capability
5 ECMD Extended Clock Modulation Duty capability
6 PTM Package Thermal Management capability
7 HWP Hardware-controlled Performance States. MSRs added:
  • IA32_PM_ENABLE(770h)
  • IA32_HWP_CAPABILITIES(771h)
  • IA32_HWP_REQUEST(774h)
  • IA32_HWP_STATUS(777h
8 HWP_Notification HWP notification of dynamic guaranteed performance change - IA32_HWP_INTERRUPT(773h) MSR
9 HWP_Activity_­Window HWP Activity Window control - bits 41:32 of IA32_HWP_REQUEST MSR
10 HWP_Energy_­Performance_­Preference HWP Energy/performance preference control - bits 31:24 of IA32_HWP_REQUEST MSR
11 HWP_Package_­Level_Request HWP Package-level control - IA32_HWP_REQUEST_PKG(772h) MSR
12 (reserved)
13 HDC Hardware Duty Cycling supported. MSRs added:
  • IA32_PKG_HDC_CTL (DB0h)
  • IA32_PM_CTL1 (DB1h)
  • IA32_THREAD_STALL (DB2h)
14 Intel Turbo Boost Max Technology 3.0 available
15 Interrupts upon changes to IA32_HWP_CAPABILITIES.Highest_Performance (bits 7:0) supported
16 HWP PECI override supported - bits 63:60 of IA32_HWP_PECI_REQUEST_INFO(775h) MSR
17 Flexible HWP - bits 63:59 of IA32_HWP_REQUEST MSR
18 Fast access mode for IA32_HWP_REQUEST MSR supported[b]
19 HW_FEEDBACK Hardware Feedback Interface. Added MSRs:
  • IA32_HW_FEEDBACK_PTR(17D0h)
  • IA32_HW_FEEDBACK_CONFIG(17D1h) (bit 0 enables HFI, bit 1 enables Intel Thread Director)
20 IA32_HWP_REQUEST of idle logical processor ignored when only one of two logical processors that share a physical processor is active.
21 (reserved)
22 IA32_HWP_CTL(776h) MSR supported[72]
23 Intel Thread Director supported. Added MSRs:
  • IA32_THREAD_FEEDBACK_CHAR(17D2h)
  • IA32_HW_FEEDBACK_THREAD_CONFIG(17D4h)
24 IA32_THERM_INTERRUPT MSR bit 25 supported

31:25
 
(reserved)
  1. ^ On Intel Pentium 4 family processors only, bit 2 of EAX is used to indicate OPP (Operating Point Protection)[71] instead of ARAT.
  2. ^ To enable fast (non-serializing) access mode for the IA32_HWP_REQUEST MSR on CPUs that support it, it is necessary to set bit 0 of the FAST_UNCORE_MSRS_CTL(657h) MSR.
CPUID EAX=6: Thermal/power management feature fields in EBX, ECX and EDX
Bit EBX ECX EDX Bit
0 Number of Interrupt Thresholds in Digital Thermal Sensor Effective frequency interface supported - IA32_MPERF(0E7h) and IA32_APERF(0E8h) MSRs Hardware Feedback reporting: Performance Capability Reporting supported 0
1 (ACNT2 Capability)[a] Hardware Feedback reporting: Efficiency Capability Reporting supported 1
2 (reserved) (reserved) 2
3 Performance-Energy Bias capability - IA32_ENERGY_PERF_BIAS(1B0h) MSR 3
7:4 (reserved) (reserved) 7:4
11:8 Number of Intel Thread Director classes supported by hardware Size of Hardware Feedback interface structure (in units of 4 Kbytes) minus 1 11:8
15:12 (reserved) 15:12

31:16
 
(reserved) Index of this logical processor's row in hardware feedback interface structure
31:16
 
  1. ^ The "ACNT2 Capability" bit is listed in Intel AP-485 rev 038[73] and 039, but not listed in any revision of the Intel SDM. The feature is known to exist in only a few Intel CPUs, e.g. Xeon "Harpertown" stepping E0.[74]

EAX=7, ECX=0: Extended Features edit

This returns extended feature flags in EBX, ECX, and EDX. Returns the maximum ECX value for EAX=7 in EAX.

CPUID EAX=7,ECX=0: Extended feature bits in EBX, ECX and EDX
Bit EBX ECX EDX Bit
Short Feature Short Feature Short Feature
0 fsgsbase Access to base of %fs and %gs prefetchwt1 PREFETCHWT1 instruction sgx-tem ? 0
1 IA32_TSC_ADJUST MSR avx512-vbmi AVX-512 Vector Bit Manipulation Instructions sgx-keys Attestation Services for Intel SGX 1
2 sgx Software Guard Extensions umip User-mode Instruction Prevention avx512-4vnniw AVX-512 4-register Neural Network Instructions 2
3 bmi1 Bit Manipulation Instruction Set 1 pku Memory Protection Keys for User-mode pages avx512-4fmaps AVX-512 4-register Multiply Accumulation Single precision 3
4 hle TSX Hardware Lock Elision ospke PKU enabled by OS fsrm Fast Short REP MOVSB 4
5 avx2 Advanced Vector Extensions 2 waitpkg Timed pause and user-level monitor/wait instructions (TPAUSE, UMONITOR, UMWAIT) uintr User Inter-processor Interrupts 5
6 fdp-excptn-only x87 FPU data pointer register updated on exceptions only avx512-vbmi2 AVX-512 Vector Bit Manipulation Instructions 2 (reserved) 6
7 smep Supervisor Mode Execution Prevention cet_ss/shstk Control flow enforcement (CET): shadow stack (SHSTK alternative name) (reserved) 7
8 bmi2 Bit Manipulation Instruction Set 2 gfni Galois Field instructions avx512-vp2intersect AVX-512 vector intersection instructions on 32/64-bit integers 8
9 erms Enhanced REP MOVSB/STOSB vaes Vector AES instruction set (VEX-256/EVEX) srbds-ctrl Special Register Buffer Data Sampling Mitigations 9
10 invpcid INVPCID instruction vpclmulqdq CLMUL instruction set (VEX-256/EVEX) md-clear VERW instruction clears CPU buffers 10
11 rtm TSX Restricted Transactional Memory avx512-vnni AVX-512 Vector Neural Network Instructions rtm-always-abort All TSX transactions are aborted 11
12 rdt-m/pqm Intel Resource Director (RDT) Monitoring or AMD Platform QOS Monitoring avx512-bitalg AVX-512 BITALG instructions (reserved) 12
13 x87 FPU CS and DS deprecated tme_en Total Memory Encryption MSRs available TSX_FORCE_ABORT MSR is available 13
14 mpx Intel MPX (Memory Protection Extensions) avx512-vpopcntdq AVX-512 Vector Population Count Double and Quad-word serialize SERIALIZE instruction 14
15 rdt-a/pqe Intel Resource Director (RDT) Allocation or AMD Platform QOS Enforcement fzm ? hybrid Mixture of CPU types in processor topology (e.g. Alder Lake) 15
16 avx512-f AVX-512 Foundation la57 5-level paging (57 address bits) tsxldtrk TSX load address tracking suspend/resume instructions (TSUSLDTRK and TRESLDTRK) 16
17 avx512-dq AVX-512 Doubleword and Quadword Instructions mawau The value of userspace MPX Address-Width Adjust used by the BNDLDX and BNDSTX Intel MPX instructions in 64-bit mode (reserved) 17
18 rdseed RDSEED instruction pconfig Platform configuration (Memory Encryption Technologies Instructions) 18
19 adx Intel ADX (Multi-Precision Add-Carry Instruction Extensions) lbr Architectural Last Branch Records 19
20 smap Supervisor Mode Access Prevention cet-ibt Control flow enforcement (CET): indirect branch tracking 20
21 avx512-ifma AVX-512 Integer Fused Multiply-Add Instructions (reserved) 21
22 (pcommit) (PCOMMIT instruction, deprecated)[75] rdpid RDPID (Read Processor ID) instruction and IA32_TSC_AUX MSR amx-bf16 AMX tile computation on bfloat16 numbers 22
23 clflushopt CLFLUSHOPT instruction kl AES Key Locker avx512-fp16 AVX-512 half-precision floating-point arithmetic instructions[76] 23
24 clwb CLWB (Cache line writeback) instruction bus-lock-detect Bus lock debug exceptions amx-tile AMX tile load/store instructions 24
25 pt Intel Processor Trace cldemote CLDEMOTE (Cache line demote) instruction amx-int8 AMX tile computation on 8-bit integers 25
26 avx512-pf AVX-512 Prefetch Instructions mprr ? ibrs / spec_ctrl Speculation Control, part of Indirect Branch Control (IBC):
Indirect Branch Restricted Speculation (IBRS) and
Indirect Branch Prediction Barrier (IBPB)[77][78]
26
27 avx512-er AVX-512 Exponential and Reciprocal Instructions movdiri MOVDIRI instruction stibp Single Thread Indirect Branch Predictor, part of IBC[77] 27
28 avx512-cd AVX-512 Conflict Detection Instructions movdir64b MOVDIR64B (64-byte direct store) instruction L1D_FLUSH IA32_FLUSH_CMD MSR 28
29 sha SHA-1 and SHA-256 extensions enqcmd Enqueue Stores and EMQCMD/EMQCMDS instructions IA32_ARCH_CAPABILITIES MSR (lists speculative side channel mitigations[77]) 29
30 avx512-bw AVX-512 Byte and Word Instructions sgx-lc SGX Launch Configuration IA32_CORE_CAPABILITIES MSR (lists model-specific core capabilities) 30
31 avx512-vl AVX-512 Vector Length Extensions pks Protection keys for supervisor-mode pages ssbd Speculative Store Bypass Disable,[77] as mitigation for Speculative Store Bypass (IA32_SPEC_CTRL) 31

EAX=7, ECX=1: Extended Features edit

This returns extended feature flags in EAX, EBX, and EDX. ECX is reserved.

CPUID EAX=7,ECX=1: Extended feature bits in EAX, EBX and EDX
Bit EAX EBX EDX Bit
Short Feature Short Feature Short Feature
0 sha512 SHA-512 extensions Intel PPIN (Protected Processor Inventory Number): IA32_PPIN_CTL (04Eh) and IA32_PPIN (04Fh) MSRs. (reserved) 0
1 sm3 SM3 hash extensions pbndkb Total Storage Encryption: PBNDKB instruction and TSE_CAPABILITY (9F1h) MSR. (reserved) 1
2 sm4 SM4 cipher extensions (reserved) (reserved) 2
3 rao-int Remote Atomic Operations on integers: AADD, AAND, AOR, AXOR instructions (reserved) (reserved) 3
4 avx-vnni AVX Vector Neural Network Instructions (VNNI) (VEX encoded) (reserved) avx-vnni-int8 AVX VNNI INT8 instructions 4
5 avx512-bf16 AVX-512 instructions for bfloat16 numbers (reserved) avx-ne-convert AVX no-exception FP conversion instructions (bfloat16↔FP32 and FP16→FP32) 5
6 lass Linear Address Space Separation (CR4 bit 27) (reserved) (reserved) 6
7 cmpccxadd CMPccXADD instructions (reserved) (reserved) 7
8 archperfmonext Architectural Performance Monitoring Extended Leaf (EAX=23h) (reserved) amx-complex AMX support for "complex" tiles (TCMMIMFP16PS and TCMMRLFP16PS) 8
9 dedup ? (reserved) (reserved) 9
10 fzrm Fast zero-length REP MOVSB (reserved) avx-vnni-int16 AVX VNNI INT16 instructions 10
11 fsrs Fast short REP STOSB (reserved) (reserved) 11
12 rsrcs Fast short REP CMPSB and REP SCASB (reserved) (reserved) 12
13 (reserved) (reserved) (reserved) 13
14 (reserved) (reserved) prefetchi Instruction-cache prefetch instructions (PREFETCHIT0 and PREFETCHIT1) 14
15 (reserved) (reserved) user_msr User-mode MSR access instructions (URDMSR and UWRMSR) 15
16 (reserved) (reserved) (reserved) 16
17 fred Flexible Return and Event Delivery[79] (reserved) uiret-uif-from-rflags If 1, the UIRET (User Interrupt Return) instruction will set UIF (User Interrupt Flag) to the value of bit 1 of the RFLAGS image popped off the stack. 17
18 lkgs LKGS Instruction[79] (reserved) cet-sss If 1, then Control-Flow Enforcement (CET) Supervisor Shadow Stacks (SSS) are guaranteed not to become prematurely busy as long as shadow stack switching does not cause page faults on the stack being switched to.[80][81] 18
19 wrmsrns WRMSRNS instruction (non-serializing write to MSRs) (reserved) avx10 AVX10 Converged Vector ISA (see also leaf 24h)[82] 19
20 (reserved) (reserved) (reserved) 20
21 amx-fp16 AMX instructions for FP16 numbers (reserved) APX_F Advanced Performance Extensions, Foundation (adds REX2 and extended EVEX prefix encodings to support 32 GPRs, as well as some new instructions)[83] 21
22 hreset HRESET instruction, IA32_HRESET_ENABLE (17DAh) MSR, and Processor History Reset Leaf (EAX=20h) (reserved) (reserved) 22
23 avx-ifma AVX IFMA instructions (reserved) (reserved) 23
24 (reserved) (reserved) (reserved) 24
25 (reserved) (reserved) (reserved) 25
26 lam Linear Address Masking (reserved) (reserved) 26
27 msrlist RDMSRLIST and WRMSRLIST instructions, and the IA32_BARRIER (02Fh) MSR (reserved) (reserved) 27
28 (reserved) (reserved) (reserved) 28
29 (reserved) (reserved) (reserved) 29
30 (reserved) (reserved) (reserved) 30
31 (reserved) (reserved) (reserved) 31

EAX=7, ECX=2: Extended Features edit

This returns extended feature flags in EDX.

EAX, EBX and ECX are reserved.

CPUID EAX=7,ECX=2: Extended feature bits in EDX
Bit EDX
Short Feature
0 psfd Fast Store Forwarding Predictor disable supported. (SPEC_CTRL (MSR 48h) bit 7)
1 ipred_ctrl IPRED_DIS controls[84] supported. (SPEC_CTRL bits 3 and 4)

IPRED_DIS prevents instructions at an indirect branch target from speculatively executing until the branch target address is resolved.

2 rrsba_ctrl RRSBA behavior[85][84] disable supported. (SPEC_CTRL bits 5 and 6)
3 ddpd_u Data Dependent Prefetcher disable supported. (SPEC_CTRL bit 8)
4 bhi_ctrl BHI_DIS_S behavior[84] enable supported. (SPEC_CTRL bit 10)

BHI_DIS_S prevents predicted targets of indirect branches executed in ring0/1/2 from being selected based on branch history from branches executed in ring 3.

5 mcdt_no If set, the processor does not exhibit MXCSR configuration dependent timing.
6 UC-lock disable feature supported.

31:7
 
(reserved)

EAX=0Dh: XSAVE features and state-components edit

This leaf is used to enumerate XSAVE features and state-components.

The XSAVE instruction set extension is designed to save/restore CPU extended state (typically for the purpose of context switching) in a manner that can be extended to cover new instruction set extensions without the OS context-switching code needing to understand the specifics of the new extensions. This is done by defining a series of state-components, each with a size and offset within a given save area, and each corresponding to a subset of the state needed for one CPU extension or another. The EAX=0Dh CPUID leaf is used to provide information about which state-components the CPU supports and what their sizes/offsets are, so that the OS can reserve the proper amount of space and set the associated enable-bits.

The state-components can be subdivided into two groups: user-state (state-items that are visible to the application, e.g. AVX-512 vector registers), and supervisor-state (state items that affect the application but are not directly user-visible, e.g. user-mode interrupt configuration). The user-state items are enabled by setting their associated bits in the XCR0 control register, while the supervisor-state items are enabled by setting their associated bits in the IA32_XSS (0DA0h) MSR - the indicated state items then become the state-components that can be saved and restored with the XSAVE/XRSTOR family of instructions.

The XSAVE mechanism can handle up to 63 state-components in this manner. State-components 0 and 1 (x87 and SSE, respectively) have fixed offsets and sizes - for state-components 2 to 62, their sizes, offsets and a few additional flags can be queried by executing CPUID with EAX=0Dh and ECX set to the index of the state-component. This will return the following items in EAX, EBX and ECX (with EDX being reserved):

CPUID EAX=0Dh, ECX≥2: XSAVE state-component information
Bit EAX EBX ECX Bit
0 Size in bytes of state-component Offset of state-component from the start of the XSAVE/XRSTOR save area

(This offset is 0 for supervisor state-components, since these can only be saved with the XSAVES/XRSTORS instruction, which use compacting.)

User/supervisor state-component:
  • 0=user-state (enabled through XCR0)
  • 1=supervisor-state (enabled through IA32_XSS)
0
1 64-byte alignment enable when state save compaction is used.

If this bit is set for a state-component, then, when storing state with compaction, padding will be inserted between the preceding state-component and this state-component as needed to provide 64-byte alignment. If this bit is not set, the state-component will be stored directly after the preceding one.

1

31:2
 
(reserved)
31:2

Attempting to query an unsupported state-component in this manner results in EAX,EBX,ECX and EDX all being set to 0.


Sub-leaves 0 and 1 of CPUID leaf 0Dh are used to provide feature information:

CPUID EAX=0Dh,ECX=0: XSAVE features
EBX ECX EDX:EAX
Maximum size (in bytes) of XSAVE save area for the set of state-components currently set in XCR0. Maximum size (in bytes) of XSAVE save area if all state-components supported by XCR0 on this CPU were enabled at the same time. 64-bit bitmap of state-components supported by XCR0 on this CPU.
CPUID EAX=0Dh,ECX=1: XSAVE extended features
EAX EBX EDX:ECX
XSAVE feature flags (see below table) Size (in bytes) of XSAVE area containing all the state-components currently set in XCR0 and IA32_XSS combined. 64-bit bitmap of state-components supported by IA32_XSS on this CPU.
EAX=0Dh,ECX=1: XSAVE feature flags in EAX
Bit EAX
Short Feature
0 xsaveopt XSAVEOPT instruction: save state-components that have been modified since last XRSTOR
1 xsavec XSAVEC instruction: save/restore state with compaction
2 xgetbv_ecx1 XGETBV with ECX=1 support
3 xss XSAVES and XRSTORS instructions and IA32_XSS MSR: save/restore state with compaction, including supervisor state.
4 xfd XFD (Extended Feature Disable) supported

31:5
 
(reserved)

As of July 2023, the XSAVE state-components that have been architecturally defined are:

XSAVE State-components
Index Description Enabled with
0 x87 state XCR0[a]
1 SSE state: XMM0-XMM15 and MXCSR XCR0
2 AVX state: top halves of YMM0 to YMM15
3 MPX state: BND0-BND3 bounds registers
4 MPX state: BNDCFGU and BNDSTATUS registers
5 AVX-512 state: opmask registers k0-k7
6 AVX-512 "ZMM_Hi256" state: top halves of ZMM0 to ZMM15
7 AVX-512 "Hi16_ZMM" state: ZMM16-ZMM31
8 Processor Trace state IA32_XSS
9 PKRU (User Protection Keys) register XCR0
10 PASID (Process Address Space ID) state IA32_XSS
11 CET_U state (Control-flow Enforcement Technology: user-mode functionality MSRs)
12 CET_S state (CET: shadow stack pointers for rings 0,1,2)
13 HDC (Hardware Duty Cycling) state
14 UINTR (User-Mode Interrupts) state
15 LBR (Last Branch Record) state
16 HWP (Hardware P-state control) state
17 AMX tile configuration state: TILECFG XCR0
18 AMX tile data registers: tmm0-tmm7
19 APX extended general-purpose registers: r16-r31[83]

20 to 61
 
(reserved)
62 Lightweight Profiling (LWP) (AMD only) XCR0
63 (reserved)[b]
  1. ^ Bit 0 of XCR0 is hardwired to 1, so that the XSAVE instructions will always support save/restore of x87 state.
  2. ^ For the XCR0 and IA32_XSS registers, bit 63 is reserved specifically for bit vector expansion - this precludes the existence of a state-component 63.

EAX=12h: SGX capabilities edit

This leaf provides information about the supported capabilities of the Intel Software Guard Extensions (SGX) feature. The leaf provides multiple sub-leaves, selected with ECX.

Sub-leaf 0 provides information about supported SGX leaf functions in EAX and maximum supported SGX enclave sizes in EDX; ECX is reserved. EBX provides a bitmap of bits that can be set in the MISCSELECT field in the SECS (SGX Enclave Control Structure) - this field is used to control information written to the MISC region of the SSA (SGX Save State Area) when an AEX (SGX Asynchronous Enclave Exit) occurs.

CPUID EAX=12h,ECX=0: SGX leaf functions, MISCSELECT and maximum-sizes
Bit EAX EBX EDX Bit
Short Feature Short Feature Short Feature
0 sgx1 SGX1 leaf functions EXINFO MISCSELECT: report information about page fault and general protection exception that occurred inside enclave MaxEnclave­Size_Not64 Log2 of maximum enclave size supported in non-64-bit mode 0
1 sgx2 SGX2 leaf functions CPINFO MISCSELECT: report information about control protection exception that occurred inside enclave 1
2 (reserved) (reserved) 2
3 (reserved) (reserved) 3
4 (reserved) (reserved) 4
5 oss ENCLV leaves: EINCVIRTCHILD, EDECVIRTCHILD, and ESETCONTEXT (reserved) 5
6 ENCLS leaves: ETRACKC, ERDINFO, ELDBC, ELDUC (reserved) 6
7 ENCLU leaf: EVERIFYREPORT2 (reserved) 7
8 (reserved) (reserved) MaxEnclave­Size_64 Log2 of maximum enclave size supported in 64-bit mode 8
9 (reserved) (reserved) 9
10 ENCLS leaf: EUPDATESVN (reserved) 10
11 ENCLU leaf: EDECSSA (reserved) 11
12 (reserved) (reserved) 12
13 (reserved) (reserved) 13
14 (reserved) (reserved) 14
15 (reserved) (reserved) 15

31:16
 
(reserved) (reserved) (reserved)
31:16
 

Sub-leaf 1 provides a bitmap of which bits can be set in the 128-bit ATTRIBUTES field of SECS in EDX:ECX:EBX:EAX (this applies to the SECS copy used as input to the ENCLS[ECREATE] leaf function). The top 64 bits (given in EDX:ECX) are a bitmap of which bits can be set in the XFRM (X-feature request mask) - this mask is a bitmask of which CPU state-components (see leaf 0Dh) will be saved to the SSA in case of an AEX; this has the same layout as the XCR0 control register. The other bits are given in EAX and EBX, as follows:

CPUID EAX=12h,ECX=1: SGX settable bits in SECS.ATTRIBUTES
Bit EAX EBX Bit
Short Feature Short Feature
0 (INIT) (must be 0)[a] (reserved) 0
1 DEBUG Permit debugger to read and write enclave data using EDBGRD and EDBGWR 1
2 MODE64BIT 64-bit-mode enclave 2
3 (reserved) 3
4 PROVISIONKEY Provisioning key available from EGETKEY 4
5 EINITTOKEN_KEY EINIT token key available from EGETKEY 5
6 CET CET (Control-Flow Enforcement Technology) attributes enable 6
7 KSS Key Separation and Sharing 7
8 (reserved) 8
9 (reserved) 9
10 AEXNOTIFY Threads inside enclave may receive AEX notifications 10

31:11
 
(reserved)
31:11
 
  1. ^ For the copy of the SECS that exists inside an exclave, bit 0 (INIT) of SECS.ATTRIBUTES is used to indicate that the enclave has been initialized with ENCLS[EINIT]. This bit must be 0 in the SECS copy that is given as input to ENCLS[CREATE].

Sub-leaves 2 and up are used to provide information about which physical memory regions are available for use as EPC (Enclave Page Cache) sections under SGX.

CPUID EAX=12h,ECX≥2: SGX Enclave Page Cache section information
Bits EAX EBX ECX EDX Bits
3:0 Sub-leaf type:
  • 0000: Invalid
  • 0001: EPC section
  • other: reserved
Bits 51:32 of physical base address of EPC section EPC Section properties:
  • 0000: Invalid
  • 0001: Has confidentiality and integrity protection
  • 0010: Has confidentiality protection only
  • other: reserved
Bits 51:32 of size of EPC section 3:0

11:4
 
(reserved) (reserved)
11:4
 

19:12
 
Bits 31:12 of physical base address of EPC section Bits 31:12 of size of EPC section
19:12
 

31:20
 
(reserved) (reserved)
31:20
 

EAX=14h, ECX=0: Processor Trace edit

This sub-leaf provides feature information for Intel Processor Trace (also known as Real Time Instruction Trace).

The value returned in EAX is the index of the highest sub-leaf supported for CPUID with EAX=14h. EBX and ECX provide feature flags, EDX is reserved.

CPUID EAX=14h,ECX=0: Processor Trace feature bits in EBX and ECX
Bit EBX ECX Bit
Short Feature Short Feature
0 CR3 filtering supported topaout ToPA (Table of Physical Addresses) output mechanism for trace packets supported 0
1 Configurable PSB (Packet Stream Boundary) packet rate and Cycle-Accurate Mode (CYC packets) supported mentry ToPA tables can contain hold multiple output entries 1
2 IP filtering, TraceStop filtering and preservation of PT MSRs across warm reset supported snglrngout Single-Range Output scheme supported 2
3 MTC (Mini Time Counter) timing packets supported, and suppression of COFI (Change of Flow Instructions) packets supported. Output to Trace Transport subsystem supported 3
4 ptwrite PTWRITE instruction supported (reserved) 4
5 Power Event Trace supported (reserved) 5
6 Preservation of PSB and PMI (performance monitoring interrupt) supported (reserved) 6
7 Event Trace packet generation supported (reserved) 7
8 TNT (Branch Taken-Not-Taken) packet generation disable supported. (reserved) 8

30:9
 
(reserved) (reserved)
30:9
 
31 (reserved) IP (Instruction Pointer) format for trace packets that contain IP payloads:
  • 0=RIP (effective-address IP)
  • 1=LIP (linear-address IP, with CS base address added)
31

EAX=19h: AES Key Locker features edit

This leaf provides feature information for AES Key Locker in EAX, EBX and ECX. EDX is reserved.

CPUID EAX=19h: Key Locker feature bits in EAX, EBX and ECX
Bit EAX EBX ECX Bit
Short Feature Short Feature Short Feature
0 Key Locker restriction of CPL0-only supported aes_kle AES "Key Locker" Instructions No-backup parameter to LOADIWKEY supported 0
1 Key Locker restriction of no-encrypt supported (reserved) KeySource encoding of 1 (randomization of internal wrapping key) supported 1
2 Key Locker restriction of no-decrypt supported aes_wide_kl AES "Wide Key Locker" Instructions (reserved) 2
3 (reserved) (reserved) (reserved) 3
4 (reserved) kl_msrs "Key Locker" MSRs (reserved) 4

31:5
 
(reserved) (reserved) (reserved)
31:5
 

EAX=24h, ECX=0: AVX10 Features edit

This returns a maximum supported sub-leaf in EAX and AVX10 feature information in EBX.[82] (ECX and EDX are reserved.)

CPUID EAX=24h, ECX=0: AVX10 feature bits in EBX
Bit EBX
Short Feature
7:0 AVX10 Converged Vector ISA version (≥1)
15:8 (reserved)
16 128-bit vector support is present
17 256-bit vector support is present
18 512-bit vector support is present
31:19 (reserved)


EAX=80000000h: Get Highest Extended Function Implemented edit

The highest calling parameter is returned in EAX.

EBX/ECX/EDX return the manufacturer ID string (same as EAX=0) on AMD but not Intel CPUs.

EAX=80000001h: Extended Processor Info and Feature Bits edit

This returns extended feature flags in EDX and ECX.

Many of the bits in EDX (bits 0 through 9, 12 through 17, 23, and 24) are duplicates of EDX from the EAX=1 leaf - these bits are highlighted in light yellow. (These duplicated bits are present on AMD but not Intel CPUs.)

AMD feature flags are as follows:[86][87]

CPUID EAX=80000001h: Feature bits in EDX and ECX
Bit EDX ECX Bit
Short Feature Short Feature
0 fpu Onboard x87 FPU lahf_lm LAHF/SAHF in long mode 0
1 vme Virtual mode extensions (VIF) cmp_legacy Hyperthreading not valid 1
2 de Debugging extensions (CR4 bit 3) svm Secure Virtual Machine 2
3 pse Page Size Extension extapic Extended APIC space 3
4 tsc Time Stamp Counter cr8_legacy CR8 in 32-bit mode 4
5 msr Model-specific registers abm/lzcnt Advanced bit manipulation (LZCNT and POPCNT) 5
6 pae Physical Address Extension sse4a SSE4a 6
7 mce Machine Check Exception misalignsse Misaligned SSE mode 7
8 cx8 CMPXCHG8B (compare-and-swap) instruction 3dnowprefetch PREFETCH and PREFETCHW instructions 8
9 apic Onboard Advanced Programmable Interrupt Controller osvw OS Visible Workaround 9
10 (syscall)[a] (SYSCALL/SYSRET, K6 only) ibs Instruction Based Sampling 10
11 syscall[b] SYSCALL and SYSRET instructions xop XOP instruction set 11
12 mtrr Memory Type Range Registers skinit SKINIT/STGI instructions 12
13 pge Page Global Enable bit in CR4 wdt Watchdog timer 13
14 mca Machine check architecture (reserved) 14
15 cmov Conditional move and FCMOV instructions lwp Light Weight Profiling[91] 15
16 pat[c] Page Attribute Table fma4 4-operand fused multiply-add instructions 16
17 pse36 36-bit page size extension tce Translation Cache Extension 17
18 (reserved) (reserved) 18
19 ecc "Athlon MP" / "Sempron" CPU brand identification[d] nodeid_msr NodeID MSR (C001_100C)[96] 19
20 nx NX bit (reserved) 20
21 (reserved) tbm Trailing Bit Manipulation 21
22 mmxext Extended MMX topoext Topology Extensions 22
23 mmx MMX instructions perfctr_core Core performance counter extensions 23
24 fxsr[c] FXSAVE, FXRSTOR instructions, CR4 bit 9 perfctr_nb Northbridge performance counter extensions 24
25 fxsr_opt FXSAVE/FXRSTOR optimizations (StreamPerfMon) (Streaming performance monitor architecture)[e] 25
26 pdpe1gb Gigabyte pages dbx Data breakpoint extensions 26
27 rdtscp RDTSCP instruction perftsc Performance timestamp counter (PTSC) 27
28 (reserved) pcx_l2i L2I perf counter extensions 28
29 lm Long mode monitorx MONITORX and MWAITX instructions 29
30 3dnowext Extended 3DNow! addr_mask_ext Address mask extension to 32 bits for instruction breakpoints 30
31 3dnow 3DNow! (reserved) 31
  1. ^ The use of EDX bit 10 to indicate support for SYSCALL/SYSRET is only valid on AuthenticAMD Family 5 Model 7 CPUs (AMD K6, 250nm "Little Foot") - for all other processors, EDX bit 11 should be used instead.

    These instructions were first introduced on Model 7[88] - the CPUID bit to indicate their support was moved[89] to EDX bit 11 from Model 8 (AMD K6-2) onwards.

  2. ^ On Intel CPUs, the CPUID bit for SYSCALL/SYSRET is only set if the CPUID instruction is executed in 64-bit mode.[90]
  3. ^ a b On some processors - Cyrix MediaGXm,[92] several Geodes (NatSemi Geode GXm, GXLV, GX1; AMD Geode GX1[93]) and Transmeta Crusoe[94] - EDX bits 16 and 24 have a different meaning:
    • Bit 16: Floating-point Conditional Move (FCMOV) supported
    • Bit 24: 6x86MX Extended MMX instructions supported
  4. ^ EDX bit 19 is used for CPU brand identification on AuthenticAMD Family 6 processors only - the bit is, combined with processor signature and FSB speed, used to identify processors as either multiprocessor-capable or carrying the Sempron brand name.[95]
  5. ^ ECX bit 25 is listed as StreamPerfMon in revision 3.20 of AMD APM[97] only - it is listed as reserved in later revisions. The bit is set on Excavator and Steamroller CPUs only.

EAX=80000002h,80000003h,80000004h: Processor Brand String edit

These return the processor brand string in EAX, EBX, ECX and EDX. CPUID must be issued with each parameter in sequence to get the entire 48-byte ASCII processor brand string.[98] It is necessary to check whether the feature is present in the CPU by issuing CPUID with EAX = 80000000h first and checking if the returned value is not less than 80000004h.

The string is specified in Intel/AMD documentation to be null-terminated, however this is not always the case (e.g. DM&P Vortex86DX3 and AMD Ryzen 7 6800HS are known to return non-null-terminated brand strings in leaves 80000002h-80000004h[99][100]), and software should not rely on it.

#include <stdio.h> #include <string.h> #include <cpuid.h> int main() {  unsigned int regs[12];  char str[sizeof(regs)+1];  __cpuid(0x80000000, regs[0], regs[1], regs[2], regs[3]);  if (regs[0] < 0x80000004)  return 1;  __cpuid(0x80000002, regs[0], regs[1], regs[2], regs[3]);  __cpuid(0x80000003, regs[4], regs[5], regs[6], regs[7]);  __cpuid(0x80000004, regs[8], regs[9], regs[10], regs[11]);  memcpy(str, regs, sizeof(regs));  str[sizeof(regs)] = '\0';  printf("%s\n", str);  return 0; } 

EAX=80000005h: L1 Cache and TLB Identifiers edit

This function contains the processor's L1 cache and TLB characteristics.

EAX=80000006h: Extended L2 Cache Features edit

Returns details of the L2 cache in ECX, including the line size in bytes (Bits 07 - 00), type of associativity (encoded by a 4 bits field; Bits 15 - 12) and the cache size in KB (Bits 31 - 16).

#include <stdio.h> #include <cpuid.h> int main() {  unsigned int eax, ebx, ecx, edx;  unsigned int lsize, assoc, cache;  __cpuid(0x80000006, eax, ebx, ecx, edx);    lsize = ecx & 0xff;  assoc = (ecx >> 12) & 0x07;  cache = (ecx >> 16) & 0xffff;  printf("Line size: %d B, Assoc. type: %d, Cache size: %d KB.\n", lsize, assoc, cache);  return 0; } 

EAX=80000007h: Processor Power Management Information and RAS Capabilities edit

This function provides information about power management, power reporting and RAS (Reliability, availability and serviceability) capabilities of the CPU.

CPUID EAX=80000007h: RAS features in EBX and power management features in EDX
Bit EBX EDX Bit
Short Feature Short Feature
0 MCAOverflowRecov MCA (Machine Check Architecture) overflow recovery support TS Temperature Sensor 0
1 SUCCOR Software uncorrectable error containment and recovery capability FID Frequency ID Control 1
2 HWA Hardware assert support (MSRs C001_10C0 to C001_10DF VID Voltage ID Control 2
3 ScalableMca Scalable MCA supported TTP THERMTRIP 3
4 (reserved) TM Hardware thermal control (HTC) supported 4
5 (reserved) STC Software thermal control (STC) supported[101] 5
6 (reserved) 100MHzSteps 100 MHz multiplier control 6
7 (reserved) HwPstate Hardware P-state control (MSRs C001_0061 to C001_0063) 7
8 (reserved) TscInvariant Invariant TSC - TSC (Time Stamp Counter) rate is guaranteed to be invariant across all P-states, C-states and sop grant transitions. 8
9 (reserved) CPB Core Performance Boost 9
10 (reserved) EffFreqRO Read-only effective frequency interface (MSRs C000_00E7 and C000_00E8) 10
11 (reserved) ProcFeedback­Interface Processor Feedback Interface supported 11
12 (reserved) ProcPower­Reporting Processor power reporting interface supported 12
13 (reserved) Connected­Standby Connected Standby[102] 13
14 (reserved) RAPL Running Average Power Limit 14
15 (reserved) FastCPPC Fast CPPC (Collaborative Processor Performance Control) supported 15

31:16
 
(reserved) (reserved)
31:16
 
CPUID EAX=80000007h: Processor Feedback info in EAX and power monitoring interface info in ECX
Bits EAX ECX Bits
Short Feature Short Feature
7:0 NumberOfMonitors Number of Processor Feedback MSR pairs available, starting from MSR C001_0080 onwards[103] CpuPwrSample­TimeRatio Ratio of compute unit power accumulator sample period to TSC counter period. 7:0
15:8 Version Processor Feedback Capabilities version 15:8
31:16 MaxWrapTime Maximum time between reads (in milliseconds) that software should use to avoid two wraps. 31:16

EAX=80000008h: Virtual and Physical address Sizes edit

CPUID EAX=80000008h: Feature bits in EBX
Bit EBX
Short Feature
0 clzero CLZERO instruction
1 retired_instr Retired instruction count MSR (C000_00E9h) supported
2 xrstor_fp_err XRSTOR restores FP errors
3 invlpgb INVLPGB and TLBSYNC instructions
4 rdpru RDPRU instruction
5 (reserved)
6 mbe Memory Bandwidth Enforcement
7 (reserved)
8 mcommit MCOMMIT instruction
9 wbnoinvd WBNOINVD instruction
10 (reserved)
11 (reserved)
12 IBPB Indirect Branch Prediction Barrier (performed by writing 1 to bit 0 of PRED_CMD (MSR 049h))
13 wbinvd_int WBINVD and WBNOINVD are interruptible
14 IBRS Indirect Branch Restricted Speculation
15 STIBP Single Thread Indirect Branch Prediction mode
16 IbrsAlwaysOn IBRS mode has enhanced performance and should be left always on
17 StibpAlwaysOn STIBP mode has enhanced performance and should be left always on
18 ibrs_preferred IBRS preferred over software
19 ibrs_same_mode_protection IBRS provides Same Mode Protection
20 no_efer_lmsle EFER.LMSLE is unsupported[a]
21 invlpgb_nested INVLPGB support for nested pages
22 (reserved)
23 ppin Protected Processor Inventory Number -

PPIN_CTL (C001_02F0) and PPIN (C001_02F1) MSRs are present

24 ssbd Speculative Store Bypass Disable
25 ssbd_legacy Speculative Store Bypass Disable Legacy
26 ssbd_no Speculative Store Bypass Disable Not Required
27 cppc Collaborative Processor Performance Control
28 psfd Predictive Store Forward Disable
29 btc_no Branch Type Confusion: Processor not affected
30 IBPB_RET IBPB (see bit 12) also clears return address predictor
31 branch_sampling Branch Sampling Support[105]
CPUID EAX=80000008h: Size and range fields in EAX, ECX, EDX
Bits EAX ECX EDX Bits
7:0 Number of Physical Address Bits Number of Physical Cores (minus 1) Maximum page count for INVLPGB instruction 7:0
11:8 Number of Linear Address Bits (reserved) 11:8
15:12 APIC ID Size 15:12
17:16 Guest Physical Address Size[b] Performance Timestamp Counter size Maximum ECX value recognized by RDPRU instruction 17:16
23:18 (reserved) 23:18
31:24 (reserved) 31:24
  1. ^ The LMSLE (Long Mode Segment Limit Enable) feature does not have its own CPUID flag and is detected by checking CPU family and model. It was introduced in AuthenticAMD Family 0Fh Model 14h[104] (90nm Athlon64/Opteron) CPUs and is present in all later AMD CPUs - except the ones with the 'no_efer_lmsle' flag set.
  2. ^ A value of 0 indicates that the "Guest Physical Address Size" is the same as the "Number Of Physical Address Bits", specified in EAX[7:0].

EAX=8000000Ah: Secure Virtual Machine features edit

This leaf returns information about AMD SVM (Secure Virtual Machine) features in EAX, EBX and EDX.

CPUID EAX=8000000Ah: SVM information in EAX, EBX and ECX
Bits EAX EBX ECX Bits
7:0 SVM Revision Number Number of available ASIDs
(address space identifiers)
(reserved) 7:0
8 (hypervisor)[a] 8
31:9 (reserved) 31:9
CPUID EAX=8000000Ah: SVM feature flags in EDX
Bit EDX
Short Feature
0 NP Rapid Virtualization Indexing (Nested Paging)
1 LbrVirt LBR (Last Branch Records) virtualization
2 SVML SVM-Lock
3 NRIPS nRIP (next sequential instruction pointer) save on #VMEXIT supported
4 TscRateMsr MSR-based TSC rate control (MSR C000_0104h)
5 VmcbClean VMCB (Virtual Machine Control Block) clean bits supported
6 FlushByAsid TLB flush events (e.g. CR3 writes, CR4.PGE toggles) only flush the TLB entries of the current ASID (address space ID)
7 DecodeAssist Decode assists supported
8 (reserved)
9 (SseIsa10Compat)[b] (reserved)
10 PauseFilter PAUSE intercept filter supported
11 (reserved)
12 PauseFilter­Threshold PAUSE filter cycle count threshold supported
13 AVIC AMD Advanced Virtualized Interrupt Controller supported
14 (reserved)
15 VMSAVEvirt VMSAVE and VMLOAD virtualization
16 VGIF Global Interrupt Flag (GIF) virtualization
17 GMET Guest Mode Execution Trap
18 x2AVIC x2APIC mode supported for AVIC
19 SSSCheck SVM Supervisor shadow stack restrictions
20 SpecCtrl SPEC_CTRL (MSR 2E0h) virtualization
21 ROGPT Read-Only Guest Page Table supported
22 (reserved)
23 HOST_MCE_­OVERRIDE Guest mode Machine-check exceptions when host CR4.MCE=1 and guest CR4.MCE=0 cause intercepts instead of shutdowns
24 TlbiCtl INVLPGB/TLBSYNC hypervisor enable in VMCB and TLBSYNC intercept support
25 VNMI NMI (Non-Maskable interrupt) virtualization
26 IbsVirt IBS (Instruction-Based Sampling) virtualization
27 ExtLvtOffset­FaultChg Read/Write fault behavior for extended LVT offsets (APIC addresses 0x500-0x530) changed to Read Allowed, Write #VMEXIT[112]
28 VmcbAddr­ChkChg VMCB address check change[112]
29 BusLock­Threshold Bus Lock Threshold
30 (reserved)
31 (reserved)
  1. ^ Early revisions of AMD's "Pacifica" documentation listed EAX bit 8 as an always-zero bit reserved for hypervisor use.[106]

    Later AMD documentation, such as #25481 "CPUID specification" rev 2.18[107] and later, only lists the bit as reserved.

    In rev 2.30[108] and later, a different bit is listed as reserved for hypervisor use: CPUID.(EAX=1):ECX[bit 31].

  2. ^ EDX bit 9 is briefly listed in some older revisions of AMD's document #25481 "CPUID Specification", and is set only in some AMD Bobcat CPUs.[109]

    Rev 2.28 of #25481 lists the bit as "Ssse3Sse5Dis"[110] - in rev 2.34, it is listed as having been removed from the spec at rev 2.32 under the name "SseIsa10Compat".[111]

EAX=8000001Fh: Encrypted Memory Capabilities edit

CPUID EAX=8000001Fh: Encrypted Memory feature bits in EAX
Bit EAX
Short Feature
0 SME Secure Memory Encryption
1 SEV Secure Encrypted Virtualization
2 PageFlushMSR Page flush MSR (C001_011Eh) supported
3 SEV-ES SEV Encrypted State
4 SEV-SNP SEV Secure Nested Paging
5 VMPL VM Privilege Levels
6 RMPQUERY RMPQUERY instruction supported
7 VmplSSS VMPL Supervisor shadow stack supported
8 SecureTSC Secure TSC supported
9 TscAux­Virtualization Virtualization of TSC_AUX MSR (C000_0103) supported
10 HwEnfCacheCoh Hardware cache coherency across encryption domains enforced
11 64BitHost SEV Guest execution only allowed from 64-bit host
12 Restricted­Injection SEV-ES guests can refuse all event-injections except #HV (Hypervisor Injection Exception)
13 Alternate­Injection SEV-ES guests can use an encrypted VMCB field for event-injection
14 DebugSwap Full debug state swap supported for SEV-ES guests
15 PreventHostIBS Prevent host IBS for a SEV-ES guest
16 VTE Virtual Transparent Encryption for SEV
17 Vmgexit­Parameter VMGEXIT parameter is supported (using the RAX register)
18 VirtualTomMsr Virtual TOM (top-of-memory) MSR (C001_0135) supported
19 IbsVirtGuestCtl IBS state virtualization is supported for SEV-ES guests
20 (reserved)
21 (reserved)
22 (reserved)
23 (reserved)
24 VmsaRegProt VMSA (VM Save Area) register protection supported
25 SmtProtection SMT Protection supported
26 (reserved)
27 (reserved)
28 SVSMComm­PageMSR SVSM (Secure VM Service Module[113]) communication page MSR (C001_F000h) supported
29 NestedVirt­SnpMsr VIRT_RMPUPDATE (C001_F001h) and VIRT_PSMASH (C001_F002h) MSRs supported
30 (reserved)
31 (reserved)
CPUID EAX=8000001Fh: Encrypted Memory feature information in EBX, ECX and EDX
Bits EBX ECX EDX Bits
5:0 C-bit (encryption enable bit) location in page table entry Maximum ASID value that can be used for a SEV-enabled guest (maximum number of encrypted guests that can be supported simultaneously) Minimum ASID value for a guest that is SEV-enabled but not SEV-ES-enabled 5:0
11:6 Physical address width reduction when memory encryption is enabled 11:6
15:12 Number of VMPLs (VM Privilege Levels) supported 15:12
31:16 (reserved) 31:16

EAX=80000021h: Extended Feature Identification 2 edit

CPUID EAX=80000021h: Extended feature bits in EAX
Bit EAX
Short Feature
0 NoNestedDataBp Processor ignores nested data breakpoints
1 FsGsKernelGsBase­NonSerializing WRMSR to the FS_BASE, GS_BASE and KernelGSBase MSRs is non-serializing[114]
2 LFenceAlways­Serializing LFENCE is always dispatch serializing
3 SmmPgCfgLock SMM paging configuration lock supported
4 (reserved)
5 (reserved)
6 NullSelect­ClearsBase Null segment selector loads also clear the destination segment register base and limit
7 UpperAddress­Ignore Upper Address Ignore is supported
8 AutomaticIBRS Automatic IBRS
9 NoSmmCtlMSR SMM_CTL MSR (C0010116h) is not supported
10 FSRS Fast short REP STOSB supported
11 FSRC Fast short REPE CMPSB supported
12 (reserved)
13 PrefetchCtlMsr PrefetchControl MSR (C0000108h) is supported
14 (reserved)
15 (reserved)
16 (reserved)
17 CpuidUserDis CPUID disable for non-privileged software
18 EPSF Enhanced Predictive Store Forwarding supported
31:19 (reserved)
CPUID EAX=80000021h: Extended feature information in EBX
Bit EBX
Short Feature
11:0 MicrocodePatchSize The size of the Microcode patch in 16-byte multiples. If 0, the size of the patch is at most 5568 (15C0h) bytes
31:12 (reserved)

EAX=8FFFFFFFh: AMD Easter Egg edit

Several AMD CPU models will, for CPUID with EAX=8FFFFFFFh, return an Easter Egg string in EAX, EBX, ECX and EDX.[115][116] Known Easter Egg strings include:

Processor String
AMD K6 NexGen‍erationAMD
AMD K8 IT'S HAMMER TIME
AMD Jaguar[117] HELLO KITTY! ^-^

EAX=C0000000h: Get Highest Centaur Extended Function edit

Returns index of highest Centaur leaf in EAX. If the returned value in EAX is less than C0000001h, then Centaur extended leaves are not supported.

Present in CPUs from VIA and Zhaoxin.

On IDT WinChip CPUs (CentaurHauls Family 5), the extended leaves C0000001h-C0000005h do not encode any Centaur-specific functionality but are instead aliases of leaves 80000001h-80000005h.[118]

EAX=C0000001h: Centaur Feature Information edit

This leaf returns Centaur feature information (mainly VIA PadLock) in EDX.[119][120] (EAX, EBX and ECX are reserved.)

CPUID EAX=C0000001h: Centaur feature bits in EDX
Bit EDX
Short Feature
0 sm2[a] SM2 present
1 sm2_en[a] SM2 enabled
2 rng PadLock RNG present: XSTORE and REP XSTORE instructions
3 rng_en RNG enabled
4 ccs[a] PadLock SM3/SM4 instructions present: CCS_HASH and CCS_ENCRYPT
5 ccs_en[a] SM3/SM4 instructions enabled
6 xcrypt PadLock Advanced Cryptographic Engine (ACE, using AES cipher) present: REP XCRYPT(ECB,CBC,CFB,OFB) instructions
7 xcrypt_en ACE enabled
8 ace2 ACE v2 present: REP XCRYPTCTR instruction, as well as support for digest mode and misaligned data for ACE's REP XCRYPT* instructions.
9 ace2_en ACE v2 enabled
10 phe PadLock Hash Engine (PHE): REP XSHA1 and REP XSHA256 instructions
11 phe_en PHE enabled
12 pmm PadLock Montgomery Multiplier (PMM): REP MONTMUL instruction
13 pmm_en PMM enabled
14 (reserved)
15 zx_fma FMA supported
16 parallax Adaptive P-state control present
17 parallax_en Adaptive P-state control enabled
18 overstress Overstress feature for auto overclock present
19 overstress_en Overstress feature for auto overclock enabled
20 tm3 Thermal Monitor 3 present
21 tm3_en Thermal Monitor 3 enabled
22 rng2 RNG v2: Second generation RNG present
23 rng2_en RNG v2 enabled
24 sem SME feature present
25 phe2 PHE v2: SHA384 and SHA512 present
26 phe2_en PHE v2 enabled
27 xmodx RSA instructions present: XMODEXP and MONTMUL2
28 xmodx_en RSA instructions enabled
29 vex VEX instructions present
30 vex_en VEX instructions enabled
31 stk STK is present
  1. ^ a b c d On VIA Nehemiah and Antaur CPUs (CentaurHauls Family 6 Model 9 only),[121] bits 0,1,4,5 are used differently:

CPUID usage from high-level languages edit

Inline assembly edit

This information is easy to access from other languages as well. For instance, the C code for gcc below prints the first five values, returned by the cpuid:

#include <stdio.h> #include <cpuid.h> int main() {  unsigned int i, eax, ebx, ecx, edx;  for (i = 0; i < 5; i++) {  __cpuid(i, eax, ebx, ecx, edx);  printf ("InfoType %x\nEAX: %x\nEBX: %x\nECX: %x\nEDX: %x\n", i, eax, ebx, ecx, edx);  }  return 0; } 

In MSVC and Borland/Embarcadero C compilers (bcc32) flavored inline assembly, the clobbering information is implicit in the instructions:

#include <stdio.h> int main() {  unsigned int a, b, c, d, i = 0;  __asm {  /* Do the call. */  mov EAX, i;  cpuid;  /* Save results. */  mov a, EAX;  mov b, EBX;  mov c, ECX;  mov d, EDX;  }  printf ("InfoType %x\nEAX: %x\nEBX: %x\nECX: %x\nEDX: %x\n", i, a, b, c, d);  return 0; } 

If either version was written in plain assembly language, the programmer must manually save the results of EAX, EBX, ECX, and EDX elsewhere if they want to keep using the values.

Wrapper functions edit

GCC also provides a header called <cpuid.h> on systems that have CPUID. The __cpuid is a macro expanding to inline assembly. Typical usage would be:

#include <stdio.h> #include <cpuid.h> int main() {  unsigned int eax, ebx, ecx, edx;  __cpuid(0 /* vendor string */, eax, ebx, ecx, edx);  printf("EAX: %x\nEBX: %x\nECX: %x\nEDX: %x\n", eax, ebx, ecx, edx);  return 0; } 

But if one requested an extended feature not present on this CPU, they would not notice and might get random, unexpected results. Safer version is also provided in <cpuid.h>. It checks for extended features and does some more safety checks. The output values are not passed using reference-like macro parameters, but more conventional pointers.

#include <stdio.h> #include <cpuid.h> int main() {  unsigned int eax, ebx, ecx, edx;  /* 0x81234567 is nonexistent, but assume it exists */  if (!__get_cpuid (0x81234567, &eax, &ebx, &ecx, &edx)) {  printf("Warning: CPUID request 0x81234567 not valid!\n");  return 1;  }  printf("EAX: %x\nEBX: %x\nECX: %x\nEDX: %x\n", eax, ebx, ecx, edx);  return 0; } 

Notice the ampersands in &a, &b, &c, &d and the conditional statement. If the __get_cpuid call receives a correct request, it will return a non-zero value, if it fails, zero.[122]

Microsoft Visual C compiler has builtin function __cpuid() so the cpuid instruction may be embedded without using inline assembly, which is handy since the x86-64 version of MSVC does not allow inline assembly at all. The same program for MSVC would be:

#include <stdio.h> #ifdef __MSVC__  #include <intrin.h> #endif int main() {  unsigned int regs[4];  int i;  for (i = 0; i < 4; i++) {  __cpuid(regs, i);  printf("The code %d gives %d, %d, %d, %d", regs[0], regs[1], regs[2], regs[3]);  }  return 0; } 

Many interpreted or compiled scripting languages are capable of using CPUID via an FFI library. shows usage of the Ruby FFI module to execute assembly language that includes the CPUID opcode.

.NET 5 and later versions provide the System.Runtime.Intrinsics.X86.X86base.CpuId method. For instance, the C# code below prints the processor brand if it supports CPUID instruction:

using System.Runtime.InteropServices; using System.Runtime.Intrinsics.X86; using System.Text; namespace X86CPUID {  class CPUBrandString {  public static void Main(string[] args) {  if (!X86Base.IsSupported) {  Console.WriteLine("Your CPU does not support CPUID instruction.");  } else {  Span<int> raw = stackalloc int[12];  (raw[0], raw[1], raw[2], raw[3]) = X86Base.CpuId(unchecked((int)0x80000002), 0);  (raw[4], raw[5], raw[6], raw[7]) = X86Base.CpuId(unchecked((int)0x80000003), 0);  (raw[8], raw[9], raw[10], raw[11]) = X86Base.CpuId(unchecked((int)0x80000004), 0);  Span<byte> bytes = MemoryMarshal.AsBytes(raw);  string brand = Encoding.UTF8.GetString(bytes).Trim();  Console.WriteLine(brand);  }  }  } } 

CPU-specific information outside x86 edit

Some of the non-x86 CPU architectures also provide certain forms of structured information about the processor's abilities, commonly as a set of special registers:

  • ARM architectures have a CPUID coprocessor register which requires EL1 or above to access.[123]
  • The IBM System z mainframe processors have a Store CPU ID (STIDP) instruction since the 1983 IBM 4381[124] for querying the processor ID.[125]
  • The IBM System z mainframe processors also have a Store Facilities List Extended (STFLE) instruction which lists the installed hardware features.[125]
  • The MIPS32/64 architecture defines a mandatory Processor Identification (PrId) and a series of daisy-chained Configuration Registers.[126]
  • The PowerPC processor has the 32-bit read-only Processor Version Register (PVR) identifying the processor model in use. The instruction requires supervisor access level.[127]

DSP and transputer-like chip families have not taken up the instruction in any noticeable way, in spite of having (in relative terms) as many variations in design. Alternate ways of silicon identification might be present; for example, DSPs from Texas Instruments contain a memory-based register set for each functional unit that starts with identifiers determining the unit type and model, its ASIC design revision and features selected at the design phase, and continues with unit-specific control and data registers. Access to these areas is performed by simply using the existing load and store instructions; thus, for such devices, there is no need for extending the register set for device identification purposes.[citation needed]

See also edit

References edit

  1. ^ "Intel 64 and IA-32 Architectures Software Developer's Manual" (PDF). Intel.com. Retrieved 2013-04-11.
  2. ^ "Detecting Intel Processors - Knowing the generation of a system CPU". Rcollins.org. Retrieved 2013-04-11.
  3. ^ "LXR linux-old/arch/i386/kernel/head.S". Lxr.linux.no. Archived from the original on 2012-07-13. Retrieved 2013-04-11.
  4. ^ "CPUID, EAX=4 - Strange results (Solved)". Software.intel.com. Retrieved 2014-07-10.
  5. ^ @InstLatX64 (February 28, 2019). "First encounter with "GenuineIotel" (o after I, instead of n)" (Tweet) – via Twitter.{{cite web}}: CS1 maint: numeric names: authors list (link)
  6. ^ instlatx64, CPUID dump for RDC IAD 100. Retrieved 22 December 2022.
  7. ^ a b c d smxi, Inxi issue 197: Elbrus CPU support data and implementation. Retrieved 23 October 2023. on 23 October 2023.
  8. ^ sorgelig (Aug 3, 2017). "ao486 CPUID instruction (in commit 43a2004)". GitHub. from the original on 2023-12-04. Retrieved 2023-12-04.
  9. ^ a b sorgelig (Aug 30, 2020). "Update cpuid. · MiSTer-devel/ao486_MiSTer@82f5014". GitHub. from the original on 2023-12-04. Retrieved 2023-12-04.
  10. ^ sorgelig (Aug 30, 2020). "ao486 CPUID instruction". GitHub. Archived from the original on Oct 23, 2023. Retrieved 4 Dec 2023.
  11. ^ "v586: 586 compatible soft core for FPGA". GitHub. 6 December 2021.
  12. ^ "Steam Hardware & Software Survey". store.steampowered.com. Retrieved 2022-07-26.
  13. ^ "Fun with Timers and cpuid - by Jim Cownie - CPU fun". 3 March 2021.
  14. ^ iXBT Labs, VIA Nano CPUID Tricks, Aug 26, 2010. on Aug 29, 2010.
  15. ^ IDT, WinChip 2A data sheet, v1.0, Jan 1999, page A-3.
  16. ^ VIA, C3 Nehemiah Datasheet, rev 1.13, Sep 29, 2004, page A-3.
  17. ^ Agner Fog, CpuIDFake, v1.00, Jan 22, 2010, see "Instructions.txt". on Jul 9, 2010.
  18. ^ Transmeta, Crusoe BIOS Programmer's Guide, Jan 23, 2004, page 65.
  19. ^ AMD, Geode LX Data Book, pub.id. 33234H, Feb. 2009, page 107. on Dec 3, 2023.
  20. ^ DM&P, Vortex86EX2_A9133_Master_Data_Sheet_V11_BF, May 8, 2019, page 72.
  21. ^ "Chapter 3 Instruction Set Reference, A-L" (PDF). Intel 64 and IA-32 Architectures Software Developer's Manual. Intel Corporation. 2018-12-20. Retrieved 2018-12-20.
  22. ^ Intel, Pentium Processor Family Developer's Manual, 1997, order no. 241428-005, sections 3.4.1.2 (page 91), 17.5.1 (page 489) and appendix A (page 522) provide more detail on how the "processor type" field and the "dual processor" designation work.
  23. ^ InstLatx64, x86, x64 Instruction Latency, Memory Latency and CPUID dumps, 30 Sep 2023.
  24. ^ AMD, Enhanced Am486DX Microprocessor Family, pub.no. 20736 rev B, March 1997, section 9.2.2, page 55. on 18 Oct 2023.
  25. ^ AMD, ÉlanSC400 and ÉlanSC410 Microcontrollers User's Manual, pub.no. 21030, 1997, section 3.6.2, page 73. on 18 Oct 2023.
  26. ^ Cyrix, 5x86 BIOS Writers Guide, rev 1.12, order no. 92426-00, 1995, page 7
  27. ^ a b Cyrix, CPU Detection Guide, rev 1.01, 2 Oct 1997, page 6.
  28. ^ a b Debbie Wiles, , archived on 2006-06-04
  29. ^ MiSTer ao486 source code, rtl/ao486/defines.v, line 70. on 23 Oct 2023.
  30. ^ CPU-World, CPUID for Vortex86DX2 933 MHz. Archived on 17 Oct 2023.
  31. ^ CPU-World, CPUID for Vortex86EX2. Archived on 18 Oct 2023.
  32. ^ InstLatx64, Centaur CNS CPUID dump. on 30 May 2023.
  33. ^ Jeff Atwood, Nasty Software Hacks and Intel's CPUID. Coding Horror, 16 Aug 2005.
  34. ^ Intel, Intel Xeon Phi Coprocessor Instruction Set Architecture Reference Manual, sep 2012, order no. 327364-001, appendix B.8, page 673. on 4 Aug 2021.
  35. ^ CPU-World, CPUID for Intel Itanium 2 1.50 GHz. Archived on 17 Oct 2023.
  36. ^ http://bochs.sourceforge.net/techspec/24161821.pdf[bare URL PDF]
  37. ^ Linux 6.3 kernel sources, /arch/x86/include/asm/cpuid.h, line 69
  38. ^ gcc-patches mailing list, CPUID Patch for IDT Winchip, May 21, 2019
  39. ^ Geoff Chappell, CMPXCHG8B Support in the 32-Bit Windows Kernel, Jan 23, 2008. on Jan 30, 2023.
  40. ^ AMD, AMD Processor Recognition Application Note, publication #20734, rev D, Jan 1997, page 13
  41. ^ Intel, AP-485 Application Note - Intel Processor Identification and the CPUID Instruction, order no. 241618-006, march 1997, table 5 on page 10, see bit 10.
  42. ^ Michal Necasek, SYSENTER, Where Are You?, OS/2 Museum, July 20, 2017
  43. ^ Geoff Chappell, ECX From CPUID Leaf 1, Jan 26, 2020. on May 9, 2020.
  44. ^ Huggahalli, Ram; Iyer, Ravi; Tetrick, Scott (2005). "Direct Cache Access for High Bandwidth Network I/O". ACM SIGARCH Computer Architecture News. 33 (2): 50–59. doi:10.1145/1080695.1069976. CiteSeerX:10.1.1.91.957.
  45. ^ Drepper, Ulrich (2007), What Every Programmer Should Know About Memory, CiteSeerX:10.1.1.91.957
  46. ^ a b Intel, Itanium Architecture Software Developer's Manual, rev 2.3, volume 4: IA-32 Instruction Set, may 2010, document number: 323208, table 2-5, page 4:81, see bits 20 and 30. on Feb 15, 2012.
  47. ^ Intel, AP-485, Processor Identification and the CPUID Instruction flag, rev 30, jan 2006, page 26
  48. ^ Michal Necasek, HTT Means Hyper-Threading, Right?, OS/2 Museum, dec 11, 2017
  49. ^ "Mechanisms to determine if software is running in a VMware virtual machine". VMware Knowledge Base. VMWare. 2015-05-01. Intel and AMD CPUs have reserved bit 31 of ECX of CPUID leaf 0x1 as the hypervisor present bit. This bit allows hypervisors to indicate their presence to the guest operating system. Hypervisors set this bit and physical CPUs (all existing and future CPUs) set this bit to zero. Guest operating systems can test bit 31 to detect if they are running inside a virtual machine.
  50. ^ Kataria, Alok; Hecht, Dan (2008-10-01). "Hypervisor CPUID Interface Proposal". LKML Archive on lore.kernel.org. from the original on 2019-03-15. Bit 31 of ECX of CPUID leaf 0x1. This bit has been reserved by Intel & AMD for use by hypervisors and indicates the presence of a hypervisor. Virtual CPU's (hypervisors) set this bit to 1 and physical CPU's (all existing and future CPU's) set this bit to zero. This bit can be probed by the guest software to detect whether they are running inside a virtual machine.
  51. ^ (PDF) (3.41 ed.). Advanced Micro Devices, Inc. p. 498. 24593. Archived from the original (PDF) on 30 Sep 2023. Retrieved 9 September 2023. 15.2.2 Guest Mode This new processor mode is entered through the VMRUN instruction. When in guest mode, the behavior of some x86 instructions changes to facilitate virtualization. The CPUID function numbers 4000_0000h-4000_00FFh have been reserved for software use. Hypervisors can use these function numbers to provide an interface to pass information from the hypervisor to the guest. This is similar to extracting information about a physical CPU by using CPUID. Hypervisors use the CPUID Fn 400000[FF:00] bit to denote a virtual platform. Feature bit CPUID Fn0000_0001_ECX[31] has been reserved for use by hypervisors to indicate the presence of a hypervisor. Hypervisors set this bit to 1 and physical CPU's set this bit to zero. This bit can be probed by the guest software to detect whether they are running inside a virtual machine.
  52. ^ Intel, , rev 2.0, order no. 245320-003, December 2001, page 110. Archived from the original on 18 Feb 2004.
  53. ^ Intel, Processor Identification and the CPUID Instruction Application Note 485, order no. 241618-036, Aug 2009, page 26. on 6 Oct 2023.
  54. ^ InstLatX64, Willamette-128 CPUID dump. on 7 Dec 2019.
  55. ^ InstlatX64, Intel Atom 230 CPUID dump. on 7 Dec 2019.
  56. ^ WikiChip, Bonnell. on 16 Jul 2017.
  57. ^ Cyrix, Cyrix CPU Detection Guide, rev 1.01, 2 Oct 1997, page 13.
  58. ^ Intel, Processor Identification and the CPUID Instruction Application Note 485, order no. 241618-037, Jan 2011, page 32. on 17 Oct 2023.
  59. ^ Geoff Chappell, CPUID Leaf 2, 26 Jan 2020. on Sep 4, 2023.
  60. ^ Intel, , order no. 251110-003, May 2004, page 192. Archived from the original on 7 Dec 2006.
  61. ^ Intel, , order.no. 251141-028, Nov 2004, erratum 6 on page 26. Archived from the original on 25 Nov 2004.
  62. ^ Intel, Atom C3000 Processor Product Family Specification Update, order no. 336345-020, page 16, Mar 2023. on 7 Oct 2023.
  63. ^ Intel, Xeon Processor 7500 Series Datasheet, order no. 323341-001, March 2010, page 150. on Oct 8, 2023.
  64. ^ a b Shih Kuo (Jan 27, 2012). "Intel 64 Architecture Processor Topology Enumeration".
  65. ^ . Developer.amd.com. Archived from the original on 2014-07-14. Retrieved 2014-07-10.
  66. ^ "Sandybridge processors report incorrect core number?". Software.intel.com. 2012-12-29. Retrieved 2014-07-10.
  67. ^ "cpuid, __cpuidex". Msdn.microsoft.com. 2014-06-20. Retrieved 2014-07-10.
  68. ^ "x86 architecture - CPUID". sandpile.org. Retrieved 2014-07-10.
  69. ^ "topology.cpp in ps/trunk/source/lib/sysdep/arch/x86_x64 – Wildfire Games". Trac.wildfiregames.com. 2011-12-27. Retrieved 2014-07-10.
  70. ^ Hyper-Threading Technology and Multi-Core Processor Detection
  71. ^ Intel, Intel Processor Identification and the CPUID Instruction (AP-485, rev 30), order no. 241618-030, Jan 2006, page 19.
  72. ^ Intel, Intel 64 and IA-32 Architecture Software Developer's Manual, order no. 352462-079, volume 3B, section 15.4.4.4, page 3503
  73. ^ Intel, Processor Identification and the CPUID Instruction, order no. 241618-038, apr 2012, p.38
  74. ^ Intel, , 1 aug 2008. Archived on May 11, 2023
  75. ^ Intel, Deprecating the PCOMMIT instruction, sep 12, 2016. Archived on Apr 23, 2023.
  76. ^ Intel, AVX512-FP16 Architecture Specification (PDF), document number 347407-001, June 2021. on Oct 26, 2022
  77. ^ a b c d "Speculative Execution Side Channel Mitigations" (PDF). Revision 2.0. Intel. May 2018 [January 2018]. Document Number: 336996-002. Retrieved 2018-05-26.
  78. ^ "IBRS patch series [LWN.net]".
  79. ^ a b Intel, Flexible Return and Event Delivery (FRED) Specification, rev 5.0, May 2023, order no. 346446-005, page 13. on Aug 7, 2023.
  80. ^ Intel, Software Developer's Manual, order no. 325462-080, June 2023 - information about prematurely busy shadow stacks provided in Volume 1, section 17.2.3 on page 410; Volume 2A, table 3.8 (CPUID EAX=7,ECX=2) on page 820; Volume 3C, table 25-14 on page 3958 and section 26.4.3 on page 3984.
  81. ^ LKML, Re: (PATCH v3 00/21) Enable CET Virtualization, Jun 16, 2023 - provides additional discussion of how the CET-SSS prematurely-busy stack issue interacts with virtualization.
  82. ^ a b Intel, Advanced Vector Extensions 10, rev 1.0, July 2023, order no. 355989-001. on Jul 24, 2023.
  83. ^ a b Intel, Advanced Performance Extensions - Architecture Specification, rev 2.0, Aug 2023, order no. 355828-002, page 37. on Sep 10, 2023.
  84. ^ a b c Intel, Branch History Injection and Intra-mode Branch Target Injection / CVE-2022-0001, CVE-2022-0002 / INTEL-SA-00598, 4 Aug 2022. Archived on 5 May 2023.
  85. ^ Intel, Return Stack Buffer Underflow / CVE-2022-29901, CVE-2022-28693 / INTEL-SA-00702, 12 Jul 2022. Archived on 13 Jul 2022.
  86. ^ (PDF), AMD, September 2010, archived from the original (PDF) on 18 Aug 2022
  87. ^ Linux kernel source code
  88. ^ AMD, AMD-K6 Processor Data Sheet, order no. 20695H/0, march 1998, section 24.2, page 283
  89. ^ AMD, AMD-K6 Processor Revision Guide, order no. 21846H/0, June 1999, section 3.2.1, page 17
  90. ^ Intel, Intel 64 and IA-32 Architectures Software Developer's Manual, order no. 325462-079, march 2023, table 3-8 on page 3-238
  91. ^ (PDF), AMD, August 2010, archived from the original (PDF) on 2012-11-27, retrieved 2013-04-03
  92. ^ Cyrix, Cyrix CPU Detection Guide, rev 1.01, oct 2, 1997, page 12
  93. ^ AMD, Geode GX1 Processor Data Book, rev 5.0, december 2003, pages 202 and 226. on 20 Apr 2020.
  94. ^ Transmeta, Processor Recognition, 2002-05-07, page 5
  95. ^ AMD, , pub.no. 20734, rev. 3.13, december 2005. Section 2.2.2 (p.20) and Section 3 (pages 33 to 40) provide details on how CPUID.(EAX=8000_0001):EDX[bit 19] should be used to identify processors. Archived from the original on Jun 26, 2006.
  96. ^ AMD, Family 10h BKDG, document no. 31116, rev 3.62, jan 11, 2013, p. 388 - lists the NodeId bit. on 16 Jan 2019.
  97. ^ AMD, AMD64 Architecture Programmer's Manual Volume 3, pub. no. 24594, rev 3.20, may 2013, page 579 - lists the StreamPerfMon bit
  98. ^ "Intel Processor Identification and the CPUID Instruction" (PDF). Download.intel.com. 2012-03-06. Retrieved 2013-04-11.
  99. ^ InstLatx64, Vortex86DX3 CPUID dump, 27 Sep 2021. on 21 Oct 2021.
  100. ^ InstLatx64, AMD Ryzen 7 6800HS CPUID dump, 21 Feb 2022. on 24 Mar 2023.
  101. ^ AMD, BKDG for AMD Family 10h Processors, pub.no. 31116, rev 3.62, jan 11, 2013, page 392. on 16 Jan 2019.
  102. ^ AMD, PPR For AMD Family 19h Model 61h rev B1 procesors, pub.no. 56713, rev 3.05, Mar 8, 2023, page 99. on 25 Apr 2023.
  103. ^ AMD, BKDG for AMD Family 16h Models 00-0Fh processors, pub.no. 48571, rev 3.03, Feb 19, 2015, page 482. on 16 Jan 2019.
  104. ^ AMD, BIOS and Kernel Developer's Guide for AMD Athlon 64 and AMD Opteron Processors, publication #26094, rev 3.30, feb 2006, pages 29-30 (lists Athlon 64 revision differences, including LMSLE) ( on 16 Jan 2019), and Revision Guide for AMD Athlon 64 and AMD Opteron Processors, publication #25759, rev 3.79, july 2009, pages 7-8 (lists Athlon 64 revision IDs) ( on 18 Jan 2019).
  105. ^ AMD, PPR for AMD Family 19h Model 01h, Revision B1 Processors, Volume 1 of 2, document no. 55898, rev 0.50, may 27, 2021, page 98 - lists branch-sampling bit. on Jul 24, 2022
  106. ^ AMD, , publication no. 33047, rev 3.01, May 2005, appendix B, page 81. Archived on Jun 13, 2011.
  107. ^ AMD, CPUID specification, publication #25481, revision 2.18, jan 2006, page 18.
  108. ^ AMD, CPUID specification, publication #25481, revision 2.34, sep 2010, pages 5 and 11.
  109. ^ Instlatx64, AMD E-350 CPUID dump - has CPUID.(EAX=8000000A):EDX[9] set.
  110. ^ AMD, CPUID specification, publication #25481, revision 2.28, apr 2008, page 21.
  111. ^ AMD, CPUID specification, publication #25481, revision 2.34, sep 2010, page 5 - lists "SseIsa10Compat" as having been dropped in November 2009.
  112. ^ a b AMD, PPR for AMD Family 19h Model 61h, Revision B1 processors, document no. 56713, rev 3.05, mar 8 2023, page 102. on Apr 25, 2023.
  113. ^ AMD, Secure VM Service Module for SEV-SNP Guests, pub.no #58019, rev 1.00, Jul 2023, page 13. on 5 Aug 2023.
  114. ^ AMD, PPR for AMD Family 19h Model 61h, Revision B1 processors, document no. 56713, rev 3.05, mar 8 2023, page 116. on Apr 25, 2023.
  115. ^ Ferrie, Peter. (PDF). symantec.com. Symantec Advanced Threat Research. Archived from the original (PDF) on 2007-02-07. Retrieved 15 March 2017.
  116. ^ Sandpile, x86 architecture CPUID. Retrieved 22 December 2022.
  117. ^ instlatx64, CPUID dump of AMD A4-5000, lists "HELLO KITTY" string for CPUID leaf 8FFFFFFFh. Retrieved 22 December 2022.
  118. ^ IDT, WinChip 2B Processor Data Sheet, v0.9, April 1999, chapter 3.3.3, page 31.
  119. ^ VIA, rev. 1.66, aug 4, 2005, page 5. Archived from the original on May 26, 2010
  120. ^ OpenEuler 1.0 LTS kernel sources, /arch/x86/include/asm/cpufeatures.h lines 147-178. on Jul 30, 2023.
  121. ^ VIA, C3 Nehemiah Processor Datasheet, rev 1.13, Sep 29, 2004, page 21
  122. ^ "GCC-mirror/GCC". GitHub. 13 March 2022.
  123. ^ "ARM Information Center". Infocenter.arm.com. Retrieved 2013-04-11.
  124. ^ . Archived from the original on 2014-09-08. Retrieved 2014-09-08.
  125. ^ a b "IBM System z10 Enterprise Class Technical Guide" (PDF).
  126. ^ "MIPS32 Architecture For Programmers, Volume III: The MIPS32 Privileged Resource Architecture" (PDF). MIPS Technologies, Inc. 2001-03-12.
  127. ^ "PowerPC Operating Environment Architecture, book III" (PDF).

Further reading edit

  • "AMD64 Technology Indirect Branch Control Extension" (PDF) (White paper). Revision 4.10.18. Advanced Micro Devices, Inc. (AMD). 2018. (PDF) from the original on 2018-05-09. Retrieved 2018-05-09.

External links edit

  • Intel (Application Note 485), last published version. Said to be incorporated into the Intel 64 and IA-32 Architectures Software Developer's Manual , but as of July 2014 the manual still directs the reader to note 485.
    • Contains some information that can be and was easily misinterpreted though, particularly with respect to processor topology identification.
    • The big Intel manuals tend to lag behind the Intel ISA document, available at the top of this page, which is updated even for processors not yet publicly available, and thus usually contains more CPUID bits. For example, as of this writing, the ISA book (at revision 19, dated May 2014) documents the CLFLUSHOPT bit in leaf 7, but the big manuals although apparently more up-to-date (at revision 51, dated June 2014) don't mention it.
  • AMD64 Architecture Programmer's Manual Volume 3: General-Purpose and System Instructions
  • cpuid command-line program for Linux
  • cpuprint.com, cpuprint.exe, cpuprint.raw command-line programs for Windows
  • instlatx64 - collection of x86/x64 Instruction Latency, Memory Latency and CPUID dumps

cpuid, this, article, require, cleanup, meet, wikipedia, quality, standards, specific, problem, many, table, column, headers, line, with, corresponding, data, column, please, help, improve, this, article, december, 2023, learn, when, remove, this, template, me. This article may require cleanup to meet Wikipedia s quality standards The specific problem is Many table column headers don t line up with the corresponding data column Please help improve this article if you can December 2023 Learn how and when to remove this template message In the x86 architecture the CPUID instruction identified by a CPUID opcode is a processor supplementary instruction its name derived from CPU Identification allowing software to discover details of the processor It was introduced by Intel in 1993 with the launch of the Pentium and SL enhanced 486 processors 1 A program can use the CPUID to determine processor type and whether features such as MMX SSE are implemented Contents 1 History 2 Calling CPUID 2 1 EAX 0 Highest Function Parameter and Manufacturer ID 2 2 EAX 1 Processor Info and Feature Bits 2 3 EAX 2 Cache and TLB Descriptor information 2 4 EAX 3 Processor Serial Number 2 5 EAX 4 and EAX Bh Intel thread core and cache topology 2 6 EAX 6 Thermal and power management 2 7 EAX 7 ECX 0 Extended Features 2 8 EAX 7 ECX 1 Extended Features 2 9 EAX 7 ECX 2 Extended Features 2 10 EAX 0Dh XSAVE features and state components 2 11 EAX 12h SGX capabilities 2 12 EAX 14h ECX 0 Processor Trace 2 13 EAX 19h AES Key Locker features 2 14 EAX 24h ECX 0 AVX10 Features 2 15 EAX 80000000h Get Highest Extended Function Implemented 2 16 EAX 80000001h Extended Processor Info and Feature Bits 2 17 EAX 80000002h 80000003h 80000004h Processor Brand String 2 18 EAX 80000005h L1 Cache and TLB Identifiers 2 19 EAX 80000006h Extended L2 Cache Features 2 20 EAX 80000007h Processor Power Management Information and RAS Capabilities 2 21 EAX 80000008h Virtual and Physical address Sizes 2 22 EAX 8000000Ah Secure Virtual Machine features 2 23 EAX 8000001Fh Encrypted Memory Capabilities 2 24 EAX 80000021h Extended Feature Identification 2 2 25 EAX 8FFFFFFFh AMD Easter Egg 2 26 EAX C0000000h Get Highest Centaur Extended Function 2 27 EAX C0000001h Centaur Feature Information 3 CPUID usage from high level languages 3 1 Inline assembly 3 2 Wrapper functions 4 CPU specific information outside x86 5 See also 6 References 7 Further reading 8 External linksHistory editPrior to the general availability of the CPUID instruction programmers would write esoteric machine code which exploited minor differences in CPU behavior in order to determine the processor make and model 2 3 With the introduction of the 80386 processor EDX on reset indicated the revision but this was only readable after reset and there was no standard way for applications to read the value Outside the x86 family developers are mostly still required to use esoteric processes involving instruction timing or CPU fault triggers to determine the variations in CPU design that are present In the Motorola 680x0 family that never had a CPUID instruction of any kind certain specific instructions required elevated privileges These could be used to tell various CPU family members apart In the Motorola 68010 the instruction MOVE from SR became privileged This notable instruction and state machine change allowed the 68010 to meet the Popek and Goldberg virtualization requirements Because the 68000 offered an unprivileged MOVE from SR the 2 different CPUs could be told apart by a CPU error condition being triggered While the CPUID instruction is specific to the x86 architecture other architectures like ARM often provide on chip registers which can be read in prescribed ways to obtain the same sorts of information provided by the x86 CPUID instruction Calling CPUID editThe CPUID opcode is 0F A2 In assembly language the CPUID instruction takes no parameters as CPUID implicitly uses the EAX register to determine the main category of information returned In Intel s more recent terminology this is called the CPUID leaf CPUID should be called with EAX 0 first as this will store in the EAX register the highest EAX calling parameter leaf that the CPU implements To obtain extended function information CPUID should be called with the most significant bit of EAX set To determine the highest extended function calling parameter call CPUID with EAX 80000000h CPUID leaves greater than 3 but less than 80000000 are accessible only when the model specific registers have IA32 MISC ENABLE BOOT NT4 bit 22 0 which is so by default As the name suggests Windows NT 4 0 until SP6 did not boot properly unless this bit was set 4 but later versions of Windows do not need it so basic leaves greater than 4 can be assumed visible on current Windows systems As of July 2014 update basic valid leaves go up to 14h but the information returned by some leaves are not disclosed in the publicly available documentation i e they are reserved Some of the more recently added leaves also have sub leaves which are selected via the ECX register before calling CPUID EAX 0 Highest Function Parameter and Manufacturer ID edit This returns the CPU s manufacturer ID string a twelve character ASCII string stored in EBX EDX ECX in that order The highest basic calling parameter the largest value that EAX can be set to before calling CPUID is returned in EAX Here is a list of processors and the highest function implemented Highest Function Parameter Processors Basic ExtendedEarlier Intel 486 CPUID Not ImplementedLater Intel 486 and Pentium 0x01 Not ImplementedPentium Pro Pentium II and Celeron 0x02 Not ImplementedPentium III 0x03 Not ImplementedPentium 4 0x02 0x8000 0004Xeon 0x02 0x8000 0004Pentium M 0x02 0x8000 0004Pentium 4 with Hyper Threading 0x05 0x8000 0008Pentium D 8xx 0x05 0x8000 0008Pentium D 9xx 0x06 0x8000 0008Core Duo 0x0A 0x8000 0008Core 2 Duo 0x0A 0x8000 0008Xeon 3000 5100 5200 5300 5400 5000 series 0x0A 0x8000 0008Core 2 Duo 8000 series 0x0D 0x8000 0008Xeon 5200 5400 series 0x0A 0x8000 0008Atom 0x0A 0x8000 0008Nehalem based processors 0x0B 0x8000 0008Ivy Bridge based processors 0x0D 0x8000 0008Skylake based processors proc base amp max freq Bus ref freq 0x16 0x8000 0008System On Chip Vendor Attribute Enumeration Main Leaf 0x17 0x8000 0008The following are known processor manufacturer ID strings AMDisbetter early engineering samples of AMD K5 processor AuthenticAMD AMD CentaurHauls IDT WinChip Centaur Including some VIA and Zhaoxin CPUs CyrixInstead Cyrix early STMicroelectronics and IBM GenuineIntel Intel GenuineIotel Intel rare 5 TransmetaCPU Transmeta GenuineTMx86 Transmeta Geode by NSC National Semiconductor NexGenDriven NexGen RiseRiseRise Rise SiS SiS SiS SiS UMC UMC UMC UMC VIA VIA VIA VIA Vortex86 SoC DM amp P Vortex86 Shanghai Zhaoxin HygonGenuine Hygon Genuine RDC RDC Semiconductor Co Ltd 6 E2K MACHINE MCST Elbrus 7 The following are ID strings used by open source soft CPU cores GenuineAO486 ao486 CPU old 8 9 MiSTer AO486 ao486 CPU new 10 9 GenuineIntel v586 core 11 this is identical to the Intel ID string The following are known ID strings from virtual machines bhyve bhyve bhyve KVMKVMKVM 0 0 0 KVM 0 denotes an ASCII NUL character TCGTCGTCGTCG QEMU Microsoft Hv Microsoft Hyper V or Windows Virtual PC MicrosoftXTA Microsoft x86 to ARM 12 lrpepyh vr Parallels it possibly should be prl hyperv but it is encoded as lrpepyh vr due to an endianness mismatch citation needed VMwareVMware VMware XenVMMXenVMM Xen HVM ACRNACRNACRN Project ACRN QNXQVMBSQG QNX Hypervisor GenuineIntel Apple Rosetta 2 13 VirtualApple Newer versions of Apple Rosetta 2For instance on a GenuineIntel processor values returned in EBX is 0x756e6547 EDX is 0x49656e69 and ECX is 0x6c65746e The following example code displays the vendor ID string as well as the highest calling parameter that the CPU implements intel syntax noprefix text m0 string CPUID x n m1 string Largest basic function number implemented i n m2 string Vendor ID s n globl main main push r12 mov eax 1 sub rsp 16 cpuid lea rdi m0 rip mov esi eax call printf mov eax 0 cpuid lea rdi m1 rip mov esi eax mov r12d edx mov ebp ecx call printf mov 3 rsp ebx lea rsi 3 rsp lea rdi m2 rip mov 7 rsp r12d mov 11 rsp ebp call printf add rsp 16 pop r12 ret section note GNU stack progbits On some processors it is possible to modify the Manufacturer ID string reported by CPUID EAX 0 by writing a new ID string to particular MSRs Model specific registers using the WRMSR instruction This has been used on non Intel processors to enable features and optimizations that have been disabled in software for CPUs that don t return the GenuineIntel ID string 14 Processors that are known to possess such MSRs include Manufacturer ID MSRs Processor MSRsIDT WinChip 108h 109h 15 VIA C3 C7 1108h 1109h 16 VIA Nano 1206h 1207h 17 Transmeta Crusoe 80860001h 80860003h 18 AMD Geode GX LX 3000h 3001h 19 DM amp P Vortex86EX2 52444300h 52444301h 20 EAX 1 Processor Info and Feature Bits edit This returns the CPU s stepping model and family information in register EAX also called the signature of a CPU feature flags in registers EDX and ECX and additional feature info in register EBX 21 CPUID EAX 1 Processor Version Information in EAX EAX31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0Reserved Extended Family ID Extended Model ID Reserved Processor Type Family ID Model Stepping IDStepping ID is a product revision number assigned due to fixed errata or other changes The actual processor model is derived from the Model Extended Model ID and Family ID fields If the Family ID field is either 6 or 15 the model is equal to the sum of the Extended Model ID field shifted left by 4 bits and the Model field Otherwise the model is equal to the value of the Model field The actual processor family is derived from the Family ID and Extended Family ID fields If the Family ID field is equal to 15 the family is equal to the sum of the Extended Family ID and the Family ID fields Otherwise the family is equal to the value of the Family ID field The meaning of the Processor Type field is given in the table below Processor Type Type Encoding in BinaryOriginal equipment manufacturer OEM Processor 00Intel Overdrive Processor 01Dual processor applicable to Intel P5 Pentium processors only 22 10Reserved value 11 As of October 2023 the following x86 processor family IDs are known 23 CPUID EAX 1 Processor Family IDs Family ID Extended Family ID Intel AMD Other0h 1h 2h 3h a 4h 486 486 24 5x86 Elan SC4xx 5xx 25 Cyrix 5x86 26 Cyrix MediaGX 27 UMC Green CPU 28 MCST Elbrus most models 7 MiSTer ao486 29 5h Pentium Pentium MMX Quark X1000 K5 K6 Cyrix 6x86 Cyrix MediaGXm 27 Geode except NX NexGen Nx586 28 IDT WinChip Transmeta Crusoe Rise mP6 SiS 550 DM amp P Vortex86 early 30 RDC IAD 100 MCST Elbrus 8C2 7 6h Pentium Pro Pentium II Pentium III Pentium M Intel Core all variants Intel Atom all variants Xeon except NetBurst variants Xeon Phi except KNC K7 Athlon Athlon XP Cyrix 6x86MX MII VIA C3 VIA C7 VIA Nano DM amp P Vortex86 DX3 EX2 31 Zhaoxin ZX A B C C Centaur CNS 32 MCST Elbrus 12C 16C 2C3 7 7h Itanium in IA 32 mode Zhaoxin KaiXian Zhaoxin KaisHeng8h b 9h 0Ah 0Bh Xeon Phi Knights Corner 34 0Ch 0Dh 0Eh 0Fh NetBurst Pentium 4 K8 Hammer Athlon 64 Transmeta Efficeon10h K10 Phenom 11h Itanium 2 35 in IA 32 mode Turion X2 12h Llano 13h 14h Bobcat 15h Bulldozer Piledriver Steamroller Excavator 16h Jaguar Puma 17h Zen 1 Zen 2 18h Hygon Dhyana19h Zen 3 Zen 4 1Ah Zen 5 The i386 processor does not support the CPUID instruction it does however return Family ID 3h in the reset value of EDX Family ID 8h has been reported to have been deliberately avoided for the Pentium 4 processor family due to incompatibility with Windows NT 4 0 33 CPUID EAX 1 Additional Information in EBX Bits EBX Valid7 0 Brand Index15 8 CLFLUSH line size Value 8 cache line size in bytes if CLFLUSH feature flag is set CPUID 01 EDX CLFSH bit 19 123 16 Maximum number of addressable IDs for logical processors in this physical package The nearest power of 2 integer that is not smaller than this value is the number of unique initial APIC IDs reserved for addressing different logical processors in a physical package Former use Number of logical processors per physical processor two for the Pentium 4 processor with Hyper Threading Technology 36 if Hyper threading feature flag is set CPUID 01 EDX HTT bit 28 131 24 Local APIC ID The initial APIC ID is used to identify the executing logical processor It can also be identified via the cpuid 0BH leaf CPUID 0Bh EDX x2APIC ID Pentium 4 and subsequent processors The processor info and feature flags are manufacturer specific but usually the Intel values are used by other manufacturers for the sake of compatibility CPUID EAX 1 Feature Information in EDX and ECX EDX ECX a Bit Short Feature Short Feature Bit0 fpu Onboard x87 FPU sse3 SSE3 Prescott New Instructions PNI 01 vme Virtual 8086 mode extensions such as VIF VIP PVI pclmulqdq a href CLMUL instruction set html title CLMUL instruction set PCLMULQDQ a carry less multiply instruction 12 de Debugging extensions CR4 bit 3 dtes64 64 bit debug store edx bit 21 23 pse Page Size Extension 4 MByte pages monitor MONITOR and MWAIT instructions PNI 34 tsc Time Stamp Counter and RDTSC instruction ds cpl CPL qualified debug store 45 msr Model specific registers and RDMSR WRMSR instructions vmx Virtual Machine eXtensions 56 pae Physical Address Extension smx Safer Mode Extensions LaGrande GETSEC instruction 67 mce Machine Check Exception est Enhanced SpeedStep 78 cx8 b CMPXCHG8B compare and swap instruction tm2 Thermal Monitor 2 89 apic c Onboard Advanced Programmable Interrupt Controller ssse3 Supplemental SSE3 instructions 910 mtrr d reserved cnxt id L1 Context ID 1011 sep e SYSENTER and SYSEXIT fast system call instructions sdbg Silicon Debug interface 1112 mtrr Memory Type Range Registers fma Fused multiply add FMA3 1213 pge Page Global Enable bit in CR4 cx16 CMPXCHG16B instruction 1314 mca Machine check architecture xtpr Can disable sending task priority messages 1415 cmov Conditional move CMOV a href FCMOV html title FCMOV FCMOV a and FCOMI instructions f pdcm Perfmon amp debug capability 1516 pat Page Attribute Table reserved g 1617 pse 36 36 bit page size extension pcid Process context identifiers CR4 bit 17 1718 psn Processor Serial Number supported and enabled h dca Direct cache access for DMA writes 44 45 1819 clfsh CLFLUSH cache line flush instruction SSE2 sse4 1 SSE4 1 instructions 1920 nx No execute NX bit Itanium only 46 i sse4 2 SSE4 2 instructions 2021 ds Debug store save trace of executed jumps x2apic x2APIC enhanced APIC 2122 acpi Onboard thermal control MSRs for ACPI movbe MOVBE instruction big endian 2223 mmx MMX instructions 64 bit SIMD popcnt a href Popcnt html class mw redirect title Popcnt POPCNT a instruction 2324 fxsr FXSAVE FXRSTOR instructions CR4 bit 9 tsc deadline APIC implements one shot operation using a TSC deadline value 2425 sse Streaming SIMD Extensions SSE instructions aka Katmai New Instructions 128 bit SIMD aes ni AES instruction set 2526 sse2 SSE2 instructions xsave Extensible processor state save restore XSAVE XRSTOR XSETBV XGETBV instructions 2627 ss CPU cache implements self snoop osxsave XSAVE enabled by OS 2728 htt Max APIC IDs reserved field is Valid j avx Advanced Vector Extensions 256 bit SIMD 2829 tm Thermal monitor automatically limits temperature f16c Floating point conversion instructions to from FP16 format 2930 ia64 IA64 processor emulating x86 46 rdrnd a href RDRAND html title RDRAND RDRAND a on chip random number generator feature 3031 pbe Pending Break Enable PBE pin wakeup capability hypervisor Hypervisor present always zero on physical CPUs 49 50 51 31 On some older processors executing CPUID with a leaf index EAX greater than 0 may leave EBX and ECX unmodified keeping their old values For this reason it is recommended to zero out EBX and ECX before executing CPUID with a leaf index of 1 Processors noted to exhibit this behavior include Cyrix MII 37 and IDT WinChip 2 38 On processors from IDT Transmeta and Rise vendor IDs CentaurHauls GenuineTMx86 and RiseRiseRise the CMPXCHG8B instruction is always supported however the feature bit for the instruction might not be set This is a workaround for a bug in Windows NT 39 On early AMD K5 AuthenticAMD Family 5 Model 0 processors only EDX bit 9 used to indicate support for PGE instead This was moved to bit 13 from K5 Model 1 onwards 40 Intel AP 485 revisions 006 41 to 008 lists CPUID EAX 1 EDX bit 10 as having the name MTRR albeit described as Reserved Do not count on their value this name was removed in later revisions of AP 485 and the bit has been listed as reserved with no name since then On Pentium Pro GenuineIntel Family 6 Model 1 processors only EDX bit 11 is invalid the bit it set but the SYSENTER and SYSEXIT instructions are not supported on the Pentium Pro 42 FCMOV and FCOMI instructions only available if onboard x87 FPU also present indicated by EDX bit 0 ECX bit 16 is listed as Reserved in public Intel and AMD documentation and is not set in any known processor However some versions of the Windows Vista kernel are reported to be checking this bit 43 if it is set Vista will recognize it as a processor channels feature On Intel CPUs that support PSN Processor Serial Number the PSN can be disabled by setting bit 21 of MSR 119h BBL CR CTL to 1 Doing so will cause CPUID EAX 1 EDX bit 18 to return 0 On non Itanium x86 processors support for the No execute bit is indicated in CPUID EAX 8000 0001 EDX bit 20 instead EDX bit 28 if set indicates that bits 23 16 of CPUID EAX 1 EBX are valid If this bit is not set then the CPU package contains only 1 logical processor In older documentation this bit is often listed as a Hyper threading technology 47 flag however while this flag is a prerequisite for Hyper Threading support it does not by itself indicate support for Hyper Threading and it has been set on many CPUs that do not feature any form of multi threading technology 48 Reserved fields should be masked before using them for processor identification purposes EAX 2 Cache and TLB Descriptor information edit This returns a list of descriptors indicating cache and TLB capabilities in EAX EBX ECX and EDX registers On processors that support this leaf calling CPUID with EAX 2 will cause the bottom byte of EAX to be set to 01h and the remaining 15 bytes of EAX EBX ECX EDX to be filled with 15 descriptors one byte each These descriptors provide information about the processor s caches TLBs and prefetch This is typically one cache or TLB per descriptor but some descriptor values provide other information as well in particular 00h is used for an empty descriptor FFh indicates that the leaf does not contain valid cache information and that leaf 4h should be used instead and FEh indicates that the leaf does not contain valid TLB information and that leaf 18h should be used instead The descriptors may appear in any order For each of the four registers EAX EBX ECX EDX if bit 31 is set then the register should not be considered to contain valid descriptors e g on Itanium in IA 32 mode CPUID EAX 2 returns 80000000h in EDX this should be interpreted to mean that EDX contains no valid information not that it contains a 512K L2 cache The table below provides for known descriptor values a condensed description of the cache or TLB indicated by that descriptor value or other information where that applies The suffixes used in the table are K M G binary kilobyte megabyte gigabyte capacity for caches page size for TLBs E entries for TLBs e g 64E 64 entries p page size e g 4Kp for TLBs where each entry describes one 4KByte page 4K 2Mp for TLBs where each entry can describe either one 4Kbyte page or one 2MByte hugepage L cache line size e g 32L 32 byte cache line size S cache sector size e g 2S means that the cache uses sectors of 2 cache lines each A associativity e g 6A 6 way set associative FA fully associative Legend for cache TLB descriptor byte encodings Level 1instructionor data cache Level 2cache Level 3cache Instructionor data TLB Level 2sharedTLB Otherinformation reserved CPUID EAX 2 Cache TLB descriptor byte encodings x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC xD xE xF0x nulldescriptor ITLB 32E 4Kp 4A ITLB 2E 4Mp FA DTLB 64E 4Kp 4A DTLB 8E 4Mp 4A DTLB 32E 4Mp 4A L1I 8K 4A 32L 0x L1I 16K 4A 32L L1I 32K 4A 64L L1D 8K 2A 32L ITLB 4E 4Mp FA L1D 16K 4A 32L L1D 16K 4A 64L L1D 24K 6A 64L 0x1x L1D 16K 4A 32L a L1I 16K 4A 32L a 1x L2C 96K 6A 64L a L2C 128K 2A 64L 1x2x L2C 256K 8A 64L L3C 512K 4A 64L 2S L3C 1M 8A 64L 2S L2C 1M 16A 64L L3C 2M 8A 64L 2S 128 byteprefetch b 128 byteprefetch b 2x 128 byteprefetch b L3C 4M 8A 64L 2S L1D 32K 8A 64L 2x3x L1I 32K 8A 64L 3x L2C 128K 4A 64L 2S c L2C 192K 6A 64L 2S c L2C 128K 2A 64L 2S c L2C 256K 4A 64L 2S c L2C 384K 6A 64L 2S c L2C 512K 4A 64L 2S c 3x4x no L3 cachepresent L2C 128K 4A 32L L2C 256K 4A 32L L2C 512K 4A 32L L2C 1M 4A 32L L2C 2M 4A 32L L3C 4M 4A 64L L3C 8M 8A 64L 4x L2C 3M 12A 64L L2C L3C d 4M 16A 64L L3C 6M 12A 64L L3C 8M 16A 64L L3C 12M 12A 64L L3C 16M 16A 64L L2C 6M 24A 64L ITLB 32E 4Kp e 4x5x ITLB 64E FA 4K 2M 4Mp ITLB 128E FA 4K 2M 4Mp ITLB 256E FA 4K 2M 4Mp ITLB 7E 2M 4Mp FA DTLB 16E 4Mp 4A DTLB 16E 4Kp 4A 5x DTLB 16E 4Kp FA DTLB 32E 2M 4Mp 4A DTLB 64E4K 4Mp FA DTLB 128E 4K 4Mp FA DTLB 256E 4K 4Mp FA 5x6x L1D 16K 8A 64L ITLB 48E 4Kp FA Two DTLBs 32E 2M 4Mp 4A 4E 1Gp FA DTLB 512E 4Kp 4A L1D 8K 4A 64L L1D 16K 4A 64L 6x L1D 32K 4A 64L DTLB 64E 4Kp 8A DTLB 256E 4Kp 8A DTLB 128E 2M 4Mp 8A DTLB 16E 1Gp FA 6x7x Trace cache 12K mop 8A f Trace cache 16K mop 8A Trace cache 32K mop 8A Trace cache 64K mop 8A c ITLB 8E 2M 4Mp FA g L1I 16K 4A 64L h 7x L2C 1M 4A 64L L2C 128K 8A 64L 2S L2C 256K 8A 64L 2S L2C 512K 8A 64L 2S L2C 1M 8A 64L 2S L2C 2M 8A 64L L2C 256K 8A 128L h L2C 512K 2A 64L 7x8x L2C 512K 8A 64L f L2C 128K 8A 32L b L2C 256K 8A 32L L2C 512K 8A 32L L2C 1M 8A 32L L2C 2M 8A 32L L2C 512K 4A 64L L2C 1M 8A 64L 8x L3C 2M 4A 64L a L3C 4M 4A 64L a L3C 8M 4A 64L a L3C 3M 12A 128L h i 8x9x ITLB 64E FA 4K 256Mp a DTLB 32E FA 4K 256Mp a 9x DTLB 96E FA 4K 256Mp a 9xAx DTLB 32E 4Kp FA Ax AxBx ITLB 128E 4Kp 4A ITLB 8E 2M 4Mp 4A j ITLB 64E 4Kp 4A DTLB 128E 4Kp 4A DTLB 256E 4Kp 4A ITLB 64E 4Kp 8A ITLB 128E 4Kp 8A Bx DTLB 64E 4Kp 4A BxCx DTLB 8E 4K 4Mp 4A L2TLB 1024E 4K 2Mp 8A DTLB 16E 2M 4Mp 4A 62 Two L2 STLBs 1536E 4K 2Mp 6A 16E 1Gp 4A DTLB 32E 2M 4Mp 4A Cx L2TLB 512E 4Kp 4A CxDx L3C 512K 4A 64L L3C 1M 4A 64L L3C 2M 4A 64L L3C 1M 8A 64L L3C 2M 8A 64L Dx L3C 4M 8A 64L L3C 1 5M 12A 64L L3C 3M 12A 64L L3C 6M 12A 64L DxEx L3C 2M 16A 64L L3C 4M 16A 64L L3C 8M 16A 64L Ex L3C 12M 24A 64L L3C 18M 24A 64L 63 L3C 24M 24A 64L ExFx 64 byteprefetch 128 byteprefetch Fx Leaf 2 hasno TLB info use leaf 18h Leaf 2 hasno cache info use leaf 4 Fxx0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC xD xE xF a b c d e f g h i Descriptors 10h 15h 1Ah 88h 89h 8Ah 90h 96h 9Bh are documented for the IA 32 operation mode of Itanium only 52 a b c d Descriptor values 26h 27h 28h and 81h are not listed in Intel documentation and are not used in any known CPU but have been reported to be recognized by the Windows NT kernel v5 1 Windows XP and higher 81h is also recognized by v5 0 Windows 2000 59 a b c d e f g Descriptors 39h 3Eh and 73h are listed in rev 36 of Intel AP 485 53 but have been removed from later Intel documentation even though some of them have been used in Intel CPUs e g 39h in Willamette 128 based Celeron processors 54 Descriptor 49h indicates a level 3 cache on GenuineIntel Family 0Fh Model 6 Pentium 4 based Xeon CPUs and a level 2 cache on other CPUs Intel s CPUID documentation does not specify the associativity of the ITLB indicated by descriptor 4Fh The processors that use this descriptor Intel Atom Bonnell 55 are listed elsewhere as having a fully associative 32 entry ITLB 56 a b On Cyrix and Geode CPUs Vendor IDs CyrixInstead and Geode by NSC descriptors 70h and 80h have a different meaning 57 Descriptor 70h indicates a 32 entry shared instruction data 4 way set associative TLB with a 4K page size Descriptor 80h indicates a 16 KByte shared instruction data L1 cache with 4 way set associativity and a cache line size of 16 bytes Descriptor 76h is listed as an 1 MByte L2 cache in rev 37 of Intel AP 485 58 but as an instruction TLB in rev 38 and all later Intel documentation a b c Descriptors 77h 7Eh 8Dh are documented for the IA 32 operation mode of Itanium 2 only 60 Under the IA 32 operation mode of Itanium 2 the L3 cache size is always reported as 3 megabytes regardless of the actual size of the cache 61 For descriptor B1h the TLB capacity is 8 elements when using 2MByte pages but reduced to 4 elements when using 4MByte pages EAX 3 Processor Serial Number edit See also Pentium III Controversy about privacy issues This returns the processor s serial number The processor serial number was introduced on Intel Pentium III but due to privacy concerns this feature is no longer implemented on later models the PSN feature bit is always cleared Transmeta s Efficeon and Crusoe processors also provide this feature AMD CPUs however do not implement this feature in any CPU models For Intel Pentium III CPUs the serial number is returned in the EDX ECX registers For Transmeta Efficeon CPUs it is returned in the EBX EAX registers And for Transmeta Crusoe CPUs it is returned in the EBX register only Note that the processor serial number feature must be enabled in the BIOS setting in order to function EAX 4 and EAX Bh Intel thread core and cache topology edit These two leaves are used for processor topology thread core package and cache hierarchy enumeration in Intel multi core and hyperthreaded processors 64 As of 2013 update AMD does not use these leaves but has alternate ways of doing the core enumeration 65 Unlike most other CPUID leaves leaf Bh will return different values in EDX depending on which logical processor the CPUID instruction runs the value returned in EDX is actually the x2APIC id of the logical processor The x2APIC id space is not continuously mapped to logical processors however there can be gaps in the mapping meaning that some intermediate x2APIC ids don t necessarily correspond to any logical processor Additional information for mapping the x2APIC ids to cores is provided in the other registers Although the leaf Bh has sub leaves selected by ECX as described further below the value returned in EDX is only affected by the logical processor on which the instruction is running but not by the subleaf The processor s topology exposed by leaf Bh is a hierarchical one but with the strange caveat that the order of logical levels in this hierarchy doesn t necessarily correspond to the order in the physical hierarchy SMT core package However every logical level can be queried as an ECX subleaf of the Bh leaf for its correspondence to a level type which can be either SMT core or invalid The level id space starts at 0 and is continuous meaning that if a level id is invalid all higher level ids will also be invalid The level type is returned in bits 15 08 of ECX while the number of logical processors at the level queried is returned in EBX Finally the connection between these levels and x2APIC ids is returned in EAX 4 0 as the number of bits that the x2APIC id must be shifted in order to obtain a unique id at the next level As an example a dual core Westmere processor capable of hyperthreading thus having two cores and four threads in total could have x2APIC ids 0 1 4 and 5 for its four logical processors Leaf Bh EAX subleaf 0 ECX of CPUID could for instance return 100h in ECX meaning that level 0 describes the SMT hyperthreading layer and return 2 in EBX because there are two logical processors SMT units per physical core The value returned in EAX for this 0 subleaf should be 1 in this case because shifting the aforementioned x2APIC ids to the right by one bit gives a unique core number at the next level of the level id hierarchy and erases the SMT id bit inside each core A simpler way to interpret this information is that the last bit bit number 0 of the x2APIC id identifies the SMT hyperthreading unit inside each core in our example Advancing to subleaf 1 by making another call to CPUID with EAX Bh and ECX 1 could for instance return 201h in ECX meaning that this is a core type level and 4 in EBX because there are 4 logical processors in the package EAX returned could be any value greater than 3 because it so happens that bit number 2 is used to identify the core in the x2APIC id Note that bit number 1 of the x2APIC id is not used in this example However EAX returned at this level could well be 4 and it happens to be so on a Clarkdale Core i3 5x0 because that also gives a unique id at the package level 0 obviously when shifting the x2APIC id by 4 bits Finally you may wonder what the EAX 4 leaf can tell us that we didn t find out already In EAX 31 26 it returns the APIC mask bits reserved for a package that would be 111b in our example because bits 0 to 2 are used for identifying logical processors inside this package but bit 1 is also reserved although not used as part of the logical processor identification scheme In other words APIC ids 0 to 7 are reserved for the package even though half of these values don t map to a logical processor The cache hierarchy of the processor is explored by looking at the sub leaves of leaf 4 The APIC ids are also used in this hierarchy to convey information about how the different levels of cache are shared by the SMT units and cores To continue our example the L2 cache which is shared by SMT units of the same core but not between physical cores on the Westmere is indicated by EAX 26 14 being set to 1 while the information that the L3 cache is shared by the whole package is indicated by setting those bits to at least 111b The cache details including cache type size and associativity are communicated via the other registers on leaf 4 Beware that older versions of the Intel app note 485 contain some misleading information particularly with respect to identifying and counting cores in a multi core processor 66 errors from misinterpreting this information have even been incorporated in the Microsoft sample code for using CPUID even for the 2013 edition of Visual Studio 67 and also in the sandpile org page for CPUID 68 but the Intel code sample for identifying processor topology 64 has the correct interpretation and the current Intel Software Developer s Manual has a more clear language The open source cross platform production code 69 from Wildfire Games also implements the correct interpretation of the Intel documentation Topology detection examples involving older pre 2010 Intel processors that lack x2APIC thus don t implement the EAX Bh leaf are given in a 2010 Intel presentation 70 Beware that using that older detection method on 2010 and newer Intel processors may overestimate the number of cores and logical processors because the old detection method assumes there are no gaps in the APIC id space and this assumption is violated by some newer processors starting with the Core i3 5x0 series but these newer processors also come with an x2APIC so their topology can be correctly determined using the EAX Bh leaf method EAX 6 Thermal and power management edit This returns feature bits in the EAX register and additional information in the EBX ECX and EDX registers CPUID EAX 6 Thermal power management feature bits in EAX Bit EAXShort Feature0 DTS Digital Thermal Sensor capability1 Intel Turbo Boost Technology capability2 ARAT a Always Running APIC Timer capability3 reserved 4 PLN Power Limit Notification capability5 ECMD Extended Clock Modulation Duty capability6 PTM Package Thermal Management capability7 HWP Hardware controlled Performance States MSRs added IA32 PM ENABLE 770h IA32 HWP CAPABILITIES 771h IA32 HWP REQUEST 774h IA32 HWP STATUS 777h8 HWP Notification HWP notification of dynamic guaranteed performance change IA32 HWP INTERRUPT 773h MSR9 HWP Activity Window HWP Activity Window control bits 41 32 of IA32 HWP REQUEST MSR10 HWP Energy Performance Preference HWP Energy performance preference control bits 31 24 of IA32 HWP REQUEST MSR11 HWP Package Level Request HWP Package level control IA32 HWP REQUEST PKG 772h MSR12 reserved 13 HDC Hardware Duty Cycling supported MSRs added IA32 PKG HDC CTL DB0h IA32 PM CTL1 DB1h IA32 THREAD STALL DB2h 14 Intel Turbo Boost Max Technology 3 0 available15 Interrupts upon changes to IA32 HWP CAPABILITIES Highest Performance bits 7 0 supported16 HWP PECI override supported bits 63 60 of IA32 HWP PECI REQUEST INFO 775h MSR17 Flexible HWP bits 63 59 of IA32 HWP REQUEST MSR18 Fast access mode for IA32 HWP REQUEST MSR supported b 19 HW FEEDBACK Hardware Feedback Interface Added MSRs IA32 HW FEEDBACK PTR 17D0h IA32 HW FEEDBACK CONFIG 17D1h bit 0 enables HFI bit 1 enables Intel Thread Director 20 IA32 HWP REQUEST of idle logical processor ignored when only one of two logical processors that share a physical processor is active 21 reserved 22 IA32 HWP CTL 776h MSR supported 72 23 Intel Thread Director supported Added MSRs IA32 THREAD FEEDBACK CHAR 17D2h IA32 HW FEEDBACK THREAD CONFIG 17D4h 24 IA32 THERM INTERRUPT MSR bit 25 supported31 25 reserved On Intel Pentium 4 family processors only bit 2 of EAX is used to indicate OPP Operating Point Protection 71 instead of ARAT To enable fast non serializing access mode for the IA32 HWP REQUEST MSR on CPUs that support it it is necessary to set bit 0 of the FAST UNCORE MSRS CTL 657h MSR CPUID EAX 6 Thermal power management feature fields in EBX ECX and EDX Bit EBX ECX EDX Bit0 Number of Interrupt Thresholds in Digital Thermal Sensor Effective frequency interface supported IA32 MPERF 0E7h and IA32 APERF 0E8h MSRs Hardware Feedback reporting Performance Capability Reporting supported 01 ACNT2 Capability a Hardware Feedback reporting Efficiency Capability Reporting supported 12 reserved reserved 23 Performance Energy Bias capability IA32 ENERGY PERF BIAS 1B0h MSR 37 4 reserved reserved 7 411 8 Number of Intel Thread Director classes supported by hardware Size of Hardware Feedback interface structure in units of 4 Kbytes minus 1 11 815 12 reserved 15 1231 16 reserved Index of this logical processor s row in hardware feedback interface structure 31 16 The ACNT2 Capability bit is listed in Intel AP 485 rev 038 73 and 039 but not listed in any revision of the Intel SDM The feature is known to exist in only a few Intel CPUs e g Xeon Harpertown stepping E0 74 EAX 7 ECX 0 Extended Features edit This returns extended feature flags in EBX ECX and EDX Returns the maximum ECX value for EAX 7 in EAX CPUID EAX 7 ECX 0 Extended feature bits in EBX ECX and EDX Bit EBX ECX EDX BitShort Feature Short Feature Short Feature0 fsgsbase Access to base of fs and gs prefetchwt1 PREFETCHWT1 instruction sgx tem 01 IA32 TSC ADJUST MSR avx512 vbmi AVX 512 Vector Bit Manipulation Instructions sgx keys Attestation Services for Intel SGX 12 sgx Software Guard Extensions umip User mode Instruction Prevention avx512 4vnniw AVX 512 4 register Neural Network Instructions 23 bmi1 Bit Manipulation Instruction Set 1 pku Memory Protection Keys for User mode pages avx512 4fmaps AVX 512 4 register Multiply Accumulation Single precision 34 hle TSX Hardware Lock Elision ospke PKU enabled by OS fsrm Fast Short REP MOVSB 45 avx2 Advanced Vector Extensions 2 waitpkg Timed pause and user level monitor wait instructions TPAUSE UMONITOR UMWAIT uintr User Inter processor Interrupts 56 fdp excptn only x87 FPU data pointer register updated on exceptions only avx512 vbmi2 AVX 512 Vector Bit Manipulation Instructions 2 reserved 67 smep Supervisor Mode Execution Prevention cet ss shstk Control flow enforcement CET shadow stack SHSTK alternative name reserved 78 bmi2 Bit Manipulation Instruction Set 2 gfni Galois Field instructions avx512 vp2intersect AVX 512 vector intersection instructions on 32 64 bit integers 89 erms Enhanced REP MOVSB STOSB vaes Vector AES instruction set VEX 256 EVEX srbds ctrl Special Register Buffer Data Sampling Mitigations 910 invpcid INVPCID instruction vpclmulqdq CLMUL instruction set VEX 256 EVEX md clear VERW instruction clears CPU buffers 1011 rtm TSX Restricted Transactional Memory avx512 vnni AVX 512 Vector Neural Network Instructions rtm always abort All TSX transactions are aborted 1112 rdt m pqm Intel Resource Director RDT Monitoring or AMD Platform QOS Monitoring avx512 bitalg AVX 512 BITALG instructions reserved 1213 x87 FPU CS and DS deprecated tme en Total Memory Encryption MSRs available TSX FORCE ABORT MSR is available 1314 mpx Intel MPX Memory Protection Extensions avx512 vpopcntdq AVX 512 Vector Population Count Double and Quad word serialize SERIALIZE instruction 1415 rdt a pqe Intel Resource Director RDT Allocation or AMD Platform QOS Enforcement fzm hybrid Mixture of CPU types in processor topology e g Alder Lake 1516 avx512 f AVX 512 Foundation la57 5 level paging 57 address bits tsxldtrk TSX load address tracking suspend resume instructions TSUSLDTRK and TRESLDTRK 1617 avx512 dq AVX 512 Doubleword and Quadword Instructions mawau The value of userspace MPX Address Width Adjust used by the BNDLDX and BNDSTX Intel MPX instructions in 64 bit mode reserved 1718 rdseed a href RDSEED html class mw redirect title RDSEED RDSEED a instruction pconfig Platform configuration Memory Encryption Technologies Instructions 1819 adx Intel ADX Multi Precision Add Carry Instruction Extensions lbr Architectural Last Branch Records 1920 smap Supervisor Mode Access Prevention cet ibt Control flow enforcement CET indirect branch tracking 2021 avx512 ifma AVX 512 Integer Fused Multiply Add Instructions reserved 2122 pcommit PCOMMIT instruction deprecated 75 rdpid RDPID Read Processor ID instruction and IA32 TSC AUX MSR amx bf16 AMX tile computation on bfloat16 numbers 2223 clflushopt CLFLUSHOPT instruction kl AES Key Locker avx512 fp16 AVX 512 half precision floating point arithmetic instructions 76 2324 clwb CLWB Cache line writeback instruction bus lock detect Bus lock debug exceptions amx tile AMX tile load store instructions 2425 pt Intel Processor Trace cldemote CLDEMOTE Cache line demote instruction amx int8 AMX tile computation on 8 bit integers 2526 avx512 pf AVX 512 Prefetch Instructions mprr ibrs spec ctrl Speculation Control part of Indirect Branch Control IBC Indirect Branch Restricted Speculation IBRS andIndirect Branch Prediction Barrier IBPB 77 78 2627 avx512 er AVX 512 Exponential and Reciprocal Instructions movdiri MOVDIRI instruction stibp Single Thread Indirect Branch Predictor part of IBC 77 2728 avx512 cd AVX 512 Conflict Detection Instructions movdir64b MOVDIR64B 64 byte direct store instruction L1D FLUSH IA32 FLUSH CMD MSR 2829 sha SHA 1 and SHA 256 extensions enqcmd Enqueue Stores and EMQCMD EMQCMDS instructions IA32 ARCH CAPABILITIES MSR lists speculative side channel mitigations 77 2930 avx512 bw AVX 512 Byte and Word Instructions sgx lc SGX Launch Configuration IA32 CORE CAPABILITIES MSR lists model specific core capabilities 3031 avx512 vl AVX 512 Vector Length Extensions pks Protection keys for supervisor mode pages ssbd Speculative Store Bypass Disable 77 as mitigation for Speculative Store Bypass IA32 SPEC CTRL 31EAX 7 ECX 1 Extended Features edit This returns extended feature flags in EAX EBX and EDX ECX is reserved CPUID EAX 7 ECX 1 Extended feature bits in EAX EBX and EDX Bit EAX EBX EDX BitShort Feature Short Feature Short Feature0 sha512 SHA 512 extensions Intel PPIN Protected Processor Inventory Number IA32 PPIN CTL 04Eh and IA32 PPIN 04Fh MSRs reserved 01 sm3 SM3 hash extensions pbndkb Total Storage Encryption PBNDKB instruction and TSE CAPABILITY 9F1h MSR reserved 12 sm4 SM4 cipher extensions reserved reserved 23 rao int Remote Atomic Operations on integers AADD AAND AOR AXOR instructions reserved reserved 34 avx vnni AVX Vector Neural Network Instructions VNNI VEX encoded reserved avx vnni int8 AVX VNNI INT8 instructions 45 avx512 bf16 AVX 512 instructions for bfloat16 numbers reserved avx ne convert AVX no exception FP conversion instructions bfloat16 FP32 and FP16 FP32 56 lass Linear Address Space Separation CR4 bit 27 reserved reserved 67 cmpccxadd CMPccXADD instructions reserved reserved 78 archperfmonext Architectural Performance Monitoring Extended Leaf EAX 23h reserved amx complex AMX support for complex tiles TCMMIMFP16PS and TCMMRLFP16PS 89 dedup reserved reserved 910 fzrm Fast zero length REP MOVSB reserved avx vnni int16 AVX VNNI INT16 instructions 1011 fsrs Fast short REP STOSB reserved reserved 1112 rsrcs Fast short REP CMPSB and REP SCASB reserved reserved 1213 reserved reserved reserved 1314 reserved reserved prefetchi Instruction cache prefetch instructions PREFETCHIT0 and PREFETCHIT1 1415 reserved reserved user msr User mode MSR access instructions URDMSR and UWRMSR 1516 reserved reserved reserved 1617 fred Flexible Return and Event Delivery 79 reserved uiret uif from rflags If 1 the UIRET User Interrupt Return instruction will set UIF User Interrupt Flag to the value of bit 1 of the RFLAGS image popped off the stack 1718 lkgs LKGS Instruction 79 reserved cet sss If 1 then Control Flow Enforcement CET Supervisor Shadow Stacks SSS are guaranteed not to become prematurely busy as long as shadow stack switching does not cause page faults on the stack being switched to 80 81 1819 wrmsrns WRMSRNS instruction non serializing write to MSRs reserved avx10 AVX10 Converged Vector ISA see also leaf 24h 82 1920 reserved reserved reserved 2021 amx fp16 AMX instructions for FP16 numbers reserved APX F Advanced Performance Extensions Foundation adds REX2 and extended EVEX prefix encodings to support 32 GPRs as well as some new instructions 83 2122 hreset HRESET instruction IA32 HRESET ENABLE 17DAh MSR and Processor History Reset Leaf EAX 20h reserved reserved 2223 avx ifma AVX IFMA instructions reserved reserved 2324 reserved reserved reserved 2425 reserved reserved reserved 2526 lam Linear Address Masking reserved reserved 2627 msrlist RDMSRLIST and WRMSRLIST instructions and the IA32 BARRIER 02Fh MSR reserved reserved 2728 reserved reserved reserved 2829 reserved reserved reserved 2930 reserved reserved reserved 3031 reserved reserved reserved 31EAX 7 ECX 2 Extended Features edit This returns extended feature flags in EDX EAX EBX and ECX are reserved CPUID EAX 7 ECX 2 Extended feature bits in EDX Bit EDXShort Feature0 psfd Fast Store Forwarding Predictor disable supported SPEC CTRL MSR 48h bit 7 1 ipred ctrl IPRED DIS controls 84 supported SPEC CTRL bits 3 and 4 IPRED DIS prevents instructions at an indirect branch target from speculatively executing until the branch target address is resolved 2 rrsba ctrl RRSBA behavior 85 84 disable supported SPEC CTRL bits 5 and 6 3 ddpd u Data Dependent Prefetcher disable supported SPEC CTRL bit 8 4 bhi ctrl BHI DIS S behavior 84 enable supported SPEC CTRL bit 10 BHI DIS S prevents predicted targets of indirect branches executed in ring0 1 2 from being selected based on branch history from branches executed in ring 3 5 mcdt no If set the processor does not exhibit MXCSR configuration dependent timing 6 UC lock disable feature supported 31 7 reserved EAX 0Dh XSAVE features and state components edit This leaf is used to enumerate XSAVE features and state components The XSAVE instruction set extension is designed to save restore CPU extended state typically for the purpose of context switching in a manner that can be extended to cover new instruction set extensions without the OS context switching code needing to understand the specifics of the new extensions This is done by defining a series of state components each with a size and offset within a given save area and each corresponding to a subset of the state needed for one CPU extension or another The EAX 0Dh CPUID leaf is used to provide information about which state components the CPU supports and what their sizes offsets are so that the OS can reserve the proper amount of space and set the associated enable bits The state components can be subdivided into two groups user state state items that are visible to the application e g AVX 512 vector registers and supervisor state state items that affect the application but are not directly user visible e g user mode interrupt configuration The user state items are enabled by setting their associated bits in the XCR0 control register while the supervisor state items are enabled by setting their associated bits in the IA32 XSS 0DA0h MSR the indicated state items then become the state components that can be saved and restored with the XSAVE XRSTOR family of instructions The XSAVE mechanism can handle up to 63 state components in this manner State components 0 and 1 x87 and SSE respectively have fixed offsets and sizes for state components 2 to 62 their sizes offsets and a few additional flags can be queried by executing CPUID with EAX 0Dh and ECX set to the index of the state component This will return the following items in EAX EBX and ECX with EDX being reserved CPUID EAX 0Dh ECX 2 XSAVE state component information Bit EAX EBX ECX Bit0 Size in bytes of state component Offset of state component from the start of the XSAVE XRSTOR save area This offset is 0 for supervisor state components since these can only be saved with the XSAVES XRSTORS instruction which use compacting User supervisor state component 0 user state enabled through XCR0 1 supervisor state enabled through IA32 XSS 01 64 byte alignment enable when state save compaction is used If this bit is set for a state component then when storing state with compaction padding will be inserted between the preceding state component and this state component as needed to provide 64 byte alignment If this bit is not set the state component will be stored directly after the preceding one 131 2 reserved 31 2Attempting to query an unsupported state component in this manner results in EAX EBX ECX and EDX all being set to 0 Sub leaves 0 and 1 of CPUID leaf 0Dh are used to provide feature information CPUID EAX 0Dh ECX 0 XSAVE features EBX ECX EDX EAXMaximum size in bytes of XSAVE save area for the set of state components currently set in XCR0 Maximum size in bytes of XSAVE save area if all state components supported by XCR0 on this CPU were enabled at the same time 64 bit bitmap of state components supported by XCR0 on this CPU CPUID EAX 0Dh ECX 1 XSAVE extended features EAX EBX EDX ECXXSAVE feature flags see below table Size in bytes of XSAVE area containing all the state components currently set in XCR0 and IA32 XSS combined 64 bit bitmap of state components supported by IA32 XSS on this CPU EAX 0Dh ECX 1 XSAVE feature flags in EAX Bit EAXShort Feature0 xsaveopt XSAVEOPT instruction save state components that have been modified since last XRSTOR1 xsavec XSAVEC instruction save restore state with compaction2 xgetbv ecx1 XGETBV with ECX 1 support3 xss XSAVES and XRSTORS instructions and IA32 XSS MSR save restore state with compaction including supervisor state 4 xfd XFD Extended Feature Disable supported31 5 reserved As of July 2023 the XSAVE state components that have been architecturally defined are XSAVE State components Index Description Enabled with0 x87 state XCR0 a 1 SSE state XMM0 XMM15 and MXCSR XCR02 AVX state top halves of YMM0 to YMM153 MPX state BND0 BND3 bounds registers4 MPX state BNDCFGU and BNDSTATUS registers5 AVX 512 state opmask registers k0 k76 AVX 512 ZMM Hi256 state top halves of ZMM0 to ZMM157 AVX 512 Hi16 ZMM state ZMM16 ZMM318 Processor Trace state IA32 XSS9 PKRU User Protection Keys register XCR010 PASID Process Address Space ID state IA32 XSS11 CET U state Control flow Enforcement Technology user mode functionality MSRs 12 CET S state CET shadow stack pointers for rings 0 1 2 13 HDC Hardware Duty Cycling state14 UINTR User Mode Interrupts state15 LBR Last Branch Record state16 HWP Hardware P state control state17 AMX tile configuration state TILECFG XCR018 AMX tile data registers tmm0 tmm719 APX extended general purpose registers r16 r31 83 20 to 61 reserved 62 Lightweight Profiling LWP AMD only XCR063 reserved b Bit 0 of XCR0 is hardwired to 1 so that the XSAVE instructions will always support save restore of x87 state For the XCR0 and IA32 XSS registers bit 63 is reserved specifically for bit vector expansion this precludes the existence of a state component 63 EAX 12h SGX capabilities edit This leaf provides information about the supported capabilities of the Intel Software Guard Extensions SGX feature The leaf provides multiple sub leaves selected with ECX Sub leaf 0 provides information about supported SGX leaf functions in EAX and maximum supported SGX enclave sizes in EDX ECX is reserved EBX provides a bitmap of bits that can be set in the MISCSELECT field in the SECS SGX Enclave Control Structure this field is used to control information written to the MISC region of the SSA SGX Save State Area when an AEX SGX Asynchronous Enclave Exit occurs CPUID EAX 12h ECX 0 SGX leaf functions MISCSELECT and maximum sizes Bit EAX EBX EDX BitShort Feature Short Feature Short Feature0 sgx1 SGX1 leaf functions EXINFO MISCSELECT report information about page fault and general protection exception that occurred inside enclave MaxEnclave Size Not64 Log2 of maximum enclave size supported in non 64 bit mode 01 sgx2 SGX2 leaf functions CPINFO MISCSELECT report information about control protection exception that occurred inside enclave 12 reserved reserved 23 reserved reserved 34 reserved reserved 45 oss ENCLV leaves EINCVIRTCHILD EDECVIRTCHILD and ESETCONTEXT reserved 56 ENCLS leaves ETRACKC ERDINFO ELDBC ELDUC reserved 67 ENCLU leaf EVERIFYREPORT2 reserved 78 reserved reserved MaxEnclave Size 64 Log2 of maximum enclave size supported in 64 bit mode 89 reserved reserved 910 ENCLS leaf EUPDATESVN reserved 1011 ENCLU leaf EDECSSA reserved 1112 reserved reserved 1213 reserved reserved 1314 reserved reserved 1415 reserved reserved 1531 16 reserved reserved reserved 31 16 Sub leaf 1 provides a bitmap of which bits can be set in the 128 bit ATTRIBUTES field of SECS in EDX ECX EBX EAX this applies to the SECS copy used as input to the ENCLS ECREATE leaf function The top 64 bits given in EDX ECX are a bitmap of which bits can be set in the XFRM X feature request mask this mask is a bitmask of which CPU state components see leaf 0Dh will be saved to the SSA in case of an AEX this has the same layout as the XCR0 control register The other bits are given in EAX and EBX as follows CPUID EAX 12h ECX 1 SGX settable bits in SECS ATTRIBUTES Bit EAX EBX BitShort Feature Short Feature0 INIT must be 0 a reserved 01 DEBUG Permit debugger to read and write enclave data using EDBGRD and EDBGWR 12 MODE64BIT 64 bit mode enclave 23 reserved 34 PROVISIONKEY Provisioning key available from EGETKEY 45 EINITTOKEN KEY EINIT token key available from EGETKEY 56 CET CET Control Flow Enforcement Technology attributes enable 67 KSS Key Separation and Sharing 78 reserved 89 reserved 910 AEXNOTIFY Threads inside enclave may receive AEX notifications 1031 11 reserved 31 11 For the copy of the SECS that exists inside an exclave bit 0 INIT of SECS ATTRIBUTES is used to indicate that the enclave has been initialized with ENCLS EINIT This bit must be 0 in the SECS copy that is given as input to ENCLS CREATE Sub leaves 2 and up are used to provide information about which physical memory regions are available for use as EPC Enclave Page Cache sections under SGX CPUID EAX 12h ECX 2 SGX Enclave Page Cache section information Bits EAX EBX ECX EDX Bits3 0 Sub leaf type 0000 Invalid 0001 EPC section other reserved Bits 51 32 of physical base address of EPC section EPC Section properties 0000 Invalid 0001 Has confidentiality and integrity protection 0010 Has confidentiality protection only other reserved Bits 51 32 of size of EPC section 3 011 4 reserved reserved 11 4 19 12 Bits 31 12 of physical base address of EPC section Bits 31 12 of size of EPC section 19 12 31 20 reserved reserved 31 20 EAX 14h ECX 0 Processor Trace edit This sub leaf provides feature information for Intel Processor Trace also known as Real Time Instruction Trace The value returned in EAX is the index of the highest sub leaf supported for CPUID with EAX 14h EBX and ECX provide feature flags EDX is reserved CPUID EAX 14h ECX 0 Processor Trace feature bits in EBX and ECX Bit EBX ECX BitShort Feature Short Feature0 CR3 filtering supported topaout ToPA Table of Physical Addresses output mechanism for trace packets supported 01 Configurable PSB Packet Stream Boundary packet rate and Cycle Accurate Mode CYC packets supported mentry ToPA tables can contain hold multiple output entries 12 IP filtering TraceStop filtering and preservation of PT MSRs across warm reset supported snglrngout Single Range Output scheme supported 23 MTC Mini Time Counter timing packets supported and suppression of COFI Change of Flow Instructions packets supported Output to Trace Transport subsystem supported 34 ptwrite PTWRITE instruction supported reserved 45 Power Event Trace supported reserved 56 Preservation of PSB and PMI performance monitoring interrupt supported reserved 67 Event Trace packet generation supported reserved 78 TNT Branch Taken Not Taken packet generation disable supported reserved 830 9 reserved reserved 30 9 31 reserved IP Instruction Pointer format for trace packets that contain IP payloads 0 RIP effective address IP 1 LIP linear address IP with CS base address added 31EAX 19h AES Key Locker features edit This leaf provides feature information for AES Key Locker in EAX EBX and ECX EDX is reserved CPUID EAX 19h Key Locker feature bits in EAX EBX and ECX Bit EAX EBX ECX BitShort Feature Short Feature Short Feature0 Key Locker restriction of CPL0 only supported aes kle AES Key Locker Instructions No backup parameter to LOADIWKEY supported 01 Key Locker restriction of no encrypt supported reserved KeySource encoding of 1 randomization of internal wrapping key supported 12 Key Locker restriction of no decrypt supported aes wide kl AES Wide Key Locker Instructions reserved 23 reserved reserved reserved 34 reserved kl msrs Key Locker MSRs reserved 431 5 reserved reserved reserved 31 5 EAX 24h ECX 0 AVX10 Features edit This returns a maximum supported sub leaf in EAX and AVX10 feature information in EBX 82 ECX and EDX are reserved CPUID EAX 24h ECX 0 AVX10 feature bits in EBX Bit EBXShort Feature7 0 AVX10 Converged Vector ISA version 1 15 8 reserved 16 128 bit vector support is present17 256 bit vector support is present18 512 bit vector support is present31 19 reserved EAX 80000000h Get Highest Extended Function Implemented edit The highest calling parameter is returned in EAX EBX ECX EDX return the manufacturer ID string same as EAX 0 on AMD but not Intel CPUs EAX 80000001h Extended Processor Info and Feature Bits edit This returns extended feature flags in EDX and ECX Many of the bits in EDX bits 0 through 9 12 through 17 23 and 24 are duplicates of EDX from the EAX 1 leaf these bits are highlighted in light yellow These duplicated bits are present on AMD but not Intel CPUs AMD feature flags are as follows 86 87 CPUID EAX 80000001h Feature bits in EDX and ECX Bit EDX ECX BitShort Feature Short Feature0 fpu Onboard x87 FPU lahf lm LAHF SAHF in long mode 01 vme Virtual mode extensions VIF cmp legacy Hyperthreading not valid 12 de Debugging extensions CR4 bit 3 svm Secure Virtual Machine 23 pse Page Size Extension extapic Extended APIC space 34 tsc Time Stamp Counter cr8 legacy CR8 in 32 bit mode 45 msr Model specific registers abm lzcnt Advanced bit manipulation a href Lzcnt html class mw redirect title Lzcnt LZCNT a and a href Popcnt html class mw redirect title Popcnt POPCNT a 56 pae Physical Address Extension sse4a SSE4a 67 mce Machine Check Exception misalignsse Misaligned SSE mode 78 cx8 CMPXCHG8B compare and swap instruction 3dnowprefetch PREFETCH and PREFETCHW instructions 89 apic Onboard Advanced Programmable Interrupt Controller osvw OS Visible Workaround 910 syscall a SYSCALL SYSRET K6 only ibs Instruction Based Sampling 1011 syscall b SYSCALL and SYSRET instructions xop XOP instruction set 1112 mtrr Memory Type Range Registers skinit SKINIT STGI instructions 1213 pge Page Global Enable bit in CR4 wdt Watchdog timer 1314 mca Machine check architecture reserved 1415 cmov Conditional move and a href FCMOV html title FCMOV FCMOV a instructions lwp Light Weight Profiling 91 1516 pat c Page Attribute Table fma4 4 operand fused multiply add instructions 1617 pse36 36 bit page size extension tce Translation Cache Extension 1718 reserved reserved 1819 ecc Athlon MP Sempron CPU brand identification d nodeid msr NodeID MSR C001 100C 96 1920 nx NX bit reserved 2021 reserved tbm Trailing Bit Manipulation 2122 mmxext Extended MMX topoext Topology Extensions 2223 mmx MMX instructions perfctr core Core performance counter extensions 2324 fxsr c FXSAVE FXRSTOR instructions CR4 bit 9 perfctr nb Northbridge performance counter extensions 2425 fxsr opt FXSAVE FXRSTOR optimizations StreamPerfMon Streaming performance monitor architecture e 2526 pdpe1gb Gigabyte pages dbx Data breakpoint extensions 2627 rdtscp RDTSCP instruction perftsc Performance timestamp counter PTSC 2728 reserved pcx l2i L2I perf counter extensions 2829 lm Long mode monitorx MONITORX and MWAITX instructions 2930 3dnowext Extended 3DNow addr mask ext Address mask extension to 32 bits for instruction breakpoints 3031 3dnow 3DNow reserved 31 The use of EDX bit 10 to indicate support for SYSCALL SYSRET is only valid on AuthenticAMD Family 5 Model 7 CPUs AMD K6 250nm Little Foot for all other processors EDX bit 11 should be used instead These instructions were first introduced on Model 7 88 the CPUID bit to indicate their support was moved 89 to EDX bit 11 from Model 8 AMD K6 2 onwards On Intel CPUs the CPUID bit for SYSCALL SYSRET is only set if the CPUID instruction is executed in 64 bit mode 90 a b On some processors Cyrix MediaGXm 92 several Geodes NatSemi Geode GXm GXLV GX1 AMD Geode GX1 93 and Transmeta Crusoe 94 EDX bits 16 and 24 have a different meaning Bit 16 Floating point Conditional Move a href FCMOV html title FCMOV FCMOV a supported Bit 24 6x86MX Extended MMX instructions supported EDX bit 19 is used for CPU brand identification on AuthenticAMD Family 6 processors only the bit is combined with processor signature and FSB speed used to identify processors as either multiprocessor capable or carrying the Sempron brand name 95 ECX bit 25 is listed as StreamPerfMon in revision 3 20 of AMD APM 97 only it is listed as reserved in later revisions The bit is set on Excavator and Steamroller CPUs only EAX 80000002h 80000003h 80000004h Processor Brand String edit These return the processor brand string in EAX EBX ECX and EDX CPUID must be issued with each parameter in sequence to get the entire 48 byte ASCII processor brand string 98 It is necessary to check whether the feature is present in the CPU by issuing CPUID with EAX 80000000h first and checking if the returned value is not less than 80000004h The string is specified in Intel AMD documentation to be null terminated however this is not always the case e g DM amp P Vortex86DX3 and AMD Ryzen 7 6800HS are known to return non null terminated brand strings in leaves 80000002h 80000004h 99 100 and software should not rely on it include lt stdio h gt include lt string h gt include lt cpuid h gt int main unsigned int regs 12 char str sizeof regs 1 cpuid 0x80000000 regs 0 regs 1 regs 2 regs 3 if regs 0 lt 0x80000004 return 1 cpuid 0x80000002 regs 0 regs 1 regs 2 regs 3 cpuid 0x80000003 regs 4 regs 5 regs 6 regs 7 cpuid 0x80000004 regs 8 regs 9 regs 10 regs 11 memcpy str regs sizeof regs str sizeof regs 0 printf s n str return 0 EAX 80000005h L1 Cache and TLB Identifiers edit This function contains the processor s L1 cache and TLB characteristics EAX 80000006h Extended L2 Cache Features edit Returns details of the L2 cache in ECX including the line size in bytes Bits 07 00 type of associativity encoded by a 4 bits field Bits 15 12 and the cache size in KB Bits 31 16 include lt stdio h gt include lt cpuid h gt int main unsigned int eax ebx ecx edx unsigned int lsize assoc cache cpuid 0x80000006 eax ebx ecx edx lsize ecx amp 0xff assoc ecx gt gt 12 amp 0x07 cache ecx gt gt 16 amp 0xffff printf Line size d B Assoc type d Cache size d KB n lsize assoc cache return 0 EAX 80000007h Processor Power Management Information and RAS Capabilities edit This function provides information about power management power reporting and RAS Reliability availability and serviceability capabilities of the CPU CPUID EAX 80000007h RAS features in EBX and power management features in EDX Bit EBX EDX BitShort Feature Short Feature0 MCAOverflowRecov MCA Machine Check Architecture overflow recovery support TS Temperature Sensor 01 SUCCOR Software uncorrectable error containment and recovery capability FID Frequency ID Control 12 HWA Hardware assert support MSRs C001 10C0 to C001 10DF VID Voltage ID Control 23 ScalableMca Scalable MCA supported TTP THERMTRIP 34 reserved TM Hardware thermal control HTC supported 45 reserved STC Software thermal control STC supported 101 56 reserved 100MHzSteps 100 MHz multiplier control 67 reserved HwPstate Hardware P state control MSRs C001 0061 to C001 0063 78 reserved TscInvariant Invariant TSC TSC Time Stamp Counter rate is guaranteed to be invariant across all P states C states and sop grant transitions 89 reserved CPB Core Performance Boost 910 reserved EffFreqRO Read only effective frequency interface MSRs C000 00E7 and C000 00E8 1011 reserved ProcFeedback Interface Processor Feedback Interface supported 1112 reserved ProcPower Reporting Processor power reporting interface supported 1213 reserved Connected Standby Connected Standby 102 1314 reserved RAPL Running Average Power Limit 1415 reserved FastCPPC Fast CPPC Collaborative Processor Performance Control supported 1531 16 reserved reserved 31 16 CPUID EAX 80000007h Processor Feedback info in EAX and power monitoring interface info in ECX Bits EAX ECX BitsShort Feature Short Feature7 0 NumberOfMonitors Number of Processor Feedback MSR pairs available starting from MSR C001 0080 onwards 103 CpuPwrSample TimeRatio Ratio of compute unit power accumulator sample period to TSC counter period 7 015 8 Version Processor Feedback Capabilities version 15 831 16 MaxWrapTime Maximum time between reads in milliseconds that software should use to avoid two wraps 31 16EAX 80000008h Virtual and Physical address Sizes edit CPUID EAX 80000008h Feature bits in EBX Bit EBXShort Feature0 clzero CLZERO instruction1 retired instr Retired instruction count MSR C000 00E9h supported2 xrstor fp err XRSTOR restores FP errors3 invlpgb INVLPGB and TLBSYNC instructions4 rdpru RDPRU instruction5 reserved 6 mbe Memory Bandwidth Enforcement7 reserved 8 mcommit MCOMMIT instruction9 wbnoinvd WBNOINVD instruction10 reserved 11 reserved 12 IBPB Indirect Branch Prediction Barrier performed by writing 1 to bit 0 of PRED CMD MSR 049h 13 wbinvd int WBINVD and WBNOINVD are interruptible14 IBRS Indirect Branch Restricted Speculation15 STIBP Single Thread Indirect Branch Prediction mode16 IbrsAlwaysOn IBRS mode has enhanced performance and should be left always on17 StibpAlwaysOn STIBP mode has enhanced performance and should be left always on18 ibrs preferred IBRS preferred over software19 ibrs same mode protection IBRS provides Same Mode Protection20 no efer lmsle EFER LMSLE is unsupported a 21 invlpgb nested INVLPGB support for nested pages22 reserved 23 ppin Protected Processor Inventory Number PPIN CTL C001 02F0 and PPIN C001 02F1 MSRs are present24 ssbd Speculative Store Bypass Disable25 ssbd legacy Speculative Store Bypass Disable Legacy26 ssbd no Speculative Store Bypass Disable Not Required27 cppc Collaborative Processor Performance Control28 psfd Predictive Store Forward Disable29 btc no Branch Type Confusion Processor not affected30 IBPB RET IBPB see bit 12 also clears return address predictor31 branch sampling Branch Sampling Support 105 CPUID EAX 80000008h Size and range fields in EAX ECX EDX Bits EAX ECX EDX Bits7 0 Number of Physical Address Bits Number of Physical Cores minus 1 Maximum page count for INVLPGB instruction 7 011 8 Number of Linear Address Bits reserved 11 815 12 APIC ID Size 15 1217 16 Guest Physical Address Size b Performance Timestamp Counter size Maximum ECX value recognized by RDPRU instruction 17 1623 18 reserved 23 1831 24 reserved 31 24 The LMSLE Long Mode Segment Limit Enable feature does not have its own CPUID flag and is detected by checking CPU family and model It was introduced in AuthenticAMD Family 0Fh Model 14h 104 90nm Athlon64 Opteron CPUs and is present in all later AMD CPUs except the ones with the no efer lmsle flag set A value of 0 indicates that the Guest Physical Address Size is the same as the Number Of Physical Address Bits specified in EAX 7 0 EAX 8000000Ah Secure Virtual Machine features edit This leaf returns information about AMD SVM Secure Virtual Machine features in EAX EBX and EDX CPUID EAX 8000000Ah SVM information in EAX EBX and ECX Bits EAX EBX ECX Bits7 0 SVM Revision Number Number of available ASIDs address space identifiers reserved 7 08 hypervisor a 831 9 reserved 31 9 CPUID EAX 8000000Ah SVM feature flags in EDX Bit EDXShort Feature0 NP Rapid Virtualization Indexing Nested Paging 1 LbrVirt LBR Last Branch Records virtualization2 SVML SVM Lock3 NRIPS nRIP next sequential instruction pointer save on VMEXIT supported4 TscRateMsr MSR based TSC rate control MSR C000 0104h 5 VmcbClean VMCB Virtual Machine Control Block clean bits supported6 FlushByAsid TLB flush events e g CR3 writes CR4 PGE toggles only flush the TLB entries of the current ASID address space ID 7 DecodeAssist Decode assists supported8 reserved 9 SseIsa10Compat b reserved 10 PauseFilter PAUSE intercept filter supported11 reserved 12 PauseFilter Threshold PAUSE filter cycle count threshold supported13 AVIC AMD Advanced Virtualized Interrupt Controller supported14 reserved 15 VMSAVEvirt VMSAVE and VMLOAD virtualization16 VGIF Global Interrupt Flag GIF virtualization17 GMET Guest Mode Execution Trap18 x2AVIC x2APIC mode supported for AVIC19 SSSCheck SVM Supervisor shadow stack restrictions20 SpecCtrl SPEC CTRL MSR 2E0h virtualization21 ROGPT Read Only Guest Page Table supported22 reserved 23 HOST MCE OVERRIDE Guest mode Machine check exceptions when host a href Control register html CR4 title Control register CR4 MCE a 1 and guest CR4 MCE 0 cause intercepts instead of shutdowns24 TlbiCtl INVLPGB TLBSYNC hypervisor enable in VMCB and TLBSYNC intercept support25 VNMI NMI Non Maskable interrupt virtualization26 IbsVirt IBS Instruction Based Sampling virtualization27 ExtLvtOffset FaultChg Read Write fault behavior for extended LVT offsets APIC addresses 0x500 0x530 changed to Read Allowed Write VMEXIT 112 28 VmcbAddr ChkChg VMCB address check change 112 29 BusLock Threshold Bus Lock Threshold30 reserved 31 reserved Early revisions of AMD s Pacifica documentation listed EAX bit 8 as an always zero bit reserved for hypervisor use 106 Later AMD documentation such as 25481 CPUID specification rev 2 18 107 and later only lists the bit as reserved In rev 2 30 108 and later a different bit is listed as reserved for hypervisor use CPUID EAX 1 ECX bit 31 EDX bit 9 is briefly listed in some older revisions of AMD s document 25481 CPUID Specification and is set only in some AMD Bobcat CPUs 109 Rev 2 28 of 25481 lists the bit as Ssse3Sse5Dis 110 in rev 2 34 it is listed as having been removed from the spec at rev 2 32 under the name SseIsa10Compat 111 EAX 8000001Fh Encrypted Memory Capabilities edit CPUID EAX 8000001Fh Encrypted Memory feature bits in EAX Bit EAXShort Feature0 SME Secure Memory Encryption1 SEV Secure Encrypted Virtualization2 PageFlushMSR Page flush MSR C001 011Eh supported3 SEV ES SEV Encrypted State4 SEV SNP SEV Secure Nested Paging5 VMPL VM Privilege Levels6 RMPQUERY RMPQUERY instruction supported7 VmplSSS VMPL Supervisor shadow stack supported8 SecureTSC Secure TSC supported9 TscAux Virtualization Virtualization of TSC AUX MSR C000 0103 supported10 HwEnfCacheCoh Hardware cache coherency across encryption domains enforced11 64BitHost SEV Guest execution only allowed from 64 bit host12 Restricted Injection SEV ES guests can refuse all event injections except HV Hypervisor Injection Exception 13 Alternate Injection SEV ES guests can use an encrypted VMCB field for event injection14 DebugSwap Full debug state swap supported for SEV ES guests15 PreventHostIBS Prevent host IBS for a SEV ES guest16 VTE Virtual Transparent Encryption for SEV17 Vmgexit Parameter VMGEXIT parameter is supported using the RAX register 18 VirtualTomMsr Virtual TOM top of memory MSR C001 0135 supported19 IbsVirtGuestCtl IBS state virtualization is supported for SEV ES guests20 reserved 21 reserved 22 reserved 23 reserved 24 VmsaRegProt VMSA VM Save Area register protection supported25 SmtProtection SMT Protection supported26 reserved 27 reserved 28 SVSMComm PageMSR SVSM Secure VM Service Module 113 communication page MSR C001 F000h supported29 NestedVirt SnpMsr VIRT RMPUPDATE C001 F001h and VIRT PSMASH C001 F002h MSRs supported30 reserved 31 reserved CPUID EAX 8000001Fh Encrypted Memory feature information in EBX ECX and EDX Bits EBX ECX EDX Bits5 0 C bit encryption enable bit location in page table entry Maximum ASID value that can be used for a SEV enabled guest maximum number of encrypted guests that can be supported simultaneously Minimum ASID value for a guest that is SEV enabled but not SEV ES enabled 5 011 6 Physical address width reduction when memory encryption is enabled 11 615 12 Number of VMPLs VM Privilege Levels supported 15 1231 16 reserved 31 16 EAX 80000021h Extended Feature Identification 2 edit CPUID EAX 80000021h Extended feature bits in EAX Bit EAXShort Feature0 NoNestedDataBp Processor ignores nested data breakpoints1 FsGsKernelGsBase NonSerializing WRMSR to the FS BASE GS BASE and KernelGSBase MSRs is non serializing 114 2 LFenceAlways Serializing LFENCE is always dispatch serializing3 SmmPgCfgLock SMM paging configuration lock supported4 reserved 5 reserved 6 NullSelect ClearsBase Null segment selector loads also clear the destination segment register base and limit7 UpperAddress Ignore Upper Address Ignore is supported8 AutomaticIBRS Automatic IBRS9 NoSmmCtlMSR SMM CTL MSR C0010116h is not supported10 FSRS Fast short REP STOSB supported11 FSRC Fast short REPE CMPSB supported12 reserved 13 PrefetchCtlMsr PrefetchControl MSR C0000108h is supported14 reserved 15 reserved 16 reserved 17 CpuidUserDis CPUID disable for non privileged software18 EPSF Enhanced Predictive Store Forwarding supported31 19 reserved CPUID EAX 80000021h Extended feature information in EBX Bit EBXShort Feature11 0 MicrocodePatchSize The size of the Microcode patch in 16 byte multiples If 0 the size of the patch is at most 5568 15C0h bytes31 12 reserved EAX 8FFFFFFFh AMD Easter Egg edit Several AMD CPU models will for CPUID with EAX 8FFFFFFFh return an Easter Egg string in EAX EBX ECX and EDX 115 116 Known Easter Egg strings include Processor StringAMD K6 a href NexGen html title NexGen NexGen a erationAMDAMD K8 IT S a href U Can 27t Touch This html title U Can t Touch This HAMMER TIME a AMD Jaguar 117 a href Hello Kitty html title Hello Kitty HELLO KITTY a EAX C0000000h Get Highest Centaur Extended Function edit Returns index of highest Centaur leaf in EAX If the returned value in EAX is less than C0000001h then Centaur extended leaves are not supported Present in CPUs from VIA and Zhaoxin On IDT WinChip CPUs CentaurHauls Family 5 the extended leaves C0000001h C0000005h do not encode any Centaur specific functionality but are instead aliases of leaves 80000001h 80000005h 118 EAX C0000001h Centaur Feature Information edit This leaf returns Centaur feature information mainly VIA PadLock in EDX 119 120 EAX EBX and ECX are reserved CPUID EAX C0000001h Centaur feature bits in EDX Bit EDXShort Feature0 sm2 a SM2 present1 sm2 en a SM2 enabled2 rng PadLock RNG present XSTORE and REP XSTORE instructions3 rng en RNG enabled4 ccs a PadLock SM3 SM4 instructions present CCS HASH and CCS ENCRYPT5 ccs en a SM3 SM4 instructions enabled6 xcrypt PadLock Advanced Cryptographic Engine ACE using AES cipher present REP XCRYPT ECB CBC CFB OFB instructions7 xcrypt en ACE enabled8 ace2 ACE v2 present REP XCRYPTCTR instruction as well as support for digest mode and misaligned data for ACE s REP XCRYPT instructions 9 ace2 en ACE v2 enabled10 phe PadLock Hash Engine PHE REP XSHA1 and REP XSHA256 instructions11 phe en PHE enabled12 pmm PadLock Montgomery Multiplier PMM REP MONTMUL instruction13 pmm en PMM enabled14 reserved 15 zx fma FMA supported16 parallax Adaptive P state control present17 parallax en Adaptive P state control enabled18 overstress Overstress feature for auto overclock present19 overstress en Overstress feature for auto overclock enabled20 tm3 Thermal Monitor 3 present21 tm3 en Thermal Monitor 3 enabled22 rng2 RNG v2 Second generation RNG present23 rng2 en RNG v2 enabled24 sem SME feature present25 phe2 PHE v2 SHA384 and SHA512 present26 phe2 en PHE v2 enabled27 xmodx RSA instructions present XMODEXP and MONTMUL228 xmodx en RSA instructions enabled29 vex VEX instructions present30 vex en VEX instructions enabled31 stk STK is present a b c d On VIA Nehemiah and Antaur CPUs CentaurHauls Family 6 Model 9 only 121 bits 0 1 4 5 are used differently Bit 0 Alternate Instruction Set AIS present Bit 1 AIS enabled Bit 4 LongHaul MSR MSR 0x110A present Bit 5 a href 3DNow html title 3DNow FEMMS a instruction opcode 0F 0E presentCPUID usage from high level languages editInline assembly edit This information is easy to access from other languages as well For instance the C code for gcc below prints the first five values returned by the cpuid include lt stdio h gt include lt cpuid h gt int main unsigned int i eax ebx ecx edx for i 0 i lt 5 i cpuid i eax ebx ecx edx printf InfoType x n EAX x n EBX x n ECX x n EDX x n i eax ebx ecx edx return 0 In MSVC and Borland Embarcadero C compilers bcc32 flavored inline assembly the clobbering information is implicit in the instructions include lt stdio h gt int main unsigned int a b c d i 0 asm Do the call mov EAX i cpuid Save results mov a EAX mov b EBX mov c ECX mov d EDX printf InfoType x n EAX x n EBX x n ECX x n EDX x n i a b c d return 0 If either version was written in plain assembly language the programmer must manually save the results of EAX EBX ECX and EDX elsewhere if they want to keep using the values Wrapper functions edit GCC also provides a header called lt cpuid h gt on systems that have CPUID The cpuid is a macro expanding to inline assembly Typical usage would be include lt stdio h gt include lt cpuid h gt int main unsigned int eax ebx ecx edx cpuid 0 vendor string eax ebx ecx edx printf EAX x n EBX x n ECX x n EDX x n eax ebx ecx edx return 0 But if one requested an extended feature not present on this CPU they would not notice and might get random unexpected results Safer version is also provided in lt cpuid h gt It checks for extended features and does some more safety checks The output values are not passed using reference like macro parameters but more conventional pointers include lt stdio h gt include lt cpuid h gt int main unsigned int eax ebx ecx edx 0x81234567 is nonexistent but assume it exists if get cpuid 0x81234567 amp eax amp ebx amp ecx amp edx printf Warning CPUID request 0x81234567 not valid n return 1 printf EAX x n EBX x n ECX x n EDX x n eax ebx ecx edx return 0 Notice the ampersands in amp a amp b amp c amp d and the conditional statement If the get cpuid call receives a correct request it will return a non zero value if it fails zero 122 Microsoft Visual C compiler has builtin function cpuid so the cpuid instruction may be embedded without using inline assembly which is handy since the x86 64 version of MSVC does not allow inline assembly at all The same program for MSVC would be include lt stdio h gt ifdef MSVC include lt intrin h gt endif int main unsigned int regs 4 int i for i 0 i lt 4 i cpuid regs i printf The code d gives d d d d regs 0 regs 1 regs 2 regs 3 return 0 Many interpreted or compiled scripting languages are capable of using CPUID via an FFI library One such implementation shows usage of the Ruby FFI module to execute assembly language that includes the CPUID opcode NET 5 and later versions provide the System Runtime Intrinsics X86 X86base CpuId method For instance the C code below prints the processor brand if it supports CPUID instruction using System Runtime InteropServices using System Runtime Intrinsics X86 using System Text namespace X86CPUID class CPUBrandString public static void Main string args if X86Base IsSupported Console WriteLine Your CPU does not support CPUID instruction else Span lt int gt raw stackalloc int 12 raw 0 raw 1 raw 2 raw 3 X86Base CpuId unchecked int 0 x80000002 0 raw 4 raw 5 raw 6 raw 7 X86Base CpuId unchecked int 0 x80000003 0 raw 8 raw 9 raw 10 raw 11 X86Base CpuId unchecked int 0 x80000004 0 Span lt byte gt bytes MemoryMarshal AsBytes raw string brand Encoding UTF8 GetString bytes Trim Console WriteLine brand CPU specific information outside x86 editSome of the non x86 CPU architectures also provide certain forms of structured information about the processor s abilities commonly as a set of special registers ARM architectures have a CPUID coprocessor register which requires EL1 or above to access 123 The IBM System z mainframe processors have a Store CPU ID STIDP instruction since the 1983 IBM 4381 124 for querying the processor ID 125 The IBM System z mainframe processors also have a Store Facilities List Extended STFLE instruction which lists the installed hardware features 125 The MIPS32 64 architecture defines a mandatory Processor Identification PrId and a series of daisy chained Configuration Registers 126 The PowerPC processor has the 32 bit read only Processor Version Register PVR identifying the processor model in use The instruction requires supervisor access level 127 DSP and transputer like chip families have not taken up the instruction in any noticeable way in spite of having in relative terms as many variations in design Alternate ways of silicon identification might be present for example DSPs from Texas Instruments contain a memory based register set for each functional unit that starts with identifiers determining the unit type and model its ASIC design revision and features selected at the design phase and continues with unit specific control and data registers Access to these areas is performed by simply using the existing load and store instructions thus for such devices there is no need for extending the register set for device identification purposes citation needed See also editCPU Z a Windows utility that uses CPUID to identify various system settings CPU X an alternative of CPU Z for Linux and FreeBSD Spectre security vulnerability Speculative Store Bypass SSB proc cpuinfo a text file generated by certain systems containing some of the CPUID information x86 cpuid org a machine readable CPUID data repository and code generatorReferences edit Intel 64 and IA 32 Architectures Software Developer s Manual PDF Intel com Retrieved 2013 04 11 Detecting Intel Processors Knowing the generation of a system CPU Rcollins org Retrieved 2013 04 11 LXR linux old arch i386 kernel head S Lxr linux no Archived from the original on 2012 07 13 Retrieved 2013 04 11 CPUID EAX 4 Strange results Solved Software intel com Retrieved 2014 07 10 InstLatX64 February 28 2019 First encounter with GenuineIotel o after I instead of n Tweet via Twitter a href Template Cite web html title Template Cite web cite web a CS1 maint numeric names authors list link instlatx64 CPUID dump for RDC IAD 100 Retrieved 22 December 2022 a b c d smxi Inxi issue 197 Elbrus CPU support data and implementation Retrieved 23 October 2023 Archived on 23 October 2023 sorgelig Aug 3 2017 ao486 CPUID instruction in commit 43a2004 GitHub Archived from the original on 2023 12 04 Retrieved 2023 12 04 a b sorgelig Aug 30 2020 Update cpuid MiSTer devel ao486 MiSTer 82f5014 GitHub Archived from the original on 2023 12 04 Retrieved 2023 12 04 sorgelig Aug 30 2020 ao486 CPUID instruction GitHub Archived from the original on Oct 23 2023 Retrieved 4 Dec 2023 v586 586 compatible soft core for FPGA GitHub 6 December 2021 Steam Hardware amp Software Survey store steampowered com Retrieved 2022 07 26 Fun with Timers and cpuid by Jim Cownie CPU fun 3 March 2021 iXBT Labs VIA Nano CPUID Tricks Aug 26 2010 Archived on Aug 29 2010 IDT WinChip 2A data sheet v1 0 Jan 1999 page A 3 VIA C3 Nehemiah Datasheet rev 1 13 Sep 29 2004 page A 3 Agner Fog CpuIDFake v1 00 Jan 22 2010 see Instructions txt Archived on Jul 9 2010 Transmeta Crusoe BIOS Programmer s Guide Jan 23 2004 page 65 AMD Geode LX Data Book pub id 33234H Feb 2009 page 107 Archived on Dec 3 2023 DM amp P Vortex86EX2 A9133 Master Data Sheet V11 BF May 8 2019 page 72 Chapter 3 Instruction Set Reference A L PDF Intel 64 and IA 32 Architectures Software Developer s Manual Intel Corporation 2018 12 20 Retrieved 2018 12 20 Intel Pentium Processor Family Developer s Manual 1997 order no 241428 005 sections 3 4 1 2 page 91 17 5 1 page 489 and appendix A page 522 provide more detail on how the processor type field and the dual processor designation work InstLatx64 x86 x64 Instruction Latency Memory Latency and CPUID dumps 30 Sep 2023 AMD Enhanced Am486DX Microprocessor Family pub no 20736 rev B March 1997 section 9 2 2 page 55 Archived on 18 Oct 2023 AMD ElanSC400 and ElanSC410 Microcontrollers User s Manual pub no 21030 1997 section 3 6 2 page 73 Archived on 18 Oct 2023 Cyrix 5x86 BIOS Writers Guide rev 1 12 order no 92426 00 1995 page 7 a b Cyrix CPU Detection Guide rev 1 01 2 Oct 1997 page 6 a b Debbie Wiles CPU Identification archived on 2006 06 04 MiSTer ao486 source code rtl ao486 defines v line 70 Archived on 23 Oct 2023 CPU World CPUID for Vortex86DX2 933 MHz Archived on 17 Oct 2023 CPU World CPUID for Vortex86EX2 Archived on 18 Oct 2023 InstLatx64 Centaur CNS CPUID dump Archived on 30 May 2023 Jeff Atwood Nasty Software Hacks and Intel s CPUID Coding Horror 16 Aug 2005 Intel Intel Xeon Phi Coprocessor Instruction Set Architecture Reference Manual sep 2012 order no 327364 001 appendix B 8 page 673 Archived on 4 Aug 2021 CPU World CPUID for Intel Itanium 2 1 50 GHz Archived on 17 Oct 2023 http bochs sourceforge net techspec 24161821 pdf bare URL PDF Linux 6 3 kernel sources arch x86 include asm cpuid h line 69 gcc patches mailing list CPUID Patch for IDT Winchip May 21 2019 Geoff Chappell CMPXCHG8B Support in the 32 Bit Windows Kernel Jan 23 2008 Archived on Jan 30 2023 AMD AMD Processor Recognition Application Note publication 20734 rev D Jan 1997 page 13 Intel AP 485 Application Note Intel Processor Identification and the CPUID Instruction order no 241618 006 march 1997 table 5 on page 10 see bit 10 Michal Necasek SYSENTER Where Are You OS 2 Museum July 20 2017 Geoff Chappell ECX From CPUID Leaf 1 Jan 26 2020 Archived on May 9 2020 Huggahalli Ram Iyer Ravi Tetrick Scott 2005 Direct Cache Access for High Bandwidth Network I O ACM SIGARCH Computer Architecture News 33 2 50 59 doi 10 1145 1080695 1069976 CiteSeerX 10 1 1 91 957 Drepper Ulrich 2007 What Every Programmer Should Know About Memory CiteSeerX 10 1 1 91 957 a b Intel Itanium Architecture Software Developer s Manual rev 2 3 volume 4 IA 32 Instruction Set may 2010 document number 323208 table 2 5 page 4 81 see bits 20 and 30 Archived on Feb 15 2012 Intel AP 485 Processor Identification and the CPUID Instruction flag rev 30 jan 2006 page 26 Michal Necasek HTT Means Hyper Threading Right OS 2 Museum dec 11 2017 Mechanisms to determine if software is running in a VMware virtual machine VMware Knowledge Base VMWare 2015 05 01 Intel and AMD CPUs have reserved bit 31 of ECX of CPUID leaf 0x1 as the hypervisor present bit This bit allows hypervisors to indicate their presence to the guest operating system Hypervisors set this bit and physical CPUs all existing and future CPUs set this bit to zero Guest operating systems can test bit 31 to detect if they are running inside a virtual machine Kataria Alok Hecht Dan 2008 10 01 Hypervisor CPUID Interface Proposal LKML Archive on lore kernel org Archived from the original on 2019 03 15 Bit 31 of ECX of CPUID leaf 0x1 This bit has been reserved by Intel amp AMD for use by hypervisors and indicates the presence of a hypervisor Virtual CPU s hypervisors set this bit to 1 and physical CPU s all existing and future CPU s set this bit to zero This bit can be probed by the guest software to detect whether they are running inside a virtual machine AMD64 Technology AMD64 Architecture Programmer s Manual Volume 2 System Programming PDF 3 41 ed Advanced Micro Devices Inc p 498 24593 Archived from the original PDF on 30 Sep 2023 Retrieved 9 September 2023 15 2 2 Guest Mode This new processor mode is entered through the VMRUN instruction When in guest mode the behavior of some x86 instructions changes to facilitate virtualization The CPUID function numbers 4000 0000h 4000 00FFh have been reserved for software use Hypervisors can use these function numbers to provide an interface to pass information from the hypervisor to the guest This is similar to extracting information about a physical CPU by using CPUID Hypervisors use the CPUID Fn 400000 FF 00 bit to denote a virtual platform Feature bit CPUID Fn0000 0001 ECX 31 has been reserved for use by hypervisors to indicate the presence of a hypervisor Hypervisors set this bit to 1 and physical CPU s set this bit to zero This bit can be probed by the guest software to detect whether they are running inside a virtual machine Intel Itanium Processor Reference Manual for Software Development rev 2 0 order no 245320 003 December 2001 page 110 Archived from the original on 18 Feb 2004 Intel Processor Identification and the CPUID Instruction Application Note 485 order no 241618 036 Aug 2009 page 26 Archived on 6 Oct 2023 InstLatX64 Willamette 128 CPUID dump Archived on 7 Dec 2019 InstlatX64 Intel Atom 230 CPUID dump Archived on 7 Dec 2019 WikiChip Bonnell Archived on 16 Jul 2017 Cyrix Cyrix CPU Detection Guide rev 1 01 2 Oct 1997 page 13 Intel Processor Identification and the CPUID Instruction Application Note 485 order no 241618 037 Jan 2011 page 32 Archived on 17 Oct 2023 Geoff Chappell CPUID Leaf 2 26 Jan 2020 Archived on Sep 4 2023 Intel Itanium 2 Processor Reference Manual order no 251110 003 May 2004 page 192 Archived from the original on 7 Dec 2006 Intel Itanium 2 Processor Specification Update order no 251141 028 Nov 2004 erratum 6 on page 26 Archived from the original on 25 Nov 2004 Intel Atom C3000 Processor Product Family Specification Update order no 336345 020 page 16 Mar 2023 Archived on 7 Oct 2023 Intel Xeon Processor 7500 Series Datasheet order no 323341 001 March 2010 page 150 Archived on Oct 8 2023 a b Shih Kuo Jan 27 2012 Intel 64 Architecture Processor Topology Enumeration Processor and Core Enumeration Using CPUID AMD Developer amd com Archived from the original on 2014 07 14 Retrieved 2014 07 10 Sandybridge processors report incorrect core number Software intel com 2012 12 29 Retrieved 2014 07 10 cpuid cpuidex Msdn microsoft com 2014 06 20 Retrieved 2014 07 10 x86 architecture CPUID sandpile org Retrieved 2014 07 10 topology cpp in ps trunk source lib sysdep arch x86 x64 Wildfire Games Trac wildfiregames com 2011 12 27 Retrieved 2014 07 10 Hyper Threading Technology and Multi Core Processor Detection Intel Intel Processor Identification and the CPUID Instruction AP 485 rev 30 order no 241618 030 Jan 2006 page 19 Intel Intel 64 and IA 32 Architecture Software Developer s Manual order no 352462 079 volume 3B section 15 4 4 4 page 3503 Intel Processor Identification and the CPUID Instruction order no 241618 038 apr 2012 p 38 Intel Product Change Notification 108701 1 aug 2008 Archived on May 11 2023 Intel Deprecating the PCOMMIT instruction sep 12 2016 Archived on Apr 23 2023 Intel AVX512 FP16 Architecture Specification PDF document number 347407 001 June 2021 Archived on Oct 26 2022 a b c d Speculative Execution Side Channel Mitigations PDF Revision 2 0 Intel May 2018 January 2018 Document Number 336996 002 Retrieved 2018 05 26 IBRS patch series LWN net a b Intel Flexible Return and Event Delivery FRED Specification rev 5 0 May 2023 order no 346446 005 page 13 Archived on Aug 7 2023 Intel Software Developer s Manual order no 325462 080 June 2023 information about prematurely busy shadow stacks provided in Volume 1 section 17 2 3 on page 410 Volume 2A table 3 8 CPUID EAX 7 ECX 2 on page 820 Volume 3C table 25 14 on page 3958 and section 26 4 3 on page 3984 LKML Re PATCH v3 00 21 Enable CET Virtualization Jun 16 2023 provides additional discussion of how the CET SSS prematurely busy stack issue interacts with virtualization a b Intel Advanced Vector Extensions 10 rev 1 0 July 2023 order no 355989 001 Archived on Jul 24 2023 a b Intel Advanced Performance Extensions Architecture Specification rev 2 0 Aug 2023 order no 355828 002 page 37 Archived on Sep 10 2023 a b c Intel Branch History Injection and Intra mode Branch Target Injection CVE 2022 0001 CVE 2022 0002 INTEL SA 00598 4 Aug 2022 Archived on 5 May 2023 Intel Return Stack Buffer Underflow CVE 2022 29901 CVE 2022 28693 INTEL SA 00702 12 Jul 2022 Archived on 13 Jul 2022 CPUID Specification publication no 25481 rev 2 34 PDF AMD September 2010 archived from the original PDF on 18 Aug 2022 Linux kernel source code AMD AMD K6 Processor Data Sheet order no 20695H 0 march 1998 section 24 2 page 283 AMD AMD K6 Processor Revision Guide order no 21846H 0 June 1999 section 3 2 1 page 17 Intel Intel 64 and IA 32 Architectures Software Developer s Manual order no 325462 079 march 2023 table 3 8 on page 3 238 Lightweight Profiling Specification PDF AMD August 2010 archived from the original PDF on 2012 11 27 retrieved 2013 04 03 Cyrix Cyrix CPU Detection Guide rev 1 01 oct 2 1997 page 12 AMD Geode GX1 Processor Data Book rev 5 0 december 2003 pages 202 and 226 Archived on 20 Apr 2020 Transmeta Processor Recognition 2002 05 07 page 5 AMD Processor Recognition Application Note pub no 20734 rev 3 13 december 2005 Section 2 2 2 p 20 and Section 3 pages 33 to 40 provide details on how CPUID EAX 8000 0001 EDX bit 19 should be used to identify processors Archived from the original on Jun 26 2006 AMD Family 10h BKDG document no 31116 rev 3 62 jan 11 2013 p 388 lists the NodeId bit Archived on 16 Jan 2019 AMD AMD64 Architecture Programmer s Manual Volume 3 pub no 24594 rev 3 20 may 2013 page 579 lists the StreamPerfMon bit Intel Processor Identification and the CPUID Instruction PDF Download intel com 2012 03 06 Retrieved 2013 04 11 InstLatx64 Vortex86DX3 CPUID dump 27 Sep 2021 Archived on 21 Oct 2021 InstLatx64 AMD Ryzen 7 6800HS CPUID dump 21 Feb 2022 Archived on 24 Mar 2023 AMD BKDG for AMD Family 10h Processors pub no 31116 rev 3 62 jan 11 2013 page 392 Archived on 16 Jan 2019 AMD PPR For AMD Family 19h Model 61h rev B1 procesors pub no 56713 rev 3 05 Mar 8 2023 page 99 Archived on 25 Apr 2023 AMD BKDG for AMD Family 16h Models 00 0Fh processors pub no 48571 rev 3 03 Feb 19 2015 page 482 Archived on 16 Jan 2019 AMD BIOS and Kernel Developer s Guide for AMD Athlon 64 and AMD Opteron Processors publication 26094 rev 3 30 feb 2006 pages 29 30 lists Athlon 64 revision differences including LMSLE archived on 16 Jan 2019 and Revision Guide for AMD Athlon 64 and AMD Opteron Processors publication 25759 rev 3 79 july 2009 pages 7 8 lists Athlon 64 revision IDs archived on 18 Jan 2019 AMD PPR for AMD Family 19h Model 01h Revision B1 Processors Volume 1 of 2 document no 55898 rev 0 50 may 27 2021 page 98 lists branch sampling bit Archived on Jul 24 2022 AMD AMD64 Virtualization Codenamed Pacifica Technology publication no 33047 rev 3 01 May 2005 appendix B page 81 Archived on Jun 13 2011 AMD CPUID specification publication 25481 revision 2 18 jan 2006 page 18 AMD CPUID specification publication 25481 revision 2 34 sep 2010 pages 5 and 11 Instlatx64 AMD E 350 CPUID dump has CPUID EAX 8000000A EDX 9 set AMD CPUID specification publication 25481 revision 2 28 apr 2008 page 21 AMD CPUID specification publication 25481 revision 2 34 sep 2010 page 5 lists SseIsa10Compat as having been dropped in November 2009 a b AMD PPR for AMD Family 19h Model 61h Revision B1 processors document no 56713 rev 3 05 mar 8 2023 page 102 Archived on Apr 25 2023 AMD Secure VM Service Module for SEV SNP Guests pub no 58019 rev 1 00 Jul 2023 page 13 Archived on 5 Aug 2023 AMD PPR for AMD Family 19h Model 61h Revision B1 processors document no 56713 rev 3 05 mar 8 2023 page 116 Archived on Apr 25 2023 Ferrie Peter Attacks on Virtual Machine Emulators PDF symantec com Symantec Advanced Threat Research Archived from the original PDF on 2007 02 07 Retrieved 15 March 2017 Sandpile x86 architecture CPUID Retrieved 22 December 2022 instlatx64 CPUID dump of AMD A4 5000 lists HELLO KITTY string for CPUID leaf 8FFFFFFFh Retrieved 22 December 2022 IDT WinChip 2B Processor Data Sheet v0 9 April 1999 chapter 3 3 3 page 31 VIA PadLock Programming Guide rev 1 66 aug 4 2005 page 5 Archived from the original on May 26 2010 OpenEuler 1 0 LTS kernel sources arch x86 include asm cpufeatures h lines 147 178 Archived on Jul 30 2023 VIA C3 Nehemiah Processor Datasheet rev 1 13 Sep 29 2004 page 21 GCC mirror GCC GitHub 13 March 2022 ARM Information Center Infocenter arm com Retrieved 2013 04 11 Processor version codes and SRM constants Archived from the original on 2014 09 08 Retrieved 2014 09 08 a b IBM System z10 Enterprise Class Technical Guide PDF MIPS32 Architecture For Programmers Volume III The MIPS32 Privileged Resource Architecture PDF MIPS Technologies Inc 2001 03 12 PowerPC Operating Environment Architecture book III PDF Further reading edit AMD64 Technology Indirect Branch Control Extension PDF White paper Revision 4 10 18 Advanced Micro Devices Inc AMD 2018 Archived PDF from the original on 2018 05 09 Retrieved 2018 05 09 External links editIntel Processor Identification and the CPUID Instruction Application Note 485 last published version Said to be incorporated into the Intel 64 and IA 32 Architectures Software Developer s Manual in 2013 but as of July 2014 update the manual still directs the reader to note 485 Contains some information that can be and was easily misinterpreted though particularly with respect to processor topology identification The big Intel manuals tend to lag behind the Intel ISA document available at the top of this page which is updated even for processors not yet publicly available and thus usually contains more CPUID bits For example as of this writing the ISA book at revision 19 dated May 2014 documents the CLFLUSHOPT bit in leaf 7 but the big manuals although apparently more up to date at revision 51 dated June 2014 don t mention it AMD64 Architecture Programmer s Manual Volume 3 General Purpose and System Instructions cpuid command line program for Linux cpuprint com cpuprint exe cpuprint raw command line programs for Windows instlatx64 collection of x86 x64 Instruction Latency Memory Latency and CPUID dumps Retrieved from https en wikipedia org w index php title CPUID amp oldid 1189382733 STIBP, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.