1 /* Get common system includes and various definitions and declarations based
3 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2009, 2010
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
23 #ifndef LIBCPP_SYSTEM_H
24 #define LIBCPP_SYSTEM_H
26 /* We must include stdarg.h before stdio.h. */
35 #ifdef HAVE_INTTYPES_H
36 # include <inttypes.h>
41 /* Define a generic NULL if one hasn't already been defined. */
46 /* Use the unlocked open routines from libiberty. */
47 #define fopen(PATH,MODE) fopen_unlocked(PATH,MODE)
48 #define fdopen(FILDES,MODE) fdopen_unlocked(FILDES,MODE)
49 #define freopen(PATH,MODE,STREAM) freopen_unlocked(PATH,MODE,STREAM)
51 /* The compiler is not a multi-threaded application and therefore we
52 do not have to use the locking functions. In fact, using the locking
53 functions can cause the compiler to be significantly slower under
54 I/O bound conditions (such as -g -O0 on very large source files).
56 HAVE_DECL_PUTC_UNLOCKED actually indicates whether or not the stdio
57 code is multi-thread safe by default. If it is set to 0, then do
58 not worry about using the _unlocked functions.
60 fputs_unlocked, fwrite_unlocked, and fprintf_unlocked are
61 extensions and need to be prototyped by hand (since we do not
62 define _GNU_SOURCE). */
64 #if defined HAVE_DECL_PUTC_UNLOCKED && HAVE_DECL_PUTC_UNLOCKED
66 # ifdef HAVE_PUTC_UNLOCKED
68 # define putc(C, Stream) putc_unlocked (C, Stream)
70 # ifdef HAVE_PUTCHAR_UNLOCKED
72 # define putchar(C) putchar_unlocked (C)
74 # ifdef HAVE_GETC_UNLOCKED
76 # define getc(Stream) getc_unlocked (Stream)
78 # ifdef HAVE_GETCHAR_UNLOCKED
80 # define getchar() getchar_unlocked ()
82 # ifdef HAVE_FPUTC_UNLOCKED
84 # define fputc(C, Stream) fputc_unlocked (C, Stream)
87 # ifdef HAVE_CLEARERR_UNLOCKED
89 # define clearerr(Stream) clearerr_unlocked (Stream)
90 # if defined (HAVE_DECL_CLEARERR_UNLOCKED) && !HAVE_DECL_CLEARERR_UNLOCKED
91 extern void clearerr_unlocked (FILE *);
94 # ifdef HAVE_FEOF_UNLOCKED
96 # define feof(Stream) feof_unlocked (Stream)
97 # if defined (HAVE_DECL_FEOF_UNLOCKED) && !HAVE_DECL_FEOF_UNLOCKED
98 extern int feof_unlocked (FILE *);
101 # ifdef HAVE_FILENO_UNLOCKED
103 # define fileno(Stream) fileno_unlocked (Stream)
104 # if defined (HAVE_DECL_FILENO_UNLOCKED) && !HAVE_DECL_FILENO_UNLOCKED
105 extern int fileno_unlocked (FILE *);
108 # ifdef HAVE_FFLUSH_UNLOCKED
110 # define fflush(Stream) fflush_unlocked (Stream)
111 # if defined (HAVE_DECL_FFLUSH_UNLOCKED) && !HAVE_DECL_FFLUSH_UNLOCKED
112 extern int fflush_unlocked (FILE *);
115 # ifdef HAVE_FGETC_UNLOCKED
117 # define fgetc(Stream) fgetc_unlocked (Stream)
118 # if defined (HAVE_DECL_FGETC_UNLOCKED) && !HAVE_DECL_FGETC_UNLOCKED
119 extern int fgetc_unlocked (FILE *);
122 # ifdef HAVE_FGETS_UNLOCKED
124 # define fgets(S, n, Stream) fgets_unlocked (S, n, Stream)
125 # if defined (HAVE_DECL_FGETS_UNLOCKED) && !HAVE_DECL_FGETS_UNLOCKED
126 extern char *fgets_unlocked (char *, int, FILE *);
129 # ifdef HAVE_FPUTS_UNLOCKED
131 # define fputs(String, Stream) fputs_unlocked (String, Stream)
132 # if defined (HAVE_DECL_FPUTS_UNLOCKED) && !HAVE_DECL_FPUTS_UNLOCKED
133 extern int fputs_unlocked (const char *, FILE *);
136 # ifdef HAVE_FERROR_UNLOCKED
138 # define ferror(Stream) ferror_unlocked (Stream)
139 # if defined (HAVE_DECL_FERROR_UNLOCKED) && !HAVE_DECL_FERROR_UNLOCKED
140 extern int ferror_unlocked (FILE *);
143 # ifdef HAVE_FREAD_UNLOCKED
145 # define fread(Ptr, Size, N, Stream) fread_unlocked (Ptr, Size, N, Stream)
146 # if defined (HAVE_DECL_FREAD_UNLOCKED) && !HAVE_DECL_FREAD_UNLOCKED
147 extern size_t fread_unlocked (void *, size_t, size_t, FILE *);
150 # ifdef HAVE_FWRITE_UNLOCKED
152 # define fwrite(Ptr, Size, N, Stream) fwrite_unlocked (Ptr, Size, N, Stream)
153 # if defined (HAVE_DECL_FWRITE_UNLOCKED) && !HAVE_DECL_FWRITE_UNLOCKED
154 extern size_t fwrite_unlocked (const void *, size_t, size_t, FILE *);
157 # ifdef HAVE_FPRINTF_UNLOCKED
159 /* We can't use a function-like macro here because we don't know if
160 we have varargs macros. */
161 # define fprintf fprintf_unlocked
162 # if defined (HAVE_DECL_FPRINTF_UNLOCKED) && !HAVE_DECL_FPRINTF_UNLOCKED
163 extern int fprintf_unlocked (FILE *, const char *, ...);
169 /* ??? Glibc's fwrite/fread_unlocked macros cause
170 "warning: signed and unsigned type in conditional expression". */
171 #undef fread_unlocked
172 #undef fwrite_unlocked
174 #include <sys/types.h>
177 #if !defined (errno) && defined (HAVE_DECL_ERRNO) && !HAVE_DECL_ERRNO
181 /* Some of glibc's string inlines cause warnings. Plus we'd rather
182 rely on (and therefore test) GCC's string builtins. */
183 #define __NO_STRING_INLINES
185 #ifdef STRING_WITH_STRINGS
187 # include <strings.h>
189 # ifdef HAVE_STRING_H
192 # ifdef HAVE_STRINGS_H
193 # include <strings.h>
210 /* Infrastructure for defining missing _MAX and _MIN macros. Note that
211 macros defined with these cannot be used in #if. */
213 /* The extra casts work around common compiler bugs. */
214 #define INTTYPE_SIGNED(t) (! ((t) 0 < (t) -1))
215 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
216 It is necessary at least when t == time_t. */
217 #define INTTYPE_MINIMUM(t) ((t) (INTTYPE_SIGNED (t) \
218 ? ~ (t) 0 << (sizeof(t) * CHAR_BIT - 1) : (t) 0))
219 #define INTTYPE_MAXIMUM(t) ((t) (~ (t) 0 - INTTYPE_MINIMUM (t)))
221 /* Use that infrastructure to provide a few constants. */
223 # define UCHAR_MAX INTTYPE_MAXIMUM (unsigned char)
226 #ifdef TIME_WITH_SYS_TIME
227 # include <sys/time.h>
231 # include <sys/time.h>
242 # ifdef HAVE_SYS_FILE_H
243 # include <sys/file.h>
251 #ifdef HAVE_LANGINFO_CODESET
252 # include <langinfo.h>
255 #ifndef HAVE_SETLOCALE
256 # define setlocale(category, locale) (locale)
264 # define dgettext(package, msgid) (msgid)
268 # define _(msgid) dgettext (PACKAGE, msgid)
272 # define N_(msgid) msgid
275 /* Some systems define these in, e.g., param.h. We undefine these names
276 here to avoid the warnings. We prefer to use our definitions since we
277 know they are correct. */
281 #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
282 #define MAX(X,Y) ((X) > (Y) ? (X) : (Y))
284 /* The HAVE_DECL_* macros are three-state, undefined, 0 or 1. If they
285 are defined to 0 then we must provide the relevant declaration
286 here. These checks will be in the undefined state while configure
287 is running so be careful to test "defined (HAVE_DECL_*)". */
289 #if defined (HAVE_DECL_ABORT) && !HAVE_DECL_ABORT
290 extern void abort (void);
294 # include <sys/stat.h>
297 /* Test if something is a normal file. */
299 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
302 /* Test if something is a directory. */
304 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
307 /* Test if something is a character special file. */
309 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
312 /* Test if something is a block special file. */
314 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
317 /* Test if something is a socket. */
320 # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
322 # define S_ISSOCK(m) 0
326 /* Test if something is a FIFO. */
329 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
331 # define S_ISFIFO(m) 0
335 /* Approximate O_NOCTTY and O_BINARY. */
343 /* Filename handling macros. */
344 #include "filenames.h"
346 /* Get libiberty declarations. */
347 #include "libiberty.h"
348 #include "safe-ctype.h"
350 /* 1 if we have C99 designated initializers.
352 ??? C99 designated initializers are not supported by most C++
353 compilers, including G++. -- gdr, 2005-05-18 */
354 #if !defined(HAVE_DESIGNATED_INITIALIZERS)
355 #define HAVE_DESIGNATED_INITIALIZERS \
356 ((!defined(__cplusplus) && (GCC_VERSION >= 2007)) \
357 || (__STDC_VERSION__ >= 199901L))
360 /* Be conservative and only use enum bitfields with GCC.
361 FIXME: provide a complete autoconf test for buggy enum bitfields. */
363 #if (GCC_VERSION > 2000)
364 #define ENUM_BITFIELD(TYPE) __extension__ enum TYPE
366 #define ENUM_BITFIELD(TYPE) unsigned int
370 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *) 0)->MEMBER)
373 /* __builtin_expect(A, B) evaluates to A, but notifies the compiler that
374 the most likely value of A is B. This feature was added at some point
375 between 2.95 and 3.0. Let's use 3.0 as the lower bound for now. */
376 #if (GCC_VERSION < 3000)
377 #define __builtin_expect(a, b) (a)
380 /* Provide a fake boolean type. We make no attempt to use the
381 C99 _Bool, as it may not be available in the bootstrap compiler,
382 and even if it is, it is liable to be buggy.
383 This must be after all inclusion of system headers, as some of
384 them will mess us up. */
392 #define bool unsigned char
397 /* Some compilers do not allow the use of unsigned char in bitfields. */
398 #define BOOL_BITFIELD unsigned int
400 /* Poison identifiers we do not want to use. */
401 #if (GCC_VERSION >= 3000)
406 #pragma GCC poison calloc strdup
407 #pragma GCC poison malloc realloc
409 /* Libiberty macros that are no longer used in GCC. */
410 #undef ANSI_PROTOTYPES
418 #pragma GCC poison ANSI_PROTOTYPES PTR_CONST LONG_DOUBLE VPARAMS VA_OPEN \
419 VA_FIXEDARG VA_CLOSE VA_START
421 /* Note: not all uses of the `index' token (e.g. variable names and
422 structure members) have been eliminated. */
427 #pragma GCC poison bcopy bzero bcmp rindex
429 #endif /* GCC >= 3.0 */
430 #endif /* ! LIBCPP_SYSTEM_H */