]>
Commit | Line | Data |
---|---|---|
c5c76735 JL |
1 | /* Get common system includes and various definitions and declarations based |
2 | on autoconf macros. | |
d6edb99e | 3 | Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. |
aca69483 | 4 | |
1322177d | 5 | This file is part of GCC. |
1b0c6de6 | 6 | |
1322177d LB |
7 | GCC is free software; you can redistribute it and/or modify it under |
8 | the terms of the GNU General Public License as published by the Free | |
9 | Software Foundation; either version 2, or (at your option) any later | |
10 | version. | |
1b0c6de6 | 11 | |
1322177d LB |
12 | GCC is distributed in the hope that it will be useful, but WITHOUT ANY |
13 | WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 | for more details. | |
1b0c6de6 JL |
16 | |
17 | You should have received a copy of the GNU General Public License | |
1322177d LB |
18 | along with GCC; see the file COPYING. If not, write to the Free |
19 | Software Foundation, 59 Temple Place - Suite 330, Boston, MA | |
20 | 02111-1307, USA. */ | |
aca69483 | 21 | |
c5c76735 | 22 | |
88657302 RH |
23 | #ifndef GCC_SYSTEM_H |
24 | #define GCC_SYSTEM_H | |
aca69483 | 25 | |
8b97e23b ML |
26 | /* This is the location of the online document giving information how |
27 | to report bugs. If you change this string, also check for strings | |
28 | not under control of the preprocessor. */ | |
29 | #define GCCBUGURL "<URL:http://www.gnu.org/software/gcc/bugs.html>" | |
30 | ||
2ba84f36 | 31 | /* We must include stdarg.h/varargs.h before stdio.h. */ |
5148a72b | 32 | #ifdef ANSI_PROTOTYPES |
789f983a KG |
33 | #include <stdarg.h> |
34 | #else | |
35 | #include <varargs.h> | |
36 | #endif | |
37 | ||
6f81b1ad RH |
38 | #ifndef va_copy |
39 | # ifdef __va_copy | |
40 | # define va_copy(d,s) __va_copy((d),(s)) | |
41 | # else | |
42 | # define va_copy(d,s) ((d) = (s)) | |
43 | # endif | |
44 | #endif | |
45 | ||
d6edb99e ZW |
46 | #ifdef HAVE_STDDEF_H |
47 | # include <stddef.h> | |
48 | #endif | |
49 | ||
aca69483 | 50 | #include <stdio.h> |
51db713f KG |
51 | |
52 | /* Define a generic NULL if one hasn't already been defined. */ | |
53 | #ifndef NULL | |
54 | #define NULL 0 | |
55 | #endif | |
56 | ||
54953b66 | 57 | /* The compiler is not a multi-threaded application and therefore we |
3b681e9d ZW |
58 | do not have to use the locking functions. In fact, using the locking |
59 | functions can cause the compiler to be significantly slower under | |
60 | I/O bound conditions (such as -g -O0 on very large source files). | |
9c30c0e7 | 61 | |
3b681e9d | 62 | HAVE_DECL_PUTC_UNLOCKED actually indicates whether or not the stdio |
f31e826b KG |
63 | code is multi-thread safe by default. If it is set to 0, then do |
64 | not worry about using the _unlocked functions. | |
9c30c0e7 | 65 | |
3b681e9d ZW |
66 | fputs_unlocked, fwrite_unlocked, and fprintf_unlocked are |
67 | extensions and need to be prototyped by hand (since we do not | |
68 | define _GNU_SOURCE). */ | |
9c30c0e7 | 69 | |
3b681e9d ZW |
70 | #if defined HAVE_DECL_PUTC_UNLOCKED && HAVE_DECL_PUTC_UNLOCKED |
71 | ||
72 | # ifdef HAVE_PUTC_UNLOCKED | |
73 | # undef putc | |
74 | # define putc(C, Stream) putc_unlocked (C, Stream) | |
75 | # endif | |
76 | # ifdef HAVE_FPUTC_UNLOCKED | |
77 | # undef fputc | |
78 | # define fputc(C, Stream) fputc_unlocked (C, Stream) | |
79 | # endif | |
80 | ||
81 | # ifdef HAVE_FPUTS_UNLOCKED | |
82 | # undef fputs | |
83 | # define fputs(String, Stream) fputs_unlocked (String, Stream) | |
84 | # if defined (HAVE_DECL_FPUTS_UNLOCKED) && !HAVE_DECL_FPUTS_UNLOCKED | |
cdadb1dd | 85 | extern int fputs_unlocked PARAMS ((const char *, FILE *)); |
3b681e9d ZW |
86 | # endif |
87 | # endif | |
88 | # ifdef HAVE_FWRITE_UNLOCKED | |
89 | # undef fwrite | |
90 | # define fwrite(Ptr, Size, N, Stream) fwrite_unlocked (Ptr, Size, N, Stream) | |
91 | # if defined (HAVE_DECL_FWRITE_UNLOCKED) && !HAVE_DECL_FWRITE_UNLOCKED | |
92 | extern int fwrite_unlocked PARAMS ((const PTR, size_t, size_t, FILE *)); | |
93 | # endif | |
9c30c0e7 | 94 | # endif |
3b681e9d ZW |
95 | # ifdef HAVE_FPRINTF_UNLOCKED |
96 | # undef fprintf | |
97 | /* We can't use a function-like macro here because we don't know if | |
98 | we have varargs macros. */ | |
99 | # define fprintf fprintf_unlocked | |
100 | # if defined (HAVE_DECL_FPRINTF_UNLOCKED) && !HAVE_DECL_FPRINTF_UNLOCKED | |
101 | extern int fprintf_unlocked PARAMS ((FILE *, const char *, ...)); | |
102 | # endif | |
103 | # endif | |
104 | ||
54953b66 UD |
105 | #endif |
106 | ||
f6bbde28 ZW |
107 | /* There are an extraordinary number of issues with <ctype.h>. |
108 | The last straw is that it varies with the locale. Use libiberty's | |
109 | replacement instead. */ | |
110 | #include <safe-ctype.h> | |
aca69483 | 111 | |
aca69483 | 112 | #include <sys/types.h> |
c5c76735 | 113 | |
aca69483 KG |
114 | #include <errno.h> |
115 | ||
6c889b67 | 116 | #if !defined (errno) && defined (HAVE_DECL_ERRNO) && !HAVE_DECL_ERRNO |
aca69483 KG |
117 | extern int errno; |
118 | #endif | |
119 | ||
ccc7d11a | 120 | #ifdef STRING_WITH_STRINGS |
aca69483 | 121 | # include <string.h> |
ccc7d11a | 122 | # include <strings.h> |
aca69483 | 123 | #else |
ccc7d11a KG |
124 | # ifdef HAVE_STRING_H |
125 | # include <string.h> | |
126 | # else | |
127 | # ifdef HAVE_STRINGS_H | |
128 | # include <strings.h> | |
129 | # endif | |
aca69483 KG |
130 | # endif |
131 | #endif | |
132 | ||
133 | #ifdef HAVE_STDLIB_H | |
134 | # include <stdlib.h> | |
135 | #endif | |
136 | ||
eaf4e618 ZW |
137 | /* If we don't have an overriding definition, set SUCCESS_EXIT_CODE and |
138 | FATAL_EXIT_CODE to EXIT_SUCCESS and EXIT_FAILURE respectively, | |
139 | or 0 and 1 if those macros are not defined. */ | |
140 | #ifndef SUCCESS_EXIT_CODE | |
141 | # ifdef EXIT_SUCCESS | |
142 | # define SUCCESS_EXIT_CODE EXIT_SUCCESS | |
143 | # else | |
144 | # define SUCCESS_EXIT_CODE 0 | |
145 | # endif | |
146 | #endif | |
147 | ||
148 | #ifndef FATAL_EXIT_CODE | |
149 | # ifdef EXIT_FAILURE | |
150 | # define FATAL_EXIT_CODE EXIT_FAILURE | |
151 | # else | |
152 | # define FATAL_EXIT_CODE 1 | |
153 | # endif | |
154 | #endif | |
155 | ||
aca69483 KG |
156 | #ifdef HAVE_UNISTD_H |
157 | # include <unistd.h> | |
158 | #endif | |
159 | ||
160 | #ifdef HAVE_SYS_PARAM_H | |
161 | # include <sys/param.h> | |
23d1aac4 | 162 | /* We use this identifier later and it appears in some vendor param.h's. */ |
655781b7 | 163 | # undef PREFETCH |
aca69483 KG |
164 | #endif |
165 | ||
166 | #if HAVE_LIMITS_H | |
167 | # include <limits.h> | |
168 | #endif | |
169 | ||
75e93faa ZW |
170 | /* Get definitions of HOST_WIDE_INT and HOST_WIDEST_INT. */ |
171 | #include "hwint.h" | |
f80d6fd7 | 172 | |
5297e085 KG |
173 | /* A macro to determine whether a VALUE lies inclusively within a |
174 | certain range without evaluating the VALUE more than once. This | |
175 | macro won't warn if the VALUE is unsigned and the LOWER bound is | |
176 | zero, as it would e.g. with "VALUE >= 0 && ...". Note the LOWER | |
177 | bound *is* evaluated twice, and LOWER must not be greater than | |
178 | UPPER. However the bounds themselves can be either positive or | |
179 | negative. */ | |
180 | #define IN_RANGE(VALUE, LOWER, UPPER) \ | |
181 | ((unsigned HOST_WIDE_INT)((VALUE) - (LOWER)) <= ((UPPER) - (LOWER))) | |
182 | ||
f12bc141 ZW |
183 | /* Infrastructure for defining missing _MAX and _MIN macros. Note that |
184 | macros defined with these cannot be used in #if. */ | |
185 | ||
186 | /* The extra casts work around common compiler bugs. */ | |
187 | #define INTTYPE_SIGNED(t) (! ((t) 0 < (t) -1)) | |
188 | /* The outer cast is needed to work around a bug in Cray C 5.0.3.0. | |
189 | It is necessary at least when t == time_t. */ | |
190 | #define INTTYPE_MINIMUM(t) ((t) (INTTYPE_SIGNED (t) \ | |
191 | ? ~ (t) 0 << (sizeof(t) * CHAR_BIT - 1) : (t) 0)) | |
192 | #define INTTYPE_MAXIMUM(t) ((t) (~ (t) 0 - INTTYPE_MINIMUM (t))) | |
193 | ||
194 | /* Use that infrastructure to provide a few constants. */ | |
195 | #ifndef UCHAR_MAX | |
196 | # define UCHAR_MAX INTTYPE_MAXIMUM (unsigned char) | |
197 | #endif | |
198 | ||
aca69483 KG |
199 | #ifdef TIME_WITH_SYS_TIME |
200 | # include <sys/time.h> | |
201 | # include <time.h> | |
202 | #else | |
203 | # if HAVE_SYS_TIME_H | |
e572c0c6 | 204 | # include <sys/time.h> |
aca69483 | 205 | # else |
e572c0c6 KG |
206 | # ifdef HAVE_TIME_H |
207 | # include <time.h> | |
208 | # endif | |
209 | # endif | |
aca69483 KG |
210 | #endif |
211 | ||
212 | #ifdef HAVE_FCNTL_H | |
213 | # include <fcntl.h> | |
214 | #else | |
e572c0c6 KG |
215 | # ifdef HAVE_SYS_FILE_H |
216 | # include <sys/file.h> | |
217 | # endif | |
aca69483 KG |
218 | #endif |
219 | ||
220 | #ifndef SEEK_SET | |
221 | # define SEEK_SET 0 | |
222 | # define SEEK_CUR 1 | |
223 | # define SEEK_END 2 | |
224 | #endif | |
225 | #ifndef F_OK | |
226 | # define F_OK 0 | |
227 | # define X_OK 1 | |
228 | # define W_OK 2 | |
229 | # define R_OK 4 | |
230 | #endif | |
e572c0c6 KG |
231 | #ifndef O_RDONLY |
232 | # define O_RDONLY 0 | |
233 | #endif | |
234 | #ifndef O_WRONLY | |
235 | # define O_WRONLY 1 | |
236 | #endif | |
aca69483 | 237 | |
36b8337d KG |
238 | /* Some systems define these in, e.g., param.h. We undefine these names |
239 | here to avoid the warnings. We prefer to use our definitions since we | |
240 | know they are correct. */ | |
241 | ||
242 | #undef MIN | |
243 | #undef MAX | |
244 | #define MIN(X,Y) ((X) < (Y) ? (X) : (Y)) | |
245 | #define MAX(X,Y) ((X) > (Y) ? (X) : (Y)) | |
246 | ||
13799af3 MM |
247 | /* Returns the least number N such that N * Y >= X. */ |
248 | #define CEIL(x,y) (((x) + (y) - 1) / (y)) | |
249 | ||
e9831ca0 KG |
250 | #ifdef HAVE_SYS_WAIT_H |
251 | #include <sys/wait.h> | |
252 | #endif | |
253 | ||
254 | #ifndef WIFSIGNALED | |
255 | #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f) | |
256 | #endif | |
257 | #ifndef WTERMSIG | |
258 | #define WTERMSIG(S) ((S) & 0x7f) | |
259 | #endif | |
260 | #ifndef WIFEXITED | |
261 | #define WIFEXITED(S) (((S) & 0xff) == 0) | |
262 | #endif | |
263 | #ifndef WEXITSTATUS | |
264 | #define WEXITSTATUS(S) (((S) & 0xff00) >> 8) | |
265 | #endif | |
8fa213ac PDM |
266 | #ifndef WSTOPSIG |
267 | #define WSTOPSIG WEXITSTATUS | |
268 | #endif | |
e9831ca0 | 269 | |
f31e826b KG |
270 | /* The HAVE_DECL_* macros are three-state, undefined, 0 or 1. If they |
271 | are defined to 0 then we must provide the relevant declaration | |
272 | here. These checks will be in the undefined state while configure | |
273 | is running so be careful to test "defined (HAVE_DECL_*)". */ | |
aca69483 | 274 | |
f31e826b | 275 | #if defined (HAVE_DECL_ATOF) && !HAVE_DECL_ATOF |
d4d4ae5f | 276 | extern double atof PARAMS ((const char *)); |
8f81384f KG |
277 | #endif |
278 | ||
f31e826b | 279 | #if defined (HAVE_DECL_ATOL) && !HAVE_DECL_ATOL |
d4d4ae5f | 280 | extern long atol PARAMS ((const char *)); |
8f81384f KG |
281 | #endif |
282 | ||
f31e826b | 283 | #if defined (HAVE_DECL_FREE) && !HAVE_DECL_FREE |
d4d4ae5f | 284 | extern void free PARAMS ((PTR)); |
aca69483 KG |
285 | #endif |
286 | ||
f31e826b | 287 | #if defined (HAVE_DECL_GETCWD) && !HAVE_DECL_GETCWD |
d4d4ae5f | 288 | extern char *getcwd PARAMS ((char *, size_t)); |
6cd5dccd KG |
289 | #endif |
290 | ||
f31e826b | 291 | #if defined (HAVE_DECL_GETENV) && !HAVE_DECL_GETENV |
d4d4ae5f | 292 | extern char *getenv PARAMS ((const char *)); |
79e11844 KG |
293 | #endif |
294 | ||
ebb13e7e | 295 | #if defined (HAVE_DECL_GETOPT) && !HAVE_DECL_GETOPT |
fc608b03 | 296 | extern int getopt PARAMS ((int, char * const *, const char *)); |
ebb13e7e RK |
297 | #endif |
298 | ||
f31e826b | 299 | #if defined (HAVE_DECL_GETWD) && !HAVE_DECL_GETWD |
d4d4ae5f | 300 | extern char *getwd PARAMS ((char *)); |
6cd5dccd KG |
301 | #endif |
302 | ||
f31e826b | 303 | #if defined (HAVE_DECL_SBRK) && !HAVE_DECL_SBRK |
d4d4ae5f | 304 | extern PTR sbrk PARAMS ((int)); |
8f81384f KG |
305 | #endif |
306 | ||
f31e826b | 307 | #if defined (HAVE_DECL_STRSTR) && !HAVE_DECL_STRSTR |
d4d4ae5f | 308 | extern char *strstr PARAMS ((const char *, const char *)); |
d3d5cc97 JL |
309 | #endif |
310 | ||
c5c76735 JL |
311 | #ifdef HAVE_MALLOC_H |
312 | #include <malloc.h> | |
313 | #endif | |
314 | ||
f31e826b | 315 | #if defined (HAVE_DECL_MALLOC) && !HAVE_DECL_MALLOC |
d4d4ae5f | 316 | extern PTR malloc PARAMS ((size_t)); |
c5c76735 JL |
317 | #endif |
318 | ||
f31e826b | 319 | #if defined (HAVE_DECL_CALLOC) && !HAVE_DECL_CALLOC |
d4d4ae5f | 320 | extern PTR calloc PARAMS ((size_t, size_t)); |
c5c76735 JL |
321 | #endif |
322 | ||
f31e826b | 323 | #if defined (HAVE_DECL_REALLOC) && !HAVE_DECL_REALLOC |
d4d4ae5f | 324 | extern PTR realloc PARAMS ((PTR, size_t)); |
c5c76735 JL |
325 | #endif |
326 | ||
759af044 | 327 | /* If the system doesn't provide strsignal, we get it defined in |
2ba84f36 | 328 | libiberty but no declaration is supplied. */ |
317639a8 | 329 | #ifndef HAVE_STRSIGNAL |
759af044 KG |
330 | # ifndef strsignal |
331 | extern const char *strsignal PARAMS ((int)); | |
007e8d2a | 332 | # endif |
759af044 | 333 | #endif |
007e8d2a | 334 | |
d2cabf16 | 335 | #ifdef HAVE_GETRLIMIT |
f31e826b | 336 | # if defined (HAVE_DECL_GETRLIMIT) && !HAVE_DECL_GETRLIMIT |
d2cabf16 | 337 | # ifndef getrlimit |
d4d4ae5f KG |
338 | # ifdef ANSI_PROTOTYPES |
339 | struct rlimit; | |
340 | # endif | |
341 | extern int getrlimit PARAMS ((int, struct rlimit *)); | |
d2cabf16 KG |
342 | # endif |
343 | # endif | |
344 | #endif | |
345 | ||
346 | #ifdef HAVE_SETRLIMIT | |
f31e826b | 347 | # if defined (HAVE_DECL_SETRLIMIT) && !HAVE_DECL_SETRLIMIT |
d2cabf16 | 348 | # ifndef setrlimit |
d4d4ae5f KG |
349 | # ifdef ANSI_PROTOTYPES |
350 | struct rlimit; | |
351 | # endif | |
352 | extern int setrlimit PARAMS ((int, const struct rlimit *)); | |
d2cabf16 KG |
353 | # endif |
354 | # endif | |
355 | #endif | |
356 | ||
e9b4fabf | 357 | /* HAVE_VOLATILE only refers to the stage1 compiler. We also check |
2ba84f36 | 358 | __STDC__ and assume gcc sets it and has volatile in stage >=2. */ |
e9b4fabf JL |
359 | #if !defined(HAVE_VOLATILE) && !defined(__STDC__) && !defined(volatile) |
360 | #define volatile | |
361 | #endif | |
362 | ||
f31e826b | 363 | #if defined (HAVE_DECL_ABORT) && !HAVE_DECL_ABORT |
d4d4ae5f | 364 | extern void abort PARAMS ((void)); |
2a611d21 | 365 | #endif |
d4ba0ead | 366 | |
61d0346d | 367 | /* 1 if we have C99 designated initializers. */ |
18922061 | 368 | #if !defined(HAVE_DESIGNATED_INITIALIZERS) |
61d0346d NB |
369 | #define HAVE_DESIGNATED_INITIALIZERS \ |
370 | ((GCC_VERSION >= 2007) || (__STDC_VERSION__ >= 199901L)) | |
18922061 | 371 | #endif |
61d0346d | 372 | |
d6edb99e ZW |
373 | /* 1 if we have _Bool. */ |
374 | #ifndef HAVE__BOOL | |
375 | # define HAVE__BOOL \ | |
376 | ((GCC_VERSION >= 3000) || (__STDC_VERSION__ >= 199901L)) | |
377 | #endif | |
378 | ||
379 | ||
a05e22b8 RH |
380 | #if HAVE_SYS_STAT_H |
381 | # include <sys/stat.h> | |
382 | #endif | |
9855b854 MN |
383 | |
384 | /* Test if something is a normal file. */ | |
385 | #ifndef S_ISREG | |
386 | #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) | |
387 | #endif | |
388 | ||
389 | /* Test if something is a directory. */ | |
390 | #ifndef S_ISDIR | |
391 | #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) | |
392 | #endif | |
393 | ||
6458033d ZW |
394 | /* Test if something is a character special file. */ |
395 | #ifndef S_ISCHR | |
396 | #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) | |
397 | #endif | |
398 | ||
be3dad6f PDM |
399 | /* Test if something is a block special file. */ |
400 | #ifndef S_ISBLK | |
401 | #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) | |
402 | #endif | |
403 | ||
6458033d ZW |
404 | /* Test if something is a socket. */ |
405 | #ifndef S_ISSOCK | |
406 | # ifdef S_IFSOCK | |
407 | # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) | |
408 | # else | |
409 | # define S_ISSOCK(m) 0 | |
410 | # endif | |
411 | #endif | |
412 | ||
413 | /* Test if something is a FIFO. */ | |
414 | #ifndef S_ISFIFO | |
415 | # ifdef S_IFIFO | |
416 | # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) | |
417 | # else | |
418 | # define S_ISFIFO(m) 0 | |
419 | # endif | |
420 | #endif | |
421 | ||
422 | /* Approximate O_NONBLOCK. */ | |
423 | #ifndef O_NONBLOCK | |
424 | #define O_NONBLOCK O_NDELAY | |
425 | #endif | |
426 | ||
427 | /* Approximate O_NOCTTY. */ | |
428 | #ifndef O_NOCTTY | |
429 | #define O_NOCTTY 0 | |
430 | #endif | |
431 | ||
f3692274 ME |
432 | /* Define well known filenos if the system does not define them. */ |
433 | #ifndef STDIN_FILENO | |
434 | # define STDIN_FILENO 0 | |
435 | #endif | |
436 | #ifndef STDOUT_FILENO | |
437 | # define STDOUT_FILENO 1 | |
438 | #endif | |
924d8a7c | 439 | #ifndef STDERR_FILENO |
f3692274 ME |
440 | # define STDERR_FILENO 2 |
441 | #endif | |
442 | ||
2ba84f36 | 443 | /* Some systems have mkdir that takes a single argument. */ |
75923b2f MK |
444 | #ifdef MKDIR_TAKES_ONE_ARG |
445 | # define mkdir(a,b) mkdir(a) | |
446 | #endif | |
447 | ||
1eb14644 KG |
448 | /* Provide a way to print an address via printf. */ |
449 | #ifndef HOST_PTR_PRINTF | |
450 | # ifdef HAVE_PRINTF_PTR | |
451 | # define HOST_PTR_PRINTF "%p" | |
452 | # else | |
453 | # define HOST_PTR_PRINTF \ | |
454 | (sizeof (int) == sizeof (char *) ? "%x" \ | |
455 | : sizeof (long) == sizeof (char *) ? "%lx" : "%llx") | |
456 | # endif | |
457 | #endif /* ! HOST_PTR_PRINTF */ | |
458 | ||
d5b6516d MK |
459 | /* By default, colon separates directories in a path. */ |
460 | #ifndef PATH_SEPARATOR | |
461 | #define PATH_SEPARATOR ':' | |
462 | #endif | |
463 | ||
464 | #ifndef DIR_SEPARATOR | |
465 | #define DIR_SEPARATOR '/' | |
466 | #endif | |
467 | ||
468 | /* Define IS_DIR_SEPARATOR. */ | |
469 | #ifndef DIR_SEPARATOR_2 | |
c5c0b3d9 | 470 | # define IS_DIR_SEPARATOR(CH) ((CH) == DIR_SEPARATOR) |
d5b6516d | 471 | #else /* DIR_SEPARATOR_2 */ |
c5c0b3d9 RK |
472 | # define IS_DIR_SEPARATOR(CH) \ |
473 | (((CH) == DIR_SEPARATOR) || ((CH) == DIR_SEPARATOR_2)) | |
d5b6516d MK |
474 | #endif /* DIR_SEPARATOR_2 */ |
475 | ||
c5c0b3d9 RK |
476 | /* Say how to test for an absolute pathname. On Unix systems, this is if |
477 | it starts with a leading slash or a '$', the latter meaning the value of | |
478 | an environment variable is to be used. On machien with DOS-based | |
479 | file systems, it is also absolute if it starts with a drive identifier. */ | |
480 | #ifdef HAVE_DOS_BASED_FILE_SYSTEM | |
481 | #define IS_ABSOLUTE_PATHNAME(STR) \ | |
482 | (IS_DIR_SEPARATOR ((STR)[0]) || (STR)[0] == '$' \ | |
483 | || ((STR)[0] != '\0' && (STR)[1] == ':' && IS_DIR_SEPARATOR ((STR)[2]))) | |
484 | #else | |
485 | #define IS_ABSOLUTE_PATHNAME(STR) \ | |
486 | (IS_DIR_SEPARATOR ((STR)[0]) || (STR)[0] == '$') | |
487 | #endif | |
488 | ||
2ba84f36 | 489 | /* Get libiberty declarations. */ |
2778b98d | 490 | #include "libiberty.h" |
4bc5fbd4 | 491 | #include "symcat.h" |
2778b98d | 492 | |
49009afd JL |
493 | /* Provide a default for the HOST_BIT_BUCKET. |
494 | This suffices for POSIX-like hosts. */ | |
495 | ||
496 | #ifndef HOST_BIT_BUCKET | |
497 | #define HOST_BIT_BUCKET "/dev/null" | |
498 | #endif | |
499 | ||
9612ab65 ZW |
500 | /* Be conservative and only use enum bitfields with GCC. |
501 | FIXME: provide a complete autoconf test for buggy enum bitfields. */ | |
c149cc37 | 502 | |
9612ab65 | 503 | #if (GCC_VERSION > 2000) |
c149cc37 RL |
504 | #define ENUM_BITFIELD(TYPE) enum TYPE |
505 | #else | |
506 | #define ENUM_BITFIELD(TYPE) unsigned int | |
507 | #endif | |
508 | ||
e0125cf3 KG |
509 | #ifndef offsetof |
510 | #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) | |
511 | #endif | |
c149cc37 | 512 | |
7de9cc38 KG |
513 | /* Traditional C cannot initialize union members of structs. Provide |
514 | a macro which expands appropriately to handle it. This only works | |
f63d1bf7 | 515 | if you intend to initialize the union member to zero since it relies |
7de9cc38 KG |
516 | on default initialization to zero in the traditional C case. */ |
517 | #ifdef __STDC__ | |
518 | #define UNION_INIT_ZERO , {0} | |
519 | #else | |
520 | #define UNION_INIT_ZERO | |
521 | #endif | |
522 | ||
fbfc1192 ZW |
523 | /* Various error reporting routines want to use __FUNCTION__. */ |
524 | #if (GCC_VERSION < 2007) | |
791ef777 | 525 | #ifndef __FUNCTION__ |
fbfc1192 | 526 | #define __FUNCTION__ "?" |
791ef777 | 527 | #endif /* ! __FUNCTION__ */ |
fbfc1192 ZW |
528 | #endif |
529 | ||
2c3fcba6 ZW |
530 | /* __builtin_expect(A, B) evaluates to A, but notifies the compiler that |
531 | the most likely value of A is B. This feature was added at some point | |
532 | between 2.95 and 3.0. Let's use 3.0 as the lower bound for now. */ | |
533 | #if (GCC_VERSION < 3000) | |
534 | #define __builtin_expect(a, b) (a) | |
535 | #endif | |
536 | ||
d6edb99e | 537 | /* Provide some sort of boolean type. We use stdbool.h if it's |
2f78c311 ZW |
538 | available. This must be after all inclusion of system headers, |
539 | as some of them will mess us up. */ | |
d6edb99e ZW |
540 | #undef bool |
541 | #undef true | |
542 | #undef false | |
543 | #undef TRUE | |
544 | #undef FALSE | |
545 | ||
546 | #ifdef HAVE_STDBOOL_H | |
547 | # include <stdbool.h> | |
548 | #else | |
549 | # if !HAVE__BOOL | |
550 | typedef char _Bool; | |
551 | # endif | |
552 | # define bool _Bool | |
553 | # define true 1 | |
554 | # define false 0 | |
555 | #endif | |
556 | ||
557 | #define TRUE true | |
558 | #define FALSE false | |
559 | ||
f4ce9d90 KG |
560 | /* As the last action in this file, we poison the identifiers that |
561 | shouldn't be used. Note, luckily gcc-3.0's token-based integrated | |
562 | preprocessor won't trip on poisoned identifiers that arrive from | |
563 | the expansion of macros. E.g. #define strrchr rindex, won't error | |
564 | if rindex is poisoned after this directive is issued and later on | |
565 | strrchr is called. | |
566 | ||
567 | Note: We define bypass macros for the few cases where we really | |
568 | want to use the libc memory allocation routines. Otherwise we | |
569 | insist you use the "x" versions from libiberty. */ | |
570 | ||
571 | #define really_call_malloc malloc | |
572 | #define really_call_calloc calloc | |
573 | #define really_call_realloc realloc | |
574 | ||
575 | #if (GCC_VERSION >= 3000) | |
576 | ||
77b84559 KG |
577 | /* Note autoconf checks for prototype declarations and includes |
578 | system.h while doing so. Only poison these tokens if actually | |
579 | compiling gcc, so that the autoconf declaration tests for malloc | |
580 | etc don't spuriously fail. */ | |
581 | #ifdef IN_GCC | |
8a0e5115 KG |
582 | #undef malloc |
583 | #undef realloc | |
584 | #undef calloc | |
585 | #undef strdup | |
f4ce9d90 | 586 | #pragma GCC poison malloc realloc calloc strdup |
41441dc7 NB |
587 | |
588 | /* Old target macros that have moved to the target hooks structure. */ | |
589 | #pragma GCC poison ASM_OPEN_PAREN ASM_CLOSE_PAREN \ | |
590 | FUNCTION_PROLOGUE FUNCTION_EPILOGUE \ | |
591 | FUNCTION_END_PROLOGUE FUNCTION_BEGIN_EPILOGUE \ | |
592 | DECL_MACHINE_ATTRIBUTES COMP_TYPE_ATTRIBUTES INSERT_ATTRIBUTES \ | |
593 | VALID_MACHINE_DECL_ATTRIBUTE VALID_MACHINE_TYPE_ATTRIBUTE \ | |
594 | SET_DEFAULT_TYPE_ATTRIBUTES SET_DEFAULT_DECL_ATTRIBUTES \ | |
595 | MERGE_MACHINE_TYPE_ATTRIBUTES MERGE_MACHINE_DECL_ATTRIBUTES \ | |
aa6ad1a6 JM |
596 | MD_INIT_BUILTINS MD_EXPAND_BUILTIN ASM_OUTPUT_CONSTRUCTOR \ |
597 | ASM_OUTPUT_DESTRUCTOR | |
598 | ||
599 | /* And other obsolete target macros. */ | |
600 | #pragma GCC poison INT_ASM_OP | |
601 | ||
77b84559 | 602 | #endif /* IN_GCC */ |
f4ce9d90 | 603 | |
8e944909 KG |
604 | /* Note: not all uses of the `index' token (e.g. variable names and |
605 | structure members) have been eliminated. */ | |
606 | #undef bcopy | |
8a0e5115 KG |
607 | #undef bzero |
608 | #undef bcmp | |
609 | #undef rindex | |
8e944909 | 610 | #pragma GCC poison bcopy bzero bcmp rindex |
f4ce9d90 KG |
611 | |
612 | #endif /* GCC >= 3.0 */ | |
613 | ||
88657302 | 614 | #endif /* ! GCC_SYSTEM_H */ |