1 /* Get common system includes and various definitions and declarations based
3 Copyright (C) 1998, 1999 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 /* We must include stdarg.h/varargs.h before stdio.h. */
27 #ifdef ANSI_PROTOTYPES
35 /* Define a generic NULL if one hasn't already been defined. */
40 /* The compiler is not a multi-threaded application and therefore we
41 do not have to use the locking functions.
43 NEED_DECLARATION_PUTC_UNLOCKED actually indicates whether or not
44 the IO code is multi-thread safe by default. If it is not declared,
45 then do not worry about using the _unlocked functions.
47 fputs_unlocked is an extension and needs to be prototyped specially. */
49 #if defined HAVE_PUTC_UNLOCKED && !defined NEED_DECLARATION_PUTC_UNLOCKED
51 # define putc(C, Stream) putc_unlocked (C, Stream)
53 #if defined HAVE_FPUTC_UNLOCKED && !defined NEED_DECLARATION_PUTC_UNLOCKED
55 # define fputc(C, Stream) fputc_unlocked (C, Stream)
57 #if defined HAVE_FPUTS_UNLOCKED && !defined NEED_DECLARATION_PUTC_UNLOCKED
59 # define fputs(String, Stream) fputs_unlocked (String, Stream)
60 # ifdef NEED_DECLARATION_FPUTS_UNLOCKED
61 extern int fputs_unlocked
PROTO ((const char *, FILE *));
67 /* Jim Meyering writes:
69 "... Some ctype macros are valid only for character codes that
70 isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
71 using /bin/cc or gcc but without giving an ansi option). So, all
72 ctype uses should be through macros like ISPRINT... If
73 STDC_HEADERS is defined, then autoconf has verified that the ctype
74 macros don't need to be guarded with references to isascii. ...
75 Defining isascii to 1 should let any compiler worth its salt
76 eliminate the && through constant folding."
80 "... Furthermore, isupper(c) etc. have an undefined result if c is
81 outside the range -1 <= c <= 255. One is tempted to write isupper(c)
82 with c being of type `char', but this is wrong if c is an 8-bit
83 character >= 128 which gets sign-extended to a negative value.
84 The macro ISUPPER protects against this as well." */
86 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII)) || defined(HOST_EBCDIC)
87 # define IN_CTYPE_DOMAIN(c) 1
89 # define IN_CTYPE_DOMAIN(c) isascii(c)
92 /* The ctype functions are often implemented as macros which do
93 lookups in arrays using the parameter as the offset. If the ctype
94 function parameter is a char, then gcc will (appropriately) warn
95 that a "subscript has type char". Using a (signed) char as a subscript
96 is bad because you may get negative offsets and thus it is not 8-bit
97 safe. The CTYPE_CONV macro ensures that the parameter is cast to an
98 unsigned char when a char is passed in. When an int is passed in, the
99 parameter is left alone so we don't lose EOF.
102 #define CTYPE_CONV(CH) \
103 (sizeof(CH) == sizeof(unsigned char) ? (int)(unsigned char)(CH) : (int)(CH))
106 /* WARNING! The argument to the ctype replacement macros below is
107 evaluated more than once so it must not have side effects! */
110 # define ISBLANK(c) (IN_CTYPE_DOMAIN (c) && isblank (CTYPE_CONV(c)))
112 # define ISBLANK(c) ((c) == ' ' || (c) == '\t')
115 # define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isgraph (CTYPE_CONV(c)))
117 # define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isprint (CTYPE_CONV(c)) && !isspace (CTYPE_CONV(c)))
120 #define ISPRINT(c) (IN_CTYPE_DOMAIN (c) && isprint (CTYPE_CONV(c)))
121 #define ISALNUM(c) (IN_CTYPE_DOMAIN (c) && isalnum (CTYPE_CONV(c)))
122 #define ISALPHA(c) (IN_CTYPE_DOMAIN (c) && isalpha (CTYPE_CONV(c)))
123 #define ISCNTRL(c) (IN_CTYPE_DOMAIN (c) && iscntrl (CTYPE_CONV(c)))
124 #define ISLOWER(c) (IN_CTYPE_DOMAIN (c) && islower (CTYPE_CONV(c)))
125 #define ISPUNCT(c) (IN_CTYPE_DOMAIN (c) && ispunct (CTYPE_CONV(c)))
126 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (CTYPE_CONV(c)))
127 #define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (CTYPE_CONV(c)))
128 #define ISXDIGIT(c) (IN_CTYPE_DOMAIN (c) && isxdigit (CTYPE_CONV(c)))
129 #define ISDIGIT_LOCALE(c) (IN_CTYPE_DOMAIN (c) && isdigit (CTYPE_CONV(c)))
132 # define TOLOWER(c) (tolower (CTYPE_CONV(c)))
133 # define TOUPPER(c) (toupper (CTYPE_CONV(c)))
135 # define TOLOWER(c) (ISUPPER (c) ? tolower (CTYPE_CONV(c)) : (c))
136 # define TOUPPER(c) (ISLOWER (c) ? toupper (CTYPE_CONV(c)) : (c))
139 /* ISDIGIT differs from ISDIGIT_LOCALE, as follows:
140 - Its arg may be any int or unsigned int; it need not be an unsigned char.
141 - It's guaranteed to evaluate its argument exactly once.
142 - It's typically faster.
143 Posix 1003.2-1992 section 2.5.2.1 page 50 lines 1556-1558 says that
144 only '0' through '9' are digits. Prefer ISDIGIT to ISDIGIT_LOCALE unless
145 it's important to use the locale's definition of `digit' even when the
146 host does not conform to Posix. */
147 #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
149 /* Define a default escape character; its different for EBCDIC. */
151 #define TARGET_ESC 033
154 #ifdef HAVE_SYS_TYPES_H
155 #include <sys/types.h>
164 #ifdef STRING_WITH_STRINGS
166 # include <strings.h>
168 # ifdef HAVE_STRING_H
171 # ifdef HAVE_STRINGS_H
172 # include <strings.h>
185 #ifdef HAVE_SYS_PARAM_H
186 # include <sys/param.h>
193 /* Find HOST_WIDEST_INT and set its bit size, type and print macros.
194 It will be the largest integer mode supported by the host which may
195 (or may not) be larger than HOST_WIDE_INT. This must appear after
196 <limits.h> since we only use `long long' if its bigger than a
197 `long' and also if it is supported by macros in limits.h. For old
198 hosts which don't have a limits.h (and thus won't include it in
199 stage2 cause we don't rerun configure) we assume gcc supports long
200 long.) Note, you won't get these defined if you don't include
201 {ht}config.h before this file to set the HOST_BITS_PER_* macros. */
203 #ifndef HOST_WIDEST_INT
204 # if defined (HOST_BITS_PER_LONG) && defined (HOST_BITS_PER_LONGLONG)
205 # if (HOST_BITS_PER_LONGLONG > HOST_BITS_PER_LONG) && (defined (LONG_LONG_MAX) || defined (LONGLONG_MAX) || defined (LLONG_MAX) || defined (__GNUC__))
206 # define HOST_BITS_PER_WIDEST_INT HOST_BITS_PER_LONGLONG
207 # define HOST_WIDEST_INT long long
208 # define HOST_WIDEST_INT_PRINT_DEC "%lld"
209 # define HOST_WIDEST_INT_PRINT_UNSIGNED "%llu"
210 # define HOST_WIDEST_INT_PRINT_HEX "0x%llx"
212 # define HOST_BITS_PER_WIDEST_INT HOST_BITS_PER_LONG
213 # define HOST_WIDEST_INT long
214 # define HOST_WIDEST_INT_PRINT_DEC "%ld"
215 # define HOST_WIDEST_INT_PRINT_UNSIGNED "%lu"
216 # define HOST_WIDEST_INT_PRINT_HEX "0x%lx"
217 # endif /*(long long>long) && (LONG_LONG_MAX||LONGLONG_MAX||LLONG_MAX||GNUC)*/
218 # endif /* defined(HOST_BITS_PER_LONG) && defined(HOST_BITS_PER_LONGLONG) */
219 #endif /* ! HOST_WIDEST_INT */
221 #ifdef TIME_WITH_SYS_TIME
222 # include <sys/time.h>
226 # include <sys/time.h>
237 # ifdef HAVE_SYS_FILE_H
238 # include <sys/file.h>
260 /* Some systems define these in, e.g., param.h. We undefine these names
261 here to avoid the warnings. We prefer to use our definitions since we
262 know they are correct. */
266 #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
267 #define MAX(X,Y) ((X) > (Y) ? (X) : (Y))
269 #ifdef HAVE_SYS_WAIT_H
270 #include <sys/wait.h>
274 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
277 #define WTERMSIG(S) ((S) & 0x7f)
280 #define WIFEXITED(S) (((S) & 0xff) == 0)
283 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
286 #define WSTOPSIG WEXITSTATUS
293 # ifdef NEED_DECLARATION_BCOPY
294 extern void bcopy ();
296 # else /* ! HAVE_BCOPY */
297 # define bcopy(src,dst,len) memmove((dst),(src),(len))
303 # ifdef NEED_DECLARATION_BCMP
306 # else /* ! HAVE_BCMP */
307 # define bcmp(left,right,len) memcmp ((left),(right),(len))
313 # ifdef NEED_DECLARATION_BZERO
314 extern void bzero ();
316 # else /* ! HAVE_BZERO */
317 # define bzero(dst,len) memset ((dst),0,(len))
323 # ifdef NEED_DECLARATION_INDEX
324 extern char *index ();
326 # else /* ! HAVE_INDEX */
327 # define index strchr
333 # ifdef NEED_DECLARATION_RINDEX
334 extern char *rindex ();
336 # else /* ! HAVE_RINDEX */
337 # define rindex strrchr
341 #ifdef NEED_DECLARATION_ATOF
342 extern double atof ();
345 #ifdef NEED_DECLARATION_ATOL
349 #ifdef NEED_DECLARATION_FREE
353 #ifdef NEED_DECLARATION_GETCWD
354 extern char *getcwd ();
357 #ifdef NEED_DECLARATION_GETENV
358 extern char *getenv ();
361 #ifdef NEED_DECLARATION_GETWD
362 extern char *getwd ();
365 #ifdef NEED_DECLARATION_SBRK
369 #ifdef NEED_DECLARATION_STRSTR
370 extern char *strstr ();
377 #ifdef NEED_DECLARATION_MALLOC
378 extern PTR
malloc ();
381 #ifdef NEED_DECLARATION_CALLOC
382 extern PTR
calloc ();
385 #ifdef NEED_DECLARATION_REALLOC
386 extern PTR
realloc ();
390 # ifdef NEED_DECLARATION_STRERROR
392 extern char *strerror ();
395 #else /* ! HAVE_STRERROR */
397 extern char *sys_errlist
[];
398 #endif /* HAVE_STRERROR */
400 #ifdef HAVE_STRSIGNAL
401 # ifdef NEED_DECLARATION_STRSIGNAL
403 extern char * strsignal ();
406 #else /* ! HAVE_STRSIGNAL */
407 # ifndef SYS_SIGLIST_DECLARED
408 # ifndef NO_SYS_SIGLIST
409 extern char * sys_siglist
[];
412 #endif /* HAVE_STRSIGNAL */
414 #ifdef HAVE_GETRLIMIT
415 # ifdef NEED_DECLARATION_GETRLIMIT
417 extern int getrlimit ();
422 #ifdef HAVE_SETRLIMIT
423 # ifdef NEED_DECLARATION_SETRLIMIT
425 extern int setrlimit ();
430 /* HAVE_VOLATILE only refers to the stage1 compiler. We also check
431 __STDC__ and assume gcc sets it and has volatile in stage >=2. */
432 #if !defined(HAVE_VOLATILE) && !defined(__STDC__) && !defined(volatile)
436 #ifdef NEED_DECLARATION_ABORT
437 extern void abort ();
440 /* Define a STRINGIFY macro that's right for ANSI or traditional C.
441 Note: if the argument passed to STRINGIFY is itself a macro, eg
442 #define foo bar, STRINGIFY(foo) will produce "foo", not "bar".
443 Although the __STDC__ case could be made to expand this via a layer
444 of indirection, the traditional C case can not do so. Therefore
445 this behavior is not supported. */
447 # ifdef HAVE_STRINGIZE
448 # define STRINGIFY(STRING) #STRING
450 # define STRINGIFY(STRING) "STRING"
452 #endif /* ! STRINGIFY */
455 # include <sys/stat.h>
458 /* Test if something is a normal file. */
460 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
463 /* Test if something is a directory. */
465 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
468 /* Test if something is a character special file. */
470 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
473 /* Test if something is a socket. */
476 # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
478 # define S_ISSOCK(m) 0
482 /* Test if something is a FIFO. */
485 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
487 # define S_ISFIFO(m) 0
491 /* Approximate O_NONBLOCK. */
493 #define O_NONBLOCK O_NDELAY
496 /* Approximate O_NOCTTY. */
501 /* Define well known filenos if the system does not define them. */
503 # define STDIN_FILENO 0
505 #ifndef STDOUT_FILENO
506 # define STDOUT_FILENO 1
508 #ifndef STDERR_FILENO
509 # define STDERR_FILENO 2
512 /* Some systems have mkdir that takes a single argument. */
513 #ifdef MKDIR_TAKES_ONE_ARG
514 # define mkdir(a,b) mkdir(a)
517 /* Provide a way to print an address via printf. */
518 #ifndef HOST_PTR_PRINTF
519 # ifdef HAVE_PRINTF_PTR
520 # define HOST_PTR_PRINTF "%p"
522 # define HOST_PTR_PRINTF \
523 (sizeof (int) == sizeof (char *) ? "%x" \
524 : sizeof (long) == sizeof (char *) ? "%lx" : "%llx")
526 #endif /* ! HOST_PTR_PRINTF */
528 /* Get libiberty declarations. */
529 #include "libiberty.h"
531 #endif /* __GCC_SYSTEM_H__ */