]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/c-family/c-common.h
re PR other/51272 (ld: Unsatisfied symbol "_ITM_registerTMCloneTable" in file /test...
[thirdparty/gcc.git] / gcc / c-family / c-common.h
CommitLineData
7f4edbcb 1/* Definitions for c-common.c.
517cbe13 2 Copyright (C) 1987, 1993, 1994, 1995, 1997, 1998,
7bd11157 3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011
66647d44 4 Free Software Foundation, Inc.
7f4edbcb 5
1322177d 6This file is part of GCC.
7f4edbcb 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
9dcd6f09 10Software Foundation; either version 3, or (at your option) any later
1322177d 11version.
7f4edbcb 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.
7f4edbcb
BS
17
18You should have received a copy of the GNU General Public License
9dcd6f09
NC
19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
7f4edbcb 21
0e5921e8
ZW
22#ifndef GCC_C_COMMON_H
23#define GCC_C_COMMON_H
24
8f17b5c5 25#include "splay-tree.h"
2a967f3d 26#include "cpplib.h"
d07605f5 27#include "ggc.h"
8f17b5c5 28
59cc9210
SB
29/* In order for the format checking to accept the C frontend
30 diagnostic framework extensions, you must include this file before
718f9c0f 31 diagnostic-core.h, not after. The C front end formats are a subset of those
59cc9210
SB
32 for C++, so they are the appropriate set to use in common code;
33 cp-tree.h overrides this for C++. */
718f9c0f
MLI
34#if defined(GCC_DIAGNOSTIC_CORE_H)
35#error \
36In order for the format checking to accept the C front end diagnostic \
37framework extensions, you must include this file before diagnostic-core.h \
38never after.
39#endif
59cc9210
SB
40#ifndef GCC_DIAG_STYLE
41#define GCC_DIAG_STYLE __gcc_cdiag__
42#endif
43#include "diagnostic-core.h"
44
f2c5f623 45/* Usage of TREE_LANG_FLAG_?:
3af07c22 46 0: IDENTIFIER_MARKED (used by search routines).
f2c5f623 47 DECL_PRETTY_FUNCTION_P (in VAR_DECL)
928c19bb 48 C_MAYBE_CONST_EXPR_INT_OPERANDS (in C_MAYBE_CONST_EXPR, for C)
f2c5f623 49 1: C_DECLARED_LABEL_FLAG (in LABEL_DECL)
325c3691 50 STATEMENT_LIST_STMT_EXPR (in STATEMENT_LIST)
928c19bb 51 C_MAYBE_CONST_EXPR_NON_CONST (in C_MAYBE_CONST_EXPR, for C)
6de9cd9a 52 2: unused
174283a3 53 3: STATEMENT_LIST_HAS_LABEL (in STATEMENT_LIST)
325c3691 54 4: unused
f2c5f623
BC
55*/
56
0e5921e8 57/* Reserved identifiers. This is the union of all the keywords for C,
40f03658 58 C++, and Objective-C. All the type modifiers have to be in one
0e5921e8 59 block at the beginning, because they are used as mask bits. There
bbceee64 60 are 28 type modifiers; if we add many more we will have to redesign
0e5921e8 61 the mask mechanism. */
f09f1de5
MM
62
63enum rid
64{
0e5921e8 65 /* Modifiers: */
2ba84f36 66 /* C, in empirical order of frequency. */
0e5921e8
ZW
67 RID_STATIC = 0,
68 RID_UNSIGNED, RID_LONG, RID_CONST, RID_EXTERN,
69 RID_REGISTER, RID_TYPEDEF, RID_SHORT, RID_INLINE,
70 RID_VOLATILE, RID_SIGNED, RID_AUTO, RID_RESTRICT,
bbceee64 71 RID_NORETURN,
0e5921e8
ZW
72
73 /* C extensions */
ab22c1fa 74 RID_COMPLEX, RID_THREAD, RID_SAT,
0e5921e8
ZW
75
76 /* C++ */
77 RID_FRIEND, RID_VIRTUAL, RID_EXPLICIT, RID_EXPORT, RID_MUTABLE,
78
1973201f
NP
79 /* ObjC ("PQ" reserved words - they do not appear after a '@' and
80 are keywords only in specific contexts) */
b8363a24 81 RID_IN, RID_OUT, RID_INOUT, RID_BYCOPY, RID_BYREF, RID_ONEWAY,
0e5921e8 82
668ea4b1
IS
83 /* ObjC ("PATTR" reserved words - they do not appear after a '@'
84 and are keywords only as property attributes) */
200290f2
NP
85 RID_GETTER, RID_SETTER,
86 RID_READONLY, RID_READWRITE,
87 RID_ASSIGN, RID_RETAIN, RID_COPY,
200290f2 88 RID_NONATOMIC,
668ea4b1 89
fa5da7de
JM
90 /* C (reserved and imaginary types not implemented, so any use is a
91 syntax error) */
92 RID_IMAGINARY,
93
0e5921e8
ZW
94 /* C */
95 RID_INT, RID_CHAR, RID_FLOAT, RID_DOUBLE, RID_VOID,
a6766312 96 RID_INT128,
0e5921e8
ZW
97 RID_ENUM, RID_STRUCT, RID_UNION, RID_IF, RID_ELSE,
98 RID_WHILE, RID_DO, RID_FOR, RID_SWITCH, RID_CASE,
99 RID_DEFAULT, RID_BREAK, RID_CONTINUE, RID_RETURN, RID_GOTO,
100 RID_SIZEOF,
101
102 /* C extensions */
103 RID_ASM, RID_TYPEOF, RID_ALIGNOF, RID_ATTRIBUTE, RID_VA_ARG,
da5b307a 104 RID_EXTENSION, RID_IMAGPART, RID_REALPART, RID_LABEL, RID_CHOOSE_EXPR,
f90e8e2e 105 RID_TYPES_COMPATIBLE_P, RID_BUILTIN_COMPLEX, RID_BUILTIN_SHUFFLE,
9a8ce21f 106 RID_DFLOAT32, RID_DFLOAT64, RID_DFLOAT128,
ab22c1fa 107 RID_FRACT, RID_ACCUM,
0e5921e8 108
d19fa6b5
JM
109 /* C1X */
110 RID_ALIGNAS,
111
eea1139b
ILT
112 /* This means to warn that this is a C++ keyword, and then treat it
113 as a normal identifier. */
114 RID_CXX_COMPAT_WARN,
115
0a35513e
AH
116 /* GNU transactional memory extension */
117 RID_TRANSACTION_ATOMIC, RID_TRANSACTION_RELAXED, RID_TRANSACTION_CANCEL,
118
0ba8a114
NS
119 /* Too many ways of getting the name of a function as a string */
120 RID_FUNCTION_NAME, RID_PRETTY_FUNCTION_NAME, RID_C99_FUNCTION_NAME,
121
1973201f
NP
122 /* C++ (some of these are keywords in Objective-C as well, but only
123 if they appear after a '@') */
0e5921e8
ZW
124 RID_BOOL, RID_WCHAR, RID_CLASS,
125 RID_PUBLIC, RID_PRIVATE, RID_PROTECTED,
126 RID_TEMPLATE, RID_NULL, RID_CATCH,
127 RID_DELETE, RID_FALSE, RID_NAMESPACE,
c22cacf3
MS
128 RID_NEW, RID_OFFSETOF, RID_OPERATOR,
129 RID_THIS, RID_THROW, RID_TRUE,
130 RID_TRY, RID_TYPENAME, RID_TYPEID,
b6baa67d 131 RID_USING, RID_CHAR16, RID_CHAR32,
0e5921e8
ZW
132
133 /* casts */
134 RID_CONSTCAST, RID_DYNCAST, RID_REINTCAST, RID_STATCAST,
135
cb68ec50 136 /* C++ extensions */
4daba884 137 RID_BASES, RID_DIRECT_BASES,
cb68ec50
PC
138 RID_HAS_NOTHROW_ASSIGN, RID_HAS_NOTHROW_CONSTRUCTOR,
139 RID_HAS_NOTHROW_COPY, RID_HAS_TRIVIAL_ASSIGN,
140 RID_HAS_TRIVIAL_CONSTRUCTOR, RID_HAS_TRIVIAL_COPY,
141 RID_HAS_TRIVIAL_DESTRUCTOR, RID_HAS_VIRTUAL_DESTRUCTOR,
142 RID_IS_ABSTRACT, RID_IS_BASE_OF,
4daba884 143 RID_IS_CLASS, RID_IS_CONVERTIBLE_TO,
cb68ec50 144 RID_IS_EMPTY, RID_IS_ENUM,
3c0d13bf
PC
145 RID_IS_LITERAL_TYPE, RID_IS_POD,
146 RID_IS_POLYMORPHIC, RID_IS_STD_LAYOUT,
147 RID_IS_TRIVIAL, RID_IS_UNION,
a0d260fc 148 RID_UNDERLYING_TYPE,
cb68ec50 149
218f0015 150 /* C++0x */
0a766368 151 RID_CONSTEXPR, RID_DECLTYPE, RID_NOEXCEPT, RID_NULLPTR, RID_STATIC_ASSERT,
218f0015 152
1973201f
NP
153 /* Objective-C ("AT" reserved words - they are only keywords when
154 they follow '@') */
3a3589b4 155 RID_AT_ENCODE, RID_AT_END,
0e5921e8 156 RID_AT_CLASS, RID_AT_ALIAS, RID_AT_DEFS,
c37d8c30 157 RID_AT_PRIVATE, RID_AT_PROTECTED, RID_AT_PUBLIC, RID_AT_PACKAGE,
c22cacf3 158 RID_AT_PROTOCOL, RID_AT_SELECTOR,
264fa2db 159 RID_AT_THROW, RID_AT_TRY, RID_AT_CATCH,
92902b1b 160 RID_AT_FINALLY, RID_AT_SYNCHRONIZED,
668ea4b1 161 RID_AT_OPTIONAL, RID_AT_REQUIRED, RID_AT_PROPERTY,
da57d1b9 162 RID_AT_SYNTHESIZE, RID_AT_DYNAMIC,
264fa2db 163 RID_AT_INTERFACE,
0e5921e8
ZW
164 RID_AT_IMPLEMENTATION,
165
36c5e70a
BE
166 /* Named address support, mapping the keyword to a particular named address
167 number. Named address space 0 is reserved for the generic address. If
168 there are more than 254 named addresses, the addr_space_t type will need
169 to be grown from an unsigned char to unsigned short. */
170 RID_ADDR_SPACE_0, /* generic address */
171 RID_ADDR_SPACE_1,
172 RID_ADDR_SPACE_2,
173 RID_ADDR_SPACE_3,
174 RID_ADDR_SPACE_4,
175 RID_ADDR_SPACE_5,
176 RID_ADDR_SPACE_6,
177 RID_ADDR_SPACE_7,
178 RID_ADDR_SPACE_8,
179 RID_ADDR_SPACE_9,
180 RID_ADDR_SPACE_10,
181 RID_ADDR_SPACE_11,
182 RID_ADDR_SPACE_12,
183 RID_ADDR_SPACE_13,
184 RID_ADDR_SPACE_14,
185 RID_ADDR_SPACE_15,
186
187 RID_FIRST_ADDR_SPACE = RID_ADDR_SPACE_0,
188 RID_LAST_ADDR_SPACE = RID_ADDR_SPACE_15,
189
0e5921e8
ZW
190 RID_MAX,
191
192 RID_FIRST_MODIFIER = RID_STATIC,
b8363a24
ZW
193 RID_LAST_MODIFIER = RID_ONEWAY,
194
14c2101d
JM
195 RID_FIRST_CXX0X = RID_CONSTEXPR,
196 RID_LAST_CXX0X = RID_STATIC_ASSERT,
b8363a24
ZW
197 RID_FIRST_AT = RID_AT_ENCODE,
198 RID_LAST_AT = RID_AT_IMPLEMENTATION,
199 RID_FIRST_PQ = RID_IN,
668ea4b1 200 RID_LAST_PQ = RID_ONEWAY,
200290f2
NP
201 RID_FIRST_PATTR = RID_GETTER,
202 RID_LAST_PATTR = RID_NONATOMIC
f09f1de5
MM
203};
204
b8363a24 205#define OBJC_IS_AT_KEYWORD(rid) \
3f75a254
JM
206 ((unsigned int) (rid) >= (unsigned int) RID_FIRST_AT && \
207 (unsigned int) (rid) <= (unsigned int) RID_LAST_AT)
b8363a24
ZW
208
209#define OBJC_IS_PQ_KEYWORD(rid) \
3f75a254
JM
210 ((unsigned int) (rid) >= (unsigned int) RID_FIRST_PQ && \
211 (unsigned int) (rid) <= (unsigned int) RID_LAST_PQ)
b8363a24 212
668ea4b1
IS
213#define OBJC_IS_PATTR_KEYWORD(rid) \
214 ((unsigned int) (rid) >= (unsigned int) RID_FIRST_PATTR && \
215 (unsigned int) (rid) <= (unsigned int) RID_LAST_PATTR)
216
1973201f
NP
217/* OBJC_IS_CXX_KEYWORD recognizes the 'CXX_OBJC' keywords (such as
218 'class') which are shared in a subtle way between Objective-C and
219 C++. When the lexer is lexing in Objective-C/Objective-C++, if it
220 finds '@' followed by one of these identifiers (eg, '@class'), it
221 recognizes the whole as an Objective-C keyword. If the identifier
222 is found elsewhere, it follows the rules of the C/C++ language.
223 */
224#define OBJC_IS_CXX_KEYWORD(rid) \
225 (rid == RID_CLASS \
226 || rid == RID_PUBLIC || rid == RID_PROTECTED || rid == RID_PRIVATE \
227 || rid == RID_TRY || rid == RID_THROW || rid == RID_CATCH)
228
f09f1de5
MM
229/* The elements of `ridpointers' are identifier nodes for the reserved
230 type names and storage classes. It is indexed by a RID_... value. */
3f75a254 231extern GTY ((length ("(int) RID_MAX"))) tree *ridpointers;
f09f1de5 232
7f4edbcb
BS
233/* Standard named or nameless data types of the C compiler. */
234
235enum c_tree_index
236{
b6baa67d
KVH
237 CTI_CHAR16_TYPE,
238 CTI_CHAR32_TYPE,
7f4edbcb 239 CTI_WCHAR_TYPE,
207bf79d 240 CTI_UNDERLYING_WCHAR_TYPE,
c5ab7f91 241 CTI_WINT_TYPE,
cd732418
JM
242 CTI_SIGNED_SIZE_TYPE, /* For format checking only. */
243 CTI_UNSIGNED_PTRDIFF_TYPE, /* For format checking only. */
b15ad712
JM
244 CTI_INTMAX_TYPE,
245 CTI_UINTMAX_TYPE,
7f4edbcb
BS
246 CTI_WIDEST_INT_LIT_TYPE,
247 CTI_WIDEST_UINT_LIT_TYPE,
248
207bf79d
JM
249 /* Types for <stdint.h>, that may not be defined on all
250 targets. */
251 CTI_SIG_ATOMIC_TYPE,
252 CTI_INT8_TYPE,
253 CTI_INT16_TYPE,
254 CTI_INT32_TYPE,
255 CTI_INT64_TYPE,
256 CTI_UINT8_TYPE,
257 CTI_UINT16_TYPE,
258 CTI_UINT32_TYPE,
259 CTI_UINT64_TYPE,
260 CTI_INT_LEAST8_TYPE,
261 CTI_INT_LEAST16_TYPE,
262 CTI_INT_LEAST32_TYPE,
263 CTI_INT_LEAST64_TYPE,
264 CTI_UINT_LEAST8_TYPE,
265 CTI_UINT_LEAST16_TYPE,
266 CTI_UINT_LEAST32_TYPE,
267 CTI_UINT_LEAST64_TYPE,
268 CTI_INT_FAST8_TYPE,
269 CTI_INT_FAST16_TYPE,
270 CTI_INT_FAST32_TYPE,
271 CTI_INT_FAST64_TYPE,
272 CTI_UINT_FAST8_TYPE,
273 CTI_UINT_FAST16_TYPE,
274 CTI_UINT_FAST32_TYPE,
275 CTI_UINT_FAST64_TYPE,
276 CTI_INTPTR_TYPE,
277 CTI_UINTPTR_TYPE,
278
7f4edbcb 279 CTI_CHAR_ARRAY_TYPE,
b6baa67d
KVH
280 CTI_CHAR16_ARRAY_TYPE,
281 CTI_CHAR32_ARRAY_TYPE,
7f4edbcb
BS
282 CTI_WCHAR_ARRAY_TYPE,
283 CTI_INT_ARRAY_TYPE,
284 CTI_STRING_TYPE,
285 CTI_CONST_STRING_TYPE,
286
19552aa5 287 /* Type for boolean expressions (bool in C++, int in C). */
de7df9eb
JM
288 CTI_TRUTHVALUE_TYPE,
289 CTI_TRUTHVALUE_TRUE,
290 CTI_TRUTHVALUE_FALSE,
291
7f4edbcb 292 CTI_DEFAULT_FUNCTION_TYPE,
7f4edbcb 293
2ba84f36 294 /* These are not types, but we have to look them up all the time. */
0ba8a114
NS
295 CTI_FUNCTION_NAME_DECL,
296 CTI_PRETTY_FUNCTION_NAME_DECL,
297 CTI_C99_FUNCTION_NAME_DECL,
298 CTI_SAVED_FUNCTION_NAME_DECLS,
c22cacf3 299
ae499cce
MM
300 CTI_VOID_ZERO,
301
b2f97e4a
MM
302 CTI_NULL,
303
7f4edbcb
BS
304 CTI_MAX
305};
306
5950c3c9
BE
307#define C_CPP_HASHNODE(id) \
308 (&(((struct c_common_identifier *) (id))->node))
d75d71e0
ILT
309#define C_RID_CODE(id) \
310 ((enum rid) (((struct c_common_identifier *) (id))->node.rid_code))
311#define C_SET_RID_CODE(id, code) \
312 (((struct c_common_identifier *) (id))->node.rid_code = (unsigned char) code)
2a967f3d
NB
313
314/* Identifier part common to the C front ends. Inherits from
315 tree_identifier, despite appearances. */
d1b38208 316struct GTY(()) c_common_identifier {
4f60111f 317 struct tree_common common;
17211ab5 318 struct cpp_hashnode node;
2a967f3d
NB
319};
320
eea1139b
ILT
321/* An entry in the reserved keyword table. */
322
323struct c_common_resword
324{
325 const char *const word;
326 ENUM_BITFIELD(rid) const rid : 16;
327 const unsigned int disable : 16;
328};
329
34429675
JM
330/* Extra cpp_ttype values for C++. */
331
332/* A token type for keywords, as opposed to ordinary identifiers. */
333#define CPP_KEYWORD ((enum cpp_ttype) (N_TTYPES + 1))
334
335/* A token type for template-ids. If a template-id is processed while
336 parsing tentatively, it is replaced with a CPP_TEMPLATE_ID token;
337 the value of the CPP_TEMPLATE_ID is whatever was returned by
338 cp_parser_template_id. */
339#define CPP_TEMPLATE_ID ((enum cpp_ttype) (CPP_KEYWORD + 1))
340
341/* A token type for nested-name-specifiers. If a
342 nested-name-specifier is processed while parsing tentatively, it is
343 replaced with a CPP_NESTED_NAME_SPECIFIER token; the value of the
344 CPP_NESTED_NAME_SPECIFIER is whatever was returned by
345 cp_parser_nested_name_specifier_opt. */
346#define CPP_NESTED_NAME_SPECIFIER ((enum cpp_ttype) (CPP_TEMPLATE_ID + 1))
347
348/* A token type for pre-parsed C++0x decltype. */
349#define CPP_DECLTYPE ((enum cpp_ttype) (CPP_NESTED_NAME_SPECIFIER + 1))
350
351/* The number of token types, including C++-specific ones. */
352#define N_CP_TTYPES ((int) (CPP_DECLTYPE + 1))
353
eea1139b
ILT
354/* Disable mask. Keywords are disabled if (reswords[i].disable &
355 mask) is _true_. Thus for keywords which are present in all
356 languages the disable field is zero. */
357
358#define D_CONLY 0x001 /* C only (not in C++). */
359#define D_CXXONLY 0x002 /* C++ only (not in C). */
360#define D_C99 0x004 /* In C, C99 only. */
361#define D_CXX0X 0x008 /* In C++, C++0X only. */
362#define D_EXT 0x010 /* GCC extension. */
363#define D_EXT89 0x020 /* GCC extension incorporated in C99. */
364#define D_ASM 0x040 /* Disabled by -fno-asm. */
365#define D_OBJC 0x080 /* In Objective C and neither C nor C++. */
366#define D_CXX_OBJC 0x100 /* In Objective C, and C++, but not C. */
367#define D_CXXWARN 0x200 /* In C warn with -Wcxx-compat. */
368
369/* The reserved keyword table. */
370extern const struct c_common_resword c_common_reswords[];
371
372/* The number of items in the reserved keyword table. */
373extern const unsigned int num_c_common_reswords;
374
b6baa67d
KVH
375#define char16_type_node c_global_trees[CTI_CHAR16_TYPE]
376#define char32_type_node c_global_trees[CTI_CHAR32_TYPE]
7f4edbcb 377#define wchar_type_node c_global_trees[CTI_WCHAR_TYPE]
207bf79d 378#define underlying_wchar_type_node c_global_trees[CTI_UNDERLYING_WCHAR_TYPE]
c5ab7f91 379#define wint_type_node c_global_trees[CTI_WINT_TYPE]
cd732418
JM
380#define signed_size_type_node c_global_trees[CTI_SIGNED_SIZE_TYPE]
381#define unsigned_ptrdiff_type_node c_global_trees[CTI_UNSIGNED_PTRDIFF_TYPE]
b15ad712
JM
382#define intmax_type_node c_global_trees[CTI_INTMAX_TYPE]
383#define uintmax_type_node c_global_trees[CTI_UINTMAX_TYPE]
7f4edbcb
BS
384#define widest_integer_literal_type_node c_global_trees[CTI_WIDEST_INT_LIT_TYPE]
385#define widest_unsigned_literal_type_node c_global_trees[CTI_WIDEST_UINT_LIT_TYPE]
386
207bf79d
JM
387#define sig_atomic_type_node c_global_trees[CTI_SIG_ATOMIC_TYPE]
388#define int8_type_node c_global_trees[CTI_INT8_TYPE]
389#define int16_type_node c_global_trees[CTI_INT16_TYPE]
390#define int32_type_node c_global_trees[CTI_INT32_TYPE]
391#define int64_type_node c_global_trees[CTI_INT64_TYPE]
392#define uint8_type_node c_global_trees[CTI_UINT8_TYPE]
393#define uint16_type_node c_global_trees[CTI_UINT16_TYPE]
394#define c_uint32_type_node c_global_trees[CTI_UINT32_TYPE]
395#define c_uint64_type_node c_global_trees[CTI_UINT64_TYPE]
396#define int_least8_type_node c_global_trees[CTI_INT_LEAST8_TYPE]
397#define int_least16_type_node c_global_trees[CTI_INT_LEAST16_TYPE]
398#define int_least32_type_node c_global_trees[CTI_INT_LEAST32_TYPE]
399#define int_least64_type_node c_global_trees[CTI_INT_LEAST64_TYPE]
400#define uint_least8_type_node c_global_trees[CTI_UINT_LEAST8_TYPE]
401#define uint_least16_type_node c_global_trees[CTI_UINT_LEAST16_TYPE]
402#define uint_least32_type_node c_global_trees[CTI_UINT_LEAST32_TYPE]
403#define uint_least64_type_node c_global_trees[CTI_UINT_LEAST64_TYPE]
404#define int_fast8_type_node c_global_trees[CTI_INT_FAST8_TYPE]
405#define int_fast16_type_node c_global_trees[CTI_INT_FAST16_TYPE]
406#define int_fast32_type_node c_global_trees[CTI_INT_FAST32_TYPE]
407#define int_fast64_type_node c_global_trees[CTI_INT_FAST64_TYPE]
408#define uint_fast8_type_node c_global_trees[CTI_UINT_FAST8_TYPE]
409#define uint_fast16_type_node c_global_trees[CTI_UINT_FAST16_TYPE]
410#define uint_fast32_type_node c_global_trees[CTI_UINT_FAST32_TYPE]
411#define uint_fast64_type_node c_global_trees[CTI_UINT_FAST64_TYPE]
412#define intptr_type_node c_global_trees[CTI_INTPTR_TYPE]
413#define uintptr_type_node c_global_trees[CTI_UINTPTR_TYPE]
414
de7df9eb
JM
415#define truthvalue_type_node c_global_trees[CTI_TRUTHVALUE_TYPE]
416#define truthvalue_true_node c_global_trees[CTI_TRUTHVALUE_TRUE]
417#define truthvalue_false_node c_global_trees[CTI_TRUTHVALUE_FALSE]
19552aa5 418
7f4edbcb 419#define char_array_type_node c_global_trees[CTI_CHAR_ARRAY_TYPE]
b6baa67d
KVH
420#define char16_array_type_node c_global_trees[CTI_CHAR16_ARRAY_TYPE]
421#define char32_array_type_node c_global_trees[CTI_CHAR32_ARRAY_TYPE]
7f4edbcb
BS
422#define wchar_array_type_node c_global_trees[CTI_WCHAR_ARRAY_TYPE]
423#define int_array_type_node c_global_trees[CTI_INT_ARRAY_TYPE]
424#define string_type_node c_global_trees[CTI_STRING_TYPE]
425#define const_string_type_node c_global_trees[CTI_CONST_STRING_TYPE]
426
427#define default_function_type c_global_trees[CTI_DEFAULT_FUNCTION_TYPE]
7f4edbcb 428
0ba8a114
NS
429#define function_name_decl_node c_global_trees[CTI_FUNCTION_NAME_DECL]
430#define pretty_function_name_decl_node c_global_trees[CTI_PRETTY_FUNCTION_NAME_DECL]
431#define c99_function_name_decl_node c_global_trees[CTI_C99_FUNCTION_NAME_DECL]
432#define saved_function_name_decls c_global_trees[CTI_SAVED_FUNCTION_NAME_DECLS]
63ad61ed 433
ae499cce
MM
434/* A node for `((void) 0)'. */
435#define void_zero_node c_global_trees[CTI_VOID_ZERO]
436
b2f97e4a
MM
437/* The node for C++ `__null'. */
438#define null_node c_global_trees[CTI_NULL]
439
e2500fed 440extern GTY(()) tree c_global_trees[CTI_MAX];
ab76ca54 441
e0a21ab9
KH
442/* In a RECORD_TYPE, a sorted array of the fields of the type, not a
443 tree for size reasons. */
a9429e29 444struct GTY((variable_size)) sorted_fields_type {
d07605f5
AP
445 int len;
446 tree GTY((length ("%h.len"))) elts[1];
447};
448
8f17b5c5
MM
449/* Mark which labels are explicitly declared.
450 These may be shadowed, and may be referenced from nested functions. */
451#define C_DECLARED_LABEL_FLAG(label) TREE_LANG_FLAG_1 (label)
452
ab76ca54
MM
453typedef enum c_language_kind
454{
37fa72e9
NB
455 clk_c = 0, /* C90, C94 or C99 */
456 clk_objc = 1, /* clk_c with ObjC features. */
457 clk_cxx = 2, /* ANSI/ISO C++ */
458 clk_objcxx = 3 /* clk_cxx with ObjC features. */
21c7361e 459}
ab76ca54
MM
460c_language_kind;
461
37fa72e9
NB
462/* To test for a specific language use c_language, defined by each
463 front end. For "ObjC features" or "not C++" use the macros. */
464extern c_language_kind c_language;
465
15a15e8d
RH
466#define c_dialect_cxx() ((c_language & clk_cxx) != 0)
467#define c_dialect_objc() ((c_language & clk_objc) != 0)
37fa72e9 468
dd865ef6
SZ
469/* The various name of operator that appears in error messages. */
470typedef enum ref_operator {
471 /* NULL */
472 RO_NULL,
473 /* array indexing */
474 RO_ARRAY_INDEXING,
475 /* unary * */
476 RO_UNARY_STAR,
477 /* -> */
478 RO_ARROW,
479 /* implicit conversion */
480 RO_IMPLICIT_CONVERSION
481} ref_operator;
482
ae499cce
MM
483/* Information about a statement tree. */
484
d1b38208 485struct GTY(()) stmt_tree_s {
38e01f9e
NF
486 /* A stack of statement lists being collected. */
487 VEC(tree,gc) *x_cur_stmt_list;
325c3691 488
da7d8304 489 /* In C++, Nonzero if we should treat statements as full
ae499cce
MM
490 expressions. In particular, this variable is no-zero if at the
491 end of a statement we should destroy any temporaries created
492 during that statement. Similarly, if, at the end of a block, we
493 should destroy any local variables in this block. Normally, this
da7d8304 494 variable is nonzero, since those are the normal semantics of
ae499cce
MM
495 C++.
496
497 However, in order to represent aggregate initialization code as
498 tree structure, we use statement-expressions. The statements
499 within the statement expression should not result in cleanups
21c7361e 500 being run until the entire enclosing statement is complete.
ae499cce
MM
501
502 This flag has no effect in C. */
21c7361e 503 int stmts_are_full_exprs_p;
ae499cce
MM
504};
505
506typedef struct stmt_tree_s *stmt_tree;
507
508/* Global state pertinent to the current function. Some C dialects
509 extend this structure with additional fields. */
510
d1b38208 511struct GTY(()) c_language_function {
ae499cce
MM
512 /* While we are parsing the function, this contains information
513 about the statement-tree that we are building. */
514 struct stmt_tree_s x_stmt_tree;
3797cb21
DS
515
516 /* Vector of locally defined typedefs, for
517 -Wunused-local-typedefs. */
518 VEC(tree,gc) *local_typedefs;
ae499cce
MM
519};
520
38e01f9e
NF
521#define stmt_list_stack (current_stmt_tree ()->x_cur_stmt_list)
522
35fd3193 523/* When building a statement-tree, this is the current statement list
38e01f9e
NF
524 being collected. We define it in this convoluted way, rather than
525 using VEC_last, because it must be an lvalue. */
526
527#define cur_stmt_list \
528 (*(VEC_address (tree, stmt_list_stack) \
529 + VEC_length (tree, stmt_list_stack) - 1))
ae499cce 530
38e01f9e 531#define building_stmt_list_p() (!VEC_empty (tree, stmt_list_stack))
8f17b5c5
MM
532
533/* Language-specific hooks. */
534
4684cd27
MM
535/* If non-NULL, this function is called after a precompile header file
536 is loaded. */
537extern void (*lang_post_pch_load) (void);
538
f75fbaf7
ZW
539extern void push_file_scope (void);
540extern void pop_file_scope (void);
35b1a6fa 541extern stmt_tree current_stmt_tree (void);
325c3691 542extern tree push_stmt_list (void);
325c3691 543extern tree pop_stmt_list (tree);
35b1a6fa 544extern tree add_stmt (tree);
325c3691 545extern void push_cleanup (tree, tree, bool);
953ff289
DN
546extern tree pushdecl_top_level (tree);
547extern tree pushdecl (tree);
32e8bb8e 548extern tree build_modify_expr (location_t, tree, tree, enum tree_code,
c2255bc4 549 location_t, tree, tree);
dd865ef6 550extern tree build_indirect_ref (location_t, tree, ref_operator);
35b1a6fa 551
3c79fa86 552extern int c_expand_decl (tree);
c1e14513 553
d07605f5 554extern int field_decl_cmp (const void *, const void *);
c22cacf3
MS
555extern void resort_sorted_fields (void *, void *, gt_pointer_operator,
556 void *);
58f9752a 557extern bool has_c_linkage (const_tree decl);
17211ab5 558\f
4078b403
NB
559/* Switches common to the C front ends. */
560
63973df3
NB
561/* Nonzero means don't output line number information. */
562
563extern char flag_no_line_commands;
564
565/* Nonzero causes -E output not to be done, but directives such as
566 #define that have side effects are still obeyed. */
567
568extern char flag_no_output;
569
93d45d9e
JM
570/* Nonzero means dump macros in some fashion; contains the 'D', 'M',
571 'N' or 'U' of the command line switch. */
63973df3
NB
572
573extern char flag_dump_macros;
574
575/* Nonzero means pass #include lines through to the output. */
576
577extern char flag_dump_includes;
578
c0d578e6
GK
579/* Nonzero means process PCH files while preprocessing. */
580
581extern bool flag_pch_preprocess;
582
17211ab5
GK
583/* The file name to which we should write a precompiled header, or
584 NULL if no header will be written in this compile. */
585
586extern const char *pch_file;
587
3df89291
NB
588/* Nonzero if an ISO standard was selected. It rejects macros in the
589 user's namespace. */
17211ab5 590
3df89291
NB
591extern int flag_iso;
592
c22cacf3 593/* Warn about #pragma directives that are not recognized. */
4078b403 594
c22cacf3 595extern int warn_unknown_pragmas; /* Tri state variable. */
4078b403 596
4078b403
NB
597/* Warn about format/argument anomalies in calls to formatted I/O functions
598 (*printf, *scanf, strftime, strfmon, etc.). */
ab76ca54
MM
599
600extern int warn_format;
601
b34c7881 602
4078b403 603/* C/ObjC language option variables. */
b34c7881 604
2683ed8d 605
4078b403
NB
606/* Nonzero means allow type mismatches in conditional expressions;
607 just make their values `void'. */
74ff4629 608
4078b403 609extern int flag_cond_mismatch;
6c36d76b 610
eaf299c6 611/* Nonzero means enable C89 Amendment 1 features. */
b8458e3e
JM
612
613extern int flag_isoc94;
614
2778d766 615/* Nonzero means use the ISO C99 (or C1X) dialect of C. */
ab76ca54
MM
616
617extern int flag_isoc99;
618
2778d766
JM
619/* Nonzero means use the ISO C1X dialect of C. */
620
621extern int flag_isoc1x;
622
6614fd40 623/* Nonzero means that we have builtin functions, and main is an int. */
93e2382f
JM
624
625extern int flag_hosted;
626
4078b403
NB
627/* ObjC language option variables. */
628
629
4078b403
NB
630/* Tells the compiler that this is a special run. Do not perform any
631 compiling, instead we are to test some platform dependent features
632 and output a C header file with appropriate definitions. */
633
634extern int print_struct_values;
635
abc88a08 636/* Tells the compiler what is the constant string class for ObjC. */
4078b403 637
fd350d24 638extern const char *constant_string_class_name;
4078b403 639
4078b403
NB
640
641/* C++ language option variables. */
642
643
4078b403
NB
644/* Nonzero means generate separate instantiation control files and
645 juggle them at link time. */
646
647extern int flag_use_repository;
648
c1ae8be5
SM
649/* The supported C++ dialects. */
650
651enum cxx_dialect {
97e3ad20 652 /* C++98 with TC1 */
c1ae8be5 653 cxx98,
97e3ad20
JM
654 cxx03 = cxx98,
655 /* C++11 */
656 cxx0x,
657 cxx11 = cxx0x
c1ae8be5 658};
966541e3 659
c1ae8be5
SM
660/* The C++ dialect being used. C++98 is the default. */
661extern enum cxx_dialect cxx_dialect;
966541e3 662
4078b403
NB
663/* Maximum template instantiation depth. This limit is rather
664 arbitrary, but it exists to limit the time it takes to notice
17bc631c 665 excessively recursive template instantiations. */
4078b403
NB
666
667extern int max_tinst_depth;
ab76ca54 668
7d882b83
ILT
669/* Nonzero means that we should not issue warnings about problems that
670 occur when the code is executed, because the code being processed
671 is not expected to be executed. This is set during parsing. This
672 is used for cases like sizeof() and "0 ? a : b". This is a count,
673 not a bool, because unexecuted expressions can nest. */
25587e40 674
7d882b83 675extern int c_inhibit_evaluation_warnings;
25587e40 676
148e4216
JM
677/* Whether lexing has been completed, so subsequent preprocessor
678 errors should use the compiler's input_location. */
679
680extern bool done_lexing;
681
ab76ca54
MM
682/* C types are partitioned into three subsets: object, function, and
683 incomplete types. */
684#define C_TYPE_OBJECT_P(type) \
685 (TREE_CODE (type) != FUNCTION_TYPE && TYPE_SIZE (type))
686
687#define C_TYPE_INCOMPLETE_P(type) \
688 (TREE_CODE (type) != FUNCTION_TYPE && TYPE_SIZE (type) == 0)
689
690#define C_TYPE_FUNCTION_P(type) \
691 (TREE_CODE (type) == FUNCTION_TYPE)
692
693/* For convenience we define a single macro to identify the class of
694 object or incomplete types. */
695#define C_TYPE_OBJECT_OR_INCOMPLETE_P(type) \
696 (!C_TYPE_FUNCTION_P (type))
697
c98cd5bf
JM
698struct visibility_flags
699{
700 unsigned inpragma : 1; /* True when in #pragma GCC visibility. */
701 unsigned inlines_hidden : 1; /* True when -finlineshidden in effect. */
702};
703
704/* Global visibility options. */
705extern struct visibility_flags visibility_options;
706
349ae713
NB
707/* Attribute table common to the C front ends. */
708extern const struct attribute_spec c_common_attribute_table[];
709extern const struct attribute_spec c_common_format_attribute_table[];
710
0ba8a114 711/* Pointer to function to lazily generate the VAR_DECL for __FUNCTION__ etc.
2ce07e2d
NS
712 ID is the identifier to use, NAME is the string.
713 TYPE_DEP indicates whether it depends on type of the function or not
714 (i.e. __PRETTY_FUNCTION__). */
715
c2255bc4 716extern tree (*make_fname_decl) (location_t, tree, int);
35b1a6fa 717
bffad7f1 718/* In c-decl.c and cp/tree.c. FIXME. */
3ef0694c 719extern void c_register_addr_space (const char *str, addr_space_t as);
bffad7f1
SB
720
721/* In c-common.c. */
5386338c 722extern bool in_late_binary_op;
36c5e70a 723extern const char *c_addr_space_name (addr_space_t as);
35b1a6fa 724extern tree identifier_global_value (tree);
3a636414 725extern tree c_linkage_bindings (tree);
35b1a6fa
AJ
726extern void record_builtin_type (enum rid, const char *, tree);
727extern tree build_void_list_node (void);
728extern void start_fname_decls (void);
729extern void finish_fname_decls (void);
730extern const char *fname_as_string (int);
3ba09659 731extern tree fname_decl (location_t, unsigned, tree);
35b1a6fa 732
d19fa6b5 733extern int check_user_alignment (const_tree, bool);
dde05067 734extern void check_function_arguments (const_tree, int, tree *);
35b1a6fa
AJ
735extern void check_function_arguments_recurse (void (*)
736 (void *, tree,
737 unsigned HOST_WIDE_INT),
738 void *, tree,
739 unsigned HOST_WIDE_INT);
83322951 740extern bool check_builtin_function_arguments (tree, int, tree *);
94a0dd7b 741extern void check_function_format (tree, int, tree *);
35b1a6fa
AJ
742extern void set_Wformat (int);
743extern tree handle_format_attribute (tree *, tree, tree, int, bool *);
744extern tree handle_format_arg_attribute (tree *, tree, tree, int, bool *);
564a129d 745extern bool attribute_takes_identifier_p (const_tree);
a4d8c676 746extern bool c_common_handle_option (size_t, const char *, int, int, location_t,
5f20c657 747 const struct cl_option_handlers *);
acce4e77 748extern bool default_handle_c_option (size_t, const char *, int);
35b1a6fa
AJ
749extern tree c_common_type_for_mode (enum machine_mode, int);
750extern tree c_common_type_for_size (unsigned int, int);
ab22c1fa
CF
751extern tree c_common_fixed_point_type_for_size (unsigned int, unsigned int,
752 int, int);
12753674 753extern tree c_common_unsigned_type (tree);
35b1a6fa
AJ
754extern tree c_common_signed_type (tree);
755extern tree c_common_signed_or_unsigned_type (int, tree);
81f653d6 756extern void c_common_init_ts (void);
38a4afee 757extern tree c_build_bitfield_integer_type (unsigned HOST_WIDE_INT, int);
0e3a99ae 758extern bool unsafe_conversion_p (tree, tree, bool);
58f9752a 759extern bool decl_with_nonnull_addr_p (const_tree);
928c19bb
JM
760extern tree c_fully_fold (tree, bool, bool *);
761extern tree decl_constant_value_for_optimization (tree);
e5a94231 762extern tree c_wrap_maybe_const (tree, bool);
928c19bb 763extern tree c_save_expr (tree);
ba47d38d 764extern tree c_common_truthvalue_conversion (location_t, tree);
35b1a6fa 765extern void c_apply_type_quals_to_decl (int, tree);
c2255bc4
AH
766extern tree c_sizeof_or_alignof_type (location_t, tree, bool, int);
767extern tree c_alignof_expr (location_t, tree);
7f4edbcb
BS
768/* Print an error message for invalid operands to arith operation CODE.
769 NOP_EXPR is used as a special case (see truthvalue_conversion). */
ba47d38d 770extern void binary_op_error (location_t, enum tree_code, tree, tree);
35b1a6fa 771extern tree fix_string_type (tree);
35b1a6fa 772extern void constant_expression_warning (tree);
393eda6a 773extern void constant_expression_error (tree);
79bedddc 774extern bool strict_aliasing_warning (tree, tree, tree);
07231d4f 775extern void warnings_for_convert_and_check (tree, tree, tree);
35b1a6fa 776extern tree convert_and_check (tree, tree);
c2255bc4 777extern void overflow_warning (location_t, tree);
a243fb4a 778extern void warn_logical_operator (location_t, enum tree_code, tree,
ca409efd 779 enum tree_code, tree, enum tree_code, tree);
a1e45ff0 780extern void check_main_parameter_types (tree decl);
b2ca3702 781extern bool c_determine_visibility (tree);
5bed876a 782extern bool same_scalar_type_ignoring_signedness (tree, tree);
6ec637a4
JJ
783extern void mark_valid_location_for_stdc_pragma (bool);
784extern bool valid_location_for_stdc_pragma_p (void);
785extern void set_float_const_decimal64 (void);
786extern void clear_float_const_decimal64 (void);
787extern bool float_const_decimal64_p (void);
ab76ca54 788
a9aa2c3a
NF
789extern bool keyword_begins_type_specifier (enum rid);
790extern bool keyword_is_storage_class_specifier (enum rid);
791extern bool keyword_is_type_qualifier (enum rid);
ba9e6dd5 792extern bool keyword_is_decl_specifier (enum rid);
a9aa2c3a 793
c2255bc4
AH
794#define c_sizeof(LOC, T) c_sizeof_or_alignof_type (LOC, T, true, 1)
795#define c_alignof(LOC, T) c_sizeof_or_alignof_type (LOC, T, false, 1)
7f4edbcb 796
6715192c
MLI
797/* Subroutine of build_binary_op, used for certain operations. */
798extern tree shorten_binary_op (tree result_type, tree op0, tree op1, bool bitwise);
799
7f4edbcb
BS
800/* Subroutine of build_binary_op, used for comparison operations.
801 See if the operands have both been converted from subword integer types
802 and, if so, perhaps change them both back to their original type. */
35b1a6fa 803extern tree shorten_compare (tree *, tree *, tree *, enum tree_code *);
7f4edbcb 804
db3927fb 805extern tree pointer_int_sum (location_t, enum tree_code, tree, tree);
50e60bc3
ZW
806
807/* Add qualifiers to a type, in the fashion for C. */
35b1a6fa 808extern tree c_build_qualified_type (tree, int);
50e60bc3 809
7f4edbcb
BS
810/* Build tree nodes and builtin functions common to both C and C++ language
811 frontends. */
35b1a6fa 812extern void c_common_nodes_and_builtins (void);
d3707adb 813
35b1a6fa 814extern void disable_builtin_function (const char *);
7d14c755 815
3b2db49f
MM
816extern void set_compound_literal_name (tree decl);
817
c2255bc4 818extern tree build_va_arg (location_t, tree, tree);
7e8176d7 819
c5fa0890 820extern const unsigned int c_family_lang_mask;
7a9bf9a4 821extern unsigned int c_common_option_lang_mask (void);
1ebe4b4f 822extern void c_common_initialize_diagnostics (diagnostic_context *);
7a9bf9a4 823extern bool c_common_complain_wrong_lang_p (const struct cl_option *);
a75bfaa6 824extern void c_common_init_options_struct (struct gcc_options *);
7a9bf9a4 825extern void c_common_init_options (unsigned int, struct cl_decoded_option *);
35b1a6fa
AJ
826extern bool c_common_post_options (const char **);
827extern bool c_common_init (void);
828extern void c_common_finish (void);
b37421c6 829extern void c_common_parse_file (void);
4862826d 830extern alias_set_type c_common_get_alias_set (tree);
9649812a 831extern void c_register_builtin_type (tree, const char*);
58f9752a
KG
832extern bool c_promoting_integer_type_p (const_tree);
833extern int self_promoting_args_p (const_tree);
12ea3302 834extern tree strip_pointer_operator (tree);
ba992967 835extern tree strip_pointer_or_array_types (tree);
c5ff069d 836extern HOST_WIDE_INT c_common_to_target_charset (HOST_WIDE_INT);
d7e7759d 837
d1bd0ded
GK
838/* This is the basic parsing function. */
839extern void c_parse_file (void);
d1bd0ded 840
d166d4c3 841extern void warn_for_omitted_condop (location_t, tree);
c5ff069d 842
ae499cce
MM
843/* These macros provide convenient access to the various _STMT nodes. */
844
325c3691
RH
845/* Nonzero if a given STATEMENT_LIST represents the outermost binding
846 if a statement expression. */
847#define STATEMENT_LIST_STMT_EXPR(NODE) \
848 TREE_LANG_FLAG_1 (STATEMENT_LIST_CHECK (NODE))
174283a3
RH
849
850/* Nonzero if a label has been added to the statement list. */
851#define STATEMENT_LIST_HAS_LABEL(NODE) \
852 TREE_LANG_FLAG_3 (STATEMENT_LIST_CHECK (NODE))
325c3691 853
928c19bb
JM
854/* C_MAYBE_CONST_EXPR accessors. */
855#define C_MAYBE_CONST_EXPR_PRE(NODE) \
856 TREE_OPERAND (C_MAYBE_CONST_EXPR_CHECK (NODE), 0)
857#define C_MAYBE_CONST_EXPR_EXPR(NODE) \
858 TREE_OPERAND (C_MAYBE_CONST_EXPR_CHECK (NODE), 1)
859#define C_MAYBE_CONST_EXPR_INT_OPERANDS(NODE) \
860 TREE_LANG_FLAG_0 (C_MAYBE_CONST_EXPR_CHECK (NODE))
861#define C_MAYBE_CONST_EXPR_NON_CONST(NODE) \
862 TREE_LANG_FLAG_1 (C_MAYBE_CONST_EXPR_CHECK (NODE))
863#define EXPR_INT_CONST_OPERANDS(EXPR) \
864 (INTEGRAL_TYPE_P (TREE_TYPE (EXPR)) \
865 && (TREE_CODE (EXPR) == INTEGER_CST \
866 || (TREE_CODE (EXPR) == C_MAYBE_CONST_EXPR \
867 && C_MAYBE_CONST_EXPR_INT_OPERANDS (EXPR))))
868
0a7394bc
MM
869/* In a FIELD_DECL, nonzero if the decl was originally a bitfield. */
870#define DECL_C_BIT_FIELD(NODE) \
871 (DECL_LANG_FLAG_4 (FIELD_DECL_CHECK (NODE)) == 1)
872#define SET_DECL_C_BIT_FIELD(NODE) \
873 (DECL_LANG_FLAG_4 (FIELD_DECL_CHECK (NODE)) = 1)
874#define CLEAR_DECL_C_BIT_FIELD(NODE) \
875 (DECL_LANG_FLAG_4 (FIELD_DECL_CHECK (NODE)) = 0)
876
c2255bc4
AH
877extern tree do_case (location_t, tree, tree);
878extern tree build_stmt (location_t, enum tree_code, ...);
fb52b50a 879extern tree build_real_imag_expr (location_t, enum tree_code, tree);
f2c5f623 880
ab76ca54
MM
881/* These functions must be defined by each front-end which implements
882 a variant of the C language. They are used in c-common.c. */
883
c9f9eb5d 884extern tree build_unary_op (location_t, enum tree_code, tree, int);
ba47d38d 885extern tree build_binary_op (location_t, enum tree_code, tree, tree, int);
522ddfa2 886extern tree perform_integral_promotions (tree);
ab76ca54 887
d593cb3d
MS
888/* These functions must be defined by each front-end which implements
889 a variant of the C language. They are used by port files. */
890
891extern tree default_conversion (tree);
892
ab76ca54
MM
893/* Given two integer or real types, return the type for their sum.
894 Given two compatible ANSI C types, returns the merged type. */
895
35b1a6fa 896extern tree common_type (tree, tree);
44835fdd 897
35b1a6fa 898extern tree decl_constant_value (tree);
56cb9733 899
19552aa5 900/* Handle increment and decrement of boolean types. */
35b1a6fa 901extern tree boolean_increment (enum tree_code, tree);
19552aa5 902
35b1a6fa 903extern int case_compare (splay_tree_key, splay_tree_key);
8f17b5c5 904
c2255bc4 905extern tree c_add_case_label (location_t, splay_tree, tree, tree, tree, tree);
8f17b5c5 906
fbc315db 907extern void c_do_switch_warnings (splay_tree, location_t, tree, tree);
6de9cd9a 908
c2255bc4 909extern tree build_function_call (location_t, tree, tree);
c70eaeaf 910
c2255bc4
AH
911extern tree build_function_call_vec (location_t, tree,
912 VEC(tree,gc) *, VEC(tree,gc) *);
bbbbb16a 913
c2255bc4 914extern tree resolve_overloaded_builtin (location_t, tree, VEC(tree,gc) *);
48ae6c13 915
6a3799eb 916extern tree finish_label_address_expr (tree, location_t);
15b732b2
NB
917
918/* Same function prototype, but the C and C++ front ends have
919 different implementations. Used in c-common.c. */
35b1a6fa 920extern tree lookup_label (tree);
10e6657a 921extern tree lookup_name (tree);
1e4ae551 922extern bool lvalue_p (const_tree);
15b732b2 923
f83c7f63 924extern bool vector_targets_convertible_p (const_tree t1, const_tree t2);
58f9752a 925extern bool vector_types_convertible_p (const_tree t1, const_tree t2, bool emit_lax_note);
cc27e657 926
0fab64a3 927extern rtx c_expand_expr (tree, rtx, enum machine_mode, int, rtx *);
8f17b5c5 928
35b1a6fa 929extern void init_c_lex (void);
81a75f0f 930
35b1a6fa 931extern void c_cpp_builtins (cpp_reader *);
ab442df7 932extern void c_cpp_builtins_optimize_pragma (cpp_reader *, tree, tree);
59cc9210
SB
933extern bool c_cpp_error (cpp_reader *, int, int, location_t, unsigned int,
934 const char *, va_list *)
935 ATTRIBUTE_GCC_DIAG(6,0);
76c3e73e 936
7c475d11
JM
937extern bool parse_optimize_options (tree, bool);
938
731e8b38
MM
939/* Positive if an implicit `extern "C"' scope has just been entered;
940 negative if such a scope has just been exited. */
7876228d 941extern GTY(()) int pending_lang_change;
731e8b38 942
0e5921e8
ZW
943/* Information recorded about each file examined during compilation. */
944
945struct c_fileinfo
946{
947 int time; /* Time spent in the file. */
5d709b00
ZW
948
949 /* Flags used only by C++.
950 INTERFACE_ONLY nonzero means that we are in an "interface" section
951 of the compiler. INTERFACE_UNKNOWN nonzero means we cannot trust
952 the value of INTERFACE_ONLY. If INTERFACE_UNKNOWN is zero and
953 INTERFACE_ONLY is zero, it means that we are responsible for
954 exporting definitions that others might need. */
955 short interface_only;
0e5921e8
ZW
956 short interface_unknown;
957};
958
35b1a6fa
AJ
959struct c_fileinfo *get_fileinfo (const char *);
960extern void dump_time_statistics (void);
961
962extern bool c_dump_tree (void *, tree);
963
3a5b9284
RH
964extern void verify_sequence_points (tree);
965
cf9e9959
EB
966extern tree fold_offsetof_1 (tree);
967extern tree fold_offsetof (tree);
ee8a6a3e 968
5ae9ba3e 969/* Places where an lvalue, or modifiable lvalue, may be required.
37dc0d8d 970 Used to select diagnostic messages in lvalue_error and
5ae9ba3e
MM
971 readonly_error. */
972enum lvalue_use {
973 lv_assign,
974 lv_increment,
975 lv_decrement,
976 lv_addressof,
977 lv_asm
978};
979
4816c593 980extern void readonly_error (tree, enum lvalue_use);
7bd11157 981extern void lvalue_error (location_t, enum lvalue_use);
7a6daeb0 982extern void invalid_indirection_error (location_t, tree, ref_operator);
5ae9ba3e 983
aab038d5
RH
984extern int complete_array_type (tree *, tree, bool);
985
48ae6c13
RH
986extern tree builtin_type_for_size (int, bool);
987
30cd1c5d
AS
988extern void c_common_mark_addressable_vec (tree);
989
ff6b6641 990extern void warn_array_subscript_with_type_char (tree);
100d537d
MLI
991extern void warn_about_parentheses (enum tree_code,
992 enum tree_code, tree,
993 enum tree_code, tree);
c616e51b 994extern void warn_for_unused_label (tree label);
c9f9eb5d 995extern void warn_for_div_by_zero (location_t, tree divisor);
ba47d38d 996extern void warn_for_sign_compare (location_t,
b8698a0f
L
997 tree orig_op0, tree orig_op1,
998 tree op0, tree op1,
999 tree result_type,
2d12797c 1000 enum tree_code resultcode);
c5ee1358
MM
1001extern void do_warn_double_promotion (tree, tree, tree, const char *,
1002 location_t);
770e5a2e 1003extern void set_underlying_type (tree);
3797cb21
DS
1004extern void record_locally_defined_typedef (tree);
1005extern void maybe_record_typedef_use (tree);
1006extern void maybe_warn_unused_local_typedefs (void);
c166b898
ILT
1007extern VEC(tree,gc) *make_tree_vector (void);
1008extern void release_tree_vector (VEC(tree,gc) *);
1009extern VEC(tree,gc) *make_tree_vector_single (tree);
c12ff9d8 1010extern VEC(tree,gc) *make_tree_vector_from_list (tree);
c166b898 1011extern VEC(tree,gc) *make_tree_vector_copy (const VEC(tree,gc) *);
2a67bec2 1012
7c34ced1 1013/* In c-gimplify.c */
6de9cd9a 1014extern void c_genericize (tree);
726a989a 1015extern int c_gimplify_expr (tree *, gimple_seq *, gimple_seq *);
c2255bc4 1016extern tree c_build_bind_expr (location_t, tree, tree);
6de9cd9a 1017
c0d578e6 1018/* In c-pch.c */
35b1a6fa
AJ
1019extern void pch_init (void);
1020extern int c_common_valid_pch (cpp_reader *pfile, const char *name, int fd);
1021extern void c_common_read_pch (cpp_reader *pfile, const char *name, int fd,
1022 const char *orig);
1023extern void c_common_write_pch (void);
18c81520 1024extern void c_common_no_more_pch (void);
bc4071dd 1025extern void c_common_pch_pragma (cpp_reader *pfile, const char *);
3fd30b88
GK
1026extern void c_common_print_pch_checksum (FILE *f);
1027
1028/* In *-checksum.c */
1029extern const unsigned char executable_checksum[16];
c0d578e6 1030
ab442df7
MM
1031/* In c-cppbuiltin.c */
1032extern void builtin_define_std (const char *macro);
35b1a6fa
AJ
1033extern void builtin_define_with_value (const char *, const char *, int);
1034extern void c_stddef_cpp_builtins (void);
1035extern void fe_file_change (const struct line_map *);
cfc93532 1036extern void c_parse_error (const char *, enum cpp_ttype, tree, unsigned char);
9d10c9a9
NB
1037
1038/* In c-ppoutput.c */
35b1a6fa
AJ
1039extern void init_pp_output (FILE *);
1040extern void preprocess_file (cpp_reader *);
1041extern void pp_file_change (const struct line_map *);
8e9ea4d7 1042extern void pp_dir_change (cpp_reader *, const char *);
104f8784 1043extern bool check_missing_format_attribute (tree, tree);
17211ab5 1044
953ff289 1045/* In c-omp.c */
c2255bc4
AH
1046extern tree c_finish_omp_master (location_t, tree);
1047extern tree c_finish_omp_critical (location_t, tree, tree);
1048extern tree c_finish_omp_ordered (location_t, tree);
1049extern void c_finish_omp_barrier (location_t);
20906c66
JJ
1050extern tree c_finish_omp_atomic (location_t, enum tree_code, enum tree_code,
1051 tree, tree, tree, tree, tree);
c2255bc4
AH
1052extern void c_finish_omp_flush (location_t);
1053extern void c_finish_omp_taskwait (location_t);
20906c66 1054extern void c_finish_omp_taskyield (location_t);
953ff289 1055extern tree c_finish_omp_for (location_t, tree, tree, tree, tree, tree, tree);
c2255bc4 1056extern void c_split_parallel_clauses (location_t, tree, tree *, tree *);
953ff289
DN
1057extern enum omp_clause_default_kind c_omp_predetermined_sharing (tree);
1058
1059/* Not in c-omp.c; provided by the front end. */
1060extern bool c_omp_sharing_predetermined (tree);
1061extern tree c_omp_remap_decl (tree, bool);
b646ba3f 1062extern void record_types_used_by_current_var_decl (tree);
953ff289 1063
56300785
JJ
1064/* Return next tree in the chain for chain_next walking of tree nodes. */
1065static inline tree
1066c_tree_chain_next (tree t)
1067{
1068 /* TREE_CHAIN of a type is TYPE_STUB_DECL, which is different
1069 kind of object, never a long chain of nodes. Prefer
1070 TYPE_NEXT_VARIANT for types. */
1071 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPE_COMMON))
1072 return TYPE_NEXT_VARIANT (t);
1073 /* Otherwise, if there is TREE_CHAIN, return it. */
1074 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_COMMON))
1075 return TREE_CHAIN (t);
1076 return NULL;
1077}
1078
0a35513e
AH
1079/* Mask used by tm_stmt_attr. */
1080#define TM_STMT_ATTR_OUTER 2
1081#define TM_STMT_ATTR_ATOMIC 4
1082#define TM_STMT_ATTR_RELAXED 8
1083
1084extern int parse_tm_stmt_attr (tree, int);
1085
1086/* Mask used by tm_attr_to_mask and tm_mask_to_attr. Note that these
1087 are ordered specifically such that more restrictive attributes are
1088 at lower bit positions. This fact is known by the C++ tm attribute
1089 inheritance code such that least bit extraction (mask & -mask) results
1090 in the most restrictive attribute. */
1091#define TM_ATTR_SAFE 1
1092#define TM_ATTR_CALLABLE 2
1093#define TM_ATTR_PURE 4
1094#define TM_ATTR_IRREVOCABLE 8
1095#define TM_ATTR_MAY_CANCEL_OUTER 16
1096
1097extern int tm_attr_to_mask (tree);
1098extern tree tm_mask_to_attr (int);
1099extern tree find_tm_attribute (tree);
1100
3ce4f9e4
ESR
1101/* A suffix-identifier value doublet that represents user-defined literals
1102 for C++-0x. */
1103struct GTY(()) tree_userdef_literal {
1104 struct tree_base base;
1105 tree suffix_id;
1106 tree value;
1107 tree num_string;
1108};
1109
1110#define USERDEF_LITERAL_SUFFIX_ID(NODE) \
1111 (((struct tree_userdef_literal *)USERDEF_LITERAL_CHECK (NODE))->suffix_id)
1112
1113#define USERDEF_LITERAL_VALUE(NODE) \
1114 (((struct tree_userdef_literal *)USERDEF_LITERAL_CHECK (NODE))->value)
1115
1116#define USERDEF_LITERAL_NUM_STRING(NODE) \
1117 (((struct tree_userdef_literal *)USERDEF_LITERAL_CHECK (NODE))->num_string)
1118
1119#define USERDEF_LITERAL_TYPE(NODE) \
1120 (TREE_TYPE (USERDEF_LITERAL_VALUE (NODE)))
1121
1122extern tree build_userdef_literal (tree suffix_id, tree value, tree num_string);
1123
88657302 1124#endif /* ! GCC_C_COMMON_H */