Merge trunk version 212325 into gupc branch.
[official-gcc.git] / gcc / c / c-tree.h
blobfd574ecbe9bc6c4b27202079ff9291f2e62583c1
1 /* Definitions for C parsing and type checking.
2 Copyright (C) 1987-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #ifndef GCC_C_TREE_H
21 #define GCC_C_TREE_H
23 #include "c-family/c-common.h"
24 #include "diagnostic.h"
26 /* struct lang_identifier is private to c-decl.c, but langhooks.c needs to
27 know how big it is. This is sanity-checked in c-decl.c. */
28 #define C_SIZEOF_STRUCT_LANG_IDENTIFIER \
29 (sizeof (struct c_common_identifier) + 3 * sizeof (void *))
31 /* In a RECORD_TYPE or UNION_TYPE, nonzero if any component is read-only. */
32 #define C_TYPE_FIELDS_READONLY(TYPE) TREE_LANG_FLAG_1 (TYPE)
34 /* In a RECORD_TYPE or UNION_TYPE, nonzero if any component is volatile. */
35 #define C_TYPE_FIELDS_VOLATILE(TYPE) TREE_LANG_FLAG_2 (TYPE)
37 /* In a RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE
38 nonzero if the definition of the type has already started. */
39 #define C_TYPE_BEING_DEFINED(TYPE) TYPE_LANG_FLAG_0 (TYPE)
41 /* In an incomplete RECORD_TYPE or UNION_TYPE, a list of variable
42 declarations whose type would be completed by completing that type. */
43 #define C_TYPE_INCOMPLETE_VARS(TYPE) TYPE_VFIELD (TYPE)
45 /* In an IDENTIFIER_NODE, nonzero if this identifier is actually a
46 keyword. C_RID_CODE (node) is then the RID_* value of the keyword,
47 and C_RID_YYCODE is the token number wanted by Yacc. */
48 #define C_IS_RESERVED_WORD(ID) TREE_LANG_FLAG_0 (ID)
50 /* Record whether a type or decl was written with nonconstant size.
51 Note that TYPE_SIZE may have simplified to a constant. */
52 #define C_TYPE_VARIABLE_SIZE(TYPE) TYPE_LANG_FLAG_1 (TYPE)
53 #define C_DECL_VARIABLE_SIZE(TYPE) DECL_LANG_FLAG_0 (TYPE)
55 /* Record whether a type is defined inside a struct or union type.
56 This is used for -Wc++-compat. */
57 #define C_TYPE_DEFINED_IN_STRUCT(TYPE) TYPE_LANG_FLAG_2 (TYPE)
59 /* Record whether a typedef for type `int' was actually `signed int'. */
60 #define C_TYPEDEF_EXPLICITLY_SIGNED(EXP) DECL_LANG_FLAG_1 (EXP)
62 /* For a FUNCTION_DECL, nonzero if it was defined without an explicit
63 return type. */
64 #define C_FUNCTION_IMPLICIT_INT(EXP) DECL_LANG_FLAG_1 (EXP)
66 /* For a FUNCTION_DECL, nonzero if it was an implicit declaration. */
67 #define C_DECL_IMPLICIT(EXP) DECL_LANG_FLAG_2 (EXP)
69 /* For a PARM_DECL, nonzero if it was declared as an array. */
70 #define C_ARRAY_PARAMETER(NODE) DECL_LANG_FLAG_0 (NODE)
72 /* For FUNCTION_DECLs, evaluates true if the decl is built-in but has
73 been declared. */
74 #define C_DECL_DECLARED_BUILTIN(EXP) \
75 DECL_LANG_FLAG_3 (FUNCTION_DECL_CHECK (EXP))
77 /* For FUNCTION_DECLs, evaluates true if the decl is built-in, has a
78 built-in prototype and does not have a non-built-in prototype. */
79 #define C_DECL_BUILTIN_PROTOTYPE(EXP) \
80 DECL_LANG_FLAG_6 (FUNCTION_DECL_CHECK (EXP))
82 /* Record whether a decl was declared register. This is strictly a
83 front-end flag, whereas DECL_REGISTER is used for code generation;
84 they may differ for structures with volatile fields. */
85 #define C_DECL_REGISTER(EXP) DECL_LANG_FLAG_4 (EXP)
87 /* Record whether a decl was used in an expression anywhere except an
88 unevaluated operand of sizeof / typeof / alignof. This is only
89 used for functions declared static but not defined, though outside
90 sizeof and typeof it is set for other function decls as well. */
91 #define C_DECL_USED(EXP) DECL_LANG_FLAG_5 (FUNCTION_DECL_CHECK (EXP))
93 /* Record whether a variable has been declared threadprivate by
94 #pragma omp threadprivate. */
95 #define C_DECL_THREADPRIVATE_P(DECL) DECL_LANG_FLAG_3 (VAR_DECL_CHECK (DECL))
97 /* Nonzero for a decl which either doesn't exist or isn't a prototype.
98 N.B. Could be simplified if all built-in decls had complete prototypes
99 (but this is presently difficult because some of them need FILE*). */
100 #define C_DECL_ISNT_PROTOTYPE(EXP) \
101 (EXP == 0 \
102 || (!prototype_p (TREE_TYPE (EXP)) \
103 && !DECL_BUILT_IN (EXP)))
105 /* For FUNCTION_TYPE, a hidden list of types of arguments. The same as
106 TYPE_ARG_TYPES for functions with prototypes, but created for functions
107 without prototypes. */
108 #define TYPE_ACTUAL_ARG_TYPES(NODE) TYPE_LANG_SLOT_1 (NODE)
110 /* For a CONSTRUCTOR, whether some initializer contains a
111 subexpression meaning it is not a constant expression. */
112 #define CONSTRUCTOR_NON_CONST(EXPR) TREE_LANG_FLAG_1 (CONSTRUCTOR_CHECK (EXPR))
114 /* Record parser information about an expression that is irrelevant
115 for code generation alongside a tree representing its value. */
116 struct c_expr
118 /* The value of the expression. */
119 tree value;
120 /* Record the original unary/binary operator of an expression, which may
121 have been changed by fold, STRING_CST for unparenthesized string
122 constants, C_MAYBE_CONST_EXPR for __builtin_constant_p calls
123 (even if parenthesized), for subexpressions, and for non-constant
124 initializers, or ERROR_MARK for other expressions (including
125 parenthesized expressions). */
126 enum tree_code original_code;
127 /* If not NULL, the original type of an expression. This will
128 differ from the type of the value field for an enum constant.
129 The type of an enum constant is a plain integer type, but this
130 field will be the enum type. */
131 tree original_type;
134 /* Type alias for struct c_expr. This allows to use the structure
135 inside the VEC types. */
136 typedef struct c_expr c_expr_t;
138 /* A kind of type specifier. Note that this information is currently
139 only used to distinguish tag definitions, tag references and typeof
140 uses. */
141 enum c_typespec_kind {
142 /* No typespec. This appears only in struct c_declspec. */
143 ctsk_none,
144 /* A reserved keyword type specifier. */
145 ctsk_resword,
146 /* A reference to a tag, previously declared, such as "struct foo".
147 This includes where the previous declaration was as a different
148 kind of tag, in which case this is only valid if shadowing that
149 tag in an inner scope. */
150 ctsk_tagref,
151 /* A reference to a tag, not previously declared in a visible
152 scope. */
153 ctsk_tagfirstref,
154 /* A definition of a tag such as "struct foo { int a; }". */
155 ctsk_tagdef,
156 /* A typedef name. */
157 ctsk_typedef,
158 /* An ObjC-specific kind of type specifier. */
159 ctsk_objc,
160 /* A typeof specifier, or _Atomic ( type-name ). */
161 ctsk_typeof
164 /* A type specifier: this structure is created in the parser and
165 passed to declspecs_add_type only. */
166 struct c_typespec {
167 /* What kind of type specifier this is. */
168 enum c_typespec_kind kind;
169 /* Whether the expression has operands suitable for use in constant
170 expressions. */
171 bool expr_const_operands;
172 /* The specifier itself. */
173 tree spec;
174 /* An expression to be evaluated before the type specifier, in the
175 case of typeof specifiers, or NULL otherwise or if no such
176 expression is required for a particular typeof specifier. In
177 particular, when typeof is applied to an expression of variably
178 modified type, that expression must be evaluated in order to
179 determine array sizes that form part of the type, but the
180 expression itself (as opposed to the array sizes) forms no part
181 of the type and so needs to be recorded separately. */
182 tree expr;
185 /* A storage class specifier. */
186 enum c_storage_class {
187 csc_none,
188 csc_auto,
189 csc_extern,
190 csc_register,
191 csc_static,
192 csc_typedef
195 /* A type specifier keyword "void", "_Bool", "char", "int", "float",
196 "double", "_Decimal32", "_Decimal64", "_Decimal128", "_Fract", "_Accum",
197 or none of these. */
198 enum c_typespec_keyword {
199 cts_none,
200 cts_void,
201 cts_bool,
202 cts_char,
203 cts_int,
204 cts_float,
205 cts_int128,
206 cts_double,
207 cts_dfloat32,
208 cts_dfloat64,
209 cts_dfloat128,
210 cts_fract,
211 cts_accum,
212 cts_auto_type
215 /* This enum lists all the possible declarator specifiers, storage
216 class or attribute that a user can write. There is at least one
217 enumerator per possible declarator specifier in the struct
218 c_declspecs below.
220 It is used to index the array of declspec locations in struct
221 c_declspecs. */
222 enum c_declspec_word {
223 cdw_typespec /* A catch-all for a typespec. */,
224 cdw_storage_class /* A catch-all for a storage class */,
225 cdw_attributes,
226 cdw_typedef,
227 cdw_explicit_signed,
228 cdw_deprecated,
229 cdw_default_int,
230 cdw_long,
231 cdw_long_long,
232 cdw_short,
233 cdw_signed,
234 cdw_unsigned,
235 cdw_complex,
236 cdw_inline,
237 cdw_noreturn,
238 cdw_thread,
239 cdw_const,
240 cdw_volatile,
241 cdw_restrict,
242 cdw_saturating,
243 cdw_alignas,
244 cdw_address_space,
245 cdw_number_of_elements /* This one must always be the last
246 enumerator. */
249 /* A sequence of declaration specifiers in C. When a new declaration
250 specifier is added, please update the enum c_declspec_word above
251 accordingly. */
252 struct c_declspecs {
253 source_location locations[cdw_number_of_elements];
254 /* The type specified, if a single type specifier such as a struct,
255 union or enum specifier, typedef name or typeof specifies the
256 whole type, or NULL_TREE if none or a keyword such as "void" or
257 "char" is used. Does not include qualifiers. */
258 tree type;
259 /* Any expression to be evaluated before the type, from a typeof
260 specifier. */
261 tree expr;
262 /* The attributes from a typedef decl. */
263 tree decl_attr;
264 /* When parsing, the attributes. Outside the parser, this will be
265 NULL; attributes (possibly from multiple lists) will be passed
266 separately. */
267 tree attrs;
268 /* For UPC, this is the blocking factor (layout qualifier).
269 For example, shared [10] int x; */
270 tree upc_layout_qualifier;
271 /* The base-2 log of the greatest alignment required by an _Alignas
272 specifier, in bytes, or -1 if no such specifiers with nonzero
273 alignment. */
274 int align_log;
275 /* The storage class specifier, or csc_none if none. */
276 enum c_storage_class storage_class;
277 /* Any type specifier keyword used such as "int", not reflecting
278 modifiers such as "short", or cts_none if none. */
279 ENUM_BITFIELD (c_typespec_keyword) typespec_word : 8;
280 /* The kind of type specifier if one has been seen, ctsk_none
281 otherwise. */
282 ENUM_BITFIELD (c_typespec_kind) typespec_kind : 3;
283 /* Whether any expressions in typeof specifiers may appear in
284 constant expressions. */
285 BOOL_BITFIELD expr_const_operands : 1;
286 /* Whether any declaration specifiers have been seen at all. */
287 BOOL_BITFIELD declspecs_seen_p : 1;
288 /* Whether something other than a storage class specifier or
289 attribute has been seen. This is used to warn for the
290 obsolescent usage of storage class specifiers other than at the
291 start of the list. (Doing this properly would require function
292 specifiers to be handled separately from storage class
293 specifiers.) */
294 BOOL_BITFIELD non_sc_seen_p : 1;
295 /* Whether the type is specified by a typedef or typeof name. */
296 BOOL_BITFIELD typedef_p : 1;
297 /* Whether the type is explicitly "signed" or specified by a typedef
298 whose type is explicitly "signed". */
299 BOOL_BITFIELD explicit_signed_p : 1;
300 /* Whether the specifiers include a deprecated typedef. */
301 BOOL_BITFIELD deprecated_p : 1;
302 /* Whether the type defaulted to "int" because there were no type
303 specifiers. */
304 BOOL_BITFIELD default_int_p : 1;
305 /* Whether "long" was specified. */
306 BOOL_BITFIELD long_p : 1;
307 /* Whether "long" was specified more than once. */
308 BOOL_BITFIELD long_long_p : 1;
309 /* Whether "short" was specified. */
310 BOOL_BITFIELD short_p : 1;
311 /* Whether "signed" was specified. */
312 BOOL_BITFIELD signed_p : 1;
313 /* Whether "unsigned" was specified. */
314 BOOL_BITFIELD unsigned_p : 1;
315 /* Whether "complex" was specified. */
316 BOOL_BITFIELD complex_p : 1;
317 /* Whether "inline" was specified. */
318 BOOL_BITFIELD inline_p : 1;
319 /* Whether "_Noreturn" was speciied. */
320 BOOL_BITFIELD noreturn_p : 1;
321 /* Whether "__thread" or "_Thread_local" was specified. */
322 BOOL_BITFIELD thread_p : 1;
323 /* Whether "__thread" rather than "_Thread_local" was specified. */
324 BOOL_BITFIELD thread_gnu_p : 1;
325 /* Whether "const" was specified. */
326 BOOL_BITFIELD const_p : 1;
327 /* Whether "volatile" was specified. */
328 BOOL_BITFIELD volatile_p : 1;
329 /* Whether "restrict" was specified. */
330 BOOL_BITFIELD restrict_p : 1;
331 /* Whether "_Atomic" was specified. */
332 BOOL_BITFIELD atomic_p : 1;
333 /* Whether "_Sat" was specified. */
334 BOOL_BITFIELD saturating_p : 1;
335 /* Whether "shared" was specified. */
336 BOOL_BITFIELD shared_p : 1;
337 /* Whether "strict" was specified. */
338 BOOL_BITFIELD strict_p : 1;
339 /* Whether "relaxed" was specified. */
340 BOOL_BITFIELD relaxed_p : 1;
341 /* Whether any alignment specifier (even with zero alignment) was
342 specified. */
343 BOOL_BITFIELD alignas_p : 1;
344 /* The address space that the declaration belongs to. */
345 addr_space_t address_space;
348 /* The various kinds of declarators in C. */
349 enum c_declarator_kind {
350 /* An identifier. */
351 cdk_id,
352 /* A function. */
353 cdk_function,
354 /* An array. */
355 cdk_array,
356 /* A pointer. */
357 cdk_pointer,
358 /* Parenthesized declarator with nested attributes. */
359 cdk_attrs
362 typedef struct c_arg_tag_d {
363 /* The argument name. */
364 tree id;
365 /* The type of the argument. */
366 tree type;
367 } c_arg_tag;
370 /* Information about the parameters in a function declarator. */
371 struct c_arg_info {
372 /* A list of parameter decls. */
373 tree parms;
374 /* A list of structure, union and enum tags defined. */
375 vec<c_arg_tag, va_gc> *tags;
376 /* A list of argument types to go in the FUNCTION_TYPE. */
377 tree types;
378 /* A list of non-parameter decls (notably enumeration constants)
379 defined with the parameters. */
380 tree others;
381 /* A compound expression of VLA sizes from the parameters, or NULL.
382 In a function definition, these are used to ensure that
383 side-effects in sizes of arrays converted to pointers (such as a
384 parameter int i[n++]) take place; otherwise, they are
385 ignored. */
386 tree pending_sizes;
387 /* True when these arguments had [*]. */
388 BOOL_BITFIELD had_vla_unspec : 1;
391 /* A declarator. */
392 struct c_declarator {
393 /* The kind of declarator. */
394 enum c_declarator_kind kind;
395 location_t id_loc; /* Currently only set for cdk_id, cdk_array. */
396 /* Except for cdk_id, the contained declarator. For cdk_id, NULL. */
397 struct c_declarator *declarator;
398 union {
399 /* For identifiers, an IDENTIFIER_NODE or NULL_TREE if an abstract
400 declarator. */
401 tree id;
402 /* For functions. */
403 struct c_arg_info *arg_info;
404 /* For arrays. */
405 struct {
406 /* The array dimension, or NULL for [] and [*]. */
407 tree dimen;
408 /* The qualifiers inside []. */
409 int quals;
410 /* The attributes (currently ignored) inside []. */
411 tree attrs;
412 /* Whether [static] was used. */
413 BOOL_BITFIELD static_p : 1;
414 /* Whether [*] was used. */
415 BOOL_BITFIELD vla_unspec_p : 1;
416 } array;
417 /* For pointers, the qualifiers on the pointer type. */
418 struct {
419 int quals;
420 tree upc_layout_qual;
421 } pointer;
422 /* For attributes. */
423 tree attrs;
424 } u;
427 /* A type name. */
428 struct c_type_name {
429 /* The declaration specifiers. */
430 struct c_declspecs *specs;
431 /* The declarator. */
432 struct c_declarator *declarator;
435 /* A parameter. */
436 struct c_parm {
437 /* The declaration specifiers, minus any prefix attributes. */
438 struct c_declspecs *specs;
439 /* The attributes. */
440 tree attrs;
441 /* The declarator. */
442 struct c_declarator *declarator;
445 /* Used when parsing an enum. Initialized by start_enum. */
446 struct c_enum_contents
448 /* While defining an enum type, this is 1 plus the last enumerator
449 constant value. */
450 tree enum_next_value;
452 /* Nonzero means that there was overflow computing enum_next_value. */
453 int enum_overflow;
456 /* A type of reference to a static identifier in an inline
457 function. */
458 enum c_inline_static_type {
459 /* Identifier with internal linkage used in function that may be an
460 inline definition (i.e., file-scope static). */
461 csi_internal,
462 /* Modifiable object with static storage duration defined in
463 function that may be an inline definition (i.e., local
464 static). */
465 csi_modifiable
469 /* in c-parser.c */
470 extern void c_parse_init (void);
472 /* in c-aux-info.c */
473 extern void gen_aux_info_record (tree, int, int, int);
475 /* in c-decl.c */
476 struct c_spot_bindings;
477 struct c_struct_parse_info;
478 extern struct obstack parser_obstack;
479 extern tree c_break_label;
480 extern tree c_cont_label;
482 extern bool global_bindings_p (void);
483 extern void push_scope (void);
484 extern tree pop_scope (void);
485 extern void c_bindings_start_stmt_expr (struct c_spot_bindings *);
486 extern void c_bindings_end_stmt_expr (struct c_spot_bindings *);
488 extern void record_inline_static (location_t, tree, tree,
489 enum c_inline_static_type);
490 extern void c_init_decl_processing (void);
491 extern void c_print_identifier (FILE *, tree, int);
492 extern int quals_from_declspecs (const struct c_declspecs *);
493 extern struct c_declarator *build_array_declarator (location_t, tree,
494 struct c_declspecs *,
495 bool, bool);
496 extern tree build_enumerator (location_t, location_t, struct c_enum_contents *,
497 tree, tree);
498 extern tree check_for_loop_decls (location_t, bool);
499 extern void mark_forward_parm_decls (void);
500 extern void declare_parm_level (void);
501 extern void undeclared_variable (location_t, tree);
502 extern tree lookup_label_for_goto (location_t, tree);
503 extern tree declare_label (tree);
504 extern tree define_label (location_t, tree);
505 extern struct c_spot_bindings *c_get_switch_bindings (void);
506 extern void c_release_switch_bindings (struct c_spot_bindings *);
507 extern bool c_check_switch_jump_warnings (struct c_spot_bindings *,
508 location_t, location_t);
509 extern void finish_decl (tree, location_t, tree, tree, tree);
510 extern tree finish_enum (tree, tree, tree);
511 extern void finish_function (void);
512 extern tree finish_struct (location_t, tree, tree, tree,
513 struct c_struct_parse_info *);
514 extern struct c_arg_info *build_arg_info (void);
515 extern struct c_arg_info *get_parm_info (bool, tree);
516 extern tree grokfield (location_t, struct c_declarator *,
517 struct c_declspecs *, tree, tree *);
518 extern tree groktypename (struct c_type_name *, tree *, bool *);
519 extern tree grokparm (const struct c_parm *, tree *);
520 extern tree implicitly_declare (location_t, tree);
521 extern void keep_next_level (void);
522 extern void pending_xref_error (void);
523 extern void c_push_function_context (void);
524 extern void c_pop_function_context (void);
525 extern void push_parm_decl (const struct c_parm *, tree *);
526 extern struct c_declarator *set_array_declarator_inner (struct c_declarator *,
527 struct c_declarator *);
528 extern tree c_builtin_function (tree);
529 extern tree c_builtin_function_ext_scope (tree);
530 extern void shadow_tag (const struct c_declspecs *);
531 extern void shadow_tag_warned (const struct c_declspecs *, int);
532 extern tree start_enum (location_t, struct c_enum_contents *, tree);
533 extern int start_function (struct c_declspecs *, struct c_declarator *, tree);
534 extern tree start_decl (struct c_declarator *, struct c_declspecs *, bool,
535 tree);
536 extern tree start_struct (location_t, enum tree_code, tree,
537 struct c_struct_parse_info **);
538 extern void store_parm_decls (void);
539 extern void store_parm_decls_from (struct c_arg_info *);
540 extern void temp_store_parm_decls (tree, tree);
541 extern void temp_pop_parm_decls (void);
542 extern tree xref_tag (enum tree_code, tree);
543 extern struct c_typespec parser_xref_tag (location_t, enum tree_code, tree);
544 extern struct c_parm *build_c_parm (struct c_declspecs *, tree,
545 struct c_declarator *);
546 extern struct c_declarator *build_attrs_declarator (tree,
547 struct c_declarator *);
548 extern struct c_declarator *build_function_declarator (struct c_arg_info *,
549 struct c_declarator *);
550 extern struct c_declarator *build_id_declarator (tree);
551 extern struct c_declarator *make_pointer_declarator (struct c_declspecs *,
552 struct c_declarator *);
553 extern struct c_declspecs *build_null_declspecs (void);
554 extern struct c_declspecs *declspecs_add_qual (source_location,
555 struct c_declspecs *, tree);
556 extern struct c_declspecs *declspecs_add_type (location_t,
557 struct c_declspecs *,
558 struct c_typespec);
559 extern struct c_declspecs *declspecs_add_scspec (source_location,
560 struct c_declspecs *, tree);
561 extern struct c_declspecs *declspecs_add_attrs (source_location,
562 struct c_declspecs *, tree);
563 extern struct c_declspecs *declspecs_add_addrspace (source_location,
564 struct c_declspecs *,
565 addr_space_t);
566 extern struct c_declspecs *declspecs_add_alignas (source_location,
567 struct c_declspecs *, tree);
568 extern struct c_declspecs *finish_declspecs (struct c_declspecs *);
570 /* in c-objc-common.c */
571 extern bool c_objc_common_init (void);
572 extern bool c_missing_noreturn_ok_p (tree);
573 extern bool c_warn_unused_global_decl (const_tree);
574 extern void c_initialize_diagnostics (diagnostic_context *);
575 extern bool c_vla_unspec_p (tree x, tree fn);
577 /* in c-typeck.c */
578 extern int in_alignof;
579 extern int in_sizeof;
580 extern int in_typeof;
582 extern tree c_last_sizeof_arg;
584 extern struct c_switch *c_switch_stack;
586 extern tree c_objc_common_truthvalue_conversion (location_t, tree);
587 extern tree require_complete_type (tree);
588 extern int same_translation_unit_p (const_tree, const_tree);
589 extern int comptypes (tree, tree);
590 extern int comptypes_check_different_types (tree, tree, bool *);
591 extern bool c_vla_type_p (const_tree);
592 extern bool c_mark_addressable (tree);
593 extern void c_incomplete_type_error (const_tree, const_tree);
594 extern tree c_type_promotes_to (tree);
595 extern struct c_expr default_function_array_conversion (location_t,
596 struct c_expr);
597 extern struct c_expr default_function_array_read_conversion (location_t,
598 struct c_expr);
599 extern struct c_expr convert_lvalue_to_rvalue (location_t, struct c_expr,
600 bool, bool);
601 extern void mark_exp_read (tree);
602 extern tree composite_type (tree, tree);
603 extern tree build_component_ref (location_t, tree, tree);
604 extern tree build_array_ref (location_t, tree, tree);
605 extern tree build_external_ref (location_t, tree, int, tree *);
606 extern void pop_maybe_used (bool);
607 extern struct c_expr c_expr_sizeof_expr (location_t, struct c_expr);
608 extern struct c_expr c_expr_sizeof_type (location_t, struct c_type_name *);
609 extern struct c_expr parser_build_unary_op (location_t, enum tree_code,
610 struct c_expr);
611 extern struct c_expr parser_build_binary_op (location_t,
612 enum tree_code, struct c_expr,
613 struct c_expr);
614 extern tree build_conditional_expr (location_t, tree, bool, tree, tree,
615 tree, tree);
616 extern tree build_compound_expr (location_t, tree, tree);
617 extern tree c_cast_expr (location_t, struct c_type_name *, tree);
618 extern tree build_c_cast (location_t, tree, tree);
619 extern void store_init_value (location_t, tree, tree, tree);
620 extern void maybe_warn_string_init (location_t, tree, struct c_expr);
621 extern void start_init (tree, tree, int);
622 extern void finish_init (void);
623 extern void really_start_incremental_init (tree);
624 extern void push_init_level (location_t, int, struct obstack *);
625 extern struct c_expr pop_init_level (location_t, int, struct obstack *);
626 extern void set_init_index (location_t, tree, tree, struct obstack *);
627 extern void set_init_label (location_t, tree, struct obstack *);
628 extern void process_init_element (location_t, struct c_expr, bool,
629 struct obstack *);
630 extern tree build_compound_literal (location_t, tree, tree, bool);
631 extern void check_compound_literal_type (location_t, struct c_type_name *);
632 extern tree c_start_case (location_t, location_t, tree, bool);
633 extern void c_finish_case (tree);
634 extern tree build_asm_expr (location_t, tree, tree, tree, tree, tree, bool);
635 extern tree build_asm_stmt (tree, tree);
636 extern int c_types_compatible_p (tree, tree);
637 extern tree c_begin_compound_stmt (bool);
638 extern tree c_end_compound_stmt (location_t, tree, bool);
639 extern void c_finish_if_stmt (location_t, tree, tree, tree, bool);
640 extern void c_finish_loop (location_t, tree, tree, tree, tree, tree, bool);
641 extern tree c_begin_stmt_expr (void);
642 extern tree c_finish_stmt_expr (location_t, tree);
643 extern tree c_process_expr_stmt (location_t, tree);
644 extern tree c_finish_expr_stmt (location_t, tree);
645 extern tree c_finish_return (location_t, tree, tree);
646 extern tree c_finish_bc_stmt (location_t, tree *, bool);
647 extern tree c_finish_goto_label (location_t, tree);
648 extern tree c_finish_goto_ptr (location_t, tree);
649 extern tree c_expr_to_decl (tree, bool *, bool *);
650 extern tree c_begin_omp_parallel (void);
651 extern tree c_finish_omp_parallel (location_t, tree, tree);
652 extern tree c_begin_omp_task (void);
653 extern tree c_finish_omp_task (location_t, tree, tree);
654 extern void c_finish_omp_cancel (location_t, tree);
655 extern void c_finish_omp_cancellation_point (location_t, tree);
656 extern tree c_finish_omp_clauses (tree);
657 extern tree c_build_va_arg (location_t, tree, tree);
658 extern tree c_finish_transaction (location_t, tree, int);
659 extern tree c_cvt_expr_for_assign (location_t, tree, tree);
660 extern bool c_tree_equal (tree, tree);
661 extern tree c_build_function_call_vec (location_t, vec<location_t>, tree,
662 vec<tree, va_gc> *, vec<tree, va_gc> *);
664 /* Set to 0 at beginning of a function definition, set to 1 if
665 a return statement that specifies a return value is seen. */
667 extern int current_function_returns_value;
669 /* Set to 0 at beginning of a function definition, set to 1 if
670 a return statement with no argument is seen. */
672 extern int current_function_returns_null;
674 /* Set to 0 at beginning of a function definition, set to 1 if
675 a call to a noreturn function is seen. */
677 extern int current_function_returns_abnormally;
679 /* Mode used to build pointers (VOIDmode means ptr_mode). */
681 extern enum machine_mode c_default_pointer_mode;
683 /* In c-decl.c */
684 extern void c_finish_incomplete_decl (tree);
685 extern void c_write_global_declarations (void);
686 extern tree c_omp_reduction_id (enum tree_code, tree);
687 extern tree c_omp_reduction_decl (tree);
688 extern tree c_omp_reduction_lookup (tree, tree);
689 extern tree c_check_omp_declare_reduction_r (tree *, int *, void *);
691 /* In c-errors.c */
692 extern void pedwarn_c90 (location_t, int opt, const char *, ...) ATTRIBUTE_GCC_DIAG(3,4);
693 extern void pedwarn_c99 (location_t, int opt, const char *, ...) ATTRIBUTE_GCC_DIAG(3,4);
695 #endif /* ! GCC_C_TREE_H */