]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/system.h
re PR tree-optimization/16437 (New c-torture failures after bitfield patch)
[thirdparty/gcc.git] / gcc / system.h
CommitLineData
c5c76735
JL
1/* Get common system includes and various definitions and declarations based
2 on autoconf macros.
d9221e01
KH
3 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004
4 Free Software Foundation, Inc.
aca69483 5
1322177d 6This file is part of GCC.
1b0c6de6 7
1322177d
LB
8GCC is free software; you can redistribute it and/or modify it under
9the terms of the GNU General Public License as published by the Free
10Software Foundation; either version 2, or (at your option) any later
11version.
1b0c6de6 12
1322177d
LB
13GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
1b0c6de6
JL
17
18You should have received a copy of the GNU General Public License
1322177d
LB
19along with GCC; see the file COPYING. If not, write to the Free
20Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2102111-1307, USA. */
aca69483 22
c5c76735 23
88657302
RH
24#ifndef GCC_SYSTEM_H
25#define GCC_SYSTEM_H
aca69483 26
2a0621b9 27/* We must include stdarg.h before stdio.h. */
789f983a 28#include <stdarg.h>
789f983a 29
6f81b1ad
RH
30#ifndef va_copy
31# ifdef __va_copy
32# define va_copy(d,s) __va_copy((d),(s))
33# else
34# define va_copy(d,s) ((d) = (s))
35# endif
36#endif
37
d6edb99e
ZW
38#ifdef HAVE_STDDEF_H
39# include <stddef.h>
40#endif
41
aca69483 42#include <stdio.h>
51db713f
KG
43
44/* Define a generic NULL if one hasn't already been defined. */
45#ifndef NULL
46#define NULL 0
47#endif
48
54953b66 49/* The compiler is not a multi-threaded application and therefore we
3b681e9d
ZW
50 do not have to use the locking functions. In fact, using the locking
51 functions can cause the compiler to be significantly slower under
52 I/O bound conditions (such as -g -O0 on very large source files).
9c30c0e7 53
3b681e9d 54 HAVE_DECL_PUTC_UNLOCKED actually indicates whether or not the stdio
f31e826b
KG
55 code is multi-thread safe by default. If it is set to 0, then do
56 not worry about using the _unlocked functions.
0d569849 57
3b681e9d
ZW
58 fputs_unlocked, fwrite_unlocked, and fprintf_unlocked are
59 extensions and need to be prototyped by hand (since we do not
60 define _GNU_SOURCE). */
9c30c0e7 61
3b681e9d
ZW
62#if defined HAVE_DECL_PUTC_UNLOCKED && HAVE_DECL_PUTC_UNLOCKED
63
64# ifdef HAVE_PUTC_UNLOCKED
65# undef putc
66# define putc(C, Stream) putc_unlocked (C, Stream)
67# endif
68# ifdef HAVE_FPUTC_UNLOCKED
69# undef fputc
70# define fputc(C, Stream) fputc_unlocked (C, Stream)
71# endif
72
73# ifdef HAVE_FPUTS_UNLOCKED
74# undef fputs
75# define fputs(String, Stream) fputs_unlocked (String, Stream)
76# if defined (HAVE_DECL_FPUTS_UNLOCKED) && !HAVE_DECL_FPUTS_UNLOCKED
2a0621b9 77extern int fputs_unlocked (const char *, FILE *);
3b681e9d
ZW
78# endif
79# endif
80# ifdef HAVE_FWRITE_UNLOCKED
81# undef fwrite
82# define fwrite(Ptr, Size, N, Stream) fwrite_unlocked (Ptr, Size, N, Stream)
83# if defined (HAVE_DECL_FWRITE_UNLOCKED) && !HAVE_DECL_FWRITE_UNLOCKED
2a0621b9 84extern int fwrite_unlocked (const void *, size_t, size_t, FILE *);
3b681e9d 85# endif
9c30c0e7 86# endif
3b681e9d
ZW
87# ifdef HAVE_FPRINTF_UNLOCKED
88# undef fprintf
89/* We can't use a function-like macro here because we don't know if
90 we have varargs macros. */
91# define fprintf fprintf_unlocked
92# if defined (HAVE_DECL_FPRINTF_UNLOCKED) && !HAVE_DECL_FPRINTF_UNLOCKED
2a0621b9 93extern int fprintf_unlocked (FILE *, const char *, ...);
3b681e9d
ZW
94# endif
95# endif
96
54953b66
UD
97#endif
98
0d569849 99/* ??? Glibc's fwrite/fread_unlocked macros cause
1c99d804
RH
100 "warning: signed and unsigned type in conditional expression". */
101#undef fread_unlocked
102#undef fwrite_unlocked
103
f6bbde28
ZW
104/* There are an extraordinary number of issues with <ctype.h>.
105 The last straw is that it varies with the locale. Use libiberty's
106 replacement instead. */
107#include <safe-ctype.h>
aca69483 108
aca69483 109#include <sys/types.h>
c5c76735 110
aca69483
KG
111#include <errno.h>
112
6c889b67 113#if !defined (errno) && defined (HAVE_DECL_ERRNO) && !HAVE_DECL_ERRNO
aca69483
KG
114extern int errno;
115#endif
116
87608693
KG
117/* Some of glibc's string inlines cause warnings. Plus we'd rather
118 rely on (and therefore test) GCC's string builtins. */
119#define __NO_STRING_INLINES
120
ccc7d11a 121#ifdef STRING_WITH_STRINGS
aca69483 122# include <string.h>
ccc7d11a 123# include <strings.h>
aca69483 124#else
ccc7d11a
KG
125# ifdef HAVE_STRING_H
126# include <string.h>
127# else
128# ifdef HAVE_STRINGS_H
129# include <strings.h>
130# endif
aca69483
KG
131# endif
132#endif
133
134#ifdef HAVE_STDLIB_H
135# include <stdlib.h>
136#endif
137
eaf4e618
ZW
138/* If we don't have an overriding definition, set SUCCESS_EXIT_CODE and
139 FATAL_EXIT_CODE to EXIT_SUCCESS and EXIT_FAILURE respectively,
140 or 0 and 1 if those macros are not defined. */
141#ifndef SUCCESS_EXIT_CODE
142# ifdef EXIT_SUCCESS
143# define SUCCESS_EXIT_CODE EXIT_SUCCESS
144# else
145# define SUCCESS_EXIT_CODE 0
146# endif
147#endif
148
149#ifndef FATAL_EXIT_CODE
150# ifdef EXIT_FAILURE
151# define FATAL_EXIT_CODE EXIT_FAILURE
152# else
153# define FATAL_EXIT_CODE 1
154# endif
155#endif
156
aca69483
KG
157#ifdef HAVE_UNISTD_H
158# include <unistd.h>
159#endif
160
161#ifdef HAVE_SYS_PARAM_H
162# include <sys/param.h>
23d1aac4 163/* We use this identifier later and it appears in some vendor param.h's. */
655781b7 164# undef PREFETCH
aca69483
KG
165#endif
166
167#if HAVE_LIMITS_H
168# include <limits.h>
169#endif
170
75e93faa
ZW
171/* Get definitions of HOST_WIDE_INT and HOST_WIDEST_INT. */
172#include "hwint.h"
f80d6fd7 173
5297e085
KG
174/* A macro to determine whether a VALUE lies inclusively within a
175 certain range without evaluating the VALUE more than once. This
176 macro won't warn if the VALUE is unsigned and the LOWER bound is
177 zero, as it would e.g. with "VALUE >= 0 && ...". Note the LOWER
178 bound *is* evaluated twice, and LOWER must not be greater than
179 UPPER. However the bounds themselves can be either positive or
180 negative. */
181#define IN_RANGE(VALUE, LOWER, UPPER) \
cf403648 182 ((unsigned HOST_WIDE_INT) ((VALUE) - (LOWER)) <= ((UPPER) - (LOWER)))
5297e085 183
f12bc141
ZW
184/* Infrastructure for defining missing _MAX and _MIN macros. Note that
185 macros defined with these cannot be used in #if. */
186
187/* The extra casts work around common compiler bugs. */
188#define INTTYPE_SIGNED(t) (! ((t) 0 < (t) -1))
189/* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
190 It is necessary at least when t == time_t. */
191#define INTTYPE_MINIMUM(t) ((t) (INTTYPE_SIGNED (t) \
192 ? ~ (t) 0 << (sizeof(t) * CHAR_BIT - 1) : (t) 0))
193#define INTTYPE_MAXIMUM(t) ((t) (~ (t) 0 - INTTYPE_MINIMUM (t)))
194
195/* Use that infrastructure to provide a few constants. */
196#ifndef UCHAR_MAX
197# define UCHAR_MAX INTTYPE_MAXIMUM (unsigned char)
198#endif
199
aca69483
KG
200#ifdef TIME_WITH_SYS_TIME
201# include <sys/time.h>
202# include <time.h>
203#else
204# if HAVE_SYS_TIME_H
e572c0c6 205# include <sys/time.h>
aca69483 206# else
e572c0c6
KG
207# ifdef HAVE_TIME_H
208# include <time.h>
209# endif
210# endif
aca69483
KG
211#endif
212
213#ifdef HAVE_FCNTL_H
214# include <fcntl.h>
215#else
e572c0c6
KG
216# ifdef HAVE_SYS_FILE_H
217# include <sys/file.h>
218# endif
aca69483
KG
219#endif
220
221#ifndef SEEK_SET
222# define SEEK_SET 0
223# define SEEK_CUR 1
224# define SEEK_END 2
225#endif
226#ifndef F_OK
227# define F_OK 0
228# define X_OK 1
229# define W_OK 2
230# define R_OK 4
231#endif
e572c0c6
KG
232#ifndef O_RDONLY
233# define O_RDONLY 0
234#endif
235#ifndef O_WRONLY
236# define O_WRONLY 1
237#endif
aca69483 238
36b8337d
KG
239/* Some systems define these in, e.g., param.h. We undefine these names
240 here to avoid the warnings. We prefer to use our definitions since we
241 know they are correct. */
242
243#undef MIN
244#undef MAX
245#define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
246#define MAX(X,Y) ((X) > (Y) ? (X) : (Y))
247
13799af3
MM
248/* Returns the least number N such that N * Y >= X. */
249#define CEIL(x,y) (((x) + (y) - 1) / (y))
250
e9831ca0
KG
251#ifdef HAVE_SYS_WAIT_H
252#include <sys/wait.h>
253#endif
254
255#ifndef WIFSIGNALED
256#define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
257#endif
258#ifndef WTERMSIG
259#define WTERMSIG(S) ((S) & 0x7f)
260#endif
261#ifndef WIFEXITED
262#define WIFEXITED(S) (((S) & 0xff) == 0)
263#endif
264#ifndef WEXITSTATUS
265#define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
266#endif
8fa213ac
PDM
267#ifndef WSTOPSIG
268#define WSTOPSIG WEXITSTATUS
269#endif
15dda4d3
KG
270#ifndef WCOREDUMP
271#define WCOREDUMP(S) ((S) & WCOREFLG)
272#endif
273#ifndef WCOREFLG
274#define WCOREFLG 0200
275#endif
e9831ca0 276
f31e826b
KG
277/* The HAVE_DECL_* macros are three-state, undefined, 0 or 1. If they
278 are defined to 0 then we must provide the relevant declaration
279 here. These checks will be in the undefined state while configure
280 is running so be careful to test "defined (HAVE_DECL_*)". */
aca69483 281
f31e826b 282#if defined (HAVE_DECL_ATOF) && !HAVE_DECL_ATOF
2a0621b9 283extern double atof (const char *);
8f81384f
KG
284#endif
285
f31e826b 286#if defined (HAVE_DECL_ATOL) && !HAVE_DECL_ATOL
2a0621b9 287extern long atol (const char *);
8f81384f
KG
288#endif
289
f31e826b 290#if defined (HAVE_DECL_FREE) && !HAVE_DECL_FREE
2a0621b9 291extern void free (void *);
aca69483
KG
292#endif
293
f31e826b 294#if defined (HAVE_DECL_GETCWD) && !HAVE_DECL_GETCWD
2a0621b9 295extern char *getcwd (char *, size_t);
6cd5dccd
KG
296#endif
297
f31e826b 298#if defined (HAVE_DECL_GETENV) && !HAVE_DECL_GETENV
2a0621b9 299extern char *getenv (const char *);
79e11844
KG
300#endif
301
ebb13e7e 302#if defined (HAVE_DECL_GETOPT) && !HAVE_DECL_GETOPT
2a0621b9 303extern int getopt (int, char * const *, const char *);
ebb13e7e
RK
304#endif
305
6a257778
AL
306#if defined(HAVE_DECL_GETPAGESIZE) && !HAVE_DECL_GETPAGESIZE
307extern long getpagesize (void);
308#endif
309
f31e826b 310#if defined (HAVE_DECL_GETWD) && !HAVE_DECL_GETWD
2a0621b9 311extern char *getwd (char *);
6cd5dccd
KG
312#endif
313
f31e826b 314#if defined (HAVE_DECL_SBRK) && !HAVE_DECL_SBRK
2a0621b9 315extern void *sbrk (int);
8f81384f
KG
316#endif
317
f31e826b 318#if defined (HAVE_DECL_STRSTR) && !HAVE_DECL_STRSTR
2a0621b9 319extern char *strstr (const char *, const char *);
d3d5cc97
JL
320#endif
321
c5c76735
JL
322#ifdef HAVE_MALLOC_H
323#include <malloc.h>
324#endif
325
f31e826b 326#if defined (HAVE_DECL_MALLOC) && !HAVE_DECL_MALLOC
2a0621b9 327extern void *malloc (size_t);
c5c76735
JL
328#endif
329
f31e826b 330#if defined (HAVE_DECL_CALLOC) && !HAVE_DECL_CALLOC
2a0621b9 331extern void *calloc (size_t, size_t);
c5c76735
JL
332#endif
333
f31e826b 334#if defined (HAVE_DECL_REALLOC) && !HAVE_DECL_REALLOC
2a0621b9 335extern void *realloc (void *, size_t);
c5c76735
JL
336#endif
337
759af044 338/* If the system doesn't provide strsignal, we get it defined in
2ba84f36 339 libiberty but no declaration is supplied. */
0a18ddf9
AS
340#if !defined (HAVE_STRSIGNAL) \
341 || (defined (HAVE_DECL_STRSIGNAL) && !HAVE_DECL_STRSIGNAL)
759af044 342# ifndef strsignal
2a0621b9 343extern const char *strsignal (int);
007e8d2a 344# endif
759af044 345#endif
007e8d2a 346
d2cabf16 347#ifdef HAVE_GETRLIMIT
f31e826b 348# if defined (HAVE_DECL_GETRLIMIT) && !HAVE_DECL_GETRLIMIT
d2cabf16 349# ifndef getrlimit
d4d4ae5f 350struct rlimit;
2a0621b9 351extern int getrlimit (int, struct rlimit *);
d2cabf16
KG
352# endif
353# endif
354#endif
355
356#ifdef HAVE_SETRLIMIT
f31e826b 357# if defined (HAVE_DECL_SETRLIMIT) && !HAVE_DECL_SETRLIMIT
d2cabf16 358# ifndef setrlimit
d4d4ae5f 359struct rlimit;
2a0621b9 360extern int setrlimit (int, const struct rlimit *);
d2cabf16
KG
361# endif
362# endif
363#endif
364
f31e826b 365#if defined (HAVE_DECL_ABORT) && !HAVE_DECL_ABORT
2a0621b9 366extern void abort (void);
2a611d21 367#endif
d4ba0ead 368
236ce4b2
ZW
369#if defined (HAVE_DECL_SNPRINTF) && !HAVE_DECL_SNPRINTF
370extern int snprintf (char *, size_t, const char *, ...);
371#endif
372
61d0346d 373/* 1 if we have C99 designated initializers. */
18922061 374#if !defined(HAVE_DESIGNATED_INITIALIZERS)
61d0346d
NB
375#define HAVE_DESIGNATED_INITIALIZERS \
376 ((GCC_VERSION >= 2007) || (__STDC_VERSION__ >= 199901L))
18922061 377#endif
61d0346d 378
a05e22b8
RH
379#if HAVE_SYS_STAT_H
380# include <sys/stat.h>
381#endif
9855b854
MN
382
383/* Test if something is a normal file. */
384#ifndef S_ISREG
385#define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
386#endif
387
388/* Test if something is a directory. */
389#ifndef S_ISDIR
390#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
391#endif
392
6458033d
ZW
393/* Test if something is a character special file. */
394#ifndef S_ISCHR
395#define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
396#endif
397
be3dad6f
PDM
398/* Test if something is a block special file. */
399#ifndef S_ISBLK
400#define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
401#endif
402
6458033d
ZW
403/* Test if something is a socket. */
404#ifndef S_ISSOCK
405# ifdef S_IFSOCK
406# define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
407# else
408# define S_ISSOCK(m) 0
409# endif
410#endif
411
412/* Test if something is a FIFO. */
413#ifndef S_ISFIFO
414# ifdef S_IFIFO
415# define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
416# else
417# define S_ISFIFO(m) 0
418# endif
419#endif
420
f3692274
ME
421/* Define well known filenos if the system does not define them. */
422#ifndef STDIN_FILENO
423# define STDIN_FILENO 0
424#endif
425#ifndef STDOUT_FILENO
426# define STDOUT_FILENO 1
427#endif
924d8a7c 428#ifndef STDERR_FILENO
f3692274
ME
429# define STDERR_FILENO 2
430#endif
431
2ba84f36 432/* Some systems have mkdir that takes a single argument. */
75923b2f
MK
433#ifdef MKDIR_TAKES_ONE_ARG
434# define mkdir(a,b) mkdir(a)
435#endif
436
1eb14644
KG
437/* Provide a way to print an address via printf. */
438#ifndef HOST_PTR_PRINTF
439# ifdef HAVE_PRINTF_PTR
440# define HOST_PTR_PRINTF "%p"
75b6f3fd
KG
441# elif SIZEOF_INT == SIZEOF_VOID_P
442# define HOST_PTR_PRINTF "%x"
443# elif SIZEOF_LONG == SIZEOF_VOID_P
444# define HOST_PTR_PRINTF "%lx"
1eb14644 445# else
75b6f3fd 446# define HOST_PTR_PRINTF "%llx"
1eb14644
KG
447# endif
448#endif /* ! HOST_PTR_PRINTF */
449
d5b6516d
MK
450/* By default, colon separates directories in a path. */
451#ifndef PATH_SEPARATOR
452#define PATH_SEPARATOR ':'
453#endif
454
3dce1408
ZW
455/* Filename handling macros. */
456#include "filenames.h"
457
458/* These should be phased out in favor of IS_DIR_SEPARATOR, where possible. */
d5b6516d 459#ifndef DIR_SEPARATOR
3dce1408
ZW
460# define DIR_SEPARATOR '/'
461# ifdef HAVE_DOS_BASED_FILE_SYSTEM
462# define DIR_SEPARATOR_2 '\\'
463# endif
c5c0b3d9
RK
464#endif
465
2ba84f36 466/* Get libiberty declarations. */
2778b98d
KG
467#include "libiberty.h"
468
49009afd
JL
469/* Provide a default for the HOST_BIT_BUCKET.
470 This suffices for POSIX-like hosts. */
471
472#ifndef HOST_BIT_BUCKET
473#define HOST_BIT_BUCKET "/dev/null"
474#endif
475
1c62e7b2 476/* Be conservative and only use enum bitfields with GCC.
9612ab65 477 FIXME: provide a complete autoconf test for buggy enum bitfields. */
c149cc37 478
9612ab65 479#if (GCC_VERSION > 2000)
a3bf324c 480#define ENUM_BITFIELD(TYPE) __extension__ enum TYPE
c149cc37
RL
481#else
482#define ENUM_BITFIELD(TYPE) unsigned int
1c62e7b2
KG
483#endif
484
e0125cf3 485#ifndef offsetof
cf403648 486#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *) 0)->MEMBER)
e0125cf3 487#endif
c149cc37 488
fbfc1192
ZW
489/* Various error reporting routines want to use __FUNCTION__. */
490#if (GCC_VERSION < 2007)
791ef777 491#ifndef __FUNCTION__
fbfc1192 492#define __FUNCTION__ "?"
791ef777 493#endif /* ! __FUNCTION__ */
fbfc1192
ZW
494#endif
495
2c3fcba6
ZW
496/* __builtin_expect(A, B) evaluates to A, but notifies the compiler that
497 the most likely value of A is B. This feature was added at some point
498 between 2.95 and 3.0. Let's use 3.0 as the lower bound for now. */
499#if (GCC_VERSION < 3000)
500#define __builtin_expect(a, b) (a)
501#endif
502
2fac9c01
ZW
503/* Provide a fake boolean type. We make no attempt to use the
504 C99 _Bool, as it may not be available in the bootstrap compiler,
505 and even if it is, it is liable to be buggy.
506 This must be after all inclusion of system headers, as some of
507 them will mess us up. */
d6edb99e
ZW
508#undef bool
509#undef true
510#undef false
511#undef TRUE
512#undef FALSE
513
2fac9c01
ZW
514#define bool unsigned char
515#define true 1
516#define false 0
d6edb99e
ZW
517
518#define TRUE true
519#define FALSE false
520
2fac9c01
ZW
521/* Some compilers do not allow the use of unsigned char in bitfields. */
522#define BOOL_BITFIELD unsigned int
523
f4ce9d90
KG
524/* As the last action in this file, we poison the identifiers that
525 shouldn't be used. Note, luckily gcc-3.0's token-based integrated
526 preprocessor won't trip on poisoned identifiers that arrive from
527 the expansion of macros. E.g. #define strrchr rindex, won't error
528 if rindex is poisoned after this directive is issued and later on
529 strrchr is called.
530
531 Note: We define bypass macros for the few cases where we really
532 want to use the libc memory allocation routines. Otherwise we
533 insist you use the "x" versions from libiberty. */
534
535#define really_call_malloc malloc
536#define really_call_calloc calloc
537#define really_call_realloc realloc
538
f92ed976 539#if defined(FLEX_SCANNER) || defined(YYBISON) || defined(YYBYACC)
4977bab6 540/* Flex and bison use malloc and realloc. Yuk. Note that this means
32dd366d 541 really_call_* cannot be used in a .l or .y file. */
4977bab6
ZW
542#define malloc xmalloc
543#define realloc xrealloc
544#endif
545
f4ce9d90
KG
546#if (GCC_VERSION >= 3000)
547
77b84559
KG
548/* Note autoconf checks for prototype declarations and includes
549 system.h while doing so. Only poison these tokens if actually
550 compiling gcc, so that the autoconf declaration tests for malloc
551 etc don't spuriously fail. */
552#ifdef IN_GCC
8a0e5115
KG
553#undef calloc
554#undef strdup
e2500fed
GK
555 #pragma GCC poison calloc strdup
556
4977bab6 557#if !defined(FLEX_SCANNER) && !defined(YYBISON)
e2500fed
GK
558#undef malloc
559#undef realloc
560 #pragma GCC poison malloc realloc
561#endif
41441dc7
NB
562
563/* Old target macros that have moved to the target hooks structure. */
564 #pragma GCC poison ASM_OPEN_PAREN ASM_CLOSE_PAREN \
565 FUNCTION_PROLOGUE FUNCTION_EPILOGUE \
566 FUNCTION_END_PROLOGUE FUNCTION_BEGIN_EPILOGUE \
567 DECL_MACHINE_ATTRIBUTES COMP_TYPE_ATTRIBUTES INSERT_ATTRIBUTES \
568 VALID_MACHINE_DECL_ATTRIBUTE VALID_MACHINE_TYPE_ATTRIBUTE \
569 SET_DEFAULT_TYPE_ATTRIBUTES SET_DEFAULT_DECL_ATTRIBUTES \
570 MERGE_MACHINE_TYPE_ATTRIBUTES MERGE_MACHINE_DECL_ATTRIBUTES \
aa6ad1a6 571 MD_INIT_BUILTINS MD_EXPAND_BUILTIN ASM_OUTPUT_CONSTRUCTOR \
44a147ad 572 ASM_OUTPUT_DESTRUCTOR SIGNED_CHAR_SPEC MAX_CHAR_TYPE_SIZE \
fb49053f 573 WCHAR_UNSIGNED UNIQUE_SECTION SELECT_SECTION SELECT_RTX_SECTION \
3961e8fe 574 ENCODE_SECTION_INFO STRIP_NAME_ENCODING ASM_GLOBALIZE_LABEL \
dcefdf67 575 ASM_OUTPUT_MI_THUNK CONST_COSTS RTX_COSTS DEFAULT_RTX_COSTS \
75c20980 576 ADDRESS_COST MACHINE_DEPENDENT_REORG ASM_FILE_START ASM_FILE_END \
30ee56e1
ZW
577 ASM_SIMPLIFY_DWARF_ADDR INIT_TARGET_OPTABS INIT_SUBTARGET_OPTABS \
578 INIT_GOFAST_OPTABS MULSI3_LIBCALL MULDI3_LIBCALL DIVSI3_LIBCALL \
579 DIVDI3_LIBCALL UDIVSI3_LIBCALL UDIVDI3_LIBCALL MODSI3_LIBCALL \
4ac8340c 580 MODDI3_LIBCALL UMODSI3_LIBCALL UMODDI3_LIBCALL BUILD_VA_LIST_TYPE \
510d1e80 581 PRETEND_OUTGOING_VARARGS_NAMED STRUCT_VALUE_INCOMING_REGNUM \
b602b7b6 582 ASM_OUTPUT_SECTION_NAME PROMOTE_FUNCTION_ARGS \
fefcb65c
KH
583 STRUCT_VALUE_INCOMING STRICT_ARGUMENT_NAMING \
584 PROMOTE_FUNCTION_RETURN PROMOTE_PROTOTYPES STRUCT_VALUE_REGNUM \
221ee7c9 585 SETUP_INCOMING_VARARGS EXPAND_BUILTIN_SAVEREGS \
84b8b0e0
ZW
586 DEFAULT_SHORT_ENUMS SPLIT_COMPLEX_ARGS MD_ASM_CLOBBERS \
587 HANDLE_PRAGMA_REDEFINE_EXTNAME HANDLE_PRAGMA_EXTERN_PREFIX
aa6ad1a6 588
e2500fed 589/* Other obsolete target macros, or macros that used to be in target
006946e4
JM
590 headers and were not used, and may be obsolete or may never have
591 been used. */
c08f71aa 592 #pragma GCC poison INT_ASM_OP ASM_OUTPUT_EH_REGION_BEG CPP_PREDEFINES \
6a6c0154 593 ASM_OUTPUT_EH_REGION_END ASM_OUTPUT_LABELREF_AS_INT SMALL_STACK \
ed722f66 594 DOESNT_NEED_UNWINDER EH_TABLE_LOOKUP OBJC_SELECTORS_WITHOUT_LABELS \
16c484c7 595 OMIT_EH_TABLE EASY_DIV_EXPR IMPLICIT_FIX_EXPR \
006946e4 596 LONGJMP_RESTORE_FROM_STACK MAX_INT_TYPE_SIZE ASM_IDENTIFY_GCC \
c99d986a 597 STDC_VALUE TRAMPOLINE_ALIGN ASM_IDENTIFY_GCC_AFTER_SOURCE \
f458d1d5 598 SLOW_ZERO_EXTEND SUBREG_REGNO_OFFSET DWARF_LINE_MIN_INSTR_LENGTH \
a11eba95 599 TRADITIONAL_RETURN_FLOAT NO_BUILTIN_SIZE_TYPE \
fc881338
RH
600 NO_BUILTIN_PTRDIFF_TYPE NO_BUILTIN_WCHAR_TYPE NO_BUILTIN_WINT_TYPE \
601 BLOCK_PROFILER BLOCK_PROFILER_CODE FUNCTION_BLOCK_PROFILER \
602 FUNCTION_BLOCK_PROFILER_EXIT MACHINE_STATE_SAVE \
c0667597 603 MACHINE_STATE_RESTORE SCCS_DIRECTIVE SECTION_ASM_OP \
e5bcbd89 604 ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL ASM_OUTPUT_INTERNAL_LABEL \
80eaf415 605 OBJC_PROLOGUE ALLOCATE_TRAMPOLINE HANDLE_PRAGMA ROUND_TYPE_SIZE \
f691dc3b
AJ
606 ROUND_TYPE_SIZE_UNIT CONST_SECTION_ASM_OP CRT_GET_RFIB_TEXT \
607 DBX_LBRAC_FIRST DBX_OUTPUT_ENUM DBX_OUTPUT_SOURCE_FILENAME \
608 DBX_WORKING_DIRECTORY INSN_CACHE_DEPTH INSN_CACHE_SIZE \
5145a02e 609 INSN_CACHE_LINE_WIDTH INIT_SECTION_PREAMBLE NEED_ATEXIT ON_EXIT \
edf11bda 610 EXIT_BODY OBJECT_FORMAT_ROSE MULTIBYTE_CHARS MAP_CHARACTER \
ba029213 611 LIBGCC_NEEDS_DOUBLE FINAL_PRESCAN_LABEL DEFAULT_CALLER_SAVES \
c6a515f4 612 LOAD_ARGS_REVERSED MAX_INTEGER_COMPUTATION_MODE \
b816f339 613 CONVERT_HARD_REGISTER_TO_SSA_P ASM_OUTPUT_MAIN_SOURCE_FILENAME \
616f6d84 614 FIRST_INSN_ADDRESS TEXT_SECTION SHARED_BSS_SECTION_ASM_OP \
16201823 615 PROMOTED_MODE EXPAND_BUILTIN_VA_END \
9b2b3375 616 LINKER_DOES_NOT_WORK_WITH_DWARF2 FUNCTION_ARG_KEEP_AS_REFERENCE \
1197924d 617 GIV_SORT_CRITERION MAX_LONG_TYPE_SIZE MAX_LONG_DOUBLE_TYPE_SIZE \
6c5caf00 618 MAX_WCHAR_TYPE_SIZE GCOV_TYPE_SIZE SHARED_SECTION_ASM_OP \
6de9cd9a 619 INTEGRATE_THRESHOLD \
c1a41c2f 620 FINAL_REG_PARM_STACK_SPACE MAYBE_REG_PARM_STACK_SPACE \
fdf89bf5 621 TRADITIONAL_PIPELINE_INTERFACE DFA_PIPELINE_INTERFACE \
67dfe110 622 DBX_OUTPUT_STANDARD_TYPES BUILTIN_SETJMP_FRAME_VALUE \
082a099c 623 SUNOS4_SHARED_LIBRARIES PROMOTE_FOR_CALL_ONLY \
bb2d400f 624 SPACE_AFTER_L_OPTION NO_RECURSIVE_FUNCTION_CSE \
8f99553f 625 DEFAULT_MAIN_RETURN TARGET_MEM_FUNCTIONS
aa6ad1a6 626
e2500fed
GK
627/* Hooks that are no longer used. */
628 #pragma GCC poison LANG_HOOKS_FUNCTION_MARK LANG_HOOKS_FUNCTION_FREE \
03aa99d4 629 LANG_HOOKS_MARK_TREE LANG_HOOKS_INSERT_DEFAULT_ATTRIBUTES
e2500fed 630
b0c231bb
KG
631/* Libiberty macros that are no longer used in GCC. */
632#undef ANSI_PROTOTYPES
633#undef PTR_CONST
634#undef LONG_DOUBLE
635#undef VPARAMS
636#undef VA_OPEN
637#undef VA_FIXEDARG
638#undef VA_CLOSE
639#undef VA_START
640 #pragma GCC poison ANSI_PROTOTYPES PTR_CONST LONG_DOUBLE VPARAMS VA_OPEN \
641 VA_FIXEDARG VA_CLOSE VA_START
77b84559 642#endif /* IN_GCC */
f4ce9d90 643
8e944909
KG
644/* Note: not all uses of the `index' token (e.g. variable names and
645 structure members) have been eliminated. */
646#undef bcopy
8a0e5115
KG
647#undef bzero
648#undef bcmp
649#undef rindex
8e944909 650 #pragma GCC poison bcopy bzero bcmp rindex
f4ce9d90
KG
651
652#endif /* GCC >= 3.0 */
653
88657302 654#endif /* ! GCC_SYSTEM_H */