]> CyberLeo.Net >> Repos - FreeBSD/releng/10.3.git/blob - secure/lib/libcrypto/opensslconf-x86.h
- Copy stable/10@296371 to releng/10.3 in preparation for 10.3-RC1
[FreeBSD/releng/10.3.git] / secure / lib / libcrypto / opensslconf-x86.h
1 /* $FreeBSD$ */
2 /* opensslconf.h */
3 /* WARNING: Generated automatically from opensslconf.h.in by Configure. */
4
5 #ifdef  __cplusplus
6 extern "C" {
7 #endif
8 /* OpenSSL was configured with the following options: */
9 #ifndef OPENSSL_DOING_MAKEDEPEND
10
11
12 #ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
13 # define OPENSSL_NO_EC_NISTP_64_GCC_128
14 #endif
15 #ifndef OPENSSL_NO_GMP
16 # define OPENSSL_NO_GMP
17 #endif
18 #ifndef OPENSSL_NO_JPAKE
19 # define OPENSSL_NO_JPAKE
20 #endif
21 #ifndef OPENSSL_NO_KRB5
22 # define OPENSSL_NO_KRB5
23 #endif
24 #ifndef OPENSSL_NO_MD2
25 # define OPENSSL_NO_MD2
26 #endif
27 #ifndef OPENSSL_NO_SCTP
28 # define OPENSSL_NO_SCTP
29 #endif
30 #ifndef OPENSSL_NO_STORE
31 # define OPENSSL_NO_STORE
32 #endif
33 #ifndef OPENSSL_NO_UNIT_TEST
34 # define OPENSSL_NO_UNIT_TEST
35 #endif
36 #ifndef OPENSSL_NO_WEAK_SSL_CIPHERS
37 # define OPENSSL_NO_WEAK_SSL_CIPHERS
38 #endif
39
40 #endif /* OPENSSL_DOING_MAKEDEPEND */
41
42 #ifndef OPENSSL_THREADS
43 # define OPENSSL_THREADS
44 #endif
45 #ifndef OPENSSL_NO_STATIC_ENGINE
46 # define OPENSSL_NO_STATIC_ENGINE
47 #endif
48
49 /* The OPENSSL_NO_* macros are also defined as NO_* if the application
50    asks for it.  This is a transient feature that is provided for those
51    who haven't had the time to do the appropriate changes in their
52    applications.  */
53 #ifdef OPENSSL_ALGORITHM_DEFINES
54 # if defined(OPENSSL_NO_EC_NISTP_64_GCC_128) && !defined(NO_EC_NISTP_64_GCC_128)
55 #  define NO_EC_NISTP_64_GCC_128
56 # endif
57 # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
58 #  define NO_GMP
59 # endif
60 # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE)
61 #  define NO_JPAKE
62 # endif
63 # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
64 #  define NO_KRB5
65 # endif
66 # if defined(OPENSSL_NO_MD2) && !defined(NO_MD2)
67 #  define NO_MD2
68 # endif
69 # if defined(OPENSSL_NO_SCTP) && !defined(NO_SCTP)
70 #  define NO_SCTP
71 # endif
72 # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
73 #  define NO_STORE
74 # endif
75 # if defined(OPENSSL_NO_UNIT_TEST) && !defined(NO_UNIT_TEST)
76 #  define NO_UNIT_TEST
77 # endif
78 # if defined(OPENSSL_NO_WEAK_SSL_CIPHERS) && !defined(NO_WEAK_SSL_CIPHERS)
79 #  define NO_WEAK_SSL_CIPHERS
80 # endif
81 #endif
82
83 #define OPENSSL_CPUID_OBJ
84
85 /* crypto/opensslconf.h.in */
86
87 /* Generate 80386 code? */
88 #undef I386_ONLY
89
90 #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */
91 #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR)
92 #define ENGINESDIR "/usr/lib/engines"
93 #define OPENSSLDIR "/etc/ssl"
94 #endif
95 #endif
96
97 #undef OPENSSL_UNISTD
98 #define OPENSSL_UNISTD <unistd.h>
99
100 #undef OPENSSL_EXPORT_VAR_AS_FUNCTION
101
102 #if defined(HEADER_IDEA_H) && !defined(IDEA_INT)
103 #define IDEA_INT unsigned int
104 #endif
105
106 #if defined(HEADER_MD2_H) && !defined(MD2_INT)
107 #define MD2_INT unsigned int
108 #endif
109
110 #if defined(HEADER_RC2_H) && !defined(RC2_INT)
111 /* I need to put in a mod for the alpha - eay */
112 #define RC2_INT unsigned int
113 #endif
114
115 #if defined(HEADER_RC4_H)
116 #if !defined(RC4_INT)
117 /* using int types make the structure larger but make the code faster
118  * on most boxes I have tested - up to %20 faster. */
119 /*
120  * I don't know what does "most" mean, but declaring "int" is a must on:
121  * - Intel P6 because partial register stalls are very expensive;
122  * - elder Alpha because it lacks byte load/store instructions;
123  */
124 #define RC4_INT unsigned int
125 #endif
126 #if !defined(RC4_CHUNK)
127 /*
128  * This enables code handling data aligned at natural CPU word
129  * boundary. See crypto/rc4/rc4_enc.c for further details.
130  */
131 #ifdef __LP64__
132 #define RC4_CHUNK unsigned long
133 #else
134 #undef RC4_CHUNK
135 #endif
136 #endif
137 #endif
138
139 #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG)
140 /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a
141  * %20 speed up (longs are 8 bytes, int's are 4). */
142 #ifndef DES_LONG
143 #ifdef __LP64__
144 #define DES_LONG unsigned int
145 #else
146 #define DES_LONG unsigned long
147 #endif
148 #endif
149 #endif
150
151 #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H)
152 #define CONFIG_HEADER_BN_H
153 #ifdef __LP64__
154 #undef BN_LLONG
155 #else
156 #define BN_LLONG
157 #endif
158
159 /* Should we define BN_DIV2W here? */
160
161 /* Only one for the following should be defined */
162 #ifdef __LP64__
163 #define SIXTY_FOUR_BIT_LONG
164 #undef SIXTY_FOUR_BIT
165 #undef THIRTY_TWO_BIT
166 #else
167 #undef SIXTY_FOUR_BIT_LONG
168 #undef SIXTY_FOUR_BIT
169 #define THIRTY_TWO_BIT
170 #endif
171 #endif
172
173 #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H)
174 #define CONFIG_HEADER_RC4_LOCL_H
175 /* if this is defined data[i] is used instead of *data, this is a %20
176  * speedup on x86 */
177 #ifdef __LP64__
178 #undef RC4_INDEX
179 #else
180 #define RC4_INDEX
181 #endif
182 #endif
183
184 #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H)
185 #define CONFIG_HEADER_BF_LOCL_H
186 #undef BF_PTR
187 #endif /* HEADER_BF_LOCL_H */
188
189 #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H)
190 #define CONFIG_HEADER_DES_LOCL_H
191 #ifndef DES_DEFAULT_OPTIONS
192 /* the following is tweaked from a config script, that is why it is a
193  * protected undef/define */
194 #ifndef DES_PTR
195 #ifdef __LP64__
196 #undef DES_PTR
197 #else
198 #define DES_PTR
199 #endif
200 #endif
201
202 /* This helps C compiler generate the correct code for multiple functional
203  * units.  It reduces register dependancies at the expense of 2 more
204  * registers */
205 #ifndef DES_RISC1
206 #ifdef __LP64__
207 #undef DES_RISC1
208 #else
209 #define DES_RISC1
210 #endif
211 #endif
212
213 #ifndef DES_RISC2
214 #undef DES_RISC2
215 #endif
216
217 #if defined(DES_RISC1) && defined(DES_RISC2)
218 YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!!
219 #endif
220
221 /* Unroll the inner loop, this sometimes helps, sometimes hinders.
222  * Very mucy CPU dependant */
223 #ifndef DES_UNROLL
224 #define DES_UNROLL
225 #endif
226
227 /* These default values were supplied by
228  * Peter Gutman <pgut001@cs.auckland.ac.nz>
229  * They are only used if nothing else has been defined */
230 #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL)
231 /* Special defines which change the way the code is built depending on the
232    CPU and OS.  For SGI machines you can use _MIPS_SZLONG (32 or 64) to find
233    even newer MIPS CPU's, but at the moment one size fits all for
234    optimization options.  Older Sparc's work better with only UNROLL, but
235    there's no way to tell at compile time what it is you're running on */
236  
237 #if defined( sun )              /* Newer Sparc's */
238 #  define DES_PTR
239 #  define DES_RISC1
240 #  define DES_UNROLL
241 #elif defined( __ultrix )       /* Older MIPS */
242 #  define DES_PTR
243 #  define DES_RISC2
244 #  define DES_UNROLL
245 #elif defined( __osf1__ )       /* Alpha */
246 #  define DES_PTR
247 #  define DES_RISC2
248 #elif defined ( _AIX )          /* RS6000 */
249   /* Unknown */
250 #elif defined( __hpux )         /* HP-PA */
251   /* Unknown */
252 #elif defined( __aux )          /* 68K */
253   /* Unknown */
254 #elif defined( __dgux )         /* 88K (but P6 in latest boxes) */
255 #  define DES_UNROLL
256 #elif defined( __sgi )          /* Newer MIPS */
257 #  define DES_PTR
258 #  define DES_RISC2
259 #  define DES_UNROLL
260 #elif defined(i386) || defined(__i386__)        /* x86 boxes, should be gcc */
261 #  define DES_PTR
262 #  define DES_RISC1
263 #  define DES_UNROLL
264 #endif /* Systems-specific speed defines */
265 #endif
266
267 #endif /* DES_DEFAULT_OPTIONS */
268 #endif /* HEADER_DES_LOCL_H */
269 #ifdef  __cplusplus
270 }
271 #endif