1 /* Get common system includes and various definitions and declarations based
3 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
5 This file is part of GCC.
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
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
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
26 /* We must include stdarg.h/varargs.h before stdio.h. */
27 #ifdef ANSI_PROTOTYPES
35 # define va_copy(d,s) __va_copy((d),(s))
37 # define va_copy(d,s) ((d) = (s))
47 /* Define a generic NULL if one hasn't already been defined. */
52 /* The compiler is not a multi-threaded application and therefore we
53 do not have to use the locking functions. In fact, using the locking
54 functions can cause the compiler to be significantly slower under
55 I/O bound conditions (such as -g -O0 on very large source files).
57 HAVE_DECL_PUTC_UNLOCKED actually indicates whether or not the stdio
58 code is multi-thread safe by default. If it is set to 0, then do
59 not worry about using the _unlocked functions.
61 fputs_unlocked, fwrite_unlocked, and fprintf_unlocked are
62 extensions and need to be prototyped by hand (since we do not
63 define _GNU_SOURCE). */
65 #if defined HAVE_DECL_PUTC_UNLOCKED && HAVE_DECL_PUTC_UNLOCKED
67 # ifdef HAVE_PUTC_UNLOCKED
69 # define putc(C, Stream) putc_unlocked (C, Stream)
71 # ifdef HAVE_FPUTC_UNLOCKED
73 # define fputc(C, Stream) fputc_unlocked (C, Stream)
76 # ifdef HAVE_FPUTS_UNLOCKED
78 # define fputs(String, Stream) fputs_unlocked (String, Stream)
79 # if defined (HAVE_DECL_FPUTS_UNLOCKED) && !HAVE_DECL_FPUTS_UNLOCKED
80 extern int fputs_unlocked
PARAMS ((const char *, FILE *));
83 # ifdef HAVE_FWRITE_UNLOCKED
85 # define fwrite(Ptr, Size, N, Stream) fwrite_unlocked (Ptr, Size, N, Stream)
86 # if defined (HAVE_DECL_FWRITE_UNLOCKED) && !HAVE_DECL_FWRITE_UNLOCKED
87 extern int fwrite_unlocked
PARAMS ((const PTR
, size_t, size_t, FILE *));
90 # ifdef HAVE_FPRINTF_UNLOCKED
92 /* We can't use a function-like macro here because we don't know if
93 we have varargs macros. */
94 # define fprintf fprintf_unlocked
95 # if defined (HAVE_DECL_FPRINTF_UNLOCKED) && !HAVE_DECL_FPRINTF_UNLOCKED
96 extern int fprintf_unlocked
PARAMS ((FILE *, const char *, ...));
102 /* ??? Glibc's fwrite/fread_unlocked macros cause
103 "warning: signed and unsigned type in conditional expression". */
104 #undef fread_unlocked
105 #undef fwrite_unlocked
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>
112 #include <sys/types.h>
116 #if !defined (errno) && defined (HAVE_DECL_ERRNO) && !HAVE_DECL_ERRNO
120 /* Some of glibc's string inlines cause warnings. Plus we'd rather
121 rely on (and therefore test) GCC's string builtins. */
122 #define __NO_STRING_INLINES
124 #ifdef STRING_WITH_STRINGS
126 # include <strings.h>
128 # ifdef HAVE_STRING_H
131 # ifdef HAVE_STRINGS_H
132 # include <strings.h>
141 /* If we don't have an overriding definition, set SUCCESS_EXIT_CODE and
142 FATAL_EXIT_CODE to EXIT_SUCCESS and EXIT_FAILURE respectively,
143 or 0 and 1 if those macros are not defined. */
144 #ifndef SUCCESS_EXIT_CODE
146 # define SUCCESS_EXIT_CODE EXIT_SUCCESS
148 # define SUCCESS_EXIT_CODE 0
152 #ifndef FATAL_EXIT_CODE
154 # define FATAL_EXIT_CODE EXIT_FAILURE
156 # define FATAL_EXIT_CODE 1
164 #ifdef HAVE_SYS_PARAM_H
165 # include <sys/param.h>
166 /* We use this identifier later and it appears in some vendor param.h's. */
174 /* Get definitions of HOST_WIDE_INT and HOST_WIDEST_INT. */
177 /* A macro to determine whether a VALUE lies inclusively within a
178 certain range without evaluating the VALUE more than once. This
179 macro won't warn if the VALUE is unsigned and the LOWER bound is
180 zero, as it would e.g. with "VALUE >= 0 && ...". Note the LOWER
181 bound *is* evaluated twice, and LOWER must not be greater than
182 UPPER. However the bounds themselves can be either positive or
184 #define IN_RANGE(VALUE, LOWER, UPPER) \
185 ((unsigned HOST_WIDE_INT) ((VALUE) - (LOWER)) <= ((UPPER) - (LOWER)))
187 /* Infrastructure for defining missing _MAX and _MIN macros. Note that
188 macros defined with these cannot be used in #if. */
190 /* The extra casts work around common compiler bugs. */
191 #define INTTYPE_SIGNED(t) (! ((t) 0 < (t) -1))
192 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
193 It is necessary at least when t == time_t. */
194 #define INTTYPE_MINIMUM(t) ((t) (INTTYPE_SIGNED (t) \
195 ? ~ (t) 0 << (sizeof(t) * CHAR_BIT - 1) : (t) 0))
196 #define INTTYPE_MAXIMUM(t) ((t) (~ (t) 0 - INTTYPE_MINIMUM (t)))
198 /* Use that infrastructure to provide a few constants. */
200 # define UCHAR_MAX INTTYPE_MAXIMUM (unsigned char)
203 #ifdef TIME_WITH_SYS_TIME
204 # include <sys/time.h>
208 # include <sys/time.h>
219 # ifdef HAVE_SYS_FILE_H
220 # include <sys/file.h>
242 /* Some systems define these in, e.g., param.h. We undefine these names
243 here to avoid the warnings. We prefer to use our definitions since we
244 know they are correct. */
248 #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
249 #define MAX(X,Y) ((X) > (Y) ? (X) : (Y))
251 /* Returns the least number N such that N * Y >= X. */
252 #define CEIL(x,y) (((x) + (y) - 1) / (y))
254 #ifdef HAVE_SYS_WAIT_H
255 #include <sys/wait.h>
259 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
262 #define WTERMSIG(S) ((S) & 0x7f)
265 #define WIFEXITED(S) (((S) & 0xff) == 0)
268 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
271 #define WSTOPSIG WEXITSTATUS
274 #define WCOREDUMP(S) ((S) & WCOREFLG)
277 #define WCOREFLG 0200
280 /* The HAVE_DECL_* macros are three-state, undefined, 0 or 1. If they
281 are defined to 0 then we must provide the relevant declaration
282 here. These checks will be in the undefined state while configure
283 is running so be careful to test "defined (HAVE_DECL_*)". */
285 #if defined (HAVE_DECL_ATOF) && !HAVE_DECL_ATOF
286 extern double atof
PARAMS ((const char *));
289 #if defined (HAVE_DECL_ATOL) && !HAVE_DECL_ATOL
290 extern long atol
PARAMS ((const char *));
293 #if defined (HAVE_DECL_FREE) && !HAVE_DECL_FREE
294 extern void free
PARAMS ((PTR
));
297 #if defined (HAVE_DECL_GETCWD) && !HAVE_DECL_GETCWD
298 extern char *getcwd
PARAMS ((char *, size_t));
301 #if defined (HAVE_DECL_GETENV) && !HAVE_DECL_GETENV
302 extern char *getenv
PARAMS ((const char *));
305 #if defined (HAVE_DECL_GETOPT) && !HAVE_DECL_GETOPT
306 extern int getopt
PARAMS ((int, char * const *, const char *));
309 #if defined (HAVE_DECL_GETWD) && !HAVE_DECL_GETWD
310 extern char *getwd
PARAMS ((char *));
313 #if defined (HAVE_DECL_SBRK) && !HAVE_DECL_SBRK
314 extern PTR sbrk
PARAMS ((int));
317 #if defined (HAVE_DECL_STRSTR) && !HAVE_DECL_STRSTR
318 extern char *strstr
PARAMS ((const char *, const char *));
325 #if defined (HAVE_DECL_MALLOC) && !HAVE_DECL_MALLOC
326 extern PTR malloc
PARAMS ((size_t));
329 #if defined (HAVE_DECL_CALLOC) && !HAVE_DECL_CALLOC
330 extern PTR calloc
PARAMS ((size_t, size_t));
333 #if defined (HAVE_DECL_REALLOC) && !HAVE_DECL_REALLOC
334 extern PTR realloc
PARAMS ((PTR
, size_t));
337 /* If the system doesn't provide strsignal, we get it defined in
338 libiberty but no declaration is supplied. */
339 #if !defined (HAVE_STRSIGNAL) \
340 || (defined (HAVE_DECL_STRSIGNAL) && !HAVE_DECL_STRSIGNAL)
342 extern const char *strsignal
PARAMS ((int));
346 #ifdef HAVE_GETRLIMIT
347 # if defined (HAVE_DECL_GETRLIMIT) && !HAVE_DECL_GETRLIMIT
349 # ifdef ANSI_PROTOTYPES
352 extern int getrlimit
PARAMS ((int, struct rlimit
*));
357 #ifdef HAVE_SETRLIMIT
358 # if defined (HAVE_DECL_SETRLIMIT) && !HAVE_DECL_SETRLIMIT
360 # ifdef ANSI_PROTOTYPES
363 extern int setrlimit
PARAMS ((int, const struct rlimit
*));
368 /* HAVE_VOLATILE only refers to the stage1 compiler. We also check
369 __STDC__ and assume gcc sets it and has volatile in stage >=2. */
370 #if !defined(HAVE_VOLATILE) && !defined(__STDC__) && !defined(volatile)
374 #if defined (HAVE_DECL_ABORT) && !HAVE_DECL_ABORT
375 extern void abort
PARAMS ((void));
378 /* 1 if we have C99 designated initializers. */
379 #if !defined(HAVE_DESIGNATED_INITIALIZERS)
380 #define HAVE_DESIGNATED_INITIALIZERS \
381 ((GCC_VERSION >= 2007) || (__STDC_VERSION__ >= 199901L))
384 /* 1 if we have _Bool. */
386 # define HAVE__BOOL \
387 ((GCC_VERSION >= 3000) || (__STDC_VERSION__ >= 199901L))
392 # include <sys/stat.h>
395 /* Test if something is a normal file. */
397 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
400 /* Test if something is a directory. */
402 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
405 /* Test if something is a character special file. */
407 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
410 /* Test if something is a block special file. */
412 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
415 /* Test if something is a socket. */
418 # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
420 # define S_ISSOCK(m) 0
424 /* Test if something is a FIFO. */
427 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
429 # define S_ISFIFO(m) 0
433 /* Approximate O_NONBLOCK. */
435 #define O_NONBLOCK O_NDELAY
438 /* Approximate O_NOCTTY. */
443 /* Define well known filenos if the system does not define them. */
445 # define STDIN_FILENO 0
447 #ifndef STDOUT_FILENO
448 # define STDOUT_FILENO 1
450 #ifndef STDERR_FILENO
451 # define STDERR_FILENO 2
454 /* Some systems have mkdir that takes a single argument. */
455 #ifdef MKDIR_TAKES_ONE_ARG
456 # define mkdir(a,b) mkdir(a)
459 /* Provide a way to print an address via printf. */
460 #ifndef HOST_PTR_PRINTF
461 # ifdef HAVE_PRINTF_PTR
462 # define HOST_PTR_PRINTF "%p"
464 # define HOST_PTR_PRINTF \
465 (sizeof (int) == sizeof (char *) ? "%x" \
466 : sizeof (long) == sizeof (char *) ? "%lx" : "%llx")
468 #endif /* ! HOST_PTR_PRINTF */
470 /* By default, colon separates directories in a path. */
471 #ifndef PATH_SEPARATOR
472 #define PATH_SEPARATOR ':'
475 #ifndef DIR_SEPARATOR
476 #define DIR_SEPARATOR '/'
479 /* Define IS_DIR_SEPARATOR. */
480 #ifndef DIR_SEPARATOR_2
481 # define IS_DIR_SEPARATOR(CH) ((CH) == DIR_SEPARATOR)
482 #else /* DIR_SEPARATOR_2 */
483 # define IS_DIR_SEPARATOR(CH) \
484 (((CH) == DIR_SEPARATOR) || ((CH) == DIR_SEPARATOR_2))
485 #endif /* DIR_SEPARATOR_2 */
487 /* Say how to test for an absolute pathname. On Unix systems, this is if
488 it starts with a leading slash or a '$', the latter meaning the value of
489 an environment variable is to be used. On machine with DOS-based
490 file systems, it is also absolute if it starts with a drive identifier. */
491 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
492 #define IS_ABSOLUTE_PATHNAME(STR) \
493 (IS_DIR_SEPARATOR ((STR)[0]) || (STR)[0] == '$' \
494 || ((STR)[0] != '\0' && (STR)[1] == ':' && IS_DIR_SEPARATOR ((STR)[2])))
496 #define IS_ABSOLUTE_PATHNAME(STR) \
497 (IS_DIR_SEPARATOR ((STR)[0]) || (STR)[0] == '$')
500 /* Get libiberty declarations. */
501 #include "libiberty.h"
504 /* Provide a default for the HOST_BIT_BUCKET.
505 This suffices for POSIX-like hosts. */
507 #ifndef HOST_BIT_BUCKET
508 #define HOST_BIT_BUCKET "/dev/null"
511 /* Be conservative and only use enum bitfields with GCC. Likewise for
513 FIXME: provide a complete autoconf test for buggy enum bitfields. */
515 #if (GCC_VERSION > 2000)
516 #define ENUM_BITFIELD(TYPE) enum TYPE
517 #define CHAR_BITFIELD unsigned char
519 #define ENUM_BITFIELD(TYPE) unsigned int
520 #define CHAR_BITFIELD unsigned int
524 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *) 0)->MEMBER)
527 /* Traditional C cannot initialize union members of structs. Provide
528 a macro which expands appropriately to handle it. This only works
529 if you intend to initialize the union member to zero since it relies
530 on default initialization to zero in the traditional C case. */
532 #define UNION_INIT_ZERO , {0}
534 #define UNION_INIT_ZERO
537 /* Various error reporting routines want to use __FUNCTION__. */
538 #if (GCC_VERSION < 2007)
540 #define __FUNCTION__ "?"
541 #endif /* ! __FUNCTION__ */
544 /* __builtin_expect(A, B) evaluates to A, but notifies the compiler that
545 the most likely value of A is B. This feature was added at some point
546 between 2.95 and 3.0. Let's use 3.0 as the lower bound for now. */
547 #if (GCC_VERSION < 3000)
548 #define __builtin_expect(a, b) (a)
551 /* Provide some sort of boolean type. We use stdbool.h if it's
552 available. This must be after all inclusion of system headers,
553 as some of them will mess us up. */
560 #ifdef HAVE_STDBOOL_H
561 # include <stdbool.h>
574 /* As the last action in this file, we poison the identifiers that
575 shouldn't be used. Note, luckily gcc-3.0's token-based integrated
576 preprocessor won't trip on poisoned identifiers that arrive from
577 the expansion of macros. E.g. #define strrchr rindex, won't error
578 if rindex is poisoned after this directive is issued and later on
581 Note: We define bypass macros for the few cases where we really
582 want to use the libc memory allocation routines. Otherwise we
583 insist you use the "x" versions from libiberty. */
585 #define really_call_malloc malloc
586 #define really_call_calloc calloc
587 #define really_call_realloc realloc
589 #if defined(FLEX_SCANNER) || defined(YYBISON)
590 /* Flex and bison use malloc and realloc. Yuk. Note that this means
591 really_call_* cannot be used in a .l or .y file. */
592 #define malloc xmalloc
593 #define realloc xrealloc
596 #if (GCC_VERSION >= 3000)
598 /* Note autoconf checks for prototype declarations and includes
599 system.h while doing so. Only poison these tokens if actually
600 compiling gcc, so that the autoconf declaration tests for malloc
601 etc don't spuriously fail. */
605 #pragma GCC poison calloc strdup
607 #if !defined(FLEX_SCANNER) && !defined(YYBISON)
610 #pragma GCC poison malloc realloc
613 /* Old target macros that have moved to the target hooks structure. */
614 #pragma GCC poison ASM_OPEN_PAREN ASM_CLOSE_PAREN \
615 FUNCTION_PROLOGUE FUNCTION_EPILOGUE \
616 FUNCTION_END_PROLOGUE FUNCTION_BEGIN_EPILOGUE \
617 DECL_MACHINE_ATTRIBUTES COMP_TYPE_ATTRIBUTES INSERT_ATTRIBUTES \
618 VALID_MACHINE_DECL_ATTRIBUTE VALID_MACHINE_TYPE_ATTRIBUTE \
619 SET_DEFAULT_TYPE_ATTRIBUTES SET_DEFAULT_DECL_ATTRIBUTES \
620 MERGE_MACHINE_TYPE_ATTRIBUTES MERGE_MACHINE_DECL_ATTRIBUTES \
621 MD_INIT_BUILTINS MD_EXPAND_BUILTIN ASM_OUTPUT_CONSTRUCTOR \
622 ASM_OUTPUT_DESTRUCTOR SIGNED_CHAR_SPEC MAX_CHAR_TYPE_SIZE \
623 WCHAR_UNSIGNED UNIQUE_SECTION SELECT_SECTION SELECT_RTX_SECTION \
624 ENCODE_SECTION_INFO STRIP_NAME_ENCODING ASM_GLOBALIZE_LABEL \
625 ASM_OUTPUT_MI_THUNK CONST_COSTS RTX_COSTS DEFAULT_RTX_COSTS \
628 /* Other obsolete target macros, or macros that used to be in target
629 headers and were not used, and may be obsolete or may never have
631 #pragma GCC poison INT_ASM_OP ASM_OUTPUT_EH_REGION_BEG \
632 ASM_OUTPUT_EH_REGION_END ASM_OUTPUT_LABELREF_AS_INT \
633 DOESNT_NEED_UNWINDER EH_TABLE_LOOKUP OBJC_SELECTORS_WITHOUT_LABELS \
634 OMIT_EH_TABLE EASY_DIV_EXPR IMPLICIT_FIX_EXPR \
635 LONGJMP_RESTORE_FROM_STACK MAX_INT_TYPE_SIZE ASM_IDENTIFY_GCC \
636 STDC_VALUE TRAMPOLINE_ALIGN ASM_IDENTIFY_GCC_AFTER_SOURCE \
637 SLOW_ZERO_EXTEND SUBREG_REGNO_OFFSET DWARF_LINE_MIN_INSTR_LENGTH \
638 TRADITIONAL_RETURN_FLOAT NO_BUILTIN_SIZE_TYPE \
639 NO_BUILTIN_PTRDIFF_TYPE NO_BUILTIN_WCHAR_TYPE NO_BUILTIN_WINT_TYPE \
640 BLOCK_PROFILER BLOCK_PROFILER_CODE FUNCTION_BLOCK_PROFILER \
641 FUNCTION_BLOCK_PROFILER_EXIT MACHINE_STATE_SAVE \
642 MACHINE_STATE_RESTORE SCCS_DIRECTIVE SECTION_ASM_OP \
643 ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL ASM_OUTPUT_INTERNAL_LABEL
645 /* Hooks that are no longer used. */
646 #pragma GCC poison LANG_HOOKS_FUNCTION_MARK LANG_HOOKS_FUNCTION_FREE \
651 /* Note: not all uses of the `index' token (e.g. variable names and
652 structure members) have been eliminated. */
657 #pragma GCC poison bcopy bzero bcmp rindex
659 #endif /* GCC >= 3.0 */
661 #endif /* ! GCC_SYSTEM_H */