1 /* Get common system includes and various definitions and declarations based
3 Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 #ifndef __GCC_SYSTEM_H__
24 #define __GCC_SYSTEM_H__
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>"
31 /* We must include stdarg.h/varargs.h before stdio.h. */
32 #ifdef ANSI_PROTOTYPES
40 /* Define a generic NULL if one hasn't already been defined. */
45 /* The compiler is not a multi-threaded application and therefore we
46 do not have to use the locking functions.
48 NEED_DECLARATION_PUTC_UNLOCKED actually indicates whether or not
49 the IO code is multi-thread safe by default. If it is not declared,
50 then do not worry about using the _unlocked functions.
52 fputs_unlocked is an extension and needs to be prototyped specially. */
54 #if defined HAVE_PUTC_UNLOCKED && !defined NEED_DECLARATION_PUTC_UNLOCKED
56 # define putc(C, Stream) putc_unlocked (C, Stream)
58 #if defined HAVE_FPUTC_UNLOCKED && !defined NEED_DECLARATION_PUTC_UNLOCKED
60 # define fputc(C, Stream) fputc_unlocked (C, Stream)
62 #if defined HAVE_FPUTS_UNLOCKED && !defined NEED_DECLARATION_PUTC_UNLOCKED
64 # define fputs(String, Stream) fputs_unlocked (String, Stream)
65 # ifdef NEED_DECLARATION_FPUTS_UNLOCKED
66 extern int fputs_unlocked
PARAMS ((const char *, FILE *));
72 /* Jim Meyering writes:
74 "... Some ctype macros are valid only for character codes that
75 isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
76 using /bin/cc or gcc but without giving an ansi option). So, all
77 ctype uses should be through macros like ISPRINT... If
78 STDC_HEADERS is defined, then autoconf has verified that the ctype
79 macros don't need to be guarded with references to isascii. ...
80 Defining isascii to 1 should let any compiler worth its salt
81 eliminate the && through constant folding."
85 "... Furthermore, isupper(c) etc. have an undefined result if c is
86 outside the range -1 <= c <= 255. One is tempted to write isupper(c)
87 with c being of type `char', but this is wrong if c is an 8-bit
88 character >= 128 which gets sign-extended to a negative value.
89 The macro ISUPPER protects against this as well." */
91 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII)) || defined(HOST_EBCDIC)
92 # define IN_CTYPE_DOMAIN(c) 1
94 # define IN_CTYPE_DOMAIN(c) isascii(c)
97 /* The ctype functions are often implemented as macros which do
98 lookups in arrays using the parameter as the offset. If the ctype
99 function parameter is a char, then gcc will (appropriately) warn
100 that a "subscript has type char". Using a (signed) char as a subscript
101 is bad because you may get negative offsets and thus it is not 8-bit
102 safe. The CTYPE_CONV macro ensures that the parameter is cast to an
103 unsigned char when a char is passed in. When an int is passed in, the
104 parameter is left alone so we don't lose EOF.
107 #define CTYPE_CONV(CH) \
108 (sizeof(CH) == sizeof(unsigned char) ? (int)(unsigned char)(CH) : (int)(CH))
111 /* WARNING! The argument to the ctype replacement macros below is
112 evaluated more than once so it must not have side effects! */
115 # define ISBLANK(c) (IN_CTYPE_DOMAIN (c) && isblank (CTYPE_CONV(c)))
117 # define ISBLANK(c) ((c) == ' ' || (c) == '\t')
120 # define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isgraph (CTYPE_CONV(c)))
122 # define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isprint (CTYPE_CONV(c)) && !isspace (CTYPE_CONV(c)))
125 #define ISPRINT(c) (IN_CTYPE_DOMAIN (c) && isprint (CTYPE_CONV(c)))
126 #define ISALNUM(c) (IN_CTYPE_DOMAIN (c) && isalnum (CTYPE_CONV(c)))
127 #define ISALPHA(c) (IN_CTYPE_DOMAIN (c) && isalpha (CTYPE_CONV(c)))
128 #define ISCNTRL(c) (IN_CTYPE_DOMAIN (c) && iscntrl (CTYPE_CONV(c)))
129 #define ISLOWER(c) (IN_CTYPE_DOMAIN (c) && islower (CTYPE_CONV(c)))
130 #define ISPUNCT(c) (IN_CTYPE_DOMAIN (c) && ispunct (CTYPE_CONV(c)))
131 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (CTYPE_CONV(c)))
132 #define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (CTYPE_CONV(c)))
133 #define ISXDIGIT(c) (IN_CTYPE_DOMAIN (c) && isxdigit (CTYPE_CONV(c)))
134 #define ISDIGIT_LOCALE(c) (IN_CTYPE_DOMAIN (c) && isdigit (CTYPE_CONV(c)))
137 # define TOLOWER(c) (tolower (CTYPE_CONV(c)))
138 # define TOUPPER(c) (toupper (CTYPE_CONV(c)))
140 # define TOLOWER(c) (ISUPPER (c) ? tolower (CTYPE_CONV(c)) : (c))
141 # define TOUPPER(c) (ISLOWER (c) ? toupper (CTYPE_CONV(c)) : (c))
144 /* ISDIGIT differs from ISDIGIT_LOCALE, as follows:
145 - Its arg may be any int or unsigned int; it need not be an unsigned char.
146 - It's guaranteed to evaluate its argument exactly once.
147 - It's typically faster.
148 Posix 1003.2-1992 section 2.5.2.1 page 50 lines 1556-1558 says that
149 only '0' through '9' are digits. Prefer ISDIGIT to ISDIGIT_LOCALE unless
150 it's important to use the locale's definition of `digit' even when the
151 host does not conform to Posix. */
152 #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
154 /* Define a default escape character; its different for EBCDIC. */
156 #define TARGET_ESC 033
159 #ifdef HAVE_SYS_TYPES_H
160 #include <sys/types.h>
169 #ifdef STRING_WITH_STRINGS
171 # include <strings.h>
173 # ifdef HAVE_STRING_H
176 # ifdef HAVE_STRINGS_H
177 # include <strings.h>
185 /* Note that systems that use glibc have a <stdlib.h> that includes
186 <alloca.h> that defines alloca, so let USE_C_ALLOCA override this. */
195 #ifdef HAVE_SYS_PARAM_H
196 # include <sys/param.h>
203 /* Find HOST_WIDEST_INT and set its bit size, type and print macros.
204 It will be the largest integer mode supported by the host which may
205 (or may not) be larger than HOST_WIDE_INT. This must appear after
206 <limits.h> since we only use `long long' if its bigger than a
207 `long' and also if it is supported by macros in limits.h. For old
208 hosts which don't have a limits.h (and thus won't include it in
209 stage2 cause we don't rerun configure) we assume gcc supports long
210 long.) Note, you won't get these defined if you don't include
211 {ht}config.h before this file to set the HOST_BITS_PER_* macros. */
213 #ifndef HOST_WIDEST_INT
214 # if defined (HOST_BITS_PER_LONG) && defined (HOST_BITS_PER_LONGLONG)
215 # if (HOST_BITS_PER_LONGLONG > HOST_BITS_PER_LONG) && (defined (LONG_LONG_MAX) || defined (LONGLONG_MAX) || defined (LLONG_MAX) || defined (__GNUC__))
216 # define HOST_BITS_PER_WIDEST_INT HOST_BITS_PER_LONGLONG
217 # define HOST_WIDEST_INT long long
218 # define HOST_WIDEST_INT_PRINT_DEC "%lld"
219 # define HOST_WIDEST_INT_PRINT_UNSIGNED "%llu"
220 # define HOST_WIDEST_INT_PRINT_HEX "0x%llx"
222 # define HOST_BITS_PER_WIDEST_INT HOST_BITS_PER_LONG
223 # define HOST_WIDEST_INT long
224 # define HOST_WIDEST_INT_PRINT_DEC "%ld"
225 # define HOST_WIDEST_INT_PRINT_UNSIGNED "%lu"
226 # define HOST_WIDEST_INT_PRINT_HEX "0x%lx"
227 # endif /*(long long>long) && (LONG_LONG_MAX||LONGLONG_MAX||LLONG_MAX||GNUC)*/
228 # endif /* defined(HOST_BITS_PER_LONG) && defined(HOST_BITS_PER_LONGLONG) */
229 #endif /* ! HOST_WIDEST_INT */
231 #ifdef TIME_WITH_SYS_TIME
232 # include <sys/time.h>
236 # include <sys/time.h>
247 # ifdef HAVE_SYS_FILE_H
248 # include <sys/file.h>
270 /* Some systems define these in, e.g., param.h. We undefine these names
271 here to avoid the warnings. We prefer to use our definitions since we
272 know they are correct. */
276 #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
277 #define MAX(X,Y) ((X) > (Y) ? (X) : (Y))
279 /* Returns the least number N such that N * Y >= X. */
280 #define CEIL(x,y) (((x) + (y) - 1) / (y))
282 #ifdef HAVE_SYS_WAIT_H
283 #include <sys/wait.h>
287 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
290 #define WTERMSIG(S) ((S) & 0x7f)
293 #define WIFEXITED(S) (((S) & 0xff) == 0)
296 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
299 #define WSTOPSIG WEXITSTATUS
306 # ifdef NEED_DECLARATION_BCOPY
307 extern void bcopy
PARAMS ((const PTR
, PTR
, size_t));
309 # else /* ! HAVE_BCOPY */
310 # define bcopy(src,dst,len) memmove((dst),(src),(len))
316 # ifdef NEED_DECLARATION_BCMP
317 extern int bcmp
PARAMS ((const PTR
, const PTR
, size_t));
319 # else /* ! HAVE_BCMP */
320 # define bcmp(left,right,len) memcmp ((left),(right),(len))
326 # ifdef NEED_DECLARATION_BZERO
327 extern void bzero
PARAMS ((PTR
, size_t));
329 # else /* ! HAVE_BZERO */
330 # define bzero(dst,len) memset ((dst),0,(len))
336 # ifdef NEED_DECLARATION_INDEX
337 extern char *index
PARAMS ((const char *, int));
339 # else /* ! HAVE_INDEX */
340 # define index strchr
346 # ifdef NEED_DECLARATION_RINDEX
347 extern char *rindex
PARAMS ((const char *, int));
349 # else /* ! HAVE_RINDEX */
350 # define rindex strrchr
354 #ifdef NEED_DECLARATION_ATOF
355 extern double atof
PARAMS ((const char *));
358 #ifdef NEED_DECLARATION_ATOL
359 extern long atol
PARAMS ((const char *));
362 #ifdef NEED_DECLARATION_FREE
363 extern void free
PARAMS ((PTR
));
366 #ifdef NEED_DECLARATION_GETCWD
367 extern char *getcwd
PARAMS ((char *, size_t));
370 #ifdef NEED_DECLARATION_GETENV
371 extern char *getenv
PARAMS ((const char *));
374 #ifdef NEED_DECLARATION_GETWD
375 extern char *getwd
PARAMS ((char *));
378 #ifdef NEED_DECLARATION_SBRK
379 extern PTR sbrk
PARAMS ((int));
382 #ifdef NEED_DECLARATION_STRSTR
383 extern char *strstr
PARAMS ((const char *, const char *));
390 #ifdef NEED_DECLARATION_MALLOC
391 extern PTR malloc
PARAMS ((size_t));
394 #ifdef NEED_DECLARATION_CALLOC
395 extern PTR calloc
PARAMS ((size_t, size_t));
398 #ifdef NEED_DECLARATION_REALLOC
399 extern PTR realloc
PARAMS ((PTR
, size_t));
402 /* If the system doesn't provide strsignal, we get it defined in
403 libiberty but no declaration is supplied. */
404 #ifdef NEED_DECLARATION_STRSIGNAL
406 extern const char *strsignal
PARAMS ((int));
410 #ifdef HAVE_GETRLIMIT
411 # ifdef NEED_DECLARATION_GETRLIMIT
413 # ifdef ANSI_PROTOTYPES
416 extern int getrlimit
PARAMS ((int, struct rlimit
*));
421 #ifdef HAVE_SETRLIMIT
422 # ifdef NEED_DECLARATION_SETRLIMIT
424 # ifdef ANSI_PROTOTYPES
427 extern int setrlimit
PARAMS ((int, const struct rlimit
*));
432 /* HAVE_VOLATILE only refers to the stage1 compiler. We also check
433 __STDC__ and assume gcc sets it and has volatile in stage >=2. */
434 #if !defined(HAVE_VOLATILE) && !defined(__STDC__) && !defined(volatile)
438 #ifdef NEED_DECLARATION_ABORT
439 extern void abort
PARAMS ((void));
442 /* Define a STRINGIFY macro that's right for ANSI or traditional C.
443 Note: if the argument passed to STRINGIFY is itself a macro, eg
444 #define foo bar, STRINGIFY(foo) will produce "foo", not "bar".
445 Although the __STDC__ case could be made to expand this via a layer
446 of indirection, the traditional C case can not do so. Therefore
447 this behavior is not supported. */
449 # ifdef HAVE_STRINGIZE
450 # define STRINGIFY(STRING) #STRING
452 # define STRINGIFY(STRING) "STRING"
454 #endif /* ! STRINGIFY */
457 # include <sys/stat.h>
460 /* Test if something is a normal file. */
462 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
465 /* Test if something is a directory. */
467 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
470 /* Test if something is a character special file. */
472 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
475 /* Test if something is a socket. */
478 # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
480 # define S_ISSOCK(m) 0
484 /* Test if something is a FIFO. */
487 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
489 # define S_ISFIFO(m) 0
493 /* Approximate O_NONBLOCK. */
495 #define O_NONBLOCK O_NDELAY
498 /* Approximate O_NOCTTY. */
503 /* Define well known filenos if the system does not define them. */
505 # define STDIN_FILENO 0
507 #ifndef STDOUT_FILENO
508 # define STDOUT_FILENO 1
510 #ifndef STDERR_FILENO
511 # define STDERR_FILENO 2
514 /* Some systems have mkdir that takes a single argument. */
515 #ifdef MKDIR_TAKES_ONE_ARG
516 # define mkdir(a,b) mkdir(a)
519 /* Provide a way to print an address via printf. */
520 #ifndef HOST_PTR_PRINTF
521 # ifdef HAVE_PRINTF_PTR
522 # define HOST_PTR_PRINTF "%p"
524 # define HOST_PTR_PRINTF \
525 (sizeof (int) == sizeof (char *) ? "%x" \
526 : sizeof (long) == sizeof (char *) ? "%lx" : "%llx")
528 #endif /* ! HOST_PTR_PRINTF */
530 /* By default, colon separates directories in a path. */
531 #ifndef PATH_SEPARATOR
532 #define PATH_SEPARATOR ':'
535 #ifndef DIR_SEPARATOR
536 #define DIR_SEPARATOR '/'
539 /* Define IS_DIR_SEPARATOR. */
540 #ifndef DIR_SEPARATOR_2
541 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
542 #else /* DIR_SEPARATOR_2 */
543 # define IS_DIR_SEPARATOR(ch) \
544 (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
545 #endif /* DIR_SEPARATOR_2 */
547 /* Get libiberty declarations. */
548 #include "libiberty.h"
550 #endif /* __GCC_SYSTEM_H__ */