]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/c-family/c-common.h
PR middle-end/82063 - issues with arguments enabled by -Wall
[thirdparty/gcc.git] / gcc / c-family / c-common.h
CommitLineData
72040e7e 1/* Definitions for c-common.c.
8e8f6434 2 Copyright (C) 1987-2018 Free Software Foundation, Inc.
72040e7e 3
f12b58b3 4This file is part of GCC.
72040e7e 5
f12b58b3 6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
8c4c00c1 8Software Foundation; either version 3, or (at your option) any later
f12b58b3 9version.
72040e7e 10
f12b58b3 11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
72040e7e 15
16You should have received a copy of the GNU General Public License
8c4c00c1 17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
72040e7e 19
518796ad 20#ifndef GCC_C_COMMON_H
21#define GCC_C_COMMON_H
22
e41f0d80 23#include "splay-tree.h"
0d086e18 24#include "cpplib.h"
b20a8bb4 25#include "alias.h"
4a020a8c 26#include "tree.h"
b20a8bb4 27#include "fold-const.h"
4a7580c4 28#include "wide-int-bitmask.h"
e41f0d80 29
9f19e0f9 30/* In order for the format checking to accept the C frontend
31 diagnostic framework extensions, you must include this file before
0b205f4c 32 diagnostic-core.h, not after. The C front end formats are a subset of those
9f19e0f9 33 for C++, so they are the appropriate set to use in common code;
34 cp-tree.h overrides this for C++. */
0b205f4c 35#if defined(GCC_DIAGNOSTIC_CORE_H)
36#error \
37In order for the format checking to accept the C front end diagnostic \
38framework extensions, you must include this file before diagnostic-core.h \
39never after.
40#endif
9f19e0f9 41#ifndef GCC_DIAG_STYLE
42#define GCC_DIAG_STYLE __gcc_cdiag__
43#endif
44#include "diagnostic-core.h"
45
5c3247a9 46/* Usage of TREE_LANG_FLAG_?:
bf2a43ff 47 0: IDENTIFIER_MARKED (used by search routines).
a75b1c71 48 C_MAYBE_CONST_EXPR_INT_OPERANDS (in C_MAYBE_CONST_EXPR, for C)
5c3247a9 49 1: C_DECLARED_LABEL_FLAG (in LABEL_DECL)
2363ef00 50 STATEMENT_LIST_STMT_EXPR (in STATEMENT_LIST)
a75b1c71 51 C_MAYBE_CONST_EXPR_NON_CONST (in C_MAYBE_CONST_EXPR, for C)
4ee9c684 52 2: unused
2e3f4877 53 3: STATEMENT_LIST_HAS_LABEL (in STATEMENT_LIST)
2363ef00 54 4: unused
5c3247a9 55*/
56
518796ad 57/* Reserved identifiers. This is the union of all the keywords for C,
7fd957fe 58 C++, and Objective-C. All the type modifiers have to be in one
518796ad 59 block at the beginning, because they are used as mask bits. There
985c6e3a 60 are 28 type modifiers; if we add many more we will have to redesign
518796ad 61 the mask mechanism. */
988fc1d1 62
63enum rid
64{
518796ad 65 /* Modifiers: */
88b5b080 66 /* C, in empirical order of frequency. */
518796ad 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,
b560fabd 71 RID_NORETURN, RID_ATOMIC,
518796ad 72
73 /* C extensions */
9421ebb9 74 RID_COMPLEX, RID_THREAD, RID_SAT,
518796ad 75
76 /* C++ */
77 RID_FRIEND, RID_VIRTUAL, RID_EXPLICIT, RID_EXPORT, RID_MUTABLE,
78
b27e241e 79 /* ObjC ("PQ" reserved words - they do not appear after a '@' and
80 are keywords only in specific contexts) */
f17c0828 81 RID_IN, RID_OUT, RID_INOUT, RID_BYCOPY, RID_BYREF, RID_ONEWAY,
518796ad 82
86c110ac 83 /* ObjC ("PATTR" reserved words - they do not appear after a '@'
84 and are keywords only as property attributes) */
7590f0e5 85 RID_GETTER, RID_SETTER,
86 RID_READONLY, RID_READWRITE,
87 RID_ASSIGN, RID_RETAIN, RID_COPY,
7590f0e5 88 RID_NONATOMIC,
86c110ac 89
c1800156 90 /* C (reserved and imaginary types not implemented, so any use is a
91 syntax error) */
92 RID_IMAGINARY,
93
518796ad 94 /* C */
95 RID_INT, RID_CHAR, RID_FLOAT, RID_DOUBLE, RID_VOID,
96 RID_ENUM, RID_STRUCT, RID_UNION, RID_IF, RID_ELSE,
97 RID_WHILE, RID_DO, RID_FOR, RID_SWITCH, RID_CASE,
98 RID_DEFAULT, RID_BREAK, RID_CONTINUE, RID_RETURN, RID_GOTO,
99 RID_SIZEOF,
100
101 /* C extensions */
102 RID_ASM, RID_TYPEOF, RID_ALIGNOF, RID_ATTRIBUTE, RID_VA_ARG,
84e28d80 103 RID_EXTENSION, RID_IMAGPART, RID_REALPART, RID_LABEL, RID_CHOOSE_EXPR,
6cf89e04 104 RID_TYPES_COMPATIBLE_P, RID_BUILTIN_COMPLEX, RID_BUILTIN_SHUFFLE,
aac64699 105 RID_BUILTIN_TGMATH,
c4503c0a 106 RID_DFLOAT32, RID_DFLOAT64, RID_DFLOAT128,
82c85aba 107
108 /* TS 18661-3 keywords, in the same sequence as the TI_* values. */
109 RID_FLOAT16,
110 RID_FLOATN_NX_FIRST = RID_FLOAT16,
111 RID_FLOAT32,
112 RID_FLOAT64,
113 RID_FLOAT128,
114 RID_FLOAT32X,
115 RID_FLOAT64X,
116 RID_FLOAT128X,
117#define CASE_RID_FLOATN_NX \
118 case RID_FLOAT16: case RID_FLOAT32: case RID_FLOAT64: case RID_FLOAT128: \
119 case RID_FLOAT32X: case RID_FLOAT64X: case RID_FLOAT128X
120
6f58cf06 121 RID_FRACT, RID_ACCUM, RID_AUTO_TYPE, RID_BUILTIN_CALL_WITH_STATIC_CHAIN,
518796ad 122
b1f04d34 123 /* "__GIMPLE", for the GIMPLE-parsing extension to the C frontend. */
124 RID_GIMPLE,
125
126 /* "__PHI", for parsing PHI function in GIMPLE FE. */
127 RID_PHI,
128
175e0d6b 129 /* "__RTL", for the RTL-parsing extension to the C frontend. */
130 RID_RTL,
131
32074525 132 /* C11 */
7aa04c8d 133 RID_ALIGNAS, RID_GENERIC,
83e25171 134
5c6e5756 135 /* This means to warn that this is a C++ keyword, and then treat it
136 as a normal identifier. */
137 RID_CXX_COMPAT_WARN,
138
4c0315d0 139 /* GNU transactional memory extension */
140 RID_TRANSACTION_ATOMIC, RID_TRANSACTION_RELAXED, RID_TRANSACTION_CANCEL,
141
65b7f83f 142 /* Too many ways of getting the name of a function as a string */
143 RID_FUNCTION_NAME, RID_PRETTY_FUNCTION_NAME, RID_C99_FUNCTION_NAME,
144
b27e241e 145 /* C++ (some of these are keywords in Objective-C as well, but only
146 if they appear after a '@') */
518796ad 147 RID_BOOL, RID_WCHAR, RID_CLASS,
148 RID_PUBLIC, RID_PRIVATE, RID_PROTECTED,
149 RID_TEMPLATE, RID_NULL, RID_CATCH,
150 RID_DELETE, RID_FALSE, RID_NAMESPACE,
a0c938f0 151 RID_NEW, RID_OFFSETOF, RID_OPERATOR,
152 RID_THIS, RID_THROW, RID_TRUE,
153 RID_TRY, RID_TYPENAME, RID_TYPEID,
924bbf02 154 RID_USING, RID_CHAR16, RID_CHAR32,
518796ad 155
156 /* casts */
157 RID_CONSTCAST, RID_DYNCAST, RID_REINTCAST, RID_STATCAST,
158
481451eb 159 /* C++ extensions */
6e1b2ffb 160 RID_ADDRESSOF, RID_BASES,
161 RID_BUILTIN_LAUNDER, RID_DIRECT_BASES,
481451eb 162 RID_HAS_NOTHROW_ASSIGN, RID_HAS_NOTHROW_CONSTRUCTOR,
163 RID_HAS_NOTHROW_COPY, RID_HAS_TRIVIAL_ASSIGN,
164 RID_HAS_TRIVIAL_CONSTRUCTOR, RID_HAS_TRIVIAL_COPY,
adeca879 165 RID_HAS_TRIVIAL_DESTRUCTOR, RID_HAS_UNIQUE_OBJ_REPRESENTATIONS,
166 RID_HAS_VIRTUAL_DESTRUCTOR,
ca2af7df 167 RID_IS_ABSTRACT, RID_IS_AGGREGATE,
168 RID_IS_BASE_OF, RID_IS_CLASS,
481451eb 169 RID_IS_EMPTY, RID_IS_ENUM,
aa4313eb 170 RID_IS_FINAL, RID_IS_LITERAL_TYPE,
171 RID_IS_POD, RID_IS_POLYMORPHIC,
56c12fd4 172 RID_IS_SAME_AS,
aa4313eb 173 RID_IS_STD_LAYOUT, RID_IS_TRIVIAL,
f76a9aa8 174 RID_IS_TRIVIALLY_ASSIGNABLE, RID_IS_TRIVIALLY_CONSTRUCTIBLE,
717e52f9 175 RID_IS_TRIVIALLY_COPYABLE,
aa4313eb 176 RID_IS_UNION, RID_UNDERLYING_TYPE,
b4d90ee2 177 RID_IS_ASSIGNABLE, RID_IS_CONSTRUCTIBLE,
481451eb 178
aa4313eb 179 /* C++11 */
98fe9664 180 RID_CONSTEXPR, RID_DECLTYPE, RID_NOEXCEPT, RID_NULLPTR, RID_STATIC_ASSERT,
df1683c2 181
56c12fd4 182 /* C++ concepts */
183 RID_CONCEPT, RID_REQUIRES,
184
6d02e6b2 185 /* C++ transactional memory. */
186 RID_ATOMIC_NOEXCEPT, RID_ATOMIC_CANCEL, RID_SYNCHRONIZED,
187
b27e241e 188 /* Objective-C ("AT" reserved words - they are only keywords when
189 they follow '@') */
9e8a7e85 190 RID_AT_ENCODE, RID_AT_END,
518796ad 191 RID_AT_CLASS, RID_AT_ALIAS, RID_AT_DEFS,
4a8875ed 192 RID_AT_PRIVATE, RID_AT_PROTECTED, RID_AT_PUBLIC, RID_AT_PACKAGE,
a0c938f0 193 RID_AT_PROTOCOL, RID_AT_SELECTOR,
c17b85ea 194 RID_AT_THROW, RID_AT_TRY, RID_AT_CATCH,
069761fb 195 RID_AT_FINALLY, RID_AT_SYNCHRONIZED,
86c110ac 196 RID_AT_OPTIONAL, RID_AT_REQUIRED, RID_AT_PROPERTY,
e1f293c0 197 RID_AT_SYNTHESIZE, RID_AT_DYNAMIC,
c17b85ea 198 RID_AT_INTERFACE,
518796ad 199 RID_AT_IMPLEMENTATION,
200
6d5d708e 201 /* Named address support, mapping the keyword to a particular named address
202 number. Named address space 0 is reserved for the generic address. If
203 there are more than 254 named addresses, the addr_space_t type will need
204 to be grown from an unsigned char to unsigned short. */
205 RID_ADDR_SPACE_0, /* generic address */
206 RID_ADDR_SPACE_1,
207 RID_ADDR_SPACE_2,
208 RID_ADDR_SPACE_3,
209 RID_ADDR_SPACE_4,
210 RID_ADDR_SPACE_5,
211 RID_ADDR_SPACE_6,
212 RID_ADDR_SPACE_7,
213 RID_ADDR_SPACE_8,
214 RID_ADDR_SPACE_9,
215 RID_ADDR_SPACE_10,
216 RID_ADDR_SPACE_11,
217 RID_ADDR_SPACE_12,
218 RID_ADDR_SPACE_13,
219 RID_ADDR_SPACE_14,
220 RID_ADDR_SPACE_15,
221
222 RID_FIRST_ADDR_SPACE = RID_ADDR_SPACE_0,
223 RID_LAST_ADDR_SPACE = RID_ADDR_SPACE_15,
224
9f75f026 225 /* __intN keywords. The _N_M here doesn't correspond to the intN
226 in the keyword; use the bitsize in int_n_t_data_t[M] for that.
227 For example, if int_n_t_data_t[0].bitsize is 13, then RID_INT_N_0
228 is for __int13. */
229
230 /* Note that the range to use is RID_FIRST_INT_N through
231 RID_FIRST_INT_N + NUM_INT_N_ENTS - 1 and c-parser.c has a list of
232 all RID_INT_N_* in a case statement. */
233
234 RID_INT_N_0,
235 RID_INT_N_1,
236 RID_INT_N_2,
237 RID_INT_N_3,
238
239 RID_FIRST_INT_N = RID_INT_N_0,
240 RID_LAST_INT_N = RID_INT_N_3,
241
518796ad 242 RID_MAX,
243
244 RID_FIRST_MODIFIER = RID_STATIC,
f17c0828 245 RID_LAST_MODIFIER = RID_ONEWAY,
246
fa769cc5 247 RID_FIRST_CXX11 = RID_CONSTEXPR,
248 RID_LAST_CXX11 = RID_STATIC_ASSERT,
f17c0828 249 RID_FIRST_AT = RID_AT_ENCODE,
250 RID_LAST_AT = RID_AT_IMPLEMENTATION,
251 RID_FIRST_PQ = RID_IN,
86c110ac 252 RID_LAST_PQ = RID_ONEWAY,
7590f0e5 253 RID_FIRST_PATTR = RID_GETTER,
254 RID_LAST_PATTR = RID_NONATOMIC
988fc1d1 255};
256
f17c0828 257#define OBJC_IS_AT_KEYWORD(rid) \
84166705 258 ((unsigned int) (rid) >= (unsigned int) RID_FIRST_AT && \
259 (unsigned int) (rid) <= (unsigned int) RID_LAST_AT)
f17c0828 260
261#define OBJC_IS_PQ_KEYWORD(rid) \
84166705 262 ((unsigned int) (rid) >= (unsigned int) RID_FIRST_PQ && \
263 (unsigned int) (rid) <= (unsigned int) RID_LAST_PQ)
f17c0828 264
86c110ac 265#define OBJC_IS_PATTR_KEYWORD(rid) \
266 ((unsigned int) (rid) >= (unsigned int) RID_FIRST_PATTR && \
267 (unsigned int) (rid) <= (unsigned int) RID_LAST_PATTR)
268
b27e241e 269/* OBJC_IS_CXX_KEYWORD recognizes the 'CXX_OBJC' keywords (such as
270 'class') which are shared in a subtle way between Objective-C and
271 C++. When the lexer is lexing in Objective-C/Objective-C++, if it
272 finds '@' followed by one of these identifiers (eg, '@class'), it
273 recognizes the whole as an Objective-C keyword. If the identifier
274 is found elsewhere, it follows the rules of the C/C++ language.
275 */
276#define OBJC_IS_CXX_KEYWORD(rid) \
6d02e6b2 277 (rid == RID_CLASS || rid == RID_SYNCHRONIZED \
b27e241e 278 || rid == RID_PUBLIC || rid == RID_PROTECTED || rid == RID_PRIVATE \
279 || rid == RID_TRY || rid == RID_THROW || rid == RID_CATCH)
280
988fc1d1 281/* The elements of `ridpointers' are identifier nodes for the reserved
282 type names and storage classes. It is indexed by a RID_... value. */
84166705 283extern GTY ((length ("(int) RID_MAX"))) tree *ridpointers;
988fc1d1 284
72040e7e 285/* Standard named or nameless data types of the C compiler. */
286
287enum c_tree_index
288{
924bbf02 289 CTI_CHAR16_TYPE,
290 CTI_CHAR32_TYPE,
72040e7e 291 CTI_WCHAR_TYPE,
f3449a3c 292 CTI_UNDERLYING_WCHAR_TYPE,
55dbcdfe 293 CTI_WINT_TYPE,
428a1c21 294 CTI_SIGNED_SIZE_TYPE, /* For format checking only. */
295 CTI_UNSIGNED_PTRDIFF_TYPE, /* For format checking only. */
e3fff6f2 296 CTI_INTMAX_TYPE,
297 CTI_UINTMAX_TYPE,
72040e7e 298 CTI_WIDEST_INT_LIT_TYPE,
299 CTI_WIDEST_UINT_LIT_TYPE,
300
f3449a3c 301 /* Types for <stdint.h>, that may not be defined on all
302 targets. */
303 CTI_SIG_ATOMIC_TYPE,
304 CTI_INT8_TYPE,
305 CTI_INT16_TYPE,
306 CTI_INT32_TYPE,
307 CTI_INT64_TYPE,
308 CTI_UINT8_TYPE,
309 CTI_UINT16_TYPE,
310 CTI_UINT32_TYPE,
311 CTI_UINT64_TYPE,
312 CTI_INT_LEAST8_TYPE,
313 CTI_INT_LEAST16_TYPE,
314 CTI_INT_LEAST32_TYPE,
315 CTI_INT_LEAST64_TYPE,
316 CTI_UINT_LEAST8_TYPE,
317 CTI_UINT_LEAST16_TYPE,
318 CTI_UINT_LEAST32_TYPE,
319 CTI_UINT_LEAST64_TYPE,
320 CTI_INT_FAST8_TYPE,
321 CTI_INT_FAST16_TYPE,
322 CTI_INT_FAST32_TYPE,
323 CTI_INT_FAST64_TYPE,
324 CTI_UINT_FAST8_TYPE,
325 CTI_UINT_FAST16_TYPE,
326 CTI_UINT_FAST32_TYPE,
327 CTI_UINT_FAST64_TYPE,
328 CTI_INTPTR_TYPE,
329 CTI_UINTPTR_TYPE,
330
72040e7e 331 CTI_CHAR_ARRAY_TYPE,
924bbf02 332 CTI_CHAR16_ARRAY_TYPE,
333 CTI_CHAR32_ARRAY_TYPE,
72040e7e 334 CTI_WCHAR_ARRAY_TYPE,
72040e7e 335 CTI_STRING_TYPE,
336 CTI_CONST_STRING_TYPE,
337
4f9a1c9b 338 /* Type for boolean expressions (bool in C++, int in C). */
3c2239cf 339 CTI_TRUTHVALUE_TYPE,
340 CTI_TRUTHVALUE_TRUE,
341 CTI_TRUTHVALUE_FALSE,
342
72040e7e 343 CTI_DEFAULT_FUNCTION_TYPE,
72040e7e 344
88b5b080 345 /* These are not types, but we have to look them up all the time. */
65b7f83f 346 CTI_FUNCTION_NAME_DECL,
347 CTI_PRETTY_FUNCTION_NAME_DECL,
348 CTI_C99_FUNCTION_NAME_DECL,
349 CTI_SAVED_FUNCTION_NAME_DECLS,
a0c938f0 350
ae84079f 351 CTI_NULL,
352
72040e7e 353 CTI_MAX
354};
355
89768577 356#define C_CPP_HASHNODE(id) \
357 (&(((struct c_common_identifier *) (id))->node))
7d339f93 358#define C_RID_CODE(id) \
359 ((enum rid) (((struct c_common_identifier *) (id))->node.rid_code))
360#define C_SET_RID_CODE(id, code) \
361 (((struct c_common_identifier *) (id))->node.rid_code = (unsigned char) code)
0d086e18 362
363/* Identifier part common to the C front ends. Inherits from
364 tree_identifier, despite appearances. */
fb1e4f4a 365struct GTY(()) c_common_identifier {
fc9c9e87 366 struct tree_common common;
573aba85 367 struct cpp_hashnode node;
0d086e18 368};
369
5c6e5756 370/* An entry in the reserved keyword table. */
371
372struct c_common_resword
373{
374 const char *const word;
375 ENUM_BITFIELD(rid) const rid : 16;
376 const unsigned int disable : 16;
377};
378
de801c28 379/* Mode used to build pointers (VOIDmode means ptr_mode). */
380
381extern machine_mode c_default_pointer_mode;
382
07b8f133 383/* Extra cpp_ttype values for C++. */
384
07b8f133 385/* A token type for template-ids. If a template-id is processed while
386 parsing tentatively, it is replaced with a CPP_TEMPLATE_ID token;
387 the value of the CPP_TEMPLATE_ID is whatever was returned by
388 cp_parser_template_id. */
389#define CPP_TEMPLATE_ID ((enum cpp_ttype) (CPP_KEYWORD + 1))
390
391/* A token type for nested-name-specifiers. If a
392 nested-name-specifier is processed while parsing tentatively, it is
393 replaced with a CPP_NESTED_NAME_SPECIFIER token; the value of the
394 CPP_NESTED_NAME_SPECIFIER is whatever was returned by
395 cp_parser_nested_name_specifier_opt. */
396#define CPP_NESTED_NAME_SPECIFIER ((enum cpp_ttype) (CPP_TEMPLATE_ID + 1))
397
398/* A token type for pre-parsed C++0x decltype. */
399#define CPP_DECLTYPE ((enum cpp_ttype) (CPP_NESTED_NAME_SPECIFIER + 1))
400
b0542e7c 401/* A token type for pre-parsed primary-expression (lambda- or statement-). */
402#define CPP_PREPARSED_EXPR ((enum cpp_ttype) (CPP_DECLTYPE + 1))
403
07b8f133 404/* The number of token types, including C++-specific ones. */
b0542e7c 405#define N_CP_TTYPES ((int) (CPP_PREPARSED_EXPR + 1))
07b8f133 406
5c6e5756 407/* Disable mask. Keywords are disabled if (reswords[i].disable &
408 mask) is _true_. Thus for keywords which are present in all
409 languages the disable field is zero. */
410
411#define D_CONLY 0x001 /* C only (not in C++). */
412#define D_CXXONLY 0x002 /* C++ only (not in C). */
413#define D_C99 0x004 /* In C, C99 only. */
fa769cc5 414#define D_CXX11 0x008 /* In C++, C++11 only. */
5c6e5756 415#define D_EXT 0x010 /* GCC extension. */
416#define D_EXT89 0x020 /* GCC extension incorporated in C99. */
417#define D_ASM 0x040 /* Disabled by -fno-asm. */
418#define D_OBJC 0x080 /* In Objective C and neither C nor C++. */
419#define D_CXX_OBJC 0x100 /* In Objective C, and C++, but not C. */
420#define D_CXXWARN 0x200 /* In C warn with -Wcxx-compat. */
56c12fd4 421#define D_CXX_CONCEPTS 0x400 /* In C++, only with concepts. */
6d02e6b2 422#define D_TRANSMEM 0X800 /* C++ transactional memory TS. */
56c12fd4 423
424#define D_CXX_CONCEPTS_FLAGS D_CXXONLY | D_CXX_CONCEPTS
5c6e5756 425
426/* The reserved keyword table. */
427extern const struct c_common_resword c_common_reswords[];
428
429/* The number of items in the reserved keyword table. */
430extern const unsigned int num_c_common_reswords;
431
924bbf02 432#define char16_type_node c_global_trees[CTI_CHAR16_TYPE]
433#define char32_type_node c_global_trees[CTI_CHAR32_TYPE]
72040e7e 434#define wchar_type_node c_global_trees[CTI_WCHAR_TYPE]
f3449a3c 435#define underlying_wchar_type_node c_global_trees[CTI_UNDERLYING_WCHAR_TYPE]
55dbcdfe 436#define wint_type_node c_global_trees[CTI_WINT_TYPE]
428a1c21 437#define signed_size_type_node c_global_trees[CTI_SIGNED_SIZE_TYPE]
438#define unsigned_ptrdiff_type_node c_global_trees[CTI_UNSIGNED_PTRDIFF_TYPE]
e3fff6f2 439#define intmax_type_node c_global_trees[CTI_INTMAX_TYPE]
440#define uintmax_type_node c_global_trees[CTI_UINTMAX_TYPE]
72040e7e 441#define widest_integer_literal_type_node c_global_trees[CTI_WIDEST_INT_LIT_TYPE]
442#define widest_unsigned_literal_type_node c_global_trees[CTI_WIDEST_UINT_LIT_TYPE]
443
f3449a3c 444#define sig_atomic_type_node c_global_trees[CTI_SIG_ATOMIC_TYPE]
445#define int8_type_node c_global_trees[CTI_INT8_TYPE]
446#define int16_type_node c_global_trees[CTI_INT16_TYPE]
447#define int32_type_node c_global_trees[CTI_INT32_TYPE]
448#define int64_type_node c_global_trees[CTI_INT64_TYPE]
449#define uint8_type_node c_global_trees[CTI_UINT8_TYPE]
74bdbe96 450#define c_uint16_type_node c_global_trees[CTI_UINT16_TYPE]
f3449a3c 451#define c_uint32_type_node c_global_trees[CTI_UINT32_TYPE]
452#define c_uint64_type_node c_global_trees[CTI_UINT64_TYPE]
453#define int_least8_type_node c_global_trees[CTI_INT_LEAST8_TYPE]
454#define int_least16_type_node c_global_trees[CTI_INT_LEAST16_TYPE]
455#define int_least32_type_node c_global_trees[CTI_INT_LEAST32_TYPE]
456#define int_least64_type_node c_global_trees[CTI_INT_LEAST64_TYPE]
457#define uint_least8_type_node c_global_trees[CTI_UINT_LEAST8_TYPE]
458#define uint_least16_type_node c_global_trees[CTI_UINT_LEAST16_TYPE]
459#define uint_least32_type_node c_global_trees[CTI_UINT_LEAST32_TYPE]
460#define uint_least64_type_node c_global_trees[CTI_UINT_LEAST64_TYPE]
461#define int_fast8_type_node c_global_trees[CTI_INT_FAST8_TYPE]
462#define int_fast16_type_node c_global_trees[CTI_INT_FAST16_TYPE]
463#define int_fast32_type_node c_global_trees[CTI_INT_FAST32_TYPE]
464#define int_fast64_type_node c_global_trees[CTI_INT_FAST64_TYPE]
465#define uint_fast8_type_node c_global_trees[CTI_UINT_FAST8_TYPE]
466#define uint_fast16_type_node c_global_trees[CTI_UINT_FAST16_TYPE]
467#define uint_fast32_type_node c_global_trees[CTI_UINT_FAST32_TYPE]
468#define uint_fast64_type_node c_global_trees[CTI_UINT_FAST64_TYPE]
469#define intptr_type_node c_global_trees[CTI_INTPTR_TYPE]
470#define uintptr_type_node c_global_trees[CTI_UINTPTR_TYPE]
471
3c2239cf 472#define truthvalue_type_node c_global_trees[CTI_TRUTHVALUE_TYPE]
473#define truthvalue_true_node c_global_trees[CTI_TRUTHVALUE_TRUE]
474#define truthvalue_false_node c_global_trees[CTI_TRUTHVALUE_FALSE]
4f9a1c9b 475
72040e7e 476#define char_array_type_node c_global_trees[CTI_CHAR_ARRAY_TYPE]
924bbf02 477#define char16_array_type_node c_global_trees[CTI_CHAR16_ARRAY_TYPE]
478#define char32_array_type_node c_global_trees[CTI_CHAR32_ARRAY_TYPE]
72040e7e 479#define wchar_array_type_node c_global_trees[CTI_WCHAR_ARRAY_TYPE]
72040e7e 480#define string_type_node c_global_trees[CTI_STRING_TYPE]
481#define const_string_type_node c_global_trees[CTI_CONST_STRING_TYPE]
482
483#define default_function_type c_global_trees[CTI_DEFAULT_FUNCTION_TYPE]
72040e7e 484
65b7f83f 485#define function_name_decl_node c_global_trees[CTI_FUNCTION_NAME_DECL]
486#define pretty_function_name_decl_node c_global_trees[CTI_PRETTY_FUNCTION_NAME_DECL]
487#define c99_function_name_decl_node c_global_trees[CTI_C99_FUNCTION_NAME_DECL]
488#define saved_function_name_decls c_global_trees[CTI_SAVED_FUNCTION_NAME_DECLS]
71d9fc9b 489
ae84079f 490/* The node for C++ `__null'. */
491#define null_node c_global_trees[CTI_NULL]
492
1f3233d1 493extern GTY(()) tree c_global_trees[CTI_MAX];
29d00ba7 494
e41f0d80 495/* Mark which labels are explicitly declared.
496 These may be shadowed, and may be referenced from nested functions. */
497#define C_DECLARED_LABEL_FLAG(label) TREE_LANG_FLAG_1 (label)
498
6dc50383 499enum c_language_kind
29d00ba7 500{
b2601928 501 clk_c = 0, /* C90, C94, C99 or C11 */
c0f19401 502 clk_objc = 1, /* clk_c with ObjC features. */
503 clk_cxx = 2, /* ANSI/ISO C++ */
504 clk_objcxx = 3 /* clk_cxx with ObjC features. */
6dc50383 505};
29d00ba7 506
c0f19401 507/* To test for a specific language use c_language, defined by each
508 front end. For "ObjC features" or "not C++" use the macros. */
509extern c_language_kind c_language;
510
90b8bebd 511#define c_dialect_cxx() ((c_language & clk_cxx) != 0)
512#define c_dialect_objc() ((c_language & clk_objc) != 0)
c0f19401 513
f08923b3 514/* The various name of operator that appears in error messages. */
6dc50383 515enum ref_operator {
f08923b3 516 /* NULL */
517 RO_NULL,
518 /* array indexing */
519 RO_ARRAY_INDEXING,
520 /* unary * */
521 RO_UNARY_STAR,
522 /* -> */
523 RO_ARROW,
524 /* implicit conversion */
7354ad2e 525 RO_IMPLICIT_CONVERSION,
526 /* ->* */
527 RO_ARROW_STAR
6dc50383 528};
f08923b3 529
a08e60ae 530/* Information about a statement tree. */
531
fb1e4f4a 532struct GTY(()) stmt_tree_s {
cacfdc02 533 /* A stack of statement lists being collected. */
f1f41a6c 534 vec<tree, va_gc> *x_cur_stmt_list;
2363ef00 535
d10cfa8d 536 /* In C++, Nonzero if we should treat statements as full
61e987fc 537 expressions. In particular, this variable is non-zero if at the
a08e60ae 538 end of a statement we should destroy any temporaries created
539 during that statement. Similarly, if, at the end of a block, we
540 should destroy any local variables in this block. Normally, this
d10cfa8d 541 variable is nonzero, since those are the normal semantics of
a08e60ae 542 C++.
543
a08e60ae 544 This flag has no effect in C. */
5e6015b1 545 int stmts_are_full_exprs_p;
a08e60ae 546};
547
548typedef struct stmt_tree_s *stmt_tree;
549
550/* Global state pertinent to the current function. Some C dialects
551 extend this structure with additional fields. */
552
fb1e4f4a 553struct GTY(()) c_language_function {
a08e60ae 554 /* While we are parsing the function, this contains information
555 about the statement-tree that we are building. */
556 struct stmt_tree_s x_stmt_tree;
a4e3ffad 557
558 /* Vector of locally defined typedefs, for
559 -Wunused-local-typedefs. */
f1f41a6c 560 vec<tree, va_gc> *local_typedefs;
a08e60ae 561};
562
cacfdc02 563#define stmt_list_stack (current_stmt_tree ()->x_cur_stmt_list)
564
0975351b 565/* When building a statement-tree, this is the current statement list
f1f41a6c 566 being collected. */
567#define cur_stmt_list (stmt_list_stack->last ())
cacfdc02 568
f1f41a6c 569#define building_stmt_list_p() (stmt_list_stack && !stmt_list_stack->is_empty())
e41f0d80 570
571/* Language-specific hooks. */
572
caa6fdce 573/* If non-NULL, this function is called after a precompile header file
574 is loaded. */
575extern void (*lang_post_pch_load) (void);
576
393b349a 577extern void push_file_scope (void);
578extern void pop_file_scope (void);
1cae46be 579extern stmt_tree current_stmt_tree (void);
2363ef00 580extern tree push_stmt_list (void);
2363ef00 581extern tree pop_stmt_list (tree);
1cae46be 582extern tree add_stmt (tree);
2363ef00 583extern void push_cleanup (tree, tree, bool);
cdf05a3f 584
8458f4ca 585extern tree build_modify_expr (location_t, tree, tree, enum tree_code,
e60a6f7b 586 location_t, tree, tree);
f08923b3 587extern tree build_indirect_ref (location_t, tree, ref_operator);
1cae46be 588
9f627b1a 589extern bool has_c_linkage (const_tree decl);
547c6b1f 590extern bool c_decl_implicit (const_tree);
573aba85 591\f
574a6990 592/* Switches common to the C front ends. */
593
f7070933 594/* Nonzero means don't output line number information. */
595
596extern char flag_no_line_commands;
597
598/* Nonzero causes -E output not to be done, but directives such as
599 #define that have side effects are still obeyed. */
600
601extern char flag_no_output;
602
34c3de48 603/* Nonzero means dump macros in some fashion; contains the 'D', 'M',
604 'N' or 'U' of the command line switch. */
f7070933 605
606extern char flag_dump_macros;
607
608/* Nonzero means pass #include lines through to the output. */
609
610extern char flag_dump_includes;
611
d718b525 612/* Nonzero means process PCH files while preprocessing. */
613
614extern bool flag_pch_preprocess;
615
573aba85 616/* The file name to which we should write a precompiled header, or
617 NULL if no header will be written in this compile. */
618
619extern const char *pch_file;
620
1ed9d5f5 621/* Nonzero if an ISO standard was selected. It rejects macros in the
622 user's namespace. */
573aba85 623
1ed9d5f5 624extern int flag_iso;
625
574a6990 626/* C/ObjC language option variables. */
dbf6c367 627
481c6ce6 628
574a6990 629/* Nonzero means allow type mismatches in conditional expressions;
630 just make their values `void'. */
e37414d8 631
574a6990 632extern int flag_cond_mismatch;
bd08a4e6 633
ec35ee92 634/* Nonzero means enable C89 Amendment 1 features. */
49bc3768 635
636extern int flag_isoc94;
637
32074525 638/* Nonzero means use the ISO C99 (or C11) dialect of C. */
29d00ba7 639
640extern int flag_isoc99;
641
32074525 642/* Nonzero means use the ISO C11 dialect of C. */
39012afb 643
32074525 644extern int flag_isoc11;
39012afb 645
8b332087 646/* Nonzero means that we have builtin functions, and main is an int. */
9bee1c90 647
648extern int flag_hosted;
649
574a6990 650/* ObjC language option variables. */
651
652
574a6990 653/* Tells the compiler that this is a special run. Do not perform any
654 compiling, instead we are to test some platform dependent features
655 and output a C header file with appropriate definitions. */
656
657extern int print_struct_values;
658
ec9c816b 659/* Tells the compiler what is the constant string class for ObjC. */
574a6990 660
e23fd334 661extern const char *constant_string_class_name;
574a6990 662
574a6990 663
664/* C++ language option variables. */
665
229a58b1 666/* The reference version of the ABI for -Wabi. */
667
668extern int warn_abi_version;
574a6990 669
74b777e5 670/* Return TRUE if one of {flag_abi_version,flag_abi_compat_version} is
229a58b1 671 less than N and the other is at least N. */
672#define abi_compat_version_crosses(N) \
74b777e5 673 (abi_version_at_least(N) \
674 != (flag_abi_compat_version == 0 \
675 || flag_abi_compat_version >= (N)))
676
229a58b1 677/* Return TRUE if one of {flag_abi_version,warn_abi_version} is
678 less than N and the other is at least N, for use by -Wabi. */
679#define abi_version_crosses(N) \
680 (abi_version_at_least(N) \
681 != (warn_abi_version == 0 \
682 || warn_abi_version >= (N)))
683
574a6990 684/* Nonzero means generate separate instantiation control files and
685 juggle them at link time. */
686
687extern int flag_use_repository;
688
6dcdb5de 689/* The supported C++ dialects. */
690
691enum cxx_dialect {
d875b9d2 692 cxx_unset,
0d84dc2d 693 /* C++98 with TC1 */
6dcdb5de 694 cxx98,
0d84dc2d 695 cxx03 = cxx98,
696 /* C++11 */
697 cxx0x,
543efdbe 698 cxx11 = cxx0x,
c35e53f1 699 /* C++14 */
700 cxx14,
40e2decb 701 /* C++17 */
96bf2948 702 cxx17,
703 /* C++2a (C++20?) */
704 cxx2a
6dcdb5de 705};
0fe6eeac 706
6dcdb5de 707/* The C++ dialect being used. C++98 is the default. */
708extern enum cxx_dialect cxx_dialect;
0fe6eeac 709
574a6990 710/* Maximum template instantiation depth. This limit is rather
711 arbitrary, but it exists to limit the time it takes to notice
54cf6eed 712 excessively recursive template instantiations. */
574a6990 713
714extern int max_tinst_depth;
29d00ba7 715
48d94ede 716/* Nonzero means that we should not issue warnings about problems that
717 occur when the code is executed, because the code being processed
718 is not expected to be executed. This is set during parsing. This
719 is used for cases like sizeof() and "0 ? a : b". This is a count,
720 not a bool, because unexecuted expressions can nest. */
93894129 721
48d94ede 722extern int c_inhibit_evaluation_warnings;
93894129 723
7f5f3953 724/* Whether lexing has been completed, so subsequent preprocessor
725 errors should use the compiler's input_location. */
726
727extern bool done_lexing;
728
29d00ba7 729/* C types are partitioned into three subsets: object, function, and
730 incomplete types. */
731#define C_TYPE_OBJECT_P(type) \
732 (TREE_CODE (type) != FUNCTION_TYPE && TYPE_SIZE (type))
733
734#define C_TYPE_INCOMPLETE_P(type) \
735 (TREE_CODE (type) != FUNCTION_TYPE && TYPE_SIZE (type) == 0)
736
737#define C_TYPE_FUNCTION_P(type) \
738 (TREE_CODE (type) == FUNCTION_TYPE)
739
740/* For convenience we define a single macro to identify the class of
741 object or incomplete types. */
742#define C_TYPE_OBJECT_OR_INCOMPLETE_P(type) \
743 (!C_TYPE_FUNCTION_P (type))
744
79396169 745struct visibility_flags
746{
747 unsigned inpragma : 1; /* True when in #pragma GCC visibility. */
748 unsigned inlines_hidden : 1; /* True when -finlineshidden in effect. */
749};
750
e53013a8 751/* These enumerators are possible types of unsafe conversions. */
752enum conversion_safety {
753 /* The conversion is safe. */
754 SAFE_CONVERSION = 0,
755 /* Another type of conversion with problems. */
756 UNSAFE_OTHER,
757 /* Conversion between signed and unsigned integers
758 which are all warned about immediately, so this is unused. */
759 UNSAFE_SIGN,
760 /* Conversions that reduce the precision of reals including conversions
761 from reals to integers. */
762 UNSAFE_REAL,
763 /* Conversions from complex to reals or integers, that discard imaginary
764 component. */
765 UNSAFE_IMAGINARY
766};
ca9d7d74 767
79396169 768/* Global visibility options. */
769extern struct visibility_flags visibility_options;
770
f8e93a2e 771/* Attribute table common to the C front ends. */
772extern const struct attribute_spec c_common_attribute_table[];
773extern const struct attribute_spec c_common_format_attribute_table[];
774
65b7f83f 775/* Pointer to function to lazily generate the VAR_DECL for __FUNCTION__ etc.
9e5a737d 776 ID is the identifier to use, NAME is the string.
777 TYPE_DEP indicates whether it depends on type of the function or not
778 (i.e. __PRETTY_FUNCTION__). */
779
e60a6f7b 780extern tree (*make_fname_decl) (location_t, tree, int);
1cae46be 781
6ad8abad 782/* In c-decl.c and cp/tree.c. FIXME. */
34208e18 783extern void c_register_addr_space (const char *str, addr_space_t as);
6ad8abad 784
785/* In c-common.c. */
93be21c0 786extern bool in_late_binary_op;
6d5d708e 787extern const char *c_addr_space_name (addr_space_t as);
1cae46be 788extern tree identifier_global_value (tree);
27282252 789extern tree c_linkage_bindings (tree);
1cae46be 790extern void record_builtin_type (enum rid, const char *, tree);
791extern tree build_void_list_node (void);
792extern void start_fname_decls (void);
793extern void finish_fname_decls (void);
794extern const char *fname_as_string (int);
e3b80d49 795extern tree fname_decl (location_t, unsigned, tree);
1cae46be 796
83e25171 797extern int check_user_alignment (const_tree, bool);
bbd5521e 798extern bool check_function_arguments (location_t loc, const_tree, const_tree,
a115c319 799 int, tree *, vec<location_t> *);
1cae46be 800extern void check_function_arguments_recurse (void (*)
801 (void *, tree,
802 unsigned HOST_WIDE_INT),
803 void *, tree,
804 unsigned HOST_WIDE_INT);
5d4db8ef 805extern bool check_builtin_function_arguments (location_t, vec<location_t>,
806 tree, int, tree *);
a115c319 807extern void check_function_format (tree, int, tree *, vec<location_t> *);
3c77f69c 808extern bool attribute_fallthrough_p (tree);
1cae46be 809extern tree handle_format_attribute (tree *, tree, tree, int, bool *);
810extern tree handle_format_arg_attribute (tree *, tree, tree, int, bool *);
8e18705e 811extern bool c_common_handle_option (size_t, const char *, HOST_WIDE_INT, int,
812 location_t,
b78351e5 813 const struct cl_option_handlers *);
c94b1d0e 814extern bool default_handle_c_option (size_t, const char *, int);
3754d046 815extern tree c_common_type_for_mode (machine_mode, int);
1cae46be 816extern tree c_common_type_for_size (unsigned int, int);
9421ebb9 817extern tree c_common_fixed_point_type_for_size (unsigned int, unsigned int,
818 int, int);
11773141 819extern tree c_common_unsigned_type (tree);
1cae46be 820extern tree c_common_signed_type (tree);
821extern tree c_common_signed_or_unsigned_type (int, tree);
9b88d08d 822extern void c_common_init_ts (void);
c0e47fd4 823extern tree c_build_bitfield_integer_type (unsigned HOST_WIDE_INT, int);
645b0f8d 824extern enum conversion_safety unsafe_conversion_p (location_t, tree, tree, tree,
22a75734 825 bool);
9f627b1a 826extern bool decl_with_nonnull_addr_p (const_tree);
69cd03b2 827extern tree c_fully_fold (tree, bool, bool *, bool = false);
f59e3889 828extern tree c_wrap_maybe_const (tree, bool);
8e70fb09 829extern tree c_common_truthvalue_conversion (location_t, tree);
1cae46be 830extern void c_apply_type_quals_to_decl (int, tree);
a179a7dc 831extern tree c_sizeof_or_alignof_type (location_t, tree, bool, bool, int);
e60a6f7b 832extern tree c_alignof_expr (location_t, tree);
72040e7e 833/* Print an error message for invalid operands to arith operation CODE.
834 NOP_EXPR is used as a special case (see truthvalue_conversion). */
c0bf500c 835extern void binary_op_error (rich_location *, enum tree_code, tree, tree);
1cae46be 836extern tree fix_string_type (tree);
22a75734 837extern tree convert_and_check (location_t, tree, tree);
3aa0c315 838extern bool c_determine_visibility (tree);
73437615 839extern bool vector_types_compatible_elements_p (tree, tree);
3ae3a17f 840extern void mark_valid_location_for_stdc_pragma (bool);
841extern bool valid_location_for_stdc_pragma_p (void);
842extern void set_float_const_decimal64 (void);
843extern void clear_float_const_decimal64 (void);
844extern bool float_const_decimal64_p (void);
29d00ba7 845
a9ffdd35 846extern bool keyword_begins_type_specifier (enum rid);
847extern bool keyword_is_storage_class_specifier (enum rid);
848extern bool keyword_is_type_qualifier (enum rid);
fad3f658 849extern bool keyword_is_decl_specifier (enum rid);
db8ffb40 850extern unsigned max_align_t_align (void);
ffcdbf9c 851extern bool cxx_fundamental_alignment_p (unsigned);
46da3601 852extern bool pointer_to_zero_sized_aggr_p (tree);
0f4cea33 853extern bool bool_promoted_to_int_p (tree);
854extern tree fold_for_warn (tree);
855extern tree c_common_get_narrower (tree, int *);
b0c98c23 856extern bool get_nonnull_operand (tree, unsigned HOST_WIDE_INT *);
a9ffdd35 857
a179a7dc 858#define c_sizeof(LOC, T) c_sizeof_or_alignof_type (LOC, T, true, false, 1)
859#define c_alignof(LOC, T) c_sizeof_or_alignof_type (LOC, T, false, false, 1)
72040e7e 860
2561cea2 861/* Subroutine of build_binary_op, used for certain operations. */
862extern tree shorten_binary_op (tree result_type, tree op0, tree op1, bool bitwise);
863
72040e7e 864/* Subroutine of build_binary_op, used for comparison operations.
865 See if the operands have both been converted from subword integer types
866 and, if so, perhaps change them both back to their original type. */
2623625f 867extern tree shorten_compare (location_t, tree *, tree *, tree *,
868 enum tree_code *);
72040e7e 869
42f9a786 870extern tree pointer_int_sum (location_t, enum tree_code, tree, tree,
871 bool = true);
83e32a86 872
873/* Add qualifiers to a type, in the fashion for C. */
89f16034 874extern tree c_build_qualified_type (tree, int, tree = NULL_TREE, size_t = 0);
83e32a86 875
72040e7e 876/* Build tree nodes and builtin functions common to both C and C++ language
877 frontends. */
1cae46be 878extern void c_common_nodes_and_builtins (void);
a66c9326 879
1cae46be 880extern void disable_builtin_function (const char *);
dd878098 881
79b01846 882extern void set_compound_literal_name (tree decl);
883
e60a6f7b 884extern tree build_va_arg (location_t, tree, tree);
43f74bc4 885
c123f04d 886extern const unsigned int c_family_lang_mask;
e88d34f6 887extern unsigned int c_common_option_lang_mask (void);
32ecf960 888extern void c_common_diagnostics_set_defaults (diagnostic_context *);
e88d34f6 889extern bool c_common_complain_wrong_lang_p (const struct cl_option *);
f3f006ad 890extern void c_common_init_options_struct (struct gcc_options *);
e88d34f6 891extern void c_common_init_options (unsigned int, struct cl_decoded_option *);
1cae46be 892extern bool c_common_post_options (const char **);
893extern bool c_common_init (void);
894extern void c_common_finish (void);
b8ba44e7 895extern void c_common_parse_file (void);
3f6e5ced 896extern FILE *get_dump_info (int, dump_flags_t *);
32c2fdea 897extern alias_set_type c_common_get_alias_set (tree);
b268e47e 898extern void c_register_builtin_type (tree, const char*);
9f627b1a 899extern bool c_promoting_integer_type_p (const_tree);
2823920b 900extern bool self_promoting_args_p (const_tree);
c10de5e7 901extern tree strip_pointer_operator (tree);
57a0ed23 902extern tree strip_pointer_or_array_types (tree);
624d37a6 903extern HOST_WIDE_INT c_common_to_target_charset (HOST_WIDE_INT);
92915e1c 904
40109983 905/* This is the basic parsing function. */
906extern void c_parse_file (void);
40109983 907
3a1c9df2 908extern void c_parse_final_cleanups (void);
909
a08e60ae 910/* These macros provide convenient access to the various _STMT nodes. */
911
2363ef00 912/* Nonzero if a given STATEMENT_LIST represents the outermost binding
913 if a statement expression. */
914#define STATEMENT_LIST_STMT_EXPR(NODE) \
915 TREE_LANG_FLAG_1 (STATEMENT_LIST_CHECK (NODE))
2e3f4877 916
917/* Nonzero if a label has been added to the statement list. */
918#define STATEMENT_LIST_HAS_LABEL(NODE) \
919 TREE_LANG_FLAG_3 (STATEMENT_LIST_CHECK (NODE))
2363ef00 920
a75b1c71 921/* C_MAYBE_CONST_EXPR accessors. */
922#define C_MAYBE_CONST_EXPR_PRE(NODE) \
923 TREE_OPERAND (C_MAYBE_CONST_EXPR_CHECK (NODE), 0)
924#define C_MAYBE_CONST_EXPR_EXPR(NODE) \
925 TREE_OPERAND (C_MAYBE_CONST_EXPR_CHECK (NODE), 1)
926#define C_MAYBE_CONST_EXPR_INT_OPERANDS(NODE) \
927 TREE_LANG_FLAG_0 (C_MAYBE_CONST_EXPR_CHECK (NODE))
928#define C_MAYBE_CONST_EXPR_NON_CONST(NODE) \
929 TREE_LANG_FLAG_1 (C_MAYBE_CONST_EXPR_CHECK (NODE))
930#define EXPR_INT_CONST_OPERANDS(EXPR) \
931 (INTEGRAL_TYPE_P (TREE_TYPE (EXPR)) \
932 && (TREE_CODE (EXPR) == INTEGER_CST \
933 || (TREE_CODE (EXPR) == C_MAYBE_CONST_EXPR \
934 && C_MAYBE_CONST_EXPR_INT_OPERANDS (EXPR))))
935
c25509f2 936/* In a FIELD_DECL, nonzero if the decl was originally a bitfield. */
937#define DECL_C_BIT_FIELD(NODE) \
938 (DECL_LANG_FLAG_4 (FIELD_DECL_CHECK (NODE)) == 1)
939#define SET_DECL_C_BIT_FIELD(NODE) \
940 (DECL_LANG_FLAG_4 (FIELD_DECL_CHECK (NODE)) = 1)
941#define CLEAR_DECL_C_BIT_FIELD(NODE) \
942 (DECL_LANG_FLAG_4 (FIELD_DECL_CHECK (NODE)) = 0)
943
3cde3c29 944/* True if the decl was an unnamed bitfield. */
945#define DECL_UNNAMED_BIT_FIELD(NODE) \
946 (DECL_C_BIT_FIELD (NODE) && !DECL_NAME (NODE))
947
e60a6f7b 948extern tree do_case (location_t, tree, tree);
949extern tree build_stmt (location_t, enum tree_code, ...);
0b5fc5d6 950extern tree build_real_imag_expr (location_t, enum tree_code, tree);
5c3247a9 951
29d00ba7 952/* These functions must be defined by each front-end which implements
953 a variant of the C language. They are used in c-common.c. */
954
b99cc6da 955extern tree build_unary_op (location_t, enum tree_code, tree, bool);
623ee358 956extern tree build_binary_op (location_t, enum tree_code, tree, tree, bool);
b96dc121 957extern tree perform_integral_promotions (tree);
29d00ba7 958
8f0d6fd4 959/* These functions must be defined by each front-end which implements
960 a variant of the C language. They are used by port files. */
961
962extern tree default_conversion (tree);
963
29d00ba7 964/* Given two integer or real types, return the type for their sum.
965 Given two compatible ANSI C types, returns the merged type. */
966
1cae46be 967extern tree common_type (tree, tree);
351c3a61 968
1cae46be 969extern tree decl_constant_value (tree);
225ec6aa 970
4f9a1c9b 971/* Handle increment and decrement of boolean types. */
1cae46be 972extern tree boolean_increment (enum tree_code, tree);
4f9a1c9b 973
1cae46be 974extern int case_compare (splay_tree_key, splay_tree_key);
e41f0d80 975
be23b16f 976extern tree c_add_case_label (location_t, splay_tree, tree, tree, tree, tree,
977 bool *);
dfa10f0d 978extern bool c_switch_covers_all_cases_p (splay_tree, tree);
e41f0d80 979
e60a6f7b 980extern tree build_function_call (location_t, tree, tree);
edbbe5ca 981
ec761d5a 982extern tree build_function_call_vec (location_t, vec<location_t>, tree,
983 vec<tree, va_gc> *, vec<tree, va_gc> *);
b9c74b4d 984
f1f41a6c 985extern tree resolve_overloaded_builtin (location_t, tree, vec<tree, va_gc> *);
b6a5fc45 986
dda49785 987extern tree finish_label_address_expr (tree, location_t);
d0a47c8d 988
989/* Same function prototype, but the C and C++ front ends have
990 different implementations. Used in c-common.c. */
1cae46be 991extern tree lookup_label (tree);
d1c41717 992extern tree lookup_name (tree);
79973b57 993extern bool lvalue_p (const_tree);
d0a47c8d 994
ed7c4e62 995extern bool vector_targets_convertible_p (const_tree t1, const_tree t2);
9f627b1a 996extern bool vector_types_convertible_p (const_tree t1, const_tree t2, bool emit_lax_note);
68ea4406 997extern tree c_build_vec_perm_expr (location_t, tree, tree, tree, bool = true);
8b4b9810 998
1cae46be 999extern void init_c_lex (void);
90cc7820 1000
1cae46be 1001extern void c_cpp_builtins (cpp_reader *);
46f8e3b0 1002extern void c_cpp_builtins_optimize_pragma (cpp_reader *, tree, tree);
f0479000 1003extern bool c_cpp_error (cpp_reader *, int, int, rich_location *,
9f19e0f9 1004 const char *, va_list *)
f0479000 1005 ATTRIBUTE_GCC_DIAG(5,0);
33058239 1006extern int c_common_has_attribute (cpp_reader *);
6019c708 1007
92468061 1008extern bool parse_optimize_options (tree, bool);
1009
be1ee46e 1010/* Positive if an implicit `extern "C"' scope has just been entered;
1011 negative if such a scope has just been exited. */
34585765 1012extern GTY(()) int pending_lang_change;
be1ee46e 1013
518796ad 1014/* Information recorded about each file examined during compilation. */
1015
1016struct c_fileinfo
1017{
1018 int time; /* Time spent in the file. */
62bf98ad 1019
1020 /* Flags used only by C++.
1021 INTERFACE_ONLY nonzero means that we are in an "interface" section
1022 of the compiler. INTERFACE_UNKNOWN nonzero means we cannot trust
1023 the value of INTERFACE_ONLY. If INTERFACE_UNKNOWN is zero and
1024 INTERFACE_ONLY is zero, it means that we are responsible for
1025 exporting definitions that others might need. */
1026 short interface_only;
518796ad 1027 short interface_unknown;
1028};
1029
1cae46be 1030struct c_fileinfo *get_fileinfo (const char *);
1031extern void dump_time_statistics (void);
1032
1033extern bool c_dump_tree (void *, tree);
1034
2569a1be 1035extern void verify_sequence_points (tree);
1036
3c43ed34 1037extern tree fold_offsetof (tree, tree = size_type_node,
1038 tree_code ctx = ERROR_MARK);
af28855b 1039
c271bdb2 1040extern int complete_array_type (tree *, tree, bool);
1041
b6a5fc45 1042extern tree builtin_type_for_size (int, bool);
1043
93426222 1044extern void c_common_mark_addressable_vec (tree);
1045
ab77850e 1046extern void set_underlying_type (tree);
68a2c870 1047extern void record_types_used_by_current_var_decl (tree);
f1f41a6c 1048extern vec<tree, va_gc> *make_tree_vector (void);
1049extern void release_tree_vector (vec<tree, va_gc> *);
1050extern vec<tree, va_gc> *make_tree_vector_single (tree);
1051extern vec<tree, va_gc> *make_tree_vector_from_list (tree);
492ab670 1052extern vec<tree, va_gc> *make_tree_vector_from_ctor (tree);
f1f41a6c 1053extern vec<tree, va_gc> *make_tree_vector_copy (const vec<tree, va_gc> *);
e534436e 1054
c1917557 1055/* Used for communication between c_common_type_for_mode and
1056 c_register_builtin_type. */
1057extern GTY(()) tree registered_builtin_types;
1058
dfa5c0d3 1059/* Read SOURCE_DATE_EPOCH from environment to have a deterministic
1060 timestamp to replace embedded current dates to get reproducible
1061 results. Returns -1 if SOURCE_DATE_EPOCH is not defined. */
1062extern time_t cb_get_source_date_epoch (cpp_reader *pfile);
1063
1064/* The value (as a unix timestamp) corresponds to date
1065 "Dec 31 9999 23:59:59 UTC", which is the latest date that __DATE__ and
1066 __TIME__ can store. */
1067#define MAX_SOURCE_DATE_EPOCH HOST_WIDE_INT_C (253402300799)
1068
5c8151fa 1069/* Callback for libcpp for offering spelling suggestions for misspelled
1070 directives. */
1071extern const char *cb_get_suggestion (cpp_reader *, const char *,
1072 const char *const *);
1073
d4166bdc 1074extern GTY(()) string_concat_db *g_string_concat_db;
1075
3da97ff7 1076class substring_loc;
1077extern const char *c_get_substring_location (const substring_loc &substr_loc,
1078 location_t *out_loc);
d4166bdc 1079
8495c0ca 1080/* In c-gimplify.c */
4ee9c684 1081extern void c_genericize (tree);
75a70cf9 1082extern int c_gimplify_expr (tree *, gimple_seq *, gimple_seq *);
e60a6f7b 1083extern tree c_build_bind_expr (location_t, tree, tree);
4ee9c684 1084
dbd79382 1085/* In c-lex.c. */
1086extern enum cpp_ttype
1087conflict_marker_get_final_tok_kind (enum cpp_ttype tok1_kind);
1088
d718b525 1089/* In c-pch.c */
1cae46be 1090extern void pch_init (void);
6adc88f8 1091extern void pch_cpp_save_state (void);
1cae46be 1092extern int c_common_valid_pch (cpp_reader *pfile, const char *name, int fd);
1093extern void c_common_read_pch (cpp_reader *pfile, const char *name, int fd,
1094 const char *orig);
1095extern void c_common_write_pch (void);
ddf4604f 1096extern void c_common_no_more_pch (void);
b75b98aa 1097extern void c_common_pch_pragma (cpp_reader *pfile, const char *);
f1035767 1098
1099/* In *-checksum.c */
1100extern const unsigned char executable_checksum[16];
d718b525 1101
46f8e3b0 1102/* In c-cppbuiltin.c */
1103extern void builtin_define_std (const char *macro);
1cae46be 1104extern void builtin_define_with_value (const char *, const char *, int);
4b11ffbd 1105extern void builtin_define_with_int_value (const char *, HOST_WIDE_INT);
1106extern void builtin_define_type_sizeof (const char *, tree);
1cae46be 1107extern void c_stddef_cpp_builtins (void);
551e34da 1108extern void fe_file_change (const line_map_ordinary *);
3fe34694 1109extern void c_parse_error (const char *, enum cpp_ttype, tree, unsigned char,
1110 rich_location *richloc);
e920deaf 1111
1112/* In c-ppoutput.c */
1cae46be 1113extern void init_pp_output (FILE *);
1114extern void preprocess_file (cpp_reader *);
551e34da 1115extern void pp_file_change (const line_map_ordinary *);
d732fcf0 1116extern void pp_dir_change (cpp_reader *, const char *);
be7350e7 1117extern bool check_missing_format_attribute (tree, tree);
573aba85 1118
1e8e9920 1119/* In c-omp.c */
4a7580c4 1120typedef wide_int_bitmask omp_clause_mask;
d62c713e 1121
8c072e52 1122#define OMP_CLAUSE_MASK_1 omp_clause_mask (1)
bc7bff74 1123
1124enum c_omp_clause_split
1125{
1126 C_OMP_CLAUSE_SPLIT_TARGET = 0,
1127 C_OMP_CLAUSE_SPLIT_TEAMS,
1128 C_OMP_CLAUSE_SPLIT_DISTRIBUTE,
1129 C_OMP_CLAUSE_SPLIT_PARALLEL,
1130 C_OMP_CLAUSE_SPLIT_FOR,
1131 C_OMP_CLAUSE_SPLIT_SIMD,
1132 C_OMP_CLAUSE_SPLIT_COUNT,
43895be5 1133 C_OMP_CLAUSE_SPLIT_SECTIONS = C_OMP_CLAUSE_SPLIT_FOR,
1134 C_OMP_CLAUSE_SPLIT_TASKLOOP = C_OMP_CLAUSE_SPLIT_FOR
bc7bff74 1135};
1136
b5e88f74 1137enum c_omp_region_type
1138{
1139 C_ORT_OMP = 1 << 0,
efa02472 1140 C_ORT_ACC = 1 << 1,
1141 C_ORT_DECLARE_SIMD = 1 << 2,
4341e093 1142 C_ORT_OMP_DECLARE_SIMD = C_ORT_OMP | C_ORT_DECLARE_SIMD
b5e88f74 1143};
1144
e60a6f7b 1145extern tree c_finish_omp_master (location_t, tree);
bc7bff74 1146extern tree c_finish_omp_taskgroup (location_t, tree);
43895be5 1147extern tree c_finish_omp_critical (location_t, tree, tree, tree);
1148extern tree c_finish_omp_ordered (location_t, tree, tree);
e60a6f7b 1149extern void c_finish_omp_barrier (location_t);
2169f33b 1150extern tree c_finish_omp_atomic (location_t, enum tree_code, enum tree_code,
9561765e 1151 tree, tree, tree, tree, tree, bool, bool,
1152 bool = false);
e60a6f7b 1153extern void c_finish_omp_flush (location_t);
1154extern void c_finish_omp_taskwait (location_t);
2169f33b 1155extern void c_finish_omp_taskyield (location_t);
bc7bff74 1156extern tree c_finish_omp_for (location_t, enum tree_code, tree, tree, tree,
43895be5 1157 tree, tree, tree, tree);
9561765e 1158extern bool c_omp_check_loop_iv (tree, tree, walk_tree_lh);
1159extern bool c_omp_check_loop_iv_exprs (location_t, tree, tree, tree, tree,
1160 walk_tree_lh);
ca4c3545 1161extern tree c_finish_oacc_wait (location_t, tree, tree);
4d0a8bac 1162extern tree c_oacc_split_loop_clauses (tree, tree *, bool);
bc7bff74 1163extern void c_omp_split_clauses (location_t, enum tree_code, omp_clause_mask,
1164 tree, tree *);
1165extern tree c_omp_declare_simd_clauses_to_numbers (tree, tree);
1166extern void c_omp_declare_simd_clauses_to_decls (tree, tree);
1e8e9920 1167extern enum omp_clause_default_kind c_omp_predetermined_sharing (tree);
1168
a68f7a8d 1169/* Return next tree in the chain for chain_next walking of tree nodes. */
1170static inline tree
1171c_tree_chain_next (tree t)
1172{
1173 /* TREE_CHAIN of a type is TYPE_STUB_DECL, which is different
1174 kind of object, never a long chain of nodes. Prefer
1175 TYPE_NEXT_VARIANT for types. */
1176 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPE_COMMON))
1177 return TYPE_NEXT_VARIANT (t);
1178 /* Otherwise, if there is TREE_CHAIN, return it. */
1179 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_COMMON))
1180 return TREE_CHAIN (t);
1181 return NULL;
1182}
1183
4c0315d0 1184/* Mask used by tm_stmt_attr. */
1185#define TM_STMT_ATTR_OUTER 2
1186#define TM_STMT_ATTR_ATOMIC 4
1187#define TM_STMT_ATTR_RELAXED 8
1188
4c0315d0 1189/* Mask used by tm_attr_to_mask and tm_mask_to_attr. Note that these
1190 are ordered specifically such that more restrictive attributes are
1191 at lower bit positions. This fact is known by the C++ tm attribute
1192 inheritance code such that least bit extraction (mask & -mask) results
1193 in the most restrictive attribute. */
1194#define TM_ATTR_SAFE 1
1195#define TM_ATTR_CALLABLE 2
1196#define TM_ATTR_PURE 4
1197#define TM_ATTR_IRREVOCABLE 8
1198#define TM_ATTR_MAY_CANCEL_OUTER 16
1199
244db24d 1200/* A suffix-identifier value doublet that represents user-defined literals
1201 for C++-0x. */
324ca377 1202enum overflow_type {
1203 OT_UNDERFLOW = -1,
1204 OT_NONE,
1205 OT_OVERFLOW
1206};
1207
244db24d 1208struct GTY(()) tree_userdef_literal {
1209 struct tree_base base;
1210 tree suffix_id;
1211 tree value;
1212 tree num_string;
324ca377 1213 enum overflow_type overflow;
244db24d 1214};
1215
1216#define USERDEF_LITERAL_SUFFIX_ID(NODE) \
1217 (((struct tree_userdef_literal *)USERDEF_LITERAL_CHECK (NODE))->suffix_id)
1218
1219#define USERDEF_LITERAL_VALUE(NODE) \
1220 (((struct tree_userdef_literal *)USERDEF_LITERAL_CHECK (NODE))->value)
1221
324ca377 1222#define USERDEF_LITERAL_OVERFLOW(NODE) \
1223 (((struct tree_userdef_literal *)USERDEF_LITERAL_CHECK (NODE))->overflow)
1224
244db24d 1225#define USERDEF_LITERAL_NUM_STRING(NODE) \
1226 (((struct tree_userdef_literal *)USERDEF_LITERAL_CHECK (NODE))->num_string)
1227
1228#define USERDEF_LITERAL_TYPE(NODE) \
1229 (TREE_TYPE (USERDEF_LITERAL_VALUE (NODE)))
1230
324ca377 1231extern tree build_userdef_literal (tree suffix_id, tree value,
1232 enum overflow_type overflow,
1233 tree num_string);
244db24d 1234
7345b977 1235extern bool convert_vector_to_array_for_subscript (location_t, tree *, tree);
7059d45d 1236
41ed701a 1237/* Possibe cases of scalar_to_vector conversion. */
1238enum stv_conv {
a04e8d62 1239 stv_error, /* Error occurred. */
41ed701a 1240 stv_nothing, /* Nothing happened. */
1241 stv_firstarg, /* First argument must be expanded. */
1242 stv_secondarg /* Second argument must be expanded. */
1243};
1244
1245extern enum stv_conv scalar_to_vector (location_t loc, enum tree_code code,
1246 tree op0, tree op1, bool);
1247
09970d67 1248extern tree find_inv_trees (tree *, int *, void *);
1249extern tree replace_inv_trees (tree *, int *, void *);
efa02472 1250
547c6b1f 1251extern bool reject_gcc_builtin (const_tree, location_t = UNKNOWN_LOCATION);
23cc4e77 1252extern bool valid_array_size_p (location_t, tree, tree, bool = true);
e5f01cba 1253
0f4cea33 1254/* In c-warn.c. */
1255extern void constant_expression_warning (tree);
1256extern void constant_expression_error (tree);
645b0f8d 1257extern void overflow_warning (location_t, tree, tree = NULL_TREE);
0f4cea33 1258extern void warn_logical_operator (location_t, enum tree_code, tree,
1259 enum tree_code, tree, enum tree_code, tree);
1260extern void warn_tautological_cmp (location_t, enum tree_code, tree, tree);
1261extern void warn_logical_not_parentheses (location_t, enum tree_code, tree,
1262 tree);
1263extern bool warn_if_unused_value (const_tree, location_t);
d9757bb6 1264extern bool strict_aliasing_warning (location_t, tree, tree);
0f4cea33 1265extern void sizeof_pointer_memaccess_warning (location_t *, tree,
1266 vec<tree, va_gc> *, tree *,
1267 bool (*) (tree, tree));
1268extern void check_main_parameter_types (tree decl);
1269extern void warnings_for_convert_and_check (location_t, tree, tree, tree);
1270extern void c_do_switch_warnings (splay_tree, location_t, tree, tree, bool,
1271 bool);
1272extern void warn_for_omitted_condop (location_t, tree);
75e9093e 1273extern bool warn_for_restrict (unsigned, tree *, unsigned);
0f4cea33 1274
1275/* Places where an lvalue, or modifiable lvalue, may be required.
1276 Used to select diagnostic messages in lvalue_error and
1277 readonly_error. */
1278enum lvalue_use {
1279 lv_assign,
1280 lv_increment,
1281 lv_decrement,
1282 lv_addressof,
1283 lv_asm
1284};
1285
1286extern void lvalue_error (location_t, enum lvalue_use);
1287extern void invalid_indirection_error (location_t, tree, ref_operator);
1288extern void readonly_error (location_t, tree, enum lvalue_use);
1289extern void warn_array_subscript_with_type_char (location_t, tree);
1290extern void warn_about_parentheses (location_t,
1291 enum tree_code,
1292 enum tree_code, tree,
1293 enum tree_code, tree);
1294extern void warn_for_unused_label (tree label);
1295extern void warn_for_div_by_zero (location_t, tree divisor);
1296extern void warn_for_memset (location_t, tree, tree, int);
1297extern void warn_for_sign_compare (location_t,
1298 tree orig_op0, tree orig_op1,
1299 tree op0, tree op1,
1300 tree result_type,
1301 enum tree_code resultcode);
1302extern void do_warn_double_promotion (tree, tree, tree, const char *,
1303 location_t);
1304extern void do_warn_unused_parameter (tree);
1305extern void record_locally_defined_typedef (tree);
1306extern void maybe_record_typedef_use (tree);
1307extern void maybe_warn_unused_local_typedefs (void);
1308extern void maybe_warn_bool_compare (location_t, enum tree_code, tree, tree);
1309extern bool maybe_warn_shift_overflow (location_t, tree, tree);
1310extern void warn_duplicated_cond_add_or_warn (location_t, tree, vec<tree> **);
1311extern bool diagnose_mismatched_attributes (tree, tree);
3ef7eab1 1312extern tree do_warn_duplicated_branches_r (tree *, int *, void *);
2bfb0686 1313extern void warn_for_multistatement_macros (location_t, location_t,
1314 location_t, enum rid);
0f4cea33 1315
b0c98c23 1316/* In c-attribs.c. */
1317extern bool attribute_takes_identifier_p (const_tree);
1318extern tree handle_unused_attribute (tree *, tree, tree, int, bool *);
1319extern int parse_tm_stmt_attr (tree, int);
1320extern int tm_attr_to_mask (tree);
1321extern tree tm_mask_to_attr (int);
1322extern tree find_tm_attribute (tree);
1323
c39beb8a 1324extern enum flt_eval_method
1325excess_precision_mode_join (enum flt_eval_method, enum flt_eval_method);
1326
1327extern int c_flt_eval_method (bool ts18661_p);
9917317a 1328extern void add_no_sanitize_value (tree node, unsigned int flags);
c39beb8a 1329
7f9c8569 1330extern void maybe_add_include_fixit (rich_location *, const char *);
74578794 1331extern void maybe_suggest_missing_token_insertion (rich_location *richloc,
1332 enum cpp_ttype token_type,
1333 location_t prev_token_loc);
7f9c8569 1334
7af4d06b 1335#if CHECKING_P
1336namespace selftest {
7051d239 1337 /* Declarations for specific families of tests within c-family,
1338 by source file, in alphabetical order. */
7af4d06b 1339 extern void c_format_c_tests (void);
d76863c8 1340 extern void c_pretty_print_c_tests (void);
08233401 1341 extern void c_spellcheck_cc_tests (void);
7051d239 1342
1343 /* The entrypoint for running all of the above tests. */
1344 extern void c_family_tests (void);
7af4d06b 1345} // namespace selftest
1346#endif /* #if CHECKING_P */
1347
2a281353 1348#endif /* ! GCC_C_COMMON_H */