1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 /* Process declarations and symbol lookup for C front end.
23 Also constructs types; the standard scalar types at initialization,
24 and structure, union, array and enum types when they are declared. */
26 /* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
31 #include "coretypes.h"
35 #include "tree-inline.h"
52 #include "langhooks.h"
53 #include "tree-mudflap.h"
54 #include "tree-gimple.h"
55 #include "diagnostic.h"
56 #include "tree-dump.h"
61 #include "langhooks-def.h"
63 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
65 { NORMAL
, /* Ordinary declaration */
66 FUNCDEF
, /* Function definition */
67 PARM
, /* Declaration of parm before function body */
68 FIELD
, /* Declaration inside struct or union */
69 TYPENAME
}; /* Typename (inside cast or sizeof) */
72 /* Nonzero if we have seen an invalid cross reference
73 to a struct, union, or enum, but not yet printed the message. */
74 tree pending_invalid_xref
;
76 /* File and line to appear in the eventual error message. */
77 location_t pending_invalid_xref_location
;
79 /* True means we've initialized exception handling. */
80 bool c_eh_initialized_p
;
82 /* While defining an enum type, this is 1 plus the last enumerator
83 constant value. Note that will do not have to save this or `enum_overflow'
84 around nested function definition since such a definition could only
85 occur in an enum value expression and we don't use these variables in
88 static tree enum_next_value
;
90 /* Nonzero means that there was overflow computing enum_next_value. */
92 static int enum_overflow
;
94 /* These #defines are for clarity in working with the information block
95 returned by get_parm_info. */
96 #define ARG_INFO_PARMS(args) TREE_PURPOSE(args)
97 #define ARG_INFO_TAGS(args) TREE_VALUE(args)
98 #define ARG_INFO_TYPES(args) TREE_CHAIN(args)
99 #define ARG_INFO_OTHERS(args) TREE_TYPE(args)
101 /* The file and line that the prototype came from if this is an
102 old-style definition; used for diagnostics in
103 store_parm_decls_oldstyle. */
105 static location_t current_function_prototype_locus
;
107 /* The current statement tree. */
109 static GTY(()) struct stmt_tree_s c_stmt_tree
;
111 /* State saving variables. */
112 int c_in_iteration_stmt
;
115 /* Linked list of TRANSLATION_UNIT_DECLS for the translation units
116 included in this invocation. Note that the current translation
117 unit is not included in this list. */
119 static GTY(()) tree all_translation_units
;
121 /* A list of decls to be made automatically visible in each file scope. */
122 static GTY(()) tree visible_builtins
;
124 /* Set to 0 at beginning of a function definition, set to 1 if
125 a return statement that specifies a return value is seen. */
127 int current_function_returns_value
;
129 /* Set to 0 at beginning of a function definition, set to 1 if
130 a return statement with no argument is seen. */
132 int current_function_returns_null
;
134 /* Set to 0 at beginning of a function definition, set to 1 if
135 a call to a noreturn function is seen. */
137 int current_function_returns_abnormally
;
139 /* Set to nonzero by `grokdeclarator' for a function
140 whose return type is defaulted, if warnings for this are desired. */
142 static int warn_about_return_type
;
144 /* Nonzero when starting a function declared `extern inline'. */
146 static int current_extern_inline
;
148 /* True means global_bindings_p should return false even if the scope stack
149 says we are in file scope. */
150 bool c_override_global_bindings_to_false
;
153 /* Each c_binding structure describes one binding of an identifier to
154 a decl. All the decls in a scope - irrespective of namespace - are
155 chained together by the ->prev field, which (as the name implies)
156 runs in reverse order. All the decls in a given namespace bound to
157 a given identifier are chained by the ->shadowed field, which runs
158 from inner to outer scopes. Finally, the ->contour field points
159 back to the relevant scope structure; this is mainly used to make
160 decls in the externals scope invisible (see below).
162 The ->decl field usually points to a DECL node, but there are two
163 exceptions. In the namespace of type tags, the bound entity is a
164 RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node. If an undeclared
165 identifier is encountered, it is bound to error_mark_node to
166 suppress further errors about that identifier in the current
169 struct c_binding
GTY((chain_next ("%h.prev")))
171 tree decl
; /* the decl bound */
172 tree id
; /* the identifier it's bound to */
173 struct c_binding
*prev
; /* the previous decl in this scope */
174 struct c_binding
*shadowed
; /* the innermost decl shadowed by this one */
175 struct c_scope
*contour
; /* the scope in which this decl is bound */
178 #define I_SYMBOL_BINDING(node) \
179 (((struct lang_identifier *)IDENTIFIER_NODE_CHECK(node))->symbol_binding)
180 #define I_SYMBOL_DECL(node) \
181 (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
183 #define I_TAG_BINDING(node) \
184 (((struct lang_identifier *)IDENTIFIER_NODE_CHECK(node))->tag_binding)
185 #define I_TAG_DECL(node) \
186 (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
188 #define I_LABEL_BINDING(node) \
189 (((struct lang_identifier *)IDENTIFIER_NODE_CHECK(node))->label_binding)
190 #define I_LABEL_DECL(node) \
191 (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
193 /* Each C symbol points to three linked lists of c_binding structures.
194 These describe the values of the identifier in the three different
195 namespaces defined by the language. */
197 struct lang_identifier
GTY(())
199 struct c_common_identifier common_id
;
200 struct c_binding
*symbol_binding
; /* vars, funcs, constants, typedefs */
201 struct c_binding
*tag_binding
; /* struct/union/enum tags */
202 struct c_binding
*label_binding
; /* labels */
205 /* Validate c-lang.c's assumptions. */
206 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
207 [(sizeof(struct lang_identifier
) == C_SIZEOF_STRUCT_LANG_IDENTIFIER
) ? 1 : -1];
209 /* The resulting tree type. */
212 GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
213 chain_next ("TREE_CODE (&%h.generic) == INTEGER_TYPE ? (union lang_tree_node *)TYPE_NEXT_VARIANT (&%h.generic) : (union lang_tree_node *)TREE_CHAIN (&%h.generic)")))
215 union tree_node
GTY ((tag ("0"),
216 desc ("tree_node_structure (&%h)")))
218 struct lang_identifier
GTY ((tag ("1"))) identifier
;
221 /* Each c_scope structure describes the complete contents of one
222 scope. Four scopes are distinguished specially: the innermost or
223 current scope, the innermost function scope, the file scope (always
224 the second to outermost) and the outermost or external scope.
226 Most declarations are recorded in the current scope.
228 All normal label declarations are recorded in the innermost
229 function scope, as are bindings of undeclared identifiers to
230 error_mark_node. (GCC permits nested functions as an extension,
231 hence the 'innermost' qualifier.) Explicitly declared labels
232 (using the __label__ extension) appear in the current scope.
234 Being in the file scope (current_scope == file_scope) causes
235 special behavior in several places below. Also, under some
236 conditions the Objective-C front end records declarations in the
237 file scope even though that isn't the current scope.
239 All declarations with external linkage are recorded in the external
240 scope, even if they aren't visible there; this models the fact that
241 such declarations are visible to the entire program, and (with a
242 bit of cleverness, see pushdecl) allows diagnosis of some violations
243 of C99 6.2.2p7 and 6.2.7p2:
245 If, within the same translation unit, the same identifier appears
246 with both internal and external linkage, the behavior is
249 All declarations that refer to the same object or function shall
250 have compatible type; otherwise, the behavior is undefined.
252 Initially only the built-in declarations, which describe compiler
253 intrinsic functions plus a subset of the standard library, are in
256 The order of the blocks list matters, and it is frequently appended
257 to. To avoid having to walk all the way to the end of the list on
258 each insertion, or reverse the list later, we maintain a pointer to
259 the last list entry. (FIXME: It should be feasible to use a reversed
262 The bindings list is strictly in reverse order of declarations;
263 pop_scope relies on this. */
266 struct c_scope
GTY((chain_next ("%h.outer")))
268 /* The scope containing this one. */
269 struct c_scope
*outer
;
271 /* The next outermost function scope. */
272 struct c_scope
*outer_function
;
274 /* All bindings in this scope. */
275 struct c_binding
*bindings
;
277 /* For each scope (except the global one), a chain of BLOCK nodes
278 for all the scopes that were entered and exited one level down. */
282 /* The depth of this scope. Used to keep the ->shadowed chain of
283 bindings sorted innermost to outermost. */
284 unsigned int depth
: 28;
286 /* True if we are currently filling this scope with parameter
288 BOOL_BITFIELD parm_flag
: 1;
290 /* True if we already complained about forward parameter decls
291 in this scope. This prevents double warnings on
292 foo (int a; int b; ...) */
293 BOOL_BITFIELD warned_forward_parm_decls
: 1;
295 /* True if this is the outermost block scope of a function body.
296 This scope contains the parameters, the local variables declared
297 in the outermost block, and all the labels (except those in
298 nested functions, or declared at block scope with __label__). */
299 BOOL_BITFIELD function_body
: 1;
301 /* True means make a BLOCK for this scope no matter what. */
302 BOOL_BITFIELD keep
: 1;
305 /* The scope currently in effect. */
307 static GTY(()) struct c_scope
*current_scope
;
309 /* The innermost function scope. Ordinary (not explicitly declared)
310 labels, bindings to error_mark_node, and the lazily-created
311 bindings of __func__ and its friends get this scope. */
313 static GTY(()) struct c_scope
*current_function_scope
;
315 /* The C file scope. This is reset for each input translation unit. */
317 static GTY(()) struct c_scope
*file_scope
;
319 /* The outermost scope. This is used for all declarations with
320 external linkage, and only these, hence the name. */
322 static GTY(()) struct c_scope
*external_scope
;
324 /* A chain of c_scope structures awaiting reuse. */
326 static GTY((deletable
)) struct c_scope
*scope_freelist
;
328 /* A chain of c_binding structures awaiting reuse. */
330 static GTY((deletable
)) struct c_binding
*binding_freelist
;
332 /* Append VAR to LIST in scope SCOPE. */
333 #define SCOPE_LIST_APPEND(scope, list, decl) do { \
334 struct c_scope *s_ = (scope); \
336 if (s_->list##_last) \
337 TREE_CHAIN (s_->list##_last) = d_; \
340 s_->list##_last = d_; \
343 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE. */
344 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do { \
345 struct c_scope *t_ = (tscope); \
346 struct c_scope *f_ = (fscope); \
348 TREE_CHAIN (t_->to##_last) = f_->from; \
351 t_->to##_last = f_->from##_last; \
354 /* True means unconditionally make a BLOCK for the next scope pushed. */
356 static bool keep_next_level_flag
;
358 /* True means the next call to push_scope will be the outermost scope
359 of a function body, so do not push a new scope, merely cease
360 expecting parameter decls. */
362 static bool next_is_function_body
;
364 /* Functions called automatically at the beginning and end of execution. */
366 tree static_ctors
, static_dtors
;
368 /* Forward declarations. */
369 static tree
lookup_name_in_scope (tree
, struct c_scope
*);
370 static tree
c_make_fname_decl (tree
, int);
371 static tree
grokdeclarator (tree
, tree
, enum decl_context
, int, tree
*);
372 static tree
grokparms (tree
, int);
373 static void layout_array_type (tree
);
375 /* States indicating how grokdeclarator() should handle declspecs marked
376 with __attribute__((deprecated)). An object declared as
377 __attribute__((deprecated)) suppresses warnings of uses of other
380 enum deprecated_states
{
385 static enum deprecated_states deprecated_state
= DEPRECATED_NORMAL
;
388 c_print_identifier (FILE *file
, tree node
, int indent
)
390 print_node (file
, "symbol", I_SYMBOL_DECL (node
), indent
+ 4);
391 print_node (file
, "tag", I_TAG_DECL (node
), indent
+ 4);
392 print_node (file
, "label", I_LABEL_DECL (node
), indent
+ 4);
393 if (C_IS_RESERVED_WORD (node
))
395 tree rid
= ridpointers
[C_RID_CODE (node
)];
396 indent_to (file
, indent
+ 4);
397 fprintf (file
, "rid " HOST_PTR_PRINTF
" \"%s\"",
398 (void *) rid
, IDENTIFIER_POINTER (rid
));
402 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
403 which may be any of several kinds of DECL or TYPE or error_mark_node,
404 in the scope SCOPE. */
406 bind (tree name
, tree decl
, struct c_scope
*scope
)
408 struct c_binding
*b
, **here
;
410 if (binding_freelist
)
412 b
= binding_freelist
;
413 binding_freelist
= b
->prev
;
416 b
= ggc_alloc (sizeof (struct c_binding
));
423 b
->prev
= scope
->bindings
;
429 switch (TREE_CODE (decl
))
431 case LABEL_DECL
: here
= &I_LABEL_BINDING (name
); break;
434 case RECORD_TYPE
: here
= &I_TAG_BINDING (name
); break;
440 case ERROR_MARK
: here
= &I_SYMBOL_BINDING (name
); break;
446 /* Locate the appropriate place in the chain of shadowed decls
447 to insert this binding. Normally, scope == current_scope and
448 this does nothing. */
449 while (*here
&& (*here
)->contour
->depth
> scope
->depth
)
450 here
= &(*here
)->shadowed
;
456 /* Clear the binding structure B, stick it on the binding_freelist,
457 and return the former value of b->prev. This is used by pop_scope
458 and get_parm_info to iterate destructively over all the bindings
459 from a given scope. */
460 static struct c_binding
*
461 free_binding_and_advance (struct c_binding
*b
)
463 struct c_binding
*prev
= b
->prev
;
469 b
->prev
= binding_freelist
;
470 binding_freelist
= b
;
476 /* Hook called at end of compilation to assume 1 elt
477 for a file-scope tentative array defn that wasn't complete before. */
480 c_finish_incomplete_decl (tree decl
)
482 if (TREE_CODE (decl
) == VAR_DECL
)
484 tree type
= TREE_TYPE (decl
);
485 if (type
!= error_mark_node
486 && TREE_CODE (type
) == ARRAY_TYPE
487 && ! DECL_EXTERNAL (decl
)
488 && TYPE_DOMAIN (type
) == 0)
490 warning ("%Jarray '%D' assumed to have one element", decl
, decl
);
492 complete_array_type (type
, NULL_TREE
, 1);
494 layout_decl (decl
, 0);
499 /* The Objective-C front-end often needs to determine the current scope. */
502 get_current_scope (void)
504 return current_scope
;
507 /* The following function is used only by Objective-C. It needs to live here
508 because it accesses the innards of c_scope. */
511 objc_mark_locals_volatile (void *enclosing_blk
)
513 struct c_scope
*scope
;
516 for (scope
= current_scope
;
517 scope
&& scope
!= enclosing_blk
;
518 scope
= scope
->outer
)
520 for (b
= scope
->bindings
; b
; b
= b
->prev
)
522 if (TREE_CODE (b
->decl
) == VAR_DECL
523 || TREE_CODE (b
->decl
) == PARM_DECL
)
525 C_DECL_REGISTER (b
->decl
) = 0;
526 DECL_REGISTER (b
->decl
) = 0;
527 TREE_THIS_VOLATILE (b
->decl
) = 1;
531 /* Do not climb up past the current function. */
532 if (scope
->function_body
)
537 /* Nonzero if we are currently in file scope. */
540 global_bindings_p (void)
542 return current_scope
== file_scope
&& !c_override_global_bindings_to_false
;
546 keep_next_level (void)
548 keep_next_level_flag
= true;
551 /* Identify this scope as currently being filled with parameters. */
554 declare_parm_level (void)
556 current_scope
->parm_flag
= true;
562 if (next_is_function_body
)
564 /* This is the transition from the parameters to the top level
565 of the function body. These are the same scope
566 (C99 6.2.1p4,6) so we do not push another scope structure.
567 next_is_function_body is set only by store_parm_decls, which
568 in turn is called when and only when we are about to
569 encounter the opening curly brace for the function body.
571 The outermost block of a function always gets a BLOCK node,
572 because the debugging output routines expect that each
573 function has at least one BLOCK. */
574 current_scope
->parm_flag
= false;
575 current_scope
->function_body
= true;
576 current_scope
->keep
= true;
577 current_scope
->outer_function
= current_function_scope
;
578 current_function_scope
= current_scope
;
580 keep_next_level_flag
= false;
581 next_is_function_body
= false;
585 struct c_scope
*scope
;
588 scope
= scope_freelist
;
589 scope_freelist
= scope
->outer
;
592 scope
= ggc_alloc_cleared (sizeof (struct c_scope
));
594 scope
->keep
= keep_next_level_flag
;
595 scope
->outer
= current_scope
;
596 scope
->depth
= current_scope
? (current_scope
->depth
+ 1) : 0;
598 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
600 if (current_scope
&& scope
->depth
== 0)
603 sorry ("GCC supports only %u nested scopes\n", scope
->depth
);
606 current_scope
= scope
;
607 keep_next_level_flag
= false;
611 /* Exit a scope. Restore the state of the identifier-decl mappings
612 that were in effect when this scope was entered. Return a BLOCK
613 node containing all the DECLs in this scope that are of interest
614 to debug info generation. */
619 struct c_scope
*scope
= current_scope
;
620 tree block
, context
, p
;
623 bool functionbody
= scope
->function_body
;
624 bool keep
= functionbody
|| scope
->keep
|| scope
->bindings
;
626 /* If appropriate, create a BLOCK to record the decls for the life
631 block
= make_node (BLOCK
);
632 BLOCK_SUBBLOCKS (block
) = scope
->blocks
;
633 TREE_USED (block
) = 1;
635 /* In each subblock, record that this is its superior. */
636 for (p
= scope
->blocks
; p
; p
= TREE_CHAIN (p
))
637 BLOCK_SUPERCONTEXT (p
) = block
;
639 BLOCK_VARS (block
) = 0;
642 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
643 scope must be set so that they point to the appropriate
644 construct, i.e. either to the current FUNCTION_DECL node, or
645 else to the BLOCK node we just constructed.
647 Note that for tagged types whose scope is just the formal
648 parameter list for some function type specification, we can't
649 properly set their TYPE_CONTEXTs here, because we don't have a
650 pointer to the appropriate FUNCTION_TYPE node readily available
651 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
652 type nodes get set in `grokdeclarator' as soon as we have created
653 the FUNCTION_TYPE node which will represent the "scope" for these
654 "parameter list local" tagged types. */
655 if (scope
->function_body
)
656 context
= current_function_decl
;
657 else if (scope
== file_scope
)
659 tree file_decl
= build_decl (TRANSLATION_UNIT_DECL
, 0, 0);
660 TREE_CHAIN (file_decl
) = all_translation_units
;
661 all_translation_units
= file_decl
;
667 /* Clear all bindings in this scope. */
668 for (b
= scope
->bindings
; b
; b
= free_binding_and_advance (b
))
671 switch (TREE_CODE (p
))
674 /* Warnings for unused labels, errors for undefined labels. */
675 if (TREE_USED (p
) && !DECL_INITIAL (p
))
677 error ("%Jlabel `%D' used but not defined", p
, p
);
678 DECL_INITIAL (p
) = error_mark_node
;
680 else if (!TREE_USED (p
) && warn_unused_label
)
682 if (DECL_INITIAL (p
))
683 warning ("%Jlabel `%D' defined but not used", p
, p
);
685 warning ("%Jlabel `%D' declared but not defined", p
, p
);
687 /* Labels go in BLOCK_VARS. */
688 TREE_CHAIN (p
) = BLOCK_VARS (block
);
689 BLOCK_VARS (block
) = p
;
691 #ifdef ENABLE_CHECKING
692 if (I_LABEL_BINDING (b
->id
) != b
) abort ();
694 I_LABEL_BINDING (b
->id
) = b
->shadowed
;
700 TYPE_CONTEXT (p
) = context
;
702 /* Types may not have tag-names, in which case the type
703 appears in the bindings list with b->id NULL. */
706 #ifdef ENABLE_CHECKING
707 if (I_TAG_BINDING (b
->id
) != b
) abort ();
709 I_TAG_BINDING (b
->id
) = b
->shadowed
;
714 /* Propagate TREE_ADDRESSABLE from nested functions to their
715 containing functions. */
716 if (! TREE_ASM_WRITTEN (p
)
717 && DECL_INITIAL (p
) != 0
718 && TREE_ADDRESSABLE (p
)
719 && DECL_ABSTRACT_ORIGIN (p
) != 0
720 && DECL_ABSTRACT_ORIGIN (p
) != p
)
721 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p
)) = 1;
725 /* Warnings for unused variables. Keep this in sync with
726 stmt.c:warn_about_unused_variables, which we cannot use
727 since it expects a different data structure. */
728 if (warn_unused_variable
730 && !DECL_IN_SYSTEM_HEADER (p
)
732 && !DECL_ARTIFICIAL (p
)
733 && (scope
!= file_scope
734 || (TREE_STATIC (p
) && !TREE_PUBLIC (p
)
735 && !TREE_THIS_VOLATILE (p
)))
736 && scope
!= external_scope
)
737 warning ("%Junused variable `%D'", p
, p
);
743 /* All of these go in BLOCK_VARS, but only if this is the
744 binding in the home scope. */
745 if (!C_DECL_IN_EXTERNAL_SCOPE (p
) || scope
== external_scope
)
747 TREE_CHAIN (p
) = BLOCK_VARS (block
);
748 BLOCK_VARS (block
) = p
;
750 /* If this is the file scope, must set DECL_CONTEXT on these. */
751 if (!C_DECL_IN_EXTERNAL_SCOPE (p
) && scope
== file_scope
)
752 DECL_CONTEXT (p
) = context
;
755 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
756 already been put there by store_parm_decls. Unused-
757 parameter warnings are handled by function.c.
758 error_mark_node obviously does not go in BLOCK_VARS and
759 does not get unused-variable warnings. */
762 /* It is possible for a decl not to have a name. We get
763 here with b->id NULL in this case. */
766 #ifdef ENABLE_CHECKING
767 if (I_SYMBOL_BINDING (b
->id
) != b
) abort ();
769 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
779 /* Dispose of the block that we just made inside some higher level. */
780 if ((scope
->function_body
|| scope
== file_scope
) && context
)
782 DECL_INITIAL (context
) = block
;
783 BLOCK_SUPERCONTEXT (block
) = context
;
785 else if (scope
->outer
)
788 SCOPE_LIST_APPEND (scope
->outer
, blocks
, block
);
789 /* If we did not make a block for the scope just exited, any
790 blocks made for inner scopes must be carried forward so they
791 will later become subblocks of something else. */
792 else if (scope
->blocks
)
793 SCOPE_LIST_CONCAT (scope
->outer
, blocks
, scope
, blocks
);
796 /* Pop the current scope, and free the structure for reuse. */
797 current_scope
= scope
->outer
;
798 if (scope
->function_body
)
799 current_function_scope
= scope
->outer_function
;
801 memset (scope
, 0, sizeof (struct c_scope
));
802 scope
->outer
= scope_freelist
;
803 scope_freelist
= scope
;
809 push_file_scope (void)
814 file_scope
= current_scope
;
816 start_fname_decls ();
818 for (decl
= visible_builtins
; decl
; decl
= TREE_CHAIN (decl
))
819 bind (DECL_NAME (decl
), decl
, file_scope
);
823 pop_file_scope (void)
825 /* In case there were missing closebraces, get us back to the global
827 while (current_scope
!= file_scope
)
830 /* __FUNCTION__ is defined at file scope (""). This
831 call may not be necessary as my tests indicate it
832 still works without it. */
833 finish_fname_decls ();
835 /* Kludge: don't actually pop the file scope if generating a
836 precompiled header, so that macros and local symbols are still
837 visible to the PCH generator. */
841 /* And pop off the file scope. */
845 cpp_undef_all (parse_in
);
848 /* Insert BLOCK at the end of the list of subblocks of the current
849 scope. This is used when a BIND_EXPR is expanded, to handle the
850 BLOCK node inside the BIND_EXPR. */
853 insert_block (tree block
)
855 TREE_USED (block
) = 1;
856 SCOPE_LIST_APPEND (current_scope
, blocks
, block
);
859 /* Push a definition or a declaration of struct, union or enum tag "name".
860 "type" should be the type node.
861 We assume that the tag "name" is not already defined.
863 Note that the definition may really be just a forward reference.
864 In that case, the TYPE_SIZE will be zero. */
867 pushtag (tree name
, tree type
)
869 /* Record the identifier as the type's name if it has none. */
870 if (name
&& !TYPE_NAME (type
))
871 TYPE_NAME (type
) = name
;
872 bind (name
, type
, current_scope
);
874 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
875 tagged type we just added to the current scope. This fake
876 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
877 to output a representation of a tagged type, and it also gives
878 us a convenient place to record the "scope start" address for the
881 TYPE_STUB_DECL (type
) = pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, type
));
883 /* An approximation for now, so we can tell this is a function-scope tag.
884 This will be updated in pop_scope. */
885 TYPE_CONTEXT (type
) = DECL_CONTEXT (TYPE_STUB_DECL (type
));
888 /* Subroutine of compare_decls. Allow harmless mismatches in return
889 and argument types provided that the type modes match. This function
890 return a unified type given a suitable match, and 0 otherwise. */
893 match_builtin_function_types (tree newtype
, tree oldtype
)
895 tree newrettype
, oldrettype
;
896 tree newargs
, oldargs
;
897 tree trytype
, tryargs
;
899 /* Accept the return type of the new declaration if same modes. */
900 oldrettype
= TREE_TYPE (oldtype
);
901 newrettype
= TREE_TYPE (newtype
);
903 if (TYPE_MODE (oldrettype
) != TYPE_MODE (newrettype
))
906 oldargs
= TYPE_ARG_TYPES (oldtype
);
907 newargs
= TYPE_ARG_TYPES (newtype
);
910 while (oldargs
|| newargs
)
914 || ! TREE_VALUE (oldargs
)
915 || ! TREE_VALUE (newargs
)
916 || TYPE_MODE (TREE_VALUE (oldargs
))
917 != TYPE_MODE (TREE_VALUE (newargs
)))
920 oldargs
= TREE_CHAIN (oldargs
);
921 newargs
= TREE_CHAIN (newargs
);
924 trytype
= build_function_type (newrettype
, tryargs
);
925 return build_type_attribute_variant (trytype
, TYPE_ATTRIBUTES (oldtype
));
928 /* Subroutine of diagnose_mismatched_decls. Check for function type
929 mismatch involving an empty arglist vs a nonempty one and give clearer
932 diagnose_arglist_conflict (tree newdecl
, tree olddecl
,
933 tree newtype
, tree oldtype
)
937 if (TREE_CODE (olddecl
) != FUNCTION_DECL
938 || !comptypes (TREE_TYPE (oldtype
), TREE_TYPE (newtype
))
939 || !((TYPE_ARG_TYPES (oldtype
) == 0 && DECL_INITIAL (olddecl
) == 0)
941 (TYPE_ARG_TYPES (newtype
) == 0 && DECL_INITIAL (newdecl
) == 0)))
944 t
= TYPE_ARG_TYPES (oldtype
);
946 t
= TYPE_ARG_TYPES (newtype
);
947 for (; t
; t
= TREE_CHAIN (t
))
949 tree type
= TREE_VALUE (t
);
951 if (TREE_CHAIN (t
) == 0
952 && TYPE_MAIN_VARIANT (type
) != void_type_node
)
954 inform ("a parameter list with an ellipsis can't match "
955 "an empty parameter name list declaration");
959 if (c_type_promotes_to (type
) != type
)
961 inform ("an argument type that has a default promotion can't match "
962 "an empty parameter name list declaration");
968 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
969 old-style function definition, NEWDECL is a prototype declaration.
970 Diagnose inconsistencies in the argument list. Returns TRUE if
971 the prototype is compatible, FALSE if not. */
973 validate_proto_after_old_defn (tree newdecl
, tree newtype
, tree oldtype
)
975 tree newargs
, oldargs
;
978 /* ??? Elsewhere TYPE_MAIN_VARIANT is not used in this context. */
979 #define END_OF_ARGLIST(t) (TYPE_MAIN_VARIANT (t) == void_type_node)
981 oldargs
= TYPE_ACTUAL_ARG_TYPES (oldtype
);
982 newargs
= TYPE_ARG_TYPES (newtype
);
987 tree oldargtype
= TREE_VALUE (oldargs
);
988 tree newargtype
= TREE_VALUE (newargs
);
990 if (END_OF_ARGLIST (oldargtype
) && END_OF_ARGLIST (newargtype
))
993 /* Reaching the end of just one list means the two decls don't
994 agree on the number of arguments. */
995 if (END_OF_ARGLIST (oldargtype
))
997 error ("%Jprototype for '%D' declares more arguments "
998 "than previous old-style definition", newdecl
, newdecl
);
1001 else if (END_OF_ARGLIST (newargtype
))
1003 error ("%Jprototype for '%D' declares fewer arguments "
1004 "than previous old-style definition", newdecl
, newdecl
);
1008 /* Type for passing arg must be consistent with that declared
1010 else if (! comptypes (oldargtype
, newargtype
))
1012 error ("%Jprototype for '%D' declares arg %d with incompatible type",
1013 newdecl
, newdecl
, i
);
1017 oldargs
= TREE_CHAIN (oldargs
);
1018 newargs
= TREE_CHAIN (newargs
);
1022 /* If we get here, no errors were found, but do issue a warning
1023 for this poor-style construct. */
1024 warning ("%Jprototype for '%D' follows non-prototype definition",
1027 #undef END_OF_ARGLIST
1030 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1031 first in a pair of mismatched declarations, using the diagnostic
1034 locate_old_decl (tree decl
, void (*diag
)(const char *, ...))
1036 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (decl
))
1038 else if (DECL_INITIAL (decl
))
1039 diag (N_("%Jprevious definition of '%D' was here"), decl
, decl
);
1040 else if (C_DECL_IMPLICIT (decl
))
1041 diag (N_("%Jprevious implicit declaration of '%D' was here"), decl
, decl
);
1043 diag (N_("%Jprevious declaration of '%D' was here"), decl
, decl
);
1046 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1047 Returns true if the caller should proceed to merge the two, false
1048 if OLDDECL should simply be discarded. As a side effect, issues
1049 all necessary diagnostics for invalid or poor-style combinations.
1050 If it returns true, writes the types of NEWDECL and OLDDECL to
1051 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1052 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1055 diagnose_mismatched_decls (tree newdecl
, tree olddecl
,
1056 tree
*newtypep
, tree
*oldtypep
)
1058 tree newtype
, oldtype
;
1059 bool pedwarned
= false;
1060 bool warned
= false;
1062 /* If we have error_mark_node for either decl or type, just discard
1063 the previous decl - we're in an error cascade already. */
1064 if (olddecl
== error_mark_node
|| newdecl
== error_mark_node
)
1066 *oldtypep
= oldtype
= TREE_TYPE (olddecl
);
1067 *newtypep
= newtype
= TREE_TYPE (newdecl
);
1068 if (oldtype
== error_mark_node
|| newtype
== error_mark_node
)
1071 /* Two different categories of symbol altogether. This is an error
1072 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1073 if (TREE_CODE (olddecl
) != TREE_CODE (newdecl
))
1075 if (!(TREE_CODE (olddecl
) == FUNCTION_DECL
1076 && DECL_BUILT_IN (olddecl
)
1077 && !C_DECL_DECLARED_BUILTIN (olddecl
)))
1079 error ("%J'%D' redeclared as different kind of symbol",
1081 locate_old_decl (olddecl
, error
);
1083 else if (TREE_PUBLIC (newdecl
))
1084 warning ("%Jbuilt-in function '%D' declared as non-function",
1086 else if (warn_shadow
)
1087 warning ("%Jdeclaration of '%D' shadows a built-in function",
1092 if (!comptypes (oldtype
, newtype
))
1094 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1095 && DECL_BUILT_IN (olddecl
) && !C_DECL_DECLARED_BUILTIN (olddecl
))
1097 /* Accept harmless mismatch in function types.
1098 This is for the ffs and fprintf builtins. */
1099 tree trytype
= match_builtin_function_types (newtype
, oldtype
);
1101 if (trytype
&& comptypes (newtype
, trytype
))
1102 *oldtypep
= oldtype
= trytype
;
1105 /* If types don't match for a built-in, throw away the
1106 built-in. No point in calling locate_old_decl here, it
1107 won't print anything. */
1108 warning ("%Jconflicting types for built-in function '%D'",
1113 else if (TREE_CODE (olddecl
) == FUNCTION_DECL
1114 && DECL_SOURCE_LINE (olddecl
) == 0)
1116 /* A conflicting function declaration for a predeclared
1117 function that isn't actually built in. Objective C uses
1118 these. The new declaration silently overrides everything
1119 but the volatility (i.e. noreturn) indication. See also
1120 below. FIXME: Make Objective C use normal builtins. */
1121 TREE_THIS_VOLATILE (newdecl
) |= TREE_THIS_VOLATILE (olddecl
);
1124 /* Permit void foo (...) to match int foo (...) if the latter is
1125 the definition and implicit int was used. See
1126 c-torture/compile/920625-2.c. */
1127 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
&& DECL_INITIAL (newdecl
)
1128 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype
)) == void_type_node
1129 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype
)) == integer_type_node
1130 && C_FUNCTION_IMPLICIT_INT (newdecl
))
1132 pedwarn ("%Jconflicting types for '%D'", newdecl
, newdecl
);
1133 /* Make sure we keep void as the return type. */
1134 TREE_TYPE (newdecl
) = *newtypep
= newtype
= oldtype
;
1135 C_FUNCTION_IMPLICIT_INT (newdecl
) = 0;
1140 if (TYPE_QUALS (newtype
) != TYPE_QUALS (oldtype
))
1141 error ("%J conflicting type qualifiers for '%D'", newdecl
, newdecl
);
1143 error ("%Jconflicting types for '%D'", newdecl
, newdecl
);
1144 diagnose_arglist_conflict (newdecl
, olddecl
, newtype
, oldtype
);
1145 locate_old_decl (olddecl
, error
);
1150 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1151 but silently ignore the redeclaration if either is in a system
1152 header. (Conflicting redeclarations were handled above.) */
1153 if (TREE_CODE (newdecl
) == TYPE_DECL
)
1155 if (DECL_IN_SYSTEM_HEADER (newdecl
) || DECL_IN_SYSTEM_HEADER (olddecl
))
1156 return true; /* Allow OLDDECL to continue in use. */
1158 error ("%Jredefinition of typedef '%D'", newdecl
, newdecl
);
1159 locate_old_decl (olddecl
, error
);
1163 /* Function declarations can either be 'static' or 'extern' (no
1164 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1165 can never conflict with each other on account of linkage (6.2.2p4).
1166 Multiple definitions are not allowed (6.9p3,5) but GCC permits
1167 two definitions if one is 'extern inline' and one is not. The non-
1168 extern-inline definition supersedes the extern-inline definition. */
1169 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1171 /* If you declare a built-in function name as static, or
1172 define the built-in with an old-style definition (so we
1173 can't validate the argument list) the built-in definition is
1174 overridden, but optionally warn this was a bad choice of name. */
1175 if (DECL_BUILT_IN (olddecl
)
1176 && !C_DECL_DECLARED_BUILTIN (olddecl
)
1177 && (!TREE_PUBLIC (newdecl
)
1178 || (DECL_INITIAL (newdecl
)
1179 && !TYPE_ARG_TYPES (TREE_TYPE (newdecl
)))))
1182 warning ("%Jdeclaration of '%D' shadows a built-in function",
1184 /* Discard the old built-in function. */
1188 if (DECL_INITIAL (newdecl
))
1190 if (DECL_INITIAL (olddecl
)
1191 && !(DECL_DECLARED_INLINE_P (olddecl
)
1192 && DECL_EXTERNAL (olddecl
)
1193 && !(DECL_DECLARED_INLINE_P (newdecl
)
1194 && DECL_EXTERNAL (newdecl
))))
1196 error ("%Jredefinition of '%D'", newdecl
, newdecl
);
1197 locate_old_decl (olddecl
, error
);
1201 /* If we have a prototype after an old-style function definition,
1202 the argument types must be checked specially. */
1203 else if (DECL_INITIAL (olddecl
)
1204 && !TYPE_ARG_TYPES (oldtype
) && TYPE_ARG_TYPES (newtype
)
1205 && TYPE_ACTUAL_ARG_TYPES (oldtype
)
1206 && !validate_proto_after_old_defn (newdecl
, newtype
, oldtype
))
1208 locate_old_decl (olddecl
, error
);
1211 /* Mismatched non-static and static is considered poor style.
1212 We only diagnose static then non-static if -Wtraditional,
1213 because it is the most convenient way to get some effects
1214 (see e.g. what unwind-dw2-fde-glibc.c does to the definition
1215 of _Unwind_Find_FDE in unwind-dw2-fde.c). Revisit? */
1216 if (TREE_PUBLIC (olddecl
) && !TREE_PUBLIC (newdecl
))
1218 /* A static function declaration for a predeclared function
1219 that isn't actually built in, silently overrides the
1220 default. Objective C uses these. See also above.
1221 FIXME: Make Objective C use normal builtins. */
1222 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1223 && DECL_SOURCE_LINE (olddecl
) == 0)
1227 warning ("%Jstatic declaration of '%D' follows "
1228 "non-static declaration", newdecl
, newdecl
);
1232 else if (TREE_PUBLIC (newdecl
) && !TREE_PUBLIC (olddecl
)
1233 && warn_traditional
)
1235 warning ("%Jnon-static declaration of '%D' follows "
1236 "static declaration", newdecl
, newdecl
);
1240 else if (TREE_CODE (newdecl
) == VAR_DECL
)
1242 /* Only variables can be thread-local, and all declarations must
1243 agree on this property. */
1244 if (DECL_THREAD_LOCAL (newdecl
) != DECL_THREAD_LOCAL (olddecl
))
1246 if (DECL_THREAD_LOCAL (newdecl
))
1247 error ("%Jthread-local declaration of '%D' follows "
1248 "non-thread-local declaration", newdecl
, newdecl
);
1250 error ("%Jnon-thread-local declaration of '%D' follows "
1251 "thread-local declaration", newdecl
, newdecl
);
1253 locate_old_decl (olddecl
, error
);
1257 /* Multiple initialized definitions are not allowed (6.9p3,5). */
1258 if (DECL_INITIAL (newdecl
) && DECL_INITIAL (olddecl
))
1260 error ("%Jredefinition of '%D'", newdecl
, newdecl
);
1261 locate_old_decl (olddecl
, error
);
1265 /* Objects declared at file scope: if at least one is 'extern',
1266 it's fine (6.2.2p4); otherwise the linkage must agree (6.2.2p7). */
1267 if (DECL_FILE_SCOPE_P (newdecl
))
1269 if (!DECL_EXTERNAL (newdecl
)
1270 && !DECL_EXTERNAL (olddecl
)
1271 && TREE_PUBLIC (newdecl
) != TREE_PUBLIC (olddecl
))
1273 if (TREE_PUBLIC (newdecl
))
1274 error ("%Jnon-static declaration of '%D' follows "
1275 "static declaration", newdecl
, newdecl
);
1277 error ("%Jstatic declaration of '%D' follows "
1278 "non-static declaration", newdecl
, newdecl
);
1280 locate_old_decl (olddecl
, error
);
1284 /* Two objects with the same name declared at the same block
1285 scope must both be external references (6.7p3). */
1286 else if (DECL_CONTEXT (newdecl
) == DECL_CONTEXT (olddecl
)
1287 && (!DECL_EXTERNAL (newdecl
) || !DECL_EXTERNAL (olddecl
)))
1289 if (DECL_EXTERNAL (newdecl
))
1290 error ("%Jextern declaration of '%D' follows "
1291 "declaration with no linkage", newdecl
, newdecl
);
1292 else if (DECL_EXTERNAL (olddecl
))
1293 error ("%Jdeclaration of '%D' with no linkage follows "
1294 "extern declaration", newdecl
, newdecl
);
1296 error ("%Jredeclaration of '%D' with no linkage",
1299 locate_old_decl (olddecl
, error
);
1305 /* All decls must agree on a non-default visibility. */
1306 if (DECL_VISIBILITY (newdecl
) != VISIBILITY_DEFAULT
1307 && DECL_VISIBILITY (olddecl
) != VISIBILITY_DEFAULT
1308 && DECL_VISIBILITY (newdecl
) != DECL_VISIBILITY (olddecl
))
1310 warning ("%Jredeclaration of '%D' with different visibility "
1311 "(old visibility preserved)", newdecl
, newdecl
);
1315 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1317 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
1318 if (DECL_DECLARED_INLINE_P (newdecl
)
1319 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl
)))
1321 warning ("%Jinline declaration of '%D' follows "
1322 "declaration with attribute noinline", newdecl
, newdecl
);
1325 else if (DECL_DECLARED_INLINE_P (olddecl
)
1326 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl
)))
1328 warning ("%Jdeclaration of '%D' with attribute noinline follows "
1329 "inline declaration ", newdecl
, newdecl
);
1333 /* Inline declaration after use or definition.
1334 ??? Should we still warn about this now we have unit-at-a-time
1335 mode and can get it right? */
1336 if (DECL_DECLARED_INLINE_P (newdecl
) && !DECL_DECLARED_INLINE_P (olddecl
))
1338 if (TREE_USED (olddecl
))
1340 warning ("%J'%D' declared inline after being called",
1344 else if (DECL_INITIAL (olddecl
))
1346 warning ("%J'%D' declared inline after its definition",
1352 else /* PARM_DECL, VAR_DECL */
1354 /* Redeclaration of a parameter is a constraint violation (this is
1355 not explicitly stated, but follows from C99 6.7p3 [no more than
1356 one declaration of the same identifier with no linkage in the
1357 same scope, except type tags] and 6.2.2p6 [parameters have no
1358 linkage]). We must check for a forward parameter declaration,
1359 indicated by TREE_ASM_WRITTEN on the old declaration - this is
1360 an extension, the mandatory diagnostic for which is handled by
1361 mark_forward_parm_decls. */
1363 if (TREE_CODE (newdecl
) == PARM_DECL
1364 && (!TREE_ASM_WRITTEN (olddecl
) || TREE_ASM_WRITTEN (newdecl
)))
1366 error ("%Jredefinition of parameter '%D'", newdecl
, newdecl
);
1367 locate_old_decl (olddecl
, error
);
1372 /* Optional warning for completely redundant decls. */
1373 if (!warned
&& !pedwarned
1374 && warn_redundant_decls
1375 /* Don't warn about a function declaration followed by a
1377 && !(TREE_CODE (newdecl
) == FUNCTION_DECL
1378 && DECL_INITIAL (newdecl
) && !DECL_INITIAL (olddecl
))
1379 /* Don't warn about an extern followed by a definition. */
1380 && !(DECL_EXTERNAL (olddecl
) && !DECL_EXTERNAL (newdecl
))
1381 /* Don't warn about forward parameter decls. */
1382 && !(TREE_CODE (newdecl
) == PARM_DECL
1383 && TREE_ASM_WRITTEN (olddecl
) && !TREE_ASM_WRITTEN (newdecl
)))
1385 warning ("%Jredundant redeclaration of '%D'", newdecl
, newdecl
);
1389 /* Report location of previous decl/defn in a consistent manner. */
1390 if (warned
|| pedwarned
)
1391 locate_old_decl (olddecl
, pedwarned
? pedwarn
: warning
);
1396 /* Subroutine of duplicate_decls. NEWDECL has been found to be
1397 consistent with OLDDECL, but carries new information. Merge the
1398 new information into OLDDECL. This function issues no
1402 merge_decls (tree newdecl
, tree olddecl
, tree newtype
, tree oldtype
)
1404 int new_is_definition
= (TREE_CODE (newdecl
) == FUNCTION_DECL
1405 && DECL_INITIAL (newdecl
) != 0);
1407 /* For real parm decl following a forward decl, rechain the old decl
1408 in its new location and clear TREE_ASM_WRITTEN (it's not a
1409 forward decl anymore). */
1410 if (TREE_CODE (newdecl
) == PARM_DECL
1411 && TREE_ASM_WRITTEN (olddecl
) && ! TREE_ASM_WRITTEN (newdecl
))
1413 struct c_binding
*b
, **here
;
1415 for (here
= ¤t_scope
->bindings
; *here
; here
= &(*here
)->prev
)
1416 if ((*here
)->decl
== olddecl
)
1423 b
->prev
= current_scope
->bindings
;
1424 current_scope
->bindings
= b
;
1426 TREE_ASM_WRITTEN (olddecl
) = 0;
1429 DECL_ATTRIBUTES (newdecl
)
1430 = targetm
.merge_decl_attributes (olddecl
, newdecl
);
1432 /* Merge the data types specified in the two decls. */
1434 = TREE_TYPE (olddecl
)
1435 = composite_type (newtype
, oldtype
);
1437 /* Lay the type out, unless already done. */
1438 if (oldtype
!= TREE_TYPE (newdecl
))
1440 if (TREE_TYPE (newdecl
) != error_mark_node
)
1441 layout_type (TREE_TYPE (newdecl
));
1442 if (TREE_CODE (newdecl
) != FUNCTION_DECL
1443 && TREE_CODE (newdecl
) != TYPE_DECL
1444 && TREE_CODE (newdecl
) != CONST_DECL
)
1445 layout_decl (newdecl
, 0);
1449 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1450 DECL_SIZE (newdecl
) = DECL_SIZE (olddecl
);
1451 DECL_SIZE_UNIT (newdecl
) = DECL_SIZE_UNIT (olddecl
);
1452 DECL_MODE (newdecl
) = DECL_MODE (olddecl
);
1453 if (TREE_CODE (olddecl
) != FUNCTION_DECL
)
1454 if (DECL_ALIGN (olddecl
) > DECL_ALIGN (newdecl
))
1456 DECL_ALIGN (newdecl
) = DECL_ALIGN (olddecl
);
1457 DECL_USER_ALIGN (newdecl
) |= DECL_ALIGN (olddecl
);
1461 /* Keep the old rtl since we can safely use it. */
1462 COPY_DECL_RTL (olddecl
, newdecl
);
1464 /* Merge the type qualifiers. */
1465 if (TREE_READONLY (newdecl
))
1466 TREE_READONLY (olddecl
) = 1;
1468 if (TREE_THIS_VOLATILE (newdecl
))
1470 TREE_THIS_VOLATILE (olddecl
) = 1;
1471 if (TREE_CODE (newdecl
) == VAR_DECL
)
1472 make_var_volatile (newdecl
);
1475 /* Keep source location of definition rather than declaration. */
1476 if (DECL_INITIAL (newdecl
) == 0 && DECL_INITIAL (olddecl
) != 0)
1477 DECL_SOURCE_LOCATION (newdecl
) = DECL_SOURCE_LOCATION (olddecl
);
1479 /* Merge the unused-warning information. */
1480 if (DECL_IN_SYSTEM_HEADER (olddecl
))
1481 DECL_IN_SYSTEM_HEADER (newdecl
) = 1;
1482 else if (DECL_IN_SYSTEM_HEADER (newdecl
))
1483 DECL_IN_SYSTEM_HEADER (olddecl
) = 1;
1485 /* Merge the initialization information. */
1486 if (DECL_INITIAL (newdecl
) == 0)
1487 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
1489 /* Merge the section attribute.
1490 We want to issue an error if the sections conflict but that must be
1491 done later in decl_attributes since we are called before attributes
1493 if (DECL_SECTION_NAME (newdecl
) == NULL_TREE
)
1494 DECL_SECTION_NAME (newdecl
) = DECL_SECTION_NAME (olddecl
);
1496 /* Copy the assembler name.
1497 Currently, it can only be defined in the prototype. */
1498 COPY_DECL_ASSEMBLER_NAME (olddecl
, newdecl
);
1500 /* If either declaration has a nondefault visibility, use it. */
1501 if (DECL_VISIBILITY (olddecl
) != VISIBILITY_DEFAULT
)
1502 DECL_VISIBILITY (newdecl
) = DECL_VISIBILITY (olddecl
);
1504 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1506 DECL_STATIC_CONSTRUCTOR(newdecl
) |= DECL_STATIC_CONSTRUCTOR(olddecl
);
1507 DECL_STATIC_DESTRUCTOR (newdecl
) |= DECL_STATIC_DESTRUCTOR (olddecl
);
1508 DECL_NO_LIMIT_STACK (newdecl
) |= DECL_NO_LIMIT_STACK (olddecl
);
1509 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl
)
1510 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl
);
1511 TREE_THIS_VOLATILE (newdecl
) |= TREE_THIS_VOLATILE (olddecl
);
1512 TREE_READONLY (newdecl
) |= TREE_READONLY (olddecl
);
1513 DECL_IS_MALLOC (newdecl
) |= DECL_IS_MALLOC (olddecl
);
1514 DECL_IS_PURE (newdecl
) |= DECL_IS_PURE (olddecl
);
1517 /* Merge the storage class information. */
1518 merge_weak (newdecl
, olddecl
);
1520 /* For functions, static overrides non-static. */
1521 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1523 TREE_PUBLIC (newdecl
) &= TREE_PUBLIC (olddecl
);
1524 /* This is since we don't automatically
1525 copy the attributes of NEWDECL into OLDDECL. */
1526 TREE_PUBLIC (olddecl
) = TREE_PUBLIC (newdecl
);
1527 /* If this clears `static', clear it in the identifier too. */
1528 if (! TREE_PUBLIC (olddecl
))
1529 TREE_PUBLIC (DECL_NAME (olddecl
)) = 0;
1531 if (DECL_EXTERNAL (newdecl
))
1533 TREE_STATIC (newdecl
) = TREE_STATIC (olddecl
);
1534 DECL_EXTERNAL (newdecl
) = DECL_EXTERNAL (olddecl
);
1536 /* An extern decl does not override previous storage class. */
1537 TREE_PUBLIC (newdecl
) = TREE_PUBLIC (olddecl
);
1538 if (! DECL_EXTERNAL (newdecl
))
1540 DECL_CONTEXT (newdecl
) = DECL_CONTEXT (olddecl
);
1541 DECL_COMMON (newdecl
) = DECL_COMMON (olddecl
);
1546 TREE_STATIC (olddecl
) = TREE_STATIC (newdecl
);
1547 TREE_PUBLIC (olddecl
) = TREE_PUBLIC (newdecl
);
1550 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1552 /* If we're redefining a function previously defined as extern
1553 inline, make sure we emit debug info for the inline before we
1554 throw it away, in case it was inlined into a function that hasn't
1555 been written out yet. */
1556 if (new_is_definition
&& DECL_INITIAL (olddecl
))
1558 if (TREE_USED (olddecl
)
1559 /* In unit-at-a-time mode we never inline re-defined extern
1560 inline functions. */
1561 && !flag_unit_at_a_time
1562 && cgraph_function_possibly_inlined_p (olddecl
))
1563 (*debug_hooks
->outlining_inline_function
) (olddecl
);
1565 /* The new defn must not be inline. */
1566 DECL_INLINE (newdecl
) = 0;
1567 DECL_UNINLINABLE (newdecl
) = 1;
1571 /* If either decl says `inline', this fn is inline,
1572 unless its definition was passed already. */
1573 if (DECL_DECLARED_INLINE_P (newdecl
)
1574 || DECL_DECLARED_INLINE_P (olddecl
))
1575 DECL_DECLARED_INLINE_P (newdecl
) = 1;
1577 DECL_UNINLINABLE (newdecl
) = DECL_UNINLINABLE (olddecl
)
1578 = (DECL_UNINLINABLE (newdecl
) || DECL_UNINLINABLE (olddecl
));
1581 if (DECL_BUILT_IN (olddecl
))
1583 /* If redeclaring a builtin function, it stays built in.
1584 But it gets tagged as having been declared. */
1585 DECL_BUILT_IN_CLASS (newdecl
) = DECL_BUILT_IN_CLASS (olddecl
);
1586 DECL_FUNCTION_CODE (newdecl
) = DECL_FUNCTION_CODE (olddecl
);
1587 C_DECL_DECLARED_BUILTIN (newdecl
) = 1;
1590 /* Also preserve various other info from the definition. */
1591 if (! new_is_definition
)
1593 DECL_RESULT (newdecl
) = DECL_RESULT (olddecl
);
1594 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
1595 DECL_STRUCT_FUNCTION (newdecl
) = DECL_STRUCT_FUNCTION (olddecl
);
1596 DECL_SAVED_TREE (newdecl
) = DECL_SAVED_TREE (olddecl
);
1597 DECL_ARGUMENTS (newdecl
) = DECL_ARGUMENTS (olddecl
);
1599 /* Set DECL_INLINE on the declaration if we've got a body
1600 from which to instantiate. */
1601 if (DECL_INLINE (olddecl
) && ! DECL_UNINLINABLE (newdecl
))
1603 DECL_INLINE (newdecl
) = 1;
1604 DECL_ABSTRACT_ORIGIN (newdecl
)
1605 = DECL_ABSTRACT_ORIGIN (olddecl
);
1610 /* If a previous declaration said inline, mark the
1611 definition as inlinable. */
1612 if (DECL_DECLARED_INLINE_P (newdecl
)
1613 && ! DECL_UNINLINABLE (newdecl
))
1614 DECL_INLINE (newdecl
) = 1;
1618 /* This bit must not get wiped out. */
1619 C_DECL_IN_EXTERNAL_SCOPE (newdecl
) |= C_DECL_IN_EXTERNAL_SCOPE (olddecl
);
1621 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
1622 But preserve OLDDECL's DECL_UID. */
1624 unsigned olddecl_uid
= DECL_UID (olddecl
);
1626 memcpy ((char *) olddecl
+ sizeof (struct tree_common
),
1627 (char *) newdecl
+ sizeof (struct tree_common
),
1628 sizeof (struct tree_decl
) - sizeof (struct tree_common
));
1629 DECL_UID (olddecl
) = olddecl_uid
;
1632 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
1633 so that encode_section_info has a chance to look at the new decl
1634 flags and attributes. */
1635 if (DECL_RTL_SET_P (olddecl
)
1636 && (TREE_CODE (olddecl
) == FUNCTION_DECL
1637 || (TREE_CODE (olddecl
) == VAR_DECL
1638 && TREE_STATIC (olddecl
))))
1639 make_decl_rtl (olddecl
, NULL
);
1642 /* Handle when a new declaration NEWDECL has the same name as an old
1643 one OLDDECL in the same binding contour. Prints an error message
1646 If safely possible, alter OLDDECL to look like NEWDECL, and return
1647 true. Otherwise, return false. */
1650 duplicate_decls (tree newdecl
, tree olddecl
)
1652 tree newtype
= NULL
, oldtype
= NULL
;
1654 if (!diagnose_mismatched_decls (newdecl
, olddecl
, &newtype
, &oldtype
))
1657 merge_decls (newdecl
, olddecl
, newtype
, oldtype
);
1662 /* Check whether decl-node NEW shadows an existing declaration. */
1664 warn_if_shadowing (tree
new)
1666 struct c_binding
*b
;
1668 /* Shadow warnings wanted? */
1670 /* No shadow warnings for internally generated vars. */
1671 || DECL_SOURCE_LINE (new) == 0
1672 /* No shadow warnings for vars made for inlining. */
1673 || DECL_FROM_INLINE (new)
1674 /* Don't warn about the parm names in function declarator
1675 within a function declarator. It would be nice to avoid
1676 warning in any function declarator in a declaration, as
1677 opposed to a definition, but there is no way to tell
1678 it's not a definition at this point. */
1679 || (TREE_CODE (new) == PARM_DECL
&& current_scope
->outer
->parm_flag
))
1682 /* Is anything being shadowed? Do not be confused by a second binding
1683 to the same decl in the externals scope. */
1684 for (b
= I_SYMBOL_BINDING (DECL_NAME (new)); b
; b
= b
->shadowed
)
1685 if (b
->decl
&& b
->decl
!= new && b
->contour
!= external_scope
)
1689 if (TREE_CODE (old
) == PARM_DECL
)
1690 warning ("%Jdeclaration of '%D' shadows a parameter", new, new);
1691 else if (DECL_FILE_SCOPE_P (old
))
1692 warning ("%Jdeclaration of '%D' shadows a global declaration",
1694 else if (TREE_CODE (old
) == FUNCTION_DECL
&& DECL_BUILT_IN (old
))
1695 warning ("%Jdeclaration of '%D' shadows a built-in function",
1698 warning ("%Jdeclaration of '%D' shadows a previous local", new, new);
1700 if (TREE_CODE (old
) != FUNCTION_DECL
|| !DECL_BUILT_IN (old
))
1701 warning ("%Jshadowed declaration is here", old
);
1708 /* Subroutine of pushdecl.
1710 X is a TYPE_DECL for a typedef statement. Create a brand new
1711 ..._TYPE node (which will be just a variant of the existing
1712 ..._TYPE node with identical properties) and then install X
1713 as the TYPE_NAME of this brand new (duplicate) ..._TYPE node.
1715 The whole point here is to end up with a situation where each
1716 and every ..._TYPE node the compiler creates will be uniquely
1717 associated with AT MOST one node representing a typedef name.
1718 This way, even though the compiler substitutes corresponding
1719 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
1720 early on, later parts of the compiler can always do the reverse
1721 translation and get back the corresponding typedef name. For
1724 typedef struct S MY_TYPE;
1727 Later parts of the compiler might only know that `object' was of
1728 type `struct S' if it were not for code just below. With this
1729 code however, later parts of the compiler see something like:
1731 struct S' == struct S
1732 typedef struct S' MY_TYPE;
1735 And they can then deduce (from the node for type struct S') that
1736 the original object declaration was:
1740 Being able to do this is important for proper support of protoize,
1741 and also for generating precise symbolic debugging information
1742 which takes full account of the programmer's (typedef) vocabulary.
1744 Obviously, we don't want to generate a duplicate ..._TYPE node if
1745 the TYPE_DECL node that we are now processing really represents a
1746 standard built-in type.
1748 Since all standard types are effectively declared at line zero
1749 in the source file, we can easily check to see if we are working
1750 on a standard type by checking the current value of lineno. */
1753 clone_underlying_type (tree x
)
1755 if (DECL_SOURCE_LINE (x
) == 0)
1757 if (TYPE_NAME (TREE_TYPE (x
)) == 0)
1758 TYPE_NAME (TREE_TYPE (x
)) = x
;
1760 else if (TREE_TYPE (x
) != error_mark_node
1761 && DECL_ORIGINAL_TYPE (x
) == NULL_TREE
)
1763 tree tt
= TREE_TYPE (x
);
1764 DECL_ORIGINAL_TYPE (x
) = tt
;
1765 tt
= build_type_copy (tt
);
1767 TREE_USED (tt
) = TREE_USED (x
);
1772 /* Record a decl-node X as belonging to the current lexical scope.
1773 Check for errors (such as an incompatible declaration for the same
1774 name already seen in the same scope).
1776 Returns either X or an old decl for the same name.
1777 If an old decl is returned, it may have been smashed
1778 to agree with what X says. */
1783 tree name
= DECL_NAME (x
);
1784 struct c_scope
*scope
= current_scope
;
1785 struct c_binding
*b
;
1787 /* Functions need the lang_decl data. */
1788 if (TREE_CODE (x
) == FUNCTION_DECL
&& ! DECL_LANG_SPECIFIC (x
))
1789 DECL_LANG_SPECIFIC (x
) = ggc_alloc_cleared (sizeof (struct lang_decl
));
1791 /* Must set DECL_CONTEXT for everything not at file scope or
1792 DECL_FILE_SCOPE_P won't work. Local externs don't count
1793 unless they have initializers (which generate code). */
1794 if (current_function_decl
1795 && ((TREE_CODE (x
) != FUNCTION_DECL
&& TREE_CODE (x
) != VAR_DECL
)
1796 || DECL_INITIAL (x
) || !DECL_EXTERNAL (x
)))
1797 DECL_CONTEXT (x
) = current_function_decl
;
1799 /* Anonymous decls are just inserted in the scope. */
1802 bind (name
, x
, scope
);
1806 /* First, see if there is another declaration with the same name in
1807 the current scope. If there is, duplicate_decls may do all the
1808 work for us. If duplicate_decls returns false, that indicates
1809 two incompatible decls in the same scope; we are to silently
1810 replace the old one (duplicate_decls has issued all appropriate
1811 diagnostics). In particular, we should not consider possible
1812 duplicates in the external scope, or shadowing. */
1813 b
= I_SYMBOL_BINDING (name
);
1814 if (b
&& b
->contour
== scope
)
1816 if (duplicate_decls (x
, b
->decl
))
1819 goto skip_external_and_shadow_checks
;
1822 /* All declarations with external linkage, and all external
1823 references, go in the external scope, no matter what scope is
1824 current. However, the binding in that scope is ignored for
1825 purposes of normal name lookup. A separate binding structure is
1826 created in the requested scope; this governs the normal
1827 visibility of the symbol.
1829 The binding in the externals scope is used exclusively for
1830 detecting duplicate declarations of the same object, no matter
1831 what scope they are in; this is what we do here. (C99 6.2.7p2:
1832 All declarations that refer to the same object or function shall
1833 have compatible type; otherwise, the behavior is undefined.) */
1834 if (DECL_EXTERNAL (x
) || scope
== file_scope
)
1836 if (warn_nested_externs
1837 && scope
!= file_scope
1838 && !DECL_IN_SYSTEM_HEADER (x
))
1839 warning ("nested extern declaration of `%s'",
1840 IDENTIFIER_POINTER (name
));
1842 while (b
&& b
->contour
!= external_scope
)
1845 /* The point of the same_translation_unit_p check here is,
1846 we want to detect a duplicate decl for a construct like
1847 foo() { extern bar(); } ... static bar(); but not if
1848 they are in different translation units. In any case,
1849 the static does not go in the externals scope. */
1851 && (DECL_EXTERNAL (x
) || TREE_PUBLIC (x
)
1852 || same_translation_unit_p (x
, b
->decl
))
1853 && duplicate_decls (x
, b
->decl
))
1855 bind (name
, b
->decl
, scope
);
1858 else if (DECL_EXTERNAL (x
) || TREE_PUBLIC (x
))
1860 C_DECL_IN_EXTERNAL_SCOPE (x
) = 1;
1861 bind (name
, x
, external_scope
);
1865 warn_if_shadowing (x
);
1867 skip_external_and_shadow_checks
:
1868 if (TREE_CODE (x
) == TYPE_DECL
)
1869 clone_underlying_type (x
);
1871 bind (name
, x
, scope
);
1873 /* If x's type is incomplete because it's based on a
1874 structure or union which has not yet been fully declared,
1875 attach it to that structure or union type, so we can go
1876 back and complete the variable declaration later, if the
1877 structure or union gets fully declared.
1879 If the input is erroneous, we can have error_mark in the type
1880 slot (e.g. "f(void a, ...)") - that doesn't count as an
1882 if (TREE_TYPE (x
) != error_mark_node
1883 && !COMPLETE_TYPE_P (TREE_TYPE (x
)))
1885 tree element
= TREE_TYPE (x
);
1887 while (TREE_CODE (element
) == ARRAY_TYPE
)
1888 element
= TREE_TYPE (element
);
1889 element
= TYPE_MAIN_VARIANT (element
);
1891 if ((TREE_CODE (element
) == RECORD_TYPE
1892 || TREE_CODE (element
) == UNION_TYPE
)
1893 && (TREE_CODE (x
) != TYPE_DECL
1894 || TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
)
1895 && !COMPLETE_TYPE_P (element
))
1896 C_TYPE_INCOMPLETE_VARS (element
)
1897 = tree_cons (NULL_TREE
, x
, C_TYPE_INCOMPLETE_VARS (element
));
1902 /* Record X as belonging to file scope.
1903 This is used only internally by the Objective-C front end,
1904 and is limited to its needs. duplicate_decls is not called;
1905 if there is any preexisting decl for this identifier, it is an ICE. */
1908 pushdecl_top_level (tree x
)
1912 if (TREE_CODE (x
) != VAR_DECL
)
1915 name
= DECL_NAME (x
);
1917 if (I_SYMBOL_BINDING (name
))
1920 if (DECL_EXTERNAL (x
) || TREE_PUBLIC (x
))
1922 C_DECL_IN_EXTERNAL_SCOPE (x
) = 1;
1923 bind (name
, x
, external_scope
);
1926 bind (name
, x
, file_scope
);
1932 implicit_decl_warning (tree id
, tree olddecl
)
1934 void (*diag
) (const char *, ...);
1935 switch (mesg_implicit_function_declaration
)
1938 case 1: diag
= warning
; break;
1939 case 2: diag
= error
; break;
1943 diag (N_("implicit declaration of function '%E'"), id
);
1945 locate_old_decl (olddecl
, diag
);
1948 /* Generate an implicit declaration for identifier FUNCTIONID as a
1949 function of type int (). */
1952 implicitly_declare (tree functionid
)
1954 tree decl
= lookup_name_in_scope (functionid
, external_scope
);
1958 /* FIXME: Objective-C has weird not-really-builtin functions
1959 which are supposed to be visible automatically. They wind up
1960 in the external scope because they're pushed before the file
1961 scope gets created. Catch this here and rebind them into the
1963 if (!DECL_BUILT_IN (decl
) && DECL_SOURCE_LINE (decl
) == 0)
1965 bind (functionid
, decl
, file_scope
);
1970 /* Implicit declaration of a function already declared
1971 (somehow) in a different scope, or as a built-in.
1972 If this is the first time this has happened, warn;
1973 then recycle the old declaration. */
1974 if (!C_DECL_IMPLICIT (decl
))
1976 implicit_decl_warning (functionid
, decl
);
1977 C_DECL_IMPLICIT (decl
) = 1;
1979 bind (functionid
, decl
, current_scope
);
1984 /* Not seen before. */
1985 decl
= build_decl (FUNCTION_DECL
, functionid
, default_function_type
);
1986 DECL_EXTERNAL (decl
) = 1;
1987 TREE_PUBLIC (decl
) = 1;
1988 C_DECL_IMPLICIT (decl
) = 1;
1989 implicit_decl_warning (functionid
, 0);
1991 /* C89 says implicit declarations are in the innermost block.
1992 So we record the decl in the standard fashion. */
1993 decl
= pushdecl (decl
);
1995 /* No need to call objc_check_decl here - it's a function type. */
1996 rest_of_decl_compilation (decl
, NULL
, 0, 0);
1998 /* Write a record describing this implicit function declaration
1999 to the prototypes file (if requested). */
2000 gen_aux_info_record (decl
, 0, 1, 0);
2002 /* Possibly apply some default attributes to this implicit declaration. */
2003 decl_attributes (&decl
, NULL_TREE
, 0);
2008 /* Issue an error message for a reference to an undeclared variable
2009 ID, including a reference to a builtin outside of function-call
2010 context. Establish a binding of the identifier to error_mark_node
2011 in an appropriate scope, which will suppress further errors for the
2014 undeclared_variable (tree id
)
2016 static bool already
= false;
2017 struct c_scope
*scope
;
2019 if (current_function_decl
== 0)
2021 error ("'%E' undeclared here (not in a function)", id
);
2022 scope
= current_scope
;
2026 error ("'%E' undeclared (first use in this function)", id
);
2030 error ("(Each undeclared identifier is reported only once");
2031 error ("for each function it appears in.)");
2035 /* If we are parsing old-style parameter decls, current_function_decl
2036 will be nonnull but current_function_scope will be null. */
2037 scope
= current_function_scope
? current_function_scope
: current_scope
;
2039 bind (id
, error_mark_node
, scope
);
2042 /* Subroutine of lookup_label, declare_label, define_label: construct a
2043 LABEL_DECL with all the proper frills. */
2046 make_label (tree name
, location_t location
)
2048 tree label
= build_decl (LABEL_DECL
, name
, void_type_node
);
2050 DECL_CONTEXT (label
) = current_function_decl
;
2051 DECL_MODE (label
) = VOIDmode
;
2052 DECL_SOURCE_LOCATION (label
) = location
;
2057 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
2058 Create one if none exists so far for the current function.
2059 This is called when a label is used in a goto expression or
2060 has its address taken. */
2063 lookup_label (tree name
)
2067 if (current_function_decl
== 0)
2069 error ("label %s referenced outside of any function",
2070 IDENTIFIER_POINTER (name
));
2074 /* Use a label already defined or ref'd with this name, but not if
2075 it is inherited from a containing function and wasn't declared
2077 label
= I_LABEL_DECL (name
);
2078 if (label
&& (DECL_CONTEXT (label
) == current_function_decl
2079 || C_DECLARED_LABEL_FLAG (label
)))
2081 /* If the label has only been declared, update its apparent
2082 location to point here, for better diagnostics if it
2083 turns out not to have been defined. */
2084 if (!TREE_USED (label
))
2085 DECL_SOURCE_LOCATION (label
) = input_location
;
2089 /* No label binding for that identifier; make one. */
2090 label
= make_label (name
, input_location
);
2092 /* Ordinary labels go in the current function scope. */
2093 bind (name
, label
, current_function_scope
);
2097 /* Make a label named NAME in the current function, shadowing silently
2098 any that may be inherited from containing functions or containing
2099 scopes. This is called for __label__ declarations. */
2102 declare_label (tree name
)
2104 struct c_binding
*b
= I_LABEL_BINDING (name
);
2107 /* Check to make sure that the label hasn't already been declared
2109 if (b
&& b
->contour
== current_scope
)
2111 error ("duplicate label declaration `%s'", IDENTIFIER_POINTER (name
));
2112 locate_old_decl (b
->decl
, error
);
2114 /* Just use the previous declaration. */
2118 label
= make_label (name
, input_location
);
2119 C_DECLARED_LABEL_FLAG (label
) = 1;
2121 /* Declared labels go in the current scope. */
2122 bind (name
, label
, current_scope
);
2126 /* Define a label, specifying the location in the source file.
2127 Return the LABEL_DECL node for the label, if the definition is valid.
2128 Otherwise return 0. */
2131 define_label (location_t location
, tree name
)
2133 /* Find any preexisting label with this name. It is an error
2134 if that label has already been defined in this function, or
2135 if there is a containing function with a declared label with
2137 tree label
= I_LABEL_DECL (name
);
2140 && ((DECL_CONTEXT (label
) == current_function_decl
2141 && DECL_INITIAL (label
) != 0)
2142 || (DECL_CONTEXT (label
) != current_function_decl
2143 && C_DECLARED_LABEL_FLAG (label
))))
2145 error ("%Hduplicate label `%D'", &location
, label
);
2146 locate_old_decl (label
, error
);
2149 else if (label
&& DECL_CONTEXT (label
) == current_function_decl
)
2151 /* The label has been used or declared already in this function,
2152 but not defined. Update its location to point to this
2154 DECL_SOURCE_LOCATION (label
) = location
;
2158 /* No label binding for that identifier; make one. */
2159 label
= make_label (name
, location
);
2161 /* Ordinary labels go in the current function scope. */
2162 bind (name
, label
, current_function_scope
);
2165 if (warn_traditional
&& !in_system_header
&& lookup_name (name
))
2166 warning ("%Htraditional C lacks a separate namespace for labels, "
2167 "identifier `%s' conflicts", &location
,
2168 IDENTIFIER_POINTER (name
));
2170 /* Mark label as having been defined. */
2171 DECL_INITIAL (label
) = error_mark_node
;
2175 /* Given NAME, an IDENTIFIER_NODE,
2176 return the structure (or union or enum) definition for that name.
2177 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
2178 CODE says which kind of type the caller wants;
2179 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2180 If the wrong kind of type is found, an error is reported. */
2183 lookup_tag (enum tree_code code
, tree name
, int thislevel_only
)
2185 struct c_binding
*b
= I_TAG_BINDING (name
);
2191 /* We only care about whether it's in this level if
2192 thislevel_only was set or it might be a type clash. */
2193 if (thislevel_only
|| TREE_CODE (b
->decl
) != code
)
2195 /* For our purposes, a tag in the external scope is the same as
2196 a tag in the file scope. (Primarily relevant to Objective-C
2197 and its builtin structure tags, which get pushed before the
2198 file scope is created.) */
2199 if (b
->contour
== current_scope
2200 || (current_scope
== file_scope
&& b
->contour
== external_scope
))
2204 if (thislevel_only
&& !thislevel
)
2207 if (TREE_CODE (b
->decl
) != code
)
2209 /* Definition isn't the kind we were looking for. */
2210 pending_invalid_xref
= name
;
2211 pending_invalid_xref_location
= input_location
;
2213 /* If in the same binding level as a declaration as a tag
2214 of a different type, this must not be allowed to
2215 shadow that tag, so give the error immediately.
2216 (For example, "struct foo; union foo;" is invalid.) */
2218 pending_xref_error ();
2223 /* Print an error message now
2224 for a recent invalid struct, union or enum cross reference.
2225 We don't print them immediately because they are not invalid
2226 when used in the `struct foo;' construct for shadowing. */
2229 pending_xref_error (void)
2231 if (pending_invalid_xref
!= 0)
2232 error ("%H`%s' defined as wrong kind of tag",
2233 &pending_invalid_xref_location
,
2234 IDENTIFIER_POINTER (pending_invalid_xref
));
2235 pending_invalid_xref
= 0;
2239 /* Look up NAME in the current scope and its superiors
2240 in the namespace of variables, functions and typedefs.
2241 Return a ..._DECL node of some kind representing its definition,
2242 or return 0 if it is undefined. */
2245 lookup_name (tree name
)
2247 struct c_binding
*b
= I_SYMBOL_BINDING (name
);
2248 if (b
&& (b
->contour
!= external_scope
|| TREE_CODE (b
->decl
) == TYPE_DECL
))
2253 /* Similar to `lookup_name' but look only at the indicated scope. */
2256 lookup_name_in_scope (tree name
, struct c_scope
*scope
)
2258 struct c_binding
*b
;
2260 for (b
= I_SYMBOL_BINDING (name
); b
; b
= b
->shadowed
)
2261 if (b
->contour
== scope
)
2266 /* Create the predefined scalar types of C,
2267 and some nodes representing standard constants (0, 1, (void *) 0).
2268 Initialize the global scope.
2269 Make definitions for built-in primitive functions. */
2272 c_init_decl_processing (void)
2275 tree ptr_ftype_void
, ptr_ftype_ptr
;
2276 location_t save_loc
= input_location
;
2278 /* Adds some ggc roots, and reserved words for c-parse.in. */
2281 current_function_decl
= 0;
2283 /* Make the externals scope. */
2285 external_scope
= current_scope
;
2287 /* Declarations from c_common_nodes_and_builtins must not be associated
2288 with this input file, lest we get differences between using and not
2289 using preprocessed headers. */
2290 input_location
.file
= "<internal>";
2291 input_location
.line
= 0;
2293 build_common_tree_nodes (flag_signed_char
);
2295 c_common_nodes_and_builtins ();
2297 /* In C, comparisons and TRUTH_* expressions have type int. */
2298 truthvalue_type_node
= integer_type_node
;
2299 truthvalue_true_node
= integer_one_node
;
2300 truthvalue_false_node
= integer_zero_node
;
2302 /* Even in C99, which has a real boolean type. */
2303 pushdecl (build_decl (TYPE_DECL
, get_identifier ("_Bool"),
2304 boolean_type_node
));
2306 endlink
= void_list_node
;
2307 ptr_ftype_void
= build_function_type (ptr_type_node
, endlink
);
2309 = build_function_type (ptr_type_node
,
2310 tree_cons (NULL_TREE
, ptr_type_node
, endlink
));
2312 input_location
= save_loc
;
2314 pedantic_lvalues
= true;
2316 make_fname_decl
= c_make_fname_decl
;
2317 start_fname_decls ();
2320 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
2321 decl, NAME is the initialization string and TYPE_DEP indicates whether
2322 NAME depended on the type of the function. As we don't yet implement
2323 delayed emission of static data, we mark the decl as emitted
2324 so it is not placed in the output. Anything using it must therefore pull
2325 out the STRING_CST initializer directly. FIXME. */
2328 c_make_fname_decl (tree id
, int type_dep
)
2330 const char *name
= fname_as_string (type_dep
);
2331 tree decl
, type
, init
;
2332 size_t length
= strlen (name
);
2334 type
= build_array_type
2335 (build_qualified_type (char_type_node
, TYPE_QUAL_CONST
),
2336 build_index_type (size_int (length
)));
2338 decl
= build_decl (VAR_DECL
, id
, type
);
2340 TREE_STATIC (decl
) = 1;
2341 TREE_READONLY (decl
) = 1;
2342 DECL_ARTIFICIAL (decl
) = 1;
2344 init
= build_string (length
+ 1, name
);
2345 free ((char *) name
);
2346 TREE_TYPE (init
) = type
;
2347 DECL_INITIAL (decl
) = init
;
2349 TREE_USED (decl
) = 1;
2351 if (current_function_decl
)
2353 DECL_CONTEXT (decl
) = current_function_decl
;
2354 bind (id
, decl
, current_function_scope
);
2357 finish_decl (decl
, init
, NULL_TREE
);
2362 /* Return a definition for a builtin function named NAME and whose data type
2363 is TYPE. TYPE should be a function type with argument types.
2364 FUNCTION_CODE tells later passes how to compile calls to this function.
2365 See tree.h for its possible values.
2367 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
2368 the name to be called if we can't opencode the function. If
2369 ATTRS is nonzero, use that for the function's attribute list. */
2372 builtin_function (const char *name
, tree type
, int function_code
,
2373 enum built_in_class
class, const char *library_name
,
2376 tree id
= get_identifier (name
);
2377 tree decl
= build_decl (FUNCTION_DECL
, id
, type
);
2378 TREE_PUBLIC (decl
) = 1;
2379 DECL_EXTERNAL (decl
) = 1;
2380 DECL_LANG_SPECIFIC (decl
) = ggc_alloc_cleared (sizeof (struct lang_decl
));
2381 DECL_BUILT_IN_CLASS (decl
) = class;
2382 DECL_FUNCTION_CODE (decl
) = function_code
;
2384 SET_DECL_ASSEMBLER_NAME (decl
, get_identifier (library_name
));
2386 /* Should never be called on a symbol with a preexisting meaning. */
2387 if (I_SYMBOL_BINDING (id
))
2390 C_DECL_IN_EXTERNAL_SCOPE (decl
) = 1;
2391 bind (id
, decl
, external_scope
);
2393 /* Builtins in the implementation namespace are made visible without
2394 needing to be explicitly declared. See push_file_scope. */
2395 if (name
[0] == '_' && (name
[1] == '_' || ISUPPER (name
[1])))
2397 TREE_CHAIN (decl
) = visible_builtins
;
2398 visible_builtins
= decl
;
2401 /* Possibly apply some default attributes to this built-in function. */
2403 decl_attributes (&decl
, attrs
, ATTR_FLAG_BUILT_IN
);
2405 decl_attributes (&decl
, NULL_TREE
, 0);
2410 /* Called when a declaration is seen that contains no names to declare.
2411 If its type is a reference to a structure, union or enum inherited
2412 from a containing scope, shadow that tag name for the current scope
2413 with a forward reference.
2414 If its type defines a new named structure or union
2415 or defines an enum, it is valid but we need not do anything here.
2416 Otherwise, it is an error. */
2419 shadow_tag (tree declspecs
)
2421 shadow_tag_warned (declspecs
, 0);
2425 shadow_tag_warned (tree declspecs
, int warned
)
2428 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
2435 pending_invalid_xref
= 0;
2437 /* Remove the attributes from declspecs, since they will confuse the
2439 split_specs_attrs (declspecs
, &specs
, &attrs
);
2441 for (link
= specs
; link
; link
= TREE_CHAIN (link
))
2443 tree value
= TREE_VALUE (link
);
2444 enum tree_code code
= TREE_CODE (value
);
2446 if (code
== RECORD_TYPE
|| code
== UNION_TYPE
|| code
== ENUMERAL_TYPE
)
2447 /* Used to test also that TYPE_SIZE (value) != 0.
2448 That caused warning for `struct foo;' at top level in the file. */
2450 tree name
= TYPE_NAME (value
);
2457 if (warned
!= 1 && code
!= ENUMERAL_TYPE
)
2458 /* Empty unnamed enum OK */
2460 pedwarn ("unnamed struct/union that defines no instances");
2466 t
= lookup_tag (code
, name
, 1);
2470 t
= make_node (code
);
2477 if (!warned
&& ! in_system_header
)
2479 warning ("useless keyword or type name in empty declaration");
2486 error ("two types specified in one empty declaration");
2491 pedwarn ("empty declaration");
2495 /* Construct an array declarator. EXPR is the expression inside [], or
2496 NULL_TREE. QUALS are the type qualifiers inside the [] (to be applied
2497 to the pointer to which a parameter array is converted). STATIC_P is
2498 nonzero if "static" is inside the [], zero otherwise. VLA_UNSPEC_P
2499 is nonzero is the array is [*], a VLA of unspecified length which is
2500 nevertheless a complete type (not currently implemented by GCC),
2501 zero otherwise. The declarator is constructed as an ARRAY_REF
2502 (to be decoded by grokdeclarator), whose operand 0 is what's on the
2503 left of the [] (filled by in set_array_declarator_type) and operand 1
2504 is the expression inside; whose TREE_TYPE is the type qualifiers and
2505 which has TREE_STATIC set if "static" is used. */
2508 build_array_declarator (tree expr
, tree quals
, int static_p
, int vla_unspec_p
)
2511 decl
= build_nt (ARRAY_REF
, NULL_TREE
, expr
, NULL_TREE
, NULL_TREE
);
2512 TREE_TYPE (decl
) = quals
;
2513 TREE_STATIC (decl
) = (static_p
? 1 : 0);
2514 if (pedantic
&& !flag_isoc99
)
2516 if (static_p
|| quals
!= NULL_TREE
)
2517 pedwarn ("ISO C90 does not support `static' or type qualifiers in parameter array declarators");
2519 pedwarn ("ISO C90 does not support `[*]' array declarators");
2522 warning ("GCC does not yet properly implement `[*]' array declarators");
2526 /* Set the type of an array declarator. DECL is the declarator, as
2527 constructed by build_array_declarator; TYPE is what appears on the left
2528 of the [] and goes in operand 0. ABSTRACT_P is nonzero if it is an
2529 abstract declarator, zero otherwise; this is used to reject static and
2530 type qualifiers in abstract declarators, where they are not in the
2534 set_array_declarator_type (tree decl
, tree type
, int abstract_p
)
2536 TREE_OPERAND (decl
, 0) = type
;
2537 if (abstract_p
&& (TREE_TYPE (decl
) != NULL_TREE
|| TREE_STATIC (decl
)))
2538 error ("static or type qualifiers in abstract declarator");
2542 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
2545 groktypename (tree typename
)
2549 if (TREE_CODE (typename
) != TREE_LIST
)
2552 split_specs_attrs (TREE_PURPOSE (typename
), &specs
, &attrs
);
2554 typename
= grokdeclarator (TREE_VALUE (typename
), specs
, TYPENAME
, 0,
2557 /* Apply attributes. */
2558 decl_attributes (&typename
, attrs
, 0);
2563 /* Return a PARM_DECL node for a given pair of specs and declarator. */
2566 groktypename_in_parm_context (tree typename
)
2568 if (TREE_CODE (typename
) != TREE_LIST
)
2570 return grokdeclarator (TREE_VALUE (typename
),
2571 TREE_PURPOSE (typename
),
2575 /* Decode a declarator in an ordinary declaration or data definition.
2576 This is called as soon as the type information and variable name
2577 have been parsed, before parsing the initializer if any.
2578 Here we create the ..._DECL node, fill in its type,
2579 and put it on the list of decls for the current context.
2580 The ..._DECL node is returned as the value.
2582 Exception: for arrays where the length is not specified,
2583 the type is left null, to be filled in by `finish_decl'.
2585 Function definitions do not come here; they go to start_function
2586 instead. However, external and forward declarations of functions
2587 do go through here. Structure field declarations are done by
2588 grokfield and not through here. */
2591 start_decl (tree declarator
, tree declspecs
, int initialized
, tree attributes
)
2596 /* An object declared as __attribute__((deprecated)) suppresses
2597 warnings of uses of other deprecated items. */
2598 if (lookup_attribute ("deprecated", attributes
))
2599 deprecated_state
= DEPRECATED_SUPPRESS
;
2601 decl
= grokdeclarator (declarator
, declspecs
,
2602 NORMAL
, initialized
, NULL
);
2604 deprecated_state
= DEPRECATED_NORMAL
;
2606 if (warn_main
> 0 && TREE_CODE (decl
) != FUNCTION_DECL
2607 && MAIN_NAME_P (DECL_NAME (decl
)))
2608 warning ("%J'%D' is usually a function", decl
, decl
);
2611 /* Is it valid for this decl to have an initializer at all?
2612 If not, set INITIALIZED to zero, which will indirectly
2613 tell 'finish_decl' to ignore the initializer once it is parsed. */
2614 switch (TREE_CODE (decl
))
2617 error ("typedef '%D' is initialized (use __typeof__ instead)", decl
);
2622 error ("function '%D' is initialized like a variable", decl
);
2627 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
2628 error ("parameter '%D' is initialized", decl
);
2633 /* Don't allow initializations for incomplete types except for
2634 arrays which might be completed by the initialization. */
2636 /* This can happen if the array size is an undefined macro.
2637 We already gave a warning, so we don't need another one. */
2638 if (TREE_TYPE (decl
) == error_mark_node
)
2640 else if (COMPLETE_TYPE_P (TREE_TYPE (decl
)))
2642 /* A complete type is ok if size is fixed. */
2644 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl
))) != INTEGER_CST
2645 || C_DECL_VARIABLE_SIZE (decl
))
2647 error ("variable-sized object may not be initialized");
2651 else if (TREE_CODE (TREE_TYPE (decl
)) != ARRAY_TYPE
)
2653 error ("variable '%D' has initializer but incomplete type", decl
);
2656 else if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (decl
))))
2658 error ("elements of array '%D' have incomplete type", decl
);
2665 DECL_EXTERNAL (decl
) = 0;
2666 if (current_scope
== file_scope
)
2667 TREE_STATIC (decl
) = 1;
2669 /* Tell 'pushdecl' this is an initialized decl
2670 even though we don't yet have the initializer expression.
2671 Also tell 'finish_decl' it may store the real initializer. */
2672 DECL_INITIAL (decl
) = error_mark_node
;
2675 /* If this is a function declaration, write a record describing it to the
2676 prototypes file (if requested). */
2678 if (TREE_CODE (decl
) == FUNCTION_DECL
)
2679 gen_aux_info_record (decl
, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl
)) != 0);
2681 /* ANSI specifies that a tentative definition which is not merged with
2682 a non-tentative definition behaves exactly like a definition with an
2683 initializer equal to zero. (Section 3.7.2)
2685 -fno-common gives strict ANSI behavior, though this tends to break
2686 a large body of code that grew up without this rule.
2688 Thread-local variables are never common, since there's no entrenched
2689 body of code to break, and it allows more efficient variable references
2690 in the presence of dynamic linking. */
2692 if (TREE_CODE (decl
) == VAR_DECL
2694 && TREE_PUBLIC (decl
)
2695 && !DECL_THREAD_LOCAL (decl
)
2697 DECL_COMMON (decl
) = 1;
2699 /* Set attributes here so if duplicate decl, will have proper attributes. */
2700 decl_attributes (&decl
, attributes
, 0);
2702 if (TREE_CODE (decl
) == FUNCTION_DECL
2703 && targetm
.calls
.promote_prototypes (TREE_TYPE (decl
)))
2705 tree ce
= declarator
;
2707 if (TREE_CODE (ce
) == INDIRECT_REF
)
2708 ce
= TREE_OPERAND (declarator
, 0);
2709 if (TREE_CODE (ce
) == CALL_EXPR
)
2711 tree args
= TREE_PURPOSE (TREE_OPERAND (ce
, 1));
2712 for (; args
; args
= TREE_CHAIN (args
))
2714 tree type
= TREE_TYPE (args
);
2715 if (INTEGRAL_TYPE_P (type
)
2716 && TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
))
2717 DECL_ARG_TYPE (args
) = integer_type_node
;
2722 if (TREE_CODE (decl
) == FUNCTION_DECL
2723 && DECL_DECLARED_INLINE_P (decl
)
2724 && DECL_UNINLINABLE (decl
)
2725 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl
)))
2726 warning ("%Jinline function '%D' given attribute noinline", decl
, decl
);
2728 /* Add this decl to the current scope.
2729 TEM may equal DECL or it may be a previous decl of the same name. */
2730 tem
= pushdecl (decl
);
2735 /* Finish processing of a declaration;
2736 install its initial value.
2737 If the length of an array type is not known before,
2738 it must be determined now, from the initial value, or it is an error. */
2741 finish_decl (tree decl
, tree init
, tree asmspec_tree
)
2743 tree type
= TREE_TYPE (decl
);
2744 int was_incomplete
= (DECL_SIZE (decl
) == 0);
2745 const char *asmspec
= 0;
2747 /* If a name was specified, get the string. */
2748 if (current_scope
== file_scope
)
2749 asmspec_tree
= maybe_apply_renaming_pragma (decl
, asmspec_tree
);
2751 asmspec
= TREE_STRING_POINTER (asmspec_tree
);
2753 /* If `start_decl' didn't like having an initialization, ignore it now. */
2754 if (init
!= 0 && DECL_INITIAL (decl
) == 0)
2757 /* Don't crash if parm is initialized. */
2758 if (TREE_CODE (decl
) == PARM_DECL
)
2762 store_init_value (decl
, init
);
2764 if (c_dialect_objc () && (TREE_CODE (decl
) == VAR_DECL
2765 || TREE_CODE (decl
) == FUNCTION_DECL
2766 || TREE_CODE (decl
) == FIELD_DECL
))
2767 objc_check_decl (decl
);
2769 /* Deduce size of array from initialization, if not already known. */
2770 if (TREE_CODE (type
) == ARRAY_TYPE
2771 && TYPE_DOMAIN (type
) == 0
2772 && TREE_CODE (decl
) != TYPE_DECL
)
2775 = (TREE_STATIC (decl
)
2776 /* Even if pedantic, an external linkage array
2777 may have incomplete type at first. */
2778 ? pedantic
&& !TREE_PUBLIC (decl
)
2779 : !DECL_EXTERNAL (decl
));
2781 = complete_array_type (type
, DECL_INITIAL (decl
), do_default
);
2783 /* Get the completed type made by complete_array_type. */
2784 type
= TREE_TYPE (decl
);
2787 error ("%Jinitializer fails to determine size of '%D'", decl
, decl
);
2789 else if (failure
== 2)
2792 error ("%Jarray size missing in '%D'", decl
, decl
);
2793 /* If a `static' var's size isn't known,
2794 make it extern as well as static, so it does not get
2796 If it is not `static', then do not mark extern;
2797 finish_incomplete_decl will give it a default size
2798 and it will get allocated. */
2799 else if (!pedantic
&& TREE_STATIC (decl
) && ! TREE_PUBLIC (decl
))
2800 DECL_EXTERNAL (decl
) = 1;
2803 /* TYPE_MAX_VALUE is always one less than the number of elements
2804 in the array, because we start counting at zero. Therefore,
2805 warn only if the value is less than zero. */
2806 else if (pedantic
&& TYPE_DOMAIN (type
) != 0
2807 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type
))) < 0)
2808 error ("%Jzero or negative size array '%D'", decl
, decl
);
2810 layout_decl (decl
, 0);
2813 if (TREE_CODE (decl
) == VAR_DECL
)
2815 if (DECL_SIZE (decl
) == 0 && TREE_TYPE (decl
) != error_mark_node
2816 && COMPLETE_TYPE_P (TREE_TYPE (decl
)))
2817 layout_decl (decl
, 0);
2819 if (DECL_SIZE (decl
) == 0
2820 /* Don't give an error if we already gave one earlier. */
2821 && TREE_TYPE (decl
) != error_mark_node
2822 && (TREE_STATIC (decl
)
2824 /* A static variable with an incomplete type
2825 is an error if it is initialized.
2826 Also if it is not file scope.
2827 Otherwise, let it through, but if it is not `extern'
2828 then it may cause an error message later. */
2829 (DECL_INITIAL (decl
) != 0
2830 || !DECL_FILE_SCOPE_P (decl
))
2832 /* An automatic variable with an incomplete type
2834 !DECL_EXTERNAL (decl
)))
2836 error ("%Jstorage size of '%D' isn't known", decl
, decl
);
2837 TREE_TYPE (decl
) = error_mark_node
;
2840 if ((DECL_EXTERNAL (decl
) || TREE_STATIC (decl
))
2841 && DECL_SIZE (decl
) != 0)
2843 if (TREE_CODE (DECL_SIZE (decl
)) == INTEGER_CST
)
2844 constant_expression_warning (DECL_SIZE (decl
));
2846 error ("%Jstorage size of '%D' isn't constant", decl
, decl
);
2849 if (TREE_USED (type
))
2850 TREE_USED (decl
) = 1;
2853 /* If this is a function and an assembler name is specified, reset DECL_RTL
2854 so we can give it its new name. Also, update built_in_decls if it
2855 was a normal built-in. */
2856 if (TREE_CODE (decl
) == FUNCTION_DECL
&& asmspec
)
2858 /* ASMSPEC is given, and not the name of a register. Mark the
2859 name with a star so assemble_name won't munge it. */
2860 char *starred
= alloca (strlen (asmspec
) + 2);
2862 strcpy (starred
+ 1, asmspec
);
2864 if (DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
)
2866 tree builtin
= built_in_decls
[DECL_FUNCTION_CODE (decl
)];
2867 SET_DECL_RTL (builtin
, NULL_RTX
);
2868 change_decl_assembler_name (builtin
, get_identifier (starred
));
2869 #ifdef TARGET_MEM_FUNCTIONS
2870 if (DECL_FUNCTION_CODE (decl
) == BUILT_IN_MEMCPY
)
2871 init_block_move_fn (starred
);
2872 else if (DECL_FUNCTION_CODE (decl
) == BUILT_IN_MEMSET
)
2873 init_block_clear_fn (starred
);
2875 if (DECL_FUNCTION_CODE (decl
) == BUILT_IN_BCOPY
)
2876 init_block_move_fn (starred
);
2877 else if (DECL_FUNCTION_CODE (decl
) == BUILT_IN_BZERO
)
2878 init_block_clear_fn (starred
);
2881 SET_DECL_RTL (decl
, NULL_RTX
);
2882 change_decl_assembler_name (decl
, get_identifier (starred
));
2885 /* If #pragma weak was used, mark the decl weak now. */
2886 if (current_scope
== file_scope
)
2887 maybe_apply_pragma_weak (decl
);
2889 /* Output the assembler code and/or RTL code for variables and functions,
2890 unless the type is an undefined structure or union.
2891 If not, it will get done when the type is completed. */
2893 if (TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == FUNCTION_DECL
)
2895 /* This is a no-op in c-lang.c or something real in objc-act.c. */
2896 if (c_dialect_objc ())
2897 objc_check_decl (decl
);
2899 if (DECL_FILE_SCOPE_P (decl
))
2901 if (DECL_INITIAL (decl
) == NULL_TREE
2902 || DECL_INITIAL (decl
) == error_mark_node
)
2903 /* Don't output anything
2904 when a tentative file-scope definition is seen.
2905 But at end of compilation, do output code for them. */
2906 DECL_DEFER_OUTPUT (decl
) = 1;
2907 rest_of_decl_compilation (decl
, asmspec
, true, 0);
2911 /* This is a local variable. If there is an ASMSPEC, the
2912 user has requested that we handle it specially. */
2915 /* In conjunction with an ASMSPEC, the `register'
2916 keyword indicates that we should place the variable
2917 in a particular register. */
2918 if (C_DECL_REGISTER (decl
))
2920 DECL_HARD_REGISTER (decl
) = 1;
2921 /* This cannot be done for a structure with volatile
2922 fields, on which DECL_REGISTER will have been
2924 if (!DECL_REGISTER (decl
))
2925 error ("cannot put object with volatile field into register");
2928 /* If this is not a static variable, issue a warning.
2929 It doesn't make any sense to give an ASMSPEC for an
2930 ordinary, non-register local variable. Historically,
2931 GCC has accepted -- but ignored -- the ASMSPEC in
2933 if (TREE_CODE (decl
) == VAR_DECL
2934 && !C_DECL_REGISTER (decl
)
2935 && !TREE_STATIC (decl
))
2936 warning ("%Jignoring asm-specifier for non-static local "
2937 "variable '%D'", decl
, decl
);
2939 change_decl_assembler_name (decl
, get_identifier (asmspec
));
2942 if (TREE_CODE (decl
) != FUNCTION_DECL
)
2943 add_stmt (build_stmt (DECL_STMT
, decl
));
2946 if (!DECL_FILE_SCOPE_P (decl
))
2948 /* Recompute the RTL of a local array now
2949 if it used to be an incomplete type. */
2951 && ! TREE_STATIC (decl
) && ! DECL_EXTERNAL (decl
))
2953 /* If we used it already as memory, it must stay in memory. */
2954 TREE_ADDRESSABLE (decl
) = TREE_USED (decl
);
2955 /* If it's still incomplete now, no init will save it. */
2956 if (DECL_SIZE (decl
) == 0)
2957 DECL_INITIAL (decl
) = 0;
2962 /* If this was marked 'used', be sure it will be output. */
2963 if (lookup_attribute ("used", DECL_ATTRIBUTES (decl
)))
2964 mark_decl_referenced (decl
);
2966 if (TREE_CODE (decl
) == TYPE_DECL
)
2968 if (!DECL_FILE_SCOPE_P (decl
)
2969 && variably_modified_type_p (TREE_TYPE (decl
)))
2970 add_stmt (build_stmt (DECL_STMT
, decl
));
2972 rest_of_decl_compilation (decl
, NULL
, DECL_FILE_SCOPE_P (decl
), 0);
2975 /* At the end of a declaration, throw away any variable type sizes
2976 of types defined inside that declaration. There is no use
2977 computing them in the following function definition. */
2978 if (current_scope
== file_scope
)
2979 get_pending_sizes ();
2981 /* Install a cleanup (aka destructor) if one was given. */
2982 if (TREE_CODE (decl
) == VAR_DECL
&& !TREE_STATIC (decl
))
2984 tree attr
= lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl
));
2987 tree cleanup_id
= TREE_VALUE (TREE_VALUE (attr
));
2988 tree cleanup_decl
= lookup_name (cleanup_id
);
2991 /* Build "cleanup(&decl)" for the destructor. */
2992 cleanup
= build_unary_op (ADDR_EXPR
, decl
, 0);
2993 cleanup
= build_tree_list (NULL_TREE
, cleanup
);
2994 cleanup
= build_function_call (cleanup_decl
, cleanup
);
2996 /* Don't warn about decl unused; the cleanup uses it. */
2997 TREE_USED (decl
) = 1;
2998 TREE_USED (cleanup_decl
) = 1;
3000 /* Initialize EH, if we've been told to do so. */
3001 if (flag_exceptions
&& !c_eh_initialized_p
)
3003 c_eh_initialized_p
= true;
3004 eh_personality_libfunc
3005 = init_one_libfunc (USING_SJLJ_EXCEPTIONS
3006 ? "__gcc_personality_sj0"
3007 : "__gcc_personality_v0");
3008 using_eh_for_cleanups ();
3011 push_cleanup (decl
, cleanup
, false);
3016 /* Given a parsed parameter declaration, decode it into a PARM_DECL
3017 and push that on the current scope. */
3020 push_parm_decl (tree parm
)
3024 /* Don't attempt to expand sizes while parsing this decl.
3025 (We can get here with i_s_e 1 somehow from Objective-C.) */
3026 int save_immediate_size_expand
= immediate_size_expand
;
3027 immediate_size_expand
= 0;
3029 decl
= grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm
)),
3030 TREE_PURPOSE (TREE_PURPOSE (parm
)),
3032 decl_attributes (&decl
, TREE_VALUE (parm
), 0);
3034 decl
= pushdecl (decl
);
3036 finish_decl (decl
, NULL_TREE
, NULL_TREE
);
3038 immediate_size_expand
= save_immediate_size_expand
;
3041 /* Mark all the parameter declarations to date as forward decls.
3042 Also diagnose use of this extension. */
3045 mark_forward_parm_decls (void)
3047 struct c_binding
*b
;
3049 if (pedantic
&& !current_scope
->warned_forward_parm_decls
)
3051 pedwarn ("ISO C forbids forward parameter declarations");
3052 current_scope
->warned_forward_parm_decls
= true;
3055 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
3056 if (TREE_CODE (b
->decl
) == PARM_DECL
)
3057 TREE_ASM_WRITTEN (b
->decl
) = 1;
3060 static GTY(()) int compound_literal_number
;
3062 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
3063 literal, which may be an incomplete array type completed by the
3064 initializer; INIT is a CONSTRUCTOR that initializes the compound
3068 build_compound_literal (tree type
, tree init
)
3070 /* We do not use start_decl here because we have a type, not a declarator;
3071 and do not use finish_decl because the decl should be stored inside
3072 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_STMT. */
3073 tree decl
= build_decl (VAR_DECL
, NULL_TREE
, type
);
3076 DECL_EXTERNAL (decl
) = 0;
3077 TREE_PUBLIC (decl
) = 0;
3078 TREE_STATIC (decl
) = (current_scope
== file_scope
);
3079 DECL_CONTEXT (decl
) = current_function_decl
;
3080 TREE_USED (decl
) = 1;
3081 TREE_TYPE (decl
) = type
;
3082 TREE_READONLY (decl
) = TYPE_READONLY (type
);
3083 store_init_value (decl
, init
);
3085 if (TREE_CODE (type
) == ARRAY_TYPE
&& !COMPLETE_TYPE_P (type
))
3087 int failure
= complete_array_type (type
, DECL_INITIAL (decl
), 1);
3092 type
= TREE_TYPE (decl
);
3093 if (type
== error_mark_node
|| !COMPLETE_TYPE_P (type
))
3094 return error_mark_node
;
3096 stmt
= build_stmt (DECL_STMT
, decl
);
3097 complit
= build1 (COMPOUND_LITERAL_EXPR
, TREE_TYPE (decl
), stmt
);
3098 TREE_SIDE_EFFECTS (complit
) = 1;
3100 layout_decl (decl
, 0);
3102 if (TREE_STATIC (decl
))
3104 /* This decl needs a name for the assembler output. We also need
3105 a unique suffix to be added to the name. */
3108 ASM_FORMAT_PRIVATE_NAME (name
, "__compound_literal",
3109 compound_literal_number
);
3110 compound_literal_number
++;
3111 DECL_NAME (decl
) = get_identifier (name
);
3112 DECL_DEFER_OUTPUT (decl
) = 1;
3113 DECL_COMDAT (decl
) = 1;
3114 DECL_ARTIFICIAL (decl
) = 1;
3116 rest_of_decl_compilation (decl
, NULL
, 1, 0);
3122 /* Make TYPE a complete type based on INITIAL_VALUE.
3123 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3124 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
3127 complete_array_type (tree type
, tree initial_value
, int do_default
)
3129 tree maxindex
= NULL_TREE
;
3134 /* Note MAXINDEX is really the maximum index,
3135 one less than the size. */
3136 if (TREE_CODE (initial_value
) == STRING_CST
)
3139 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value
)));
3140 maxindex
= build_int_2 ((TREE_STRING_LENGTH (initial_value
)
3143 else if (TREE_CODE (initial_value
) == CONSTRUCTOR
)
3145 tree elts
= CONSTRUCTOR_ELTS (initial_value
);
3146 maxindex
= build_int_2 (-1, -1);
3147 for (; elts
; elts
= TREE_CHAIN (elts
))
3149 if (TREE_PURPOSE (elts
))
3150 maxindex
= TREE_PURPOSE (elts
);
3152 maxindex
= fold (build (PLUS_EXPR
, integer_type_node
,
3153 maxindex
, integer_one_node
));
3155 maxindex
= copy_node (maxindex
);
3159 /* Make an error message unless that happened already. */
3160 if (initial_value
!= error_mark_node
)
3163 /* Prevent further error messages. */
3164 maxindex
= build_int_2 (0, 0);
3171 maxindex
= build_int_2 (0, 0);
3177 TYPE_DOMAIN (type
) = build_index_type (maxindex
);
3178 if (!TREE_TYPE (maxindex
))
3179 TREE_TYPE (maxindex
) = TYPE_DOMAIN (type
);
3182 /* Lay out the type now that we can get the real answer. */
3189 /* Determine whether TYPE is a structure with a flexible array member,
3190 or a union containing such a structure (possibly recursively). */
3193 flexible_array_type_p (tree type
)
3196 switch (TREE_CODE (type
))
3199 x
= TYPE_FIELDS (type
);
3202 while (TREE_CHAIN (x
) != NULL_TREE
)
3204 if (TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
3205 && TYPE_SIZE (TREE_TYPE (x
)) == NULL_TREE
3206 && TYPE_DOMAIN (TREE_TYPE (x
)) != NULL_TREE
3207 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x
))) == NULL_TREE
)
3211 for (x
= TYPE_FIELDS (type
); x
!= NULL_TREE
; x
= TREE_CHAIN (x
))
3213 if (flexible_array_type_p (TREE_TYPE (x
)))
3222 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
3223 replacing with appropriate values if they are invalid. */
3225 check_bitfield_type_and_width (tree
*type
, tree
*width
, const char *orig_name
)
3228 unsigned int max_width
;
3229 unsigned HOST_WIDE_INT w
;
3230 const char *name
= orig_name
? orig_name
: _("<anonymous>");
3233 STRIP_NOPS (*width
);
3235 /* Detect and ignore out of range field width and process valid
3237 if (TREE_CODE (*width
) != INTEGER_CST
)
3239 error ("bit-field `%s' width not an integer constant", name
);
3240 *width
= integer_one_node
;
3244 constant_expression_warning (*width
);
3245 if (tree_int_cst_sgn (*width
) < 0)
3247 error ("negative width in bit-field `%s'", name
);
3248 *width
= integer_one_node
;
3250 else if (integer_zerop (*width
) && orig_name
)
3252 error ("zero width for bit-field `%s'", name
);
3253 *width
= integer_one_node
;
3257 /* Detect invalid bit-field type. */
3258 if (TREE_CODE (*type
) != INTEGER_TYPE
3259 && TREE_CODE (*type
) != BOOLEAN_TYPE
3260 && TREE_CODE (*type
) != ENUMERAL_TYPE
)
3262 error ("bit-field `%s' has invalid type", name
);
3263 *type
= unsigned_type_node
;
3266 type_mv
= TYPE_MAIN_VARIANT (*type
);
3268 && type_mv
!= integer_type_node
3269 && type_mv
!= unsigned_type_node
3270 && type_mv
!= boolean_type_node
)
3271 pedwarn ("type of bit-field `%s' is a GCC extension", name
);
3273 if (type_mv
== boolean_type_node
)
3274 max_width
= CHAR_TYPE_SIZE
;
3276 max_width
= TYPE_PRECISION (*type
);
3278 if (0 < compare_tree_int (*width
, max_width
))
3280 error ("width of `%s' exceeds its type", name
);
3282 *width
= build_int_2 (w
, 0);
3285 w
= tree_low_cst (*width
, 1);
3287 if (TREE_CODE (*type
) == ENUMERAL_TYPE
)
3289 struct lang_type
*lt
= TYPE_LANG_SPECIFIC (*type
);
3291 || w
< min_precision (lt
->enum_min
, TYPE_UNSIGNED (*type
))
3292 || w
< min_precision (lt
->enum_max
, TYPE_UNSIGNED (*type
)))
3293 warning ("`%s' is narrower than values of its type", name
);
3297 /* Given declspecs and a declarator,
3298 determine the name and type of the object declared
3299 and construct a ..._DECL node for it.
3300 (In one case we can return a ..._TYPE node instead.
3301 For invalid input we sometimes return 0.)
3303 DECLSPECS is a chain of tree_list nodes whose value fields
3304 are the storage classes and type specifiers.
3306 DECL_CONTEXT says which syntactic context this declaration is in:
3307 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
3308 FUNCDEF for a function definition. Like NORMAL but a few different
3309 error messages in each case. Return value may be zero meaning
3310 this definition is too screwy to try to parse.
3311 PARM for a parameter declaration (either within a function prototype
3312 or before a function body). Make a PARM_DECL, or return void_type_node.
3313 TYPENAME if for a typename (in a cast or sizeof).
3314 Don't make a DECL node; just return the ..._TYPE node.
3315 FIELD for a struct or union field; make a FIELD_DECL.
3316 INITIALIZED is 1 if the decl has an initializer.
3317 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
3318 representing the width of the bit-field.
3320 In the TYPENAME case, DECLARATOR is really an absolute declarator.
3321 It may also be so in the PARM case, for a prototype where the
3322 argument type is specified but not the name.
3324 This function is where the complicated C meanings of `static'
3325 and `extern' are interpreted. */
3328 grokdeclarator (tree declarator
, tree declspecs
,
3329 enum decl_context decl_context
, int initialized
, tree
*width
)
3333 tree type
= NULL_TREE
;
3338 int type_quals
= TYPE_UNQUALIFIED
;
3340 int explicit_int
= 0;
3341 int explicit_char
= 0;
3342 int defaulted_int
= 0;
3343 tree typedef_decl
= 0;
3344 const char *name
, *orig_name
;
3345 tree typedef_type
= 0;
3346 int funcdef_flag
= 0;
3347 enum tree_code innermost_code
= ERROR_MARK
;
3348 int size_varies
= 0;
3349 tree decl_attr
= NULL_TREE
;
3350 tree array_ptr_quals
= NULL_TREE
;
3351 int array_parm_static
= 0;
3352 tree returned_attrs
= NULL_TREE
;
3353 bool bitfield
= width
!= NULL
;
3355 tree arg_info
= NULL_TREE
;
3357 if (decl_context
== FUNCDEF
)
3358 funcdef_flag
= 1, decl_context
= NORMAL
;
3360 /* Look inside a declarator for the name being declared
3361 and get it as a string, for an error message. */
3363 tree decl
= declarator
;
3367 switch (TREE_CODE (decl
))
3372 innermost_code
= TREE_CODE (decl
);
3373 decl
= TREE_OPERAND (decl
, 0);
3377 decl
= TREE_VALUE (decl
);
3380 case IDENTIFIER_NODE
:
3381 name
= IDENTIFIER_POINTER (decl
);
3393 /* A function definition's declarator must have the form of
3394 a function declarator. */
3396 if (funcdef_flag
&& innermost_code
!= CALL_EXPR
)
3399 /* If this looks like a function definition, make it one,
3400 even if it occurs where parms are expected.
3401 Then store_parm_decls will reject it and not use it as a parm. */
3402 if (decl_context
== NORMAL
&& !funcdef_flag
&& current_scope
->parm_flag
)
3403 decl_context
= PARM
;
3405 /* Look through the decl specs and record which ones appear.
3406 Some typespecs are defined as built-in typenames.
3407 Others, the ones that are modifiers of other types,
3408 are represented by bits in SPECBITS: set the bits for
3409 the modifiers that appear. Storage class keywords are also in SPECBITS.
3411 If there is a typedef name or a type, store the type in TYPE.
3412 This includes builtin typedefs such as `int'.
3414 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
3415 and did not come from a user typedef.
3417 Set LONGLONG if `long' is mentioned twice. */
3419 for (spec
= declspecs
; spec
; spec
= TREE_CHAIN (spec
))
3421 tree id
= TREE_VALUE (spec
);
3423 /* If the entire declaration is itself tagged as deprecated then
3424 suppress reports of deprecated items. */
3425 if (id
&& TREE_DEPRECATED (id
))
3427 if (deprecated_state
!= DEPRECATED_SUPPRESS
)
3428 warn_deprecated_use (id
);
3431 if (id
== ridpointers
[(int) RID_INT
])
3433 if (id
== ridpointers
[(int) RID_CHAR
])
3436 if (TREE_CODE (id
) == IDENTIFIER_NODE
&& C_IS_RESERVED_WORD (id
))
3438 enum rid i
= C_RID_CODE (id
);
3439 if ((int) i
<= (int) RID_LAST_MODIFIER
)
3441 if (i
== RID_LONG
&& (specbits
& (1 << (int) RID_LONG
)))
3444 error ("`long long long' is too long for GCC");
3447 if (pedantic
&& !flag_isoc99
&& ! in_system_header
3449 pedwarn ("ISO C90 does not support `long long'");
3453 else if (specbits
& (1 << (int) i
))
3455 if (i
== RID_CONST
|| i
== RID_VOLATILE
|| i
== RID_RESTRICT
)
3457 if (pedantic
&& !flag_isoc99
)
3458 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id
));
3461 error ("duplicate `%s'", IDENTIFIER_POINTER (id
));
3464 /* Diagnose "__thread extern". Recall that this list
3465 is in the reverse order seen in the text. */
3467 && (specbits
& (1 << (int) RID_EXTERN
3468 | 1 << (int) RID_STATIC
)))
3470 if (specbits
& 1 << (int) RID_EXTERN
)
3471 error ("`__thread' before `extern'");
3473 error ("`__thread' before `static'");
3476 specbits
|= 1 << (int) i
;
3481 error ("two or more data types in declaration of `%s'", name
);
3482 /* Actual typedefs come to us as TYPE_DECL nodes. */
3483 else if (TREE_CODE (id
) == TYPE_DECL
)
3485 if (TREE_TYPE (id
) == error_mark_node
)
3486 ; /* Allow the type to default to int to avoid cascading errors. */
3489 type
= TREE_TYPE (id
);
3490 decl_attr
= DECL_ATTRIBUTES (id
);
3494 /* Built-in types come as identifiers. */
3495 else if (TREE_CODE (id
) == IDENTIFIER_NODE
)
3497 tree t
= lookup_name (id
);
3498 if (!t
|| TREE_CODE (t
) != TYPE_DECL
)
3499 error ("`%s' fails to be a typedef or built in type",
3500 IDENTIFIER_POINTER (id
));
3501 else if (TREE_TYPE (t
) == error_mark_node
)
3505 type
= TREE_TYPE (t
);
3509 else if (TREE_CODE (id
) != ERROR_MARK
)
3516 typedef_type
= type
;
3518 size_varies
= C_TYPE_VARIABLE_SIZE (type
);
3520 /* No type at all: default to `int', and set DEFAULTED_INT
3521 because it was not a user-defined typedef. */
3525 if ((! (specbits
& ((1 << (int) RID_LONG
) | (1 << (int) RID_SHORT
)
3526 | (1 << (int) RID_SIGNED
)
3527 | (1 << (int) RID_UNSIGNED
)
3528 | (1 << (int) RID_COMPLEX
))))
3529 /* Don't warn about typedef foo = bar. */
3530 && ! (specbits
& (1 << (int) RID_TYPEDEF
) && initialized
)
3531 && ! in_system_header
)
3533 /* Issue a warning if this is an ISO C 99 program or if -Wreturn-type
3534 and this is a function, or if -Wimplicit; prefer the former
3535 warning since it is more explicit. */
3536 if ((warn_implicit_int
|| warn_return_type
|| flag_isoc99
)
3538 warn_about_return_type
= 1;
3539 else if (warn_implicit_int
|| flag_isoc99
)
3540 pedwarn_c99 ("type defaults to `int' in declaration of `%s'",
3545 type
= integer_type_node
;
3548 /* Now process the modifiers that were specified
3549 and check for invalid combinations. */
3551 /* Long double is a special combination. */
3553 if ((specbits
& 1 << (int) RID_LONG
) && ! longlong
3554 && TYPE_MAIN_VARIANT (type
) == double_type_node
)
3556 specbits
&= ~(1 << (int) RID_LONG
);
3557 type
= long_double_type_node
;
3560 /* Check all other uses of type modifiers. */
3562 if (specbits
& ((1 << (int) RID_LONG
) | (1 << (int) RID_SHORT
)
3563 | (1 << (int) RID_UNSIGNED
) | (1 << (int) RID_SIGNED
)))
3567 if ((specbits
& 1 << (int) RID_LONG
)
3568 && (specbits
& 1 << (int) RID_SHORT
))
3569 error ("both long and short specified for `%s'", name
);
3570 else if (((specbits
& 1 << (int) RID_LONG
)
3571 || (specbits
& 1 << (int) RID_SHORT
))
3573 error ("long or short specified with char for `%s'", name
);
3574 else if (((specbits
& 1 << (int) RID_LONG
)
3575 || (specbits
& 1 << (int) RID_SHORT
))
3576 && TREE_CODE (type
) == REAL_TYPE
)
3578 static int already
= 0;
3580 error ("long or short specified with floating type for `%s'", name
);
3581 if (! already
&& ! pedantic
)
3583 error ("the only valid combination is `long double'");
3587 else if ((specbits
& 1 << (int) RID_SIGNED
)
3588 && (specbits
& 1 << (int) RID_UNSIGNED
))
3589 error ("both signed and unsigned specified for `%s'", name
);
3590 else if (TREE_CODE (type
) != INTEGER_TYPE
)
3591 error ("long, short, signed or unsigned invalid for `%s'", name
);
3595 if (!explicit_int
&& !defaulted_int
&& !explicit_char
)
3597 error ("long, short, signed or unsigned used invalidly for `%s'",
3603 /* Discard the type modifiers if they are invalid. */
3606 specbits
&= ~((1 << (int) RID_LONG
) | (1 << (int) RID_SHORT
)
3607 | (1 << (int) RID_UNSIGNED
) | (1 << (int) RID_SIGNED
));
3612 if ((specbits
& (1 << (int) RID_COMPLEX
))
3613 && TREE_CODE (type
) != INTEGER_TYPE
&& TREE_CODE (type
) != REAL_TYPE
)
3615 error ("complex invalid for `%s'", name
);
3616 specbits
&= ~(1 << (int) RID_COMPLEX
);
3619 /* Decide whether an integer type is signed or not.
3620 Optionally treat bit-fields as signed by default. */
3621 if (specbits
& 1 << (int) RID_UNSIGNED
3622 || (bitfield
&& ! flag_signed_bitfields
3623 && (explicit_int
|| defaulted_int
|| explicit_char
3624 /* A typedef for plain `int' without `signed'
3625 can be controlled just like plain `int'. */
3626 || ! (typedef_decl
!= 0
3627 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl
)))
3628 && TREE_CODE (type
) != ENUMERAL_TYPE
3629 && !(specbits
& 1 << (int) RID_SIGNED
)))
3632 type
= long_long_unsigned_type_node
;
3633 else if (specbits
& 1 << (int) RID_LONG
)
3634 type
= long_unsigned_type_node
;
3635 else if (specbits
& 1 << (int) RID_SHORT
)
3636 type
= short_unsigned_type_node
;
3637 else if (type
== char_type_node
)
3638 type
= unsigned_char_type_node
;
3639 else if (typedef_decl
)
3640 type
= c_common_unsigned_type (type
);
3642 type
= unsigned_type_node
;
3644 else if ((specbits
& 1 << (int) RID_SIGNED
)
3645 && type
== char_type_node
)
3646 type
= signed_char_type_node
;
3648 type
= long_long_integer_type_node
;
3649 else if (specbits
& 1 << (int) RID_LONG
)
3650 type
= long_integer_type_node
;
3651 else if (specbits
& 1 << (int) RID_SHORT
)
3652 type
= short_integer_type_node
;
3654 if (specbits
& 1 << (int) RID_COMPLEX
)
3656 if (pedantic
&& !flag_isoc99
)
3657 pedwarn ("ISO C90 does not support complex types");
3658 /* If we just have "complex", it is equivalent to
3659 "complex double", but if any modifiers at all are specified it is
3660 the complex form of TYPE. E.g, "complex short" is
3661 "complex short int". */
3663 if (defaulted_int
&& ! longlong
3664 && ! (specbits
& ((1 << (int) RID_LONG
) | (1 << (int) RID_SHORT
)
3665 | (1 << (int) RID_SIGNED
)
3666 | (1 << (int) RID_UNSIGNED
))))
3669 pedwarn ("ISO C does not support plain `complex' meaning `double complex'");
3670 type
= complex_double_type_node
;
3672 else if (type
== integer_type_node
)
3675 pedwarn ("ISO C does not support complex integer types");
3676 type
= complex_integer_type_node
;
3678 else if (type
== float_type_node
)
3679 type
= complex_float_type_node
;
3680 else if (type
== double_type_node
)
3681 type
= complex_double_type_node
;
3682 else if (type
== long_double_type_node
)
3683 type
= complex_long_double_type_node
;
3687 pedwarn ("ISO C does not support complex integer types");
3688 type
= build_complex_type (type
);
3692 /* Check the type and width of a bit-field. */
3694 check_bitfield_type_and_width (&type
, width
, orig_name
);
3696 /* Figure out the type qualifiers for the declaration. There are
3697 two ways a declaration can become qualified. One is something
3698 like `const int i' where the `const' is explicit. Another is
3699 something like `typedef const int CI; CI i' where the type of the
3700 declaration contains the `const'. A third possibility is that
3701 there is a type qualifier on the element type of a typedefed
3702 array type, in which case we should extract that qualifier so
3703 that c_apply_type_quals_to_decls receives the full list of
3704 qualifiers to work with (C90 is not entirely clear about whether
3705 duplicate qualifiers should be diagnosed in this case, but it
3706 seems most appropriate to do so). */
3707 element_type
= strip_array_types (type
);
3708 constp
= !! (specbits
& 1 << (int) RID_CONST
) + TYPE_READONLY (element_type
);
3710 = !! (specbits
& 1 << (int) RID_RESTRICT
) + TYPE_RESTRICT (element_type
);
3712 = !! (specbits
& 1 << (int) RID_VOLATILE
) + TYPE_VOLATILE (element_type
);
3713 inlinep
= !! (specbits
& (1 << (int) RID_INLINE
));
3714 if (pedantic
&& !flag_isoc99
)
3717 pedwarn ("duplicate `const'");
3719 pedwarn ("duplicate `restrict'");
3721 pedwarn ("duplicate `volatile'");
3723 if (! flag_gen_aux_info
&& (TYPE_QUALS (type
)))
3724 type
= TYPE_MAIN_VARIANT (type
);
3725 type_quals
= ((constp
? TYPE_QUAL_CONST
: 0)
3726 | (restrictp
? TYPE_QUAL_RESTRICT
: 0)
3727 | (volatilep
? TYPE_QUAL_VOLATILE
: 0));
3729 /* Warn if two storage classes are given. Default to `auto'. */
3734 if (specbits
& 1 << (int) RID_AUTO
) nclasses
++;
3735 if (specbits
& 1 << (int) RID_STATIC
) nclasses
++;
3736 if (specbits
& 1 << (int) RID_EXTERN
) nclasses
++;
3737 if (specbits
& 1 << (int) RID_REGISTER
) nclasses
++;
3738 if (specbits
& 1 << (int) RID_TYPEDEF
) nclasses
++;
3740 /* "static __thread" and "extern __thread" are allowed. */
3741 if ((specbits
& (1 << (int) RID_THREAD
3742 | 1 << (int) RID_STATIC
3743 | 1 << (int) RID_EXTERN
)) == (1 << (int) RID_THREAD
))
3746 /* Warn about storage classes that are invalid for certain
3747 kinds of declarations (parameters, typenames, etc.). */
3750 error ("multiple storage classes in declaration of `%s'", name
);
3751 else if (funcdef_flag
3753 & ((1 << (int) RID_REGISTER
)
3754 | (1 << (int) RID_AUTO
)
3755 | (1 << (int) RID_TYPEDEF
)
3756 | (1 << (int) RID_THREAD
))))
3758 if (specbits
& 1 << (int) RID_AUTO
3759 && (pedantic
|| current_scope
== file_scope
))
3760 pedwarn ("function definition declared `auto'");
3761 if (specbits
& 1 << (int) RID_REGISTER
)
3762 error ("function definition declared `register'");
3763 if (specbits
& 1 << (int) RID_TYPEDEF
)
3764 error ("function definition declared `typedef'");
3765 if (specbits
& 1 << (int) RID_THREAD
)
3766 error ("function definition declared `__thread'");
3767 specbits
&= ~((1 << (int) RID_TYPEDEF
) | (1 << (int) RID_REGISTER
)
3768 | (1 << (int) RID_AUTO
) | (1 << (int) RID_THREAD
));
3770 else if (decl_context
!= NORMAL
&& nclasses
> 0)
3772 if (decl_context
== PARM
&& specbits
& 1 << (int) RID_REGISTER
)
3776 switch (decl_context
)
3779 error ("storage class specified for structure field `%s'",
3783 error ("storage class specified for parameter `%s'", name
);
3786 error ("storage class specified for typename");
3789 specbits
&= ~((1 << (int) RID_TYPEDEF
) | (1 << (int) RID_REGISTER
)
3790 | (1 << (int) RID_AUTO
) | (1 << (int) RID_STATIC
)
3791 | (1 << (int) RID_EXTERN
) | (1 << (int) RID_THREAD
));
3794 else if (specbits
& 1 << (int) RID_EXTERN
&& initialized
&& ! funcdef_flag
)
3796 /* `extern' with initialization is invalid if not at file scope. */
3797 if (current_scope
== file_scope
)
3798 warning ("`%s' initialized and declared `extern'", name
);
3800 error ("`%s' has both `extern' and initializer", name
);
3802 else if (current_scope
== file_scope
)
3804 if (specbits
& 1 << (int) RID_AUTO
)
3805 error ("file-scope declaration of `%s' specifies `auto'", name
);
3809 if (specbits
& 1 << (int) RID_EXTERN
&& funcdef_flag
)
3810 error ("nested function `%s' declared `extern'", name
);
3811 else if ((specbits
& (1 << (int) RID_THREAD
3812 | 1 << (int) RID_EXTERN
3813 | 1 << (int) RID_STATIC
))
3814 == (1 << (int) RID_THREAD
))
3816 error ("function-scope `%s' implicitly auto and declared `__thread'",
3818 specbits
&= ~(1 << (int) RID_THREAD
);
3823 /* Now figure out the structure of the declarator proper.
3824 Descend through it, creating more complex types, until we reach
3825 the declared identifier (or NULL_TREE, in an absolute declarator). */
3827 while (declarator
&& TREE_CODE (declarator
) != IDENTIFIER_NODE
)
3829 if (type
== error_mark_node
)
3831 declarator
= TREE_OPERAND (declarator
, 0);
3835 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
3836 an INDIRECT_REF (for *...),
3837 a CALL_EXPR (for ...(...)),
3838 a TREE_LIST (for nested attributes),
3839 an identifier (for the name being declared)
3840 or a null pointer (for the place in an absolute declarator
3841 where the name was omitted).
3842 For the last two cases, we have just exited the loop.
3844 At this point, TYPE is the type of elements of an array,
3845 or for a function to return, or for a pointer to point to.
3846 After this sequence of ifs, TYPE is the type of the
3847 array or function or pointer, and DECLARATOR has had its
3848 outermost layer removed. */
3850 if (array_ptr_quals
!= NULL_TREE
|| array_parm_static
)
3852 /* Only the innermost declarator (making a parameter be of
3853 array type which is converted to pointer type)
3854 may have static or type qualifiers. */
3855 error ("static or type qualifiers in non-parameter array declarator");
3856 array_ptr_quals
= NULL_TREE
;
3857 array_parm_static
= 0;
3860 if (TREE_CODE (declarator
) == TREE_LIST
)
3862 /* We encode a declarator with embedded attributes using
3864 tree attrs
= TREE_PURPOSE (declarator
);
3867 declarator
= TREE_VALUE (declarator
);
3868 inner_decl
= declarator
;
3869 while (inner_decl
!= NULL_TREE
3870 && TREE_CODE (inner_decl
) == TREE_LIST
)
3871 inner_decl
= TREE_VALUE (inner_decl
);
3872 if (inner_decl
== NULL_TREE
3873 || TREE_CODE (inner_decl
) == IDENTIFIER_NODE
)
3874 attr_flags
|= (int) ATTR_FLAG_DECL_NEXT
;
3875 else if (TREE_CODE (inner_decl
) == CALL_EXPR
)
3876 attr_flags
|= (int) ATTR_FLAG_FUNCTION_NEXT
;
3877 else if (TREE_CODE (inner_decl
) == ARRAY_REF
)
3878 attr_flags
|= (int) ATTR_FLAG_ARRAY_NEXT
;
3879 returned_attrs
= decl_attributes (&type
,
3880 chainon (returned_attrs
, attrs
),
3883 else if (TREE_CODE (declarator
) == ARRAY_REF
)
3885 tree itype
= NULL_TREE
;
3886 tree size
= TREE_OPERAND (declarator
, 1);
3887 /* The index is a signed object `sizetype' bits wide. */
3888 tree index_type
= c_common_signed_type (sizetype
);
3890 array_ptr_quals
= TREE_TYPE (declarator
);
3891 array_parm_static
= TREE_STATIC (declarator
);
3893 declarator
= TREE_OPERAND (declarator
, 0);
3895 /* Check for some types that there cannot be arrays of. */
3897 if (VOID_TYPE_P (type
))
3899 error ("declaration of `%s' as array of voids", name
);
3900 type
= error_mark_node
;
3903 if (TREE_CODE (type
) == FUNCTION_TYPE
)
3905 error ("declaration of `%s' as array of functions", name
);
3906 type
= error_mark_node
;
3909 if (pedantic
&& !in_system_header
&& flexible_array_type_p (type
))
3910 pedwarn ("invalid use of structure with flexible array member");
3912 if (size
== error_mark_node
)
3913 type
= error_mark_node
;
3915 if (type
== error_mark_node
)
3918 /* If size was specified, set ITYPE to a range-type for that size.
3919 Otherwise, ITYPE remains null. finish_decl may figure it out
3920 from an initial value. */
3924 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
3925 STRIP_TYPE_NOPS (size
);
3927 if (! INTEGRAL_TYPE_P (TREE_TYPE (size
)))
3929 error ("size of array `%s' has non-integer type", name
);
3930 size
= integer_one_node
;
3933 if (pedantic
&& integer_zerop (size
))
3934 pedwarn ("ISO C forbids zero-size array `%s'", name
);
3936 if (TREE_CODE (size
) == INTEGER_CST
)
3938 constant_expression_warning (size
);
3939 if (tree_int_cst_sgn (size
) < 0)
3941 error ("size of array `%s' is negative", name
);
3942 size
= integer_one_node
;
3947 /* Make sure the array size remains visibly nonconstant
3948 even if it is (eg) a const variable with known value. */
3951 if (!flag_isoc99
&& pedantic
)
3953 if (TREE_CONSTANT (size
))
3954 pedwarn ("ISO C90 forbids array `%s' whose size can't be evaluated",
3957 pedwarn ("ISO C90 forbids variable-size array `%s'",
3962 if (integer_zerop (size
))
3964 /* A zero-length array cannot be represented with an
3965 unsigned index type, which is what we'll get with
3966 build_index_type. Create an open-ended range instead. */
3967 itype
= build_range_type (sizetype
, size
, NULL_TREE
);
3971 /* Compute the maximum valid index, that is, size - 1.
3972 Do the calculation in index_type, so that if it is
3973 a variable the computations will be done in the
3975 itype
= fold (build (MINUS_EXPR
, index_type
,
3976 convert (index_type
, size
),
3977 convert (index_type
, size_one_node
)));
3979 /* If that overflowed, the array is too big.
3980 ??? While a size of INT_MAX+1 technically shouldn't
3981 cause an overflow (because we subtract 1), the overflow
3982 is recorded during the conversion to index_type, before
3983 the subtraction. Handling this case seems like an
3984 unnecessary complication. */
3985 if (TREE_OVERFLOW (itype
))
3987 error ("size of array `%s' is too large", name
);
3988 type
= error_mark_node
;
3994 /* We must be able to distinguish the
3995 SAVE_EXPR_CONTEXT for the variably-sized type
3996 so that we can set it correctly in
3997 set_save_expr_context. The convention is
3998 that all SAVE_EXPRs that need to be reset
3999 have NULL_TREE for their SAVE_EXPR_CONTEXT. */
4000 tree cfd
= current_function_decl
;
4001 if (decl_context
== PARM
)
4002 current_function_decl
= NULL_TREE
;
4003 itype
= variable_size (itype
);
4004 if (decl_context
== PARM
)
4005 current_function_decl
= cfd
;
4007 itype
= build_index_type (itype
);
4010 else if (decl_context
== FIELD
)
4012 if (pedantic
&& !flag_isoc99
&& !in_system_header
)
4013 pedwarn ("ISO C90 does not support flexible array members");
4015 /* ISO C99 Flexible array members are effectively identical
4016 to GCC's zero-length array extension. */
4017 itype
= build_range_type (sizetype
, size_zero_node
, NULL_TREE
);
4020 /* If pedantic, complain about arrays of incomplete types. */
4022 if (pedantic
&& !COMPLETE_TYPE_P (type
))
4023 pedwarn ("array type has incomplete element type");
4025 /* Build the array type itself, then merge any constancy or
4026 volatility into the target type. We must do it in this order
4027 to ensure that the TYPE_MAIN_VARIANT field of the array type
4028 is set correctly. */
4030 type
= build_array_type (type
, itype
);
4032 type
= c_build_qualified_type (type
, type_quals
);
4035 C_TYPE_VARIABLE_SIZE (type
) = 1;
4037 /* The GCC extension for zero-length arrays differs from
4038 ISO flexible array members in that sizeof yields zero. */
4039 if (size
&& integer_zerop (size
))
4042 TYPE_SIZE (type
) = bitsize_zero_node
;
4043 TYPE_SIZE_UNIT (type
) = size_zero_node
;
4045 else if (declarator
&& TREE_CODE (declarator
) == INDIRECT_REF
)
4046 /* We can never complete an array type which is the target of a
4047 pointer, so go ahead and lay it out. */
4050 if (decl_context
!= PARM
4051 && (array_ptr_quals
!= NULL_TREE
|| array_parm_static
))
4053 error ("static or type qualifiers in non-parameter array declarator");
4054 array_ptr_quals
= NULL_TREE
;
4055 array_parm_static
= 0;
4058 else if (TREE_CODE (declarator
) == CALL_EXPR
)
4060 /* Say it's a definition only for the CALL_EXPR closest to
4062 bool really_funcdef
= (funcdef_flag
4063 && (TREE_CODE (TREE_OPERAND (declarator
, 0))
4064 == IDENTIFIER_NODE
));
4067 /* Declaring a function type.
4068 Make sure we have a valid type for the function to return. */
4069 if (type
== error_mark_node
)
4074 /* Warn about some types functions can't return. */
4076 if (TREE_CODE (type
) == FUNCTION_TYPE
)
4078 error ("`%s' declared as function returning a function", name
);
4079 type
= integer_type_node
;
4081 if (TREE_CODE (type
) == ARRAY_TYPE
)
4083 error ("`%s' declared as function returning an array", name
);
4084 type
= integer_type_node
;
4087 /* Construct the function type and go to the next
4088 inner layer of declarator. */
4089 arg_info
= TREE_OPERAND (declarator
, 1);
4090 arg_types
= grokparms (arg_info
, really_funcdef
);
4092 /* Type qualifiers before the return type of the function
4093 qualify the return type, not the function type. */
4096 /* Type qualifiers on a function return type are normally
4097 permitted by the standard but have no effect, so give a
4098 warning at -Wextra. Qualifiers on a void return type have
4099 meaning as a GNU extension, and are banned on function
4100 definitions in ISO C. FIXME: strictly we shouldn't
4101 pedwarn for qualified void return types except on function
4102 definitions, but not doing so could lead to the undesirable
4103 state of a "volatile void" function return type not being
4104 warned about, and a use of the function being compiled
4105 with GNU semantics, with no diagnostics under -pedantic. */
4106 if (VOID_TYPE_P (type
) && pedantic
&& !in_system_header
)
4107 pedwarn ("ISO C forbids qualified void function return type");
4108 else if (extra_warnings
4109 && !(VOID_TYPE_P (type
)
4110 && type_quals
== TYPE_QUAL_VOLATILE
))
4111 warning ("type qualifiers ignored on function return type");
4113 type
= c_build_qualified_type (type
, type_quals
);
4115 type_quals
= TYPE_UNQUALIFIED
;
4117 type
= build_function_type (type
, arg_types
);
4118 declarator
= TREE_OPERAND (declarator
, 0);
4120 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4121 the formal parameter list of this FUNCTION_TYPE to point to
4122 the FUNCTION_TYPE node itself. */
4127 for (link
= ARG_INFO_TAGS (arg_info
);
4129 link
= TREE_CHAIN (link
))
4130 TYPE_CONTEXT (TREE_VALUE (link
)) = type
;
4133 else if (TREE_CODE (declarator
) == INDIRECT_REF
)
4135 /* Merge any constancy or volatility into the target type
4138 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
4140 pedwarn ("ISO C forbids qualified function types");
4142 type
= c_build_qualified_type (type
, type_quals
);
4143 type_quals
= TYPE_UNQUALIFIED
;
4146 type
= build_pointer_type (type
);
4148 /* Process a list of type modifier keywords
4149 (such as const or volatile) that were given inside the `*'. */
4151 if (TREE_TYPE (declarator
))
4159 for (typemodlist
= TREE_TYPE (declarator
); typemodlist
;
4160 typemodlist
= TREE_CHAIN (typemodlist
))
4162 tree qualifier
= TREE_VALUE (typemodlist
);
4164 if (C_IS_RESERVED_WORD (qualifier
))
4166 if (C_RID_CODE (qualifier
) == RID_CONST
)
4168 else if (C_RID_CODE (qualifier
) == RID_VOLATILE
)
4170 else if (C_RID_CODE (qualifier
) == RID_RESTRICT
)
4180 error ("invalid type modifier within pointer declarator");
4181 if (pedantic
&& !flag_isoc99
)
4184 pedwarn ("duplicate `const'");
4186 pedwarn ("duplicate `volatile'");
4188 pedwarn ("duplicate `restrict'");
4191 type_quals
= ((constp
? TYPE_QUAL_CONST
: 0)
4192 | (restrictp
? TYPE_QUAL_RESTRICT
: 0)
4193 | (volatilep
? TYPE_QUAL_VOLATILE
: 0));
4196 declarator
= TREE_OPERAND (declarator
, 0);
4203 /* Now TYPE has the actual type. */
4205 /* Did array size calculations overflow? */
4207 if (TREE_CODE (type
) == ARRAY_TYPE
4208 && COMPLETE_TYPE_P (type
)
4209 && TREE_OVERFLOW (TYPE_SIZE (type
)))
4211 error ("size of array `%s' is too large", name
);
4212 /* If we proceed with the array type as it is, we'll eventually
4213 crash in tree_low_cst(). */
4214 type
= error_mark_node
;
4217 /* If this is declaring a typedef name, return a TYPE_DECL. */
4219 if (specbits
& (1 << (int) RID_TYPEDEF
))
4222 /* Note that the grammar rejects storage classes
4223 in typenames, fields or parameters */
4224 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
4226 pedwarn ("ISO C forbids qualified function types");
4228 type
= c_build_qualified_type (type
, type_quals
);
4229 decl
= build_decl (TYPE_DECL
, declarator
, type
);
4230 if ((specbits
& (1 << (int) RID_SIGNED
))
4231 || (typedef_decl
&& C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl
)))
4232 C_TYPEDEF_EXPLICITLY_SIGNED (decl
) = 1;
4233 decl_attributes (&decl
, returned_attrs
, 0);
4237 /* Detect the case of an array type of unspecified size
4238 which came, as such, direct from a typedef name.
4239 We must copy the type, so that each identifier gets
4240 a distinct type, so that each identifier's size can be
4241 controlled separately by its own initializer. */
4243 if (type
!= 0 && typedef_type
!= 0
4244 && TREE_CODE (type
) == ARRAY_TYPE
&& TYPE_DOMAIN (type
) == 0
4245 && TYPE_MAIN_VARIANT (type
) == TYPE_MAIN_VARIANT (typedef_type
))
4247 type
= build_array_type (TREE_TYPE (type
), 0);
4249 C_TYPE_VARIABLE_SIZE (type
) = 1;
4252 /* If this is a type name (such as, in a cast or sizeof),
4253 compute the type and return it now. */
4255 if (decl_context
== TYPENAME
)
4257 /* Note that the grammar rejects storage classes
4258 in typenames, fields or parameters */
4259 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
4261 pedwarn ("ISO C forbids const or volatile function types");
4263 type
= c_build_qualified_type (type
, type_quals
);
4264 decl_attributes (&type
, returned_attrs
, 0);
4268 /* Aside from typedefs and type names (handle above),
4269 `void' at top level (not within pointer)
4270 is allowed only in public variables.
4271 We don't complain about parms either, but that is because
4272 a better error message can be made later. */
4274 if (VOID_TYPE_P (type
) && decl_context
!= PARM
4275 && ! ((decl_context
!= FIELD
&& TREE_CODE (type
) != FUNCTION_TYPE
)
4276 && ((specbits
& (1 << (int) RID_EXTERN
))
4277 || (current_scope
== file_scope
4279 & ((1 << (int) RID_STATIC
) | (1 << (int) RID_REGISTER
)))))))
4281 error ("variable or field `%s' declared void", name
);
4282 type
= integer_type_node
;
4285 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4286 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4291 if (decl_context
== PARM
)
4293 tree type_as_written
;
4296 /* A parameter declared as an array of T is really a pointer to T.
4297 One declared as a function is really a pointer to a function. */
4299 if (TREE_CODE (type
) == ARRAY_TYPE
)
4301 /* Transfer const-ness of array into that of type pointed to. */
4302 type
= TREE_TYPE (type
);
4304 type
= c_build_qualified_type (type
, type_quals
);
4305 type
= build_pointer_type (type
);
4306 type_quals
= TYPE_UNQUALIFIED
;
4307 if (array_ptr_quals
)
4309 tree new_ptr_quals
, new_ptr_attrs
;
4311 split_specs_attrs (array_ptr_quals
, &new_ptr_quals
, &new_ptr_attrs
);
4312 /* We don't yet implement attributes in this context. */
4313 if (new_ptr_attrs
!= NULL_TREE
)
4314 warning ("attributes in parameter array declarator ignored");
4319 for (; new_ptr_quals
; new_ptr_quals
= TREE_CHAIN (new_ptr_quals
))
4321 tree qualifier
= TREE_VALUE (new_ptr_quals
);
4323 if (C_IS_RESERVED_WORD (qualifier
))
4325 if (C_RID_CODE (qualifier
) == RID_CONST
)
4327 else if (C_RID_CODE (qualifier
) == RID_VOLATILE
)
4329 else if (C_RID_CODE (qualifier
) == RID_RESTRICT
)
4339 error ("invalid type modifier within array declarator");
4341 type_quals
= ((constp
? TYPE_QUAL_CONST
: 0)
4342 | (restrictp
? TYPE_QUAL_RESTRICT
: 0)
4343 | (volatilep
? TYPE_QUAL_VOLATILE
: 0));
4347 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
4349 if (pedantic
&& type_quals
)
4350 pedwarn ("ISO C forbids qualified function types");
4352 type
= c_build_qualified_type (type
, type_quals
);
4353 type
= build_pointer_type (type
);
4354 type_quals
= TYPE_UNQUALIFIED
;
4356 else if (type_quals
)
4357 type
= c_build_qualified_type (type
, type_quals
);
4359 type_as_written
= type
;
4361 decl
= build_decl (PARM_DECL
, declarator
, type
);
4363 C_DECL_VARIABLE_SIZE (decl
) = 1;
4365 /* Compute the type actually passed in the parmlist,
4366 for the case where there is no prototype.
4367 (For example, shorts and chars are passed as ints.)
4368 When there is a prototype, this is overridden later. */
4370 if (type
== error_mark_node
)
4371 promoted_type
= type
;
4373 promoted_type
= c_type_promotes_to (type
);
4375 DECL_ARG_TYPE (decl
) = promoted_type
;
4376 DECL_ARG_TYPE_AS_WRITTEN (decl
) = type_as_written
;
4378 else if (decl_context
== FIELD
)
4380 /* Structure field. It may not be a function. */
4382 if (TREE_CODE (type
) == FUNCTION_TYPE
)
4384 error ("field `%s' declared as a function", name
);
4385 type
= build_pointer_type (type
);
4387 else if (TREE_CODE (type
) != ERROR_MARK
4388 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type
))
4390 error ("field `%s' has incomplete type", name
);
4391 type
= error_mark_node
;
4393 /* Move type qualifiers down to element of an array. */
4394 if (TREE_CODE (type
) == ARRAY_TYPE
&& type_quals
)
4395 type
= build_array_type (c_build_qualified_type (TREE_TYPE (type
),
4397 TYPE_DOMAIN (type
));
4398 decl
= build_decl (FIELD_DECL
, declarator
, type
);
4399 DECL_NONADDRESSABLE_P (decl
) = bitfield
;
4402 C_DECL_VARIABLE_SIZE (decl
) = 1;
4404 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
4406 /* Every function declaration is "external"
4407 except for those which are inside a function body
4408 in which `auto' is used.
4409 That is a case not specified by ANSI C,
4410 and we use it for forward declarations for nested functions. */
4411 int extern_ref
= (!(specbits
& (1 << (int) RID_AUTO
))
4412 || current_scope
== file_scope
);
4414 if (specbits
& (1 << (int) RID_AUTO
)
4415 && (pedantic
|| current_scope
== file_scope
))
4416 pedwarn ("invalid storage class for function `%s'", name
);
4417 if (specbits
& (1 << (int) RID_REGISTER
))
4418 error ("invalid storage class for function `%s'", name
);
4419 if (specbits
& (1 << (int) RID_THREAD
))
4420 error ("invalid storage class for function `%s'", name
);
4421 /* Function declaration not at file scope.
4422 Storage classes other than `extern' are not allowed
4423 and `extern' makes no difference. */
4424 if (current_scope
!= file_scope
4425 && (specbits
& ((1 << (int) RID_STATIC
) | (1 << (int) RID_INLINE
)))
4427 pedwarn ("invalid storage class for function `%s'", name
);
4429 decl
= build_decl (FUNCTION_DECL
, declarator
, type
);
4430 decl
= build_decl_attribute_variant (decl
, decl_attr
);
4432 DECL_LANG_SPECIFIC (decl
)
4433 = ggc_alloc_cleared (sizeof (struct lang_decl
));
4435 if (pedantic
&& type_quals
&& ! DECL_IN_SYSTEM_HEADER (decl
))
4436 pedwarn ("ISO C forbids qualified function types");
4438 /* GNU C interprets a `volatile void' return type to indicate
4439 that the function does not return. */
4440 if ((type_quals
& TYPE_QUAL_VOLATILE
)
4441 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl
))))
4442 warning ("`noreturn' function returns non-void value");
4445 DECL_EXTERNAL (decl
) = 1;
4446 /* Record absence of global scope for `static' or `auto'. */
4448 = !(specbits
& ((1 << (int) RID_STATIC
) | (1 << (int) RID_AUTO
)));
4450 /* For a function definition, record the argument information
4451 block in DECL_ARGUMENTS where store_parm_decls will look
4454 DECL_ARGUMENTS (decl
) = arg_info
;
4457 C_FUNCTION_IMPLICIT_INT (decl
) = 1;
4459 /* Record presence of `inline', if it is reasonable. */
4460 if (MAIN_NAME_P (declarator
))
4463 warning ("cannot inline function `main'");
4467 /* Record that the function is declared `inline'. */
4468 DECL_DECLARED_INLINE_P (decl
) = 1;
4470 /* Do not mark bare declarations as DECL_INLINE. Doing so
4471 in the presence of multiple declarations can result in
4472 the abstract origin pointing between the declarations,
4473 which will confuse dwarf2out. */
4476 DECL_INLINE (decl
) = 1;
4477 if (specbits
& (1 << (int) RID_EXTERN
))
4478 current_extern_inline
= 1;
4481 /* If -finline-functions, assume it can be inlined. This does
4482 two things: let the function be deferred until it is actually
4483 needed, and let dwarf2 know that the function is inlinable. */
4484 else if (flag_inline_trees
== 2 && initialized
)
4485 DECL_INLINE (decl
) = 1;
4489 /* It's a variable. */
4490 /* An uninitialized decl with `extern' is a reference. */
4491 int extern_ref
= !initialized
&& (specbits
& (1 << (int) RID_EXTERN
));
4493 /* Move type qualifiers down to element of an array. */
4494 if (TREE_CODE (type
) == ARRAY_TYPE
&& type_quals
)
4496 int saved_align
= TYPE_ALIGN(type
);
4497 type
= build_array_type (c_build_qualified_type (TREE_TYPE (type
),
4499 TYPE_DOMAIN (type
));
4500 TYPE_ALIGN (type
) = saved_align
;
4502 else if (type_quals
)
4503 type
= c_build_qualified_type (type
, type_quals
);
4505 /* C99 6.2.2p7: It is invalid (compile-time undefined
4506 behavior) to create an 'extern' declaration for a
4507 variable if there is a global declaration that is
4508 'static' and the global declaration is not visible.
4509 (If the static declaration _is_ currently visible,
4510 the 'extern' declaration is taken to refer to that decl.) */
4511 if (extern_ref
&& current_scope
!= file_scope
)
4513 tree global_decl
= identifier_global_value (declarator
);
4514 tree visible_decl
= lookup_name (declarator
);
4517 && global_decl
!= visible_decl
4518 && TREE_CODE (global_decl
) == VAR_DECL
4519 && !TREE_PUBLIC (global_decl
))
4520 error ("variable previously declared 'static' redeclared "
4524 decl
= build_decl (VAR_DECL
, declarator
, type
);
4526 C_DECL_VARIABLE_SIZE (decl
) = 1;
4529 pedwarn ("%Jvariable '%D' declared `inline'", decl
, decl
);
4531 DECL_EXTERNAL (decl
) = extern_ref
;
4533 /* At file scope, the presence of a `static' or `register' storage
4534 class specifier, or the absence of all storage class specifiers
4535 makes this declaration a definition (perhaps tentative). Also,
4536 the absence of both `static' and `register' makes it public. */
4537 if (current_scope
== file_scope
)
4539 TREE_PUBLIC (decl
) = !(specbits
& ((1 << (int) RID_STATIC
)
4540 | (1 << (int) RID_REGISTER
)));
4541 TREE_STATIC (decl
) = !extern_ref
;
4543 /* Not at file scope, only `static' makes a static definition. */
4546 TREE_STATIC (decl
) = (specbits
& (1 << (int) RID_STATIC
)) != 0;
4547 TREE_PUBLIC (decl
) = extern_ref
;
4550 if (specbits
& 1 << (int) RID_THREAD
)
4552 if (targetm
.have_tls
)
4553 DECL_THREAD_LOCAL (decl
) = 1;
4555 /* A mere warning is sure to result in improper semantics
4556 at runtime. Don't bother to allow this to compile. */
4557 error ("thread-local storage not supported for this target");
4561 /* Record `register' declaration for warnings on &
4562 and in case doing stupid register allocation. */
4564 if (specbits
& (1 << (int) RID_REGISTER
))
4566 C_DECL_REGISTER (decl
) = 1;
4567 DECL_REGISTER (decl
) = 1;
4570 /* Record constancy and volatility. */
4571 c_apply_type_quals_to_decl (type_quals
, decl
);
4573 /* If a type has volatile components, it should be stored in memory.
4574 Otherwise, the fact that those components are volatile
4575 will be ignored, and would even crash the compiler. */
4576 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl
)))
4578 /* It is not an error for a structure with volatile fields to
4579 be declared register, but reset DECL_REGISTER since it
4580 cannot actually go in a register. */
4581 int was_reg
= C_DECL_REGISTER (decl
);
4582 C_DECL_REGISTER (decl
) = 0;
4583 DECL_REGISTER (decl
) = 0;
4584 c_mark_addressable (decl
);
4585 C_DECL_REGISTER (decl
) = was_reg
;
4588 #ifdef ENABLE_CHECKING
4589 /* This is the earliest point at which we might know the assembler
4590 name of a variable. Thus, if it's known before this, die horribly. */
4591 if (DECL_ASSEMBLER_NAME_SET_P (decl
))
4595 decl_attributes (&decl
, returned_attrs
, 0);
4601 /* Decode the parameter-list info for a function type or function definition.
4602 The argument is the value returned by `get_parm_info' (or made in parse.y
4603 if there is an identifier list instead of a parameter decl list).
4604 These two functions are separate because when a function returns
4605 or receives functions then each is called multiple times but the order
4606 of calls is different. The last call to `grokparms' is always the one
4607 that contains the formal parameter names of a function definition.
4609 Return a list of arg types to use in the FUNCTION_TYPE for this function.
4611 FUNCDEF_FLAG is nonzero for a function definition, 0 for
4612 a mere declaration. A nonempty identifier-list gets an error message
4613 when FUNCDEF_FLAG is zero. */
4616 grokparms (tree arg_info
, int funcdef_flag
)
4618 tree arg_types
= ARG_INFO_TYPES (arg_info
);
4620 if (warn_strict_prototypes
&& arg_types
== 0 && !funcdef_flag
4621 && !in_system_header
)
4622 warning ("function declaration isn't a prototype");
4624 if (arg_types
== error_mark_node
)
4625 return 0; /* don't set TYPE_ARG_TYPES in this case */
4627 else if (arg_types
&& TREE_CODE (TREE_VALUE (arg_types
)) == IDENTIFIER_NODE
)
4630 pedwarn ("parameter names (without types) in function declaration");
4632 ARG_INFO_PARMS (arg_info
) = ARG_INFO_TYPES (arg_info
);
4633 ARG_INFO_TYPES (arg_info
) = 0;
4638 tree parm
, type
, typelt
;
4639 unsigned int parmno
;
4641 /* If the arg types are incomplete in a declaration, they must
4642 include undefined tags. These tags can never be defined in
4643 the scope of the declaration, so the types can never be
4644 completed, and no call can be compiled successfully. */
4646 for (parm
= ARG_INFO_PARMS (arg_info
), typelt
= arg_types
, parmno
= 1;
4648 parm
= TREE_CHAIN (parm
), typelt
= TREE_CHAIN (typelt
), parmno
++)
4650 type
= TREE_VALUE (typelt
);
4651 if (type
== error_mark_node
)
4654 if (!COMPLETE_TYPE_P (type
))
4658 if (DECL_NAME (parm
))
4659 error ("%Jparameter %u ('%D') has incomplete type",
4660 parm
, parmno
, parm
);
4662 error ("%Jparameter %u has incomplete type",
4665 TREE_VALUE (typelt
) = error_mark_node
;
4666 TREE_TYPE (parm
) = error_mark_node
;
4670 if (DECL_NAME (parm
))
4671 warning ("%Jparameter %u ('%D') has incomplete type",
4672 parm
, parmno
, parm
);
4674 warning ("%Jparameter %u has incomplete type",
4683 /* Take apart the current scope and return a tree_list node with info
4684 on a parameter list just parsed. This tree_list node should be
4685 examined using the ARG_INFO_* macros, defined above:
4687 ARG_INFO_PARMS: a list of parameter decls.
4688 ARG_INFO_TAGS: a list of structure, union and enum tags defined.
4689 ARG_INFO_TYPES: a list of argument types to go in the FUNCTION_TYPE.
4690 ARG_INFO_OTHERS: a list of non-parameter decls (notably enumeration
4691 constants) defined with the parameters.
4693 This tree_list node is later fed to 'grokparms' and 'store_parm_decls'.
4695 ELLIPSIS being true means the argument list ended in '...' so don't
4696 append a sentinel (void_list_node) to the end of the type-list. */
4699 get_parm_info (bool ellipsis
)
4701 struct c_binding
*b
= current_scope
->bindings
;
4702 tree arg_info
= make_node (TREE_LIST
);
4708 static bool explained_incomplete_types
= false;
4709 bool gave_void_only_once_err
= false;
4711 /* The bindings in this scope must not get put into a block.
4712 We will take care of deleting the binding nodes. */
4713 current_scope
->bindings
= 0;
4715 /* This function is only called if there was *something* on the
4717 #ifdef ENABLE_CHECKING
4722 /* A parameter list consisting solely of 'void' indicates that the
4723 function takes no arguments. But if the 'void' is qualified
4724 (by 'const' or 'volatile'), or has a storage class specifier
4725 ('register'), then the behavior is undefined; issue an error.
4726 Typedefs for 'void' are OK (see DR#157). */
4727 if (b
->prev
== 0 /* one binding */
4728 && TREE_CODE (b
->decl
) == PARM_DECL
/* which is a parameter */
4729 && !DECL_NAME (b
->decl
) /* anonymous */
4730 && VOID_TYPE_P (TREE_TYPE (b
->decl
))) /* of void type */
4732 if (TREE_THIS_VOLATILE (b
->decl
)
4733 || TREE_READONLY (b
->decl
)
4734 || C_DECL_REGISTER (b
->decl
))
4735 error ("'void' as only parameter may not be qualified");
4737 /* There cannot be an ellipsis. */
4739 error ("'void' must be the only parameter");
4741 ARG_INFO_TYPES (arg_info
) = void_list_node
;
4746 types
= void_list_node
;
4748 /* Break up the bindings list into parms, tags, types, and others;
4749 apply sanity checks; purge the name-to-decl bindings. */
4752 tree decl
= b
->decl
;
4753 tree type
= TREE_TYPE (decl
);
4754 const char *keyword
;
4756 switch (TREE_CODE (decl
))
4761 #ifdef ENABLE_CHECKING
4762 if (I_SYMBOL_BINDING (b
->id
) != b
) abort ();
4764 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
4767 /* Check for forward decls that never got their actual decl. */
4768 if (TREE_ASM_WRITTEN (decl
))
4769 error ("%Jparameter '%D' has just a forward declaration",
4771 /* Check for (..., void, ...) and issue an error. */
4772 else if (VOID_TYPE_P (type
) && !DECL_NAME (decl
))
4774 if (!gave_void_only_once_err
)
4776 error ("'void' must be the only parameter");
4777 gave_void_only_once_err
= true;
4782 /* Valid parameter, add it to the list. */
4783 TREE_CHAIN (decl
) = parms
;
4786 /* Since there is a prototype, args are passed in their
4787 declared types. The back end may override this later. */
4788 DECL_ARG_TYPE (decl
) = type
;
4789 types
= tree_cons (0, type
, types
);
4793 case ENUMERAL_TYPE
: keyword
= "enum"; goto tag
;
4794 case UNION_TYPE
: keyword
= "union"; goto tag
;
4795 case RECORD_TYPE
: keyword
= "struct"; goto tag
;
4797 /* Types may not have tag-names, in which case the type
4798 appears in the bindings list with b->id NULL. */
4801 #ifdef ENABLE_CHECKING
4802 if (I_TAG_BINDING (b
->id
) != b
) abort ();
4804 I_TAG_BINDING (b
->id
) = b
->shadowed
;
4807 /* Warn about any struct, union or enum tags defined in a
4808 parameter list. The scope of such types is limited to
4809 the parameter list, which is rarely if ever desirable
4810 (it's impossible to call such a function with type-
4811 correct arguments). An anonymous union parm type is
4812 meaningful as a GNU extension, so don't warn for that. */
4813 if (TREE_CODE (decl
) != UNION_TYPE
|| b
->id
!= 0)
4816 /* The %s will be one of 'struct', 'union', or 'enum'. */
4817 warning ("'%s %E' declared inside parameter list",
4820 /* The %s will be one of 'struct', 'union', or 'enum'. */
4821 warning ("anonymous %s declared inside parameter list",
4824 if (! explained_incomplete_types
)
4826 warning ("its scope is only this definition or declaration,"
4827 " which is probably not what you want");
4828 explained_incomplete_types
= true;
4832 tags
= tree_cons (b
->id
, decl
, tags
);
4837 /* CONST_DECLs appear here when we have an embedded enum,
4838 and TYPE_DECLs appear here when we have an embedded struct
4839 or union. No warnings for this - we already warned about the
4841 TREE_CHAIN (decl
) = others
;
4846 /* error_mark_node appears here when we have an undeclared
4847 variable. Just throw it away. */
4850 #ifdef ENABLE_CHECKING
4851 if (I_SYMBOL_BINDING (b
->id
) != b
) abort ();
4853 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
4857 /* Other things that might be encountered. */
4865 b
= free_binding_and_advance (b
);
4868 ARG_INFO_PARMS (arg_info
) = parms
;
4869 ARG_INFO_TAGS (arg_info
) = tags
;
4870 ARG_INFO_TYPES (arg_info
) = types
;
4871 ARG_INFO_OTHERS (arg_info
) = others
;
4875 /* Get the struct, enum or union (CODE says which) with tag NAME.
4876 Define the tag as a forward-reference if it is not defined. */
4879 xref_tag (enum tree_code code
, tree name
)
4881 /* If a cross reference is requested, look up the type
4882 already defined for this tag and return it. */
4884 tree ref
= lookup_tag (code
, name
, 0);
4885 /* If this is the right type of tag, return what we found.
4886 (This reference will be shadowed by shadow_tag later if appropriate.)
4887 If this is the wrong type of tag, do not return it. If it was the
4888 wrong type in the same scope, we will have had an error
4889 message already; if in a different scope and declaring
4890 a name, pending_xref_error will give an error message; but if in a
4891 different scope and not declaring a name, this tag should
4892 shadow the previous declaration of a different type of tag, and
4893 this would not work properly if we return the reference found.
4894 (For example, with "struct foo" in an outer scope, "union foo;"
4895 must shadow that tag with a new one of union type.) */
4896 if (ref
&& TREE_CODE (ref
) == code
)
4899 /* If no such tag is yet defined, create a forward-reference node
4900 and record it as the "definition".
4901 When a real declaration of this type is found,
4902 the forward-reference will be altered into a real type. */
4904 ref
= make_node (code
);
4905 if (code
== ENUMERAL_TYPE
)
4907 /* Give the type a default layout like unsigned int
4908 to avoid crashing if it does not get defined. */
4909 TYPE_MODE (ref
) = TYPE_MODE (unsigned_type_node
);
4910 TYPE_ALIGN (ref
) = TYPE_ALIGN (unsigned_type_node
);
4911 TYPE_USER_ALIGN (ref
) = 0;
4912 TYPE_UNSIGNED (ref
) = 1;
4913 TYPE_PRECISION (ref
) = TYPE_PRECISION (unsigned_type_node
);
4914 TYPE_MIN_VALUE (ref
) = TYPE_MIN_VALUE (unsigned_type_node
);
4915 TYPE_MAX_VALUE (ref
) = TYPE_MAX_VALUE (unsigned_type_node
);
4918 pushtag (name
, ref
);
4923 /* Make sure that the tag NAME is defined *in the current scope*
4924 at least as a forward reference.
4925 CODE says which kind of tag NAME ought to be. */
4928 start_struct (enum tree_code code
, tree name
)
4930 /* If there is already a tag defined at this scope
4931 (as a forward reference), just return it. */
4936 ref
= lookup_tag (code
, name
, 1);
4937 if (ref
&& TREE_CODE (ref
) == code
)
4939 if (TYPE_FIELDS (ref
))
4941 if (code
== UNION_TYPE
)
4942 error ("redefinition of `union %s'", IDENTIFIER_POINTER (name
));
4944 error ("redefinition of `struct %s'", IDENTIFIER_POINTER (name
));
4949 /* Otherwise create a forward-reference just so the tag is in scope. */
4951 ref
= make_node (code
);
4952 pushtag (name
, ref
);
4955 C_TYPE_BEING_DEFINED (ref
) = 1;
4956 TYPE_PACKED (ref
) = flag_pack_struct
;
4960 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
4961 of a structure component, returning a FIELD_DECL node.
4962 WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
4964 This is done during the parsing of the struct declaration.
4965 The FIELD_DECL nodes are chained together and the lot of them
4966 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
4969 grokfield (tree declarator
, tree declspecs
, tree width
)
4973 if (declarator
== NULL_TREE
&& width
== NULL_TREE
)
4975 /* This is an unnamed decl.
4977 If we have something of the form "union { list } ;" then this
4978 is the anonymous union extension. Similarly for struct.
4980 If this is something of the form "struct foo;", then
4981 If MS extensions are enabled, this is handled as an
4983 Otherwise this is a forward declaration of a structure tag.
4985 If this is something of the form "foo;" and foo is a TYPE_DECL, then
4986 If MS extensions are enabled and foo names a structure, then
4987 again this is an anonymous struct.
4988 Otherwise this is an error.
4990 Oh what a horrid tangled web we weave. I wonder if MS consciously
4991 took this from Plan 9 or if it was an accident of implementation
4992 that took root before someone noticed the bug... */
4994 tree type
= TREE_VALUE (declspecs
);
4996 if (flag_ms_extensions
&& TREE_CODE (type
) == TYPE_DECL
)
4997 type
= TREE_TYPE (type
);
4998 if (TREE_CODE (type
) == RECORD_TYPE
|| TREE_CODE (type
) == UNION_TYPE
)
5000 if (flag_ms_extensions
)
5003 goto warn_unnamed_field
;
5004 else if (TYPE_NAME (type
) == NULL
)
5007 goto warn_unnamed_field
;
5012 warning ("declaration does not declare anything");
5017 value
= grokdeclarator (declarator
, declspecs
, FIELD
, 0,
5018 width
? &width
: NULL
);
5020 finish_decl (value
, NULL_TREE
, NULL_TREE
);
5021 DECL_INITIAL (value
) = width
;
5026 /* Generate an error for any duplicate field names in FIELDLIST. Munge
5027 the list such that this does not present a problem later. */
5030 detect_field_duplicates (tree fieldlist
)
5035 /* First, see if there are more than "a few" fields.
5036 This is trivially true if there are zero or one fields. */
5039 x
= TREE_CHAIN (fieldlist
);
5045 } while (timeout
> 0 && x
);
5047 /* If there were "few" fields, avoid the overhead of allocating
5048 a hash table. Instead just do the nested traversal thing. */
5051 for (x
= TREE_CHAIN (fieldlist
); x
; x
= TREE_CHAIN (x
))
5054 for (y
= fieldlist
; y
!= x
; y
= TREE_CHAIN (y
))
5055 if (DECL_NAME (y
) == DECL_NAME (x
))
5057 error ("%Jduplicate member '%D'", x
, x
);
5058 DECL_NAME (x
) = NULL_TREE
;
5064 htab_t htab
= htab_create (37, htab_hash_pointer
, htab_eq_pointer
, NULL
);
5067 for (x
= fieldlist
; x
; x
= TREE_CHAIN (x
))
5068 if ((y
= DECL_NAME (x
)) != 0)
5070 slot
= htab_find_slot (htab
, y
, INSERT
);
5073 error ("%Jduplicate member '%D'", x
, x
);
5074 DECL_NAME (x
) = NULL_TREE
;
5083 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5084 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5085 ATTRIBUTES are attributes to be applied to the structure. */
5088 finish_struct (tree t
, tree fieldlist
, tree attributes
)
5091 bool toplevel
= file_scope
== current_scope
;
5092 int saw_named_field
;
5094 /* If this type was previously laid out as a forward reference,
5095 make sure we lay it out again. */
5099 decl_attributes (&t
, attributes
, (int) ATTR_FLAG_TYPE_IN_PLACE
);
5103 for (x
= fieldlist
; x
; x
= TREE_CHAIN (x
))
5104 if (DECL_NAME (x
) != 0)
5108 pedwarn ("%s has no %s",
5109 TREE_CODE (t
) == UNION_TYPE
? _("union") : _("struct"),
5110 fieldlist
? _("named members") : _("members"));
5113 /* Install struct as DECL_CONTEXT of each field decl.
5114 Also process specified field sizes,m which is found in the DECL_INITIAL.
5115 Store 0 there, except for ": 0" fields (so we can find them
5116 and delete them, below). */
5118 saw_named_field
= 0;
5119 for (x
= fieldlist
; x
; x
= TREE_CHAIN (x
))
5121 DECL_CONTEXT (x
) = t
;
5122 DECL_PACKED (x
) |= TYPE_PACKED (t
);
5124 /* If any field is const, the structure type is pseudo-const. */
5125 if (TREE_READONLY (x
))
5126 C_TYPE_FIELDS_READONLY (t
) = 1;
5129 /* A field that is pseudo-const makes the structure likewise. */
5130 tree t1
= TREE_TYPE (x
);
5131 while (TREE_CODE (t1
) == ARRAY_TYPE
)
5132 t1
= TREE_TYPE (t1
);
5133 if ((TREE_CODE (t1
) == RECORD_TYPE
|| TREE_CODE (t1
) == UNION_TYPE
)
5134 && C_TYPE_FIELDS_READONLY (t1
))
5135 C_TYPE_FIELDS_READONLY (t
) = 1;
5138 /* Any field that is volatile means variables of this type must be
5139 treated in some ways as volatile. */
5140 if (TREE_THIS_VOLATILE (x
))
5141 C_TYPE_FIELDS_VOLATILE (t
) = 1;
5143 /* Any field of nominal variable size implies structure is too. */
5144 if (C_DECL_VARIABLE_SIZE (x
))
5145 C_TYPE_VARIABLE_SIZE (t
) = 1;
5147 /* Detect invalid nested redefinition. */
5148 if (TREE_TYPE (x
) == t
)
5149 error ("nested redefinition of `%s'",
5150 IDENTIFIER_POINTER (TYPE_NAME (t
)));
5152 if (DECL_INITIAL (x
))
5154 unsigned HOST_WIDE_INT width
= tree_low_cst (DECL_INITIAL (x
), 1);
5155 DECL_SIZE (x
) = bitsize_int (width
);
5156 DECL_BIT_FIELD (x
) = 1;
5157 SET_DECL_C_BIT_FIELD (x
);
5160 DECL_INITIAL (x
) = 0;
5162 /* Detect flexible array member in an invalid context. */
5163 if (TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
5164 && TYPE_SIZE (TREE_TYPE (x
)) == NULL_TREE
5165 && TYPE_DOMAIN (TREE_TYPE (x
)) != NULL_TREE
5166 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x
))) == NULL_TREE
)
5168 if (TREE_CODE (t
) == UNION_TYPE
)
5170 error ("%Jflexible array member in union", x
);
5171 TREE_TYPE (x
) = error_mark_node
;
5173 else if (TREE_CHAIN (x
) != NULL_TREE
)
5175 error ("%Jflexible array member not at end of struct", x
);
5176 TREE_TYPE (x
) = error_mark_node
;
5178 else if (! saw_named_field
)
5180 error ("%Jflexible array member in otherwise empty struct", x
);
5181 TREE_TYPE (x
) = error_mark_node
;
5185 if (pedantic
&& !in_system_header
&& TREE_CODE (t
) == RECORD_TYPE
5186 && flexible_array_type_p (TREE_TYPE (x
)))
5187 pedwarn ("%Jinvalid use of structure with flexible array member", x
);
5190 saw_named_field
= 1;
5193 detect_field_duplicates (fieldlist
);
5195 /* Now we have the nearly final fieldlist. Record it,
5196 then lay out the structure or union (including the fields). */
5198 TYPE_FIELDS (t
) = fieldlist
;
5202 /* Delete all zero-width bit-fields from the fieldlist. */
5204 tree
*fieldlistp
= &fieldlist
;
5206 if (TREE_CODE (*fieldlistp
) == FIELD_DECL
&& DECL_INITIAL (*fieldlistp
))
5207 *fieldlistp
= TREE_CHAIN (*fieldlistp
);
5209 fieldlistp
= &TREE_CHAIN (*fieldlistp
);
5212 /* Now we have the truly final field list.
5213 Store it in this type and in the variants. */
5215 TYPE_FIELDS (t
) = fieldlist
;
5217 /* If there are lots of fields, sort so we can look through them fast.
5218 We arbitrarily consider 16 or more elts to be "a lot". */
5223 for (x
= fieldlist
; x
; x
= TREE_CHAIN (x
))
5225 if (len
> 15 || DECL_NAME (x
) == NULL
)
5233 struct lang_type
*space
;
5234 struct sorted_fields_type
*space2
;
5236 len
+= list_length (x
);
5238 /* Use the same allocation policy here that make_node uses, to
5239 ensure that this lives as long as the rest of the struct decl.
5240 All decls in an inline function need to be saved. */
5242 space
= ggc_alloc_cleared (sizeof (struct lang_type
));
5243 space2
= ggc_alloc (sizeof (struct sorted_fields_type
) + len
* sizeof (tree
));
5247 field_array
= &space2
->elts
[0];
5248 for (x
= fieldlist
; x
; x
= TREE_CHAIN (x
))
5250 field_array
[len
++] = x
;
5252 /* If there is anonymous struct or union, break out of the loop. */
5253 if (DECL_NAME (x
) == NULL
)
5256 /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
5259 TYPE_LANG_SPECIFIC (t
) = space
;
5260 TYPE_LANG_SPECIFIC (t
)->s
->len
= len
;
5261 field_array
= TYPE_LANG_SPECIFIC (t
)->s
->elts
;
5262 qsort (field_array
, len
, sizeof (tree
), field_decl_cmp
);
5267 for (x
= TYPE_MAIN_VARIANT (t
); x
; x
= TYPE_NEXT_VARIANT (x
))
5269 TYPE_FIELDS (x
) = TYPE_FIELDS (t
);
5270 TYPE_LANG_SPECIFIC (x
) = TYPE_LANG_SPECIFIC (t
);
5271 TYPE_ALIGN (x
) = TYPE_ALIGN (t
);
5272 TYPE_USER_ALIGN (x
) = TYPE_USER_ALIGN (t
);
5275 /* If this was supposed to be a transparent union, but we can't
5276 make it one, warn and turn off the flag. */
5277 if (TREE_CODE (t
) == UNION_TYPE
5278 && TYPE_TRANSPARENT_UNION (t
)
5279 && TYPE_MODE (t
) != DECL_MODE (TYPE_FIELDS (t
)))
5281 TYPE_TRANSPARENT_UNION (t
) = 0;
5282 warning ("union cannot be made transparent");
5285 /* If this structure or union completes the type of any previous
5286 variable declaration, lay it out and output its rtl. */
5287 for (x
= C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t
));
5291 tree decl
= TREE_VALUE (x
);
5292 if (TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
5293 layout_array_type (TREE_TYPE (decl
));
5294 if (TREE_CODE (decl
) != TYPE_DECL
)
5296 layout_decl (decl
, 0);
5297 if (c_dialect_objc ())
5298 objc_check_decl (decl
);
5299 rest_of_decl_compilation (decl
, NULL
, toplevel
, 0);
5304 C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t
)) = 0;
5306 /* Finish debugging output for this type. */
5307 rest_of_type_compilation (t
, toplevel
);
5312 /* Lay out the type T, and its element type, and so on. */
5315 layout_array_type (tree t
)
5317 if (TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
)
5318 layout_array_type (TREE_TYPE (t
));
5322 /* Begin compiling the definition of an enumeration type.
5323 NAME is its name (or null if anonymous).
5324 Returns the type object, as yet incomplete.
5325 Also records info about it so that build_enumerator
5326 may be used to declare the individual values as they are read. */
5329 start_enum (tree name
)
5333 /* If this is the real definition for a previous forward reference,
5334 fill in the contents in the same object that used to be the
5335 forward reference. */
5338 enumtype
= lookup_tag (ENUMERAL_TYPE
, name
, 1);
5340 if (enumtype
== 0 || TREE_CODE (enumtype
) != ENUMERAL_TYPE
)
5342 enumtype
= make_node (ENUMERAL_TYPE
);
5343 pushtag (name
, enumtype
);
5346 C_TYPE_BEING_DEFINED (enumtype
) = 1;
5348 if (TYPE_VALUES (enumtype
) != 0)
5350 /* This enum is a named one that has been declared already. */
5351 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name
));
5353 /* Completely replace its old definition.
5354 The old enumerators remain defined, however. */
5355 TYPE_VALUES (enumtype
) = 0;
5358 enum_next_value
= integer_zero_node
;
5361 if (flag_short_enums
)
5362 TYPE_PACKED (enumtype
) = 1;
5367 /* After processing and defining all the values of an enumeration type,
5368 install their decls in the enumeration type and finish it off.
5369 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5370 and ATTRIBUTES are the specified attributes.
5371 Returns ENUMTYPE. */
5374 finish_enum (tree enumtype
, tree values
, tree attributes
)
5377 tree minnode
= 0, maxnode
= 0;
5378 int precision
, unsign
;
5379 bool toplevel
= (file_scope
== current_scope
);
5380 struct lang_type
*lt
;
5382 decl_attributes (&enumtype
, attributes
, (int) ATTR_FLAG_TYPE_IN_PLACE
);
5384 /* Calculate the maximum value of any enumerator in this type. */
5386 if (values
== error_mark_node
)
5387 minnode
= maxnode
= integer_zero_node
;
5390 minnode
= maxnode
= TREE_VALUE (values
);
5391 for (pair
= TREE_CHAIN (values
); pair
; pair
= TREE_CHAIN (pair
))
5393 tree value
= TREE_VALUE (pair
);
5394 if (tree_int_cst_lt (maxnode
, value
))
5396 if (tree_int_cst_lt (value
, minnode
))
5401 /* Construct the final type of this enumeration. It is the same
5402 as one of the integral types - the narrowest one that fits, except
5403 that normally we only go as narrow as int - and signed iff any of
5404 the values are negative. */
5405 unsign
= (tree_int_cst_sgn (minnode
) >= 0);
5406 precision
= MAX (min_precision (minnode
, unsign
),
5407 min_precision (maxnode
, unsign
));
5408 if (TYPE_PACKED (enumtype
) || precision
> TYPE_PRECISION (integer_type_node
))
5410 tem
= c_common_type_for_size (precision
, unsign
);
5413 warning ("enumeration values exceed range of largest integer");
5414 tem
= long_long_integer_type_node
;
5418 tem
= unsign
? unsigned_type_node
: integer_type_node
;
5420 TYPE_MIN_VALUE (enumtype
) = TYPE_MIN_VALUE (tem
);
5421 TYPE_MAX_VALUE (enumtype
) = TYPE_MAX_VALUE (tem
);
5422 TYPE_PRECISION (enumtype
) = TYPE_PRECISION (tem
);
5423 TYPE_UNSIGNED (enumtype
) = TYPE_UNSIGNED (tem
);
5424 TYPE_SIZE (enumtype
) = 0;
5425 layout_type (enumtype
);
5427 if (values
!= error_mark_node
)
5429 /* Change the type of the enumerators to be the enum type. We
5430 need to do this irrespective of the size of the enum, for
5431 proper type checking. Replace the DECL_INITIALs of the
5432 enumerators, and the value slots of the list, with copies
5433 that have the enum type; they cannot be modified in place
5434 because they may be shared (e.g. integer_zero_node) Finally,
5435 change the purpose slots to point to the names of the decls. */
5436 for (pair
= values
; pair
; pair
= TREE_CHAIN (pair
))
5438 tree enu
= TREE_PURPOSE (pair
);
5439 tree ini
= DECL_INITIAL (enu
);
5441 TREE_TYPE (enu
) = enumtype
;
5443 /* The ISO C Standard mandates enumerators to have type int,
5444 even though the underlying type of an enum type is
5445 unspecified. Here we convert any enumerators that fit in
5446 an int to type int, to avoid promotions to unsigned types
5447 when comparing integers with enumerators that fit in the
5448 int range. When -pedantic is given, build_enumerator()
5449 would have already taken care of those that don't fit. */
5450 if (int_fits_type_p (ini
, integer_type_node
))
5451 tem
= integer_type_node
;
5454 ini
= convert (tem
, ini
);
5456 DECL_INITIAL (enu
) = ini
;
5457 TREE_PURPOSE (pair
) = DECL_NAME (enu
);
5458 TREE_VALUE (pair
) = ini
;
5461 TYPE_VALUES (enumtype
) = values
;
5464 /* Record the min/max values so that we can warn about bit-field
5465 enumerations that are too small for the values. */
5466 lt
= ggc_alloc_cleared (sizeof (struct lang_type
));
5467 lt
->enum_min
= minnode
;
5468 lt
->enum_max
= maxnode
;
5469 TYPE_LANG_SPECIFIC (enumtype
) = lt
;
5471 /* Fix up all variant types of this enum type. */
5472 for (tem
= TYPE_MAIN_VARIANT (enumtype
); tem
; tem
= TYPE_NEXT_VARIANT (tem
))
5474 if (tem
== enumtype
)
5476 TYPE_VALUES (tem
) = TYPE_VALUES (enumtype
);
5477 TYPE_MIN_VALUE (tem
) = TYPE_MIN_VALUE (enumtype
);
5478 TYPE_MAX_VALUE (tem
) = TYPE_MAX_VALUE (enumtype
);
5479 TYPE_SIZE (tem
) = TYPE_SIZE (enumtype
);
5480 TYPE_SIZE_UNIT (tem
) = TYPE_SIZE_UNIT (enumtype
);
5481 TYPE_MODE (tem
) = TYPE_MODE (enumtype
);
5482 TYPE_PRECISION (tem
) = TYPE_PRECISION (enumtype
);
5483 TYPE_ALIGN (tem
) = TYPE_ALIGN (enumtype
);
5484 TYPE_USER_ALIGN (tem
) = TYPE_USER_ALIGN (enumtype
);
5485 TYPE_UNSIGNED (tem
) = TYPE_UNSIGNED (enumtype
);
5486 TYPE_LANG_SPECIFIC (tem
) = TYPE_LANG_SPECIFIC (enumtype
);
5489 /* Finish debugging output for this type. */
5490 rest_of_type_compilation (enumtype
, toplevel
);
5495 /* Build and install a CONST_DECL for one value of the
5496 current enumeration type (one that was begun with start_enum).
5497 Return a tree-list containing the CONST_DECL and its value.
5498 Assignment of sequential values by default is handled here. */
5501 build_enumerator (tree name
, tree value
)
5505 /* Validate and default VALUE. */
5507 /* Remove no-op casts from the value. */
5509 STRIP_TYPE_NOPS (value
);
5513 /* Don't issue more errors for error_mark_node (i.e. an
5514 undeclared identifier) - just ignore the value expression. */
5515 if (value
== error_mark_node
)
5517 else if (TREE_CODE (value
) != INTEGER_CST
)
5519 error ("enumerator value for '%E' is not an integer constant", name
);
5524 value
= default_conversion (value
);
5525 constant_expression_warning (value
);
5529 /* Default based on previous value. */
5530 /* It should no longer be possible to have NON_LVALUE_EXPR
5534 value
= enum_next_value
;
5536 error ("overflow in enumeration values");
5539 if (pedantic
&& ! int_fits_type_p (value
, integer_type_node
))
5541 pedwarn ("ISO C restricts enumerator values to range of `int'");
5542 /* XXX This causes -pedantic to change the meaning of the program.
5543 Remove? -zw 2004-03-15 */
5544 value
= convert (integer_type_node
, value
);
5547 /* Set basis for default for next value. */
5548 enum_next_value
= build_binary_op (PLUS_EXPR
, value
, integer_one_node
, 0);
5549 enum_overflow
= tree_int_cst_lt (enum_next_value
, value
);
5551 /* Now create a declaration for the enum value name. */
5553 type
= TREE_TYPE (value
);
5554 type
= c_common_type_for_size (MAX (TYPE_PRECISION (type
),
5555 TYPE_PRECISION (integer_type_node
)),
5556 (TYPE_PRECISION (type
)
5557 >= TYPE_PRECISION (integer_type_node
)
5558 && TYPE_UNSIGNED (type
)));
5560 decl
= build_decl (CONST_DECL
, name
, type
);
5561 DECL_INITIAL (decl
) = convert (type
, value
);
5564 return tree_cons (decl
, value
, NULL_TREE
);
5568 /* Create the FUNCTION_DECL for a function definition.
5569 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
5570 the declaration; they describe the function's name and the type it returns,
5571 but twisted together in a fashion that parallels the syntax of C.
5573 This function creates a binding context for the function body
5574 as well as setting up the FUNCTION_DECL in current_function_decl.
5576 Returns 1 on success. If the DECLARATOR is not suitable for a function
5577 (it defines a datum instead), we return 0, which tells
5578 yyparse to report a parse error. */
5581 start_function (tree declspecs
, tree declarator
, tree attributes
)
5583 tree decl1
, old_decl
;
5585 int old_immediate_size_expand
= immediate_size_expand
;
5587 current_function_returns_value
= 0; /* Assume, until we see it does. */
5588 current_function_returns_null
= 0;
5589 current_function_returns_abnormally
= 0;
5590 warn_about_return_type
= 0;
5591 current_extern_inline
= 0;
5592 c_in_iteration_stmt
= 0;
5595 /* Don't expand any sizes in the return type of the function. */
5596 immediate_size_expand
= 0;
5598 decl1
= grokdeclarator (declarator
, declspecs
, FUNCDEF
, 1, NULL
);
5600 /* If the declarator is not suitable for a function definition,
5601 cause a syntax error. */
5604 immediate_size_expand
= old_immediate_size_expand
;
5608 decl_attributes (&decl1
, attributes
, 0);
5610 if (DECL_DECLARED_INLINE_P (decl1
)
5611 && DECL_UNINLINABLE (decl1
)
5612 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1
)))
5613 warning ("%Jinline function '%D' given attribute noinline", decl1
, decl1
);
5615 announce_function (decl1
);
5617 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1
))))
5619 error ("return type is an incomplete type");
5620 /* Make it return void instead. */
5622 = build_function_type (void_type_node
,
5623 TYPE_ARG_TYPES (TREE_TYPE (decl1
)));
5626 if (warn_about_return_type
)
5627 pedwarn_c99 ("return type defaults to `int'");
5629 /* Make the init_value nonzero so pushdecl knows this is not tentative.
5630 error_mark_node is replaced below (in pop_scope) with the BLOCK. */
5631 DECL_INITIAL (decl1
) = error_mark_node
;
5633 /* If this definition isn't a prototype and we had a prototype declaration
5634 before, copy the arg type info from that prototype.
5635 But not if what we had before was a builtin function. */
5636 old_decl
= lookup_name_in_scope (DECL_NAME (decl1
), current_scope
);
5637 if (old_decl
!= 0 && TREE_CODE (TREE_TYPE (old_decl
)) == FUNCTION_TYPE
5638 && !DECL_BUILT_IN (old_decl
)
5639 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1
)))
5640 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl
))))
5641 && TYPE_ARG_TYPES (TREE_TYPE (decl1
)) == 0)
5643 TREE_TYPE (decl1
) = TREE_TYPE (old_decl
);
5644 current_function_prototype_locus
= DECL_SOURCE_LOCATION (old_decl
);
5647 /* Optionally warn of old-fashioned def with no previous prototype. */
5648 if (warn_strict_prototypes
5649 && TYPE_ARG_TYPES (TREE_TYPE (decl1
)) == 0
5650 && C_DECL_ISNT_PROTOTYPE (old_decl
))
5651 warning ("function declaration isn't a prototype");
5652 /* Optionally warn of any global def with no previous prototype. */
5653 else if (warn_missing_prototypes
5654 && TREE_PUBLIC (decl1
)
5655 && ! MAIN_NAME_P (DECL_NAME (decl1
))
5656 && C_DECL_ISNT_PROTOTYPE (old_decl
))
5657 warning ("%Jno previous prototype for '%D'", decl1
, decl1
);
5658 /* Optionally warn of any def with no previous prototype
5659 if the function has already been used. */
5660 else if (warn_missing_prototypes
5661 && old_decl
!= 0 && TREE_USED (old_decl
)
5662 && TYPE_ARG_TYPES (TREE_TYPE (old_decl
)) == 0)
5663 warning ("%J'%D' was used with no prototype before its definition",
5665 /* Optionally warn of any global def with no previous declaration. */
5666 else if (warn_missing_declarations
5667 && TREE_PUBLIC (decl1
)
5669 && ! MAIN_NAME_P (DECL_NAME (decl1
)))
5670 warning ("%Jno previous declaration for '%D'", decl1
, decl1
);
5671 /* Optionally warn of any def with no previous declaration
5672 if the function has already been used. */
5673 else if (warn_missing_declarations
5674 && old_decl
!= 0 && TREE_USED (old_decl
)
5675 && C_DECL_IMPLICIT (old_decl
))
5676 warning ("%J`%D' was used with no declaration before its definition",
5679 /* This is a definition, not a reference.
5680 So normally clear DECL_EXTERNAL.
5681 However, `extern inline' acts like a declaration
5682 except for defining how to inline. So set DECL_EXTERNAL in that case. */
5683 DECL_EXTERNAL (decl1
) = current_extern_inline
;
5685 /* This function exists in static storage.
5686 (This does not mean `static' in the C sense!) */
5687 TREE_STATIC (decl1
) = 1;
5689 /* A nested function is not global. */
5690 if (current_function_decl
!= 0)
5691 TREE_PUBLIC (decl1
) = 0;
5693 #ifdef ENABLE_CHECKING
5694 /* This is the earliest point at which we might know the assembler
5695 name of the function. Thus, if it's set before this, die horribly. */
5696 if (DECL_ASSEMBLER_NAME_SET_P (decl1
))
5700 /* If #pragma weak was used, mark the decl weak now. */
5701 if (current_scope
== file_scope
)
5702 maybe_apply_pragma_weak (decl1
);
5704 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
5705 if (warn_main
> 0 && MAIN_NAME_P (DECL_NAME (decl1
)))
5710 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1
)))
5711 != integer_type_node
)
5712 pedwarn ("%Jreturn type of '%D' is not `int'", decl1
, decl1
);
5714 for (args
= TYPE_ARG_TYPES (TREE_TYPE (decl1
)); args
;
5715 args
= TREE_CHAIN (args
))
5717 tree type
= args
? TREE_VALUE (args
) : 0;
5719 if (type
== void_type_node
)
5726 if (TYPE_MAIN_VARIANT (type
) != integer_type_node
)
5727 pedwarn ("%Jfirst argument of '%D' should be `int'",
5732 if (TREE_CODE (type
) != POINTER_TYPE
5733 || TREE_CODE (TREE_TYPE (type
)) != POINTER_TYPE
5734 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type
)))
5736 pedwarn ("%Jsecond argument of '%D' should be 'char **'",
5741 if (TREE_CODE (type
) != POINTER_TYPE
5742 || TREE_CODE (TREE_TYPE (type
)) != POINTER_TYPE
5743 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type
)))
5745 pedwarn ("%Jthird argument of '%D' should probably be "
5746 "'char **'", decl1
, decl1
);
5751 /* It is intentional that this message does not mention the third
5752 argument because it's only mentioned in an appendix of the
5754 if (argct
> 0 && (argct
< 2 || argct
> 3))
5755 pedwarn ("%J'%D' takes only zero or two arguments", decl1
, decl1
);
5757 if (! TREE_PUBLIC (decl1
))
5758 pedwarn ("%J'%D' is normally a non-static function", decl1
, decl1
);
5761 /* Record the decl so that the function name is defined.
5762 If we already have a decl for this name, and it is a FUNCTION_DECL,
5763 use the old decl. */
5765 current_function_decl
= pushdecl (decl1
);
5768 declare_parm_level ();
5770 restype
= TREE_TYPE (TREE_TYPE (current_function_decl
));
5771 /* Promote the value to int before returning it. */
5772 if (c_promoting_integer_type_p (restype
))
5774 /* It retains unsignedness if not really getting wider. */
5775 if (TYPE_UNSIGNED (restype
)
5776 && (TYPE_PRECISION (restype
)
5777 == TYPE_PRECISION (integer_type_node
)))
5778 restype
= unsigned_type_node
;
5780 restype
= integer_type_node
;
5782 DECL_RESULT (current_function_decl
)
5783 = build_decl (RESULT_DECL
, NULL_TREE
, restype
);
5785 immediate_size_expand
= old_immediate_size_expand
;
5787 start_fname_decls ();
5792 /* Subroutine of store_parm_decls which handles new-style function
5793 definitions (prototype format). The parms already have decls, so we
5794 need only record them as in effect and complain if any redundant
5795 old-style parm decls were written. */
5797 store_parm_decls_newstyle (tree fndecl
, tree arg_info
)
5800 tree parms
= ARG_INFO_PARMS (arg_info
);
5801 tree tags
= ARG_INFO_TAGS (arg_info
);
5802 tree others
= ARG_INFO_OTHERS (arg_info
);
5804 if (current_scope
->bindings
)
5806 error ("%Jold-style parameter declarations in prototyped "
5807 "function definition", fndecl
);
5809 /* Get rid of the old-style declarations. */
5813 /* Don't issue this warning for nested functions, and don't issue this
5814 warning if we got here because ARG_INFO_TYPES was error_mark_node
5815 (this happens when a function definition has just an ellipsis in
5816 its parameter list). */
5817 else if (warn_traditional
&& !in_system_header
&& !current_function_scope
5818 && ARG_INFO_TYPES (arg_info
) != error_mark_node
)
5819 warning ("%Jtraditional C rejects ISO C style function definitions",
5822 /* Now make all the parameter declarations visible in the function body.
5823 We can bypass most of the grunt work of pushdecl. */
5824 for (decl
= parms
; decl
; decl
= TREE_CHAIN (decl
))
5826 DECL_CONTEXT (decl
) = current_function_decl
;
5827 if (DECL_NAME (decl
))
5828 bind (DECL_NAME (decl
), decl
, current_scope
);
5830 error ("%Jparameter name omitted", decl
);
5833 /* Record the parameter list in the function declaration. */
5834 DECL_ARGUMENTS (fndecl
) = parms
;
5836 /* Now make all the ancillary declarations visible, likewise. */
5837 for (decl
= others
; decl
; decl
= TREE_CHAIN (decl
))
5839 DECL_CONTEXT (decl
) = current_function_decl
;
5840 if (DECL_NAME (decl
))
5841 bind (DECL_NAME (decl
), decl
, current_scope
);
5844 /* And all the tag declarations. */
5845 for (decl
= tags
; decl
; decl
= TREE_CHAIN (decl
))
5846 if (TREE_PURPOSE (decl
))
5847 bind (TREE_PURPOSE (decl
), TREE_VALUE (decl
), current_scope
);
5850 /* Subroutine of store_parm_decls which handles old-style function
5851 definitions (separate parameter list and declarations). */
5854 store_parm_decls_oldstyle (tree fndecl
, tree arg_info
)
5856 struct c_binding
*b
;
5857 tree parm
, decl
, last
;
5858 tree parmids
= ARG_INFO_PARMS (arg_info
);
5860 /* We use DECL_WEAK as a flag to show which parameters have been
5861 seen already, since it is not used on PARM_DECL. */
5862 #ifdef ENABLE_CHECKING
5863 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
5864 if (TREE_CODE (b
->decl
) == PARM_DECL
&& DECL_WEAK (b
->decl
))
5868 if (warn_old_style_definition
&& !in_system_header
)
5869 warning ("%Jold-style function definition", fndecl
);
5871 /* Match each formal parameter name with its declaration. Save each
5872 decl in the appropriate TREE_PURPOSE slot of the parmids chain. */
5873 for (parm
= parmids
; parm
; parm
= TREE_CHAIN (parm
))
5875 if (TREE_VALUE (parm
) == 0)
5877 error ("%Jparameter name missing from parameter list", fndecl
);
5878 TREE_PURPOSE (parm
) = 0;
5882 b
= I_SYMBOL_BINDING (TREE_VALUE (parm
));
5883 if (b
&& b
->contour
== current_scope
)
5886 /* If we got something other than a PARM_DECL it is an error. */
5887 if (TREE_CODE (decl
) != PARM_DECL
)
5888 error ("%J'%D' declared as a non-parameter", decl
, decl
);
5889 /* If the declaration is already marked, we have a duplicate
5890 name. Complain and ignore the duplicate. */
5891 else if (DECL_WEAK (decl
))
5893 error ("%Jmultiple parameters named '%D'", decl
, decl
);
5894 TREE_PURPOSE (parm
) = 0;
5897 /* If the declaration says "void", complain and turn it into
5899 else if (VOID_TYPE_P (TREE_TYPE (decl
)))
5901 error ("%Jparameter '%D' declared with void type", decl
, decl
);
5902 TREE_TYPE (decl
) = integer_type_node
;
5903 DECL_ARG_TYPE (decl
) = integer_type_node
;
5904 layout_decl (decl
, 0);
5907 /* If no declaration found, default to int. */
5910 decl
= build_decl (PARM_DECL
, TREE_VALUE (parm
), integer_type_node
);
5911 DECL_ARG_TYPE (decl
) = TREE_TYPE (decl
);
5912 DECL_SOURCE_LOCATION (decl
) = DECL_SOURCE_LOCATION (fndecl
);
5916 pedwarn ("%Jtype of '%D' defaults to 'int'", decl
, decl
);
5917 else if (extra_warnings
)
5918 warning ("%Jtype of '%D' defaults to 'int'", decl
, decl
);
5921 TREE_PURPOSE (parm
) = decl
;
5922 DECL_WEAK (decl
) = 1;
5925 /* Now examine the parms chain for incomplete declarations
5926 and declarations with no corresponding names. */
5928 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
5931 if (TREE_CODE (parm
) != PARM_DECL
)
5934 if (!COMPLETE_TYPE_P (TREE_TYPE (parm
)))
5936 error ("%Jparameter '%D' has incomplete type", parm
, parm
);
5937 TREE_TYPE (parm
) = error_mark_node
;
5940 if (! DECL_WEAK (parm
))
5942 error ("%Jdeclaration for parameter '%D' but no such parameter",
5945 /* Pretend the parameter was not missing.
5946 This gets us to a standard state and minimizes
5947 further error messages. */
5948 parmids
= chainon (parmids
, tree_cons (parm
, 0, 0));
5952 /* Chain the declarations together in the order of the list of
5953 names. Store that chain in the function decl, replacing the
5954 list of names. Update the current scope to match. */
5955 DECL_ARGUMENTS (fndecl
) = 0;
5957 for (parm
= parmids
; parm
; parm
= TREE_CHAIN (parm
))
5958 if (TREE_PURPOSE (parm
))
5960 if (parm
&& TREE_PURPOSE (parm
))
5962 last
= TREE_PURPOSE (parm
);
5963 DECL_ARGUMENTS (fndecl
) = last
;
5964 DECL_WEAK (last
) = 0;
5966 for (parm
= TREE_CHAIN (parm
); parm
; parm
= TREE_CHAIN (parm
))
5967 if (TREE_PURPOSE (parm
))
5969 TREE_CHAIN (last
) = TREE_PURPOSE (parm
);
5970 last
= TREE_PURPOSE (parm
);
5971 DECL_WEAK (last
) = 0;
5973 TREE_CHAIN (last
) = 0;
5976 /* If there was a previous prototype,
5977 set the DECL_ARG_TYPE of each argument according to
5978 the type previously specified, and report any mismatches. */
5980 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl
)))
5983 for (parm
= DECL_ARGUMENTS (fndecl
),
5984 type
= TYPE_ARG_TYPES (TREE_TYPE (fndecl
));
5985 parm
|| (type
&& (TYPE_MAIN_VARIANT (TREE_VALUE (type
))
5986 != void_type_node
));
5987 parm
= TREE_CHAIN (parm
), type
= TREE_CHAIN (type
))
5989 if (parm
== 0 || type
== 0
5990 || TYPE_MAIN_VARIANT (TREE_VALUE (type
)) == void_type_node
)
5992 error ("number of arguments doesn't match prototype");
5993 error ("%Hprototype declaration",
5994 ¤t_function_prototype_locus
);
5997 /* Type for passing arg must be consistent with that
5998 declared for the arg. ISO C says we take the unqualified
5999 type for parameters declared with qualified type. */
6000 if (! comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm
)),
6001 TYPE_MAIN_VARIANT (TREE_VALUE (type
))))
6003 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm
))
6004 == TYPE_MAIN_VARIANT (TREE_VALUE (type
)))
6006 /* Adjust argument to match prototype. E.g. a previous
6007 `int foo(float);' prototype causes
6008 `int foo(x) float x; {...}' to be treated like
6009 `int foo(float x) {...}'. This is particularly
6010 useful for argument types like uid_t. */
6011 DECL_ARG_TYPE (parm
) = TREE_TYPE (parm
);
6013 if (targetm
.calls
.promote_prototypes (TREE_TYPE (current_function_decl
))
6014 && INTEGRAL_TYPE_P (TREE_TYPE (parm
))
6015 && TYPE_PRECISION (TREE_TYPE (parm
))
6016 < TYPE_PRECISION (integer_type_node
))
6017 DECL_ARG_TYPE (parm
) = integer_type_node
;
6021 pedwarn ("promoted argument '%D' "
6022 "doesn't match prototype", parm
);
6023 pedwarn ("%Hprototype declaration",
6024 ¤t_function_prototype_locus
);
6029 error ("argument '%D' doesn't match prototype", parm
);
6030 error ("%Hprototype declaration",
6031 ¤t_function_prototype_locus
);
6035 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl
)) = 0;
6038 /* Otherwise, create a prototype that would match. */
6042 tree actual
= 0, last
= 0, type
;
6044 for (parm
= DECL_ARGUMENTS (fndecl
); parm
; parm
= TREE_CHAIN (parm
))
6046 type
= tree_cons (NULL_TREE
, DECL_ARG_TYPE (parm
), NULL_TREE
);
6048 TREE_CHAIN (last
) = type
;
6053 type
= tree_cons (NULL_TREE
, void_type_node
, NULL_TREE
);
6055 TREE_CHAIN (last
) = type
;
6059 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6060 of the type of this function, but we need to avoid having this
6061 affect the types of other similarly-typed functions, so we must
6062 first force the generation of an identical (but separate) type
6063 node for the relevant function type. The new node we create
6064 will be a variant of the main variant of the original function
6067 TREE_TYPE (fndecl
) = build_type_copy (TREE_TYPE (fndecl
));
6069 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl
)) = actual
;
6073 /* A subroutine of store_parm_decls called via walk_tree. Mark all
6077 set_decl_nonlocal (tree
*tp
, int *walk_subtrees
, void *data ATTRIBUTE_UNUSED
)
6083 DECL_NONLOCAL (t
) = 1;
6086 else if (TYPE_P (t
))
6092 /* Store the parameter declarations into the current function declaration.
6093 This is called after parsing the parameter declarations, before
6094 digesting the body of the function.
6096 For an old-style definition, construct a prototype out of the old-style
6097 parameter declarations and inject it into the function's type. */
6100 store_parm_decls (void)
6102 tree fndecl
= current_function_decl
;
6104 /* The function containing FNDECL, if any. */
6105 tree context
= decl_function_context (fndecl
);
6107 /* The argument information block for FNDECL. */
6108 tree arg_info
= DECL_ARGUMENTS (fndecl
);
6110 /* True if this definition is written with a prototype. Note:
6111 despite C99 6.7.5.3p14, we can *not* treat an empty argument
6112 list in a function definition as equivalent to (void) -- an
6113 empty argument list specifies the function has no parameters,
6114 but only (void) sets up a prototype for future calls. */
6115 bool proto
= ARG_INFO_TYPES (arg_info
) != 0;
6118 store_parm_decls_newstyle (fndecl
, arg_info
);
6120 store_parm_decls_oldstyle (fndecl
, arg_info
);
6122 /* The next call to push_scope will be a function body. */
6124 next_is_function_body
= true;
6126 /* Write a record describing this function definition to the prototypes
6127 file (if requested). */
6129 gen_aux_info_record (fndecl
, 1, 0, proto
);
6131 /* Initialize the RTL code for the function. */
6132 allocate_struct_function (fndecl
);
6134 /* Begin the statement tree for this function. */
6135 DECL_SAVED_TREE (fndecl
) = push_stmt_list ();
6137 /* If this is a nested function, save away the sizes of any
6138 variable-size types so that we can expand them when generating
6144 DECL_LANG_SPECIFIC (fndecl
)->pending_sizes
6145 = nreverse (get_pending_sizes ());
6146 for (t
= DECL_LANG_SPECIFIC (fndecl
)->pending_sizes
;
6150 /* We will have a nonlocal use of whatever variables are
6151 buried inside here. */
6152 walk_tree (&TREE_OPERAND (TREE_VALUE (t
), 0),
6153 set_decl_nonlocal
, NULL
, NULL
);
6155 SAVE_EXPR_CONTEXT (TREE_VALUE (t
)) = context
;
6159 /* This function is being processed in whole-function mode. */
6160 cfun
->x_whole_function_mode_p
= 1;
6162 /* Even though we're inside a function body, we still don't want to
6163 call expand_expr to calculate the size of a variable-sized array.
6164 We haven't necessarily assigned RTL to all variables yet, so it's
6165 not safe to try to expand expressions involving them. */
6166 immediate_size_expand
= 0;
6167 cfun
->x_dont_save_pending_sizes_p
= 1;
6170 /* Give FNDECL and all its nested functions to cgraph for compilation. */
6173 c_finalize (tree fndecl
)
6175 struct cgraph_node
*cgn
;
6177 /* Handle attribute((warn_unused_result)). Relies on gimple input. */
6178 c_warn_unused_result (&DECL_SAVED_TREE (fndecl
));
6180 /* ??? Objc emits functions after finalizing the compilation unit.
6181 This should be cleaned up later and this conditional removed. */
6182 if (cgraph_global_info_ready
)
6184 c_expand_body (fndecl
);
6188 /* Finalize all nested functions now. */
6189 cgn
= cgraph_node (fndecl
);
6190 for (cgn
= cgn
->nested
; cgn
; cgn
= cgn
->next_nested
)
6191 c_finalize (cgn
->decl
);
6193 cgraph_finalize_function (fndecl
, false);
6196 /* Finish up a function declaration and compile that function
6197 all the way to assembler language output. The free the storage
6198 for the function definition.
6200 This is called after parsing the body of the function definition. */
6203 finish_function (void)
6205 tree fndecl
= current_function_decl
;
6207 if (TREE_CODE (fndecl
) == FUNCTION_DECL
6208 && targetm
.calls
.promote_prototypes (TREE_TYPE (fndecl
)))
6210 tree args
= DECL_ARGUMENTS (fndecl
);
6211 for (; args
; args
= TREE_CHAIN (args
))
6213 tree type
= TREE_TYPE (args
);
6214 if (INTEGRAL_TYPE_P (type
)
6215 && TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
))
6216 DECL_ARG_TYPE (args
) = integer_type_node
;
6220 if (DECL_INITIAL (fndecl
) && DECL_INITIAL (fndecl
) != error_mark_node
)
6221 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl
)) = fndecl
;
6223 /* Must mark the RESULT_DECL as being in this function. */
6225 if (DECL_RESULT (fndecl
) && DECL_RESULT (fndecl
) != error_mark_node
)
6226 DECL_CONTEXT (DECL_RESULT (fndecl
)) = fndecl
;
6228 if (MAIN_NAME_P (DECL_NAME (fndecl
)) && flag_hosted
)
6230 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl
)))
6231 != integer_type_node
)
6233 /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6234 If warn_main is -1 (-Wno-main) we don't want to be warned. */
6236 pedwarn ("%Jreturn type of '%D' is not `int'", fndecl
, fndecl
);
6240 #ifdef DEFAULT_MAIN_RETURN
6241 /* Make it so that `main' always returns success by default. */
6242 DEFAULT_MAIN_RETURN
;
6245 c_finish_return (integer_zero_node
);
6250 /* Tie off the statement tree for this function. */
6251 DECL_SAVED_TREE (fndecl
) = pop_stmt_list (DECL_SAVED_TREE (fndecl
));
6253 finish_fname_decls ();
6255 /* Complain if there's just no return statement. */
6256 if (warn_return_type
6257 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl
))) != VOID_TYPE
6258 && !current_function_returns_value
&& !current_function_returns_null
6259 /* Don't complain if we abort. */
6260 && !current_function_returns_abnormally
6261 /* Don't warn for main(). */
6262 && !MAIN_NAME_P (DECL_NAME (fndecl
))
6263 /* Or if they didn't actually specify a return type. */
6264 && !C_FUNCTION_IMPLICIT_INT (fndecl
)
6265 /* Normally, with -Wreturn-type, flow will complain. Unless we're an
6266 inline function, as we might never be compiled separately. */
6267 && DECL_INLINE (fndecl
))
6268 warning ("no return statement in function returning non-void");
6270 /* With just -Wextra, complain only if function returns both with
6271 and without a value. */
6273 && current_function_returns_value
6274 && current_function_returns_null
)
6275 warning ("this function may return with or without a value");
6277 /* Store the end of the function, so that we get good line number
6278 info for the epilogue. */
6279 cfun
->function_end_locus
= input_location
;
6281 /* If we don't have ctors/dtors sections, and this is a static
6282 constructor or destructor, it must be recorded now. */
6283 if (DECL_STATIC_CONSTRUCTOR (fndecl
)
6284 && !targetm
.have_ctors_dtors
)
6285 static_ctors
= tree_cons (NULL_TREE
, fndecl
, static_ctors
);
6286 if (DECL_STATIC_DESTRUCTOR (fndecl
)
6287 && !targetm
.have_ctors_dtors
)
6288 static_dtors
= tree_cons (NULL_TREE
, fndecl
, static_dtors
);
6290 /* Genericize before inlining. Delay genericizing nested functions
6291 until their parent function is genericized. Since finalizing
6292 requires GENERIC, delay that as well. */
6294 if (DECL_INITIAL (fndecl
) && DECL_INITIAL (fndecl
) != error_mark_node
)
6296 if (!decl_function_context (fndecl
))
6298 c_genericize (fndecl
);
6299 lower_nested_functions (fndecl
);
6300 c_finalize (fndecl
);
6304 /* Register this function with cgraph just far enough to get it
6305 added to our parent's nested function list. Handy, since the
6306 C front end doesn't have such a list. */
6307 (void) cgraph_node (fndecl
);
6311 /* We're leaving the context of this function, so zap cfun.
6312 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
6313 tree_rest_of_compilation. */
6315 current_function_decl
= NULL
;
6318 /* Generate the RTL for the body of FNDECL. */
6321 c_expand_body (tree fndecl
)
6324 if (!DECL_INITIAL (fndecl
)
6325 || DECL_INITIAL (fndecl
) == error_mark_node
)
6328 tree_rest_of_compilation (fndecl
, false);
6330 if (DECL_STATIC_CONSTRUCTOR (fndecl
)
6331 && targetm
.have_ctors_dtors
)
6332 targetm
.asm_out
.constructor (XEXP (DECL_RTL (fndecl
), 0),
6333 DEFAULT_INIT_PRIORITY
);
6334 if (DECL_STATIC_DESTRUCTOR (fndecl
)
6335 && targetm
.have_ctors_dtors
)
6336 targetm
.asm_out
.destructor (XEXP (DECL_RTL (fndecl
), 0),
6337 DEFAULT_INIT_PRIORITY
);
6340 /* Check the declarations given in a for-loop for satisfying the C99
6343 check_for_loop_decls (void)
6345 struct c_binding
*b
;
6349 /* If we get here, declarations have been used in a for loop without
6350 the C99 for loop scope. This doesn't make much sense, so don't
6352 error ("'for' loop initial declaration used outside C99 mode");
6355 /* C99 subclause 6.8.5 paragraph 3:
6357 [#3] The declaration part of a for statement shall only
6358 declare identifiers for objects having storage class auto or
6361 It isn't clear whether, in this sentence, "identifiers" binds to
6362 "shall only declare" or to "objects" - that is, whether all identifiers
6363 declared must be identifiers for objects, or whether the restriction
6364 only applies to those that are. (A question on this in comp.std.c
6365 in November 2000 received no answer.) We implement the strictest
6366 interpretation, to avoid creating an extension which later causes
6369 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
6372 tree decl
= b
->decl
;
6377 switch (TREE_CODE (decl
))
6380 if (TREE_STATIC (decl
))
6381 error ("%Jdeclaration of static variable '%D' in 'for' loop "
6382 "initial declaration", decl
, decl
);
6383 else if (DECL_EXTERNAL (decl
))
6384 error ("%Jdeclaration of 'extern' variable '%D' in 'for' loop "
6385 "initial declaration", decl
, decl
);
6389 error ("'struct %E' declared in 'for' loop initial declaration", id
);
6392 error ("'union %E' declared in 'for' loop initial declaration", id
);
6395 error ("'enum %E' declared in 'for' loop initial declaration", id
);
6398 error ("%Jdeclaration of non-variable '%D' in 'for' loop "
6399 "initial declaration", decl
, decl
);
6404 /* Save and reinitialize the variables
6405 used during compilation of a C function. */
6408 c_push_function_context (struct function
*f
)
6410 struct language_function
*p
;
6411 p
= ggc_alloc (sizeof (struct language_function
));
6414 p
->base
.x_stmt_tree
= c_stmt_tree
;
6415 p
->x_in_iteration_stmt
= c_in_iteration_stmt
;
6416 p
->x_in_case_stmt
= c_in_case_stmt
;
6417 p
->returns_value
= current_function_returns_value
;
6418 p
->returns_null
= current_function_returns_null
;
6419 p
->returns_abnormally
= current_function_returns_abnormally
;
6420 p
->warn_about_return_type
= warn_about_return_type
;
6421 p
->extern_inline
= current_extern_inline
;
6424 /* Restore the variables used during compilation of a C function. */
6427 c_pop_function_context (struct function
*f
)
6429 struct language_function
*p
= f
->language
;
6431 if (DECL_STRUCT_FUNCTION (current_function_decl
) == 0
6432 && DECL_SAVED_TREE (current_function_decl
) == NULL_TREE
)
6434 /* Stop pointing to the local nodes about to be freed. */
6435 /* But DECL_INITIAL must remain nonzero so we know this
6436 was an actual function definition. */
6437 DECL_INITIAL (current_function_decl
) = error_mark_node
;
6438 DECL_ARGUMENTS (current_function_decl
) = 0;
6441 c_stmt_tree
= p
->base
.x_stmt_tree
;
6442 c_in_iteration_stmt
= p
->x_in_iteration_stmt
;
6443 c_in_case_stmt
= p
->x_in_case_stmt
;
6444 current_function_returns_value
= p
->returns_value
;
6445 current_function_returns_null
= p
->returns_null
;
6446 current_function_returns_abnormally
= p
->returns_abnormally
;
6447 warn_about_return_type
= p
->warn_about_return_type
;
6448 current_extern_inline
= p
->extern_inline
;
6453 /* Copy the DECL_LANG_SPECIFIC data associated with DECL. */
6456 c_dup_lang_specific_decl (tree decl
)
6458 struct lang_decl
*ld
;
6460 if (!DECL_LANG_SPECIFIC (decl
))
6463 ld
= ggc_alloc (sizeof (struct lang_decl
));
6464 memcpy (ld
, DECL_LANG_SPECIFIC (decl
), sizeof (struct lang_decl
));
6465 DECL_LANG_SPECIFIC (decl
) = ld
;
6468 /* The functions below are required for functionality of doing
6469 function at once processing in the C front end. Currently these
6470 functions are not called from anywhere in the C front end, but as
6471 these changes continue, that will change. */
6473 /* Returns nonzero if the current statement is a full expression,
6474 i.e. temporaries created during that statement should be destroyed
6475 at the end of the statement. */
6478 stmts_are_full_exprs_p (void)
6483 /* Returns the stmt_tree (if any) to which statements are currently
6484 being added. If there is no active statement-tree, NULL is
6488 current_stmt_tree (void)
6490 return &c_stmt_tree
;
6493 /* Nonzero if TYPE is an anonymous union or struct type. Always 0 in
6497 anon_aggr_type_p (tree node ATTRIBUTE_UNUSED
)
6502 /* Dummy function in place of callback used by C++. */
6505 extract_interface_info (void)
6509 /* Return the global value of T as a symbol. */
6512 identifier_global_value (tree t
)
6514 struct c_binding
*b
;
6516 for (b
= I_SYMBOL_BINDING (t
); b
; b
= b
->shadowed
)
6517 if (b
->contour
== file_scope
|| b
->contour
== external_scope
)
6523 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
6524 otherwise the name is found in ridpointers from RID_INDEX. */
6527 record_builtin_type (enum rid rid_index
, const char *name
, tree type
)
6531 id
= ridpointers
[(int) rid_index
];
6533 id
= get_identifier (name
);
6534 pushdecl (build_decl (TYPE_DECL
, id
, type
));
6537 /* Build the void_list_node (void_type_node having been created). */
6539 build_void_list_node (void)
6541 tree t
= build_tree_list (NULL_TREE
, void_type_node
);
6545 /* Return something to represent absolute declarators containing a *.
6546 TARGET is the absolute declarator that the * contains.
6547 TYPE_QUALS_ATTRS is a list of modifiers such as const or volatile
6548 to apply to the pointer type, represented as identifiers, possible mixed
6551 We return an INDIRECT_REF whose "contents" are TARGET (inside a TREE_LIST,
6552 if attributes are present) and whose type is the modifier list. */
6555 make_pointer_declarator (tree type_quals_attrs
, tree target
)
6558 tree itarget
= target
;
6559 split_specs_attrs (type_quals_attrs
, &quals
, &attrs
);
6560 if (attrs
!= NULL_TREE
)
6561 itarget
= tree_cons (attrs
, target
, NULL_TREE
);
6562 return build1 (INDIRECT_REF
, quals
, itarget
);
6565 /* A wrapper around lhd_set_decl_assembler_name that gives static
6566 variables their C names if they are at file scope and only one
6567 translation unit is being compiled, for backwards compatibility
6568 with certain bizarre assembler hacks (like crtstuff.c). */
6571 c_static_assembler_name (tree decl
)
6573 if (num_in_fnames
== 1
6574 && !TREE_PUBLIC (decl
) && DECL_CONTEXT (decl
)
6575 && TREE_CODE (DECL_CONTEXT (decl
)) == TRANSLATION_UNIT_DECL
)
6576 SET_DECL_ASSEMBLER_NAME (decl
, DECL_NAME (decl
));
6578 lhd_set_decl_assembler_name (decl
);
6581 /* Perform final processing on file-scope data. */
6583 c_write_global_declarations_1 (tree globals
)
6585 size_t len
= list_length (globals
);
6586 tree
*vec
= xmalloc (sizeof (tree
) * len
);
6590 /* Process the decls in the order they were written. */
6591 for (i
= 0, decl
= globals
; i
< len
; i
++, decl
= TREE_CHAIN (decl
))
6594 wrapup_global_declarations (vec
, len
);
6595 check_global_declarations (vec
, len
);
6601 c_write_global_declarations (void)
6605 /* We don't want to do this if generating a PCH. */
6609 /* Process all file scopes in this compilation. */
6610 for (t
= all_translation_units
; t
; t
= TREE_CHAIN (t
))
6611 c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t
)));
6613 /* Now do the same for the externals scope. */
6616 c_write_global_declarations_1 (BLOCK_VARS (t
));
6619 #include "gt-c-decl.h"