x86[_64]cpuid.pl: handle new extensions.
[openssl.git] / doc / crypto / OPENSSL_ia32cap.pod
1 =pod
2
3 =head1 NAME
4
5 OPENSSL_ia32cap - the IA-32 processor capabilities vector
6
7 =head1 SYNOPSIS
8
9  unsigned int *OPENSSL_ia32cap_loc(void);
10  #define OPENSSL_ia32cap ((OPENSSL_ia32cap_loc())[0])
11
12 =head1 DESCRIPTION
13
14 Value returned by OPENSSL_ia32cap_loc() is address of a variable
15 containing IA-32 processor capabilities bit vector as it appears in
16 EDX:ECX register pair after executing CPUID instruction with EAX=1
17 input value (see Intel Application Note #241618). Naturally it's
18 meaningful on x86 and x86_64 platforms only. The variable is normally
19 set up automatically upon toolkit initialization, but can be
20 manipulated afterwards to modify crypto library behaviour. For the
21 moment of this writing following bits are significant:
22
23 =item bit #4 denoting presence of Time-Stamp Counter.
24
25 =item bit #19 denoting availability of CLFLUSH instruction;
26
27 =item bit #20, reserved by Intel, is used to choose among RC4 code paths;
28
29 =item bit #23 denoting MMX support;
30
31 =item bit #24, FXSR bit, denoting availability of XMM registers;
32
33 =item bit #25 denoting SSE support;
34
35 =item bit #26 denoting SSE2 support;
36
37 =item bit #28 denoting Hyperthreading, which is used to distiguish
38       cores with shared cache;
39
40 =item bit #30, reserved by Intel, is used to choose among RC4 code
41       paths;
42
43 =item bit #33 denoting availability of PCLMULQDQ instruction;
44
45 =item bit #41 denoting SSSE3, Supplemental SSE3, support;
46
47 =item bit #43 denoting AMD XOP support (forced to zero on Intel);
48
49 =item bit #57 denoting AES-NI instruction set extension;
50
51 =item bit #59, OSXSAVE bit, denoting availability of YMM registers;
52
53 =item bit #60 denoting AVX extension;
54
55 For example, clearing bit #26 at run-time disables high-performance
56 SSE2 code present in the crypto library, while clearing bit #24
57 disables SSE2 code operating on 128-bit XMM register bank. You might
58 have to do the latter if target OpenSSL application is executed on SSE2
59 capable CPU, but under control of OS that does not enable XMM
60 registers. Even though you can manipulate the value programmatically,
61 you most likely will find it more appropriate to set up an environment
62 variable with the same name prior starting target application, e.g. on
63 Intel P4 processor 'env OPENSSL_ia32cap=0x16980010 apps/openssl', to
64 achieve same effect without modifying the application source code.
65 Alternatively you can reconfigure the toolkit with no-sse2 option and
66 recompile.
67
68 Less intuituve is clearing bit #28. The truth is that it's not copied
69 from CPUID output verbatim, but is adjusted to reflect whether or not
70 the data cache is actually shared between logical cores. This in turn
71 affects the decision on whether or not expensive countermeasures
72 against cache-timing attacks are applied, most notably in AES assembler
73 module.