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, 2005, 2006, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
5 Contributed by Michael Tiemann (tiemann@cygnus.com)
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
24 /* Process declarations and symbol lookup for C++ front end.
25 Also constructs types; the standard scalar types at initialization,
26 and structure, union, array and enum types when they are declared. */
28 /* ??? not all decl nodes are given the most useful possible
29 line numbers. For example, the CONST_DECLs for enum values. */
33 #include "coretypes.h"
40 #include "tree-iterator.h"
41 #include "tree-inline.h"
52 #include "diagnostic.h"
56 #include "tree-flow.h"
57 #include "pointer-set.h"
60 static tree grokparms (tree parmlist, tree *);
61 static const char *redeclaration_error_message (tree, tree);
63 static int decl_jump_unsafe (tree);
64 static void require_complete_types_for_parms (tree);
65 static int ambi_op_p (enum tree_code);
66 static int unary_op_p (enum tree_code);
67 static void push_local_name (tree);
68 static tree grok_reference_init (tree, tree, tree, tree *);
69 static tree grokvardecl (tree, tree, const cp_decl_specifier_seq *,
71 static void record_unknown_type (tree, const char *);
72 static tree builtin_function_1 (tree, tree, bool);
73 static tree build_library_fn_1 (tree, enum tree_code, tree);
74 static int member_function_or_else (tree, tree, enum overload_flags);
75 static void bad_specifiers (tree, const char *, int, int, int, int,
77 static void check_for_uninitialized_const_var (tree);
78 static hashval_t typename_hash (const void *);
79 static int typename_compare (const void *, const void *);
80 static tree local_variable_p_walkfn (tree *, int *, void *);
81 static tree record_builtin_java_type (const char *, int);
82 static const char *tag_name (enum tag_types);
83 static tree lookup_and_check_tag (enum tag_types, tree, tag_scope, bool);
84 static int walk_namespaces_r (tree, walk_namespaces_fn, void *);
85 static void maybe_deduce_size_from_array_init (tree, tree);
86 static void layout_var_decl (tree);
87 static tree check_initializer (tree, tree, int, tree *);
88 static void make_rtl_for_nonlocal_decl (tree, tree, const char *);
89 static void save_function_data (tree);
90 static void check_function_type (tree, tree);
91 static void finish_constructor_body (void);
92 static void begin_destructor_body (void);
93 static void finish_destructor_body (void);
94 static tree create_array_type_for_decl (tree, tree, tree);
95 static tree get_atexit_node (void);
96 static tree get_dso_handle_node (void);
97 static tree start_cleanup_fn (void);
98 static void end_cleanup_fn (void);
99 static tree cp_make_fname_decl (location_t, tree, int);
100 static void initialize_predefined_identifiers (void);
101 static tree check_special_function_return_type
102 (special_function_kind, tree, tree);
103 static tree push_cp_library_fn (enum tree_code, tree);
104 static tree build_cp_library_fn (tree, enum tree_code, tree);
105 static void store_parm_decls (tree);
106 static void initialize_local_var (tree, tree);
107 static void expand_static_init (tree, tree);
109 /* The following symbols are subsumed in the cp_global_trees array, and
110 listed here individually for documentation purposes.
113 tree wchar_decl_node;
115 tree vtable_entry_type;
116 tree delta_type_node;
117 tree __t_desc_type_node;
119 tree class_type_node;
120 tree unknown_type_node;
122 Array type `vtable_entry_type[]'
125 tree vtbl_ptr_type_node;
132 A FUNCTION_DECL which can call `abort'. Not necessarily the
133 one that the user will declare, but sufficient to be called
134 by routines that want to abort the program.
138 The FUNCTION_DECL for the default `::operator delete'.
140 tree global_delete_fndecl;
143 tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
144 tree tinfo_var_id; */
146 tree cp_global_trees[CPTI_MAX];
148 /* Indicates that there is a type value in some namespace, although
149 that is not necessarily in scope at the moment. */
151 tree global_type_node;
153 /* The node that holds the "name" of the global scope. */
154 tree global_scope_name;
156 #define local_names cp_function_chain->x_local_names
158 /* A list of objects which have constructors or destructors
159 which reside in the global scope. The decl is stored in
160 the TREE_VALUE slot and the initializer is stored
161 in the TREE_PURPOSE slot. */
162 tree static_aggregates;
166 /* A node for the integer constants 2, and 3. */
168 tree integer_two_node, integer_three_node;
170 /* Used only for jumps to as-yet undefined labels, since jumps to
171 defined labels can have their validity checked immediately. */
173 struct GTY(()) named_label_use_entry {
174 struct named_label_use_entry *next;
175 /* The binding level to which this entry is *currently* attached.
176 This is initially the binding level in which the goto appeared,
177 but is modified as scopes are closed. */
178 struct cp_binding_level *binding_level;
179 /* The head of the names list that was current when the goto appeared,
180 or the inner scope popped. These are the decls that will *not* be
181 skipped when jumping to the label. */
183 /* The location of the goto, for error reporting. */
184 location_t o_goto_locus;
185 /* True if an OpenMP structured block scope has been closed since
186 the goto appeared. This means that the branch from the label will
187 illegally exit an OpenMP scope. */
191 /* A list of all LABEL_DECLs in the function that have names. Here so
192 we can clear out their names' definitions at the end of the
193 function, and so we can check the validity of jumps to these labels. */
195 struct GTY(()) named_label_entry {
196 /* The decl itself. */
199 /* The binding level to which the label is *currently* attached.
200 This is initially set to the binding level in which the label
201 is defined, but is modified as scopes are closed. */
202 struct cp_binding_level *binding_level;
203 /* The head of the names list that was current when the label was
204 defined, or the inner scope popped. These are the decls that will
205 be skipped when jumping to the label. */
207 /* A tree list of all decls from all binding levels that would be
208 crossed by a backward branch to the label. */
211 /* A list of uses of the label, before the label is defined. */
212 struct named_label_use_entry *uses;
214 /* The following bits are set after the label is defined, and are
215 updated as scopes are popped. They indicate that a backward jump
216 to the label will illegally enter a scope of the given flavor. */
222 #define named_labels cp_function_chain->x_named_labels
224 /* The number of function bodies which we are currently processing.
225 (Zero if we are at namespace scope, one inside the body of a
226 function, two inside the body of a function in a local class, etc.) */
229 /* To avoid unwanted recursion, finish_function defers all mark_used calls
230 encountered during its execution until it finishes. */
231 bool defer_mark_used_calls;
232 VEC(tree, gc) *deferred_mark_used_calls;
234 /* States indicating how grokdeclarator() should handle declspecs marked
235 with __attribute__((deprecated)). An object declared as
236 __attribute__((deprecated)) suppresses warnings of uses of other
238 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
241 /* A TREE_LIST of VAR_DECLs. The TREE_PURPOSE is a RECORD_TYPE or
242 UNION_TYPE; the TREE_VALUE is a VAR_DECL with that type. At the
243 time the VAR_DECL was declared, the type was incomplete. */
245 static GTY(()) tree incomplete_vars;
247 /* Returns the kind of template specialization we are currently
248 processing, given that it's declaration contained N_CLASS_SCOPES
249 explicit scope qualifications. */
252 current_tmpl_spec_kind (int n_class_scopes)
254 int n_template_parm_scopes = 0;
255 int seen_specialization_p = 0;
256 int innermost_specialization_p = 0;
257 struct cp_binding_level *b;
259 /* Scan through the template parameter scopes. */
260 for (b = current_binding_level;
261 b->kind == sk_template_parms;
264 /* If we see a specialization scope inside a parameter scope,
265 then something is wrong. That corresponds to a declaration
268 template <class T> template <> ...
270 which is always invalid since [temp.expl.spec] forbids the
271 specialization of a class member template if the enclosing
272 class templates are not explicitly specialized as well. */
273 if (b->explicit_spec_p)
275 if (n_template_parm_scopes == 0)
276 innermost_specialization_p = 1;
278 seen_specialization_p = 1;
280 else if (seen_specialization_p == 1)
281 return tsk_invalid_member_spec;
283 ++n_template_parm_scopes;
286 /* Handle explicit instantiations. */
287 if (processing_explicit_instantiation)
289 if (n_template_parm_scopes != 0)
290 /* We've seen a template parameter list during an explicit
291 instantiation. For example:
293 template <class T> template void f(int);
295 This is erroneous. */
296 return tsk_invalid_expl_inst;
298 return tsk_expl_inst;
301 if (n_template_parm_scopes < n_class_scopes)
302 /* We've not seen enough template headers to match all the
303 specialized classes present. For example:
305 template <class T> void R<T>::S<T>::f(int);
307 This is invalid; there needs to be one set of template
308 parameters for each class. */
309 return tsk_insufficient_parms;
310 else if (n_template_parm_scopes == n_class_scopes)
311 /* We're processing a non-template declaration (even though it may
312 be a member of a template class.) For example:
314 template <class T> void S<T>::f(int);
316 The `class T' matches the `S<T>', leaving no template headers
317 corresponding to the `f'. */
319 else if (n_template_parm_scopes > n_class_scopes + 1)
320 /* We've got too many template headers. For example:
322 template <> template <class T> void f (T);
324 There need to be more enclosing classes. */
325 return tsk_excessive_parms;
327 /* This must be a template. It's of the form:
329 template <class T> template <class U> void S<T>::f(U);
331 This is a specialization if the innermost level was a
332 specialization; otherwise it's just a definition of the
334 return innermost_specialization_p ? tsk_expl_spec : tsk_template;
337 /* Exit the current scope. */
345 /* When a label goes out of scope, check to see if that label was used
346 in a valid manner, and issue any appropriate warnings or errors. */
349 pop_label (tree label, tree old_value)
351 if (!processing_template_decl)
353 if (DECL_INITIAL (label) == NULL_TREE)
357 error ("label %q+D used but not defined", label);
358 location = input_location; /* FIXME want (input_filename, (line)0) */
359 /* Avoid crashing later. */
360 define_label (location, DECL_NAME (label));
363 warn_for_unused_label (label);
366 SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (label), old_value);
369 /* At the end of a function, all labels declared within the function
370 go out of scope. BLOCK is the top-level block for the
374 pop_labels_1 (void **slot, void *data)
376 struct named_label_entry *ent = (struct named_label_entry *) *slot;
377 tree block = (tree) data;
379 pop_label (ent->label_decl, NULL_TREE);
381 /* Put the labels into the "variables" of the top-level block,
382 so debugger can see them. */
383 TREE_CHAIN (ent->label_decl) = BLOCK_VARS (block);
384 BLOCK_VARS (block) = ent->label_decl;
386 htab_clear_slot (named_labels, slot);
392 pop_labels (tree block)
396 htab_traverse (named_labels, pop_labels_1, block);
401 /* At the end of a block with local labels, restore the outer definition. */
404 pop_local_label (tree label, tree old_value)
406 struct named_label_entry dummy;
409 pop_label (label, old_value);
411 dummy.label_decl = label;
412 slot = htab_find_slot (named_labels, &dummy, NO_INSERT);
413 htab_clear_slot (named_labels, slot);
416 /* The following two routines are used to interface to Objective-C++.
417 The binding level is purposely treated as an opaque type. */
420 objc_get_current_scope (void)
422 return current_binding_level;
425 /* The following routine is used by the NeXT-style SJLJ exceptions;
426 variables get marked 'volatile' so as to not be clobbered by
427 _setjmp()/_longjmp() calls. All variables in the current scope,
428 as well as parent scopes up to (but not including) ENCLOSING_BLK
429 shall be thusly marked. */
432 objc_mark_locals_volatile (void *enclosing_blk)
434 struct cp_binding_level *scope;
436 for (scope = current_binding_level;
437 scope && scope != enclosing_blk;
438 scope = scope->level_chain)
442 for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
443 objc_volatilize_decl (decl);
445 /* Do not climb up past the current function. */
446 if (scope->kind == sk_function_parms)
451 /* Update data for defined and undefined labels when leaving a scope. */
454 poplevel_named_label_1 (void **slot, void *data)
456 struct named_label_entry *ent = (struct named_label_entry *) *slot;
457 struct cp_binding_level *bl = (struct cp_binding_level *) data;
458 struct cp_binding_level *obl = bl->level_chain;
460 if (ent->binding_level == bl)
464 for (decl = ent->names_in_scope; decl; decl = TREE_CHAIN (decl))
465 if (decl_jump_unsafe (decl))
466 ent->bad_decls = tree_cons (NULL, decl, ent->bad_decls);
468 ent->binding_level = obl;
469 ent->names_in_scope = obl->names;
473 ent->in_try_scope = true;
476 ent->in_catch_scope = true;
479 ent->in_omp_scope = true;
487 struct named_label_use_entry *use;
489 for (use = ent->uses; use ; use = use->next)
490 if (use->binding_level == bl)
492 use->binding_level = obl;
493 use->names_in_scope = obl->names;
494 if (bl->kind == sk_omp)
495 use->in_omp_scope = true;
502 /* Saved errorcount to avoid -Wunused-but-set-{parameter,variable} warnings
503 when errors were reported, except for -Werror-unused-but-set-*. */
504 static int unused_but_set_errorcount;
506 /* Exit a binding level.
507 Pop the level off, and restore the state of the identifier-decl mappings
508 that were in effect when this level was entered.
510 If KEEP == 1, this level had explicit declarations, so
511 and create a "block" (a BLOCK node) for the level
512 to record its declarations and subblocks for symbol table output.
514 If FUNCTIONBODY is nonzero, this level is the body of a function,
515 so create a block as if KEEP were set and also clear out all
518 If REVERSE is nonzero, reverse the order of decls before putting
519 them into the BLOCK. */
522 poplevel (int keep, int reverse, int functionbody)
525 /* The chain of decls was accumulated in reverse order.
526 Put it into forward order, just for cleanliness. */
531 int leaving_for_scope;
534 timevar_push (TV_NAME_LOOKUP);
539 gcc_assert (current_binding_level->kind != sk_class);
541 if (current_binding_level->kind == sk_cleanup)
543 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
545 gcc_assert (!VEC_length(cp_class_binding,
546 current_binding_level->class_shadowed));
548 /* We used to use KEEP == 2 to indicate that the new block should go
549 at the beginning of the list of blocks at this binding level,
550 rather than the end. This hack is no longer used. */
551 gcc_assert (keep == 0 || keep == 1);
553 if (current_binding_level->keep)
556 /* Any uses of undefined labels, and any defined labels, now operate
557 under constraints of next binding contour. */
558 if (cfun && !functionbody && named_labels)
559 htab_traverse (named_labels, poplevel_named_label_1,
560 current_binding_level);
562 /* Get the decls in the order they were written.
563 Usually current_binding_level->names is in reverse order.
564 But parameter decls were previously put in forward order. */
567 current_binding_level->names
568 = decls = nreverse (current_binding_level->names);
570 decls = current_binding_level->names;
572 /* If there were any declarations or structure tags in that level,
573 or if this level is a function body,
574 create a BLOCK to record them for the life of this function. */
576 if (keep == 1 || functionbody)
577 block = make_node (BLOCK);
578 if (block != NULL_TREE)
580 BLOCK_VARS (block) = decls;
581 BLOCK_SUBBLOCKS (block) = subblocks;
584 /* In each subblock, record that this is its superior. */
586 for (link = subblocks; link; link = BLOCK_CHAIN (link))
587 BLOCK_SUPERCONTEXT (link) = block;
589 /* We still support the old for-scope rules, whereby the variables
590 in a for-init statement were in scope after the for-statement
591 ended. We only use the new rules if flag_new_for_scope is
594 = current_binding_level->kind == sk_for && flag_new_for_scope == 1;
596 /* Before we remove the declarations first check for unused variables. */
597 if ((warn_unused_variable || warn_unused_but_set_variable)
598 && !processing_template_decl)
599 for (decl = getdecls (); decl; decl = TREE_CHAIN (decl))
600 if (TREE_CODE (decl) == VAR_DECL
601 && (! TREE_USED (decl) || !DECL_READ_P (decl))
602 && ! DECL_IN_SYSTEM_HEADER (decl)
603 && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl))
605 if (! TREE_USED (decl))
606 warning (OPT_Wunused_variable, "unused variable %q+D", decl);
607 else if (DECL_CONTEXT (decl) == current_function_decl
608 && TREE_TYPE (decl) != error_mark_node
609 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
610 && errorcount == unused_but_set_errorcount
611 && (!CLASS_TYPE_P (TREE_TYPE (decl))
612 || !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl))))
614 warning (OPT_Wunused_but_set_variable,
615 "variable %q+D set but not used", decl);
616 unused_but_set_errorcount = errorcount;
620 /* Remove declarations for all the DECLs in this level. */
621 for (link = decls; link; link = TREE_CHAIN (link))
623 if (leaving_for_scope && TREE_CODE (link) == VAR_DECL
626 tree name = DECL_NAME (link);
630 ob = outer_binding (name,
631 IDENTIFIER_BINDING (name),
634 ns_binding = IDENTIFIER_NAMESPACE_VALUE (name);
636 ns_binding = NULL_TREE;
638 if (ob && ob->scope == current_binding_level->level_chain)
639 /* We have something like:
644 and we are leaving the `for' scope. There's no reason to
645 keep the binding of the inner `i' in this case. */
646 pop_binding (name, link);
647 else if ((ob && (TREE_CODE (ob->value) == TYPE_DECL))
648 || (ns_binding && TREE_CODE (ns_binding) == TYPE_DECL))
649 /* Here, we have something like:
657 We must pop the for-scope binding so we know what's a
658 type and what isn't. */
659 pop_binding (name, link);
662 /* Mark this VAR_DECL as dead so that we can tell we left it
663 there only for backward compatibility. */
664 DECL_DEAD_FOR_LOCAL (link) = 1;
666 /* Keep track of what should have happened when we
667 popped the binding. */
670 SET_DECL_SHADOWED_FOR_VAR (link, ob->value);
671 DECL_HAS_SHADOWED_FOR_VAR_P (link) = 1;
674 /* Add it to the list of dead variables in the next
675 outermost binding to that we can remove these when we
676 leave that binding. */
677 current_binding_level->level_chain->dead_vars_from_for
678 = tree_cons (NULL_TREE, link,
679 current_binding_level->level_chain->
682 /* Although we don't pop the cxx_binding, we do clear
683 its SCOPE since the scope is going away now. */
684 IDENTIFIER_BINDING (name)->scope
685 = current_binding_level->level_chain;
692 /* Remove the binding. */
695 if (TREE_CODE (decl) == TREE_LIST)
696 decl = TREE_VALUE (decl);
699 if (TREE_CODE (name) == OVERLOAD)
700 name = OVL_FUNCTION (name);
702 gcc_assert (DECL_P (name));
703 pop_binding (DECL_NAME (name), decl);
707 /* Remove declarations for any `for' variables from inner scopes
708 that we kept around. */
709 for (link = current_binding_level->dead_vars_from_for;
710 link; link = TREE_CHAIN (link))
711 pop_binding (DECL_NAME (TREE_VALUE (link)), TREE_VALUE (link));
713 /* Restore the IDENTIFIER_TYPE_VALUEs. */
714 for (link = current_binding_level->type_shadowed;
715 link; link = TREE_CHAIN (link))
716 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
718 /* Restore the IDENTIFIER_LABEL_VALUEs for local labels. */
719 for (link = current_binding_level->shadowed_labels;
721 link = TREE_CHAIN (link))
722 pop_local_label (TREE_VALUE (link), TREE_PURPOSE (link));
724 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
725 list if a `using' declaration put them there. The debugging
726 back ends won't understand OVERLOAD, so we remove them here.
727 Because the BLOCK_VARS are (temporarily) shared with
728 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
729 popped all the bindings. */
734 for (d = &BLOCK_VARS (block); *d; )
736 if (TREE_CODE (*d) == TREE_LIST)
737 *d = TREE_CHAIN (*d);
739 d = &TREE_CHAIN (*d);
743 /* If the level being exited is the top level of a function,
744 check over all the labels. */
747 /* Since this is the top level block of a function, the vars are
748 the function's parameters. Don't leave them in the BLOCK
749 because they are found in the FUNCTION_DECL instead. */
750 BLOCK_VARS (block) = 0;
754 kind = current_binding_level->kind;
755 if (kind == sk_cleanup)
759 /* If this is a temporary binding created for a cleanup, then we'll
760 have pushed a statement list level. Pop that, create a new
761 BIND_EXPR for the block, and insert it into the stream. */
762 stmt = pop_stmt_list (current_binding_level->statement_list);
763 stmt = c_build_bind_expr (input_location, block, stmt);
770 /* The current function is being defined, so its DECL_INITIAL
771 should be error_mark_node. */
772 gcc_assert (DECL_INITIAL (current_function_decl) == error_mark_node);
773 DECL_INITIAL (current_function_decl) = block;
776 current_binding_level->blocks
777 = chainon (current_binding_level->blocks, block);
779 /* If we did not make a block for the level just exited,
780 any blocks made for inner levels
781 (since they cannot be recorded as subblocks in that level)
782 must be carried forward so they will later become subblocks
783 of something else. */
785 current_binding_level->blocks
786 = chainon (current_binding_level->blocks, subblocks);
788 /* Each and every BLOCK node created here in `poplevel' is important
789 (e.g. for proper debugging information) so if we created one
790 earlier, mark it as "used". */
792 TREE_USED (block) = 1;
794 /* All temporary bindings created for cleanups are popped silently. */
795 if (kind == sk_cleanup)
798 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, block);
801 /* Walk all the namespaces contained NAMESPACE, including NAMESPACE
802 itself, calling F for each. The DATA is passed to F as well. */
805 walk_namespaces_r (tree name_space, walk_namespaces_fn f, void* data)
808 tree current = NAMESPACE_LEVEL (name_space)->namespaces;
810 result |= (*f) (name_space, data);
812 for (; current; current = TREE_CHAIN (current))
813 result |= walk_namespaces_r (current, f, data);
818 /* Walk all the namespaces, calling F for each. The DATA is passed to
822 walk_namespaces (walk_namespaces_fn f, void* data)
824 return walk_namespaces_r (global_namespace, f, data);
827 /* Call wrapup_globals_declarations for the globals in NAMESPACE. If
828 DATA is non-NULL, this is the last time we will call
829 wrapup_global_declarations for this NAMESPACE. */
832 wrapup_globals_for_namespace (tree name_space, void* data)
834 struct cp_binding_level *level = NAMESPACE_LEVEL (name_space);
835 VEC(tree,gc) *statics = level->static_decls;
836 tree *vec = VEC_address (tree, statics);
837 int len = VEC_length (tree, statics);
838 int last_time = (data != 0);
842 check_global_declarations (vec, len);
843 emit_debug_global_declarations (vec, len);
847 /* Write out any globals that need to be output. */
848 return wrapup_global_declarations (vec, len);
852 /* In C++, you don't have to write `struct S' to refer to `S'; you
853 can just use `S'. We accomplish this by creating a TYPE_DECL as
854 if the user had written `typedef struct S S'. Create and return
855 the TYPE_DECL for TYPE. */
858 create_implicit_typedef (tree name, tree type)
862 decl = build_decl (input_location, TYPE_DECL, name, type);
863 DECL_ARTIFICIAL (decl) = 1;
864 /* There are other implicit type declarations, like the one *within*
865 a class that allows you to write `S::S'. We must distinguish
867 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
868 TYPE_NAME (type) = decl;
869 TYPE_STUB_DECL (type) = decl;
874 /* Remember a local name for name-mangling purposes. */
877 push_local_name (tree decl)
882 timevar_push (TV_NAME_LOOKUP);
884 name = DECL_NAME (decl);
886 nelts = VEC_length (tree, local_names);
887 for (i = 0; i < nelts; i++)
889 t = VEC_index (tree, local_names, i);
890 if (DECL_NAME (t) == name)
892 if (!DECL_LANG_SPECIFIC (decl))
893 retrofit_lang_decl (decl);
894 DECL_LANG_SPECIFIC (decl)->u.base.u2sel = 1;
895 if (DECL_LANG_SPECIFIC (t))
896 DECL_DISCRIMINATOR (decl) = DECL_DISCRIMINATOR (t) + 1;
898 DECL_DISCRIMINATOR (decl) = 1;
900 VEC_replace (tree, local_names, i, decl);
901 timevar_pop (TV_NAME_LOOKUP);
906 VEC_safe_push (tree, gc, local_names, decl);
907 timevar_pop (TV_NAME_LOOKUP);
910 /* Subroutine of duplicate_decls: return truthvalue of whether
911 or not types of these decls match.
913 For C++, we must compare the parameter list so that `int' can match
914 `int&' in a parameter position, but `int&' is not confused with
918 decls_match (tree newdecl, tree olddecl)
922 if (newdecl == olddecl)
925 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
926 /* If the two DECLs are not even the same kind of thing, we're not
927 interested in their types. */
930 if (TREE_CODE (newdecl) == FUNCTION_DECL)
932 tree f1 = TREE_TYPE (newdecl);
933 tree f2 = TREE_TYPE (olddecl);
934 tree p1 = TYPE_ARG_TYPES (f1);
935 tree p2 = TYPE_ARG_TYPES (f2);
937 /* Specializations of different templates are different functions
938 even if they have the same type. */
939 tree t1 = (DECL_USE_TEMPLATE (newdecl)
940 ? DECL_TI_TEMPLATE (newdecl)
942 tree t2 = (DECL_USE_TEMPLATE (olddecl)
943 ? DECL_TI_TEMPLATE (olddecl)
948 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
949 && ! (DECL_EXTERN_C_P (newdecl)
950 && DECL_EXTERN_C_P (olddecl)))
953 #ifdef NO_IMPLICIT_EXTERN_C
954 /* A new declaration doesn't match a built-in one unless it
955 is also extern "C". */
956 if (DECL_IS_BUILTIN (olddecl)
957 && DECL_EXTERN_C_P (olddecl) && !DECL_EXTERN_C_P (newdecl))
961 if (TREE_CODE (f1) != TREE_CODE (f2))
964 if (same_type_p (TREE_TYPE (f1), TREE_TYPE (f2)))
966 if (p2 == NULL_TREE && DECL_EXTERN_C_P (olddecl)
967 && (DECL_BUILT_IN (olddecl)
968 #ifndef NO_IMPLICIT_EXTERN_C
969 || (DECL_IN_SYSTEM_HEADER (newdecl) && !DECL_CLASS_SCOPE_P (newdecl))
970 || (DECL_IN_SYSTEM_HEADER (olddecl) && !DECL_CLASS_SCOPE_P (olddecl))
974 types_match = self_promoting_args_p (p1);
975 if (p1 == void_list_node)
976 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
978 #ifndef NO_IMPLICIT_EXTERN_C
979 else if (p1 == NULL_TREE
980 && (DECL_EXTERN_C_P (olddecl)
981 && DECL_IN_SYSTEM_HEADER (olddecl)
982 && !DECL_CLASS_SCOPE_P (olddecl))
983 && (DECL_EXTERN_C_P (newdecl)
984 && DECL_IN_SYSTEM_HEADER (newdecl)
985 && !DECL_CLASS_SCOPE_P (newdecl)))
987 types_match = self_promoting_args_p (p2);
988 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
992 types_match = compparms (p1, p2);
997 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
999 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl))
1000 != TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)))
1003 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1004 DECL_TEMPLATE_PARMS (olddecl)))
1007 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1008 types_match = same_type_p (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl)),
1009 TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl)));
1011 types_match = decls_match (DECL_TEMPLATE_RESULT (olddecl),
1012 DECL_TEMPLATE_RESULT (newdecl));
1016 /* Need to check scope for variable declaration (VAR_DECL).
1017 For typedef (TYPE_DECL), scope is ignored. */
1018 if (TREE_CODE (newdecl) == VAR_DECL
1019 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1021 Two declarations for an object with C language linkage
1022 with the same name (ignoring the namespace that qualify
1023 it) that appear in different namespace scopes refer to
1025 && !(DECL_EXTERN_C_P (olddecl) && DECL_EXTERN_C_P (newdecl)))
1028 if (TREE_TYPE (newdecl) == error_mark_node)
1029 types_match = TREE_TYPE (olddecl) == error_mark_node;
1030 else if (TREE_TYPE (olddecl) == NULL_TREE)
1031 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1032 else if (TREE_TYPE (newdecl) == NULL_TREE)
1035 types_match = comptypes (TREE_TYPE (newdecl),
1036 TREE_TYPE (olddecl),
1037 COMPARE_REDECLARATION);
1043 /* If NEWDECL is `static' and an `extern' was seen previously,
1044 warn about it. OLDDECL is the previous declaration.
1046 Note that this does not apply to the C++ case of declaring
1047 a variable `extern const' and then later `const'.
1049 Don't complain about built-in functions, since they are beyond
1050 the user's control. */
1053 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1055 if (TREE_CODE (newdecl) == TYPE_DECL
1056 || TREE_CODE (newdecl) == TEMPLATE_DECL
1057 || TREE_CODE (newdecl) == CONST_DECL
1058 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1061 /* Don't get confused by static member functions; that's a different
1063 if (TREE_CODE (newdecl) == FUNCTION_DECL
1064 && DECL_STATIC_FUNCTION_P (newdecl))
1067 /* If the old declaration was `static', or the new one isn't, then
1068 then everything is OK. */
1069 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1072 /* It's OK to declare a builtin function as `static'. */
1073 if (TREE_CODE (olddecl) == FUNCTION_DECL
1074 && DECL_ARTIFICIAL (olddecl))
1077 permerror (input_location, "%qD was declared %<extern%> and later %<static%>", newdecl);
1078 permerror (input_location, "previous declaration of %q+D", olddecl);
1081 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1082 function templates. If their exception specifications do not
1083 match, issue a diagnostic. */
1086 check_redeclaration_exception_specification (tree new_decl,
1091 tree new_exceptions;
1092 tree old_exceptions;
1094 new_type = TREE_TYPE (new_decl);
1095 new_exceptions = TYPE_RAISES_EXCEPTIONS (new_type);
1096 old_type = TREE_TYPE (old_decl);
1097 old_exceptions = TYPE_RAISES_EXCEPTIONS (old_type);
1101 If any declaration of a function has an exception-specification,
1102 all declarations, including the definition and an explicit
1103 specialization, of that function shall have an
1104 exception-specification with the same set of type-ids. */
1105 if ((pedantic || ! DECL_IN_SYSTEM_HEADER (old_decl))
1106 && ! DECL_IS_BUILTIN (old_decl)
1108 && !comp_except_specs (new_exceptions, old_exceptions,
1111 error ("declaration of %qF throws different exceptions", new_decl);
1112 error ("from previous declaration %q+F", old_decl);
1116 #define GNU_INLINE_P(fn) (DECL_DECLARED_INLINE_P (fn) \
1117 && lookup_attribute ("gnu_inline", \
1118 DECL_ATTRIBUTES (fn)))
1120 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1121 If the redeclaration is invalid, a diagnostic is issued, and the
1122 error_mark_node is returned. Otherwise, OLDDECL is returned.
1124 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1127 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1130 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1132 unsigned olddecl_uid = DECL_UID (olddecl);
1133 int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1134 int new_defines_function = 0;
1135 tree new_template_info;
1137 if (newdecl == olddecl)
1140 types_match = decls_match (newdecl, olddecl);
1142 /* If either the type of the new decl or the type of the old decl is an
1143 error_mark_node, then that implies that we have already issued an
1144 error (earlier) for some bogus type specification, and in that case,
1145 it is rather pointless to harass the user with yet more error message
1146 about the same declaration, so just pretend the types match here. */
1147 if (TREE_TYPE (newdecl) == error_mark_node
1148 || TREE_TYPE (olddecl) == error_mark_node)
1149 return error_mark_node;
1151 if (DECL_P (olddecl)
1152 && TREE_CODE (newdecl) == FUNCTION_DECL
1153 && TREE_CODE (olddecl) == FUNCTION_DECL
1154 && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
1156 if (DECL_DECLARED_INLINE_P (newdecl)
1157 && DECL_UNINLINABLE (newdecl)
1158 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1159 /* Already warned elsewhere. */;
1160 else if (DECL_DECLARED_INLINE_P (olddecl)
1161 && DECL_UNINLINABLE (olddecl)
1162 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1163 /* Already warned. */;
1164 else if (DECL_DECLARED_INLINE_P (newdecl)
1165 && DECL_UNINLINABLE (olddecl)
1166 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1168 warning (OPT_Wattributes, "function %q+D redeclared as inline",
1170 warning (OPT_Wattributes, "previous declaration of %q+D "
1171 "with attribute noinline", olddecl);
1173 else if (DECL_DECLARED_INLINE_P (olddecl)
1174 && DECL_UNINLINABLE (newdecl)
1175 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1177 warning (OPT_Wattributes, "function %q+D redeclared with "
1178 "attribute noinline", newdecl);
1179 warning (OPT_Wattributes, "previous declaration of %q+D was inline",
1184 /* Check for redeclaration and other discrepancies. */
1185 if (TREE_CODE (olddecl) == FUNCTION_DECL
1186 && DECL_ARTIFICIAL (olddecl))
1188 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1189 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1191 /* Avoid warnings redeclaring built-ins which have not been
1192 explicitly declared. */
1193 if (DECL_ANTICIPATED (olddecl))
1196 /* If you declare a built-in or predefined function name as static,
1197 the old definition is overridden, but optionally warn this was a
1198 bad choice of name. */
1199 if (! TREE_PUBLIC (newdecl))
1201 warning (OPT_Wshadow,
1202 DECL_BUILT_IN (olddecl)
1203 ? G_("shadowing built-in function %q#D")
1204 : G_("shadowing library function %q#D"), olddecl);
1205 /* Discard the old built-in function. */
1208 /* If the built-in is not ansi, then programs can override
1209 it even globally without an error. */
1210 else if (! DECL_BUILT_IN (olddecl))
1211 warning (0, "library function %q#D redeclared as non-function %q#D",
1215 error ("declaration of %q#D", newdecl);
1216 error ("conflicts with built-in declaration %q#D",
1221 else if (!types_match)
1223 /* Avoid warnings redeclaring built-ins which have not been
1224 explicitly declared. */
1225 if (DECL_ANTICIPATED (olddecl))
1227 /* Deal with fileptr_type_node. FILE type is not known
1228 at the time we create the builtins. */
1231 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1232 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1234 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1237 else if (TREE_VALUE (t2) == fileptr_type_node)
1239 tree t = TREE_VALUE (t1);
1241 if (TREE_CODE (t) == POINTER_TYPE
1242 && TYPE_NAME (TREE_TYPE (t))
1243 && DECL_NAME (TYPE_NAME (TREE_TYPE (t)))
1244 == get_identifier ("FILE")
1245 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1247 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1249 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1250 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1251 types_match = decls_match (newdecl, olddecl);
1253 return duplicate_decls (newdecl, olddecl,
1255 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1258 else if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1261 else if ((DECL_EXTERN_C_P (newdecl)
1262 && DECL_EXTERN_C_P (olddecl))
1263 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1264 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1266 /* A near match; override the builtin. */
1268 if (TREE_PUBLIC (newdecl))
1270 warning (0, "new declaration %q#D", newdecl);
1271 warning (0, "ambiguates built-in declaration %q#D",
1275 warning (OPT_Wshadow,
1276 DECL_BUILT_IN (olddecl)
1277 ? G_("shadowing built-in function %q#D")
1278 : G_("shadowing library function %q#D"), olddecl);
1281 /* Discard the old built-in function. */
1284 /* Replace the old RTL to avoid problems with inlining. */
1285 COPY_DECL_RTL (newdecl, olddecl);
1287 /* Even if the types match, prefer the new declarations type for
1288 built-ins which have not been explicitly declared, for
1289 exception lists, etc... */
1290 else if (DECL_ANTICIPATED (olddecl))
1292 tree type = TREE_TYPE (newdecl);
1293 tree attribs = (*targetm.merge_type_attributes)
1294 (TREE_TYPE (olddecl), type);
1296 type = cp_build_type_attribute_variant (type, attribs);
1297 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1300 /* If a function is explicitly declared "throw ()", propagate that to
1301 the corresponding builtin. */
1302 if (DECL_BUILT_IN_CLASS (olddecl) == BUILT_IN_NORMAL
1303 && DECL_ANTICIPATED (olddecl)
1304 && TREE_NOTHROW (newdecl)
1305 && !TREE_NOTHROW (olddecl)
1306 && built_in_decls [DECL_FUNCTION_CODE (olddecl)] != NULL_TREE
1307 && built_in_decls [DECL_FUNCTION_CODE (olddecl)] != olddecl
1309 TREE_NOTHROW (built_in_decls [DECL_FUNCTION_CODE (olddecl)]) = 1;
1311 /* Whether or not the builtin can throw exceptions has no
1312 bearing on this declarator. */
1313 TREE_NOTHROW (olddecl) = 0;
1315 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1317 /* If a builtin function is redeclared as `static', merge
1318 the declarations, but make the original one static. */
1319 DECL_THIS_STATIC (olddecl) = 1;
1320 TREE_PUBLIC (olddecl) = 0;
1322 /* Make the old declaration consistent with the new one so
1323 that all remnants of the builtin-ness of this function
1324 will be banished. */
1325 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1326 COPY_DECL_RTL (newdecl, olddecl);
1329 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1331 /* C++ Standard, 3.3, clause 4:
1332 "[Note: a namespace name or a class template name must be unique
1333 in its declarative region (7.3.2, clause 14). ]" */
1334 if (TREE_CODE (olddecl) != NAMESPACE_DECL
1335 && TREE_CODE (newdecl) != NAMESPACE_DECL
1336 && (TREE_CODE (olddecl) != TEMPLATE_DECL
1337 || TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) != TYPE_DECL)
1338 && (TREE_CODE (newdecl) != TEMPLATE_DECL
1339 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != TYPE_DECL))
1341 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
1342 && TREE_CODE (newdecl) != TYPE_DECL)
1343 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
1344 && TREE_CODE (olddecl) != TYPE_DECL))
1346 /* We do nothing special here, because C++ does such nasty
1347 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1348 get shadowed, and know that if we need to find a TYPE_DECL
1349 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1350 slot of the identifier. */
1354 if ((TREE_CODE (newdecl) == FUNCTION_DECL
1355 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1356 || (TREE_CODE (olddecl) == FUNCTION_DECL
1357 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1361 error ("%q#D redeclared as different kind of symbol", newdecl);
1362 if (TREE_CODE (olddecl) == TREE_LIST)
1363 olddecl = TREE_VALUE (olddecl);
1364 error ("previous declaration of %q+#D", olddecl);
1366 return error_mark_node;
1368 else if (!types_match)
1370 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1371 /* These are certainly not duplicate declarations; they're
1372 from different scopes. */
1375 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1377 /* The name of a class template may not be declared to refer to
1378 any other template, class, function, object, namespace, value,
1379 or type in the same scope. */
1380 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1381 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1383 error ("declaration of template %q#D", newdecl);
1384 error ("conflicts with previous declaration %q+#D", olddecl);
1386 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1387 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1388 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1389 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1390 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1391 DECL_TEMPLATE_PARMS (olddecl))
1392 /* Template functions can be disambiguated by
1394 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1395 TREE_TYPE (TREE_TYPE (olddecl))))
1397 error ("new declaration %q#D", newdecl);
1398 error ("ambiguates old declaration %q+#D", olddecl);
1402 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1404 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1406 error ("declaration of C function %q#D conflicts with",
1408 error ("previous declaration %q+#D here", olddecl);
1410 else if (compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1411 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1413 error ("new declaration %q#D", newdecl);
1414 error ("ambiguates old declaration %q+#D", olddecl);
1415 return error_mark_node;
1422 error ("conflicting declaration %q#D", newdecl);
1423 error ("%q+D has a previous declaration as %q#D", olddecl, olddecl);
1424 return error_mark_node;
1427 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1428 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1429 && (!DECL_TEMPLATE_INFO (newdecl)
1430 || (DECL_TI_TEMPLATE (newdecl)
1431 != DECL_TI_TEMPLATE (olddecl))))
1432 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1433 && (!DECL_TEMPLATE_INFO (olddecl)
1434 || (DECL_TI_TEMPLATE (olddecl)
1435 != DECL_TI_TEMPLATE (newdecl))))))
1436 /* It's OK to have a template specialization and a non-template
1437 with the same type, or to have specializations of two
1438 different templates with the same type. Note that if one is a
1439 specialization, and the other is an instantiation of the same
1440 template, that we do not exit at this point. That situation
1441 can occur if we instantiate a template class, and then
1442 specialize one of its methods. This situation is valid, but
1443 the declarations must be merged in the usual way. */
1445 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1446 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1447 && !DECL_USE_TEMPLATE (newdecl))
1448 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1449 && !DECL_USE_TEMPLATE (olddecl))))
1450 /* One of the declarations is a template instantiation, and the
1451 other is not a template at all. That's OK. */
1453 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1455 /* In [namespace.alias] we have:
1457 In a declarative region, a namespace-alias-definition can be
1458 used to redefine a namespace-alias declared in that declarative
1459 region to refer only to the namespace to which it already
1462 Therefore, if we encounter a second alias directive for the same
1463 alias, we can just ignore the second directive. */
1464 if (DECL_NAMESPACE_ALIAS (newdecl)
1465 && (DECL_NAMESPACE_ALIAS (newdecl)
1466 == DECL_NAMESPACE_ALIAS (olddecl)))
1468 /* [namespace.alias]
1470 A namespace-name or namespace-alias shall not be declared as
1471 the name of any other entity in the same declarative region.
1472 A namespace-name defined at global scope shall not be
1473 declared as the name of any other entity in any global scope
1475 error ("declaration of namespace %qD conflicts with", newdecl);
1476 error ("previous declaration of namespace %q+D here", olddecl);
1477 return error_mark_node;
1481 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1484 error_at (DECL_SOURCE_LOCATION (newdecl), errmsg, newdecl);
1485 if (DECL_NAME (olddecl) != NULL_TREE)
1486 error ((DECL_INITIAL (olddecl) && namespace_bindings_p ())
1487 ? "%q+#D previously defined here"
1488 : "%q+#D previously declared here", olddecl);
1489 return error_mark_node;
1491 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1492 && DECL_INITIAL (olddecl) != NULL_TREE
1493 && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) == NULL_TREE
1494 && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != NULL_TREE)
1496 /* Prototype decl follows defn w/o prototype. */
1497 warning_at (input_location, 0, "prototype for %q+#D", newdecl);
1498 warning_at (DECL_SOURCE_LOCATION (olddecl), 0,
1499 "follows non-prototype definition here");
1501 else if ((TREE_CODE (olddecl) == FUNCTION_DECL
1502 || TREE_CODE (olddecl) == VAR_DECL)
1503 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1506 If two declarations of the same function or object
1507 specify different linkage-specifications ..., the program
1508 is ill-formed.... Except for functions with C++ linkage,
1509 a function declaration without a linkage specification
1510 shall not precede the first linkage specification for
1511 that function. A function can be declared without a
1512 linkage specification after an explicit linkage
1513 specification has been seen; the linkage explicitly
1514 specified in the earlier declaration is not affected by
1515 such a function declaration.
1517 DR 563 raises the question why the restrictions on
1518 functions should not also apply to objects. Older
1519 versions of G++ silently ignore the linkage-specification
1527 which is clearly wrong. Therefore, we now treat objects
1529 if (current_lang_depth () == 0)
1531 /* There is no explicit linkage-specification, so we use
1532 the linkage from the previous declaration. */
1533 if (!DECL_LANG_SPECIFIC (newdecl))
1534 retrofit_lang_decl (newdecl);
1535 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1539 error ("previous declaration of %q+#D with %qL linkage",
1540 olddecl, DECL_LANGUAGE (olddecl));
1541 error ("conflicts with new declaration with %qL linkage",
1542 DECL_LANGUAGE (newdecl));
1546 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1548 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1550 tree t1 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1551 tree t2 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1554 if (TREE_CODE (TREE_TYPE (newdecl)) == METHOD_TYPE)
1555 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2);
1557 for (; t1 && t1 != void_list_node;
1558 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1559 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1561 if (1 == simple_cst_equal (TREE_PURPOSE (t1),
1564 permerror (input_location, "default argument given for parameter %d of %q#D",
1566 permerror (input_location, "after previous specification in %q+#D", olddecl);
1570 error ("default argument given for parameter %d of %q#D",
1572 error ("after previous specification in %q+#D",
1579 /* Do not merge an implicit typedef with an explicit one. In:
1583 typedef class A A __attribute__ ((foo));
1585 the attribute should apply only to the typedef. */
1586 if (TREE_CODE (olddecl) == TYPE_DECL
1587 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1588 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1591 /* If new decl is `static' and an `extern' was seen previously,
1593 warn_extern_redeclared_static (newdecl, olddecl);
1595 /* We have committed to returning 1 at this point. */
1596 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1598 /* Now that functions must hold information normally held
1599 by field decls, there is extra work to do so that
1600 declaration information does not get destroyed during
1602 if (DECL_VINDEX (olddecl))
1603 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1604 if (DECL_CONTEXT (olddecl))
1605 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1606 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1607 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1608 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1609 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1610 DECL_INVALID_OVERRIDER_P (newdecl) |= DECL_INVALID_OVERRIDER_P (olddecl);
1611 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1612 if (DECL_OVERLOADED_OPERATOR_P (olddecl) != ERROR_MARK)
1613 SET_OVERLOADED_OPERATOR_CODE
1614 (newdecl, DECL_OVERLOADED_OPERATOR_P (olddecl));
1615 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1617 /* Optionally warn about more than one declaration for the same
1618 name, but don't warn about a function declaration followed by a
1620 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1621 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1622 /* Don't warn about extern decl followed by definition. */
1623 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1624 /* Don't warn about friends, let add_friend take care of it. */
1625 && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl)))
1627 warning (OPT_Wredundant_decls, "redundant redeclaration of %qD in same scope", newdecl);
1628 warning (OPT_Wredundant_decls, "previous declaration of %q+D", olddecl);
1631 if (DECL_DELETED_FN (newdecl))
1633 error ("deleted definition of %qD", newdecl);
1634 error ("after previous declaration %q+D", olddecl);
1638 /* Deal with C++: must preserve virtual function table size. */
1639 if (TREE_CODE (olddecl) == TYPE_DECL)
1641 tree newtype = TREE_TYPE (newdecl);
1642 tree oldtype = TREE_TYPE (olddecl);
1644 if (newtype != error_mark_node && oldtype != error_mark_node
1645 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
1646 CLASSTYPE_FRIEND_CLASSES (newtype)
1647 = CLASSTYPE_FRIEND_CLASSES (oldtype);
1649 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
1652 /* Copy all the DECL_... slots specified in the new decl
1653 except for any that we copy here from the old type. */
1654 DECL_ATTRIBUTES (newdecl)
1655 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1657 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1661 old_result = DECL_TEMPLATE_RESULT (olddecl);
1662 new_result = DECL_TEMPLATE_RESULT (newdecl);
1663 TREE_TYPE (olddecl) = TREE_TYPE (old_result);
1664 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
1665 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
1666 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
1668 DECL_ATTRIBUTES (old_result)
1669 = (*targetm.merge_decl_attributes) (old_result, new_result);
1671 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1673 if (GNU_INLINE_P (old_result) != GNU_INLINE_P (new_result)
1674 && DECL_INITIAL (new_result))
1676 if (DECL_INITIAL (old_result))
1677 DECL_UNINLINABLE (old_result) = 1;
1679 DECL_UNINLINABLE (old_result) = DECL_UNINLINABLE (new_result);
1680 DECL_EXTERNAL (old_result) = DECL_EXTERNAL (new_result);
1681 DECL_NOT_REALLY_EXTERN (old_result)
1682 = DECL_NOT_REALLY_EXTERN (new_result);
1683 DECL_INTERFACE_KNOWN (old_result)
1684 = DECL_INTERFACE_KNOWN (new_result);
1685 DECL_DECLARED_INLINE_P (old_result)
1686 = DECL_DECLARED_INLINE_P (new_result);
1687 DECL_DISREGARD_INLINE_LIMITS (old_result)
1688 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
1693 DECL_DECLARED_INLINE_P (old_result)
1694 |= DECL_DECLARED_INLINE_P (new_result);
1695 DECL_DISREGARD_INLINE_LIMITS (old_result)
1696 |= DECL_DISREGARD_INLINE_LIMITS (new_result);
1697 check_redeclaration_exception_specification (newdecl, olddecl);
1701 /* If the new declaration is a definition, update the file and
1702 line information on the declaration, and also make
1703 the old declaration the same definition. */
1704 if (DECL_INITIAL (new_result) != NULL_TREE)
1706 DECL_SOURCE_LOCATION (olddecl)
1707 = DECL_SOURCE_LOCATION (old_result)
1708 = DECL_SOURCE_LOCATION (newdecl);
1709 DECL_INITIAL (old_result) = DECL_INITIAL (new_result);
1710 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1713 DECL_ARGUMENTS (old_result)
1714 = DECL_ARGUMENTS (new_result);
1715 for (parm = DECL_ARGUMENTS (old_result); parm;
1716 parm = TREE_CHAIN (parm))
1717 DECL_CONTEXT (parm) = old_result;
1726 /* Automatically handles default parameters. */
1727 tree oldtype = TREE_TYPE (olddecl);
1730 /* Merge the data types specified in the two decls. */
1731 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1733 /* If merge_types produces a non-typedef type, just use the old type. */
1734 if (TREE_CODE (newdecl) == TYPE_DECL
1735 && newtype == DECL_ORIGINAL_TYPE (newdecl))
1738 if (TREE_CODE (newdecl) == VAR_DECL)
1740 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
1741 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
1742 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
1743 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
1744 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
1745 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
1747 /* Merge the threadprivate attribute from OLDDECL into NEWDECL. */
1748 if (DECL_LANG_SPECIFIC (olddecl)
1749 && CP_DECL_THREADPRIVATE_P (olddecl))
1751 /* Allocate a LANG_SPECIFIC structure for NEWDECL, if needed. */
1752 if (!DECL_LANG_SPECIFIC (newdecl))
1753 retrofit_lang_decl (newdecl);
1755 DECL_TLS_MODEL (newdecl) = DECL_TLS_MODEL (olddecl);
1756 CP_DECL_THREADPRIVATE_P (newdecl) = 1;
1760 /* Do this after calling `merge_types' so that default
1761 parameters don't confuse us. */
1762 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1763 check_redeclaration_exception_specification (newdecl, olddecl);
1764 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
1766 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1767 check_default_args (newdecl);
1769 /* Lay the type out, unless already done. */
1770 if (! same_type_p (newtype, oldtype)
1771 && TREE_TYPE (newdecl) != error_mark_node
1772 && !(processing_template_decl && uses_template_parms (newdecl)))
1773 layout_type (TREE_TYPE (newdecl));
1775 if ((TREE_CODE (newdecl) == VAR_DECL
1776 || TREE_CODE (newdecl) == PARM_DECL
1777 || TREE_CODE (newdecl) == RESULT_DECL
1778 || TREE_CODE (newdecl) == FIELD_DECL
1779 || TREE_CODE (newdecl) == TYPE_DECL)
1780 && !(processing_template_decl && uses_template_parms (newdecl)))
1781 layout_decl (newdecl, 0);
1783 /* Merge the type qualifiers. */
1784 if (TREE_READONLY (newdecl))
1785 TREE_READONLY (olddecl) = 1;
1786 if (TREE_THIS_VOLATILE (newdecl))
1787 TREE_THIS_VOLATILE (olddecl) = 1;
1788 if (TREE_NOTHROW (newdecl))
1789 TREE_NOTHROW (olddecl) = 1;
1791 /* Merge deprecatedness. */
1792 if (TREE_DEPRECATED (newdecl))
1793 TREE_DEPRECATED (olddecl) = 1;
1795 /* Preserve function specific target and optimization options */
1796 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1798 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
1799 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
1800 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
1801 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
1803 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
1804 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
1805 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
1806 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
1809 /* Merge the initialization information. */
1810 if (DECL_INITIAL (newdecl) == NULL_TREE
1811 && DECL_INITIAL (olddecl) != NULL_TREE)
1813 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1814 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
1815 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1817 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
1818 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
1822 /* Merge the section attribute.
1823 We want to issue an error if the sections conflict but that must be
1824 done later in decl_attributes since we are called before attributes
1826 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1827 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1829 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1831 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1832 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1833 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
1834 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1835 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
1836 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
1837 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
1838 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
1839 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
1840 DECL_LOOPING_CONST_OR_PURE_P (newdecl)
1841 |= DECL_LOOPING_CONST_OR_PURE_P (olddecl);
1842 /* Keep the old RTL. */
1843 COPY_DECL_RTL (olddecl, newdecl);
1845 else if (TREE_CODE (newdecl) == VAR_DECL
1846 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
1848 /* Keep the old RTL. We cannot keep the old RTL if the old
1849 declaration was for an incomplete object and the new
1850 declaration is not since many attributes of the RTL will
1852 COPY_DECL_RTL (olddecl, newdecl);
1855 /* If cannot merge, then use the new type and qualifiers,
1856 and don't preserve the old rtl. */
1859 /* Clean out any memory we had of the old declaration. */
1860 tree oldstatic = value_member (olddecl, static_aggregates);
1862 TREE_VALUE (oldstatic) = error_mark_node;
1864 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1865 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1866 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1867 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1870 /* Merge the storage class information. */
1871 merge_weak (newdecl, olddecl);
1873 if (DECL_ONE_ONLY (olddecl))
1874 DECL_COMDAT_GROUP (newdecl) = DECL_COMDAT_GROUP (olddecl);
1876 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
1877 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1878 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
1879 if (! DECL_EXTERNAL (olddecl))
1880 DECL_EXTERNAL (newdecl) = 0;
1882 new_template_info = NULL_TREE;
1883 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
1885 bool new_redefines_gnu_inline = false;
1887 if (new_defines_function
1888 && ((DECL_INTERFACE_KNOWN (olddecl)
1889 && TREE_CODE (olddecl) == FUNCTION_DECL)
1890 || (TREE_CODE (olddecl) == TEMPLATE_DECL
1891 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
1892 == FUNCTION_DECL))))
1896 if (TREE_CODE (fn) == TEMPLATE_DECL)
1897 fn = DECL_TEMPLATE_RESULT (olddecl);
1899 new_redefines_gnu_inline = GNU_INLINE_P (fn) && DECL_INITIAL (fn);
1902 if (!new_redefines_gnu_inline)
1904 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
1905 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
1906 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
1908 DECL_TEMPLATE_INSTANTIATED (newdecl)
1909 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
1910 DECL_ODR_USED (newdecl) |= DECL_ODR_USED (olddecl);
1912 /* If the OLDDECL is an instantiation and/or specialization,
1913 then the NEWDECL must be too. But, it may not yet be marked
1914 as such if the caller has created NEWDECL, but has not yet
1915 figured out that it is a redeclaration. */
1916 if (!DECL_USE_TEMPLATE (newdecl))
1917 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
1919 /* Don't really know how much of the language-specific
1920 values we should copy from old to new. */
1921 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
1922 DECL_REPO_AVAILABLE_P (newdecl) = DECL_REPO_AVAILABLE_P (olddecl);
1923 DECL_INITIALIZED_IN_CLASS_P (newdecl)
1924 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
1926 if (LANG_DECL_HAS_MIN (newdecl))
1928 DECL_LANG_SPECIFIC (newdecl)->u.min.u2 =
1929 DECL_LANG_SPECIFIC (olddecl)->u.min.u2;
1930 if (DECL_TEMPLATE_INFO (newdecl))
1931 new_template_info = DECL_TEMPLATE_INFO (newdecl);
1932 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
1934 /* Only functions have these fields. */
1935 if (TREE_CODE (newdecl) == FUNCTION_DECL
1936 || DECL_FUNCTION_TEMPLATE_P (newdecl))
1938 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
1939 olddecl_friend = DECL_FRIEND_P (olddecl);
1940 hidden_friend = (DECL_ANTICIPATED (olddecl)
1941 && DECL_HIDDEN_FRIEND_P (olddecl)
1942 && newdecl_is_friend);
1943 DECL_BEFRIENDING_CLASSES (newdecl)
1944 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
1945 DECL_BEFRIENDING_CLASSES (olddecl));
1946 /* DECL_THUNKS is only valid for virtual functions,
1947 otherwise it is a DECL_FRIEND_CONTEXT. */
1948 if (DECL_VIRTUAL_P (newdecl))
1949 DECL_THUNKS (newdecl) = DECL_THUNKS (olddecl);
1951 /* Only variables have this field. */
1952 else if (TREE_CODE (newdecl) == VAR_DECL
1953 && VAR_HAD_UNKNOWN_BOUND (olddecl))
1954 SET_VAR_HAD_UNKNOWN_BOUND (newdecl);
1957 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1961 /* Merge parameter attributes. */
1962 tree oldarg, newarg;
1963 for (oldarg = DECL_ARGUMENTS(olddecl),
1964 newarg = DECL_ARGUMENTS(newdecl);
1966 oldarg = TREE_CHAIN(oldarg), newarg = TREE_CHAIN(newarg)) {
1967 DECL_ATTRIBUTES (newarg)
1968 = (*targetm.merge_decl_attributes) (oldarg, newarg);
1969 DECL_ATTRIBUTES (oldarg) = DECL_ATTRIBUTES (newarg);
1972 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
1973 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
1975 /* If newdecl is not a specialization, then it is not a
1976 template-related function at all. And that means that we
1977 should have exited above, returning 0. */
1978 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
1980 if (DECL_ODR_USED (olddecl))
1981 /* From [temp.expl.spec]:
1983 If a template, a member template or the member of a class
1984 template is explicitly specialized then that
1985 specialization shall be declared before the first use of
1986 that specialization that would cause an implicit
1987 instantiation to take place, in every translation unit in
1988 which such a use occurs. */
1989 error ("explicit specialization of %qD after first use",
1992 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
1994 /* Don't propagate visibility from the template to the
1995 specialization here. We'll do that in determine_visibility if
1997 DECL_VISIBILITY_SPECIFIED (olddecl) = 0;
1999 /* [temp.expl.spec/14] We don't inline explicit specialization
2000 just because the primary template says so. */
2002 else if (new_defines_function && DECL_INITIAL (olddecl))
2004 /* Never inline re-defined extern inline functions.
2005 FIXME: this could be better handled by keeping both
2006 function as separate declarations. */
2007 DECL_UNINLINABLE (newdecl) = 1;
2011 if (DECL_PENDING_INLINE_INFO (newdecl) == 0)
2012 DECL_PENDING_INLINE_INFO (newdecl) = DECL_PENDING_INLINE_INFO (olddecl);
2014 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
2016 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2017 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2019 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2020 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2021 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2022 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2025 /* Preserve abstractness on cloned [cd]tors. */
2026 DECL_ABSTRACT (newdecl) = DECL_ABSTRACT (olddecl);
2028 /* Update newdecl's parms to point at olddecl. */
2029 for (parm = DECL_ARGUMENTS (newdecl); parm;
2030 parm = TREE_CHAIN (parm))
2031 DECL_CONTEXT (parm) = olddecl;
2035 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
2036 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
2037 COPY_DECL_RTL (newdecl, olddecl);
2039 if (! types_match || new_defines_function)
2041 /* These need to be copied so that the names are available.
2042 Note that if the types do match, we'll preserve inline
2043 info and other bits, but if not, we won't. */
2044 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2045 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2047 if (new_defines_function)
2048 /* If defining a function declared with other language
2049 linkage, use the previously declared language linkage. */
2050 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
2051 else if (types_match)
2053 /* If redeclaring a builtin function, and not a definition,
2054 it stays built in. */
2055 if (DECL_BUILT_IN (olddecl))
2057 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2058 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2059 /* If we're keeping the built-in definition, keep the rtl,
2060 regardless of declaration matches. */
2061 COPY_DECL_RTL (olddecl, newdecl);
2064 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2065 /* Don't clear out the arguments if we're just redeclaring a
2067 if (DECL_ARGUMENTS (olddecl))
2068 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2071 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2072 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2074 /* Now preserve various other info from the definition. */
2075 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2076 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2077 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2078 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2080 /* Warn about conflicting visibility specifications. */
2081 if (DECL_VISIBILITY_SPECIFIED (olddecl)
2082 && DECL_VISIBILITY_SPECIFIED (newdecl)
2083 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2085 warning_at (input_location, OPT_Wattributes,
2086 "%q+D: visibility attribute ignored because it", newdecl);
2087 warning_at (DECL_SOURCE_LOCATION (olddecl), OPT_Wattributes,
2088 "conflicts with previous declaration here");
2090 /* Choose the declaration which specified visibility. */
2091 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2093 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2094 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2096 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
2097 so keep this behavior. */
2098 if (TREE_CODE (newdecl) == VAR_DECL && DECL_HAS_INIT_PRIORITY_P (newdecl))
2100 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
2101 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
2104 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
2105 with that from NEWDECL below. */
2106 if (DECL_LANG_SPECIFIC (olddecl))
2108 gcc_assert (DECL_LANG_SPECIFIC (olddecl)
2109 != DECL_LANG_SPECIFIC (newdecl));
2110 ggc_free (DECL_LANG_SPECIFIC (olddecl));
2113 /* Merge the USED information. */
2114 if (TREE_USED (olddecl))
2115 TREE_USED (newdecl) = 1;
2116 else if (TREE_USED (newdecl))
2117 TREE_USED (olddecl) = 1;
2118 if (TREE_CODE (newdecl) == VAR_DECL)
2120 if (DECL_READ_P (olddecl))
2121 DECL_READ_P (newdecl) = 1;
2122 else if (DECL_READ_P (newdecl))
2123 DECL_READ_P (olddecl) = 1;
2125 if (DECL_PRESERVE_P (olddecl))
2126 DECL_PRESERVE_P (newdecl) = 1;
2127 else if (DECL_PRESERVE_P (newdecl))
2128 DECL_PRESERVE_P (olddecl) = 1;
2130 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2134 function_size = sizeof (struct tree_decl_common);
2136 memcpy ((char *) olddecl + sizeof (struct tree_common),
2137 (char *) newdecl + sizeof (struct tree_common),
2138 function_size - sizeof (struct tree_common));
2140 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2141 (char *) newdecl + sizeof (struct tree_decl_common),
2142 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
2143 if (new_template_info)
2144 /* If newdecl is a template instantiation, it is possible that
2145 the following sequence of events has occurred:
2147 o A friend function was declared in a class template. The
2148 class template was instantiated.
2150 o The instantiation of the friend declaration was
2151 recorded on the instantiation list, and is newdecl.
2153 o Later, however, instantiate_class_template called pushdecl
2154 on the newdecl to perform name injection. But, pushdecl in
2155 turn called duplicate_decls when it discovered that another
2156 declaration of a global function with the same name already
2159 o Here, in duplicate_decls, we decided to clobber newdecl.
2161 If we're going to do that, we'd better make sure that
2162 olddecl, and not newdecl, is on the list of
2163 instantiations so that if we try to do the instantiation
2164 again we won't get the clobbered declaration. */
2165 reregister_specialization (newdecl,
2171 size_t size = tree_code_size (TREE_CODE (olddecl));
2172 memcpy ((char *) olddecl + sizeof (struct tree_common),
2173 (char *) newdecl + sizeof (struct tree_common),
2174 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2175 switch (TREE_CODE (olddecl))
2185 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2186 (char *) newdecl + sizeof (struct tree_decl_common),
2187 size - sizeof (struct tree_decl_common)
2188 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2192 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2193 (char *) newdecl + sizeof (struct tree_decl_common),
2194 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
2195 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
2199 DECL_UID (olddecl) = olddecl_uid;
2201 DECL_FRIEND_P (olddecl) = 1;
2204 DECL_ANTICIPATED (olddecl) = 1;
2205 DECL_HIDDEN_FRIEND_P (olddecl) = 1;
2208 /* NEWDECL contains the merged attribute lists.
2209 Update OLDDECL to be the same. */
2210 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2212 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2213 so that encode_section_info has a chance to look at the new decl
2214 flags and attributes. */
2215 if (DECL_RTL_SET_P (olddecl)
2216 && (TREE_CODE (olddecl) == FUNCTION_DECL
2217 || (TREE_CODE (olddecl) == VAR_DECL
2218 && TREE_STATIC (olddecl))))
2219 make_decl_rtl (olddecl);
2221 /* The NEWDECL will no longer be needed. Because every out-of-class
2222 declaration of a member results in a call to duplicate_decls,
2223 freeing these nodes represents in a significant savings. */
2229 /* Return zero if the declaration NEWDECL is valid
2230 when the declaration OLDDECL (assumed to be for the same name)
2231 has already been seen.
2232 Otherwise return an error message format string with a %s
2233 where the identifier should go. */
2236 redeclaration_error_message (tree newdecl, tree olddecl)
2238 if (TREE_CODE (newdecl) == TYPE_DECL)
2240 /* Because C++ can put things into name space for free,
2241 constructs like "typedef struct foo { ... } foo"
2242 would look like an erroneous redeclaration. */
2243 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
2246 return G_("redefinition of %q#D");
2248 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2250 /* If this is a pure function, its olddecl will actually be
2251 the original initialization to `0' (which we force to call
2252 abort()). Don't complain about redefinition in this case. */
2253 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
2254 && DECL_INITIAL (olddecl) == NULL_TREE)
2257 /* If both functions come from different namespaces, this is not
2258 a redeclaration - this is a conflict with a used function. */
2259 if (DECL_NAMESPACE_SCOPE_P (olddecl)
2260 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
2261 && ! decls_match (olddecl, newdecl))
2262 return G_("%qD conflicts with used function");
2264 /* We'll complain about linkage mismatches in
2265 warn_extern_redeclared_static. */
2267 /* Defining the same name twice is no good. */
2268 if (DECL_INITIAL (olddecl) != NULL_TREE
2269 && DECL_INITIAL (newdecl) != NULL_TREE)
2271 if (DECL_NAME (olddecl) == NULL_TREE)
2272 return G_("%q#D not declared in class");
2273 else if (!GNU_INLINE_P (olddecl)
2274 || GNU_INLINE_P (newdecl))
2275 return G_("redefinition of %q#D");
2278 if (DECL_DECLARED_INLINE_P (olddecl) && DECL_DECLARED_INLINE_P (newdecl))
2280 bool olda = GNU_INLINE_P (olddecl);
2281 bool newa = GNU_INLINE_P (newdecl);
2286 return G_("%q+D redeclared inline with "
2287 "%<gnu_inline%> attribute");
2289 return G_("%q+D redeclared inline without "
2290 "%<gnu_inline%> attribute");
2296 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2300 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2302 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2303 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2304 return G_("redefinition of %q#D");
2308 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2309 || (DECL_TEMPLATE_RESULT (newdecl)
2310 == DECL_TEMPLATE_RESULT (olddecl)))
2313 nt = DECL_TEMPLATE_RESULT (newdecl);
2314 if (DECL_TEMPLATE_INFO (nt))
2315 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2316 ot = DECL_TEMPLATE_RESULT (olddecl);
2317 if (DECL_TEMPLATE_INFO (ot))
2318 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2319 if (DECL_INITIAL (nt) && DECL_INITIAL (ot)
2320 && (!GNU_INLINE_P (ot) || GNU_INLINE_P (nt)))
2321 return G_("redefinition of %q#D");
2323 if (DECL_DECLARED_INLINE_P (ot) && DECL_DECLARED_INLINE_P (nt))
2325 bool olda = GNU_INLINE_P (ot);
2326 bool newa = GNU_INLINE_P (nt);
2331 return G_("%q+D redeclared inline with "
2332 "%<gnu_inline%> attribute");
2334 return G_("%q+D redeclared inline without "
2335 "%<gnu_inline%> attribute");
2339 /* Core issue #226 (C++0x):
2341 If a friend function template declaration specifies a
2342 default template-argument, that declaration shall be a
2343 definition and shall be the only declaration of the
2344 function template in the translation unit. */
2345 if ((cxx_dialect != cxx98)
2346 && TREE_CODE (ot) == FUNCTION_DECL && DECL_FRIEND_P (ot)
2347 && !check_default_tmpl_args (nt, DECL_TEMPLATE_PARMS (newdecl),
2348 /*is_primary=*/1, /*is_partial=*/0,
2349 /*is_friend_decl=*/2))
2350 return G_("redeclaration of friend %q#D "
2351 "may not have default template arguments");
2355 else if (TREE_CODE (newdecl) == VAR_DECL
2356 && DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl)
2357 && (! DECL_LANG_SPECIFIC (olddecl)
2358 || ! CP_DECL_THREADPRIVATE_P (olddecl)
2359 || DECL_THREAD_LOCAL_P (newdecl)))
2361 /* Only variables can be thread-local, and all declarations must
2362 agree on this property. */
2363 if (DECL_THREAD_LOCAL_P (newdecl))
2364 return G_("thread-local declaration of %q#D follows "
2365 "non-thread-local declaration");
2367 return G_("non-thread-local declaration of %q#D follows "
2368 "thread-local declaration");
2370 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2372 /* The objects have been declared at namespace scope. If either
2373 is a member of an anonymous union, then this is an invalid
2374 redeclaration. For example:
2380 if ((TREE_CODE (newdecl) == VAR_DECL && DECL_ANON_UNION_VAR_P (newdecl))
2381 || (TREE_CODE (olddecl) == VAR_DECL && DECL_ANON_UNION_VAR_P (olddecl)))
2382 return G_("redeclaration of %q#D");
2383 /* If at least one declaration is a reference, there is no
2384 conflict. For example:
2390 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2392 /* Reject two definitions. */
2393 return G_("redefinition of %q#D");
2397 /* Objects declared with block scope: */
2398 /* Reject two definitions, and reject a definition
2399 together with an external reference. */
2400 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
2401 return G_("redeclaration of %q#D");
2406 /* Hash and equality functions for the named_label table. */
2409 named_label_entry_hash (const void *data)
2411 const struct named_label_entry *ent = (const struct named_label_entry *) data;
2412 return DECL_UID (ent->label_decl);
2416 named_label_entry_eq (const void *a, const void *b)
2418 const struct named_label_entry *ent_a = (const struct named_label_entry *) a;
2419 const struct named_label_entry *ent_b = (const struct named_label_entry *) b;
2420 return ent_a->label_decl == ent_b->label_decl;
2423 /* Create a new label, named ID. */
2426 make_label_decl (tree id, int local_p)
2428 struct named_label_entry *ent;
2432 decl = build_decl (input_location, LABEL_DECL, id, void_type_node);
2434 DECL_CONTEXT (decl) = current_function_decl;
2435 DECL_MODE (decl) = VOIDmode;
2436 C_DECLARED_LABEL_FLAG (decl) = local_p;
2438 /* Say where one reference is to the label, for the sake of the
2439 error if it is not defined. */
2440 DECL_SOURCE_LOCATION (decl) = input_location;
2442 /* Record the fact that this identifier is bound to this label. */
2443 SET_IDENTIFIER_LABEL_VALUE (id, decl);
2445 /* Create the label htab for the function on demand. */
2447 named_labels = htab_create_ggc (13, named_label_entry_hash,
2448 named_label_entry_eq, NULL);
2450 /* Record this label on the list of labels used in this function.
2451 We do this before calling make_label_decl so that we get the
2452 IDENTIFIER_LABEL_VALUE before the new label is declared. */
2453 ent = GGC_CNEW (struct named_label_entry);
2454 ent->label_decl = decl;
2456 slot = htab_find_slot (named_labels, ent, INSERT);
2457 gcc_assert (*slot == NULL);
2463 /* Look for a label named ID in the current function. If one cannot
2464 be found, create one. (We keep track of used, but undefined,
2465 labels, and complain about them at the end of a function.) */
2468 lookup_label (tree id)
2472 timevar_push (TV_NAME_LOOKUP);
2473 /* You can't use labels at global scope. */
2474 if (current_function_decl == NULL_TREE)
2476 error ("label %qE referenced outside of any function", id);
2477 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2480 /* See if we've already got this label. */
2481 decl = IDENTIFIER_LABEL_VALUE (id);
2482 if (decl != NULL_TREE && DECL_CONTEXT (decl) == current_function_decl)
2483 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2485 decl = make_label_decl (id, /*local_p=*/0);
2486 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2489 /* Declare a local label named ID. */
2492 declare_local_label (tree id)
2496 /* Add a new entry to the SHADOWED_LABELS list so that when we leave
2497 this scope we can restore the old value of IDENTIFIER_TYPE_VALUE. */
2498 shadow = tree_cons (IDENTIFIER_LABEL_VALUE (id), NULL_TREE,
2499 current_binding_level->shadowed_labels);
2500 current_binding_level->shadowed_labels = shadow;
2502 decl = make_label_decl (id, /*local_p=*/1);
2503 TREE_VALUE (shadow) = decl;
2508 /* Returns nonzero if it is ill-formed to jump past the declaration of
2509 DECL. Returns 2 if it's also a real problem. */
2512 decl_jump_unsafe (tree decl)
2514 /* [stmt.dcl]/3: A program that jumps from a point where a local variable
2515 with automatic storage duration is not in scope to a point where it is
2516 in scope is ill-formed unless the variable has scalar type, class type
2517 with a trivial default constructor and a trivial destructor, a
2518 cv-qualified version of one of these types, or an array of one of the
2519 preceding types and is declared without an initializer (8.5). */
2520 tree type = TREE_TYPE (decl);
2522 if (TREE_CODE (decl) != VAR_DECL || TREE_STATIC (decl)
2523 || type == error_mark_node)
2526 type = strip_array_types (type);
2528 if (type_has_nontrivial_default_init (TREE_TYPE (decl))
2529 || DECL_NONTRIVIALLY_INITIALIZED_P (decl))
2532 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
2538 /* A subroutine of check_previous_goto_1 to identify a branch to the user. */
2541 identify_goto (tree decl, const location_t *locus)
2544 permerror (input_location, "jump to label %qD", decl);
2546 permerror (input_location, "jump to case label");
2548 permerror (*locus, " from here");
2551 /* Check that a single previously seen jump to a newly defined label
2552 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
2553 the jump context; NAMES are the names in scope in LEVEL at the jump
2554 context; LOCUS is the source position of the jump or 0. Returns
2555 true if all is well. */
2558 check_previous_goto_1 (tree decl, struct cp_binding_level* level, tree names,
2559 bool exited_omp, const location_t *locus)
2561 struct cp_binding_level *b;
2562 bool identified = false, saw_eh = false, saw_omp = false;
2566 identify_goto (decl, locus);
2567 error (" exits OpenMP structured block");
2568 identified = saw_omp = true;
2571 for (b = current_binding_level; b ; b = b->level_chain)
2573 tree new_decls, old_decls = (b == level ? names : NULL_TREE);
2575 for (new_decls = b->names; new_decls != old_decls;
2576 new_decls = TREE_CHAIN (new_decls))
2578 int problem = decl_jump_unsafe (new_decls);
2584 identify_goto (decl, locus);
2588 error (" crosses initialization of %q+#D", new_decls);
2590 permerror (input_location, " enters scope of %q+#D which has "
2591 "non-trivial destructor", new_decls);
2596 if ((b->kind == sk_try || b->kind == sk_catch) && !saw_eh)
2600 identify_goto (decl, locus);
2603 if (b->kind == sk_try)
2604 error (" enters try block");
2606 error (" enters catch block");
2609 if (b->kind == sk_omp && !saw_omp)
2613 identify_goto (decl, locus);
2616 error (" enters OpenMP structured block");
2625 check_previous_goto (tree decl, struct named_label_use_entry *use)
2627 check_previous_goto_1 (decl, use->binding_level,
2628 use->names_in_scope, use->in_omp_scope,
2629 &use->o_goto_locus);
2633 check_switch_goto (struct cp_binding_level* level)
2635 return check_previous_goto_1 (NULL_TREE, level, level->names, false, NULL);
2638 /* Check that a new jump to a label DECL is OK. Called by
2639 finish_goto_stmt. */
2642 check_goto (tree decl)
2644 struct named_label_entry *ent, dummy;
2645 bool saw_catch = false, identified = false;
2648 /* We can't know where a computed goto is jumping.
2649 So we assume that it's OK. */
2650 if (TREE_CODE (decl) != LABEL_DECL)
2653 /* We didn't record any information about this label when we created it,
2654 and there's not much point since it's trivial to analyze as a return. */
2655 if (decl == cdtor_label)
2658 dummy.label_decl = decl;
2659 ent = (struct named_label_entry *) htab_find (named_labels, &dummy);
2660 gcc_assert (ent != NULL);
2662 /* If the label hasn't been defined yet, defer checking. */
2663 if (! DECL_INITIAL (decl))
2665 struct named_label_use_entry *new_use;
2667 /* Don't bother creating another use if the last goto had the
2668 same data, and will therefore create the same set of errors. */
2670 && ent->uses->names_in_scope == current_binding_level->names)
2673 new_use = GGC_NEW (struct named_label_use_entry);
2674 new_use->binding_level = current_binding_level;
2675 new_use->names_in_scope = current_binding_level->names;
2676 new_use->o_goto_locus = input_location;
2677 new_use->in_omp_scope = false;
2679 new_use->next = ent->uses;
2680 ent->uses = new_use;
2684 if (ent->in_try_scope || ent->in_catch_scope
2685 || ent->in_omp_scope || ent->bad_decls)
2687 permerror (input_location, "jump to label %q+D", decl);
2688 permerror (input_location, " from here");
2692 for (bad = ent->bad_decls; bad; bad = TREE_CHAIN (bad))
2694 tree b = TREE_VALUE (bad);
2695 int u = decl_jump_unsafe (b);
2697 if (u > 1 && DECL_ARTIFICIAL (b))
2699 /* Can't skip init of __exception_info. */
2700 error_at (DECL_SOURCE_LOCATION (b), " enters catch block");
2704 error (" skips initialization of %q+#D", b);
2706 permerror (input_location, " enters scope of %q+#D which has "
2707 "non-trivial destructor", b);
2710 if (ent->in_try_scope)
2711 error (" enters try block");
2712 else if (ent->in_catch_scope && !saw_catch)
2713 error (" enters catch block");
2715 if (ent->in_omp_scope)
2716 error (" enters OpenMP structured block");
2717 else if (flag_openmp)
2719 struct cp_binding_level *b;
2720 for (b = current_binding_level; b ; b = b->level_chain)
2722 if (b == ent->binding_level)
2724 if (b->kind == sk_omp)
2728 permerror (input_location, "jump to label %q+D", decl);
2729 permerror (input_location, " from here");
2732 error (" exits OpenMP structured block");
2739 /* Check that a return is ok wrt OpenMP structured blocks.
2740 Called by finish_return_stmt. Returns true if all is well. */
2743 check_omp_return (void)
2745 struct cp_binding_level *b;
2746 for (b = current_binding_level; b ; b = b->level_chain)
2747 if (b->kind == sk_omp)
2749 error ("invalid exit from OpenMP structured block");
2755 /* Define a label, specifying the location in the source file.
2756 Return the LABEL_DECL node for the label. */
2759 define_label (location_t location, tree name)
2761 struct named_label_entry *ent, dummy;
2762 struct cp_binding_level *p;
2765 timevar_push (TV_NAME_LOOKUP);
2767 decl = lookup_label (name);
2769 dummy.label_decl = decl;
2770 ent = (struct named_label_entry *) htab_find (named_labels, &dummy);
2771 gcc_assert (ent != NULL);
2773 /* After labels, make any new cleanups in the function go into their
2774 own new (temporary) binding contour. */
2775 for (p = current_binding_level;
2776 p->kind != sk_function_parms;
2778 p->more_cleanups_ok = 0;
2780 if (name == get_identifier ("wchar_t"))
2781 permerror (input_location, "label named wchar_t");
2783 if (DECL_INITIAL (decl) != NULL_TREE)
2785 error ("duplicate label %qD", decl);
2786 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
2790 struct named_label_use_entry *use;
2792 /* Mark label as having been defined. */
2793 DECL_INITIAL (decl) = error_mark_node;
2794 /* Say where in the source. */
2795 DECL_SOURCE_LOCATION (decl) = location;
2797 ent->binding_level = current_binding_level;
2798 ent->names_in_scope = current_binding_level->names;
2800 for (use = ent->uses; use ; use = use->next)
2801 check_previous_goto (decl, use);
2805 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2810 struct cp_binding_level *level;
2811 struct cp_switch *next;
2812 /* The SWITCH_STMT being built. */
2814 /* A splay-tree mapping the low element of a case range to the high
2815 element, or NULL_TREE if there is no high element. Used to
2816 determine whether or not a new case label duplicates an old case
2817 label. We need a tree, rather than simply a hash table, because
2818 of the GNU case range extension. */
2822 /* A stack of the currently active switch statements. The innermost
2823 switch statement is on the top of the stack. There is no need to
2824 mark the stack for garbage collection because it is only active
2825 during the processing of the body of a function, and we never
2826 collect at that point. */
2828 static struct cp_switch *switch_stack;
2830 /* Called right after a switch-statement condition is parsed.
2831 SWITCH_STMT is the switch statement being parsed. */
2834 push_switch (tree switch_stmt)
2836 struct cp_switch *p = XNEW (struct cp_switch);
2837 p->level = current_binding_level;
2838 p->next = switch_stack;
2839 p->switch_stmt = switch_stmt;
2840 p->cases = splay_tree_new (case_compare, NULL, NULL);
2847 struct cp_switch *cs = switch_stack;
2848 location_t switch_location;
2850 /* Emit warnings as needed. */
2851 if (EXPR_HAS_LOCATION (cs->switch_stmt))
2852 switch_location = EXPR_LOCATION (cs->switch_stmt);
2854 switch_location = input_location;
2855 if (!processing_template_decl)
2856 c_do_switch_warnings (cs->cases, switch_location,
2857 SWITCH_STMT_TYPE (cs->switch_stmt),
2858 SWITCH_STMT_COND (cs->switch_stmt));
2860 splay_tree_delete (cs->cases);
2861 switch_stack = switch_stack->next;
2865 /* Note that we've seen a definition of a case label, and complain if this
2866 is a bad place for one. */
2869 finish_case_label (location_t loc, tree low_value, tree high_value)
2872 struct cp_binding_level *p;
2874 if (processing_template_decl)
2878 /* For templates, just add the case label; we'll do semantic
2879 analysis at instantiation-time. */
2880 label = build_decl (loc, LABEL_DECL, NULL_TREE, NULL_TREE);
2881 return add_stmt (build_case_label (loc, low_value, high_value, label));
2884 /* Find the condition on which this switch statement depends. */
2885 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
2886 if (cond && TREE_CODE (cond) == TREE_LIST)
2887 cond = TREE_VALUE (cond);
2889 if (!check_switch_goto (switch_stack->level))
2890 return error_mark_node;
2892 r = c_add_case_label (loc, switch_stack->cases, cond,
2893 SWITCH_STMT_TYPE (switch_stack->switch_stmt),
2894 low_value, high_value);
2896 /* After labels, make any new cleanups in the function go into their
2897 own new (temporary) binding contour. */
2898 for (p = current_binding_level;
2899 p->kind != sk_function_parms;
2901 p->more_cleanups_ok = 0;
2906 /* Hash a TYPENAME_TYPE. K is really of type `tree'. */
2909 typename_hash (const void* k)
2912 const_tree const t = (const_tree) k;
2914 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
2915 ^ htab_hash_pointer (DECL_NAME (TYPE_NAME (t))));
2920 typedef struct typename_info {
2928 /* Compare two TYPENAME_TYPEs. K1 is really of type `tree', K2 is
2929 really of type `typename_info*' */
2932 typename_compare (const void * k1, const void * k2)
2934 const_tree const t1 = (const_tree) k1;
2935 const typename_info *const t2 = (const typename_info *) k2;
2937 return (DECL_NAME (TYPE_NAME (t1)) == t2->name
2938 && TYPE_CONTEXT (t1) == t2->scope
2939 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
2940 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
2941 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
2944 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
2945 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
2947 Returns the new TYPENAME_TYPE. */
2949 static GTY ((param_is (union tree_node))) htab_t typename_htab;
2952 build_typename_type (tree context, tree name, tree fullname,
2953 enum tag_types tag_type)
2961 if (typename_htab == NULL)
2962 typename_htab = htab_create_ggc (61, &typename_hash,
2963 &typename_compare, NULL);
2965 ti.scope = FROB_CONTEXT (context);
2967 ti.template_id = fullname;
2968 ti.enum_p = tag_type == enum_type;
2969 ti.class_p = (tag_type == class_type
2970 || tag_type == record_type
2971 || tag_type == union_type);
2972 hash = (htab_hash_pointer (ti.scope)
2973 ^ htab_hash_pointer (ti.name));
2975 /* See if we already have this type. */
2976 e = htab_find_slot_with_hash (typename_htab, &ti, hash, INSERT);
2981 /* Build the TYPENAME_TYPE. */
2982 t = cxx_make_type (TYPENAME_TYPE);
2983 TYPE_CONTEXT (t) = ti.scope;
2984 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
2985 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
2986 TYPENAME_IS_CLASS_P (t) = ti.class_p;
2988 /* Build the corresponding TYPE_DECL. */
2989 d = build_decl (input_location, TYPE_DECL, name, t);
2990 TYPE_NAME (TREE_TYPE (d)) = d;
2991 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
2992 DECL_CONTEXT (d) = FROB_CONTEXT (context);
2993 DECL_ARTIFICIAL (d) = 1;
2995 /* Store it in the hash table. */
2998 /* TYPENAME_TYPEs must always be compared structurally, because
2999 they may or may not resolve down to another type depending on
3000 the currently open classes. */
3001 SET_TYPE_STRUCTURAL_EQUALITY (t);
3007 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
3008 provided to name the type. Returns an appropriate type, unless an
3009 error occurs, in which case error_mark_node is returned. If we
3010 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
3011 return that, rather than the _TYPE it corresponds to, in other
3012 cases we look through the type decl. If TF_ERROR is set, complain
3013 about errors, otherwise be quiet. */
3016 make_typename_type (tree context, tree name, enum tag_types tag_type,
3017 tsubst_flags_t complain)
3023 if (name == error_mark_node
3024 || context == NULL_TREE
3025 || context == error_mark_node)
3026 return error_mark_node;
3030 if (!(TYPE_LANG_SPECIFIC (name)
3031 && (CLASSTYPE_IS_TEMPLATE (name)
3032 || CLASSTYPE_USE_TEMPLATE (name))))
3033 name = TYPE_IDENTIFIER (name);
3035 /* Create a TEMPLATE_ID_EXPR for the type. */
3036 name = build_nt (TEMPLATE_ID_EXPR,
3037 CLASSTYPE_TI_TEMPLATE (name),
3038 CLASSTYPE_TI_ARGS (name));
3040 else if (TREE_CODE (name) == TYPE_DECL)
3041 name = DECL_NAME (name);
3045 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3047 name = TREE_OPERAND (name, 0);
3048 if (TREE_CODE (name) == TEMPLATE_DECL)
3049 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
3050 else if (TREE_CODE (name) == OVERLOAD)
3052 error ("%qD is not a type", name);
3053 return error_mark_node;
3056 if (TREE_CODE (name) == TEMPLATE_DECL)
3058 error ("%qD used without template parameters", name);
3059 return error_mark_node;
3061 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
3062 gcc_assert (TYPE_P (context));
3064 if (!MAYBE_CLASS_TYPE_P (context))
3066 if (complain & tf_error)
3067 error ("%q#T is not a class", context);
3068 return error_mark_node;
3071 /* When the CONTEXT is a dependent type, NAME could refer to a
3072 dependent base class of CONTEXT. But look inside it anyway
3073 if CONTEXT is a currently open scope, in case it refers to a
3074 member of the current instantiation or a non-dependent base;
3075 lookup will stop when we hit a dependent base. */
3076 if (!dependent_scope_p (context))
3077 /* We should only set WANT_TYPE when we're a nested typename type.
3078 Then we can give better diagnostics if we find a non-type. */
3079 t = lookup_field (context, name, 2, /*want_type=*/true);
3083 if ((!t || TREE_CODE (t) == TREE_LIST) && dependent_type_p (context))
3084 return build_typename_type (context, name, fullname, tag_type);
3086 want_template = TREE_CODE (fullname) == TEMPLATE_ID_EXPR;
3090 if (complain & tf_error)
3091 error (want_template ? "no class template named %q#T in %q#T"
3092 : "no type named %q#T in %q#T", name, context);
3093 return error_mark_node;
3096 /* Pull out the template from an injected-class-name (or multiple). */
3098 t = maybe_get_template_decl_from_type_decl (t);
3100 if (TREE_CODE (t) == TREE_LIST)
3102 if (complain & tf_error)
3104 error ("lookup of %qT in %qT is ambiguous", name, context);
3105 print_candidates (t);
3107 return error_mark_node;
3110 if (want_template && !DECL_CLASS_TEMPLATE_P (t))
3112 if (complain & tf_error)
3113 error ("%<typename %T::%D%> names %q#T, which is not a class template",
3115 return error_mark_node;
3117 if (!want_template && TREE_CODE (t) != TYPE_DECL)
3119 if (complain & tf_error)
3120 error ("%<typename %T::%D%> names %q#T, which is not a type",
3122 return error_mark_node;
3125 if (complain & tf_error)
3126 perform_or_defer_access_check (TYPE_BINFO (context), t, t);
3128 /* If we are currently parsing a template and if T is a typedef accessed
3129 through CONTEXT then we need to remember and check access of T at
3130 template instantiation time. */
3131 add_typedef_to_current_template_for_access_check (t, context, input_location);
3134 return lookup_template_class (t, TREE_OPERAND (fullname, 1),
3136 /*entering_scope=*/0,
3137 tf_warning_or_error | tf_user);
3139 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
3145 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
3146 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
3147 in which case error_mark_node is returned.
3149 If PARM_LIST is non-NULL, also make sure that the template parameter
3150 list of TEMPLATE_DECL matches.
3152 If COMPLAIN zero, don't complain about any errors that occur. */
3155 make_unbound_class_template (tree context, tree name, tree parm_list,
3156 tsubst_flags_t complain)
3162 name = TYPE_IDENTIFIER (name);
3163 else if (DECL_P (name))
3164 name = DECL_NAME (name);
3165 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
3167 if (!dependent_type_p (context)
3168 || currently_open_class (context))
3170 tree tmpl = NULL_TREE;
3172 if (MAYBE_CLASS_TYPE_P (context))
3173 tmpl = lookup_field (context, name, 0, false);
3175 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
3177 if (complain & tf_error)
3178 error ("no class template named %q#T in %q#T", name, context);
3179 return error_mark_node;
3183 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
3185 if (complain & tf_error)
3187 error ("template parameters do not match template");
3188 error ("%q+D declared here", tmpl);
3190 return error_mark_node;
3193 if (complain & tf_error)
3194 perform_or_defer_access_check (TYPE_BINFO (context), tmpl, tmpl);
3199 /* Build the UNBOUND_CLASS_TEMPLATE. */
3200 t = cxx_make_type (UNBOUND_CLASS_TEMPLATE);
3201 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
3202 TREE_TYPE (t) = NULL_TREE;
3203 SET_TYPE_STRUCTURAL_EQUALITY (t);
3205 /* Build the corresponding TEMPLATE_DECL. */
3206 d = build_decl (input_location, TEMPLATE_DECL, name, t);
3207 TYPE_NAME (TREE_TYPE (d)) = d;
3208 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
3209 DECL_CONTEXT (d) = FROB_CONTEXT (context);
3210 DECL_ARTIFICIAL (d) = 1;
3211 DECL_TEMPLATE_PARMS (d) = parm_list;
3218 /* Push the declarations of builtin types into the namespace.
3219 RID_INDEX is the index of the builtin type in the array
3220 RID_POINTERS. NAME is the name used when looking up the builtin
3221 type. TYPE is the _TYPE node for the builtin type. */
3224 record_builtin_type (enum rid rid_index,
3228 tree rname = NULL_TREE, tname = NULL_TREE;
3229 tree tdecl = NULL_TREE;
3231 if ((int) rid_index < (int) RID_MAX)
3232 rname = ridpointers[(int) rid_index];
3234 tname = get_identifier (name);
3236 /* The calls to SET_IDENTIFIER_GLOBAL_VALUE below should be
3237 eliminated. Built-in types should not be looked up name; their
3238 names are keywords that the parser can recognize. However, there
3239 is code in c-common.c that uses identifier_global_value to look
3240 up built-in types by name. */
3243 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, tname, type);
3244 DECL_ARTIFICIAL (tdecl) = 1;
3245 SET_IDENTIFIER_GLOBAL_VALUE (tname, tdecl);
3251 tdecl = build_decl (BUILTINS_LOCATION, TYPE_DECL, rname, type);
3252 DECL_ARTIFICIAL (tdecl) = 1;
3254 SET_IDENTIFIER_GLOBAL_VALUE (rname, tdecl);
3257 if (!TYPE_NAME (type))
3258 TYPE_NAME (type) = tdecl;
3261 debug_hooks->type_decl (tdecl, 0);
3264 /* Record one of the standard Java types.
3265 * Declare it as having the given NAME.
3266 * If SIZE > 0, it is the size of one of the integral types;
3267 * otherwise it is the negative of the size of one of the other types. */
3270 record_builtin_java_type (const char* name, int size)
3274 type = build_nonstandard_integer_type (size, 0);
3275 else if (size > -32)
3278 /* "__java_char" or ""__java_boolean". */
3279 type = build_nonstandard_integer_type (-size, 1);
3280 /* Get the signed type cached and attached to the unsigned type,
3281 so it doesn't get garbage-collected at "random" times,
3282 causing potential codegen differences out of different UIDs
3283 and different alias set numbers. */
3284 stype = build_nonstandard_integer_type (-size, 0);
3285 TREE_CHAIN (type) = stype;
3286 /*if (size == -1) TREE_SET_CODE (type, BOOLEAN_TYPE);*/
3289 { /* "__java_float" or ""__java_double". */
3290 type = make_node (REAL_TYPE);
3291 TYPE_PRECISION (type) = - size;
3294 record_builtin_type (RID_MAX, name, type);
3295 decl = TYPE_NAME (type);
3297 /* Suppress generate debug symbol entries for these types,
3298 since for normal C++ they are just clutter.
3299 However, push_lang_context undoes this if extern "Java" is seen. */
3300 DECL_IGNORED_P (decl) = 1;
3302 TYPE_FOR_JAVA (type) = 1;
3306 /* Push a type into the namespace so that the back ends ignore it. */
3309 record_unknown_type (tree type, const char* name)
3311 tree decl = pushdecl (build_decl (UNKNOWN_LOCATION,
3312 TYPE_DECL, get_identifier (name), type));
3313 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
3314 DECL_IGNORED_P (decl) = 1;
3315 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
3316 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
3317 TYPE_ALIGN (type) = 1;
3318 TYPE_USER_ALIGN (type) = 0;
3319 SET_TYPE_MODE (type, TYPE_MODE (void_type_node));
3322 /* A string for which we should create an IDENTIFIER_NODE at
3325 typedef struct predefined_identifier
3327 /* The name of the identifier. */
3328 const char *const name;
3329 /* The place where the IDENTIFIER_NODE should be stored. */
3331 /* Nonzero if this is the name of a constructor or destructor. */
3332 const int ctor_or_dtor_p;
3333 } predefined_identifier;
3335 /* Create all the predefined identifiers. */
3338 initialize_predefined_identifiers (void)
3340 const predefined_identifier *pid;
3342 /* A table of identifiers to create at startup. */
3343 static const predefined_identifier predefined_identifiers[] = {
3344 { "C++", &lang_name_cplusplus, 0 },
3345 { "C", &lang_name_c, 0 },
3346 { "Java", &lang_name_java, 0 },
3347 /* Some of these names have a trailing space so that it is
3348 impossible for them to conflict with names written by users. */
3349 { "__ct ", &ctor_identifier, 1 },
3350 { "__base_ctor ", &base_ctor_identifier, 1 },
3351 { "__comp_ctor ", &complete_ctor_identifier, 1 },
3352 { "__dt ", &dtor_identifier, 1 },
3353 { "__comp_dtor ", &complete_dtor_identifier, 1 },
3354 { "__base_dtor ", &base_dtor_identifier, 1 },
3355 { "__deleting_dtor ", &deleting_dtor_identifier, 1 },
3356 { IN_CHARGE_NAME, &in_charge_identifier, 0 },
3357 { "nelts", &nelts_identifier, 0 },
3358 { THIS_NAME, &this_identifier, 0 },
3359 { VTABLE_DELTA_NAME, &delta_identifier, 0 },
3360 { VTABLE_PFN_NAME, &pfn_identifier, 0 },
3361 { "_vptr", &vptr_identifier, 0 },
3362 { "__vtt_parm", &vtt_parm_identifier, 0 },
3363 { "::", &global_scope_name, 0 },
3364 { "std", &std_identifier, 0 },
3368 for (pid = predefined_identifiers; pid->name; ++pid)
3370 *pid->node = get_identifier (pid->name);
3371 if (pid->ctor_or_dtor_p)
3372 IDENTIFIER_CTOR_OR_DTOR_P (*pid->node) = 1;
3376 /* Create the predefined scalar types of C,
3377 and some nodes representing standard constants (0, 1, (void *)0).
3378 Initialize the global binding level.
3379 Make definitions for built-in primitive functions. */
3382 cxx_init_decl_processing (void)
3385 tree void_ftype_ptr;
3387 build_common_tree_nodes (flag_signed_char);
3389 /* Create all the identifiers we need. */
3390 initialize_predefined_identifiers ();
3392 /* Create the global variables. */
3393 push_to_top_level ();
3395 current_function_decl = NULL_TREE;
3396 current_binding_level = NULL;
3397 /* Enter the global namespace. */
3398 gcc_assert (global_namespace == NULL_TREE);
3399 global_namespace = build_lang_decl (NAMESPACE_DECL, global_scope_name,
3401 TREE_PUBLIC (global_namespace) = 1;
3402 begin_scope (sk_namespace, global_namespace);
3404 current_lang_name = NULL_TREE;
3406 if (flag_visibility_ms_compat)
3407 default_visibility = VISIBILITY_HIDDEN;
3410 current_lang_name = lang_name_c;
3412 /* Create the `std' namespace. */
3413 push_namespace (std_identifier);
3414 std_node = current_namespace;
3417 c_common_nodes_and_builtins ();
3419 java_byte_type_node = record_builtin_java_type ("__java_byte", 8);
3420 java_short_type_node = record_builtin_java_type ("__java_short", 16);
3421 java_int_type_node = record_builtin_java_type ("__java_int", 32);
3422 java_long_type_node = record_builtin_java_type ("__java_long", 64);
3423 java_float_type_node = record_builtin_java_type ("__java_float", -32);
3424 java_double_type_node = record_builtin_java_type ("__java_double", -64);
3425 java_char_type_node = record_builtin_java_type ("__java_char", -16);
3426 java_boolean_type_node = record_builtin_java_type ("__java_boolean", -1);
3428 integer_two_node = build_int_cst (NULL_TREE, 2);
3429 integer_three_node = build_int_cst (NULL_TREE, 3);
3431 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
3432 truthvalue_type_node = boolean_type_node;
3433 truthvalue_false_node = boolean_false_node;
3434 truthvalue_true_node = boolean_true_node;
3436 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
3439 record_builtin_type (RID_MAX, NULL, string_type_node);
3442 delta_type_node = ptrdiff_type_node;
3443 vtable_index_type = ptrdiff_type_node;
3445 vtt_parm_type = build_pointer_type (const_ptr_type_node);
3446 void_ftype = build_function_type (void_type_node, void_list_node);
3447 void_ftype_ptr = build_function_type (void_type_node,
3448 tree_cons (NULL_TREE,
3452 = build_exception_variant (void_ftype_ptr, empty_except_spec);
3454 /* C++ extensions */
3456 unknown_type_node = make_node (LANG_TYPE);
3457 record_unknown_type (unknown_type_node, "unknown type");
3459 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
3460 TREE_TYPE (unknown_type_node) = unknown_type_node;
3462 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
3464 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
3465 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
3467 init_list_type_node = make_node (LANG_TYPE);
3468 record_unknown_type (init_list_type_node, "init list");
3471 /* Make sure we get a unique function type, so we can give
3472 its pointer type a name. (This wins for gdb.) */
3473 tree vfunc_type = make_node (FUNCTION_TYPE);
3474 TREE_TYPE (vfunc_type) = integer_type_node;
3475 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
3476 layout_type (vfunc_type);
3478 vtable_entry_type = build_pointer_type (vfunc_type);
3480 record_builtin_type (RID_MAX, VTBL_PTR_TYPE, vtable_entry_type);
3483 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
3484 layout_type (vtbl_type_node);