* decl2.c, init.c, typeck.c: Fix comment typos.
[official-gcc.git] / gcc / cp / decl.c
blobc5fe658599606e07b15843189a8dada1a07dc099
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 Free Software Foundation, Inc.
4 Contributed by Michael Tiemann (tiemann@cygnus.com)
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to
20 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
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. */
31 #include "config.h"
32 #include "system.h"
33 #include "coretypes.h"
34 #include "tm.h"
35 #include "tree.h"
36 #include "rtl.h"
37 #include "expr.h"
38 #include "flags.h"
39 #include "cp-tree.h"
40 #include "tree-inline.h"
41 #include "decl.h"
42 #include "output.h"
43 #include "except.h"
44 #include "toplev.h"
45 #include "hashtab.h"
46 #include "tm_p.h"
47 #include "target.h"
48 #include "c-common.h"
49 #include "c-pragma.h"
50 #include "diagnostic.h"
51 #include "debug.h"
52 #include "timevar.h"
53 #include "tree-flow.h"
55 static tree grokparms (cp_parameter_declarator *, tree *);
56 static const char *redeclaration_error_message (tree, tree);
58 static int decl_jump_unsafe (tree);
59 static void require_complete_types_for_parms (tree);
60 static int ambi_op_p (enum tree_code);
61 static int unary_op_p (enum tree_code);
62 static void push_local_name (tree);
63 static tree grok_reference_init (tree, tree, tree, tree *);
64 static tree grokvardecl (tree, tree, const cp_decl_specifier_seq *,
65 int, int, tree);
66 static void record_unknown_type (tree, const char *);
67 static tree builtin_function_1 (const char *, tree, tree,
68 enum built_in_function code,
69 enum built_in_class cl, const char *,
70 tree);
71 static tree build_library_fn_1 (tree, enum tree_code, tree);
72 static int member_function_or_else (tree, tree, enum overload_flags);
73 static void bad_specifiers (tree, const char *, int, int, int, int,
74 int);
75 static void check_for_uninitialized_const_var (tree);
76 static hashval_t typename_hash (const void *);
77 static int typename_compare (const void *, const void *);
78 static tree local_variable_p_walkfn (tree *, int *, void *);
79 static tree record_builtin_java_type (const char *, int);
80 static const char *tag_name (enum tag_types);
81 static tree lookup_and_check_tag (enum tag_types, tree, tag_scope, bool);
82 static int walk_namespaces_r (tree, walk_namespaces_fn, void *);
83 static tree make_label_decl (tree, int);
84 static void use_label (tree);
85 static void check_previous_goto_1 (tree, struct cp_binding_level *, tree,
86 const location_t *);
87 static void check_previous_goto (struct named_label_use_list *);
88 static void check_switch_goto (struct cp_binding_level *);
89 static void check_previous_gotos (tree);
90 static void pop_label (tree, tree);
91 static void pop_labels (tree);
92 static void maybe_deduce_size_from_array_init (tree, tree);
93 static void layout_var_decl (tree);
94 static void maybe_commonize_var (tree);
95 static tree check_initializer (tree, tree, int, tree *);
96 static void make_rtl_for_nonlocal_decl (tree, tree, const char *);
97 static void save_function_data (tree);
98 static void check_function_type (tree, tree);
99 static void finish_constructor_body (void);
100 static void begin_destructor_body (void);
101 static void finish_destructor_body (void);
102 static tree create_array_type_for_decl (tree, tree, tree);
103 static tree get_atexit_node (void);
104 static tree get_dso_handle_node (void);
105 static tree start_cleanup_fn (void);
106 static void end_cleanup_fn (void);
107 static tree cp_make_fname_decl (tree, int);
108 static void initialize_predefined_identifiers (void);
109 static tree check_special_function_return_type
110 (special_function_kind, tree, tree);
111 static tree push_cp_library_fn (enum tree_code, tree);
112 static tree build_cp_library_fn (tree, enum tree_code, tree);
113 static void store_parm_decls (tree);
114 static void initialize_local_var (tree, tree);
115 static void expand_static_init (tree, tree);
116 static tree next_initializable_field (tree);
117 static tree reshape_init (tree, tree);
119 /* Erroneous argument lists can use this *IFF* they do not modify it. */
120 tree error_mark_list;
122 /* The following symbols are subsumed in the cp_global_trees array, and
123 listed here individually for documentation purposes.
125 C++ extensions
126 tree wchar_decl_node;
128 tree vtable_entry_type;
129 tree delta_type_node;
130 tree __t_desc_type_node;
132 tree class_type_node;
133 tree unknown_type_node;
135 Array type `vtable_entry_type[]'
137 tree vtbl_type_node;
138 tree vtbl_ptr_type_node;
140 Namespaces,
142 tree std_node;
143 tree abi_node;
145 A FUNCTION_DECL which can call `abort'. Not necessarily the
146 one that the user will declare, but sufficient to be called
147 by routines that want to abort the program.
149 tree abort_fndecl;
151 The FUNCTION_DECL for the default `::operator delete'.
153 tree global_delete_fndecl;
155 Used by RTTI
156 tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
157 tree tinfo_var_id;
161 tree cp_global_trees[CPTI_MAX];
163 /* Indicates that there is a type value in some namespace, although
164 that is not necessarily in scope at the moment. */
166 tree global_type_node;
168 /* The node that holds the "name" of the global scope. */
169 tree global_scope_name;
171 /* Used only for jumps to as-yet undefined labels, since jumps to
172 defined labels can have their validity checked immediately. */
174 struct named_label_use_list GTY(())
176 struct cp_binding_level *binding_level;
177 tree names_in_scope;
178 tree label_decl;
179 location_t o_goto_locus;
180 struct named_label_use_list *next;
183 #define named_label_uses cp_function_chain->x_named_label_uses
185 #define local_names cp_function_chain->x_local_names
187 /* A list of objects which have constructors or destructors
188 which reside in the global scope. The decl is stored in
189 the TREE_VALUE slot and the initializer is stored
190 in the TREE_PURPOSE slot. */
191 tree static_aggregates;
193 /* -- end of C++ */
195 /* A node for the integer constants 2, and 3. */
197 tree integer_two_node, integer_three_node;
199 /* A list of all LABEL_DECLs in the function that have names. Here so
200 we can clear out their names' definitions at the end of the
201 function, and so we can check the validity of jumps to these labels. */
203 struct named_label_list GTY(())
205 struct cp_binding_level *binding_level;
206 tree names_in_scope;
207 tree old_value;
208 tree label_decl;
209 tree bad_decls;
210 struct named_label_list *next;
211 unsigned int in_try_scope : 1;
212 unsigned int in_catch_scope : 1;
215 #define named_labels cp_function_chain->x_named_labels
217 /* The number of function bodies which we are currently processing.
218 (Zero if we are at namespace scope, one inside the body of a
219 function, two inside the body of a function in a local class, etc.) */
220 int function_depth;
222 /* States indicating how grokdeclarator() should handle declspecs marked
223 with __attribute__((deprecated)). An object declared as
224 __attribute__((deprecated)) suppresses warnings of uses of other
225 deprecated items. */
227 enum deprecated_states {
228 DEPRECATED_NORMAL,
229 DEPRECATED_SUPPRESS
232 static enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
234 /* True if a declaration with an `extern' linkage specifier is being
235 processed. */
236 bool have_extern_spec;
239 /* A TREE_LIST of VAR_DECLs. The TREE_PURPOSE is a RECORD_TYPE or
240 UNION_TYPE; the TREE_VALUE is a VAR_DECL with that type. At the
241 time the VAR_DECL was declared, the type was incomplete. */
243 static GTY(()) tree incomplete_vars;
245 /* Returns the kind of template specialization we are currently
246 processing, given that it's declaration contained N_CLASS_SCOPES
247 explicit scope qualifications. */
249 tmpl_spec_kind
250 current_tmpl_spec_kind (int n_class_scopes)
252 int n_template_parm_scopes = 0;
253 int seen_specialization_p = 0;
254 int innermost_specialization_p = 0;
255 struct cp_binding_level *b;
257 /* Scan through the template parameter scopes. */
258 for (b = current_binding_level;
259 b->kind == sk_template_parms;
260 b = b->level_chain)
262 /* If we see a specialization scope inside a parameter scope,
263 then something is wrong. That corresponds to a declaration
264 like:
266 template <class T> template <> ...
268 which is always invalid since [temp.expl.spec] forbids the
269 specialization of a class member template if the enclosing
270 class templates are not explicitly specialized as well. */
271 if (b->explicit_spec_p)
273 if (n_template_parm_scopes == 0)
274 innermost_specialization_p = 1;
275 else
276 seen_specialization_p = 1;
278 else if (seen_specialization_p == 1)
279 return tsk_invalid_member_spec;
281 ++n_template_parm_scopes;
284 /* Handle explicit instantiations. */
285 if (processing_explicit_instantiation)
287 if (n_template_parm_scopes != 0)
288 /* We've seen a template parameter list during an explicit
289 instantiation. For example:
291 template <class T> template void f(int);
293 This is erroneous. */
294 return tsk_invalid_expl_inst;
295 else
296 return tsk_expl_inst;
299 if (n_template_parm_scopes < n_class_scopes)
300 /* We've not seen enough template headers to match all the
301 specialized classes present. For example:
303 template <class T> void R<T>::S<T>::f(int);
305 This is invalid; there needs to be one set of template
306 parameters for each class. */
307 return tsk_insufficient_parms;
308 else if (n_template_parm_scopes == n_class_scopes)
309 /* We're processing a non-template declaration (even though it may
310 be a member of a template class.) For example:
312 template <class T> void S<T>::f(int);
314 The `class T' maches the `S<T>', leaving no template headers
315 corresponding to the `f'. */
316 return tsk_none;
317 else if (n_template_parm_scopes > n_class_scopes + 1)
318 /* We've got too many template headers. For example:
320 template <> template <class T> void f (T);
322 There need to be more enclosing classes. */
323 return tsk_excessive_parms;
324 else
325 /* This must be a template. It's of the form:
327 template <class T> template <class U> void S<T>::f(U);
329 This is a specialization if the innermost level was a
330 specialization; otherwise it's just a definition of the
331 template. */
332 return innermost_specialization_p ? tsk_expl_spec : tsk_template;
335 /* Exit the current scope. */
337 void
338 finish_scope (void)
340 poplevel (0, 0, 0);
343 /* When a label goes out of scope, check to see if that label was used
344 in a valid manner, and issue any appropriate warnings or errors. */
346 static void
347 pop_label (tree label, tree old_value)
349 if (!processing_template_decl)
351 if (DECL_INITIAL (label) == NULL_TREE)
353 location_t location;
355 error ("label %q+D used but not defined", label);
356 #ifdef USE_MAPPED_LOCATION
357 location = input_location; /* FIXME want (input_filename, (line)0) */
358 #else
359 location.file = input_filename;
360 location.line = 0;
361 #endif
362 /* Avoid crashing later. */
363 define_label (location, DECL_NAME (label));
365 else if (warn_unused_label && !TREE_USED (label))
366 warning (0, "label %q+D defined but not used", label);
369 SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (label), old_value);
372 /* At the end of a function, all labels declared within the function
373 go out of scope. BLOCK is the top-level block for the
374 function. */
376 static void
377 pop_labels (tree block)
379 struct named_label_list *link;
381 /* Clear out the definitions of all label names, since their scopes
382 end here. */
383 for (link = named_labels; link; link = link->next)
385 pop_label (link->label_decl, link->old_value);
386 /* Put the labels into the "variables" of the top-level block,
387 so debugger can see them. */
388 TREE_CHAIN (link->label_decl) = BLOCK_VARS (block);
389 BLOCK_VARS (block) = link->label_decl;
392 named_labels = NULL;
395 /* The following two routines are used to interface to Objective-C++.
396 The binding level is purposely treated as an opaque type. */
398 void *
399 objc_get_current_scope (void)
401 return current_binding_level;
404 /* The following routine is used by the NeXT-style SJLJ exceptions;
405 variables get marked 'volatile' so as to not be clobbered by
406 _setjmp()/_longjmp() calls. All variables in the current scope,
407 as well as parent scopes up to (but not including) ENCLOSING_BLK
408 shall be thusly marked. */
410 void
411 objc_mark_locals_volatile (void *enclosing_blk)
413 struct cp_binding_level *scope;
415 for (scope = current_binding_level;
416 scope && scope != enclosing_blk;
417 scope = scope->level_chain)
419 tree decl;
421 for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
422 objc_volatilize_decl (decl);
424 /* Do not climb up past the current function. */
425 if (scope->kind == sk_function_parms)
426 break;
430 /* Exit a binding level.
431 Pop the level off, and restore the state of the identifier-decl mappings
432 that were in effect when this level was entered.
434 If KEEP == 1, this level had explicit declarations, so
435 and create a "block" (a BLOCK node) for the level
436 to record its declarations and subblocks for symbol table output.
438 If FUNCTIONBODY is nonzero, this level is the body of a function,
439 so create a block as if KEEP were set and also clear out all
440 label names.
442 If REVERSE is nonzero, reverse the order of decls before putting
443 them into the BLOCK. */
445 tree
446 poplevel (int keep, int reverse, int functionbody)
448 tree link;
449 /* The chain of decls was accumulated in reverse order.
450 Put it into forward order, just for cleanliness. */
451 tree decls;
452 int tmp = functionbody;
453 int real_functionbody;
454 tree subblocks;
455 tree block;
456 tree decl;
457 int leaving_for_scope;
458 scope_kind kind;
460 timevar_push (TV_NAME_LOOKUP);
461 restart:
463 block = NULL_TREE;
465 gcc_assert (current_binding_level->kind != sk_class);
467 real_functionbody = (current_binding_level->kind == sk_cleanup
468 ? ((functionbody = 0), tmp) : functionbody);
469 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
471 gcc_assert (!VEC_length(cp_class_binding,
472 current_binding_level->class_shadowed));
474 /* We used to use KEEP == 2 to indicate that the new block should go
475 at the beginning of the list of blocks at this binding level,
476 rather than the end. This hack is no longer used. */
477 gcc_assert (keep == 0 || keep == 1);
479 if (current_binding_level->keep)
480 keep = 1;
482 /* Any uses of undefined labels, and any defined labels, now operate
483 under constraints of next binding contour. */
484 if (cfun && !functionbody)
486 struct cp_binding_level *level_chain;
487 level_chain = current_binding_level->level_chain;
488 if (level_chain)
490 struct named_label_use_list *uses;
491 struct named_label_list *labels;
492 for (labels = named_labels; labels; labels = labels->next)
493 if (labels->binding_level == current_binding_level)
495 tree decl;
496 if (current_binding_level->kind == sk_try)
497 labels->in_try_scope = 1;
498 if (current_binding_level->kind == sk_catch)
499 labels->in_catch_scope = 1;
500 for (decl = labels->names_in_scope; decl;
501 decl = TREE_CHAIN (decl))
502 if (decl_jump_unsafe (decl))
503 labels->bad_decls = tree_cons (NULL_TREE, decl,
504 labels->bad_decls);
505 labels->binding_level = level_chain;
506 labels->names_in_scope = level_chain->names;
509 for (uses = named_label_uses; uses; uses = uses->next)
510 if (uses->binding_level == current_binding_level)
512 uses->binding_level = level_chain;
513 uses->names_in_scope = level_chain->names;
518 /* Get the decls in the order they were written.
519 Usually current_binding_level->names is in reverse order.
520 But parameter decls were previously put in forward order. */
522 if (reverse)
523 current_binding_level->names
524 = decls = nreverse (current_binding_level->names);
525 else
526 decls = current_binding_level->names;
528 /* If there were any declarations or structure tags in that level,
529 or if this level is a function body,
530 create a BLOCK to record them for the life of this function. */
531 block = NULL_TREE;
532 if (keep == 1 || functionbody)
533 block = make_node (BLOCK);
534 if (block != NULL_TREE)
536 BLOCK_VARS (block) = decls;
537 BLOCK_SUBBLOCKS (block) = subblocks;
540 /* In each subblock, record that this is its superior. */
541 if (keep >= 0)
542 for (link = subblocks; link; link = TREE_CHAIN (link))
543 BLOCK_SUPERCONTEXT (link) = block;
545 /* We still support the old for-scope rules, whereby the variables
546 in a for-init statement were in scope after the for-statement
547 ended. We only use the new rules if flag_new_for_scope is
548 nonzero. */
549 leaving_for_scope
550 = current_binding_level->kind == sk_for && flag_new_for_scope == 1;
552 /* Before we remove the declarations first check for unused variables. */
553 if (warn_unused_variable
554 && !processing_template_decl)
555 for (decl = getdecls (); decl; decl = TREE_CHAIN (decl))
556 if (TREE_CODE (decl) == VAR_DECL
557 && ! TREE_USED (decl)
558 && ! DECL_IN_SYSTEM_HEADER (decl)
559 && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl))
560 warning (0, "unused variable %q+D", decl);
562 /* Remove declarations for all the DECLs in this level. */
563 for (link = decls; link; link = TREE_CHAIN (link))
565 if (leaving_for_scope && TREE_CODE (link) == VAR_DECL
566 && DECL_NAME (link))
568 tree name = DECL_NAME (link);
569 cxx_binding *ob;
570 tree ns_binding;
572 ob = outer_binding (name,
573 IDENTIFIER_BINDING (name),
574 /*class_p=*/true);
575 if (!ob)
576 ns_binding = IDENTIFIER_NAMESPACE_VALUE (name);
577 else
578 ns_binding = NULL_TREE;
580 if (ob && ob->scope == current_binding_level->level_chain)
581 /* We have something like:
583 int i;
584 for (int i; ;);
586 and we are leaving the `for' scope. There's no reason to
587 keep the binding of the inner `i' in this case. */
588 pop_binding (name, link);
589 else if ((ob && (TREE_CODE (ob->value) == TYPE_DECL))
590 || (ns_binding && TREE_CODE (ns_binding) == TYPE_DECL))
591 /* Here, we have something like:
593 typedef int I;
595 void f () {
596 for (int I; ;);
599 We must pop the for-scope binding so we know what's a
600 type and what isn't. */
601 pop_binding (name, link);
602 else
604 /* Mark this VAR_DECL as dead so that we can tell we left it
605 there only for backward compatibility. */
606 DECL_DEAD_FOR_LOCAL (link) = 1;
608 /* Keep track of what should have happened when we
609 popped the binding. */
610 if (ob && ob->value)
612 SET_DECL_SHADOWED_FOR_VAR (link, ob->value);
613 DECL_HAS_SHADOWED_FOR_VAR_P (link) = 1;
616 /* Add it to the list of dead variables in the next
617 outermost binding to that we can remove these when we
618 leave that binding. */
619 current_binding_level->level_chain->dead_vars_from_for
620 = tree_cons (NULL_TREE, link,
621 current_binding_level->level_chain->
622 dead_vars_from_for);
624 /* Although we don't pop the cxx_binding, we do clear
625 its SCOPE since the scope is going away now. */
626 IDENTIFIER_BINDING (name)->scope
627 = current_binding_level->level_chain;
630 else
632 tree name;
634 /* Remove the binding. */
635 decl = link;
637 if (TREE_CODE (decl) == TREE_LIST)
638 decl = TREE_VALUE (decl);
639 name = decl;
641 if (TREE_CODE (name) == OVERLOAD)
642 name = OVL_FUNCTION (name);
644 gcc_assert (DECL_P (name));
645 pop_binding (DECL_NAME (name), decl);
649 /* Remove declarations for any `for' variables from inner scopes
650 that we kept around. */
651 for (link = current_binding_level->dead_vars_from_for;
652 link; link = TREE_CHAIN (link))
653 pop_binding (DECL_NAME (TREE_VALUE (link)), TREE_VALUE (link));
655 /* Restore the IDENTIFIER_TYPE_VALUEs. */
656 for (link = current_binding_level->type_shadowed;
657 link; link = TREE_CHAIN (link))
658 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
660 /* Restore the IDENTIFIER_LABEL_VALUEs for local labels. */
661 for (link = current_binding_level->shadowed_labels;
662 link;
663 link = TREE_CHAIN (link))
664 pop_label (TREE_VALUE (link), TREE_PURPOSE (link));
666 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
667 list if a `using' declaration put them there. The debugging
668 back-ends won't understand OVERLOAD, so we remove them here.
669 Because the BLOCK_VARS are (temporarily) shared with
670 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
671 popped all the bindings. */
672 if (block)
674 tree* d;
676 for (d = &BLOCK_VARS (block); *d; )
678 if (TREE_CODE (*d) == TREE_LIST)
679 *d = TREE_CHAIN (*d);
680 else
681 d = &TREE_CHAIN (*d);
685 /* If the level being exited is the top level of a function,
686 check over all the labels. */
687 if (functionbody)
689 /* Since this is the top level block of a function, the vars are
690 the function's parameters. Don't leave them in the BLOCK
691 because they are found in the FUNCTION_DECL instead. */
692 BLOCK_VARS (block) = 0;
693 pop_labels (block);
696 kind = current_binding_level->kind;
697 if (kind == sk_cleanup)
699 tree stmt;
701 /* If this is a temporary binding created for a cleanup, then we'll
702 have pushed a statement list level. Pop that, create a new
703 BIND_EXPR for the block, and insert it into the stream. */
704 stmt = pop_stmt_list (current_binding_level->statement_list);
705 stmt = c_build_bind_expr (block, stmt);
706 add_stmt (stmt);
709 leave_scope ();
710 if (functionbody)
711 DECL_INITIAL (current_function_decl) = block;
712 else if (block)
713 current_binding_level->blocks
714 = chainon (current_binding_level->blocks, block);
716 /* If we did not make a block for the level just exited,
717 any blocks made for inner levels
718 (since they cannot be recorded as subblocks in that level)
719 must be carried forward so they will later become subblocks
720 of something else. */
721 else if (subblocks)
722 current_binding_level->blocks
723 = chainon (current_binding_level->blocks, subblocks);
725 /* Each and every BLOCK node created here in `poplevel' is important
726 (e.g. for proper debugging information) so if we created one
727 earlier, mark it as "used". */
728 if (block)
729 TREE_USED (block) = 1;
731 /* All temporary bindings created for cleanups are popped silently. */
732 if (kind == sk_cleanup)
733 goto restart;
735 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, block);
738 /* Insert BLOCK at the end of the list of subblocks of the
739 current binding level. This is used when a BIND_EXPR is expanded,
740 to handle the BLOCK node inside the BIND_EXPR. */
742 void
743 insert_block (tree block)
745 TREE_USED (block) = 1;
746 current_binding_level->blocks
747 = chainon (current_binding_level->blocks, block);
750 /* Walk all the namespaces contained NAMESPACE, including NAMESPACE
751 itself, calling F for each. The DATA is passed to F as well. */
753 static int
754 walk_namespaces_r (tree namespace, walk_namespaces_fn f, void* data)
756 int result = 0;
757 tree current = NAMESPACE_LEVEL (namespace)->namespaces;
759 result |= (*f) (namespace, data);
761 for (; current; current = TREE_CHAIN (current))
762 result |= walk_namespaces_r (current, f, data);
764 return result;
767 /* Walk all the namespaces, calling F for each. The DATA is passed to
768 F as well. */
771 walk_namespaces (walk_namespaces_fn f, void* data)
773 return walk_namespaces_r (global_namespace, f, data);
776 /* Call wrapup_globals_declarations for the globals in NAMESPACE. If
777 DATA is non-NULL, this is the last time we will call
778 wrapup_global_declarations for this NAMESPACE. */
781 wrapup_globals_for_namespace (tree namespace, void* data)
783 struct cp_binding_level *level = NAMESPACE_LEVEL (namespace);
784 VEC(tree,gc) *statics = level->static_decls;
785 tree *vec = VEC_address (tree, statics);
786 int len = VEC_length (tree, statics);
787 int last_time = (data != 0);
789 if (last_time)
791 check_global_declarations (vec, len);
792 emit_debug_global_declarations (vec, len);
793 return 0;
796 /* Write out any globals that need to be output. */
797 return wrapup_global_declarations (vec, len);
801 /* In C++, you don't have to write `struct S' to refer to `S'; you
802 can just use `S'. We accomplish this by creating a TYPE_DECL as
803 if the user had written `typedef struct S S'. Create and return
804 the TYPE_DECL for TYPE. */
806 tree
807 create_implicit_typedef (tree name, tree type)
809 tree decl;
811 decl = build_decl (TYPE_DECL, name, type);
812 DECL_ARTIFICIAL (decl) = 1;
813 /* There are other implicit type declarations, like the one *within*
814 a class that allows you to write `S::S'. We must distinguish
815 amongst these. */
816 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
817 TYPE_NAME (type) = decl;
819 return decl;
822 /* Remember a local name for name-mangling purposes. */
824 static void
825 push_local_name (tree decl)
827 size_t i, nelts;
828 tree t, name;
830 timevar_push (TV_NAME_LOOKUP);
832 name = DECL_NAME (decl);
834 nelts = VEC_length (tree, local_names);
835 for (i = 0; i < nelts; i++)
837 t = VEC_index (tree, local_names, i);
838 if (DECL_NAME (t) == name)
840 if (!DECL_LANG_SPECIFIC (decl))
841 retrofit_lang_decl (decl);
842 DECL_LANG_SPECIFIC (decl)->decl_flags.u2sel = 1;
843 if (DECL_LANG_SPECIFIC (t))
844 DECL_DISCRIMINATOR (decl) = DECL_DISCRIMINATOR (t) + 1;
845 else
846 DECL_DISCRIMINATOR (decl) = 1;
848 VEC_replace (tree, local_names, i, decl);
849 timevar_pop (TV_NAME_LOOKUP);
850 return;
854 VEC_safe_push (tree, gc, local_names, decl);
855 timevar_pop (TV_NAME_LOOKUP);
858 /* Subroutine of duplicate_decls: return truthvalue of whether
859 or not types of these decls match.
861 For C++, we must compare the parameter list so that `int' can match
862 `int&' in a parameter position, but `int&' is not confused with
863 `const int&'. */
866 decls_match (tree newdecl, tree olddecl)
868 int types_match;
870 if (newdecl == olddecl)
871 return 1;
873 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
874 /* If the two DECLs are not even the same kind of thing, we're not
875 interested in their types. */
876 return 0;
878 if (TREE_CODE (newdecl) == FUNCTION_DECL)
880 tree f1 = TREE_TYPE (newdecl);
881 tree f2 = TREE_TYPE (olddecl);
882 tree p1 = TYPE_ARG_TYPES (f1);
883 tree p2 = TYPE_ARG_TYPES (f2);
885 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
886 && ! (DECL_EXTERN_C_P (newdecl)
887 && DECL_EXTERN_C_P (olddecl)))
888 return 0;
890 if (TREE_CODE (f1) != TREE_CODE (f2))
891 return 0;
893 if (same_type_p (TREE_TYPE (f1), TREE_TYPE (f2)))
895 if (p2 == NULL_TREE && DECL_EXTERN_C_P (olddecl)
896 && (DECL_BUILT_IN (olddecl)
897 #ifndef NO_IMPLICIT_EXTERN_C
898 || (DECL_IN_SYSTEM_HEADER (newdecl) && !DECL_CLASS_SCOPE_P (newdecl))
899 || (DECL_IN_SYSTEM_HEADER (olddecl) && !DECL_CLASS_SCOPE_P (olddecl))
900 #endif
903 types_match = self_promoting_args_p (p1);
904 if (p1 == void_list_node)
905 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
907 #ifndef NO_IMPLICIT_EXTERN_C
908 else if (p1 == NULL_TREE
909 && (DECL_EXTERN_C_P (olddecl)
910 && DECL_IN_SYSTEM_HEADER (olddecl)
911 && !DECL_CLASS_SCOPE_P (olddecl))
912 && (DECL_EXTERN_C_P (newdecl)
913 && DECL_IN_SYSTEM_HEADER (newdecl)
914 && !DECL_CLASS_SCOPE_P (newdecl)))
916 types_match = self_promoting_args_p (p2);
917 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
919 #endif
920 else
921 types_match = compparms (p1, p2);
923 else
924 types_match = 0;
926 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
928 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl))
929 != TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)))
930 return 0;
932 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
933 DECL_TEMPLATE_PARMS (olddecl)))
934 return 0;
936 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
937 types_match = same_type_p (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl)),
938 TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl)));
939 else
940 types_match = decls_match (DECL_TEMPLATE_RESULT (olddecl),
941 DECL_TEMPLATE_RESULT (newdecl));
943 else
945 /* Need to check scope for variable declaration (VAR_DECL).
946 For typedef (TYPE_DECL), scope is ignored. */
947 if (TREE_CODE (newdecl) == VAR_DECL
948 && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
949 return 0;
951 if (TREE_TYPE (newdecl) == error_mark_node)
952 types_match = TREE_TYPE (olddecl) == error_mark_node;
953 else if (TREE_TYPE (olddecl) == NULL_TREE)
954 types_match = TREE_TYPE (newdecl) == NULL_TREE;
955 else if (TREE_TYPE (newdecl) == NULL_TREE)
956 types_match = 0;
957 else
958 types_match = comptypes (TREE_TYPE (newdecl),
959 TREE_TYPE (olddecl),
960 COMPARE_REDECLARATION);
963 return types_match;
966 /* If NEWDECL is `static' and an `extern' was seen previously,
967 warn about it. OLDDECL is the previous declaration.
969 Note that this does not apply to the C++ case of declaring
970 a variable `extern const' and then later `const'.
972 Don't complain about built-in functions, since they are beyond
973 the user's control. */
975 void
976 warn_extern_redeclared_static (tree newdecl, tree olddecl)
978 tree name;
980 if (TREE_CODE (newdecl) == TYPE_DECL
981 || TREE_CODE (newdecl) == TEMPLATE_DECL
982 || TREE_CODE (newdecl) == CONST_DECL
983 || TREE_CODE (newdecl) == NAMESPACE_DECL)
984 return;
986 /* Don't get confused by static member functions; that's a different
987 use of `static'. */
988 if (TREE_CODE (newdecl) == FUNCTION_DECL
989 && DECL_STATIC_FUNCTION_P (newdecl))
990 return;
992 /* If the old declaration was `static', or the new one isn't, then
993 then everything is OK. */
994 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
995 return;
997 /* It's OK to declare a builtin function as `static'. */
998 if (TREE_CODE (olddecl) == FUNCTION_DECL
999 && DECL_ARTIFICIAL (olddecl))
1000 return;
1002 name = DECL_ASSEMBLER_NAME (newdecl);
1003 pedwarn ("%qD was declared %<extern%> and later %<static%>", newdecl);
1004 pedwarn ("previous declaration of %q+D", olddecl);
1007 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1008 If the redeclaration is invalid, a diagnostic is issued, and the
1009 error_mark_node is returned. Otherwise, OLDDECL is returned.
1011 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1012 returned.
1014 NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend. */
1016 tree
1017 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1019 unsigned olddecl_uid = DECL_UID (olddecl);
1020 int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1021 int new_defines_function = 0;
1023 if (newdecl == olddecl)
1024 return olddecl;
1026 types_match = decls_match (newdecl, olddecl);
1028 /* If either the type of the new decl or the type of the old decl is an
1029 error_mark_node, then that implies that we have already issued an
1030 error (earlier) for some bogus type specification, and in that case,
1031 it is rather pointless to harass the user with yet more error message
1032 about the same declaration, so just pretend the types match here. */
1033 if (TREE_TYPE (newdecl) == error_mark_node
1034 || TREE_TYPE (olddecl) == error_mark_node)
1035 types_match = 1;
1037 if (DECL_P (olddecl)
1038 && TREE_CODE (newdecl) == FUNCTION_DECL
1039 && TREE_CODE (olddecl) == FUNCTION_DECL
1040 && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
1042 if (DECL_DECLARED_INLINE_P (newdecl)
1043 && DECL_UNINLINABLE (newdecl)
1044 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1045 /* Already warned elsewhere. */;
1046 else if (DECL_DECLARED_INLINE_P (olddecl)
1047 && DECL_UNINLINABLE (olddecl)
1048 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1049 /* Already warned. */;
1050 else if (DECL_DECLARED_INLINE_P (newdecl)
1051 && DECL_UNINLINABLE (olddecl)
1052 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1054 warning (OPT_Wattributes, "function %q+D redeclared as inline",
1055 newdecl);
1056 warning (OPT_Wattributes, "previous declaration of %q+D "
1057 "with attribute noinline", olddecl);
1059 else if (DECL_DECLARED_INLINE_P (olddecl)
1060 && DECL_UNINLINABLE (newdecl)
1061 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1063 warning (OPT_Wattributes, "function %q+D redeclared with "
1064 "attribute noinline", newdecl);
1065 warning (OPT_Wattributes, "previous declaration of %q+D was inline",
1066 olddecl);
1070 /* Check for redeclaration and other discrepancies. */
1071 if (TREE_CODE (olddecl) == FUNCTION_DECL
1072 && DECL_ARTIFICIAL (olddecl))
1074 gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1075 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1077 /* Avoid warnings redeclaring built-ins which have not been
1078 explicitly declared. */
1079 if (DECL_ANTICIPATED (olddecl))
1080 return NULL_TREE;
1082 /* If you declare a built-in or predefined function name as static,
1083 the old definition is overridden, but optionally warn this was a
1084 bad choice of name. */
1085 if (! TREE_PUBLIC (newdecl))
1087 if (warn_shadow)
1088 warning (0, "shadowing %s function %q#D",
1089 DECL_BUILT_IN (olddecl) ? "built-in" : "library",
1090 olddecl);
1091 /* Discard the old built-in function. */
1092 return NULL_TREE;
1094 /* If the built-in is not ansi, then programs can override
1095 it even globally without an error. */
1096 else if (! DECL_BUILT_IN (olddecl))
1097 warning (0, "library function %q#D redeclared as non-function %q#D",
1098 olddecl, newdecl);
1099 else
1101 error ("declaration of %q#D", newdecl);
1102 error ("conflicts with built-in declaration %q#D",
1103 olddecl);
1105 return NULL_TREE;
1107 else if (!types_match)
1109 /* Avoid warnings redeclaring built-ins which have not been
1110 explicitly declared. */
1111 if (DECL_ANTICIPATED (olddecl))
1113 /* Deal with fileptr_type_node. FILE type is not known
1114 at the time we create the builtins. */
1115 tree t1, t2;
1117 for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1118 t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1119 t1 || t2;
1120 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1121 if (!t1 || !t2)
1122 break;
1123 else if (TREE_VALUE (t2) == fileptr_type_node)
1125 tree t = TREE_VALUE (t1);
1127 if (TREE_CODE (t) == POINTER_TYPE
1128 && TYPE_NAME (TREE_TYPE (t))
1129 && DECL_NAME (TYPE_NAME (TREE_TYPE (t)))
1130 == get_identifier ("FILE")
1131 && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1133 tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1135 TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1136 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1137 types_match = decls_match (newdecl, olddecl);
1138 if (types_match)
1139 return duplicate_decls (newdecl, olddecl,
1140 newdecl_is_friend);
1141 TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1144 else if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1145 break;
1147 else if ((DECL_EXTERN_C_P (newdecl)
1148 && DECL_EXTERN_C_P (olddecl))
1149 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1150 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1152 /* A near match; override the builtin. */
1154 if (TREE_PUBLIC (newdecl))
1156 warning (0, "new declaration %q#D", newdecl);
1157 warning (0, "ambiguates built-in declaration %q#D",
1158 olddecl);
1160 else if (warn_shadow)
1161 warning (0, "shadowing %s function %q#D",
1162 DECL_BUILT_IN (olddecl) ? "built-in" : "library",
1163 olddecl);
1165 else
1166 /* Discard the old built-in function. */
1167 return NULL_TREE;
1169 /* Replace the old RTL to avoid problems with inlining. */
1170 COPY_DECL_RTL (newdecl, olddecl);
1172 /* Even if the types match, prefer the new declarations type for
1173 built-ins which have not been explicitly declared, for
1174 exception lists, etc... */
1175 else if (DECL_ANTICIPATED (olddecl))
1177 tree type = TREE_TYPE (newdecl);
1178 tree attribs = (*targetm.merge_type_attributes)
1179 (TREE_TYPE (olddecl), type);
1181 type = cp_build_type_attribute_variant (type, attribs);
1182 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1185 /* Whether or not the builtin can throw exceptions has no
1186 bearing on this declarator. */
1187 TREE_NOTHROW (olddecl) = 0;
1189 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1191 /* If a builtin function is redeclared as `static', merge
1192 the declarations, but make the original one static. */
1193 DECL_THIS_STATIC (olddecl) = 1;
1194 TREE_PUBLIC (olddecl) = 0;
1196 /* Make the old declaration consistent with the new one so
1197 that all remnants of the builtin-ness of this function
1198 will be banished. */
1199 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1200 COPY_DECL_RTL (newdecl, olddecl);
1203 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1205 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
1206 && TREE_CODE (newdecl) != TYPE_DECL
1207 && ! (TREE_CODE (newdecl) == TEMPLATE_DECL
1208 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL))
1209 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
1210 && TREE_CODE (olddecl) != TYPE_DECL
1211 && ! (TREE_CODE (olddecl) == TEMPLATE_DECL
1212 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
1213 == TYPE_DECL))))
1215 /* We do nothing special here, because C++ does such nasty
1216 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1217 get shadowed, and know that if we need to find a TYPE_DECL
1218 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1219 slot of the identifier. */
1220 return NULL_TREE;
1223 if ((TREE_CODE (newdecl) == FUNCTION_DECL
1224 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1225 || (TREE_CODE (olddecl) == FUNCTION_DECL
1226 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1227 return NULL_TREE;
1229 error ("%q#D redeclared as different kind of symbol", newdecl);
1230 if (TREE_CODE (olddecl) == TREE_LIST)
1231 olddecl = TREE_VALUE (olddecl);
1232 error ("previous declaration of %q+#D", olddecl);
1234 return error_mark_node;
1236 else if (!types_match)
1238 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1239 /* These are certainly not duplicate declarations; they're
1240 from different scopes. */
1241 return NULL_TREE;
1243 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1245 /* The name of a class template may not be declared to refer to
1246 any other template, class, function, object, namespace, value,
1247 or type in the same scope. */
1248 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1249 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1251 error ("declaration of template %q#D", newdecl);
1252 error ("conflicts with previous declaration %q+#D", olddecl);
1254 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1255 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1256 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1257 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1258 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1259 DECL_TEMPLATE_PARMS (olddecl))
1260 /* Template functions can be disambiguated by
1261 return type. */
1262 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1263 TREE_TYPE (TREE_TYPE (olddecl))))
1265 error ("new declaration %q#D", newdecl);
1266 error ("ambiguates old declaration %q+#D", olddecl);
1268 return NULL_TREE;
1270 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1272 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1274 error ("declaration of C function %q#D conflicts with",
1275 newdecl);
1276 error ("previous declaration %q+#D here", olddecl);
1278 else if (compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1279 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1281 error ("new declaration %q#D", newdecl);
1282 error ("ambiguates old declaration %q+#D", olddecl);
1284 else
1285 return NULL_TREE;
1287 else
1289 error ("conflicting declaration %q#D", newdecl);
1290 error ("%q+D has a previous declaration as %q#D", olddecl, olddecl);
1291 return error_mark_node;
1294 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1295 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1296 && (!DECL_TEMPLATE_INFO (newdecl)
1297 || (DECL_TI_TEMPLATE (newdecl)
1298 != DECL_TI_TEMPLATE (olddecl))))
1299 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1300 && (!DECL_TEMPLATE_INFO (olddecl)
1301 || (DECL_TI_TEMPLATE (olddecl)
1302 != DECL_TI_TEMPLATE (newdecl))))))
1303 /* It's OK to have a template specialization and a non-template
1304 with the same type, or to have specializations of two
1305 different templates with the same type. Note that if one is a
1306 specialization, and the other is an instantiation of the same
1307 template, that we do not exit at this point. That situation
1308 can occur if we instantiate a template class, and then
1309 specialize one of its methods. This situation is valid, but
1310 the declarations must be merged in the usual way. */
1311 return NULL_TREE;
1312 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1313 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1314 && !DECL_USE_TEMPLATE (newdecl))
1315 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1316 && !DECL_USE_TEMPLATE (olddecl))))
1317 /* One of the declarations is a template instantiation, and the
1318 other is not a template at all. That's OK. */
1319 return NULL_TREE;
1320 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1322 /* In [namespace.alias] we have:
1324 In a declarative region, a namespace-alias-definition can be
1325 used to redefine a namespace-alias declared in that declarative
1326 region to refer only to the namespace to which it already
1327 refers.
1329 Therefore, if we encounter a second alias directive for the same
1330 alias, we can just ignore the second directive. */
1331 if (DECL_NAMESPACE_ALIAS (newdecl)
1332 && (DECL_NAMESPACE_ALIAS (newdecl)
1333 == DECL_NAMESPACE_ALIAS (olddecl)))
1334 return olddecl;
1335 /* [namespace.alias]
1337 A namespace-name or namespace-alias shall not be declared as
1338 the name of any other entity in the same declarative region.
1339 A namespace-name defined at global scope shall not be
1340 declared as the name of any other entity in any global scope
1341 of the program. */
1342 error ("declaration of namespace %qD conflicts with", newdecl);
1343 error ("previous declaration of namespace %q+D here", olddecl);
1344 return error_mark_node;
1346 else
1348 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1349 if (errmsg)
1351 error (errmsg, newdecl);
1352 if (DECL_NAME (olddecl) != NULL_TREE)
1353 error ((DECL_INITIAL (olddecl) && namespace_bindings_p ())
1354 ? "%q+#D previously defined here"
1355 : "%q+#D previously declared here", olddecl);
1356 return error_mark_node;
1358 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1359 && DECL_INITIAL (olddecl) != NULL_TREE
1360 && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) == NULL_TREE
1361 && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != NULL_TREE)
1363 /* Prototype decl follows defn w/o prototype. */
1364 warning (0, "prototype for %q+#D", newdecl);
1365 warning (0, "%Jfollows non-prototype definition here", olddecl);
1367 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1368 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1370 /* extern "C" int foo ();
1371 int foo () { bar (); }
1372 is OK. */
1373 if (current_lang_depth () == 0)
1374 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1375 else
1377 error ("previous declaration of %q+#D with %qL linkage",
1378 olddecl, DECL_LANGUAGE (olddecl));
1379 error ("conflicts with new declaration with %qL linkage",
1380 DECL_LANGUAGE (newdecl));
1384 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1386 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1388 tree t1 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1389 tree t2 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1390 int i = 1;
1392 if (TREE_CODE (TREE_TYPE (newdecl)) == METHOD_TYPE)
1393 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2);
1395 for (; t1 && t1 != void_list_node;
1396 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1397 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1399 if (1 == simple_cst_equal (TREE_PURPOSE (t1),
1400 TREE_PURPOSE (t2)))
1402 pedwarn ("default argument given for parameter %d of %q#D",
1403 i, newdecl);
1404 pedwarn ("after previous specification in %q+#D", olddecl);
1406 else
1408 error ("default argument given for parameter %d of %q#D",
1409 i, newdecl);
1410 error ("after previous specification in %q+#D",
1411 olddecl);
1415 if (DECL_DECLARED_INLINE_P (newdecl)
1416 && ! DECL_DECLARED_INLINE_P (olddecl)
1417 && TREE_ADDRESSABLE (olddecl) && warn_inline)
1419 warning (0, "%q#D was used before it was declared inline", newdecl);
1420 warning (0, "%Jprevious non-inline declaration here", olddecl);
1425 /* Do not merge an implicit typedef with an explicit one. In:
1427 class A;
1429 typedef class A A __attribute__ ((foo));
1431 the attribute should apply only to the typedef. */
1432 if (TREE_CODE (olddecl) == TYPE_DECL
1433 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1434 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1435 return NULL_TREE;
1437 /* If new decl is `static' and an `extern' was seen previously,
1438 warn about it. */
1439 warn_extern_redeclared_static (newdecl, olddecl);
1441 /* We have committed to returning 1 at this point. */
1442 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1444 /* Now that functions must hold information normally held
1445 by field decls, there is extra work to do so that
1446 declaration information does not get destroyed during
1447 definition. */
1448 if (DECL_VINDEX (olddecl))
1449 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1450 if (DECL_CONTEXT (olddecl))
1451 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1452 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1453 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1454 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1455 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1456 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1457 if (DECL_OVERLOADED_OPERATOR_P (olddecl) != ERROR_MARK)
1458 SET_OVERLOADED_OPERATOR_CODE
1459 (newdecl, DECL_OVERLOADED_OPERATOR_P (olddecl));
1460 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1462 /* Optionally warn about more than one declaration for the same
1463 name, but don't warn about a function declaration followed by a
1464 definition. */
1465 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1466 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1467 /* Don't warn about extern decl followed by definition. */
1468 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1469 /* Don't warn about friends, let add_friend take care of it. */
1470 && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl)))
1472 warning (0, "redundant redeclaration of %qD in same scope", newdecl);
1473 warning (0, "previous declaration of %q+D", olddecl);
1477 /* Deal with C++: must preserve virtual function table size. */
1478 if (TREE_CODE (olddecl) == TYPE_DECL)
1480 tree newtype = TREE_TYPE (newdecl);
1481 tree oldtype = TREE_TYPE (olddecl);
1483 if (newtype != error_mark_node && oldtype != error_mark_node
1484 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
1485 CLASSTYPE_FRIEND_CLASSES (newtype)
1486 = CLASSTYPE_FRIEND_CLASSES (oldtype);
1488 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
1491 /* Copy all the DECL_... slots specified in the new decl
1492 except for any that we copy here from the old type. */
1493 DECL_ATTRIBUTES (newdecl)
1494 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1496 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1498 TREE_TYPE (olddecl) = TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl));
1499 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
1500 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
1501 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
1503 /* If the new declaration is a definition, update the file and
1504 line information on the declaration. */
1505 if (DECL_INITIAL (DECL_TEMPLATE_RESULT (olddecl)) == NULL_TREE
1506 && DECL_INITIAL (DECL_TEMPLATE_RESULT (newdecl)) != NULL_TREE)
1508 DECL_SOURCE_LOCATION (olddecl)
1509 = DECL_SOURCE_LOCATION (DECL_TEMPLATE_RESULT (olddecl))
1510 = DECL_SOURCE_LOCATION (newdecl);
1511 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1512 DECL_ARGUMENTS (DECL_TEMPLATE_RESULT (olddecl))
1513 = DECL_ARGUMENTS (DECL_TEMPLATE_RESULT (newdecl));
1516 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1518 DECL_INLINE (DECL_TEMPLATE_RESULT (olddecl))
1519 |= DECL_INLINE (DECL_TEMPLATE_RESULT (newdecl));
1520 DECL_DECLARED_INLINE_P (DECL_TEMPLATE_RESULT (olddecl))
1521 |= DECL_DECLARED_INLINE_P (DECL_TEMPLATE_RESULT (newdecl));
1524 return olddecl;
1527 if (types_match)
1529 /* Automatically handles default parameters. */
1530 tree oldtype = TREE_TYPE (olddecl);
1531 tree newtype;
1533 /* Merge the data types specified in the two decls. */
1534 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1536 /* If merge_types produces a non-typedef type, just use the old type. */
1537 if (TREE_CODE (newdecl) == TYPE_DECL
1538 && newtype == DECL_ORIGINAL_TYPE (newdecl))
1539 newtype = oldtype;
1541 if (TREE_CODE (newdecl) == VAR_DECL)
1543 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
1544 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
1545 DECL_NONTRIVIALLY_INITIALIZED_P (newdecl)
1546 |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
1547 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
1548 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
1551 /* Do this after calling `merge_types' so that default
1552 parameters don't confuse us. */
1553 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1554 && (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (newdecl))
1555 != TYPE_RAISES_EXCEPTIONS (TREE_TYPE (olddecl))))
1557 TREE_TYPE (newdecl) = build_exception_variant (newtype,
1558 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (newdecl)));
1559 TREE_TYPE (olddecl) = build_exception_variant (newtype,
1560 TYPE_RAISES_EXCEPTIONS (oldtype));
1562 if ((pedantic || ! DECL_IN_SYSTEM_HEADER (olddecl))
1563 && ! DECL_IS_BUILTIN (olddecl)
1564 && flag_exceptions
1565 && !comp_except_specs (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (newdecl)),
1566 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (olddecl)), 1))
1568 error ("declaration of %qF throws different exceptions",
1569 newdecl);
1570 error ("than previous declaration %q+F", olddecl);
1573 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
1575 /* Lay the type out, unless already done. */
1576 if (! same_type_p (newtype, oldtype)
1577 && TREE_TYPE (newdecl) != error_mark_node
1578 && !(processing_template_decl && uses_template_parms (newdecl)))
1579 layout_type (TREE_TYPE (newdecl));
1581 if ((TREE_CODE (newdecl) == VAR_DECL
1582 || TREE_CODE (newdecl) == PARM_DECL
1583 || TREE_CODE (newdecl) == RESULT_DECL
1584 || TREE_CODE (newdecl) == FIELD_DECL
1585 || TREE_CODE (newdecl) == TYPE_DECL)
1586 && !(processing_template_decl && uses_template_parms (newdecl)))
1587 layout_decl (newdecl, 0);
1589 /* Merge the type qualifiers. */
1590 if (TREE_READONLY (newdecl))
1591 TREE_READONLY (olddecl) = 1;
1592 if (TREE_THIS_VOLATILE (newdecl))
1593 TREE_THIS_VOLATILE (olddecl) = 1;
1594 if (TREE_NOTHROW (newdecl))
1595 TREE_NOTHROW (olddecl) = 1;
1597 /* Merge deprecatedness. */
1598 if (TREE_DEPRECATED (newdecl))
1599 TREE_DEPRECATED (olddecl) = 1;
1601 /* Merge the initialization information. */
1602 if (DECL_INITIAL (newdecl) == NULL_TREE
1603 && DECL_INITIAL (olddecl) != NULL_TREE)
1605 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1606 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
1607 if (CAN_HAVE_FULL_LANG_DECL_P (newdecl)
1608 && DECL_LANG_SPECIFIC (newdecl)
1609 && DECL_LANG_SPECIFIC (olddecl))
1611 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
1612 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
1616 /* Merge the section attribute.
1617 We want to issue an error if the sections conflict but that must be
1618 done later in decl_attributes since we are called before attributes
1619 are assigned. */
1620 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1621 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1623 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1625 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1626 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1627 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
1628 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1629 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
1630 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
1631 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
1632 DECL_IS_PURE (newdecl) |= DECL_IS_PURE (olddecl);
1633 /* Keep the old RTL. */
1634 COPY_DECL_RTL (olddecl, newdecl);
1636 else if (TREE_CODE (newdecl) == VAR_DECL
1637 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
1639 /* Keep the old RTL. We cannot keep the old RTL if the old
1640 declaration was for an incomplete object and the new
1641 declaration is not since many attributes of the RTL will
1642 change. */
1643 COPY_DECL_RTL (olddecl, newdecl);
1646 /* If cannot merge, then use the new type and qualifiers,
1647 and don't preserve the old rtl. */
1648 else
1650 /* Clean out any memory we had of the old declaration. */
1651 tree oldstatic = value_member (olddecl, static_aggregates);
1652 if (oldstatic)
1653 TREE_VALUE (oldstatic) = error_mark_node;
1655 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1656 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1657 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1658 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1661 /* Merge the storage class information. */
1662 merge_weak (newdecl, olddecl);
1664 DECL_ONE_ONLY (newdecl) |= DECL_ONE_ONLY (olddecl);
1665 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
1666 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1667 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
1668 if (! DECL_EXTERNAL (olddecl))
1669 DECL_EXTERNAL (newdecl) = 0;
1671 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
1673 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
1674 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
1675 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
1676 DECL_TEMPLATE_INSTANTIATED (newdecl)
1677 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
1679 /* If the OLDDECL is an instantiation and/or specialization,
1680 then the NEWDECL must be too. But, it may not yet be marked
1681 as such if the caller has created NEWDECL, but has not yet
1682 figured out that it is a redeclaration. */
1683 if (!DECL_USE_TEMPLATE (newdecl))
1684 DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
1686 /* Don't really know how much of the language-specific
1687 values we should copy from old to new. */
1688 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
1689 DECL_LANG_SPECIFIC (newdecl)->decl_flags.u2 =
1690 DECL_LANG_SPECIFIC (olddecl)->decl_flags.u2;
1691 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
1692 DECL_REPO_AVAILABLE_P (newdecl) = DECL_REPO_AVAILABLE_P (olddecl);
1693 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
1694 DECL_INITIALIZED_IN_CLASS_P (newdecl)
1695 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
1696 olddecl_friend = DECL_FRIEND_P (olddecl);
1697 hidden_friend = (DECL_ANTICIPATED (olddecl)
1698 && DECL_HIDDEN_FRIEND_P (olddecl)
1699 && newdecl_is_friend);
1701 /* Only functions have DECL_BEFRIENDING_CLASSES. */
1702 if (TREE_CODE (newdecl) == FUNCTION_DECL
1703 || DECL_FUNCTION_TEMPLATE_P (newdecl))
1705 DECL_BEFRIENDING_CLASSES (newdecl)
1706 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
1707 DECL_BEFRIENDING_CLASSES (olddecl));
1708 /* DECL_THUNKS is only valid for virtual functions,
1709 otherwise it is a DECL_FRIEND_CONTEXT. */
1710 if (DECL_VIRTUAL_P (newdecl))
1711 DECL_THUNKS (newdecl) = DECL_THUNKS (olddecl);
1715 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1717 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
1718 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
1720 /* If newdecl is not a specialization, then it is not a
1721 template-related function at all. And that means that we
1722 should have exited above, returning 0. */
1723 gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
1725 if (TREE_USED (olddecl))
1726 /* From [temp.expl.spec]:
1728 If a template, a member template or the member of a class
1729 template is explicitly specialized then that
1730 specialization shall be declared before the first use of
1731 that specialization that would cause an implicit
1732 instantiation to take place, in every translation unit in
1733 which such a use occurs. */
1734 error ("explicit specialization of %qD after first use",
1735 olddecl);
1737 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
1739 /* [temp.expl.spec/14] We don't inline explicit specialization
1740 just because the primary template says so. */
1742 else
1744 if (DECL_PENDING_INLINE_INFO (newdecl) == 0)
1745 DECL_PENDING_INLINE_INFO (newdecl) = DECL_PENDING_INLINE_INFO (olddecl);
1747 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
1749 /* If either decl says `inline', this fn is inline, unless
1750 its definition was passed already. */
1751 if (DECL_INLINE (newdecl) && DECL_INITIAL (olddecl) == NULL_TREE)
1752 DECL_INLINE (olddecl) = 1;
1753 DECL_INLINE (newdecl) = DECL_INLINE (olddecl);
1755 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
1756 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
1759 /* Preserve abstractness on cloned [cd]tors. */
1760 DECL_ABSTRACT (newdecl) = DECL_ABSTRACT (olddecl);
1762 if (! types_match)
1764 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1765 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
1766 COPY_DECL_RTL (newdecl, olddecl);
1768 if (! types_match || new_defines_function)
1770 /* These need to be copied so that the names are available.
1771 Note that if the types do match, we'll preserve inline
1772 info and other bits, but if not, we won't. */
1773 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
1774 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
1776 if (new_defines_function)
1777 /* If defining a function declared with other language
1778 linkage, use the previously declared language linkage. */
1779 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1780 else if (types_match)
1782 /* If redeclaring a builtin function, and not a definition,
1783 it stays built in. */
1784 if (DECL_BUILT_IN (olddecl))
1786 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
1787 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
1788 /* If we're keeping the built-in definition, keep the rtl,
1789 regardless of declaration matches. */
1790 COPY_DECL_RTL (olddecl, newdecl);
1793 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
1794 /* Don't clear out the arguments if we're redefining a function. */
1795 if (DECL_ARGUMENTS (olddecl))
1796 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
1799 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1800 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
1802 /* Now preserve various other info from the definition. */
1803 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
1804 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
1805 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
1806 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1808 /* Warn about conflicting visibility specifications. */
1809 if (DECL_VISIBILITY_SPECIFIED (olddecl)
1810 && DECL_VISIBILITY_SPECIFIED (newdecl)
1811 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
1813 warning (OPT_Wattributes, "%q+D: visibility attribute ignored "
1814 "because it", newdecl);
1815 warning (OPT_Wattributes, "%Jconflicts with previous "
1816 "declaration here", olddecl);
1818 /* Choose the declaration which specified visibility. */
1819 if (DECL_VISIBILITY_SPECIFIED (olddecl))
1821 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
1822 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
1824 /* Init priority used to be merged from newdecl to olddecl by the memcpy,
1825 so keep this behavior. */
1826 if (TREE_CODE (newdecl) == VAR_DECL && DECL_HAS_INIT_PRIORITY_P (newdecl))
1828 SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
1829 DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
1832 /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
1833 with that from NEWDECL below. */
1834 if (DECL_LANG_SPECIFIC (olddecl))
1836 gcc_assert (DECL_LANG_SPECIFIC (olddecl)
1837 != DECL_LANG_SPECIFIC (newdecl));
1838 ggc_free (DECL_LANG_SPECIFIC (olddecl));
1841 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1843 int function_size;
1845 function_size = sizeof (struct tree_decl_common);
1847 memcpy ((char *) olddecl + sizeof (struct tree_common),
1848 (char *) newdecl + sizeof (struct tree_common),
1849 function_size - sizeof (struct tree_common));
1851 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
1852 (char *) newdecl + sizeof (struct tree_decl_common),
1853 sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
1854 if (DECL_TEMPLATE_INFO (newdecl))
1855 /* If newdecl is a template instantiation, it is possible that
1856 the following sequence of events has occurred:
1858 o A friend function was declared in a class template. The
1859 class template was instantiated.
1861 o The instantiation of the friend declaration was
1862 recorded on the instantiation list, and is newdecl.
1864 o Later, however, instantiate_class_template called pushdecl
1865 on the newdecl to perform name injection. But, pushdecl in
1866 turn called duplicate_decls when it discovered that another
1867 declaration of a global function with the same name already
1868 existed.
1870 o Here, in duplicate_decls, we decided to clobber newdecl.
1872 If we're going to do that, we'd better make sure that
1873 olddecl, and not newdecl, is on the list of
1874 instantiations so that if we try to do the instantiation
1875 again we won't get the clobbered declaration. */
1876 reregister_specialization (newdecl,
1877 DECL_TI_TEMPLATE (newdecl),
1878 olddecl);
1880 else
1882 size_t size = tree_code_size (TREE_CODE (olddecl));
1883 memcpy ((char *) olddecl + sizeof (struct tree_common),
1884 (char *) newdecl + sizeof (struct tree_common),
1885 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
1886 switch (TREE_CODE (olddecl))
1888 case LABEL_DECL:
1889 case VAR_DECL:
1890 case RESULT_DECL:
1891 case PARM_DECL:
1892 case FIELD_DECL:
1893 case TYPE_DECL:
1894 case CONST_DECL:
1896 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
1897 (char *) newdecl + sizeof (struct tree_decl_common),
1898 size - sizeof (struct tree_decl_common)
1899 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
1901 break;
1902 default:
1903 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
1904 (char *) newdecl + sizeof (struct tree_decl_common),
1905 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
1906 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
1907 break;
1910 DECL_UID (olddecl) = olddecl_uid;
1911 if (olddecl_friend)
1912 DECL_FRIEND_P (olddecl) = 1;
1913 if (hidden_friend)
1915 DECL_ANTICIPATED (olddecl) = 1;
1916 DECL_HIDDEN_FRIEND_P (olddecl) = 1;
1919 /* NEWDECL contains the merged attribute lists.
1920 Update OLDDECL to be the same. */
1921 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
1923 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
1924 so that encode_section_info has a chance to look at the new decl
1925 flags and attributes. */
1926 if (DECL_RTL_SET_P (olddecl)
1927 && (TREE_CODE (olddecl) == FUNCTION_DECL
1928 || (TREE_CODE (olddecl) == VAR_DECL
1929 && TREE_STATIC (olddecl))))
1930 make_decl_rtl (olddecl);
1932 /* The NEWDECL will no longer be needed. Because every out-of-class
1933 declaration of a member results in a call to duplicate_decls,
1934 freeing these nodes represents in a significant savings. */
1935 ggc_free (newdecl);
1937 return olddecl;
1940 /* Return zero if the declaration NEWDECL is valid
1941 when the declaration OLDDECL (assumed to be for the same name)
1942 has already been seen.
1943 Otherwise return an error message format string with a %s
1944 where the identifier should go. */
1946 static const char *
1947 redeclaration_error_message (tree newdecl, tree olddecl)
1949 if (TREE_CODE (newdecl) == TYPE_DECL)
1951 /* Because C++ can put things into name space for free,
1952 constructs like "typedef struct foo { ... } foo"
1953 would look like an erroneous redeclaration. */
1954 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
1955 return 0;
1956 else
1957 return "redefinition of %q#D";
1959 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1961 /* If this is a pure function, its olddecl will actually be
1962 the original initialization to `0' (which we force to call
1963 abort()). Don't complain about redefinition in this case. */
1964 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
1965 && DECL_INITIAL (olddecl) == NULL_TREE)
1966 return 0;
1968 /* If both functions come from different namespaces, this is not
1969 a redeclaration - this is a conflict with a used function. */
1970 if (DECL_NAMESPACE_SCOPE_P (olddecl)
1971 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
1972 && ! decls_match (olddecl, newdecl))
1973 return "%qD conflicts with used function";
1975 /* We'll complain about linkage mismatches in
1976 warn_extern_redeclared_static. */
1978 /* Defining the same name twice is no good. */
1979 if (DECL_INITIAL (olddecl) != NULL_TREE
1980 && DECL_INITIAL (newdecl) != NULL_TREE)
1982 if (DECL_NAME (olddecl) == NULL_TREE)
1983 return "%q#D not declared in class";
1984 else
1985 return "redefinition of %q#D";
1987 return 0;
1989 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1991 tree nt, ot;
1993 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1995 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
1996 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
1997 return "redefinition of %q#D";
1998 return NULL;
2001 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2002 || (DECL_TEMPLATE_RESULT (newdecl)
2003 == DECL_TEMPLATE_RESULT (olddecl)))
2004 return NULL;
2006 nt = DECL_TEMPLATE_RESULT (newdecl);
2007 if (DECL_TEMPLATE_INFO (nt))
2008 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2009 ot = DECL_TEMPLATE_RESULT (olddecl);
2010 if (DECL_TEMPLATE_INFO (ot))
2011 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2012 if (DECL_INITIAL (nt) && DECL_INITIAL (ot))
2013 return "redefinition of %q#D";
2015 return NULL;
2017 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2019 /* Objects declared at top level: */
2020 /* If at least one is a reference, it's ok. */
2021 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2022 return 0;
2023 /* Reject two definitions. */
2024 return "redefinition of %q#D";
2026 else
2028 /* Objects declared with block scope: */
2029 /* Reject two definitions, and reject a definition
2030 together with an external reference. */
2031 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
2032 return "redeclaration of %q#D";
2033 return 0;
2037 /* Create a new label, named ID. */
2039 static tree
2040 make_label_decl (tree id, int local_p)
2042 tree decl;
2044 decl = build_decl (LABEL_DECL, id, void_type_node);
2046 DECL_CONTEXT (decl) = current_function_decl;
2047 DECL_MODE (decl) = VOIDmode;
2048 C_DECLARED_LABEL_FLAG (decl) = local_p;
2050 /* Say where one reference is to the label, for the sake of the
2051 error if it is not defined. */
2052 DECL_SOURCE_LOCATION (decl) = input_location;
2054 /* Record the fact that this identifier is bound to this label. */
2055 SET_IDENTIFIER_LABEL_VALUE (id, decl);
2057 return decl;
2060 /* Record this label on the list of used labels so that we can check
2061 at the end of the function to see whether or not the label was
2062 actually defined, and so we can check when the label is defined whether
2063 this use is valid. */
2065 static void
2066 use_label (tree decl)
2068 if (named_label_uses == NULL
2069 || named_label_uses->names_in_scope != current_binding_level->names
2070 || named_label_uses->label_decl != decl)
2072 struct named_label_use_list *new_ent;
2073 new_ent = GGC_NEW (struct named_label_use_list);
2074 new_ent->label_decl = decl;
2075 new_ent->names_in_scope = current_binding_level->names;
2076 new_ent->binding_level = current_binding_level;
2077 new_ent->o_goto_locus = input_location;
2078 new_ent->next = named_label_uses;
2079 named_label_uses = new_ent;
2083 /* Look for a label named ID in the current function. If one cannot
2084 be found, create one. (We keep track of used, but undefined,
2085 labels, and complain about them at the end of a function.) */
2087 tree
2088 lookup_label (tree id)
2090 tree decl;
2091 struct named_label_list *ent;
2093 timevar_push (TV_NAME_LOOKUP);
2094 /* You can't use labels at global scope. */
2095 if (current_function_decl == NULL_TREE)
2097 error ("label %qE referenced outside of any function", id);
2098 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2101 /* See if we've already got this label. */
2102 decl = IDENTIFIER_LABEL_VALUE (id);
2103 if (decl != NULL_TREE && DECL_CONTEXT (decl) == current_function_decl)
2104 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2106 /* Record this label on the list of labels used in this function.
2107 We do this before calling make_label_decl so that we get the
2108 IDENTIFIER_LABEL_VALUE before the new label is declared. */
2109 ent = GGC_CNEW (struct named_label_list);
2110 ent->old_value = IDENTIFIER_LABEL_VALUE (id);
2111 ent->next = named_labels;
2112 named_labels = ent;
2114 /* We need a new label. */
2115 decl = make_label_decl (id, /*local_p=*/0);
2117 /* Now fill in the information we didn't have before. */
2118 ent->label_decl = decl;
2120 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2123 /* Declare a local label named ID. */
2125 tree
2126 declare_local_label (tree id)
2128 tree decl;
2130 /* Add a new entry to the SHADOWED_LABELS list so that when we leave
2131 this scope we can restore the old value of
2132 IDENTIFIER_TYPE_VALUE. */
2133 current_binding_level->shadowed_labels
2134 = tree_cons (IDENTIFIER_LABEL_VALUE (id), NULL_TREE,
2135 current_binding_level->shadowed_labels);
2136 /* Look for the label. */
2137 decl = make_label_decl (id, /*local_p=*/1);
2138 /* Now fill in the information we didn't have before. */
2139 TREE_VALUE (current_binding_level->shadowed_labels) = decl;
2141 return decl;
2144 /* Returns nonzero if it is ill-formed to jump past the declaration of
2145 DECL. Returns 2 if it's also a real problem. */
2147 static int
2148 decl_jump_unsafe (tree decl)
2150 if (TREE_CODE (decl) != VAR_DECL || TREE_STATIC (decl)
2151 || TREE_TYPE (decl) == error_mark_node)
2152 return 0;
2154 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl))
2155 || DECL_NONTRIVIALLY_INITIALIZED_P (decl))
2156 return 2;
2158 if (pod_type_p (TREE_TYPE (decl)))
2159 return 0;
2161 /* The POD stuff is just pedantry; why should it matter if the class
2162 contains a field of pointer to member type? */
2163 return 1;
2166 /* Check that a single previously seen jump to a newly defined label
2167 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
2168 the jump context; NAMES are the names in scope in LEVEL at the jump
2169 context; FILE and LINE are the source position of the jump or 0. */
2171 static void
2172 check_previous_goto_1 (tree decl,
2173 struct cp_binding_level* level,
2174 tree names, const location_t *locus)
2176 int identified = 0;
2177 int saw_eh = 0;
2178 struct cp_binding_level *b = current_binding_level;
2179 for (; b; b = b->level_chain)
2181 tree new_decls = b->names;
2182 tree old_decls = (b == level ? names : NULL_TREE);
2183 for (; new_decls != old_decls;
2184 new_decls = TREE_CHAIN (new_decls))
2186 int problem = decl_jump_unsafe (new_decls);
2187 if (! problem)
2188 continue;
2190 if (! identified)
2192 if (decl)
2193 pedwarn ("jump to label %qD", decl);
2194 else
2195 pedwarn ("jump to case label");
2197 if (locus)
2198 pedwarn ("%H from here", locus);
2199 identified = 1;
2202 if (problem > 1)
2203 error (" crosses initialization of %q+#D", new_decls);
2204 else
2205 pedwarn (" enters scope of non-POD %q+#D", new_decls);
2208 if (b == level)
2209 break;
2210 if ((b->kind == sk_try || b->kind == sk_catch) && ! saw_eh)
2212 if (! identified)
2214 if (decl)
2215 pedwarn ("jump to label %qD", decl);
2216 else
2217 pedwarn ("jump to case label");
2219 if (locus)
2220 pedwarn ("%H from here", locus);
2221 identified = 1;
2223 if (b->kind == sk_try)
2224 error (" enters try block");
2225 else
2226 error (" enters catch block");
2227 saw_eh = 1;
2232 static void
2233 check_previous_goto (struct named_label_use_list* use)
2235 check_previous_goto_1 (use->label_decl, use->binding_level,
2236 use->names_in_scope, &use->o_goto_locus);
2239 static void
2240 check_switch_goto (struct cp_binding_level* level)
2242 check_previous_goto_1 (NULL_TREE, level, level->names, NULL);
2245 /* Check that any previously seen jumps to a newly defined label DECL
2246 are OK. Called by define_label. */
2248 static void
2249 check_previous_gotos (tree decl)
2251 struct named_label_use_list **usep;
2253 if (! TREE_USED (decl))
2254 return;
2256 for (usep = &named_label_uses; *usep; )
2258 struct named_label_use_list *use = *usep;
2259 if (use->label_decl == decl)
2261 check_previous_goto (use);
2262 *usep = use->next;
2264 else
2265 usep = &(use->next);
2269 /* Check that a new jump to a label DECL is OK. Called by
2270 finish_goto_stmt. */
2272 void
2273 check_goto (tree decl)
2275 int identified = 0;
2276 tree bad;
2277 struct named_label_list *lab;
2279 /* We can't know where a computed goto is jumping. So we assume
2280 that it's OK. */
2281 if (! DECL_P (decl))
2282 return;
2284 /* If the label hasn't been defined yet, defer checking. */
2285 if (! DECL_INITIAL (decl))
2287 use_label (decl);
2288 return;
2291 for (lab = named_labels; lab; lab = lab->next)
2292 if (decl == lab->label_decl)
2293 break;
2295 /* If the label is not on named_labels it's a gcc local label, so
2296 it must be in an outer scope, so jumping to it is always OK. */
2297 if (lab == 0)
2298 return;
2300 if ((lab->in_try_scope || lab->in_catch_scope || lab->bad_decls)
2301 && !identified)
2303 pedwarn ("jump to label %q+D", decl);
2304 pedwarn (" from here");
2305 identified = 1;
2308 for (bad = lab->bad_decls; bad; bad = TREE_CHAIN (bad))
2310 tree b = TREE_VALUE (bad);
2311 int u = decl_jump_unsafe (b);
2313 if (u > 1 && DECL_ARTIFICIAL (b))
2314 /* Can't skip init of __exception_info. */
2315 error ("%J enters catch block", b);
2316 else if (u > 1)
2317 error (" skips initialization of %q+#D", b);
2318 else
2319 pedwarn (" enters scope of non-POD %q+#D", b);
2322 if (lab->in_try_scope)
2323 error (" enters try block");
2324 else if (lab->in_catch_scope)
2325 error (" enters catch block");
2328 /* Define a label, specifying the location in the source file.
2329 Return the LABEL_DECL node for the label. */
2331 tree
2332 define_label (location_t location, tree name)
2334 tree decl = lookup_label (name);
2335 struct named_label_list *ent;
2336 struct cp_binding_level *p;
2338 timevar_push (TV_NAME_LOOKUP);
2339 for (ent = named_labels; ent; ent = ent->next)
2340 if (ent->label_decl == decl)
2341 break;
2343 /* After labels, make any new cleanups in the function go into their
2344 own new (temporary) binding contour. */
2345 for (p = current_binding_level;
2346 p->kind != sk_function_parms;
2347 p = p->level_chain)
2348 p->more_cleanups_ok = 0;
2350 if (name == get_identifier ("wchar_t"))
2351 pedwarn ("label named wchar_t");
2353 if (DECL_INITIAL (decl) != NULL_TREE)
2354 error ("duplicate label %qD", decl);
2355 else
2357 /* Mark label as having been defined. */
2358 DECL_INITIAL (decl) = error_mark_node;
2359 /* Say where in the source. */
2360 DECL_SOURCE_LOCATION (decl) = location;
2361 if (ent)
2363 ent->names_in_scope = current_binding_level->names;
2364 ent->binding_level = current_binding_level;
2366 check_previous_gotos (decl);
2369 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2372 struct cp_switch
2374 struct cp_binding_level *level;
2375 struct cp_switch *next;
2376 /* The SWITCH_STMT being built. */
2377 tree switch_stmt;
2378 /* A splay-tree mapping the low element of a case range to the high
2379 element, or NULL_TREE if there is no high element. Used to
2380 determine whether or not a new case label duplicates an old case
2381 label. We need a tree, rather than simply a hash table, because
2382 of the GNU case range extension. */
2383 splay_tree cases;
2386 /* A stack of the currently active switch statements. The innermost
2387 switch statement is on the top of the stack. There is no need to
2388 mark the stack for garbage collection because it is only active
2389 during the processing of the body of a function, and we never
2390 collect at that point. */
2392 static struct cp_switch *switch_stack;
2394 /* Called right after a switch-statement condition is parsed.
2395 SWITCH_STMT is the switch statement being parsed. */
2397 void
2398 push_switch (tree switch_stmt)
2400 struct cp_switch *p = xmalloc (sizeof (struct cp_switch));
2401 p->level = current_binding_level;
2402 p->next = switch_stack;
2403 p->switch_stmt = switch_stmt;
2404 p->cases = splay_tree_new (case_compare, NULL, NULL);
2405 switch_stack = p;
2408 void
2409 pop_switch (void)
2411 struct cp_switch *cs = switch_stack;
2412 location_t switch_location;
2414 /* Emit warnings as needed. */
2415 if (EXPR_HAS_LOCATION (cs->switch_stmt))
2416 switch_location = EXPR_LOCATION (cs->switch_stmt);
2417 else
2418 switch_location = input_location;
2419 if (!processing_template_decl)
2420 c_do_switch_warnings (cs->cases, switch_location,
2421 SWITCH_STMT_TYPE (cs->switch_stmt),
2422 SWITCH_STMT_COND (cs->switch_stmt));
2424 splay_tree_delete (cs->cases);
2425 switch_stack = switch_stack->next;
2426 free (cs);
2429 /* Note that we've seen a definition of a case label, and complain if this
2430 is a bad place for one. */
2432 tree
2433 finish_case_label (tree low_value, tree high_value)
2435 tree cond, r;
2436 struct cp_binding_level *p;
2438 if (processing_template_decl)
2440 tree label;
2442 /* For templates, just add the case label; we'll do semantic
2443 analysis at instantiation-time. */
2444 label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
2445 return add_stmt (build_case_label (low_value, high_value, label));
2448 /* Find the condition on which this switch statement depends. */
2449 cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
2450 if (cond && TREE_CODE (cond) == TREE_LIST)
2451 cond = TREE_VALUE (cond);
2453 r = c_add_case_label (switch_stack->cases, cond, TREE_TYPE (cond),
2454 low_value, high_value);
2456 check_switch_goto (switch_stack->level);
2458 /* After labels, make any new cleanups in the function go into their
2459 own new (temporary) binding contour. */
2460 for (p = current_binding_level;
2461 p->kind != sk_function_parms;
2462 p = p->level_chain)
2463 p->more_cleanups_ok = 0;
2465 return r;
2468 /* Hash a TYPENAME_TYPE. K is really of type `tree'. */
2470 static hashval_t
2471 typename_hash (const void* k)
2473 hashval_t hash;
2474 tree t = (tree) k;
2476 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
2477 ^ htab_hash_pointer (DECL_NAME (TYPE_NAME (t))));
2479 return hash;
2482 typedef struct typename_info {
2483 tree scope;
2484 tree name;
2485 tree template_id;
2486 bool enum_p;
2487 bool class_p;
2488 } typename_info;
2490 /* Compare two TYPENAME_TYPEs. K1 and K2 are really of type `tree'. */
2492 static int
2493 typename_compare (const void * k1, const void * k2)
2495 tree t1;
2496 const typename_info *t2;
2498 t1 = (tree) k1;
2499 t2 = (const typename_info *) k2;
2501 return (DECL_NAME (TYPE_NAME (t1)) == t2->name
2502 && TYPE_CONTEXT (t1) == t2->scope
2503 && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
2504 && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
2505 && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
2508 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
2509 the type of `T', NAME is the IDENTIFIER_NODE for `t'.
2511 Returns the new TYPENAME_TYPE. */
2513 static GTY ((param_is (union tree_node))) htab_t typename_htab;
2515 static tree
2516 build_typename_type (tree context, tree name, tree fullname,
2517 enum tag_types tag_type)
2519 tree t;
2520 tree d;
2521 typename_info ti;
2522 void **e;
2523 hashval_t hash;
2525 if (typename_htab == NULL)
2526 typename_htab = htab_create_ggc (61, &typename_hash,
2527 &typename_compare, NULL);
2529 ti.scope = FROB_CONTEXT (context);
2530 ti.name = name;
2531 ti.template_id = fullname;
2532 ti.enum_p = tag_type == enum_type;
2533 ti.class_p = (tag_type == class_type
2534 || tag_type == record_type
2535 || tag_type == union_type);
2536 hash = (htab_hash_pointer (ti.scope)
2537 ^ htab_hash_pointer (ti.name));
2539 /* See if we already have this type. */
2540 e = htab_find_slot_with_hash (typename_htab, &ti, hash, INSERT);
2541 if (*e)
2542 t = (tree) *e;
2543 else
2545 /* Build the TYPENAME_TYPE. */
2546 t = make_aggr_type (TYPENAME_TYPE);
2547 TYPE_CONTEXT (t) = ti.scope;
2548 TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
2549 TYPENAME_IS_ENUM_P (t) = ti.enum_p;
2550 TYPENAME_IS_CLASS_P (t) = ti.class_p;
2552 /* Build the corresponding TYPE_DECL. */
2553 d = build_decl (TYPE_DECL, name, t);
2554 TYPE_NAME (TREE_TYPE (d)) = d;
2555 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
2556 DECL_CONTEXT (d) = FROB_CONTEXT (context);
2557 DECL_ARTIFICIAL (d) = 1;
2559 /* Store it in the hash table. */
2560 *e = t;
2563 return t;
2566 /* Resolve `typename CONTEXT::NAME'. TAG_TYPE indicates the tag
2567 provided to name the type. Returns an appropriate type, unless an
2568 error occurs, in which case error_mark_node is returned. If we
2569 locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
2570 return that, rather than the _TYPE it corresponds to, in other
2571 cases we look through the type decl. If TF_ERROR is set, complain
2572 about errors, otherwise be quiet. */
2574 tree
2575 make_typename_type (tree context, tree name, enum tag_types tag_type,
2576 tsubst_flags_t complain)
2578 tree fullname;
2580 if (name == error_mark_node
2581 || context == NULL_TREE
2582 || context == error_mark_node)
2583 return error_mark_node;
2585 if (TYPE_P (name))
2587 if (!(TYPE_LANG_SPECIFIC (name)
2588 && (CLASSTYPE_IS_TEMPLATE (name)
2589 || CLASSTYPE_USE_TEMPLATE (name))))
2590 name = TYPE_IDENTIFIER (name);
2591 else
2592 /* Create a TEMPLATE_ID_EXPR for the type. */
2593 name = build_nt (TEMPLATE_ID_EXPR,
2594 CLASSTYPE_TI_TEMPLATE (name),
2595 CLASSTYPE_TI_ARGS (name));
2597 else if (TREE_CODE (name) == TYPE_DECL)
2598 name = DECL_NAME (name);
2600 fullname = name;
2602 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
2604 name = TREE_OPERAND (name, 0);
2605 if (TREE_CODE (name) == TEMPLATE_DECL)
2606 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
2608 if (TREE_CODE (name) == TEMPLATE_DECL)
2610 error ("%qD used without template parameters", name);
2611 return error_mark_node;
2613 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
2614 gcc_assert (TYPE_P (context));
2616 if (!dependent_type_p (context)
2617 || currently_open_class (context))
2619 if (TREE_CODE (fullname) == TEMPLATE_ID_EXPR)
2621 tree tmpl = NULL_TREE;
2622 if (IS_AGGR_TYPE (context))
2623 tmpl = lookup_field (context, name, 0, false);
2624 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
2626 if (complain & tf_error)
2627 error ("no class template named %q#T in %q#T",
2628 name, context);
2629 return error_mark_node;
2632 if (complain & tf_error)
2633 perform_or_defer_access_check (TYPE_BINFO (context), tmpl);
2635 return lookup_template_class (tmpl,
2636 TREE_OPERAND (fullname, 1),
2637 NULL_TREE, context,
2638 /*entering_scope=*/0,
2639 tf_error | tf_warning | tf_user);
2641 else
2643 tree t;
2645 if (!IS_AGGR_TYPE (context))
2647 if (complain & tf_error)
2648 error ("no type named %q#T in %q#T", name, context);
2649 return error_mark_node;
2652 t = lookup_field (context, name, 0, true);
2653 if (t)
2655 if (TREE_CODE (t) != TYPE_DECL)
2657 if (complain & tf_error)
2658 error ("no type named %q#T in %q#T", name, context);
2659 return error_mark_node;
2662 if (complain & tf_error)
2663 perform_or_defer_access_check (TYPE_BINFO (context), t);
2665 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
2666 t = TREE_TYPE (t);
2668 return t;
2673 /* If the CONTEXT is not a template type, then either the field is
2674 there now or its never going to be. */
2675 if (!dependent_type_p (context))
2677 if (complain & tf_error)
2678 error ("no type named %q#T in %q#T", name, context);
2679 return error_mark_node;
2682 return build_typename_type (context, name, fullname, tag_type);
2685 /* Resolve `CONTEXT::template NAME'. Returns a TEMPLATE_DECL if the name
2686 can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
2687 in which case error_mark_node is returned.
2689 If PARM_LIST is non-NULL, also make sure that the template parameter
2690 list of TEMPLATE_DECL matches.
2692 If COMPLAIN zero, don't complain about any errors that occur. */
2694 tree
2695 make_unbound_class_template (tree context, tree name, tree parm_list,
2696 tsubst_flags_t complain)
2698 tree t;
2699 tree d;
2701 if (TYPE_P (name))
2702 name = TYPE_IDENTIFIER (name);
2703 else if (DECL_P (name))
2704 name = DECL_NAME (name);
2705 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
2707 if (!dependent_type_p (context)
2708 || currently_open_class (context))
2710 tree tmpl = NULL_TREE;
2712 if (IS_AGGR_TYPE (context))
2713 tmpl = lookup_field (context, name, 0, false);
2715 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
2717 if (complain & tf_error)
2718 error ("no class template named %q#T in %q#T", name, context);
2719 return error_mark_node;
2722 if (parm_list
2723 && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
2725 if (complain & tf_error)
2727 error ("template parameters do not match template");
2728 error ("%q+D declared here", tmpl);
2730 return error_mark_node;
2733 if (complain & tf_error)
2734 perform_or_defer_access_check (TYPE_BINFO (context), tmpl);
2736 return tmpl;
2739 /* Build the UNBOUND_CLASS_TEMPLATE. */
2740 t = make_aggr_type (UNBOUND_CLASS_TEMPLATE);
2741 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
2742 TREE_TYPE (t) = NULL_TREE;
2744 /* Build the corresponding TEMPLATE_DECL. */
2745 d = build_decl (TEMPLATE_DECL, name, t);
2746 TYPE_NAME (TREE_TYPE (d)) = d;
2747 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
2748 DECL_CONTEXT (d) = FROB_CONTEXT (context);
2749 DECL_ARTIFICIAL (d) = 1;
2750 DECL_TEMPLATE_PARMS (d) = parm_list;
2752 return t;
2757 /* Push the declarations of builtin types into the namespace.
2758 RID_INDEX is the index of the builtin type in the array
2759 RID_POINTERS. NAME is the name used when looking up the builtin
2760 type. TYPE is the _TYPE node for the builtin type. */
2762 void
2763 record_builtin_type (enum rid rid_index,
2764 const char* name,
2765 tree type)
2767 tree rname = NULL_TREE, tname = NULL_TREE;
2768 tree tdecl = NULL_TREE;
2770 if ((int) rid_index < (int) RID_MAX)
2771 rname = ridpointers[(int) rid_index];
2772 if (name)
2773 tname = get_identifier (name);
2775 /* The calls to SET_IDENTIFIER_GLOBAL_VALUE below should be
2776 eliminated. Built-in types should not be looked up name; their
2777 names are keywords that the parser can recognize. However, there
2778 is code in c-common.c that uses identifier_global_value to look
2779 up built-in types by name. */
2780 if (tname)
2782 tdecl = build_decl (TYPE_DECL, tname, type);
2783 DECL_ARTIFICIAL (tdecl) = 1;
2784 SET_IDENTIFIER_GLOBAL_VALUE (tname, tdecl);
2786 if (rname)
2788 if (!tdecl)
2790 tdecl = build_decl (TYPE_DECL, rname, type);
2791 DECL_ARTIFICIAL (tdecl) = 1;
2793 SET_IDENTIFIER_GLOBAL_VALUE (rname, tdecl);
2796 if (!TYPE_NAME (type))
2797 TYPE_NAME (type) = tdecl;
2799 if (tdecl)
2800 debug_hooks->type_decl (tdecl, 0);
2803 /* Record one of the standard Java types.
2804 * Declare it as having the given NAME.
2805 * If SIZE > 0, it is the size of one of the integral types;
2806 * otherwise it is the negative of the size of one of the other types. */
2808 static tree
2809 record_builtin_java_type (const char* name, int size)
2811 tree type, decl;
2812 if (size > 0)
2813 type = make_signed_type (size);
2814 else if (size > -32)
2815 { /* "__java_char" or ""__java_boolean". */
2816 type = make_unsigned_type (-size);
2817 /*if (size == -1) TREE_SET_CODE (type, BOOLEAN_TYPE);*/
2819 else
2820 { /* "__java_float" or ""__java_double". */
2821 type = make_node (REAL_TYPE);
2822 TYPE_PRECISION (type) = - size;
2823 layout_type (type);
2825 record_builtin_type (RID_MAX, name, type);
2826 decl = TYPE_NAME (type);
2828 /* Suppress generate debug symbol entries for these types,
2829 since for normal C++ they are just clutter.
2830 However, push_lang_context undoes this if extern "Java" is seen. */
2831 DECL_IGNORED_P (decl) = 1;
2833 TYPE_FOR_JAVA (type) = 1;
2834 return type;
2837 /* Push a type into the namespace so that the back-ends ignore it. */
2839 static void
2840 record_unknown_type (tree type, const char* name)
2842 tree decl = pushdecl (build_decl (TYPE_DECL, get_identifier (name), type));
2843 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
2844 DECL_IGNORED_P (decl) = 1;
2845 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
2846 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
2847 TYPE_ALIGN (type) = 1;
2848 TYPE_USER_ALIGN (type) = 0;
2849 TYPE_MODE (type) = TYPE_MODE (void_type_node);
2852 /* A string for which we should create an IDENTIFIER_NODE at
2853 startup. */
2855 typedef struct predefined_identifier
2857 /* The name of the identifier. */
2858 const char *const name;
2859 /* The place where the IDENTIFIER_NODE should be stored. */
2860 tree *const node;
2861 /* Nonzero if this is the name of a constructor or destructor. */
2862 const int ctor_or_dtor_p;
2863 } predefined_identifier;
2865 /* Create all the predefined identifiers. */
2867 static void
2868 initialize_predefined_identifiers (void)
2870 const predefined_identifier *pid;
2872 /* A table of identifiers to create at startup. */
2873 static const predefined_identifier predefined_identifiers[] = {
2874 { "C++", &lang_name_cplusplus, 0 },
2875 { "C", &lang_name_c, 0 },
2876 { "Java", &lang_name_java, 0 },
2877 /* Some of these names have a trailing space so that it is
2878 impossible for them to conflict with names written by users. */
2879 { "__ct ", &ctor_identifier, 1 },
2880 { "__base_ctor ", &base_ctor_identifier, 1 },
2881 { "__comp_ctor ", &complete_ctor_identifier, 1 },
2882 { "__dt ", &dtor_identifier, 1 },
2883 { "__comp_dtor ", &complete_dtor_identifier, 1 },
2884 { "__base_dtor ", &base_dtor_identifier, 1 },
2885 { "__deleting_dtor ", &deleting_dtor_identifier, 1 },
2886 { IN_CHARGE_NAME, &in_charge_identifier, 0 },
2887 { "nelts", &nelts_identifier, 0 },
2888 { THIS_NAME, &this_identifier, 0 },
2889 { VTABLE_DELTA_NAME, &delta_identifier, 0 },
2890 { VTABLE_PFN_NAME, &pfn_identifier, 0 },
2891 { "_vptr", &vptr_identifier, 0 },
2892 { "__vtt_parm", &vtt_parm_identifier, 0 },
2893 { "::", &global_scope_name, 0 },
2894 { "std", &std_identifier, 0 },
2895 { NULL, NULL, 0 }
2898 for (pid = predefined_identifiers; pid->name; ++pid)
2900 *pid->node = get_identifier (pid->name);
2901 if (pid->ctor_or_dtor_p)
2902 IDENTIFIER_CTOR_OR_DTOR_P (*pid->node) = 1;
2906 /* Create the predefined scalar types of C,
2907 and some nodes representing standard constants (0, 1, (void *)0).
2908 Initialize the global binding level.
2909 Make definitions for built-in primitive functions. */
2911 void
2912 cxx_init_decl_processing (void)
2914 tree void_ftype;
2915 tree void_ftype_ptr;
2917 build_common_tree_nodes (flag_signed_char, false);
2919 /* Create all the identifiers we need. */
2920 initialize_predefined_identifiers ();
2922 /* Create the global variables. */
2923 push_to_top_level ();
2925 current_function_decl = NULL_TREE;
2926 current_binding_level = NULL;
2927 /* Enter the global namespace. */
2928 gcc_assert (global_namespace == NULL_TREE);
2929 global_namespace = build_lang_decl (NAMESPACE_DECL, global_scope_name,
2930 void_type_node);
2931 begin_scope (sk_namespace, global_namespace);
2933 current_lang_name = NULL_TREE;
2935 /* Adjust various flags based on command-line settings. */
2936 if (!flag_permissive)
2937 flag_pedantic_errors = 1;
2938 if (!flag_no_inline)
2940 flag_inline_trees = 1;
2941 flag_no_inline = 1;
2943 if (flag_inline_functions)
2944 flag_inline_trees = 2;
2946 /* Force minimum function alignment if using the least significant
2947 bit of function pointers to store the virtual bit. */
2948 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
2949 && force_align_functions_log < 1)
2950 force_align_functions_log = 1;
2952 /* Initially, C. */
2953 current_lang_name = lang_name_c;
2955 error_mark_list = build_tree_list (error_mark_node, error_mark_node);
2956 TREE_TYPE (error_mark_list) = error_mark_node;
2958 /* Create the `std' namespace. */
2959 push_namespace (std_identifier);
2960 std_node = current_namespace;
2961 pop_namespace ();
2963 c_common_nodes_and_builtins ();
2965 java_byte_type_node = record_builtin_java_type ("__java_byte", 8);
2966 java_short_type_node = record_builtin_java_type ("__java_short", 16);
2967 java_int_type_node = record_builtin_java_type ("__java_int", 32);
2968 java_long_type_node = record_builtin_java_type ("__java_long", 64);
2969 java_float_type_node = record_builtin_java_type ("__java_float", -32);
2970 java_double_type_node = record_builtin_java_type ("__java_double", -64);
2971 java_char_type_node = record_builtin_java_type ("__java_char", -16);
2972 java_boolean_type_node = record_builtin_java_type ("__java_boolean", -1);
2974 integer_two_node = build_int_cst (NULL_TREE, 2);
2975 integer_three_node = build_int_cst (NULL_TREE, 3);
2977 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
2978 truthvalue_type_node = boolean_type_node;
2979 truthvalue_false_node = boolean_false_node;
2980 truthvalue_true_node = boolean_true_node;
2982 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
2984 #if 0
2985 record_builtin_type (RID_MAX, NULL, string_type_node);
2986 #endif
2988 delta_type_node = ptrdiff_type_node;
2989 vtable_index_type = ptrdiff_type_node;
2991 vtt_parm_type = build_pointer_type (const_ptr_type_node);
2992 void_ftype = build_function_type (void_type_node, void_list_node);
2993 void_ftype_ptr = build_function_type (void_type_node,
2994 tree_cons (NULL_TREE,
2995 ptr_type_node,
2996 void_list_node));
2997 void_ftype_ptr
2998 = build_exception_variant (void_ftype_ptr, empty_except_spec);
3000 /* C++ extensions */
3002 unknown_type_node = make_node (UNKNOWN_TYPE);
3003 record_unknown_type (unknown_type_node, "unknown type");
3005 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
3006 TREE_TYPE (unknown_type_node) = unknown_type_node;
3008 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
3009 result. */
3010 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
3011 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
3014 /* Make sure we get a unique function type, so we can give
3015 its pointer type a name. (This wins for gdb.) */
3016 tree vfunc_type = make_node (FUNCTION_TYPE);
3017 TREE_TYPE (vfunc_type) = integer_type_node;
3018 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
3019 layout_type (vfunc_type);
3021 vtable_entry_type = build_pointer_type (vfunc_type);
3023 record_builtin_type (RID_MAX, VTBL_PTR_TYPE, vtable_entry_type);
3025 vtbl_type_node
3026 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
3027 layout_type (vtbl_type_node);
3028 vtbl_type_node = build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
3029 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
3030 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
3031 layout_type (vtbl_ptr_type_node);
3032 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
3034 push_namespace (get_identifier ("__cxxabiv1"));
3035 abi_node = current_namespace;
3036 pop_namespace ();
3038 global_type_node = make_node (LANG_TYPE);
3039 record_unknown_type (global_type_node, "global type");
3041 /* Now, C++. */
3042 current_lang_name = lang_name_cplusplus;
3045 tree bad_alloc_id;
3046 tree bad_alloc_type_node;
3047 tree bad_alloc_decl;
3048 tree newtype, deltype;
3049 tree ptr_ftype_sizetype;
3051 push_namespace (std_identifier);
3052 bad_alloc_id = get_identifier ("bad_alloc");
3053 bad_alloc_type_node = make_aggr_type (RECORD_TYPE);
3054 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
3055 bad_alloc_decl
3056 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
3057 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
3058 TYPE_STUB_DECL (bad_alloc_type_node) = bad_alloc_decl;
3059 pop_namespace ();
3061 ptr_ftype_sizetype
3062 = build_function_type (ptr_type_node,
3063 tree_cons (NULL_TREE,
3064 size_type_node,
3065 void_list_node));
3066 newtype = build_exception_variant
3067 (ptr_ftype_sizetype, add_exception_specifier
3068 (NULL_TREE, bad_alloc_type_node, -1));
3069 deltype = build_exception_variant (void_ftype_ptr, empty_except_spec);
3070 push_cp_library_fn (NEW_EXPR, newtype);
3071 push_cp_library_fn (VEC_NEW_EXPR, newtype);
3072 global_delete_fndecl = push_cp_library_fn (DELETE_EXPR, deltype);
3073 push_cp_library_fn (VEC_DELETE_EXPR, deltype);
3076 abort_fndecl
3077 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype);
3079 /* Perform other language dependent initializations. */
3080 init_class_processing ();
3081 init_rtti_processing ();
3083 if (flag_exceptions)
3084 init_exception_processing ();
3086 if (! supports_one_only ())
3087 flag_weak = 0;
3089 make_fname_decl = cp_make_fname_decl;
3090 start_fname_decls ();
3092 /* Show we use EH for cleanups. */
3093 if (flag_exceptions)
3094 using_eh_for_cleanups ();
3097 /* Generate an initializer for a function naming variable from
3098 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
3099 filled in with the type of the init. */
3101 tree
3102 cp_fname_init (const char* name, tree *type_p)
3104 tree domain = NULL_TREE;
3105 tree type;
3106 tree init = NULL_TREE;
3107 size_t length = 0;
3109 if (name)
3111 length = strlen (name);
3112 domain = build_index_type (size_int (length));
3113 init = build_string (length + 1, name);
3116 type = build_qualified_type (char_type_node, TYPE_QUAL_CONST);
3117 type = build_cplus_array_type (type, domain);
3119 *type_p = type;
3121 if (init)
3122 TREE_TYPE (init) = type;
3123 else
3124 init = error_mark_node;
3126 return init;
3129 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
3130 decl, NAME is the initialization string and TYPE_DEP indicates whether
3131 NAME depended on the type of the function. We make use of that to detect
3132 __PRETTY_FUNCTION__ inside a template fn. This is being done
3133 lazily at the point of first use, so we mustn't push the decl now. */
3135 static tree
3136 cp_make_fname_decl (tree id, int type_dep)
3138 const char *const name = (type_dep && processing_template_decl
3139 ? NULL : fname_as_string (type_dep));
3140 tree type;
3141 tree init = cp_fname_init (name, &type);
3142 tree decl = build_decl (VAR_DECL, id, type);
3144 if (name)
3145 free ((char *) name);
3147 /* As we're using pushdecl_with_scope, we must set the context. */
3148 DECL_CONTEXT (decl) = current_function_decl;
3149 DECL_PRETTY_FUNCTION_P (decl) = type_dep;
3151 TREE_STATIC (decl) = 1;
3152 TREE_READONLY (decl) = 1;
3153 DECL_ARTIFICIAL (decl) = 1;
3154 DECL_INITIAL (decl) = init;
3156 TREE_USED (decl) = 1;
3158 if (current_function_decl)
3160 struct cp_binding_level *b = current_binding_level;
3161 while (b->level_chain->kind != sk_function_parms)
3162 b = b->level_chain;
3163 pushdecl_with_scope (decl, b, /*is_friend=*/false);
3164 cp_finish_decl (decl, init, NULL_TREE, LOOKUP_ONLYCONVERTING);
3166 else
3167 pushdecl_top_level_and_finish (decl, init);
3169 return decl;
3172 /* Make a definition for a builtin function named NAME in the current
3173 namespace, whose data type is TYPE and whose context is CONTEXT.
3174 TYPE should be a function type with argument types.
3176 CLASS and CODE tell later passes how to compile calls to this function.
3177 See tree.h for possible values.
3179 If LIBNAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3180 the name to be called if we can't opencode the function.
3181 If ATTRS is nonzero, use that for the function's attribute
3182 list. */
3184 static tree
3185 builtin_function_1 (const char* name,
3186 tree type,
3187 tree context,
3188 enum built_in_function code,
3189 enum built_in_class class,
3190 const char* libname,
3191 tree attrs)
3193 tree decl = build_library_fn_1 (get_identifier (name), ERROR_MARK, type);
3194 DECL_BUILT_IN_CLASS (decl) = class;
3195 DECL_FUNCTION_CODE (decl) = code;
3196 DECL_CONTEXT (decl) = context;
3198 pushdecl (decl);
3200 /* Since `pushdecl' relies on DECL_ASSEMBLER_NAME instead of DECL_NAME,
3201 we cannot change DECL_ASSEMBLER_NAME until we have installed this
3202 function in the namespace. */
3203 if (libname)
3204 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (libname));
3206 /* A function in the user's namespace should have an explicit
3207 declaration before it is used. Mark the built-in function as
3208 anticipated but not actually declared. */
3209 if (name[0] != '_' || name[1] != '_')
3210 DECL_ANTICIPATED (decl) = 1;
3212 /* Possibly apply some default attributes to this built-in function. */
3213 if (attrs)
3214 decl_attributes (&decl, attrs, ATTR_FLAG_BUILT_IN);
3215 else
3216 decl_attributes (&decl, NULL_TREE, 0);
3218 return decl;
3221 /* Entry point for the benefit of c_common_nodes_and_builtins.
3223 Make a definition for a builtin function named NAME and whose data type
3224 is TYPE. TYPE should be a function type with argument types. This
3225 function places the anticipated declaration in the global namespace
3226 and additionally in the std namespace if appropriate.
3228 CLASS and CODE tell later passes how to compile calls to this function.
3229 See tree.h for possible values.
3231 If LIBNAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3232 the name to be called if we can't opencode the function.
3234 If ATTRS is nonzero, use that for the function's attribute
3235 list. */
3237 tree
3238 builtin_function (const char* name,
3239 tree type,
3240 int code,
3241 enum built_in_class cl,
3242 const char* libname,
3243 tree attrs)
3245 /* All builtins that don't begin with an '_' should additionally
3246 go in the 'std' namespace. */
3247 if (name[0] != '_')
3249 push_namespace (std_identifier);
3250 builtin_function_1 (name, type, std_node, code, cl, libname, attrs);
3251 pop_namespace ();
3254 return builtin_function_1 (name, type, NULL_TREE, code,
3255 cl, libname, attrs);
3258 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
3259 function. Not called directly. */
3261 static tree
3262 build_library_fn_1 (tree name, enum tree_code operator_code, tree type)
3264 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
3265 DECL_EXTERNAL (fn) = 1;
3266 TREE_PUBLIC (fn) = 1;
3267 DECL_ARTIFICIAL (fn) = 1;
3268 SET_OVERLOADED_OPERATOR_CODE (fn, operator_code);
3269 SET_DECL_LANGUAGE (fn, lang_c);
3270 /* Runtime library routines are, by definition, available in an
3271 external shared object. */
3272 DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
3273 DECL_VISIBILITY_SPECIFIED (fn) = 1;
3274 return fn;
3277 /* Returns the _DECL for a library function with C linkage.
3278 We assume that such functions never throw; if this is incorrect,
3279 callers should unset TREE_NOTHROW. */
3281 tree
3282 build_library_fn (tree name, tree type)
3284 tree fn = build_library_fn_1 (name, ERROR_MARK, type);
3285 TREE_NOTHROW (fn) = 1;
3286 return fn;
3289 /* Returns the _DECL for a library function with C++ linkage. */
3291 static tree
3292 build_cp_library_fn (tree name, enum tree_code operator_code, tree type)
3294 tree fn = build_library_fn_1 (name, operator_code, type);
3295 TREE_NOTHROW (fn) = TYPE_NOTHROW_P (type);
3296 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
3297 SET_DECL_LANGUAGE (fn, lang_cplusplus);
3298 return fn;
3301 /* Like build_library_fn, but takes a C string instead of an
3302 IDENTIFIER_NODE. */
3304 tree
3305 build_library_fn_ptr (const char* name, tree type)
3307 return build_library_fn (get_identifier (name), type);
3310 /* Like build_cp_library_fn, but takes a C string instead of an
3311 IDENTIFIER_NODE. */
3313 tree
3314 build_cp_library_fn_ptr (const char* name, tree type)
3316 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type);
3319 /* Like build_library_fn, but also pushes the function so that we will
3320 be able to find it via IDENTIFIER_GLOBAL_VALUE. */
3322 tree
3323 push_library_fn (tree name, tree type)
3325 tree fn = build_library_fn (name, type);
3326 pushdecl_top_level (fn);
3327 return fn;
3330 /* Like build_cp_library_fn, but also pushes the function so that it
3331 will be found by normal lookup. */
3333 static tree
3334 push_cp_library_fn (enum tree_code operator_code, tree type)
3336 tree fn = build_cp_library_fn (ansi_opname (operator_code),
3337 operator_code,
3338 type);
3339 pushdecl (fn);
3340 return fn;
3343 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
3344 a FUNCTION_TYPE. */
3346 tree
3347 push_void_library_fn (tree name, tree parmtypes)
3349 tree type = build_function_type (void_type_node, parmtypes);
3350 return push_library_fn (name, type);
3353 /* Like push_library_fn, but also note that this function throws
3354 and does not return. Used for __throw_foo and the like. */
3356 tree
3357 push_throw_library_fn (tree name, tree type)
3359 tree fn = push_library_fn (name, type);
3360 TREE_THIS_VOLATILE (fn) = 1;
3361 TREE_NOTHROW (fn) = 0;
3362 return fn;
3365 /* When we call finish_struct for an anonymous union, we create
3366 default copy constructors and such. But, an anonymous union
3367 shouldn't have such things; this function undoes the damage to the
3368 anonymous union type T.
3370 (The reason that we create the synthesized methods is that we don't
3371 distinguish `union { int i; }' from `typedef union { int i; } U'.
3372 The first is an anonymous union; the second is just an ordinary
3373 union type.) */
3375 void
3376 fixup_anonymous_aggr (tree t)
3378 tree *q;
3380 /* Wipe out memory of synthesized methods. */
3381 TYPE_HAS_CONSTRUCTOR (t) = 0;
3382 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
3383 TYPE_HAS_INIT_REF (t) = 0;
3384 TYPE_HAS_CONST_INIT_REF (t) = 0;
3385 TYPE_HAS_ASSIGN_REF (t) = 0;
3386 TYPE_HAS_CONST_ASSIGN_REF (t) = 0;
3388 /* Splice the implicitly generated functions out of the TYPE_METHODS
3389 list. */
3390 q = &TYPE_METHODS (t);
3391 while (*q)
3393 if (DECL_ARTIFICIAL (*q))
3394 *q = TREE_CHAIN (*q);
3395 else
3396 q = &TREE_CHAIN (*q);
3399 /* ISO C++ 9.5.3. Anonymous unions may not have function members. */
3400 if (TYPE_METHODS (t))
3401 error ("%Jan anonymous union cannot have function members",
3402 TYPE_MAIN_DECL (t));
3404 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
3405 assignment operators (because they cannot have these methods themselves).
3406 For anonymous unions this is already checked because they are not allowed
3407 in any union, otherwise we have to check it. */
3408 if (TREE_CODE (t) != UNION_TYPE)
3410 tree field, type;
3412 for (field = TYPE_FIELDS (t); field; field = TREE_CHAIN (field))
3413 if (TREE_CODE (field) == FIELD_DECL)
3415 type = TREE_TYPE (field);
3416 if (CLASS_TYPE_P (type))
3418 if (TYPE_NEEDS_CONSTRUCTING (type))
3419 error ("member %q+#D with constructor not allowed "
3420 "in anonymous aggregate", field);
3421 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3422 error ("member %q+#D with destructor not allowed "
3423 "in anonymous aggregate", field);
3424 if (TYPE_HAS_COMPLEX_ASSIGN_REF (type))
3425 error ("member %q+#D with copy assignment operator "
3426 "not allowed in anonymous aggregate", field);
3432 /* Make sure that a declaration with no declarator is well-formed, i.e.
3433 just declares a tagged type or anonymous union.
3435 Returns the type declared; or NULL_TREE if none. */
3437 tree
3438 check_tag_decl (cp_decl_specifier_seq *declspecs)
3440 int saw_friend = declspecs->specs[(int)ds_friend] != 0;
3441 int saw_typedef = declspecs->specs[(int)ds_typedef] != 0;
3442 /* If a class, struct, or enum type is declared by the DECLSPECS
3443 (i.e, if a class-specifier, enum-specifier, or non-typename
3444 elaborated-type-specifier appears in the DECLSPECS),
3445 DECLARED_TYPE is set to the corresponding type. */
3446 tree declared_type = NULL_TREE;
3447 bool error_p = false;
3449 if (declspecs->multiple_types_p)
3450 error ("multiple types in one declaration");
3451 else if (declspecs->redefined_builtin_type)
3453 if (!in_system_header)
3454 pedwarn ("redeclaration of C++ built-in type %qT",
3455 declspecs->redefined_builtin_type);
3456 return NULL_TREE;
3459 if (declspecs->type
3460 && TYPE_P (declspecs->type)
3461 && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
3462 && IS_AGGR_TYPE (declspecs->type))
3463 || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
3464 declared_type = declspecs->type;
3465 else if (declspecs->type == error_mark_node)
3466 error_p = true;
3467 if (declared_type == NULL_TREE && ! saw_friend && !error_p)
3468 pedwarn ("declaration does not declare anything");
3469 /* Check for an anonymous union. */
3470 else if (declared_type && IS_AGGR_TYPE_CODE (TREE_CODE (declared_type))
3471 && TYPE_ANONYMOUS_P (declared_type))
3473 /* 7/3 In a simple-declaration, the optional init-declarator-list
3474 can be omitted only when declaring a class (clause 9) or
3475 enumeration (7.2), that is, when the decl-specifier-seq contains
3476 either a class-specifier, an elaborated-type-specifier with
3477 a class-key (9.1), or an enum-specifier. In these cases and
3478 whenever a class-specifier or enum-specifier is present in the
3479 decl-specifier-seq, the identifiers in these specifiers are among
3480 the names being declared by the declaration (as class-name,
3481 enum-names, or enumerators, depending on the syntax). In such
3482 cases, and except for the declaration of an unnamed bit-field (9.6),
3483 the decl-specifier-seq shall introduce one or more names into the
3484 program, or shall redeclare a name introduced by a previous
3485 declaration. [Example:
3486 enum { }; // ill-formed
3487 typedef class { }; // ill-formed
3488 --end example] */
3489 if (saw_typedef)
3491 error ("missing type-name in typedef-declaration");
3492 return NULL_TREE;
3494 /* Anonymous unions are objects, so they can have specifiers. */;
3495 SET_ANON_AGGR_TYPE_P (declared_type);
3497 if (TREE_CODE (declared_type) != UNION_TYPE && pedantic
3498 && !in_system_header)
3499 pedwarn ("ISO C++ prohibits anonymous structs");
3502 else
3504 if (declspecs->specs[(int)ds_inline]
3505 || declspecs->specs[(int)ds_virtual])
3506 error ("%qs can only be specified for functions",
3507 declspecs->specs[(int)ds_inline]
3508 ? "inline" : "virtual");
3509 else if (saw_friend
3510 && (!current_class_type
3511 || current_scope () != current_class_type))
3512 error ("%<friend%> can only be specified inside a class");
3513 else if (declspecs->specs[(int)ds_explicit])
3514 error ("%<explicit%> can only be specified for constructors");
3515 else if (declspecs->storage_class)
3516 error ("a storage class can only be specified for objects "
3517 "and functions");
3518 else if (declspecs->specs[(int)ds_const]
3519 || declspecs->specs[(int)ds_volatile]
3520 || declspecs->specs[(int)ds_restrict]
3521 || declspecs->specs[(int)ds_thread])
3522 error ("qualifiers can only be specified for objects "
3523 "and functions");
3526 return declared_type;
3529 /* Called when a declaration is seen that contains no names to declare.
3530 If its type is a reference to a structure, union or enum inherited
3531 from a containing scope, shadow that tag name for the current scope
3532 with a forward reference.
3533 If its type defines a new named structure or union
3534 or defines an enum, it is valid but we need not do anything here.
3535 Otherwise, it is an error.
3537 C++: may have to grok the declspecs to learn about static,
3538 complain for anonymous unions.
3540 Returns the TYPE declared -- or NULL_TREE if none. */
3542 tree
3543 shadow_tag (cp_decl_specifier_seq *declspecs)
3545 tree t = check_tag_decl (declspecs);
3547 if (!t)
3548 return NULL_TREE;
3550 if (declspecs->attributes)
3552 warning (0, "attribute ignored in declaration of %q+#T", t);
3553 warning (0, "attribute for %q+#T must follow the %qs keyword",
3554 t, class_key_or_enum_as_string (t));
3558 maybe_process_partial_specialization (t);
3560 /* This is where the variables in an anonymous union are
3561 declared. An anonymous union declaration looks like:
3562 union { ... } ;
3563 because there is no declarator after the union, the parser
3564 sends that declaration here. */
3565 if (ANON_AGGR_TYPE_P (t))
3567 fixup_anonymous_aggr (t);
3569 if (TYPE_FIELDS (t))
3571 tree decl = grokdeclarator (/*declarator=*/NULL,
3572 declspecs, NORMAL, 0, NULL);
3573 finish_anon_union (decl);
3577 return t;
3580 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3582 tree
3583 groktypename (cp_decl_specifier_seq *type_specifiers,
3584 const cp_declarator *declarator)
3586 tree attrs;
3587 tree type;
3588 attrs = type_specifiers->attributes;
3589 type_specifiers->attributes = NULL_TREE;
3590 type = grokdeclarator (declarator, type_specifiers, TYPENAME, 0, &attrs);
3591 if (attrs)
3592 cplus_decl_attributes (&type, attrs, 0);
3593 return type;
3596 /* Decode a declarator in an ordinary declaration or data definition.
3597 This is called as soon as the type information and variable name
3598 have been parsed, before parsing the initializer if any.
3599 Here we create the ..._DECL node, fill in its type,
3600 and put it on the list of decls for the current context.
3601 The ..._DECL node is returned as the value.
3603 Exception: for arrays where the length is not specified,
3604 the type is left null, to be filled in by `cp_finish_decl'.
3606 Function definitions do not come here; they go to start_function
3607 instead. However, external and forward declarations of functions
3608 do go through here. Structure field declarations are done by
3609 grokfield and not through here. */
3611 tree
3612 start_decl (const cp_declarator *declarator,
3613 cp_decl_specifier_seq *declspecs,
3614 int initialized,
3615 tree attributes,
3616 tree prefix_attributes,
3617 tree *pushed_scope_p)
3619 tree decl;
3620 tree type, tem;
3621 tree context;
3623 *pushed_scope_p = NULL_TREE;
3625 /* This should only be done once on the top most decl. */
3626 if (have_extern_spec)
3628 declspecs->storage_class = sc_extern;
3629 have_extern_spec = false;
3632 /* An object declared as __attribute__((deprecated)) suppresses
3633 warnings of uses of other deprecated items. */
3634 if (lookup_attribute ("deprecated", attributes))
3635 deprecated_state = DEPRECATED_SUPPRESS;
3637 attributes = chainon (attributes, prefix_attributes);
3639 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
3640 &attributes);
3642 deprecated_state = DEPRECATED_NORMAL;
3644 if (decl == NULL_TREE || TREE_CODE (decl) == VOID_TYPE
3645 || decl == error_mark_node)
3646 return error_mark_node;
3648 type = TREE_TYPE (decl);
3650 context = DECL_CONTEXT (decl);
3652 if (context)
3654 *pushed_scope_p = push_scope (context);
3656 /* We are only interested in class contexts, later. */
3657 if (TREE_CODE (context) == NAMESPACE_DECL)
3658 context = NULL_TREE;
3661 if (initialized)
3662 /* Is it valid for this decl to have an initializer at all?
3663 If not, set INITIALIZED to zero, which will indirectly
3664 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
3665 switch (TREE_CODE (decl))
3667 case TYPE_DECL:
3668 error ("typedef %qD is initialized (use __typeof__ instead)", decl);
3669 initialized = 0;
3670 break;
3672 case FUNCTION_DECL:
3673 error ("function %q#D is initialized like a variable", decl);
3674 initialized = 0;
3675 break;
3677 default:
3678 break;
3681 if (initialized)
3683 if (! toplevel_bindings_p ()
3684 && DECL_EXTERNAL (decl))
3685 warning (0, "declaration of %q#D has %<extern%> and is initialized",
3686 decl);
3687 DECL_EXTERNAL (decl) = 0;
3688 if (toplevel_bindings_p ())
3689 TREE_STATIC (decl) = 1;
3691 /* Tell `pushdecl' this is an initialized decl
3692 even though we don't yet have the initializer expression.
3693 Also tell `cp_finish_decl' it may store the real initializer. */
3694 DECL_INITIAL (decl) = error_mark_node;
3697 /* Set attributes here so if duplicate decl, will have proper attributes. */
3698 cplus_decl_attributes (&decl, attributes, 0);
3700 /* If #pragma weak was used, mark the decl weak now. */
3701 maybe_apply_pragma_weak (decl);
3703 if (TREE_CODE (decl) == FUNCTION_DECL
3704 && DECL_DECLARED_INLINE_P (decl)
3705 && DECL_UNINLINABLE (decl)
3706 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
3707 warning (0, "inline function %q+D given attribute noinline", decl);
3709 if (context && COMPLETE_TYPE_P (complete_type (context)))
3711 if (TREE_CODE (decl) == VAR_DECL)
3713 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
3714 if (field == NULL_TREE || TREE_CODE (field) != VAR_DECL)
3715 error ("%q#D is not a static member of %q#T", decl, context);
3716 else
3718 if (DECL_CONTEXT (field) != context)
3720 if (!same_type_p (DECL_CONTEXT (field), context))
3721 pedwarn ("ISO C++ does not permit %<%T::%D%> "
3722 "to be defined as %<%T::%D%>",
3723 DECL_CONTEXT (field), DECL_NAME (decl),
3724 context, DECL_NAME (decl));
3725 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
3727 if (processing_specialization
3728 && template_class_depth (context) == 0
3729 && CLASSTYPE_TEMPLATE_SPECIALIZATION (context))
3730 error ("template header not allowed in member definition "
3731 "of explicitly specialized class");
3732 /* Static data member are tricky; an in-class initialization
3733 still doesn't provide a definition, so the in-class
3734 declaration will have DECL_EXTERNAL set, but will have an
3735 initialization. Thus, duplicate_decls won't warn
3736 about this situation, and so we check here. */
3737 if (DECL_INITIAL (decl)
3738 && DECL_INITIALIZED_IN_CLASS_P (field))
3739 error ("duplicate initialization of %qD", decl);
3740 if (duplicate_decls (decl, field, /*newdecl_is_friend=*/false))
3741 decl = field;
3744 else
3746 tree field = check_classfn (context, decl,
3747 (processing_template_decl
3748 > template_class_depth (context))
3749 ? current_template_parms
3750 : NULL_TREE);
3751 if (field && duplicate_decls (decl, field,
3752 /*newdecl_is_friend=*/false))
3753 decl = field;
3756 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
3757 DECL_IN_AGGR_P (decl) = 0;
3758 /* Do not mark DECL as an explicit specialization if it was not
3759 already marked as an instantiation; a declaration should
3760 never be marked as a specialization unless we know what
3761 template is being specialized. */
3762 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
3764 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
3766 /* [temp.expl.spec] An explicit specialization of a static data
3767 member of a template is a definition if the declaration
3768 includes an initializer; otherwise, it is a declaration.
3770 We check for processing_specialization so this only applies
3771 to the new specialization syntax. */
3772 if (!DECL_INITIAL (decl)
3773 && processing_specialization)
3774 DECL_EXTERNAL (decl) = 1;
3777 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl))
3778 pedwarn ("declaration of %q#D outside of class is not definition",
3779 decl);
3782 /* Enter this declaration into the symbol table. */
3783 tem = maybe_push_decl (decl);
3785 if (processing_template_decl)
3786 tem = push_template_decl (tem);
3787 if (tem == error_mark_node)
3788 return error_mark_node;
3790 #if ! defined (ASM_OUTPUT_BSS) && ! defined (ASM_OUTPUT_ALIGNED_BSS)
3791 /* Tell the back-end to use or not use .common as appropriate. If we say
3792 -fconserve-space, we want this to save .data space, at the expense of
3793 wrong semantics. If we say -fno-conserve-space, we want this to
3794 produce errors about redefs; to do this we force variables into the
3795 data segment. */
3796 DECL_COMMON (tem) = ((TREE_CODE (tem) != VAR_DECL
3797 || !DECL_THREAD_LOCAL_P (tem))
3798 && (flag_conserve_space || ! TREE_PUBLIC (tem)));
3799 #endif
3801 if (! processing_template_decl)
3802 start_decl_1 (tem);
3804 return tem;
3807 void
3808 start_decl_1 (tree decl)
3810 tree type = TREE_TYPE (decl);
3811 int initialized = (DECL_INITIAL (decl) != NULL_TREE);
3813 if (type == error_mark_node)
3814 return;
3816 if (initialized)
3817 /* Is it valid for this decl to have an initializer at all?
3818 If not, set INITIALIZED to zero, which will indirectly
3819 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
3821 /* Don't allow initializations for incomplete types except for
3822 arrays which might be completed by the initialization. */
3823 if (COMPLETE_TYPE_P (complete_type (type)))
3824 ; /* A complete type is ok. */
3825 else if (TREE_CODE (type) != ARRAY_TYPE)
3827 error ("variable %q#D has initializer but incomplete type", decl);
3828 initialized = 0;
3829 type = TREE_TYPE (decl) = error_mark_node;
3831 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
3833 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
3834 error ("elements of array %q#D have incomplete type", decl);
3835 /* else we already gave an error in start_decl. */
3836 initialized = 0;
3840 if (!initialized
3841 && TREE_CODE (decl) != TYPE_DECL
3842 && TREE_CODE (decl) != TEMPLATE_DECL
3843 && type != error_mark_node
3844 && IS_AGGR_TYPE (type)
3845 && ! DECL_EXTERNAL (decl))
3847 if ((! processing_template_decl || ! uses_template_parms (type))
3848 && !COMPLETE_TYPE_P (complete_type (type)))
3850 error ("aggregate %q#D has incomplete type and cannot be defined",
3851 decl);
3852 /* Change the type so that assemble_variable will give
3853 DECL an rtl we can live with: (mem (const_int 0)). */
3854 type = TREE_TYPE (decl) = error_mark_node;
3856 else
3858 /* If any base type in the hierarchy of TYPE needs a constructor,
3859 then we set initialized to 1. This way any nodes which are
3860 created for the purposes of initializing this aggregate
3861 will live as long as it does. This is necessary for global
3862 aggregates which do not have their initializers processed until
3863 the end of the file. */
3864 initialized = TYPE_NEEDS_CONSTRUCTING (type);
3868 if (! initialized)
3869 DECL_INITIAL (decl) = NULL_TREE;
3871 /* Create a new scope to hold this declaration if necessary.
3872 Whether or not a new scope is necessary cannot be determined
3873 until after the type has been completed; if the type is a
3874 specialization of a class template it is not until after
3875 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
3876 will be set correctly. */
3877 maybe_push_cleanup_level (type);
3880 /* Handle initialization of references. DECL, TYPE, and INIT have the
3881 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
3882 but will be set to a new CLEANUP_STMT if a temporary is created
3883 that must be destroyed subsequently.
3885 Returns an initializer expression to use to initialize DECL, or
3886 NULL if the initialization can be performed statically.
3888 Quotes on semantics can be found in ARM 8.4.3. */
3890 static tree
3891 grok_reference_init (tree decl, tree type, tree init, tree *cleanup)
3893 tree tmp;
3895 if (init == NULL_TREE)
3897 if ((DECL_LANG_SPECIFIC (decl) == 0
3898 || DECL_IN_AGGR_P (decl) == 0)
3899 && ! DECL_THIS_EXTERN (decl))
3900 error ("%qD declared as reference but not initialized", decl);
3901 return NULL_TREE;
3904 if (TREE_CODE (init) == CONSTRUCTOR)
3906 error ("ISO C++ forbids use of initializer list to "
3907 "initialize reference %qD", decl);
3908 return NULL_TREE;
3911 if (TREE_CODE (init) == TREE_LIST)
3912 init = build_x_compound_expr_from_list (init, "initializer");
3914 if (TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE
3915 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
3916 /* Note: default conversion is only called in very special cases. */
3917 init = decay_conversion (init);
3919 /* Convert INIT to the reference type TYPE. This may involve the
3920 creation of a temporary, whose lifetime must be the same as that
3921 of the reference. If so, a DECL_EXPR for the temporary will be
3922 added just after the DECL_EXPR for DECL. That's why we don't set
3923 DECL_INITIAL for local references (instead assigning to them
3924 explicitly); we need to allow the temporary to be initialized
3925 first. */
3926 tmp = initialize_reference (type, init, decl, cleanup);
3928 if (tmp == error_mark_node)
3929 return NULL_TREE;
3930 else if (tmp == NULL_TREE)
3932 error ("cannot initialize %qT from %qT", type, TREE_TYPE (init));
3933 return NULL_TREE;
3936 if (TREE_STATIC (decl) && !TREE_CONSTANT (tmp))
3937 return tmp;
3939 DECL_INITIAL (decl) = tmp;
3941 return NULL_TREE;
3944 /* When parsing `int a[] = {1, 2};' we don't know the size of the
3945 array until we finish parsing the initializer. If that's the
3946 situation we're in, update DECL accordingly. */
3948 static void
3949 maybe_deduce_size_from_array_init (tree decl, tree init)
3951 tree type = TREE_TYPE (decl);
3953 if (TREE_CODE (type) == ARRAY_TYPE
3954 && TYPE_DOMAIN (type) == NULL_TREE
3955 && TREE_CODE (decl) != TYPE_DECL)
3957 /* do_default is really a C-ism to deal with tentative definitions.
3958 But let's leave it here to ease the eventual merge. */
3959 int do_default = !DECL_EXTERNAL (decl);
3960 tree initializer = init ? init : DECL_INITIAL (decl);
3961 int failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
3962 do_default);
3964 if (failure == 1)
3965 error ("initializer fails to determine size of %qD", decl);
3967 if (failure == 2)
3969 if (do_default)
3970 error ("array size missing in %qD", decl);
3971 /* If a `static' var's size isn't known, make it extern as
3972 well as static, so it does not get allocated. If it's not
3973 `static', then don't mark it extern; finish_incomplete_decl
3974 will give it a default size and it will get allocated. */
3975 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
3976 DECL_EXTERNAL (decl) = 1;
3979 if (failure == 3)
3980 error ("zero-size array %qD", decl);
3982 cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
3984 layout_decl (decl, 0);
3988 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
3989 any appropriate error messages regarding the layout. */
3991 static void
3992 layout_var_decl (tree decl)
3994 tree type = TREE_TYPE (decl);
3996 /* If we haven't already layed out this declaration, do so now.
3997 Note that we must not call complete type for an external object
3998 because it's type might involve templates that we are not
3999 supposed to instantiate yet. (And it's perfectly valid to say
4000 `extern X x' for some incomplete type `X'.) */
4001 if (!DECL_EXTERNAL (decl))
4002 complete_type (type);
4003 if (!DECL_SIZE (decl)
4004 && TREE_TYPE (decl) != error_mark_node
4005 && (COMPLETE_TYPE_P (type)
4006 || (TREE_CODE (type) == ARRAY_TYPE
4007 && !TYPE_DOMAIN (type)
4008 && COMPLETE_TYPE_P (TREE_TYPE (type)))))
4009 layout_decl (decl, 0);
4011 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
4013 /* An automatic variable with an incomplete type: that is an error.
4014 Don't talk about array types here, since we took care of that
4015 message in grokdeclarator. */
4016 error ("storage size of %qD isn't known", decl);
4017 TREE_TYPE (decl) = error_mark_node;
4019 #if 0
4020 /* Keep this code around in case we later want to control debug info
4021 based on whether a type is "used". (jason 1999-11-11) */
4023 else if (!DECL_EXTERNAL (decl) && IS_AGGR_TYPE (ttype))
4024 /* Let debugger know it should output info for this type. */
4025 note_debug_info_needed (ttype);
4027 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
4028 note_debug_info_needed (DECL_CONTEXT (decl));
4029 #endif
4031 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
4032 && DECL_SIZE (decl) != NULL_TREE
4033 && ! TREE_CONSTANT (DECL_SIZE (decl)))
4035 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
4036 constant_expression_warning (DECL_SIZE (decl));
4037 else
4038 error ("storage size of %qD isn't constant", decl);
4041 if (TREE_STATIC (decl)
4042 && !DECL_ARTIFICIAL (decl)
4043 && current_function_decl
4044 && DECL_CONTEXT (decl) == current_function_decl)
4045 push_local_name (decl);
4048 /* If a local static variable is declared in an inline function, or if
4049 we have a weak definition, we must endeavor to create only one
4050 instance of the variable at link-time. */
4052 static void
4053 maybe_commonize_var (tree decl)
4055 /* Static data in a function with comdat linkage also has comdat
4056 linkage. */
4057 if (TREE_STATIC (decl)
4058 /* Don't mess with __FUNCTION__. */
4059 && ! DECL_ARTIFICIAL (decl)
4060 && DECL_FUNCTION_SCOPE_P (decl)
4061 /* Unfortunately, import_export_decl has not always been called
4062 before the function is processed, so we cannot simply check
4063 DECL_COMDAT. */
4064 && (DECL_COMDAT (DECL_CONTEXT (decl))
4065 || ((DECL_DECLARED_INLINE_P (DECL_CONTEXT (decl))
4066 || DECL_TEMPLATE_INSTANTIATION (DECL_CONTEXT (decl)))
4067 && TREE_PUBLIC (DECL_CONTEXT (decl)))))
4069 if (flag_weak)
4071 /* With weak symbols, we simply make the variable COMDAT;
4072 that will cause copies in multiple translations units to
4073 be merged. */
4074 comdat_linkage (decl);
4076 else
4078 if (DECL_INITIAL (decl) == NULL_TREE
4079 || DECL_INITIAL (decl) == error_mark_node)
4081 /* Without weak symbols, we can use COMMON to merge
4082 uninitialized variables. */
4083 TREE_PUBLIC (decl) = 1;
4084 DECL_COMMON (decl) = 1;
4086 else
4088 /* While for initialized variables, we must use internal
4089 linkage -- which means that multiple copies will not
4090 be merged. */
4091 TREE_PUBLIC (decl) = 0;
4092 DECL_COMMON (decl) = 0;
4093 warning (0, "sorry: semantics of inline function static "
4094 "data %q+#D are wrong (you'll wind up "
4095 "with multiple copies)", decl);
4096 warning (0, "%J you can work around this by removing "
4097 "the initializer",
4098 decl);
4102 else if (DECL_LANG_SPECIFIC (decl) && DECL_COMDAT (decl))
4103 /* Set it up again; we might have set DECL_INITIAL since the last
4104 time. */
4105 comdat_linkage (decl);
4108 /* Issue an error message if DECL is an uninitialized const variable. */
4110 static void
4111 check_for_uninitialized_const_var (tree decl)
4113 tree type = TREE_TYPE (decl);
4115 /* ``Unless explicitly declared extern, a const object does not have
4116 external linkage and must be initialized. ($8.4; $12.1)'' ARM
4117 7.1.6 */
4118 if (TREE_CODE (decl) == VAR_DECL
4119 && TREE_CODE (type) != REFERENCE_TYPE
4120 && CP_TYPE_CONST_P (type)
4121 && !TYPE_NEEDS_CONSTRUCTING (type)
4122 && !DECL_INITIAL (decl))
4123 error ("uninitialized const %qD", decl);
4127 /* Structure holding the current initializer being processed by reshape_init.
4128 CUR is a pointer to the current element being processed, END is a pointer
4129 after the last element present in the initializer. */
4130 typedef struct reshape_iterator_t
4132 constructor_elt *cur;
4133 constructor_elt *end;
4134 } reshape_iter;
4136 static tree reshape_init_r (tree, reshape_iter *, bool);
4138 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
4139 returned is the next FIELD_DECL (possibly FIELD itself) that can be
4140 initialized. If there are no more such fields, the return value
4141 will be NULL. */
4143 static tree
4144 next_initializable_field (tree field)
4146 while (field
4147 && (TREE_CODE (field) != FIELD_DECL
4148 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field))
4149 || DECL_ARTIFICIAL (field)))
4150 field = TREE_CHAIN (field);
4152 return field;
4155 /* Subroutine of reshape_init_array and reshape_init_vector, which does
4156 the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
4157 INTEGER_CST representing the size of the array minus one (the maximum index),
4158 or NULL_TREE if the array was declared without specifying the size. D is
4159 the iterator within the constructor. */
4161 static tree
4162 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d)
4164 tree new_init;
4165 bool sized_array_p = (max_index != NULL_TREE);
4166 unsigned HOST_WIDE_INT max_index_cst = 0;
4167 unsigned HOST_WIDE_INT index;
4169 /* The initializer for an array is always a CONSTRUCTOR. */
4170 new_init = build_constructor (NULL_TREE, NULL);
4172 if (sized_array_p)
4174 if (host_integerp (max_index, 1))
4175 max_index_cst = tree_low_cst (max_index, 1);
4176 /* sizetype is sign extended, not zero extended. */
4177 else
4178 max_index_cst = tree_low_cst (fold_convert (size_type_node, max_index),
4182 /* Loop until there are no more initializers. */
4183 for (index = 0;
4184 d->cur != d->end && (!sized_array_p || index <= max_index_cst);
4185 ++index)
4187 tree elt_init;
4189 if (d->cur->index)
4191 /* Handle array designated initializers (GNU extension). */
4192 if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
4194 error ("name %qD used in a GNU-style designated "
4195 "initializer for an array", d->cur->index);
4197 else
4198 gcc_unreachable ();
4201 elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false);
4202 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), NULL_TREE, elt_init);
4205 return new_init;
4208 /* Subroutine of reshape_init_r, processes the initializers for arrays.
4209 Parameters are the same of reshape_init_r. */
4211 static tree
4212 reshape_init_array (tree type, reshape_iter *d)
4214 tree max_index = NULL_TREE;
4216 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
4218 if (TYPE_DOMAIN (type))
4219 max_index = array_type_nelts (type);
4221 return reshape_init_array_1 (TREE_TYPE (type), max_index, d);
4224 /* Subroutine of reshape_init_r, processes the initializers for vectors.
4225 Parameters are the same of reshape_init_r. */
4227 static tree
4228 reshape_init_vector (tree type, reshape_iter *d)
4230 tree max_index = NULL_TREE;
4231 tree rtype;
4233 gcc_assert (TREE_CODE (type) == VECTOR_TYPE);
4235 if (TREE_CODE (d->cur->value) == CONSTRUCTOR
4236 && TREE_HAS_CONSTRUCTOR (d->cur->value))
4238 tree value = d->cur->value;
4239 if (!same_type_p (TREE_TYPE (value), type))
4241 error ("invalid type %qT as initializer for a vector of type %qT",
4242 TREE_TYPE (d->cur->value), type);
4243 value = error_mark_node;
4245 ++d->cur;
4246 return value;
4249 /* For a vector, the representation type is a struct
4250 containing a single member which is an array of the
4251 appropriate size. */
4252 rtype = TYPE_DEBUG_REPRESENTATION_TYPE (type);
4253 if (rtype && TYPE_DOMAIN (TREE_TYPE (TYPE_FIELDS (rtype))))
4254 max_index = array_type_nelts (TREE_TYPE (TYPE_FIELDS (rtype)));
4256 return reshape_init_array_1 (TREE_TYPE (type), max_index, d);
4259 /* Subroutine of reshape_init_r, processes the initializers for classes
4260 or union. Parameters are the same of reshape_init_r. */
4262 static tree
4263 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p)
4265 tree field;
4266 tree new_init;
4268 gcc_assert (CLASS_TYPE_P (type));
4270 /* The initializer for a class is always a CONSTRUCTOR. */
4271 new_init = build_constructor (NULL_TREE, NULL);
4272 field = next_initializable_field (TYPE_FIELDS (type));
4274 if (!field)
4276 /* [dcl.init.aggr]
4278 An initializer for an aggregate member that is an
4279 empty class shall have the form of an empty
4280 initializer-list {}. */
4281 if (!first_initializer_p)
4283 error ("initializer for %qT must be brace-enclosed", type);
4284 return error_mark_node;
4286 return new_init;
4289 /* Loop through the initializable fields, gathering initializers. */
4290 while (d->cur != d->end)
4292 tree field_init;
4294 /* Handle designated initializers, as an extension. */
4295 if (d->cur->index)
4297 if (pedantic)
4298 pedwarn ("ISO C++ does not allow designated initializers");
4300 field = lookup_field_1 (type, d->cur->index, /*want_type=*/false);
4302 if (!field || TREE_CODE (field) != FIELD_DECL)
4303 error ("%qT has no non-static data member named %qD", type,
4304 d->cur->index);
4307 /* If we processed all the member of the class, we are done. */
4308 if (!field)
4309 break;
4311 field_init = reshape_init_r (TREE_TYPE (field), d,
4312 /*first_initializer_p=*/false);
4313 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
4315 /* [dcl.init.aggr]
4317 When a union is initialized with a brace-enclosed
4318 initializer, the braces shall only contain an
4319 initializer for the first member of the union. */
4320 if (TREE_CODE (type) == UNION_TYPE)
4321 break;
4323 field = next_initializable_field (TREE_CHAIN (field));
4326 return new_init;
4329 /* Subroutine of reshape_init, which processes a single initializer (part of
4330 a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
4331 iterator within the CONSTRUCTOR which points to the initializer to process.
4332 FIRST_INITIALIZER_P is true if this is the first initializer of the
4333 CONSTRUCTOR node. */
4335 static tree
4336 reshape_init_r (tree type, reshape_iter *d, bool first_initializer_p)
4338 tree init = d->cur->value;
4340 /* A non-aggregate type is always initialized with a single
4341 initializer. */
4342 if (!CP_AGGREGATE_TYPE_P (type))
4344 /* It is invalid to initialize a non-aggregate type with a
4345 brace-enclosed initializer.
4346 We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
4347 of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
4348 a CONSTRUCTOR (with a record type). */
4349 if (TREE_CODE (init) == CONSTRUCTOR
4350 && BRACE_ENCLOSED_INITIALIZER_P (init)) /* p7626.C */
4352 error ("braces around scalar initializer for type %qT", type);
4353 init = error_mark_node;
4356 d->cur++;
4357 return init;
4360 /* [dcl.init.aggr]
4362 All implicit type conversions (clause _conv_) are considered when
4363 initializing the aggregate member with an initializer from an
4364 initializer-list. If the initializer can initialize a member,
4365 the member is initialized. Otherwise, if the member is itself a
4366 non-empty subaggregate, brace elision is assumed and the
4367 initializer is considered for the initialization of the first
4368 member of the subaggregate. */
4369 if (TREE_CODE (init) != CONSTRUCTOR
4370 && can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL))
4372 d->cur++;
4373 return init;
4376 /* [dcl.init.string]
4378 A char array (whether plain char, signed char, or unsigned char)
4379 can be initialized by a string-literal (optionally enclosed in
4380 braces); a wchar_t array can be initialized by a wide
4381 string-literal (optionally enclosed in braces). */
4382 if (TREE_CODE (type) == ARRAY_TYPE
4383 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
4385 tree str_init = init;
4387 /* Strip one level of braces if and only if they enclose a single
4388 element (as allowed by [dcl.init.string]). */
4389 if (!first_initializer_p
4390 && TREE_CODE (str_init) == CONSTRUCTOR
4391 && VEC_length (constructor_elt, CONSTRUCTOR_ELTS (str_init)) == 1)
4393 str_init = VEC_index (constructor_elt,
4394 CONSTRUCTOR_ELTS (str_init), 0)->value;
4397 /* If it's a string literal, then it's the initializer for the array
4398 as a whole. Otherwise, continue with normal initialization for
4399 array types (one value per array element). */
4400 if (TREE_CODE (str_init) == STRING_CST)
4402 d->cur++;
4403 return str_init;
4407 /* The following cases are about aggregates. If we are not within a full
4408 initializer already, and there is not a CONSTRUCTOR, it means that there
4409 is a missing set of braces (that is, we are processing the case for
4410 which reshape_init exists). */
4411 if (!first_initializer_p)
4413 if (TREE_CODE (init) == CONSTRUCTOR)
4415 /* For a nested compound literal, there is no need to reshape since
4416 brace elision is not allowed. Even if we decided to allow it,
4417 we should add a call to reshape_init in finish_compound_literal,
4418 before calling digest_init, so changing this code would still
4419 not be necessary. */
4420 if (!TREE_HAS_CONSTRUCTOR (init))
4422 ++d->cur;
4423 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
4424 return reshape_init (type, init);
4426 else
4427 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init));
4430 warning (OPT_Wmissing_braces, "missing braces around initializer for %qT",
4431 type);
4434 /* Dispatch to specialized routines. */
4435 if (CLASS_TYPE_P (type))
4436 return reshape_init_class (type, d, first_initializer_p);
4437 else if (TREE_CODE (type) == ARRAY_TYPE)
4438 return reshape_init_array (type, d);
4439 else if (TREE_CODE (type) == VECTOR_TYPE)
4440 return reshape_init_vector (type, d);
4441 else
4442 gcc_unreachable();
4445 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
4446 brace-enclosed aggregate initializer.
4448 INIT is the CONSTRUCTOR containing the list of initializers describing
4449 a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
4450 It may not presently match the shape of the TYPE; for example:
4452 struct S { int a; int b; };
4453 struct S a[] = { 1, 2, 3, 4 };
4455 Here INIT will hold a VEC of four elements, rather than a
4456 VEC of two elements, each itself a VEC of two elements. This
4457 routine transforms INIT from the former form into the latter. The
4458 revised CONSTRUCTOR node is returned. */
4460 static tree
4461 reshape_init (tree type, tree init)
4463 VEC(constructor_elt, gc) *v;
4464 reshape_iter d;
4465 tree new_init;
4467 gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
4468 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
4470 v = CONSTRUCTOR_ELTS (init);
4472 /* An empty constructor does not need reshaping, and it is always a valid
4473 initializer. */
4474 if (VEC_empty (constructor_elt, v))
4475 return init;
4477 /* Recurse on this CONSTRUCTOR. */
4478 d.cur = VEC_index (constructor_elt, v, 0);
4479 d.end = d.cur + VEC_length (constructor_elt, v);
4481 new_init = reshape_init_r (type, &d, true);
4483 /* Make sure all the element of the constructor were used. Otherwise,
4484 issue an error about exceeding initializers. */
4485 if (d.cur != d.end)
4486 error ("too many initializers for %qT", type);
4488 return new_init;
4491 /* Verify INIT (the initializer for DECL), and record the
4492 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
4493 grok_reference_init.
4495 If the return value is non-NULL, it is an expression that must be
4496 evaluated dynamically to initialize DECL. */
4498 static tree
4499 check_initializer (tree decl, tree init, int flags, tree *cleanup)
4501 tree type = TREE_TYPE (decl);
4502 tree init_code = NULL;
4504 /* If `start_decl' didn't like having an initialization, ignore it now. */
4505 if (init != NULL_TREE && DECL_INITIAL (decl) == NULL_TREE)
4506 init = NULL_TREE;
4508 /* If an initializer is present, DECL_INITIAL has been
4509 error_mark_node, to indicate that an as-of-yet unevaluated
4510 initialization will occur. From now on, DECL_INITIAL reflects
4511 the static initialization -- if any -- of DECL. */
4512 DECL_INITIAL (decl) = NULL_TREE;
4514 /* Things that are going to be initialized need to have complete
4515 type. */
4516 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
4518 if (type == error_mark_node)
4519 /* We will have already complained. */
4520 init = NULL_TREE;
4521 else if (init && COMPLETE_TYPE_P (type)
4522 && !TREE_CONSTANT (TYPE_SIZE (type)))
4524 error ("variable-sized object %qD may not be initialized", decl);
4525 init = NULL_TREE;
4527 else if (TREE_CODE (type) == ARRAY_TYPE
4528 && !COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
4530 error ("elements of array %q#D have incomplete type", decl);
4531 init = NULL_TREE;
4533 else if (TREE_CODE (type) != ARRAY_TYPE && !COMPLETE_TYPE_P (type))
4535 error ("%qD has incomplete type", decl);
4536 TREE_TYPE (decl) = error_mark_node;
4537 init = NULL_TREE;
4540 if (TREE_CODE (decl) == CONST_DECL)
4542 gcc_assert (TREE_CODE (decl) != REFERENCE_TYPE);
4544 DECL_INITIAL (decl) = init;
4546 gcc_assert (init != NULL_TREE);
4547 init = NULL_TREE;
4549 else if (!DECL_EXTERNAL (decl) && TREE_CODE (type) == REFERENCE_TYPE)
4550 init = grok_reference_init (decl, type, init, cleanup);
4551 else if (init)
4553 /* Do not reshape constructors of vectors (they don't need to be
4554 reshaped. */
4555 if (TREE_CODE (init) == CONSTRUCTOR
4556 && !TREE_HAS_CONSTRUCTOR (init)
4557 && !TREE_TYPE (init)) /* ptrmemfunc */
4559 init = reshape_init (type, init);
4561 if ((*targetm.vector_opaque_p) (type))
4563 error ("opaque vector types cannot be initialized");
4564 init = error_mark_node;
4568 /* If DECL has an array type without a specific bound, deduce the
4569 array size from the initializer. */
4570 maybe_deduce_size_from_array_init (decl, init);
4571 type = TREE_TYPE (decl);
4573 if (TYPE_HAS_CONSTRUCTOR (type) || TYPE_NEEDS_CONSTRUCTING (type))
4575 if (TREE_CODE (type) == ARRAY_TYPE)
4576 goto initialize_aggr;
4577 else if (TREE_CODE (init) == CONSTRUCTOR)
4579 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
4580 if (TYPE_NON_AGGREGATE_CLASS (type))
4582 error ("%qD must be initialized by constructor, "
4583 "not by %<{...}%>",
4584 decl);
4585 init = error_mark_node;
4587 else
4588 goto dont_use_constructor;
4590 else
4592 int saved_stmts_are_full_exprs_p;
4594 initialize_aggr:
4595 saved_stmts_are_full_exprs_p = 0;
4596 if (building_stmt_tree ())
4598 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
4599 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
4601 init = build_aggr_init (decl, init, flags);
4602 if (building_stmt_tree ())
4603 current_stmt_tree ()->stmts_are_full_exprs_p =
4604 saved_stmts_are_full_exprs_p;
4605 return init;
4608 else
4610 dont_use_constructor:
4611 if (TREE_CODE (init) != TREE_VEC)
4613 init_code = store_init_value (decl, init);
4614 if (pedantic && TREE_CODE (type) == ARRAY_TYPE
4615 && DECL_INITIAL (decl)
4616 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
4617 && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
4618 warning (0, "array %qD initialized by parenthesized string literal %qE",
4619 decl, DECL_INITIAL (decl));
4620 init = NULL;
4624 else if (DECL_EXTERNAL (decl))
4626 else if (TYPE_P (type) && TYPE_NEEDS_CONSTRUCTING (type))
4627 goto initialize_aggr;
4628 else if (IS_AGGR_TYPE (type))
4630 tree core_type = strip_array_types (type);
4632 if (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type))
4633 error ("structure %qD with uninitialized const members", decl);
4634 if (CLASSTYPE_REF_FIELDS_NEED_INIT (core_type))
4635 error ("structure %qD with uninitialized reference members", decl);
4637 check_for_uninitialized_const_var (decl);
4639 else
4640 check_for_uninitialized_const_var (decl);
4642 if (init && init != error_mark_node)
4643 init_code = build2 (INIT_EXPR, type, decl, init);
4645 return init_code;
4648 /* If DECL is not a local variable, give it RTL. */
4650 static void
4651 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
4653 int toplev = toplevel_bindings_p ();
4654 int defer_p;
4655 const char *filename;
4657 /* Set the DECL_ASSEMBLER_NAME for the object. */
4658 if (asmspec)
4660 /* The `register' keyword, when used together with an
4661 asm-specification, indicates that the variable should be
4662 placed in a particular register. */
4663 if (TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
4665 set_user_assembler_name (decl, asmspec);
4666 DECL_HARD_REGISTER (decl) = 1;
4668 else
4670 if (TREE_CODE (decl) == FUNCTION_DECL
4671 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
4672 set_builtin_user_assembler_name (decl, asmspec);
4673 set_user_assembler_name (decl, asmspec);
4677 /* Handle non-variables up front. */
4678 if (TREE_CODE (decl) != VAR_DECL)
4680 rest_of_decl_compilation (decl, toplev, at_eof);
4681 return;
4684 /* If we see a class member here, it should be a static data
4685 member. */
4686 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
4688 gcc_assert (TREE_STATIC (decl));
4689 /* An in-class declaration of a static data member should be
4690 external; it is only a declaration, and not a definition. */
4691 if (init == NULL_TREE)
4692 gcc_assert (DECL_EXTERNAL (decl));
4695 /* We don't create any RTL for local variables. */
4696 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
4697 return;
4699 /* We defer emission of local statics until the corresponding
4700 DECL_EXPR is expanded. */
4701 defer_p = DECL_FUNCTION_SCOPE_P (decl) || DECL_VIRTUAL_P (decl);
4703 /* We try to defer namespace-scope static constants so that they are
4704 not emitted into the object file unnecessarily. */
4705 filename = input_filename;
4706 if (!DECL_VIRTUAL_P (decl)
4707 && TREE_READONLY (decl)
4708 && DECL_INITIAL (decl) != NULL_TREE
4709 && DECL_INITIAL (decl) != error_mark_node
4710 && filename != NULL
4711 && ! EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl))
4712 && toplev
4713 && !TREE_PUBLIC (decl))
4715 /* Fool with the linkage of static consts according to #pragma
4716 interface. */
4717 struct c_fileinfo *finfo = get_fileinfo (lbasename (filename));
4718 if (!finfo->interface_unknown && !TREE_PUBLIC (decl))
4720 TREE_PUBLIC (decl) = 1;
4721 DECL_EXTERNAL (decl) = finfo->interface_only;
4724 defer_p = 1;
4726 /* Likewise for template instantiations. */
4727 else if (DECL_LANG_SPECIFIC (decl)
4728 && DECL_IMPLICIT_INSTANTIATION (decl))
4729 defer_p = 1;
4731 /* If we're not deferring, go ahead and assemble the variable. */
4732 if (!defer_p)
4733 rest_of_decl_compilation (decl, toplev, at_eof);
4736 /* Generate code to initialize DECL (a local variable). */
4738 static void
4739 initialize_local_var (tree decl, tree init)
4741 tree type = TREE_TYPE (decl);
4742 tree cleanup;
4744 gcc_assert (TREE_CODE (decl) == VAR_DECL
4745 || TREE_CODE (decl) == RESULT_DECL);
4746 gcc_assert (!TREE_STATIC (decl));
4748 if (DECL_SIZE (decl) == NULL_TREE)
4750 /* If we used it already as memory, it must stay in memory. */
4751 DECL_INITIAL (decl) = NULL_TREE;
4752 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
4755 if (DECL_SIZE (decl) && type != error_mark_node)
4757 int already_used;
4759 /* Compute and store the initial value. */
4760 already_used = TREE_USED (decl) || TREE_USED (type);
4762 /* Perform the initialization. */
4763 if (init)
4765 int saved_stmts_are_full_exprs_p;
4767 gcc_assert (building_stmt_tree ());
4768 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
4769 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
4770 finish_expr_stmt (init);
4771 current_stmt_tree ()->stmts_are_full_exprs_p =
4772 saved_stmts_are_full_exprs_p;
4775 /* Set this to 0 so we can tell whether an aggregate which was
4776 initialized was ever used. Don't do this if it has a
4777 destructor, so we don't complain about the 'resource
4778 allocation is initialization' idiom. Now set
4779 attribute((unused)) on types so decls of that type will be
4780 marked used. (see TREE_USED, above.) */
4781 if (TYPE_NEEDS_CONSTRUCTING (type)
4782 && ! already_used
4783 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
4784 && DECL_NAME (decl))
4785 TREE_USED (decl) = 0;
4786 else if (already_used)
4787 TREE_USED (decl) = 1;
4790 /* Generate a cleanup, if necessary. */
4791 cleanup = cxx_maybe_build_cleanup (decl);
4792 if (DECL_SIZE (decl) && cleanup)
4793 finish_decl_cleanup (decl, cleanup);
4796 /* DECL is a VAR_DECL for a compiler-generated variable with static
4797 storage duration (like a virtual table) whose initializer is a
4798 compile-time constant. Initialize the variable and provide it to
4799 the back end. */
4801 void
4802 initialize_artificial_var (tree decl, tree init)
4804 DECL_INITIAL (decl) = build_constructor_from_list (NULL_TREE, init);
4805 DECL_INITIALIZED_P (decl) = 1;
4806 determine_visibility (decl);
4807 layout_var_decl (decl);
4808 maybe_commonize_var (decl);
4809 make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
4812 /* Finish processing of a declaration;
4813 install its line number and initial value.
4814 If the length of an array type is not known before,
4815 it must be determined now, from the initial value, or it is an error.
4817 INIT holds the value of an initializer that should be allowed to escape
4818 the normal rules.
4820 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
4821 if the (init) syntax was used. */
4823 void
4824 cp_finish_decl (tree decl, tree init, tree asmspec_tree, int flags)
4826 tree type;
4827 tree cleanup;
4828 const char *asmspec = NULL;
4829 int was_readonly = 0;
4830 bool var_definition_p = false;
4832 if (decl == error_mark_node)
4833 return;
4834 else if (! decl)
4836 if (init)
4837 error ("assignment (not initialization) in declaration");
4838 return;
4841 gcc_assert (TREE_CODE (decl) != RESULT_DECL);
4843 /* Assume no cleanup is required. */
4844 cleanup = NULL_TREE;
4846 /* If a name was specified, get the string. */
4847 if (global_scope_p (current_binding_level))
4848 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
4849 if (asmspec_tree)
4850 asmspec = TREE_STRING_POINTER (asmspec_tree);
4852 if (init && TREE_CODE (init) == NAMESPACE_DECL)
4854 error ("cannot initialize %qD to namespace %qD", decl, init);
4855 init = NULL_TREE;
4858 if (current_class_type
4859 && CP_DECL_CONTEXT (decl) == current_class_type
4860 && TYPE_BEING_DEFINED (current_class_type)
4861 && (DECL_INITIAL (decl) || init))
4862 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
4864 type = TREE_TYPE (decl);
4866 if (type == error_mark_node)
4867 goto finish_end;
4869 if (processing_template_decl)
4871 /* Add this declaration to the statement-tree. */
4872 if (at_function_scope_p ())
4873 add_decl_expr (decl);
4875 if (init && DECL_INITIAL (decl))
4876 DECL_INITIAL (decl) = init;
4877 if (TREE_CODE (decl) == VAR_DECL
4878 && !DECL_PRETTY_FUNCTION_P (decl)
4879 && !dependent_type_p (TREE_TYPE (decl)))
4880 maybe_deduce_size_from_array_init (decl, init);
4882 goto finish_end;
4885 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
4886 gcc_assert (TREE_CODE (decl) != PARM_DECL);
4888 /* Take care of TYPE_DECLs up front. */
4889 if (TREE_CODE (decl) == TYPE_DECL)
4891 if (type != error_mark_node
4892 && IS_AGGR_TYPE (type) && DECL_NAME (decl))
4894 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
4895 warning (0, "shadowing previous type declaration of %q#D", decl);
4896 set_identifier_type_value (DECL_NAME (decl), decl);
4899 /* If we have installed this as the canonical typedef for this
4900 type, and that type has not been defined yet, delay emitting
4901 the debug information for it, as we will emit it later. */
4902 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
4903 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
4904 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
4906 rest_of_decl_compilation (decl, DECL_CONTEXT (decl) == NULL_TREE,
4907 at_eof);
4908 goto finish_end;
4911 /* A reference will be modified here, as it is initialized. */
4912 if (! DECL_EXTERNAL (decl)
4913 && TREE_READONLY (decl)
4914 && TREE_CODE (type) == REFERENCE_TYPE)
4916 was_readonly = 1;
4917 TREE_READONLY (decl) = 0;
4920 if (TREE_CODE (decl) == VAR_DECL)
4922 /* Only PODs can have thread-local storage. Other types may require
4923 various kinds of non-trivial initialization. */
4924 if (DECL_THREAD_LOCAL_P (decl) && !pod_type_p (TREE_TYPE (decl)))
4925 error ("%qD cannot be thread-local because it has non-POD type %qT",
4926 decl, TREE_TYPE (decl));
4927 /* Convert the initializer to the type of DECL, if we have not
4928 already initialized DECL. */
4929 if (!DECL_INITIALIZED_P (decl)
4930 /* If !DECL_EXTERNAL then DECL is being defined. In the
4931 case of a static data member initialized inside the
4932 class-specifier, there can be an initializer even if DECL
4933 is *not* defined. */
4934 && (!DECL_EXTERNAL (decl) || init))
4936 if (init)
4937 DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
4938 init = check_initializer (decl, init, flags, &cleanup);
4939 /* Thread-local storage cannot be dynamically initialized. */
4940 if (DECL_THREAD_LOCAL_P (decl) && init)
4942 error ("%qD is thread-local and so cannot be dynamically "
4943 "initialized", decl);
4944 init = NULL_TREE;
4947 /* Check that the initializer for a static data member was a
4948 constant. Although we check in the parser that the
4949 initializer is an integral constant expression, we do not
4950 simplify division-by-zero at the point at which it
4951 occurs. Therefore, in:
4953 struct S { static const int i = 7 / 0; };
4955 we issue an error at this point. It would
4956 probably be better to forbid division by zero in
4957 integral constant expressions. */
4958 if (DECL_EXTERNAL (decl) && init)
4960 error ("%qD cannot be initialized by a non-constant expression"
4961 " when being declared", decl);
4962 DECL_INITIALIZED_IN_CLASS_P (decl) = 0;
4963 init = NULL_TREE;
4966 /* Handle:
4968 [dcl.init]
4970 The memory occupied by any object of static storage
4971 duration is zero-initialized at program startup before
4972 any other initialization takes place.
4974 We cannot create an appropriate initializer until after
4975 the type of DECL is finalized. If DECL_INITIAL is set,
4976 then the DECL is statically initialized, and any
4977 necessary zero-initialization has already been performed. */
4978 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
4979 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
4980 /*nelts=*/NULL_TREE,
4981 /*static_storage_p=*/true);
4982 /* Remember that the initialization for this variable has
4983 taken place. */
4984 DECL_INITIALIZED_P (decl) = 1;
4985 /* This declaration is the definition of this variable,
4986 unless we are initializing a static data member within
4987 the class specifier. */
4988 if (!DECL_EXTERNAL (decl))
4989 var_definition_p = true;
4990 /* The variable is being defined, so determine its
4991 visibility. */
4992 determine_visibility (decl);
4994 /* If the variable has an array type, lay out the type, even if
4995 there is no initializer. It is valid to index through the
4996 array, and we must get TYPE_ALIGN set correctly on the array
4997 type. */
4998 else if (TREE_CODE (type) == ARRAY_TYPE)
4999 layout_type (type);
5002 /* Add this declaration to the statement-tree. This needs to happen
5003 after the call to check_initializer so that the DECL_EXPR for a
5004 reference temp is added before the DECL_EXPR for the reference itself. */
5005 if (at_function_scope_p ())
5006 add_decl_expr (decl);
5008 if (TREE_CODE (decl) == VAR_DECL)
5009 layout_var_decl (decl);
5011 /* Output the assembler code and/or RTL code for variables and functions,
5012 unless the type is an undefined structure or union.
5013 If not, it will get done when the type is completed. */
5014 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
5016 if (TREE_CODE (decl) == VAR_DECL)
5017 maybe_commonize_var (decl);
5019 make_rtl_for_nonlocal_decl (decl, init, asmspec);
5021 /* Check for abstractness of the type. Notice that there is no
5022 need to strip array types here since the check for those types
5023 is already done within create_array_type_for_decl. */
5024 if (TREE_CODE (type) == FUNCTION_TYPE
5025 || TREE_CODE (type) == METHOD_TYPE)
5026 abstract_virtuals_error (decl, TREE_TYPE (type));
5027 else
5028 abstract_virtuals_error (decl, type);
5030 if (TREE_CODE (decl) == FUNCTION_DECL
5031 || TREE_TYPE (decl) == error_mark_node)
5032 /* No initialization required. */
5034 else if (DECL_EXTERNAL (decl)
5035 && ! (DECL_LANG_SPECIFIC (decl)
5036 && DECL_NOT_REALLY_EXTERN (decl)))
5038 if (init)
5039 DECL_INITIAL (decl) = init;
5041 else
5043 /* A variable definition. */
5044 if (DECL_FUNCTION_SCOPE_P (decl))
5046 /* Initialize the local variable. */
5047 if (processing_template_decl)
5049 if (init || DECL_INITIAL (decl) == error_mark_node)
5050 DECL_INITIAL (decl) = init;
5052 else if (!TREE_STATIC (decl))
5053 initialize_local_var (decl, init);
5056 /* If a variable is defined, and then a subsequent
5057 definition with external linkage is encountered, we will
5058 get here twice for the same variable. We want to avoid
5059 calling expand_static_init more than once. For variables
5060 that are not static data members, we can call
5061 expand_static_init only when we actually process the
5062 initializer. It is not legal to redeclare a static data
5063 member, so this issue does not arise in that case. */
5064 if (var_definition_p && TREE_STATIC (decl))
5065 expand_static_init (decl, init);
5069 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
5070 reference, insert it in the statement-tree now. */
5071 if (cleanup)
5072 push_cleanup (decl, cleanup, false);
5074 finish_end:
5076 if (was_readonly)
5077 TREE_READONLY (decl) = 1;
5079 /* If this was marked 'used', be sure it will be output. */
5080 if (lookup_attribute ("used", DECL_ATTRIBUTES (decl)))
5081 mark_decl_referenced (decl);
5084 /* This is here for a midend callback from c-common.c. */
5086 void
5087 finish_decl (tree decl, tree init, tree asmspec_tree)
5089 cp_finish_decl (decl, init, asmspec_tree, 0);
5092 /* Returns a declaration for a VAR_DECL as if:
5094 extern "C" TYPE NAME;
5096 had been seen. Used to create compiler-generated global
5097 variables. */
5099 tree
5100 declare_global_var (tree name, tree type)
5102 tree decl;
5104 push_to_top_level ();
5105 decl = build_decl (VAR_DECL, name, type);
5106 TREE_PUBLIC (decl) = 1;
5107 DECL_EXTERNAL (decl) = 1;
5108 DECL_ARTIFICIAL (decl) = 1;
5109 /* If the user has explicitly declared this variable (perhaps
5110 because the code we are compiling is part of a low-level runtime
5111 library), then it is possible that our declaration will be merged
5112 with theirs by pushdecl. */
5113 decl = pushdecl (decl);
5114 cp_finish_decl (decl, NULL_TREE, NULL_TREE, 0);
5115 pop_from_top_level ();
5117 return decl;
5120 /* Returns a pointer to the `atexit' function. Note that if
5121 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
5122 `__cxa_atexit' function specified in the IA64 C++ ABI. */
5124 static tree
5125 get_atexit_node (void)
5127 tree atexit_fndecl;
5128 tree arg_types;
5129 tree fn_type;
5130 tree fn_ptr_type;
5131 const char *name;
5132 bool use_aeabi_atexit;
5134 if (atexit_node)
5135 return atexit_node;
5137 if (flag_use_cxa_atexit)
5139 /* The declaration for `__cxa_atexit' is:
5141 int __cxa_atexit (void (*)(void *), void *, void *)
5143 We build up the argument types and then then function type
5144 itself. */
5146 use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
5147 /* First, build the pointer-to-function type for the first
5148 argument. */
5149 arg_types = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
5150 fn_type = build_function_type (void_type_node, arg_types);
5151 fn_ptr_type = build_pointer_type (fn_type);
5152 /* Then, build the rest of the argument types. */
5153 arg_types = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
5154 if (use_aeabi_atexit)
5156 arg_types = tree_cons (NULL_TREE, fn_ptr_type, arg_types);
5157 arg_types = tree_cons (NULL_TREE, ptr_type_node, arg_types);
5159 else
5161 arg_types = tree_cons (NULL_TREE, ptr_type_node, arg_types);
5162 arg_types = tree_cons (NULL_TREE, fn_ptr_type, arg_types);
5164 /* And the final __cxa_atexit type. */
5165 fn_type = build_function_type (integer_type_node, arg_types);
5166 fn_ptr_type = build_pointer_type (fn_type);
5167 if (use_aeabi_atexit)
5168 name = "__aeabi_atexit";
5169 else
5170 name = "__cxa_atexit";
5172 else
5174 /* The declaration for `atexit' is:
5176 int atexit (void (*)());
5178 We build up the argument types and then then function type
5179 itself. */
5180 fn_type = build_function_type (void_type_node, void_list_node);
5181 fn_ptr_type = build_pointer_type (fn_type);
5182 arg_types = tree_cons (NULL_TREE, fn_ptr_type, void_list_node);
5183 /* Build the final atexit type. */
5184 fn_type = build_function_type (integer_type_node, arg_types);
5185 name = "atexit";
5188 /* Now, build the function declaration. */
5189 push_lang_context (lang_name_c);
5190 atexit_fndecl = build_library_fn_ptr (name, fn_type);
5191 mark_used (atexit_fndecl);
5192 pop_lang_context ();
5193 atexit_node = decay_conversion (atexit_fndecl);
5195 return atexit_node;
5198 /* Returns the __dso_handle VAR_DECL. */
5200 static tree
5201 get_dso_handle_node (void)
5203 if (dso_handle_node)
5204 return dso_handle_node;
5206 /* Declare the variable. */
5207 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
5208 ptr_type_node);
5210 return dso_handle_node;
5213 /* Begin a new function with internal linkage whose job will be simply
5214 to destroy some particular variable. */
5216 static GTY(()) int start_cleanup_cnt;
5218 static tree
5219 start_cleanup_fn (void)
5221 char name[32];
5222 tree parmtypes;
5223 tree fntype;
5224 tree fndecl;
5226 push_to_top_level ();
5228 /* No need to mangle this. */
5229 push_lang_context (lang_name_c);
5231 /* Build the parameter-types. */
5232 parmtypes = void_list_node;
5233 /* Functions passed to __cxa_atexit take an additional parameter.
5234 We'll just ignore it. After we implement the new calling
5235 convention for destructors, we can eliminate the use of
5236 additional cleanup functions entirely in the -fnew-abi case. */
5237 if (flag_use_cxa_atexit)
5238 parmtypes = tree_cons (NULL_TREE, ptr_type_node, parmtypes);
5239 /* Build the function type itself. */
5240 fntype = build_function_type (void_type_node, parmtypes);
5241 /* Build the name of the function. */
5242 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
5243 /* Build the function declaration. */
5244 fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
5245 /* It's a function with internal linkage, generated by the
5246 compiler. */
5247 TREE_PUBLIC (fndecl) = 0;
5248 DECL_ARTIFICIAL (fndecl) = 1;
5249 /* Make the function `inline' so that it is only emitted if it is
5250 actually needed. It is unlikely that it will be inlined, since
5251 it is only called via a function pointer, but we avoid unnecessary
5252 emissions this way. */
5253 DECL_INLINE (fndecl) = 1;
5254 DECL_DECLARED_INLINE_P (fndecl) = 1;
5255 DECL_INTERFACE_KNOWN (fndecl) = 1;
5256 /* Build the parameter. */
5257 if (flag_use_cxa_atexit)
5259 tree parmdecl;
5261 parmdecl = cp_build_parm_decl (NULL_TREE, ptr_type_node);
5262 DECL_CONTEXT (parmdecl) = fndecl;
5263 TREE_USED (parmdecl) = 1;
5264 DECL_ARGUMENTS (fndecl) = parmdecl;
5267 pushdecl (fndecl);
5268 start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
5270 pop_lang_context ();
5272 return current_function_decl;
5275 /* Finish the cleanup function begun by start_cleanup_fn. */
5277 static void
5278 end_cleanup_fn (void)
5280 expand_or_defer_fn (finish_function (0));
5282 pop_from_top_level ();
5285 /* Generate code to handle the destruction of DECL, an object with
5286 static storage duration. */
5288 tree
5289 register_dtor_fn (tree decl)
5291 tree cleanup;
5292 tree compound_stmt;
5293 tree args;
5294 tree fcall;
5296 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
5297 return void_zero_node;
5299 /* Call build_cleanup before we enter the anonymous function so that
5300 any access checks will be done relative to the current scope,
5301 rather than the scope of the anonymous function. */
5302 build_cleanup (decl);
5304 /* Now start the function. */
5305 cleanup = start_cleanup_fn ();
5307 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
5308 to the original function, rather than the anonymous one. That
5309 will make the back-end think that nested functions are in use,
5310 which causes confusion. */
5312 push_deferring_access_checks (dk_no_check);
5313 fcall = build_cleanup (decl);
5314 pop_deferring_access_checks ();
5316 /* Create the body of the anonymous function. */
5317 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
5318 finish_expr_stmt (fcall);
5319 finish_compound_stmt (compound_stmt);
5320 end_cleanup_fn ();
5322 /* Call atexit with the cleanup function. */
5323 cxx_mark_addressable (cleanup);
5324 mark_used (cleanup);
5325 cleanup = build_unary_op (ADDR_EXPR, cleanup, 0);
5326 if (flag_use_cxa_atexit)
5328 args = tree_cons (NULL_TREE,
5329 build_unary_op (ADDR_EXPR, get_dso_handle_node (), 0),
5330 NULL_TREE);
5331 if (targetm.cxx.use_aeabi_atexit ())
5333 args = tree_cons (NULL_TREE, cleanup, args);
5334 args = tree_cons (NULL_TREE, null_pointer_node, args);
5336 else
5338 args = tree_cons (NULL_TREE, null_pointer_node, args);
5339 args = tree_cons (NULL_TREE, cleanup, args);
5342 else
5343 args = tree_cons (NULL_TREE, cleanup, NULL_TREE);
5344 return build_function_call (get_atexit_node (), args);
5347 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
5348 is its initializer. Generate code to handle the construction
5349 and destruction of DECL. */
5351 static void
5352 expand_static_init (tree decl, tree init)
5354 gcc_assert (TREE_CODE (decl) == VAR_DECL);
5355 gcc_assert (TREE_STATIC (decl));
5357 /* Some variables require no initialization. */
5358 if (!init
5359 && !TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl))
5360 && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
5361 return;
5363 if (DECL_FUNCTION_SCOPE_P (decl))
5365 /* Emit code to perform this initialization but once. */
5366 tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
5367 tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
5368 tree guard, guard_addr, guard_addr_list;
5369 tree acquire_fn, release_fn, abort_fn;
5370 tree flag, begin;
5372 /* Emit code to perform this initialization but once. This code
5373 looks like:
5375 static <type> guard;
5376 if (!guard.first_byte) {
5377 if (__cxa_guard_acquire (&guard)) {
5378 bool flag = false;
5379 try {
5380 // Do initialization.
5381 flag = true; __cxa_guard_release (&guard);
5382 // Register variable for destruction at end of program.
5383 } catch {
5384 if (!flag) __cxa_guard_abort (&guard);
5388 Note that the `flag' variable is only set to 1 *after* the
5389 initialization is complete. This ensures that an exception,
5390 thrown during the construction, will cause the variable to
5391 reinitialized when we pass through this code again, as per:
5393 [stmt.dcl]
5395 If the initialization exits by throwing an exception, the
5396 initialization is not complete, so it will be tried again
5397 the next time control enters the declaration.
5399 This process should be thread-safe, too; multiple threads
5400 should not be able to initialize the variable more than
5401 once. */
5403 /* Create the guard variable. */
5404 guard = get_guard (decl);
5406 /* This optimization isn't safe on targets with relaxed memory
5407 consistency. On such targets we force synchronization in
5408 __cxa_guard_acquire. */
5409 if (!targetm.relaxed_ordering || !flag_threadsafe_statics)
5411 /* Begin the conditional initialization. */
5412 if_stmt = begin_if_stmt ();
5413 finish_if_stmt_cond (get_guard_cond (guard), if_stmt);
5414 then_clause = begin_compound_stmt (BCS_NO_SCOPE);
5417 if (flag_threadsafe_statics)
5419 guard_addr = build_address (guard);
5420 guard_addr_list = build_tree_list (NULL_TREE, guard_addr);
5422 acquire_fn = get_identifier ("__cxa_guard_acquire");
5423 release_fn = get_identifier ("__cxa_guard_release");
5424 abort_fn = get_identifier ("__cxa_guard_abort");
5425 if (!get_global_value_if_present (acquire_fn, &acquire_fn))
5427 tree argtypes = tree_cons (NULL_TREE, TREE_TYPE (guard_addr),
5428 void_list_node);
5429 tree vfntype = build_function_type (void_type_node, argtypes);
5430 acquire_fn = push_library_fn
5431 (acquire_fn, build_function_type (integer_type_node, argtypes));
5432 release_fn = push_library_fn (release_fn, vfntype);
5433 abort_fn = push_library_fn (abort_fn, vfntype);
5435 else
5437 release_fn = identifier_global_value (release_fn);
5438 abort_fn = identifier_global_value (abort_fn);
5441 inner_if_stmt = begin_if_stmt ();
5442 finish_if_stmt_cond (build_call (acquire_fn, guard_addr_list),
5443 inner_if_stmt);
5445 inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
5446 begin = get_target_expr (boolean_false_node);
5447 flag = TARGET_EXPR_SLOT (begin);
5449 TARGET_EXPR_CLEANUP (begin)
5450 = build3 (COND_EXPR, void_type_node, flag,
5451 void_zero_node,
5452 build_call (abort_fn, guard_addr_list));
5453 CLEANUP_EH_ONLY (begin) = 1;
5455 /* Do the initialization itself. */
5456 init = add_stmt_to_compound (begin, init);
5457 init = add_stmt_to_compound
5458 (init, build2 (MODIFY_EXPR, void_type_node, flag, boolean_true_node));
5459 init = add_stmt_to_compound
5460 (init, build_call (release_fn, guard_addr_list));
5462 else
5463 init = add_stmt_to_compound (init, set_guard (guard));
5465 /* Use atexit to register a function for destroying this static
5466 variable. */
5467 init = add_stmt_to_compound (init, register_dtor_fn (decl));
5469 finish_expr_stmt (init);
5471 if (flag_threadsafe_statics)
5473 finish_compound_stmt (inner_then_clause);
5474 finish_then_clause (inner_if_stmt);
5475 finish_if_stmt (inner_if_stmt);
5478 if (!targetm.relaxed_ordering || !flag_threadsafe_statics)
5480 finish_compound_stmt (then_clause);
5481 finish_then_clause (if_stmt);
5482 finish_if_stmt (if_stmt);
5485 else
5486 static_aggregates = tree_cons (init, decl, static_aggregates);
5490 /* Make TYPE a complete type based on INITIAL_VALUE.
5491 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
5492 2 if there was no information (in which case assume 0 if DO_DEFAULT),
5493 3 if the initializer list is empty (in pedantic mode). */
5496 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
5498 int failure;
5499 tree type, elt_type;
5501 if (initial_value)
5503 /* An array of character type can be initialized from a
5504 brace-enclosed string constant.
5506 FIXME: this code is duplicated from reshape_init. Probably
5507 we should just call reshape_init here? */
5508 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
5509 && TREE_CODE (initial_value) == CONSTRUCTOR
5510 && !VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (initial_value)))
5512 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (initial_value);
5513 tree value = VEC_index (constructor_elt, v, 0)->value;
5515 if (TREE_CODE (value) == STRING_CST
5516 && VEC_length (constructor_elt, v) == 1)
5517 initial_value = value;
5521 failure = complete_array_type (ptype, initial_value, do_default);
5523 /* We can create the array before the element type is complete, which
5524 means that we didn't have these two bits set in the original type
5525 either. In completing the type, we are expected to propagate these
5526 bits. See also complete_type which does the same thing for arrays
5527 of fixed size. */
5528 type = *ptype;
5529 if (TYPE_DOMAIN (type))
5531 elt_type = TREE_TYPE (type);
5532 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
5533 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
5534 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
5537 return failure;
5540 /* Return zero if something is declared to be a member of type
5541 CTYPE when in the context of CUR_TYPE. STRING is the error
5542 message to print in that case. Otherwise, quietly return 1. */
5544 static int
5545 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
5547 if (ctype && ctype != cur_type)
5549 if (flags == DTOR_FLAG)
5550 error ("destructor for alien class %qT cannot be a member", ctype);
5551 else
5552 error ("constructor for alien class %qT cannot be a member", ctype);
5553 return 0;
5555 return 1;
5558 /* Subroutine of `grokdeclarator'. */
5560 /* Generate errors possibly applicable for a given set of specifiers.
5561 This is for ARM $7.1.2. */
5563 static void
5564 bad_specifiers (tree object,
5565 const char* type,
5566 int virtualp,
5567 int quals,
5568 int inlinep,
5569 int friendp,
5570 int raises)
5572 if (virtualp)
5573 error ("%qD declared as a %<virtual%> %s", object, type);
5574 if (inlinep)
5575 error ("%qD declared as an %<inline%> %s", object, type);
5576 if (quals)
5577 error ("%<const%> and %<volatile%> function specifiers on "
5578 "%qD invalid in %s declaration",
5579 object, type);
5580 if (friendp)
5581 error ("%q+D declared as a friend", object);
5582 if (raises
5583 && (TREE_CODE (object) == TYPE_DECL
5584 || (!TYPE_PTRFN_P (TREE_TYPE (object))
5585 && !TYPE_REFFN_P (TREE_TYPE (object))
5586 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
5587 error ("%q+D declared with an exception specification", object);
5590 /* DECL is a member function or static data member and is presently
5591 being defined. Check that the definition is taking place in a
5592 valid namespace. */
5594 static void
5595 check_class_member_definition_namespace (tree decl)
5597 /* These checks only apply to member functions and static data
5598 members. */
5599 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
5600 || TREE_CODE (decl) == VAR_DECL);
5601 /* We check for problems with specializations in pt.c in
5602 check_specialization_namespace, where we can issue better
5603 diagnostics. */
5604 if (processing_specialization)
5605 return;
5606 /* There are no restrictions on the placement of
5607 explicit instantiations. */
5608 if (processing_explicit_instantiation)
5609 return;
5610 /* [class.mfct]
5612 A member function definition that appears outside of the
5613 class definition shall appear in a namespace scope enclosing
5614 the class definition.
5616 [class.static.data]
5618 The definition for a static data member shall appear in a
5619 namespace scope enclosing the member's class definition. */
5620 if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
5621 pedwarn ("definition of %qD is not in namespace enclosing %qT",
5622 decl, DECL_CONTEXT (decl));
5625 /* CTYPE is class type, or null if non-class.
5626 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
5627 or METHOD_TYPE.
5628 DECLARATOR is the function's name.
5629 PARMS is a chain of PARM_DECLs for the function.
5630 VIRTUALP is truthvalue of whether the function is virtual or not.
5631 FLAGS are to be passed through to `grokclassfn'.
5632 QUALS are qualifiers indicating whether the function is `const'
5633 or `volatile'.
5634 RAISES is a list of exceptions that this function can raise.
5635 CHECK is 1 if we must find this method in CTYPE, 0 if we should
5636 not look, and -1 if we should not call `grokclassfn' at all.
5638 SFK is the kind of special function (if any) for the new function.
5640 Returns `NULL_TREE' if something goes wrong, after issuing
5641 applicable error messages. */
5643 static tree
5644 grokfndecl (tree ctype,
5645 tree type,
5646 tree declarator,
5647 tree parms,
5648 tree orig_declarator,
5649 int virtualp,
5650 enum overload_flags flags,
5651 cp_cv_quals quals,
5652 tree raises,
5653 int check,
5654 int friendp,
5655 int publicp,
5656 int inlinep,
5657 special_function_kind sfk,
5658 int funcdef_flag,
5659 int template_count,
5660 tree in_namespace,
5661 tree* attrlist)
5663 tree decl;
5664 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
5665 int has_default_arg = 0;
5666 tree t;
5668 if (raises)
5669 type = build_exception_variant (type, raises);
5671 decl = build_lang_decl (FUNCTION_DECL, declarator, type);
5672 DECL_ARGUMENTS (decl) = parms;
5673 /* Propagate volatile out from type to decl. */
5674 if (TYPE_VOLATILE (type))
5675 TREE_THIS_VOLATILE (decl) = 1;
5677 /* If this decl has namespace scope, set that up. */
5678 if (in_namespace)
5679 set_decl_namespace (decl, in_namespace, friendp);
5680 else if (!ctype)
5681 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5683 /* `main' and builtins have implicit 'C' linkage. */
5684 if ((MAIN_NAME_P (declarator)
5685 || (IDENTIFIER_LENGTH (declarator) > 10
5686 && IDENTIFIER_POINTER (declarator)[0] == '_'
5687 && IDENTIFIER_POINTER (declarator)[1] == '_'
5688 && strncmp (IDENTIFIER_POINTER (declarator)+2, "builtin_", 8) == 0))
5689 && current_lang_name == lang_name_cplusplus
5690 && ctype == NULL_TREE
5691 /* NULL_TREE means global namespace. */
5692 && DECL_CONTEXT (decl) == NULL_TREE)
5693 SET_DECL_LANGUAGE (decl, lang_c);
5695 /* Should probably propagate const out from type to decl I bet (mrs). */
5696 if (staticp)
5698 DECL_STATIC_FUNCTION_P (decl) = 1;
5699 DECL_CONTEXT (decl) = ctype;
5702 if (ctype)
5704 DECL_CONTEXT (decl) = ctype;
5705 if (funcdef_flag)
5706 check_class_member_definition_namespace (decl);
5709 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
5711 if (processing_template_decl)
5712 error ("cannot declare %<::main%> to be a template");
5713 if (inlinep)
5714 error ("cannot declare %<::main%> to be inline");
5715 if (!publicp)
5716 error ("cannot declare %<::main%> to be static");
5717 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
5718 integer_type_node))
5720 tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
5721 tree newtype;
5722 error ("%<::main%> must return %<int%>");
5723 newtype = build_function_type (integer_type_node,
5724 oldtypeargs);
5725 TREE_TYPE (decl) = newtype;
5727 inlinep = 0;
5728 publicp = 1;
5731 /* Members of anonymous types and local classes have no linkage; make
5732 them internal. If a typedef is made later, this will be changed. */
5733 if (ctype && (TYPE_ANONYMOUS_P (ctype)
5734 || decl_function_context (TYPE_MAIN_DECL (ctype))))
5735 publicp = 0;
5737 if (publicp)
5739 /* [basic.link]: A name with no linkage (notably, the name of a class
5740 or enumeration declared in a local scope) shall not be used to
5741 declare an entity with linkage.
5743 Only check this for public decls for now. See core 319, 389. */
5744 t = no_linkage_check (TREE_TYPE (decl),
5745 /*relaxed_p=*/false);
5746 if (t)
5748 if (TYPE_ANONYMOUS_P (t))
5750 if (DECL_EXTERN_C_P (decl))
5751 /* Allow this; it's pretty common in C. */;
5752 else
5754 pedwarn ("non-local function %q#D uses anonymous type",
5755 decl);
5756 if (DECL_ORIGINAL_TYPE (TYPE_NAME (t)))
5757 pedwarn ("%q+#D does not refer to the unqualified "
5758 "type, so it is not used for linkage",
5759 TYPE_NAME (t));
5762 else
5763 pedwarn ("non-local function %q#D uses local type %qT", decl, t);
5767 TREE_PUBLIC (decl) = publicp;
5768 if (! publicp)
5770 DECL_INTERFACE_KNOWN (decl) = 1;
5771 DECL_NOT_REALLY_EXTERN (decl) = 1;
5774 /* If the declaration was declared inline, mark it as such. */
5775 if (inlinep)
5776 DECL_DECLARED_INLINE_P (decl) = 1;
5777 /* We inline functions that are explicitly declared inline, or, when
5778 the user explicitly asks us to, all functions. */
5779 if (DECL_DECLARED_INLINE_P (decl)
5780 || (flag_inline_trees == 2 && !DECL_INLINE (decl) && funcdef_flag))
5781 DECL_INLINE (decl) = 1;
5783 DECL_EXTERNAL (decl) = 1;
5784 if (quals && TREE_CODE (type) == FUNCTION_TYPE)
5786 error ("%smember function %qD cannot have cv-qualifier",
5787 (ctype ? "static " : "non-"), decl);
5788 quals = TYPE_UNQUALIFIED;
5791 if (IDENTIFIER_OPNAME_P (DECL_NAME (decl)))
5792 grok_op_properties (decl, /*complain=*/true);
5794 if (ctype && decl_function_context (decl))
5795 DECL_NO_STATIC_CHAIN (decl) = 1;
5797 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
5798 if (TREE_PURPOSE (t)
5799 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
5801 has_default_arg = 1;
5802 break;
5805 if (friendp
5806 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
5808 if (funcdef_flag)
5809 error
5810 ("defining explicit specialization %qD in friend declaration",
5811 orig_declarator);
5812 else
5814 tree fns = TREE_OPERAND (orig_declarator, 0);
5815 tree args = TREE_OPERAND (orig_declarator, 1);
5817 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
5819 /* Something like `template <class T> friend void f<T>()'. */
5820 error ("invalid use of template-id %qD in declaration "
5821 "of primary template",
5822 orig_declarator);
5823 return NULL_TREE;
5827 /* A friend declaration of the form friend void f<>(). Record
5828 the information in the TEMPLATE_ID_EXPR. */
5829 SET_DECL_IMPLICIT_INSTANTIATION (decl);
5831 if (TREE_CODE (fns) == COMPONENT_REF)
5833 /* Due to bison parser ickiness, we will have already looked
5834 up an operator_name or PFUNCNAME within the current class
5835 (see template_id in parse.y). If the current class contains
5836 such a name, we'll get a COMPONENT_REF here. Undo that. */
5838 gcc_assert (TREE_TYPE (TREE_OPERAND (fns, 0))
5839 == current_class_type);
5840 fns = TREE_OPERAND (fns, 1);
5842 gcc_assert (TREE_CODE (fns) == IDENTIFIER_NODE
5843 || TREE_CODE (fns) == OVERLOAD);
5844 DECL_TEMPLATE_INFO (decl) = tree_cons (fns, args, NULL_TREE);
5846 if (has_default_arg)
5848 error ("default arguments are not allowed in declaration "
5849 "of friend template specialization %qD",
5850 decl);
5851 return NULL_TREE;
5854 if (inlinep)
5856 error ("%<inline%> is not allowed in declaration of friend "
5857 "template specialization %qD",
5858 decl);
5859 return NULL_TREE;
5864 if (funcdef_flag)
5865 /* Make the init_value nonzero so pushdecl knows this is not
5866 tentative. error_mark_node is replaced later with the BLOCK. */
5867 DECL_INITIAL (decl) = error_mark_node;
5869 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
5870 TREE_NOTHROW (decl) = 1;
5872 /* Caller will do the rest of this. */
5873 if (check < 0)
5874 return decl;
5876 if (ctype != NULL_TREE)
5878 if (sfk == sfk_constructor)
5879 DECL_CONSTRUCTOR_P (decl) = 1;
5881 grokclassfn (ctype, decl, flags, quals);
5884 decl = check_explicit_specialization (orig_declarator, decl,
5885 template_count,
5886 2 * (funcdef_flag != 0) +
5887 4 * (friendp != 0));
5888 if (decl == error_mark_node)
5889 return NULL_TREE;
5891 if (attrlist)
5893 cplus_decl_attributes (&decl, *attrlist, 0);
5894 *attrlist = NULL_TREE;
5897 if (ctype != NULL_TREE
5898 && (! TYPE_FOR_JAVA (ctype) || check_java_method (decl))
5899 && check)
5901 tree old_decl;
5903 old_decl = check_classfn (ctype, decl,
5904 (processing_template_decl
5905 > template_class_depth (ctype))
5906 ? current_template_parms
5907 : NULL_TREE);
5909 if (old_decl && TREE_CODE (old_decl) == TEMPLATE_DECL)
5910 /* Because grokfndecl is always supposed to return a
5911 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
5912 here. We depend on our callers to figure out that its
5913 really a template that's being returned. */
5914 old_decl = DECL_TEMPLATE_RESULT (old_decl);
5916 if (old_decl && DECL_STATIC_FUNCTION_P (old_decl)
5917 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
5918 /* Remove the `this' parm added by grokclassfn.
5919 XXX Isn't this done in start_function, too? */
5920 revert_static_member_fn (decl);
5921 if (old_decl && DECL_ARTIFICIAL (old_decl))
5922 error ("definition of implicitly-declared %qD", old_decl);
5924 if (old_decl)
5926 tree ok;
5927 tree pushed_scope;
5929 /* Since we've smashed OLD_DECL to its
5930 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
5931 if (TREE_CODE (decl) == TEMPLATE_DECL)
5932 decl = DECL_TEMPLATE_RESULT (decl);
5934 /* Attempt to merge the declarations. This can fail, in
5935 the case of some invalid specialization declarations. */
5936 pushed_scope = push_scope (ctype);
5937 ok = duplicate_decls (decl, old_decl, friendp);
5938 if (pushed_scope)
5939 pop_scope (pushed_scope);
5940 if (!ok)
5942 error ("no %q#D member function declared in class %qT",
5943 decl, ctype);
5944 return NULL_TREE;
5946 return old_decl;
5950 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
5951 return NULL_TREE;
5953 if (ctype == NULL_TREE || check)
5954 return decl;
5956 if (virtualp)
5957 DECL_VIRTUAL_P (decl) = 1;
5959 return decl;
5962 /* DECL is a VAR_DECL for a static data member. Set flags to reflect
5963 the linkage that DECL will receive in the object file. */
5965 static void
5966 set_linkage_for_static_data_member (tree decl)
5968 /* A static data member always has static storage duration and
5969 external linkage. Note that static data members are forbidden in
5970 local classes -- the only situation in which a class has
5971 non-external linkage. */
5972 TREE_PUBLIC (decl) = 1;
5973 TREE_STATIC (decl) = 1;
5974 /* For non-template classes, static data members are always put
5975 out in exactly those files where they are defined, just as
5976 with ordinary namespace-scope variables. */
5977 if (!processing_template_decl)
5978 DECL_INTERFACE_KNOWN (decl) = 1;
5981 /* Create a VAR_DECL named NAME with the indicated TYPE.
5983 If SCOPE is non-NULL, it is the class type or namespace containing
5984 the variable. If SCOPE is NULL, the variable should is created in
5985 the innermost enclosings scope. */
5987 static tree
5988 grokvardecl (tree type,
5989 tree name,
5990 const cp_decl_specifier_seq *declspecs,
5991 int initialized,
5992 int constp,
5993 tree scope)
5995 tree decl;
5996 tree explicit_scope;
5998 gcc_assert (!name || TREE_CODE (name) == IDENTIFIER_NODE);
6000 /* Compute the scope in which to place the variable, but remember
6001 whether or not that scope was explicitly specified by the user. */
6002 explicit_scope = scope;
6003 if (!scope)
6005 /* An explicit "extern" specifier indicates a namespace-scope
6006 variable. */
6007 if (declspecs->storage_class == sc_extern)
6008 scope = current_namespace;
6009 else if (!at_function_scope_p ())
6010 scope = current_scope ();
6013 if (scope
6014 && (/* If the variable is a namespace-scope variable declared in a
6015 template, we need DECL_LANG_SPECIFIC. */
6016 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
6017 /* Similarly for namespace-scope variables with language linkage
6018 other than C++. */
6019 || (TREE_CODE (scope) == NAMESPACE_DECL
6020 && current_lang_name != lang_name_cplusplus)
6021 /* Similarly for static data members. */
6022 || TYPE_P (scope)))
6023 decl = build_lang_decl (VAR_DECL, name, type);
6024 else
6025 decl = build_decl (VAR_DECL, name, type);
6027 if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
6028 set_decl_namespace (decl, explicit_scope, 0);
6029 else
6030 DECL_CONTEXT (decl) = scope;
6032 if (declspecs->storage_class == sc_extern)
6034 DECL_THIS_EXTERN (decl) = 1;
6035 DECL_EXTERNAL (decl) = !initialized;
6038 if (DECL_CLASS_SCOPE_P (decl))
6040 set_linkage_for_static_data_member (decl);
6041 /* This function is only called with out-of-class definitions. */
6042 DECL_EXTERNAL (decl) = 0;
6043 check_class_member_definition_namespace (decl);
6045 /* At top level, either `static' or no s.c. makes a definition
6046 (perhaps tentative), and absence of `static' makes it public. */
6047 else if (toplevel_bindings_p ())
6049 TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
6050 && (DECL_THIS_EXTERN (decl) || ! constp));
6051 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
6053 /* Not at top level, only `static' makes a static definition. */
6054 else
6056 TREE_STATIC (decl) = declspecs->storage_class == sc_static;
6057 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
6060 if (declspecs->specs[(int)ds_thread])
6062 if (targetm.have_tls)
6063 DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
6064 else
6065 /* A mere warning is sure to result in improper semantics
6066 at runtime. Don't bother to allow this to compile. */
6067 error ("thread-local storage not supported for this target");
6070 if (TREE_PUBLIC (decl))
6072 /* [basic.link]: A name with no linkage (notably, the name of a class
6073 or enumeration declared in a local scope) shall not be used to
6074 declare an entity with linkage.
6076 Only check this for public decls for now. */
6077 tree t = no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false);
6078 if (t)
6080 if (TYPE_ANONYMOUS_P (t))
6082 if (DECL_EXTERN_C_P (decl))
6083 /* Allow this; it's pretty common in C. */
6085 else
6087 /* DRs 132, 319 and 389 seem to indicate types with
6088 no linkage can only be used to declare extern "C"
6089 entities. Since it's not always an error in the
6090 ISO C++ 90 Standard, we only issue a warning. */
6091 warning (0, "non-local variable %q#D uses anonymous type",
6092 decl);
6093 if (DECL_ORIGINAL_TYPE (TYPE_NAME (t)))
6094 warning (0, "%q+#D does not refer to the unqualified "
6095 "type, so it is not used for linkage",
6096 TYPE_NAME (t));
6099 else
6100 warning (0, "non-local variable %q#D uses local type %qT", decl, t);
6103 else
6104 DECL_INTERFACE_KNOWN (decl) = 1;
6106 return decl;
6109 /* Create and return a canonical pointer to member function type, for
6110 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
6112 tree
6113 build_ptrmemfunc_type (tree type)
6115 tree field, fields;
6116 tree t;
6117 tree unqualified_variant = NULL_TREE;
6119 if (type == error_mark_node)
6120 return type;
6122 /* If a canonical type already exists for this type, use it. We use
6123 this method instead of type_hash_canon, because it only does a
6124 simple equality check on the list of field members. */
6126 if ((t = TYPE_GET_PTRMEMFUNC_TYPE (type)))
6127 return t;
6129 /* Make sure that we always have the unqualified pointer-to-member
6130 type first. */
6131 if (cp_type_quals (type) != TYPE_UNQUALIFIED)
6132 unqualified_variant
6133 = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
6135 t = make_aggr_type (RECORD_TYPE);
6136 xref_basetypes (t, NULL_TREE);
6138 /* Let the front-end know this is a pointer to member function... */
6139 TYPE_PTRMEMFUNC_FLAG (t) = 1;
6140 /* ... and not really an aggregate. */
6141 SET_IS_AGGR_TYPE (t, 0);
6143 field = build_decl (FIELD_DECL, pfn_identifier, type);
6144 fields = field;
6146 field = build_decl (FIELD_DECL, delta_identifier, delta_type_node);
6147 TREE_CHAIN (field) = fields;
6148 fields = field;
6150 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
6152 /* Zap out the name so that the back-end will give us the debugging
6153 information for this anonymous RECORD_TYPE. */
6154 TYPE_NAME (t) = NULL_TREE;
6156 /* If this is not the unqualified form of this pointer-to-member
6157 type, set the TYPE_MAIN_VARIANT for this type to be the
6158 unqualified type. Since they are actually RECORD_TYPEs that are
6159 not variants of each other, we must do this manually. */
6160 if (cp_type_quals (type) != TYPE_UNQUALIFIED)
6162 t = build_qualified_type (t, cp_type_quals (type));
6163 TYPE_MAIN_VARIANT (t) = unqualified_variant;
6164 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (unqualified_variant);
6165 TYPE_NEXT_VARIANT (unqualified_variant) = t;
6168 /* Cache this pointer-to-member type so that we can find it again
6169 later. */
6170 TYPE_SET_PTRMEMFUNC_TYPE (type, t);
6172 return t;
6175 /* Create and return a pointer to data member type. */
6177 tree
6178 build_ptrmem_type (tree class_type, tree member_type)
6180 if (TREE_CODE (member_type) == METHOD_TYPE)
6182 tree arg_types;
6184 arg_types = TYPE_ARG_TYPES (member_type);
6185 class_type = (cp_build_qualified_type
6186 (class_type,
6187 cp_type_quals (TREE_TYPE (TREE_VALUE (arg_types)))));
6188 member_type
6189 = build_method_type_directly (class_type,
6190 TREE_TYPE (member_type),
6191 TREE_CHAIN (arg_types));
6192 return build_ptrmemfunc_type (build_pointer_type (member_type));
6194 else
6196 gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
6197 return build_offset_type (class_type, member_type);
6201 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
6202 Check to see that the definition is valid. Issue appropriate error
6203 messages. Return 1 if the definition is particularly bad, or 0
6204 otherwise. */
6207 check_static_variable_definition (tree decl, tree type)
6209 /* Motion 10 at San Diego: If a static const integral data member is
6210 initialized with an integral constant expression, the initializer
6211 may appear either in the declaration (within the class), or in
6212 the definition, but not both. If it appears in the class, the
6213 member is a member constant. The file-scope definition is always
6214 required. */
6215 if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
6217 error ("invalid in-class initialization of static data member "
6218 "of non-integral type %qT",
6219 type);
6220 /* If we just return the declaration, crashes will sometimes
6221 occur. We therefore return void_type_node, as if this were a
6222 friend declaration, to cause callers to completely ignore
6223 this declaration. */
6224 return 1;
6226 else if (!CP_TYPE_CONST_P (type))
6227 error ("ISO C++ forbids in-class initialization of non-const "
6228 "static member %qD",
6229 decl);
6230 else if (pedantic && !INTEGRAL_TYPE_P (type))
6231 pedwarn ("ISO C++ forbids initialization of member constant "
6232 "%qD of non-integral type %qT", decl, type);
6234 return 0;
6237 /* Given the SIZE (i.e., number of elements) in an array, compute an
6238 appropriate index type for the array. If non-NULL, NAME is the
6239 name of the thing being declared. */
6241 tree
6242 compute_array_index_type (tree name, tree size)
6244 tree type = TREE_TYPE (size);
6245 tree itype;
6247 /* The array bound must be an integer type. */
6248 if (!dependent_type_p (type) && !INTEGRAL_TYPE_P (type))
6250 if (name)
6251 error ("size of array %qD has non-integral type %qT", name, type);
6252 else
6253 error ("size of array has non-integral type %qT", type);
6254 size = integer_one_node;
6255 type = TREE_TYPE (size);
6258 if (abi_version_at_least (2)
6259 /* We should only handle value dependent expressions specially. */
6260 ? value_dependent_expression_p (size)
6261 /* But for abi-1, we handled all instances in templates. This
6262 effects the manglings produced. */
6263 : processing_template_decl)
6264 return build_index_type (build_min (MINUS_EXPR, sizetype,
6265 size, integer_one_node));
6267 /* The size might be the result of a cast. */
6268 STRIP_TYPE_NOPS (size);
6270 /* It might be a const variable or enumeration constant. */
6271 size = integral_constant_value (size);
6273 /* Normally, the array-bound will be a constant. */
6274 if (TREE_CODE (size) == INTEGER_CST)
6276 /* Check to see if the array bound overflowed. Make that an
6277 error, no matter how generous we're being. */
6278 int old_flag_pedantic_errors = flag_pedantic_errors;
6279 int old_pedantic = pedantic;
6280 pedantic = flag_pedantic_errors = 1;
6281 constant_expression_warning (size);
6282 pedantic = old_pedantic;
6283 flag_pedantic_errors = old_flag_pedantic_errors;
6285 /* An array must have a positive number of elements. */
6286 if (INT_CST_LT (size, integer_zero_node))
6288 if (name)
6289 error ("size of array %qD is negative", name);
6290 else
6291 error ("size of array is negative");
6292 size = integer_one_node;
6294 /* As an extension we allow zero-sized arrays. We always allow
6295 them in system headers because glibc uses them. */
6296 else if (integer_zerop (size) && pedantic && !in_system_header)
6298 if (name)
6299 pedwarn ("ISO C++ forbids zero-size array %qD", name);
6300 else
6301 pedwarn ("ISO C++ forbids zero-size array");
6304 else if (TREE_CONSTANT (size))
6306 /* `(int) &fn' is not a valid array bound. */
6307 if (name)
6308 error ("size of array %qD is not an integral constant-expression",
6309 name);
6310 else
6311 error ("size of array is not an integral constant-expression");
6313 else if (pedantic)
6315 if (name)
6316 pedwarn ("ISO C++ forbids variable-size array %qD", name);
6317 else
6318 pedwarn ("ISO C++ forbids variable-size array");
6321 if (processing_template_decl && !TREE_CONSTANT (size))
6322 /* A variable sized array. */
6323 itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
6324 else
6326 HOST_WIDE_INT saved_processing_template_decl;
6328 /* Compute the index of the largest element in the array. It is
6329 one less than the number of elements in the array. We save
6330 and restore PROCESSING_TEMPLATE_DECL so that computations in
6331 cp_build_binary_op will be appropriately folded. */
6332 saved_processing_template_decl = processing_template_decl;
6333 processing_template_decl = 0;
6334 itype = cp_build_binary_op (MINUS_EXPR,
6335 cp_convert (ssizetype, size),
6336 cp_convert (ssizetype, integer_one_node));
6337 itype = fold (itype);
6338 processing_template_decl = saved_processing_template_decl;
6340 if (!TREE_CONSTANT (itype))
6341 /* A variable sized array. */
6342 itype = variable_size (itype);
6343 /* Make sure that there was no overflow when creating to a signed
6344 index type. (For example, on a 32-bit machine, an array with
6345 size 2^32 - 1 is too big.) */
6346 else if (TREE_OVERFLOW (itype))
6348 error ("overflow in array dimension");
6349 TREE_OVERFLOW (itype) = 0;
6353 /* Create and return the appropriate index type. */
6354 return build_index_type (itype);
6357 /* Returns the scope (if any) in which the entity declared by
6358 DECLARATOR will be located. If the entity was declared with an
6359 unqualified name, NULL_TREE is returned. */
6361 tree
6362 get_scope_of_declarator (const cp_declarator *declarator)
6364 while (declarator && declarator->kind != cdk_id)
6365 declarator = declarator->declarator;
6367 /* If the declarator-id is a SCOPE_REF, the scope in which the
6368 declaration occurs is the first operand. */
6369 if (declarator
6370 && declarator->u.id.qualifying_scope)
6371 return declarator->u.id.qualifying_scope;
6373 /* Otherwise, the declarator is not a qualified name; the entity will
6374 be declared in the current scope. */
6375 return NULL_TREE;
6378 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
6379 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
6380 with this type. */
6382 static tree
6383 create_array_type_for_decl (tree name, tree type, tree size)
6385 tree itype = NULL_TREE;
6386 const char* error_msg;
6388 /* If things have already gone awry, bail now. */
6389 if (type == error_mark_node || size == error_mark_node)
6390 return error_mark_node;
6392 /* Assume that everything will go OK. */
6393 error_msg = NULL;
6395 /* There are some types which cannot be array elements. */
6396 switch (TREE_CODE (type))
6398 case VOID_TYPE:
6399 error_msg = "array of void";
6400 break;
6402 case FUNCTION_TYPE:
6403 error_msg = "array of functions";
6404 break;
6406 case REFERENCE_TYPE:
6407 error_msg = "array of references";
6408 break;
6410 case METHOD_TYPE:
6411 error_msg = "array of function members";
6412 break;
6414 default:
6415 break;
6418 /* If something went wrong, issue an error-message and return. */
6419 if (error_msg)
6421 if (name)
6422 error ("declaration of %qD as %s", name, error_msg);
6423 else
6424 error ("creating %s", error_msg);
6426 return error_mark_node;
6429 /* [dcl.array]
6431 The constant expressions that specify the bounds of the arrays
6432 can be omitted only for the first member of the sequence. */
6433 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
6435 if (name)
6436 error ("declaration of %qD as multidimensional array must "
6437 "have bounds for all dimensions except the first",
6438 name);
6439 else
6440 error ("multidimensional array must have bounds for all "
6441 "dimensions except the first");
6443 return error_mark_node;
6446 /* Figure out the index type for the array. */
6447 if (size)
6448 itype = compute_array_index_type (name, size);
6450 /* [dcl.array]
6451 T is called the array element type; this type shall not be [...] an
6452 abstract class type. */
6453 abstract_virtuals_error (name, type);
6455 return build_cplus_array_type (type, itype);
6458 /* Check that it's OK to declare a function with the indicated TYPE.
6459 SFK indicates the kind of special function (if any) that this
6460 function is. OPTYPE is the type given in a conversion operator
6461 declaration, or the class type for a constructor/destructor.
6462 Returns the actual return type of the function; that
6463 may be different than TYPE if an error occurs, or for certain
6464 special functions. */
6466 static tree
6467 check_special_function_return_type (special_function_kind sfk,
6468 tree type,
6469 tree optype)
6471 switch (sfk)
6473 case sfk_constructor:
6474 if (type)
6475 error ("return type specification for constructor invalid");
6477 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
6478 type = build_pointer_type (optype);
6479 else
6480 type = void_type_node;
6481 break;
6483 case sfk_destructor:
6484 if (type)
6485 error ("return type specification for destructor invalid");
6486 /* We can't use the proper return type here because we run into
6487 problems with ambiguous bases and covariant returns.
6488 Java classes are left unchanged because (void *) isn't a valid
6489 Java type, and we don't want to change the Java ABI. */
6490 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
6491 type = build_pointer_type (void_type_node);
6492 else
6493 type = void_type_node;
6494 break;
6496 case sfk_conversion:
6497 if (type && !same_type_p (type, optype))
6498 error ("operator %qT declared to return %qT", optype, type);
6499 else if (type)
6500 pedwarn ("return type specified for %<operator %T%>", optype);
6501 type = optype;
6502 break;
6504 default:
6505 gcc_unreachable ();
6508 return type;
6511 /* A variable or data member (whose unqualified name is IDENTIFIER)
6512 has been declared with the indicated TYPE. If the TYPE is not
6513 acceptable, issue an error message and return a type to use for
6514 error-recovery purposes. */
6516 tree
6517 check_var_type (tree identifier, tree type)
6519 if (VOID_TYPE_P (type))
6521 if (!identifier)
6522 error ("unnamed variable or field declared void");
6523 else if (TREE_CODE (identifier) == IDENTIFIER_NODE)
6525 gcc_assert (!IDENTIFIER_OPNAME_P (identifier));
6526 error ("variable or field %qE declared void", identifier);
6528 else
6529 error ("variable or field declared void");
6530 type = integer_type_node;
6533 return type;
6536 /* Given declspecs and a declarator (abstract or otherwise), determine
6537 the name and type of the object declared and construct a DECL node
6538 for it.
6540 DECLSPECS is a chain of tree_list nodes whose value fields
6541 are the storage classes and type specifiers.
6543 DECL_CONTEXT says which syntactic context this declaration is in:
6544 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
6545 FUNCDEF for a function definition. Like NORMAL but a few different
6546 error messages in each case. Return value may be zero meaning
6547 this definition is too screwy to try to parse.
6548 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
6549 handle member functions (which have FIELD context).
6550 Return value may be zero meaning this definition is too screwy to
6551 try to parse.
6552 PARM for a parameter declaration (either within a function prototype
6553 or before a function body). Make a PARM_DECL, or return void_type_node.
6554 CATCHPARM for a parameter declaration before a catch clause.
6555 TYPENAME if for a typename (in a cast or sizeof).
6556 Don't make a DECL node; just return the ..._TYPE node.
6557 FIELD for a struct or union field; make a FIELD_DECL.
6558 BITFIELD for a field with specified width.
6559 INITIALIZED is 1 if the decl has an initializer.
6561 ATTRLIST is a pointer to the list of attributes, which may be NULL
6562 if there are none; *ATTRLIST may be modified if attributes from inside
6563 the declarator should be applied to the declaration.
6565 When this function is called, scoping variables (such as
6566 CURRENT_CLASS_TYPE) should reflect the scope in which the
6567 declaration occurs, not the scope in which the new declaration will
6568 be placed. For example, on:
6570 void S::f() { ... }
6572 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
6573 should not be `S'. */
6575 tree
6576 grokdeclarator (const cp_declarator *declarator,
6577 const cp_decl_specifier_seq *declspecs,
6578 enum decl_context decl_context,
6579 int initialized,
6580 tree* attrlist)
6582 tree type = NULL_TREE;
6583 int longlong = 0;
6584 int type_quals;
6585 int virtualp, explicitp, friendp, inlinep, staticp;
6586 int explicit_int = 0;
6587 int explicit_char = 0;
6588 int defaulted_int = 0;
6589 tree dependant_name = NULL_TREE;
6591 tree typedef_decl = NULL_TREE;
6592 const char *name = NULL;
6593 tree typedef_type = NULL_TREE;
6594 int funcdef_flag = 0;
6595 cp_declarator_kind innermost_code = cdk_error;
6596 int bitfield = 0;
6597 #if 0
6598 /* See the code below that used this. */
6599 tree decl_attr = NULL_TREE;
6600 #endif
6602 /* Keep track of what sort of function is being processed
6603 so that we can warn about default return values, or explicit
6604 return values which do not match prescribed defaults. */
6605 special_function_kind sfk = sfk_none;
6607 tree dname = NULL_TREE;
6608 tree ctor_return_type = NULL_TREE;
6609 enum overload_flags flags = NO_SPECIAL;
6610 cp_cv_quals quals = TYPE_UNQUALIFIED;
6611 tree raises = NULL_TREE;
6612 int template_count = 0;
6613 tree returned_attrs = NULL_TREE;
6614 tree parms = NULL_TREE;
6615 const cp_declarator *id_declarator;
6616 /* The unqualified name of the declarator; either an
6617 IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR. */
6618 tree unqualified_id;
6619 /* The class type, if any, in which this entity is located,
6620 or NULL_TREE if none. Note that this value may be different from
6621 the current class type; for example if an attempt is made to declare
6622 "A::f" inside "B", this value will be "A". */
6623 tree ctype = current_class_type;
6624 /* The NAMESPACE_DECL for the namespace in which this entity is
6625 located. If an unqualified name is used to declare the entity,
6626 this value will be NULL_TREE, even if the entity is located at
6627 namespace scope. */
6628 tree in_namespace = NULL_TREE;
6629 cp_decl_spec ds;
6630 cp_storage_class storage_class;
6631 bool unsigned_p, signed_p, short_p, long_p, thread_p;
6632 bool type_was_error_mark_node = false;
6634 signed_p = declspecs->specs[(int)ds_signed];
6635 unsigned_p = declspecs->specs[(int)ds_unsigned];
6636 short_p = declspecs->specs[(int)ds_short];
6637 long_p = declspecs->specs[(int)ds_long];
6638 thread_p = declspecs->specs[(int)ds_thread];
6640 if (decl_context == FUNCDEF)
6641 funcdef_flag = 1, decl_context = NORMAL;
6642 else if (decl_context == MEMFUNCDEF)
6643 funcdef_flag = -1, decl_context = FIELD;
6644 else if (decl_context == BITFIELD)
6645 bitfield = 1, decl_context = FIELD;
6647 /* Look inside a declarator for the name being declared
6648 and get it as a string, for an error message. */
6649 for (id_declarator = declarator;
6650 id_declarator;
6651 id_declarator = id_declarator->declarator)
6653 if (id_declarator->kind != cdk_id)
6654 innermost_code = id_declarator->kind;
6656 switch (id_declarator->kind)
6658 case cdk_function:
6659 if (id_declarator->declarator
6660 && id_declarator->declarator->kind == cdk_id)
6662 sfk = id_declarator->declarator->u.id.sfk;
6663 if (sfk == sfk_destructor)
6664 flags = DTOR_FLAG;
6666 break;
6668 case cdk_id:
6670 tree qualifying_scope = id_declarator->u.id.qualifying_scope;
6671 tree decl = id_declarator->u.id.unqualified_name;
6672 if (!decl)
6673 break;
6674 if (qualifying_scope)
6676 if (TYPE_P (qualifying_scope))
6678 ctype = qualifying_scope;
6679 if (innermost_code != cdk_function
6680 && current_class_type
6681 && !UNIQUELY_DERIVED_FROM_P (ctype,
6682 current_class_type))
6684 error ("type %qT is not derived from type %qT",
6685 ctype, current_class_type);
6686 return error_mark_node;
6689 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
6690 in_namespace = qualifying_scope;
6692 if (TREE_CODE (decl) == BASELINK)
6693 decl = BASELINK_FUNCTIONS (decl);
6694 if (decl == error_mark_node)
6695 return error_mark_node;
6696 switch (TREE_CODE (decl))
6698 case BIT_NOT_EXPR:
6700 tree type;
6702 if (innermost_code != cdk_function)
6704 error ("declaration of %qD as non-function", decl);
6705 return error_mark_node;
6707 else if (!qualifying_scope
6708 && !(current_class_type && at_class_scope_p ()))
6710 error ("declaration of %qD as non-member", decl);
6711 return error_mark_node;
6714 type = TREE_OPERAND (decl, 0);
6715 name = IDENTIFIER_POINTER (constructor_name (type));
6717 break;
6719 case TEMPLATE_ID_EXPR:
6721 tree fns = TREE_OPERAND (decl, 0);
6723 dname = fns;
6724 if (TREE_CODE (dname) == COMPONENT_REF)
6725 dname = TREE_OPERAND (dname, 1);
6726 if (TREE_CODE (dname) != IDENTIFIER_NODE)
6728 gcc_assert (is_overloaded_fn (dname));
6729 dname = DECL_NAME (get_first_fn (dname));
6732 /* Fall through. */
6734 case IDENTIFIER_NODE:
6735 if (TREE_CODE (decl) == IDENTIFIER_NODE)
6736 dname = decl;
6738 if (C_IS_RESERVED_WORD (dname))
6740 error ("declarator-id missing; using reserved word %qD",
6741 dname);
6742 name = IDENTIFIER_POINTER (dname);
6744 else if (!IDENTIFIER_TYPENAME_P (dname))
6745 name = IDENTIFIER_POINTER (dname);
6746 else
6748 gcc_assert (flags == NO_SPECIAL);
6749 flags = TYPENAME_FLAG;
6750 ctor_return_type = TREE_TYPE (dname);
6751 sfk = sfk_conversion;
6752 if (is_typename_at_global_scope (dname))
6753 name = IDENTIFIER_POINTER (dname);
6754 else
6755 name = "<invalid operator>";
6757 break;
6759 case TYPE_DECL:
6760 dname = constructor_name (TREE_TYPE (decl));
6761 name = IDENTIFIER_POINTER (dname);
6762 break;
6764 default:
6765 gcc_unreachable ();
6767 break;
6769 case cdk_array:
6770 case cdk_pointer:
6771 case cdk_reference:
6772 case cdk_ptrmem:
6773 break;
6775 case cdk_error:
6776 break;
6778 default:
6779 gcc_unreachable ();
6782 if (id_declarator->kind == cdk_id)
6783 break;
6786 /* A function definition's declarator must have the form of
6787 a function declarator. */
6789 if (funcdef_flag && innermost_code != cdk_function)
6790 return 0;
6792 if (((dname && IDENTIFIER_OPNAME_P (dname)) || flags == TYPENAME_FLAG)
6793 && innermost_code != cdk_function
6794 && ! (ctype && !declspecs->any_specifiers_p))
6796 error ("declaration of %qD as non-function", dname);
6797 return error_mark_node;
6800 /* Anything declared one level down from the top level
6801 must be one of the parameters of a function
6802 (because the body is at least two levels down). */
6804 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
6805 by not allowing C++ class definitions to specify their parameters
6806 with xdecls (must be spec.d in the parmlist).
6808 Since we now wait to push a class scope until we are sure that
6809 we are in a legitimate method context, we must set oldcname
6810 explicitly (since current_class_name is not yet alive).
6812 We also want to avoid calling this a PARM if it is in a namespace. */
6814 if (decl_context == NORMAL && !toplevel_bindings_p ())
6816 struct cp_binding_level *b = current_binding_level;
6817 current_binding_level = b->level_chain;
6818 if (current_binding_level != 0 && toplevel_bindings_p ())
6819 decl_context = PARM;
6820 current_binding_level = b;
6823 if (name == NULL)
6824 name = decl_context == PARM ? "parameter" : "type name";
6826 /* If there were multiple types specified in the decl-specifier-seq,
6827 issue an error message. */
6828 if (declspecs->multiple_types_p)
6829 error ("two or more data types in declaration of %qs", name);
6830 /* Extract the basic type from the decl-specifier-seq. */
6831 type = declspecs->type;
6832 if (type == error_mark_node)
6834 type = NULL_TREE;
6835 type_was_error_mark_node = true;
6837 /* If the entire declaration is itself tagged as deprecated then
6838 suppress reports of deprecated items. */
6839 if (type && TREE_DEPRECATED (type)
6840 && deprecated_state != DEPRECATED_SUPPRESS)
6841 warn_deprecated_use (type);
6842 if (type && TREE_CODE (type) == TYPE_DECL)
6844 typedef_decl = type;
6845 type = TREE_TYPE (typedef_decl);
6847 /* No type at all: default to `int', and set DEFAULTED_INT
6848 because it was not a user-defined typedef. */
6849 if (type == NULL_TREE && (signed_p || unsigned_p || long_p || short_p))
6851 /* These imply 'int'. */
6852 type = integer_type_node;
6853 defaulted_int = 1;
6855 /* Gather flags. */
6856 explicit_int = declspecs->explicit_int_p;
6857 explicit_char = declspecs->explicit_char_p;
6859 /* Check for repeated decl-specifiers. */
6860 for (ds = ds_first; ds != ds_last; ++ds)
6862 unsigned count = declspecs->specs[(int)ds];
6863 if (count < 2)
6864 continue;
6865 /* The "long" specifier is a special case because of
6866 "long long". */
6867 if (ds == ds_long)
6869 if (count > 2)
6870 error ("%<long long long%> is too long for GCC");
6871 else if (pedantic && !in_system_header && warn_long_long)
6872 pedwarn ("ISO C++ does not support %<long long%>");
6873 else
6874 longlong = 1;
6876 else if (declspecs->specs[(int)ds] > 1)
6878 static const char *const decl_spec_names[] = {
6879 "signed",
6880 "unsigned",
6881 "short",
6882 "long",
6883 "const",
6884 "volatile",
6885 "restrict",
6886 "inline",
6887 "virtual",
6888 "explicit",
6889 "friend",
6890 "typedef",
6891 "__complex",
6892 "__thread"
6894 error ("duplicate %qs", decl_spec_names[(int)ds]);
6898 #if 0
6899 /* See the code below that used this. */
6900 if (typedef_decl)
6901 decl_attr = DECL_ATTRIBUTES (typedef_decl);
6902 #endif
6903 typedef_type = type;
6906 if (sfk != sfk_conversion)
6907 ctor_return_type = ctype;
6909 if (sfk != sfk_none)
6910 type = check_special_function_return_type (sfk, type,
6911 ctor_return_type);
6912 else if (type == NULL_TREE)
6914 int is_main;
6916 explicit_int = -1;
6918 /* We handle `main' specially here, because 'main () { }' is so
6919 common. With no options, it is allowed. With -Wreturn-type,
6920 it is a warning. It is only an error with -pedantic-errors. */
6921 is_main = (funcdef_flag
6922 && dname && MAIN_NAME_P (dname)
6923 && ctype == NULL_TREE
6924 && in_namespace == NULL_TREE
6925 && current_namespace == global_namespace);
6927 if (type_was_error_mark_node)
6928 /* We've already issued an error, don't complain more. */;
6929 else if (in_system_header || flag_ms_extensions)
6930 /* Allow it, sigh. */;
6931 else if (pedantic || ! is_main)
6932 pedwarn ("ISO C++ forbids declaration of %qs with no type", name);
6933 else if (warn_return_type)
6934 warning (0, "ISO C++ forbids declaration of %qs with no type", name);
6936 type = integer_type_node;
6939 ctype = NULL_TREE;
6941 /* Now process the modifiers that were specified
6942 and check for invalid combinations. */
6944 /* Long double is a special combination. */
6945 if (long_p && TYPE_MAIN_VARIANT (type) == double_type_node)
6947 long_p = false;
6948 type = build_qualified_type (long_double_type_node,
6949 cp_type_quals (type));
6952 /* Check all other uses of type modifiers. */
6954 if (unsigned_p || signed_p || long_p || short_p)
6956 int ok = 0;
6958 if (TREE_CODE (type) == REAL_TYPE)
6959 error ("short, signed or unsigned invalid for %qs", name);
6960 else if (TREE_CODE (type) != INTEGER_TYPE)
6961 error ("long, short, signed or unsigned invalid for %qs", name);
6962 else if (long_p && short_p)
6963 error ("long and short specified together for %qs", name);
6964 else if ((long_p || short_p) && explicit_char)
6965 error ("long or short specified with char for %qs", name);
6966 else if ((long_p|| short_p) && TREE_CODE (type) == REAL_TYPE)
6967 error ("long or short specified with floating type for %qs", name);
6968 else if (signed_p && unsigned_p)
6969 error ("signed and unsigned given together for %qs", name);
6970 else
6972 ok = 1;
6973 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
6975 pedwarn ("long, short, signed or unsigned used invalidly for %qs",
6976 name);
6977 if (flag_pedantic_errors)
6978 ok = 0;
6982 /* Discard the type modifiers if they are invalid. */
6983 if (! ok)
6985 unsigned_p = false;
6986 signed_p = false;
6987 long_p = false;
6988 short_p = false;
6989 longlong = 0;
6993 /* Decide whether an integer type is signed or not.
6994 Optionally treat bitfields as signed by default. */
6995 if (unsigned_p
6996 /* [class.bit]
6998 It is implementation-defined whether a plain (neither
6999 explicitly signed or unsigned) char, short, int, or long
7000 bit-field is signed or unsigned.
7002 Naturally, we extend this to long long as well. Note that
7003 this does not include wchar_t. */
7004 || (bitfield && !flag_signed_bitfields
7005 && !signed_p
7006 /* A typedef for plain `int' without `signed' can be
7007 controlled just like plain `int', but a typedef for
7008 `signed int' cannot be so controlled. */
7009 && !(typedef_decl
7010 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
7011 && (TREE_CODE (type) == INTEGER_TYPE
7012 || TREE_CODE (type) == CHAR_TYPE)
7013 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
7015 if (longlong)
7016 type = long_long_unsigned_type_node;
7017 else if (long_p)
7018 type = long_unsigned_type_node;
7019 else if (short_p)
7020 type = short_unsigned_type_node;
7021 else if (type == char_type_node)
7022 type = unsigned_char_type_node;
7023 else if (typedef_decl)
7024 type = c_common_unsigned_type (type);
7025 else
7026 type = unsigned_type_node;
7028 else if (signed_p && type == char_type_node)
7029 type = signed_char_type_node;
7030 else if (longlong)
7031 type = long_long_integer_type_node;
7032 else if (long_p)
7033 type = long_integer_type_node;
7034 else if (short_p)
7035 type = short_integer_type_node;
7037 if (declspecs->specs[(int)ds_complex])
7039 if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
7040 error ("complex invalid for %qs", name);
7041 /* If we just have "complex", it is equivalent to
7042 "complex double", but if any modifiers at all are specified it is
7043 the complex form of TYPE. E.g, "complex short" is
7044 "complex short int". */
7046 else if (defaulted_int && ! longlong
7047 && ! (long_p || short_p || signed_p || unsigned_p))
7048 type = complex_double_type_node;
7049 else if (type == integer_type_node)
7050 type = complex_integer_type_node;
7051 else if (type == float_type_node)
7052 type = complex_float_type_node;
7053 else if (type == double_type_node)
7054 type = complex_double_type_node;
7055 else if (type == long_double_type_node)
7056 type = complex_long_double_type_node;
7057 else
7058 type = build_complex_type (type);
7061 type_quals = TYPE_UNQUALIFIED;
7062 if (declspecs->specs[(int)ds_const])
7063 type_quals |= TYPE_QUAL_CONST;
7064 if (declspecs->specs[(int)ds_volatile])
7065 type_quals |= TYPE_QUAL_VOLATILE;
7066 if (declspecs->specs[(int)ds_restrict])
7067 type_quals |= TYPE_QUAL_RESTRICT;
7068 if (sfk == sfk_conversion && type_quals != TYPE_UNQUALIFIED)
7069 error ("qualifiers are not allowed on declaration of %<operator %T%>",
7070 ctor_return_type);
7072 if (TREE_CODE (type) == FUNCTION_TYPE
7073 && type_quals != TYPE_UNQUALIFIED)
7075 /* This was an error in C++98 (cv-qualifiers cannot be added to
7076 a function type), but DR 295 makes the code well-formed by
7077 dropping the extra qualifiers. */
7078 if (pedantic)
7080 tree bad_type = build_qualified_type (type, type_quals);
7081 pedwarn ("ignoring %qV qualifiers added to function type %qT",
7082 bad_type, type);
7084 type_quals = TYPE_UNQUALIFIED;
7086 type_quals |= cp_type_quals (type);
7087 type = cp_build_qualified_type_real
7088 (type, type_quals, ((typedef_decl && !DECL_ARTIFICIAL (typedef_decl)
7089 ? tf_ignore_bad_quals : 0) | tf_error | tf_warning));
7090 /* We might have ignored or rejected some of the qualifiers. */
7091 type_quals = cp_type_quals (type);
7093 staticp = 0;
7094 inlinep = !! declspecs->specs[(int)ds_inline];
7095 virtualp = !! declspecs->specs[(int)ds_virtual];
7096 explicitp = !! declspecs->specs[(int)ds_explicit];
7098 storage_class = declspecs->storage_class;
7099 if (storage_class == sc_static)
7100 staticp = 1 + (decl_context == FIELD);
7102 if (virtualp && staticp == 2)
7104 error ("member %qD cannot be declared both virtual and static", dname);
7105 staticp = 0;
7107 friendp = !! declspecs->specs[(int)ds_friend];
7109 if (dependant_name && !friendp)
7111 error ("%<%T::%D%> is not a valid declarator", ctype, dependant_name);
7112 return void_type_node;
7115 /* Issue errors about use of storage classes for parameters. */
7116 if (decl_context == PARM)
7118 if (declspecs->specs[(int)ds_typedef])
7119 error ("typedef declaration invalid in parameter declaration");
7120 else if (storage_class == sc_static
7121 || storage_class == sc_extern
7122 || thread_p)
7123 error ("storage class specifiers invalid in parameter declarations");
7126 /* Give error if `virtual' is used outside of class declaration. */
7127 if (virtualp
7128 && (current_class_name == NULL_TREE || decl_context != FIELD))
7130 error ("virtual outside class declaration");
7131 virtualp = 0;
7134 /* Static anonymous unions are dealt with here. */
7135 if (staticp && decl_context == TYPENAME
7136 && declspecs->type
7137 && ANON_AGGR_TYPE_P (declspecs->type))
7138 decl_context = FIELD;
7140 /* Warn about storage classes that are invalid for certain
7141 kinds of declarations (parameters, typenames, etc.). */
7142 if (declspecs->multiple_storage_classes_p)
7144 error ("multiple storage classes in declaration of %qs", name);
7145 storage_class = sc_none;
7147 else if (thread_p
7148 && ((storage_class
7149 && storage_class != sc_extern
7150 && storage_class != sc_static)
7151 || declspecs->specs[(int)ds_typedef]))
7153 error ("multiple storage classes in declaration of %qs", name);
7154 thread_p = false;
7156 else if (decl_context != NORMAL
7157 && ((storage_class != sc_none
7158 && storage_class != sc_mutable)
7159 || thread_p))
7161 if ((decl_context == PARM || decl_context == CATCHPARM)
7162 && (storage_class == sc_register
7163 || storage_class == sc_auto))
7165 else if (declspecs->specs[(int)ds_typedef])
7167 else if (decl_context == FIELD
7168 /* C++ allows static class elements. */
7169 && storage_class == sc_static)
7170 /* C++ also allows inlines and signed and unsigned elements,
7171 but in those cases we don't come in here. */
7173 else
7175 if (decl_context == FIELD)
7176 error ("storage class specified for %qs", name);
7177 else
7179 if (decl_context == PARM || decl_context == CATCHPARM)
7180 error ("storage class specified for parameter %qs", name);
7181 else
7182 error ("storage class specified for typename");
7184 if (storage_class == sc_register
7185 || storage_class == sc_auto
7186 || storage_class == sc_extern
7187 || thread_p)
7188 storage_class = sc_none;
7191 else if (storage_class == sc_extern && initialized
7192 && !funcdef_flag)
7194 if (toplevel_bindings_p ())
7196 /* It's common practice (and completely valid) to have a const
7197 be initialized and declared extern. */
7198 if (!(type_quals & TYPE_QUAL_CONST))
7199 warning (0, "%qs initialized and declared %<extern%>", name);
7201 else
7202 error ("%qs has both %<extern%> and initializer", name);
7204 else if (storage_class == sc_extern && funcdef_flag
7205 && ! toplevel_bindings_p ())
7206 error ("nested function %qs declared %<extern%>", name);
7207 else if (toplevel_bindings_p ())
7209 if (storage_class == sc_auto)
7210 error ("top-level declaration of %qs specifies %<auto%>", name);
7212 else if (thread_p
7213 && storage_class != sc_extern
7214 && storage_class != sc_static)
7216 error ("function-scope %qs implicitly auto and declared %<__thread%>",
7217 name);
7218 thread_p = false;
7221 if (storage_class && friendp)
7222 error ("storage class specifiers invalid in friend function declarations");
7224 if (!id_declarator)
7225 unqualified_id = NULL_TREE;
7226 else
7228 unqualified_id = id_declarator->u.id.unqualified_name;
7229 if (TREE_CODE (unqualified_id) == BASELINK)
7230 unqualified_id = BASELINK_FUNCTIONS (unqualified_id);
7231 switch (TREE_CODE (unqualified_id))
7233 case BIT_NOT_EXPR:
7234 unqualified_id
7235 = constructor_name (TREE_OPERAND (unqualified_id, 0));
7236 break;
7238 case TYPE_DECL:
7239 unqualified_id
7240 = constructor_name (TREE_TYPE (unqualified_id));
7241 break;
7243 case IDENTIFIER_NODE:
7244 case TEMPLATE_ID_EXPR:
7245 break;
7247 default:
7248 gcc_unreachable ();
7252 /* Determine the type of the entity declared by recurring on the
7253 declarator. */
7254 for (; declarator; declarator = declarator->declarator)
7256 const cp_declarator *inner_declarator;
7257 tree attrs;
7259 if (type == error_mark_node)
7260 return error_mark_node;
7262 attrs = declarator->attributes;
7263 if (attrs)
7265 int attr_flags;
7267 attr_flags = 0;
7268 if (declarator == NULL || declarator->kind == cdk_id)
7269 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
7270 if (declarator->kind == cdk_function)
7271 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
7272 if (declarator->kind == cdk_array)
7273 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
7274 returned_attrs = decl_attributes (&type,
7275 chainon (returned_attrs, attrs),
7276 attr_flags);
7279 if (declarator->kind == cdk_id)
7280 break;
7282 inner_declarator = declarator->declarator;
7284 switch (declarator->kind)
7286 case cdk_array:
7287 type = create_array_type_for_decl (dname, type,
7288 declarator->u.array.bounds);
7289 break;
7291 case cdk_function:
7293 tree arg_types;
7294 int funcdecl_p;
7296 /* Declaring a function type.
7297 Make sure we have a valid type for the function to return. */
7299 /* We now know that the TYPE_QUALS don't apply to the
7300 decl, but to its return type. */
7301 type_quals = TYPE_UNQUALIFIED;
7303 /* Warn about some types functions can't return. */
7305 if (TREE_CODE (type) == FUNCTION_TYPE)
7307 error ("%qs declared as function returning a function", name);
7308 type = integer_type_node;
7310 if (TREE_CODE (type) == ARRAY_TYPE)
7312 error ("%qs declared as function returning an array", name);
7313 type = integer_type_node;
7316 /* Pick up type qualifiers which should be applied to `this'. */
7317 quals = declarator->u.function.qualifiers;
7319 /* Pick up the exception specifications. */
7320 raises = declarator->u.function.exception_specification;
7322 /* Say it's a definition only for the CALL_EXPR
7323 closest to the identifier. */
7324 funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
7326 if (ctype == NULL_TREE
7327 && decl_context == FIELD
7328 && funcdecl_p
7329 && (friendp == 0 || dname == current_class_name))
7330 ctype = current_class_type;
7332 if (ctype && sfk == sfk_conversion)
7333 TYPE_HAS_CONVERSION (ctype) = 1;
7334 if (ctype && (sfk == sfk_constructor
7335 || sfk == sfk_destructor))
7337 /* We are within a class's scope. If our declarator name
7338 is the same as the class name, and we are defining
7339 a function, then it is a constructor/destructor, and
7340 therefore returns a void type. */
7342 if (flags == DTOR_FLAG)
7344 /* ISO C++ 12.4/2. A destructor may not be
7345 declared const or volatile. A destructor may
7346 not be static. */
7347 if (staticp == 2)
7348 error ("destructor cannot be static member function");
7349 if (quals)
7351 error ("destructors may not be cv-qualified");
7352 quals = TYPE_UNQUALIFIED;
7354 if (decl_context == FIELD)
7356 if (! member_function_or_else (ctype,
7357 current_class_type,
7358 flags))
7359 return void_type_node;
7362 else /* It's a constructor. */
7364 if (explicitp == 1)
7365 explicitp = 2;
7366 /* ISO C++ 12.1. A constructor may not be
7367 declared const or volatile. A constructor may
7368 not be virtual. A constructor may not be
7369 static. */
7370 if (staticp == 2)
7371 error ("constructor cannot be static member function");
7372 if (virtualp)
7374 pedwarn ("constructors cannot be declared virtual");
7375 virtualp = 0;
7377 if (quals)
7379 error ("constructors may not be cv-qualified");
7380 quals = TYPE_UNQUALIFIED;
7382 if (decl_context == FIELD)
7384 if (! member_function_or_else (ctype,
7385 current_class_type,
7386 flags))
7387 return void_type_node;
7388 TYPE_HAS_CONSTRUCTOR (ctype) = 1;
7389 if (sfk != sfk_constructor)
7390 return NULL_TREE;
7393 if (decl_context == FIELD)
7394 staticp = 0;
7396 else if (friendp)
7398 if (initialized)
7399 error ("can't initialize friend function %qs", name);
7400 if (virtualp)
7402 /* Cannot be both friend and virtual. */
7403 error ("virtual functions cannot be friends");
7404 friendp = 0;
7406 if (decl_context == NORMAL)
7407 error ("friend declaration not in class definition");
7408 if (current_function_decl && funcdef_flag)
7409 error ("can't define friend function %qs in a local "
7410 "class definition",
7411 name);
7414 arg_types = grokparms (declarator->u.function.parameters,
7415 &parms);
7417 if (inner_declarator
7418 && inner_declarator->kind == cdk_id
7419 && inner_declarator->u.id.sfk == sfk_destructor
7420 && arg_types != void_list_node)
7422 error ("destructors may not have parameters");
7423 arg_types = void_list_node;
7424 parms = NULL_TREE;
7427 type = build_function_type (type, arg_types);
7428 type = cp_build_qualified_type (type, quals);
7430 break;
7432 case cdk_pointer:
7433 case cdk_reference:
7434 case cdk_ptrmem:
7435 /* Filter out pointers-to-references and references-to-references.
7436 We can get these if a TYPE_DECL is used. */
7438 if (TREE_CODE (type) == REFERENCE_TYPE)
7440 error (declarator->kind == cdk_reference
7441 ? "cannot declare reference to %q#T"
7442 : "cannot declare pointer to %q#T", type);
7443 type = TREE_TYPE (type);
7445 else if (VOID_TYPE_P (type))
7447 if (declarator->kind == cdk_reference)
7448 error ("cannot declare reference to %q#T", type);
7449 else if (declarator->kind == cdk_ptrmem)
7450 error ("cannot declare pointer to %q#T member", type);
7453 /* We now know that the TYPE_QUALS don't apply to the decl,
7454 but to the target of the pointer. */
7455 type_quals = TYPE_UNQUALIFIED;
7457 if (declarator->kind == cdk_ptrmem
7458 && (TREE_CODE (type) == FUNCTION_TYPE
7459 || (quals && TREE_CODE (type) == METHOD_TYPE)))
7461 tree dummy;
7463 /* If the type is a FUNCTION_TYPE, pick up the
7464 qualifiers from that function type. No other
7465 qualifiers may be supplied. */
7466 if (TREE_CODE (type) == FUNCTION_TYPE)
7467 quals = cp_type_quals (type);
7469 dummy = build_decl (TYPE_DECL, NULL_TREE, type);
7470 grok_method_quals (declarator->u.pointer.class_type,
7471 dummy, quals);
7472 type = TREE_TYPE (dummy);
7473 quals = TYPE_UNQUALIFIED;
7476 if (declarator->kind == cdk_reference)
7478 if (!VOID_TYPE_P (type))
7479 type = build_reference_type (type);
7481 else if (TREE_CODE (type) == METHOD_TYPE)
7482 type = build_ptrmemfunc_type (build_pointer_type (type));
7483 else if (declarator->kind == cdk_ptrmem)
7485 /* We might have parsed a namespace as the class type. */
7486 if (TREE_CODE (declarator->u.pointer.class_type)
7487 == NAMESPACE_DECL)
7489 error ("%qD is a namespace",
7490 declarator->u.pointer.class_type);
7491 type = build_pointer_type (type);
7493 else if (declarator->u.pointer.class_type == error_mark_node)
7494 /* We will already have complained. */
7495 type = error_mark_node;
7496 else
7497 type = build_ptrmem_type (declarator->u.pointer.class_type,
7498 type);
7500 else
7501 type = build_pointer_type (type);
7503 /* Process a list of type modifier keywords (such as
7504 const or volatile) that were given inside the `*' or `&'. */
7506 if (declarator->u.pointer.qualifiers)
7508 type
7509 = cp_build_qualified_type (type,
7510 declarator->u.pointer.qualifiers);
7511 type_quals = cp_type_quals (type);
7513 ctype = NULL_TREE;
7514 break;
7516 case cdk_error:
7517 break;
7519 default:
7520 gcc_unreachable ();
7524 if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
7525 && TREE_CODE (type) != FUNCTION_TYPE
7526 && TREE_CODE (type) != METHOD_TYPE)
7528 error ("template-id %qD used as a declarator",
7529 unqualified_id);
7530 unqualified_id = dname;
7533 /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
7534 qualified with a class-name, turn it into a METHOD_TYPE, unless
7535 we know that the function is static. We take advantage of this
7536 opportunity to do other processing that pertains to entities
7537 explicitly declared to be class members. Note that if DECLARATOR
7538 is non-NULL, we know it is a cdk_id declarator; otherwise, we
7539 would not have exited the loop above. */
7540 if (declarator
7541 && declarator->u.id.qualifying_scope
7542 && TYPE_P (declarator->u.id.qualifying_scope))
7544 tree t;
7546 ctype = declarator->u.id.qualifying_scope;
7547 ctype = TYPE_MAIN_VARIANT (ctype);
7548 t = ctype;
7549 while (t != NULL_TREE && CLASS_TYPE_P (t))
7551 /* You're supposed to have one `template <...>' for every
7552 template class, but you don't need one for a full
7553 specialization. For example:
7555 template <class T> struct S{};
7556 template <> struct S<int> { void f(); };
7557 void S<int>::f () {}
7559 is correct; there shouldn't be a `template <>' for the
7560 definition of `S<int>::f'. */
7561 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t)
7562 && !any_dependent_template_arguments_p (CLASSTYPE_TI_ARGS (t)))
7563 /* T is an explicit (not partial) specialization. All
7564 containing classes must therefore also be explicitly
7565 specialized. */
7566 break;
7567 if ((CLASSTYPE_USE_TEMPLATE (t) || CLASSTYPE_IS_TEMPLATE (t))
7568 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)))
7569 template_count += 1;
7571 t = TYPE_MAIN_DECL (t);
7572 t = DECL_CONTEXT (t);
7575 if (ctype == current_class_type)
7576 pedwarn ("extra qualification %<%T::%> on member %qs",
7577 ctype, name);
7578 else if (TREE_CODE (type) == FUNCTION_TYPE)
7580 tree sname = declarator->u.id.unqualified_name;
7582 if (TREE_CODE (sname) == IDENTIFIER_NODE
7583 && NEW_DELETE_OPNAME_P (sname))
7584 /* Overloaded operator new and operator delete
7585 are always static functions. */
7587 else if (current_class_type == NULL_TREE || friendp)
7588 type
7589 = build_method_type_directly (ctype,
7590 TREE_TYPE (type),
7591 TYPE_ARG_TYPES (type));
7592 else
7594 error ("cannot declare member function %<%T::%s%> within %<%T%>",
7595 ctype, name, current_class_type);
7596 return error_mark_node;
7599 else if (declspecs->specs[(int)ds_typedef]
7600 || COMPLETE_TYPE_P (complete_type (ctype)))
7602 /* Have to move this code elsewhere in this function.
7603 this code is used for i.e., typedef int A::M; M *pm;
7605 It is? How? jason 10/2/94 */
7607 if (current_class_type)
7609 error ("cannot declare member %<%T::%s%> within %qT",
7610 ctype, name, current_class_type);
7611 return void_type_node;
7614 else
7616 cxx_incomplete_type_error (NULL_TREE, ctype);
7617 return error_mark_node;
7621 /* Now TYPE has the actual type. */
7623 if (returned_attrs)
7625 if (attrlist)
7626 *attrlist = chainon (returned_attrs, *attrlist);
7627 else
7628 attrlist = &returned_attrs;
7631 /* Did array size calculations overflow? */
7633 if (TREE_CODE (type) == ARRAY_TYPE
7634 && COMPLETE_TYPE_P (type)
7635 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
7636 && TREE_OVERFLOW (TYPE_SIZE_UNIT (type)))
7638 error ("size of array %qs is too large", name);
7639 /* If we proceed with the array type as it is, we'll eventually
7640 crash in tree_low_cst(). */
7641 type = error_mark_node;
7644 if ((decl_context == FIELD || decl_context == PARM)
7645 && !processing_template_decl
7646 && variably_modified_type_p (type, NULL_TREE))
7648 if (decl_context == FIELD)
7649 error ("data member may not have variably modified type %qT", type);
7650 else
7651 error ("parameter may not have variably modified type %qT", type);
7652 type = error_mark_node;
7655 if (explicitp == 1 || (explicitp && friendp))
7657 /* [dcl.fct.spec] The explicit specifier shall only be used in
7658 declarations of constructors within a class definition. */
7659 error ("only declarations of constructors can be %<explicit%>");
7660 explicitp = 0;
7663 if (storage_class == sc_mutable)
7665 if (decl_context != FIELD || friendp)
7667 error ("non-member %qs cannot be declared %<mutable%>", name);
7668 storage_class = sc_none;
7670 else if (decl_context == TYPENAME || declspecs->specs[(int)ds_typedef])
7672 error ("non-object member %qs cannot be declared %<mutable%>", name);
7673 storage_class = sc_none;
7675 else if (TREE_CODE (type) == FUNCTION_TYPE
7676 || TREE_CODE (type) == METHOD_TYPE)
7678 error ("function %qs cannot be declared %<mutable%>", name);
7679 storage_class = sc_none;
7681 else if (staticp)
7683 error ("static %qs cannot be declared %<mutable%>", name);
7684 storage_class = sc_none;
7686 else if (type_quals & TYPE_QUAL_CONST)
7688 error ("const %qs cannot be declared %<mutable%>", name);
7689 storage_class = sc_none;
7693 /* If this is declaring a typedef name, return a TYPE_DECL. */
7694 if (declspecs->specs[(int)ds_typedef] && decl_context != TYPENAME)
7696 tree decl;
7698 /* Note that the grammar rejects storage classes
7699 in typenames, fields or parameters. */
7700 if (current_lang_name == lang_name_java)
7701 TYPE_FOR_JAVA (type) = 1;
7703 if (decl_context == FIELD)
7704 decl = build_lang_decl (TYPE_DECL, unqualified_id, type);
7705 else
7706 decl = build_decl (TYPE_DECL, unqualified_id, type);
7707 if (id_declarator && declarator->u.id.qualifying_scope)
7708 error ("%Jtypedef name may not be a nested-name-specifier", decl);
7710 if (decl_context != FIELD)
7712 if (!current_function_decl)
7713 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
7714 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (current_function_decl)
7715 || (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P
7716 (current_function_decl)))
7717 /* The TYPE_DECL is "abstract" because there will be
7718 clones of this constructor/destructor, and there will
7719 be copies of this TYPE_DECL generated in those
7720 clones. */
7721 DECL_ABSTRACT (decl) = 1;
7723 else if (constructor_name_p (unqualified_id, current_class_type))
7724 pedwarn ("ISO C++ forbids nested type %qD with same name "
7725 "as enclosing class",
7726 unqualified_id);
7728 /* If the user declares "typedef struct {...} foo" then the
7729 struct will have an anonymous name. Fill that name in now.
7730 Nothing can refer to it, so nothing needs know about the name
7731 change. */
7732 if (type != error_mark_node
7733 && unqualified_id
7734 && TYPE_NAME (type)
7735 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
7736 && TYPE_ANONYMOUS_P (type)
7737 /* Don't do this if there are attributes. */
7738 && (!attrlist || !*attrlist)
7739 && cp_type_quals (type) == TYPE_UNQUALIFIED)
7741 tree oldname = TYPE_NAME (type);
7742 tree t;
7744 /* Replace the anonymous name with the real name everywhere. */
7745 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
7746 if (TYPE_NAME (t) == oldname)
7747 TYPE_NAME (t) = decl;
7749 if (TYPE_LANG_SPECIFIC (type))
7750 TYPE_WAS_ANONYMOUS (type) = 1;
7752 /* If this is a typedef within a template class, the nested
7753 type is a (non-primary) template. The name for the
7754 template needs updating as well. */
7755 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
7756 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
7757 = TYPE_IDENTIFIER (type);
7759 /* FIXME remangle member functions; member functions of a
7760 type with external linkage have external linkage. */
7763 if (quals)
7765 if (ctype == NULL_TREE)
7767 if (TREE_CODE (type) == METHOD_TYPE)
7768 ctype = TYPE_METHOD_BASETYPE (type);
7769 /* Any qualifiers on a function type typedef have
7770 already been dealt with. */
7771 else if (TREE_CODE (type) == FUNCTION_TYPE)
7772 quals = TYPE_UNQUALIFIED;
7774 if (ctype != NULL_TREE)
7775 grok_method_quals (ctype, decl, quals);
7778 if (signed_p
7779 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
7780 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
7782 bad_specifiers (decl, "type", virtualp, quals != TYPE_UNQUALIFIED,
7783 inlinep, friendp, raises != NULL_TREE);
7785 return decl;
7788 /* Detect the case of an array type of unspecified size
7789 which came, as such, direct from a typedef name.
7790 We must copy the type, so that the array's domain can be
7791 individually set by the object's initializer. */
7793 if (type && typedef_type
7794 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
7795 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
7796 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
7798 /* Detect where we're using a typedef of function type to declare a
7799 function. PARMS will not be set, so we must create it now. */
7801 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
7803 tree decls = NULL_TREE;
7804 tree args;
7806 for (args = TYPE_ARG_TYPES (type); args; args = TREE_CHAIN (args))
7808 tree decl = cp_build_parm_decl (NULL_TREE, TREE_VALUE (args));
7810 TREE_CHAIN (decl) = decls;
7811 decls = decl;
7814 parms = nreverse (decls);
7816 if (decl_context != TYPENAME)
7818 /* A cv-qualifier-seq shall only be part of the function type
7819 for a non-static member function. [8.3.5/4 dcl.fct] */
7820 if (cp_type_quals (type) != TYPE_UNQUALIFIED
7821 && (current_class_type == NULL_TREE || staticp) )
7823 error ("qualified function types cannot be used to declare %s functions",
7824 (staticp? "static member" : "free"));
7825 type = TYPE_MAIN_VARIANT (type);
7828 /* The qualifiers on the function type become the qualifiers on
7829 the non-static member function. */
7830 quals |= cp_type_quals (type);
7834 /* If this is a type name (such as, in a cast or sizeof),
7835 compute the type and return it now. */
7837 if (decl_context == TYPENAME)
7839 /* Note that the grammar rejects storage classes
7840 in typenames, fields or parameters. */
7841 if (type_quals != TYPE_UNQUALIFIED)
7842 type_quals = TYPE_UNQUALIFIED;
7844 /* Special case: "friend class foo" looks like a TYPENAME context. */
7845 if (friendp)
7847 if (type_quals != TYPE_UNQUALIFIED)
7849 error ("type qualifiers specified for friend class declaration");
7850 type_quals = TYPE_UNQUALIFIED;
7852 if (inlinep)
7854 error ("%<inline%> specified for friend class declaration");
7855 inlinep = 0;
7858 if (!current_aggr)
7860 /* Don't allow friend declaration without a class-key. */
7861 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
7862 pedwarn ("template parameters cannot be friends");
7863 else if (TREE_CODE (type) == TYPENAME_TYPE)
7864 pedwarn ("friend declaration requires class-key, "
7865 "i.e. %<friend class %T::%D%>",
7866 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
7867 else
7868 pedwarn ("friend declaration requires class-key, "
7869 "i.e. %<friend %#T%>",
7870 type);
7873 /* Only try to do this stuff if we didn't already give up. */
7874 if (type != integer_type_node)
7876 /* A friendly class? */
7877 if (current_class_type)
7878 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
7879 /*complain=*/true);
7880 else
7881 error ("trying to make class %qT a friend of global scope",
7882 type);
7884 type = void_type_node;
7887 else if (quals)
7889 if (ctype == NULL_TREE)
7891 if (TREE_CODE (type) != METHOD_TYPE)
7892 error ("invalid qualifiers on non-member function type");
7893 else
7894 ctype = TYPE_METHOD_BASETYPE (type);
7896 if (ctype)
7898 tree dummy = build_decl (TYPE_DECL, unqualified_id, type);
7899 grok_method_quals (ctype, dummy, quals);
7900 type = TREE_TYPE (dummy);
7904 return type;
7906 else if (unqualified_id == NULL_TREE && decl_context != PARM
7907 && decl_context != CATCHPARM
7908 && TREE_CODE (type) != UNION_TYPE
7909 && ! bitfield)
7911 error ("abstract declarator %qT used as declaration", type);
7912 return error_mark_node;
7915 /* Only functions may be declared using an operator-function-id. */
7916 if (unqualified_id
7917 && IDENTIFIER_OPNAME_P (unqualified_id)
7918 && TREE_CODE (type) != FUNCTION_TYPE
7919 && TREE_CODE (type) != METHOD_TYPE)
7921 error ("declaration of %qD as non-function", unqualified_id);
7922 return error_mark_node;
7925 /* We don't check parameter types here because we can emit a better
7926 error message later. */
7927 if (decl_context != PARM)
7928 type = check_var_type (unqualified_id, type);
7930 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
7931 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
7933 if (decl_context == PARM || decl_context == CATCHPARM)
7935 if (ctype || in_namespace)
7936 error ("cannot use %<::%> in parameter declaration");
7938 /* A parameter declared as an array of T is really a pointer to T.
7939 One declared as a function is really a pointer to a function.
7940 One declared as a member is really a pointer to member. */
7942 if (TREE_CODE (type) == ARRAY_TYPE)
7944 /* Transfer const-ness of array into that of type pointed to. */
7945 type = build_pointer_type (TREE_TYPE (type));
7946 type_quals = TYPE_UNQUALIFIED;
7948 else if (TREE_CODE (type) == FUNCTION_TYPE)
7949 type = build_pointer_type (type);
7953 tree decl;
7955 if (decl_context == PARM)
7957 decl = cp_build_parm_decl (unqualified_id, type);
7959 bad_specifiers (decl, "parameter", virtualp, quals != TYPE_UNQUALIFIED,
7960 inlinep, friendp, raises != NULL_TREE);
7962 else if (decl_context == FIELD)
7964 /* The C99 flexible array extension. */
7965 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
7966 && TYPE_DOMAIN (type) == NULL_TREE)
7968 tree itype = compute_array_index_type (dname, integer_zero_node);
7969 type = build_cplus_array_type (TREE_TYPE (type), itype);
7972 if (type == error_mark_node)
7974 /* Happens when declaring arrays of sizes which
7975 are error_mark_node, for example. */
7976 decl = NULL_TREE;
7978 else if (in_namespace && !friendp)
7980 /* Something like struct S { int N::j; }; */
7981 error ("invalid use of %<::%>");
7982 decl = NULL_TREE;
7984 else if (TREE_CODE (type) == FUNCTION_TYPE)
7986 int publicp = 0;
7987 tree function_context;
7989 if (friendp == 0)
7991 if (ctype == NULL_TREE)
7992 ctype = current_class_type;
7994 if (ctype == NULL_TREE)
7996 error ("can't make %qD into a method -- not in a class",
7997 unqualified_id);
7998 return void_type_node;
8001 /* ``A union may [ ... ] not [ have ] virtual functions.''
8002 ARM 9.5 */
8003 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
8005 error ("function %qD declared virtual inside a union",
8006 unqualified_id);
8007 return void_type_node;
8010 if (NEW_DELETE_OPNAME_P (unqualified_id))
8012 if (virtualp)
8014 error ("%qD cannot be declared virtual, since it "
8015 "is always static",
8016 unqualified_id);
8017 virtualp = 0;
8020 else if (staticp < 2)
8021 type = build_method_type_directly (ctype,
8022 TREE_TYPE (type),
8023 TYPE_ARG_TYPES (type));
8026 /* Check that the name used for a destructor makes sense. */
8027 if (sfk == sfk_destructor)
8029 if (!ctype)
8031 gcc_assert (friendp);
8032 error ("expected qualified name in friend declaration "
8033 "for destructor %qD",
8034 id_declarator->u.id.unqualified_name);
8035 return error_mark_node;
8038 if (!same_type_p (TREE_OPERAND
8039 (id_declarator->u.id.unqualified_name, 0),
8040 ctype))
8042 error ("declaration of %qD as member of %qT",
8043 id_declarator->u.id.unqualified_name, ctype);
8044 return error_mark_node;
8048 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
8049 function_context = (ctype != NULL_TREE) ?
8050 decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
8051 publicp = (! friendp || ! staticp)
8052 && function_context == NULL_TREE;
8053 decl = grokfndecl (ctype, type,
8054 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
8055 ? unqualified_id : dname,
8056 parms,
8057 unqualified_id,
8058 virtualp, flags, quals, raises,
8059 friendp ? -1 : 0, friendp, publicp, inlinep,
8060 sfk,
8061 funcdef_flag, template_count, in_namespace, attrlist);
8062 if (decl == NULL_TREE)
8063 return decl;
8064 #if 0
8065 /* This clobbers the attrs stored in `decl' from `attrlist'. */
8066 /* The decl and setting of decl_attr is also turned off. */
8067 decl = build_decl_attribute_variant (decl, decl_attr);
8068 #endif
8070 /* [class.conv.ctor]
8072 A constructor declared without the function-specifier
8073 explicit that can be called with a single parameter
8074 specifies a conversion from the type of its first
8075 parameter to the type of its class. Such a constructor
8076 is called a converting constructor. */
8077 if (explicitp == 2)
8078 DECL_NONCONVERTING_P (decl) = 1;
8079 else if (DECL_CONSTRUCTOR_P (decl))
8081 /* The constructor can be called with exactly one
8082 parameter if there is at least one parameter, and
8083 any subsequent parameters have default arguments.
8084 Ignore any compiler-added parms. */
8085 tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (decl);
8087 if (arg_types == void_list_node
8088 || (arg_types
8089 && TREE_CHAIN (arg_types)
8090 && TREE_CHAIN (arg_types) != void_list_node
8091 && !TREE_PURPOSE (TREE_CHAIN (arg_types))))
8092 DECL_NONCONVERTING_P (decl) = 1;
8095 else if (TREE_CODE (type) == METHOD_TYPE)
8097 /* We only get here for friend declarations of
8098 members of other classes. */
8099 /* All method decls are public, so tell grokfndecl to set
8100 TREE_PUBLIC, also. */
8101 decl = grokfndecl (ctype, type,
8102 TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
8103 ? unqualified_id : dname,
8104 parms,
8105 unqualified_id,
8106 virtualp, flags, quals, raises,
8107 friendp ? -1 : 0, friendp, 1, 0, sfk,
8108 funcdef_flag, template_count, in_namespace,
8109 attrlist);
8110 if (decl == NULL_TREE)
8111 return NULL_TREE;
8113 else if (!staticp && !dependent_type_p (type)
8114 && !COMPLETE_TYPE_P (complete_type (type))
8115 && (TREE_CODE (type) != ARRAY_TYPE || initialized == 0))
8117 if (unqualified_id)
8118 error ("field %qD has incomplete type", unqualified_id);
8119 else
8120 error ("name %qT has incomplete type", type);
8122 /* If we're instantiating a template, tell them which
8123 instantiation made the field's type be incomplete. */
8124 if (current_class_type
8125 && TYPE_NAME (current_class_type)
8126 && IDENTIFIER_TEMPLATE (TYPE_IDENTIFIER (current_class_type))
8127 && declspecs->type
8128 && declspecs->type == type)
8129 error (" in instantiation of template %qT",
8130 current_class_type);
8132 type = error_mark_node;
8133 decl = NULL_TREE;
8135 else
8137 if (friendp)
8139 error ("%qE is neither function nor member function; "
8140 "cannot be declared friend", unqualified_id);
8141 friendp = 0;
8143 decl = NULL_TREE;
8146 if (friendp)
8148 /* Friends are treated specially. */
8149 if (ctype == current_class_type)
8150 warning (0, "member functions are implicitly friends of their class");
8151 else if (decl && DECL_NAME (decl))
8153 if (template_class_depth (current_class_type) == 0)
8155 decl = check_explicit_specialization
8156 (unqualified_id, decl, template_count,
8157 2 * (funcdef_flag != 0) + 4);
8158 if (decl == error_mark_node)
8159 return error_mark_node;
8162 decl = do_friend (ctype, unqualified_id, decl,
8163 *attrlist, flags, quals, funcdef_flag);
8164 return decl;
8166 else
8167 return void_type_node;
8170 /* Structure field. It may not be a function, except for C++. */
8172 if (decl == NULL_TREE)
8174 if (initialized)
8176 if (!staticp)
8178 /* An attempt is being made to initialize a non-static
8179 member. But, from [class.mem]:
8181 4 A member-declarator can contain a
8182 constant-initializer only if it declares a static
8183 member (_class.static_) of integral or enumeration
8184 type, see _class.static.data_.
8186 This used to be relatively common practice, but
8187 the rest of the compiler does not correctly
8188 handle the initialization unless the member is
8189 static so we make it static below. */
8190 pedwarn ("ISO C++ forbids initialization of member %qD",
8191 unqualified_id);
8192 pedwarn ("making %qD static", unqualified_id);
8193 staticp = 1;
8196 if (uses_template_parms (type))
8197 /* We'll check at instantiation time. */
8199 else if (check_static_variable_definition (unqualified_id,
8200 type))
8201 /* If we just return the declaration, crashes
8202 will sometimes occur. We therefore return
8203 void_type_node, as if this was a friend
8204 declaration, to cause callers to completely
8205 ignore this declaration. */
8206 return void_type_node;
8209 if (staticp)
8211 /* C++ allows static class members. All other work
8212 for this is done by grokfield. */
8213 decl = build_lang_decl (VAR_DECL, unqualified_id, type);
8214 set_linkage_for_static_data_member (decl);
8215 /* Even if there is an in-class initialization, DECL
8216 is considered undefined until an out-of-class
8217 definition is provided. */
8218 DECL_EXTERNAL (decl) = 1;
8220 else
8222 decl = build_decl (FIELD_DECL, unqualified_id, type);
8223 DECL_NONADDRESSABLE_P (decl) = bitfield;
8224 if (storage_class == sc_mutable)
8226 DECL_MUTABLE_P (decl) = 1;
8227 storage_class = sc_none;
8231 bad_specifiers (decl, "field", virtualp, quals != TYPE_UNQUALIFIED,
8232 inlinep, friendp, raises != NULL_TREE);
8235 else if (TREE_CODE (type) == FUNCTION_TYPE
8236 || TREE_CODE (type) == METHOD_TYPE)
8238 tree original_name;
8239 int publicp = 0;
8241 if (!unqualified_id)
8242 return NULL_TREE;
8244 if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
8245 original_name = dname;
8246 else
8247 original_name = unqualified_id;
8249 if (storage_class == sc_auto)
8250 error ("storage class %<auto%> invalid for function %qs", name);
8251 else if (storage_class == sc_register)
8252 error ("storage class %<register%> invalid for function %qs", name);
8253 else if (thread_p)
8254 error ("storage class %<__thread%> invalid for function %qs", name);
8256 /* Function declaration not at top level.
8257 Storage classes other than `extern' are not allowed
8258 and `extern' makes no difference. */
8259 if (! toplevel_bindings_p ()
8260 && (storage_class == sc_static
8261 || declspecs->specs[(int)ds_inline])
8262 && pedantic)
8264 if (storage_class == sc_static)
8265 pedwarn ("%<static%> specified invalid for function %qs "
8266 "declared out of global scope", name);
8267 else
8268 pedwarn ("%<inline%> specifier invalid for function %qs "
8269 "declared out of global scope", name);
8272 if (ctype == NULL_TREE)
8274 if (virtualp)
8276 error ("virtual non-class function %qs", name);
8277 virtualp = 0;
8280 else if (TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
8281 && !NEW_DELETE_OPNAME_P (original_name))
8282 type = build_method_type_directly (ctype,
8283 TREE_TYPE (type),
8284 TYPE_ARG_TYPES (type));
8286 /* Record presence of `static'. */
8287 publicp = (ctype != NULL_TREE
8288 || storage_class == sc_extern
8289 || storage_class != sc_static);
8291 decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
8292 virtualp, flags, quals, raises,
8293 1, friendp,
8294 publicp, inlinep, sfk, funcdef_flag,
8295 template_count, in_namespace, attrlist);
8296 if (decl == NULL_TREE)
8297 return NULL_TREE;
8299 if (staticp == 1)
8301 int invalid_static = 0;
8303 /* Don't allow a static member function in a class, and forbid
8304 declaring main to be static. */
8305 if (TREE_CODE (type) == METHOD_TYPE)
8307 pedwarn ("cannot declare member function %qD to have "
8308 "static linkage", decl);
8309 invalid_static = 1;
8311 else if (current_function_decl)
8313 /* FIXME need arm citation */
8314 error ("cannot declare static function inside another function");
8315 invalid_static = 1;
8318 if (invalid_static)
8320 staticp = 0;
8321 storage_class = sc_none;
8325 else
8327 /* It's a variable. */
8329 /* An uninitialized decl with `extern' is a reference. */
8330 decl = grokvardecl (type, unqualified_id,
8331 declspecs,
8332 initialized,
8333 (type_quals & TYPE_QUAL_CONST) != 0,
8334 ctype ? ctype : in_namespace);
8335 bad_specifiers (decl, "variable", virtualp, quals != TYPE_UNQUALIFIED,
8336 inlinep, friendp, raises != NULL_TREE);
8338 if (ctype)
8340 DECL_CONTEXT (decl) = ctype;
8341 if (staticp == 1)
8343 pedwarn ("%<static%> may not be used when defining "
8344 "(as opposed to declaring) a static data member");
8345 staticp = 0;
8346 storage_class = sc_none;
8348 if (storage_class == sc_register && TREE_STATIC (decl))
8350 error ("static member %qD declared %<register%>", decl);
8351 storage_class = sc_none;
8353 if (storage_class == sc_extern && pedantic)
8355 pedwarn ("cannot explicitly declare member %q#D to have "
8356 "extern linkage",
8357 decl);
8358 storage_class = sc_none;
8363 /* Record `register' declaration for warnings on &
8364 and in case doing stupid register allocation. */
8366 if (storage_class == sc_register)
8367 DECL_REGISTER (decl) = 1;
8368 else if (storage_class == sc_extern)
8369 DECL_THIS_EXTERN (decl) = 1;
8370 else if (storage_class == sc_static)
8371 DECL_THIS_STATIC (decl) = 1;
8373 /* Record constancy and volatility. There's no need to do this
8374 when processing a template; we'll do this for the instantiated
8375 declaration based on the type of DECL. */
8376 if (!processing_template_decl)
8377 cp_apply_type_quals_to_decl (type_quals, decl);
8379 return decl;
8383 /* Subroutine of start_function. Ensure that each of the parameter
8384 types (as listed in PARMS) is complete, as is required for a
8385 function definition. */
8387 static void
8388 require_complete_types_for_parms (tree parms)
8390 for (; parms; parms = TREE_CHAIN (parms))
8392 if (dependent_type_p (TREE_TYPE (parms)))
8393 continue;
8394 if (!VOID_TYPE_P (TREE_TYPE (parms))
8395 && complete_type_or_else (TREE_TYPE (parms), parms))
8397 relayout_decl (parms);
8398 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
8400 else
8401 /* grokparms or complete_type_or_else will have already issued
8402 an error. */
8403 TREE_TYPE (parms) = error_mark_node;
8407 /* Returns nonzero if T is a local variable. */
8410 local_variable_p (tree t)
8412 if ((TREE_CODE (t) == VAR_DECL
8413 /* A VAR_DECL with a context that is a _TYPE is a static data
8414 member. */
8415 && !TYPE_P (CP_DECL_CONTEXT (t))
8416 /* Any other non-local variable must be at namespace scope. */
8417 && !DECL_NAMESPACE_SCOPE_P (t))
8418 || (TREE_CODE (t) == PARM_DECL))
8419 return 1;
8421 return 0;
8424 /* Returns nonzero if T is an automatic local variable or a label.
8425 (These are the declarations that need to be remapped when the code
8426 containing them is duplicated.) */
8429 nonstatic_local_decl_p (tree t)
8431 return ((local_variable_p (t) && !TREE_STATIC (t))
8432 || TREE_CODE (t) == LABEL_DECL
8433 || TREE_CODE (t) == RESULT_DECL);
8436 /* Like local_variable_p, but suitable for use as a tree-walking
8437 function. */
8439 static tree
8440 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
8441 void *data ATTRIBUTE_UNUSED)
8443 if (local_variable_p (*tp) && !DECL_ARTIFICIAL (*tp))
8444 return *tp;
8445 else if (TYPE_P (*tp))
8446 *walk_subtrees = 0;
8448 return NULL_TREE;
8452 /* Check that ARG, which is a default-argument expression for a
8453 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
8454 something goes wrong. DECL may also be a _TYPE node, rather than a
8455 DECL, if there is no DECL available. */
8457 tree
8458 check_default_argument (tree decl, tree arg)
8460 tree var;
8461 tree decl_type;
8463 if (TREE_CODE (arg) == DEFAULT_ARG)
8464 /* We get a DEFAULT_ARG when looking at an in-class declaration
8465 with a default argument. Ignore the argument for now; we'll
8466 deal with it after the class is complete. */
8467 return arg;
8469 if (TYPE_P (decl))
8471 decl_type = decl;
8472 decl = NULL_TREE;
8474 else
8475 decl_type = TREE_TYPE (decl);
8477 if (arg == error_mark_node
8478 || decl == error_mark_node
8479 || TREE_TYPE (arg) == error_mark_node
8480 || decl_type == error_mark_node)
8481 /* Something already went wrong. There's no need to check
8482 further. */
8483 return error_mark_node;
8485 /* [dcl.fct.default]
8487 A default argument expression is implicitly converted to the
8488 parameter type. */
8489 if (!TREE_TYPE (arg)
8490 || !can_convert_arg (decl_type, TREE_TYPE (arg), arg, LOOKUP_NORMAL))
8492 if (decl)
8493 error ("default argument for %q#D has type %qT",
8494 decl, TREE_TYPE (arg));
8495 else
8496 error ("default argument for parameter of type %qT has type %qT",
8497 decl_type, TREE_TYPE (arg));
8499 return error_mark_node;
8502 /* [dcl.fct.default]
8504 Local variables shall not be used in default argument
8505 expressions.
8507 The keyword `this' shall not be used in a default argument of a
8508 member function. */
8509 var = walk_tree_without_duplicates (&arg, local_variable_p_walkfn,
8510 NULL);
8511 if (var)
8513 error ("default argument %qE uses local variable %qD", arg, var);
8514 return error_mark_node;
8517 /* All is well. */
8518 return arg;
8521 /* Decode the list of parameter types for a function type.
8522 Given the list of things declared inside the parens,
8523 return a list of types.
8525 If this parameter does not end with an ellipsis, we append
8526 void_list_node.
8528 *PARMS is set to the chain of PARM_DECLs created. */
8530 static tree
8531 grokparms (cp_parameter_declarator *first_parm, tree *parms)
8533 tree result = NULL_TREE;
8534 tree decls = NULL_TREE;
8535 int ellipsis = !first_parm || first_parm->ellipsis_p;
8536 cp_parameter_declarator *parm;
8537 int any_error = 0;
8539 for (parm = first_parm; parm != NULL; parm = parm->next)
8541 tree type = NULL_TREE;
8542 tree init = parm->default_argument;
8543 tree attrs;
8544 tree decl;
8546 if (parm == no_parameters)
8547 break;
8549 attrs = parm->decl_specifiers.attributes;
8550 parm->decl_specifiers.attributes = NULL_TREE;
8551 decl = grokdeclarator (parm->declarator, &parm->decl_specifiers,
8552 PARM, init != NULL_TREE, &attrs);
8553 if (! decl || TREE_TYPE (decl) == error_mark_node)
8554 continue;
8556 if (attrs)
8557 cplus_decl_attributes (&decl, attrs, 0);
8559 type = TREE_TYPE (decl);
8560 if (VOID_TYPE_P (type))
8562 if (same_type_p (type, void_type_node)
8563 && !DECL_NAME (decl) && !result && !parm->next && !ellipsis)
8564 /* this is a parmlist of `(void)', which is ok. */
8565 break;
8566 cxx_incomplete_type_error (decl, type);
8567 /* It's not a good idea to actually create parameters of
8568 type `void'; other parts of the compiler assume that a
8569 void type terminates the parameter list. */
8570 type = error_mark_node;
8571 TREE_TYPE (decl) = error_mark_node;
8574 if (type != error_mark_node)
8576 /* Top-level qualifiers on the parameters are
8577 ignored for function types. */
8578 type = cp_build_qualified_type (type, 0);
8579 if (TREE_CODE (type) == METHOD_TYPE)
8581 error ("parameter %qD invalidly declared method type", decl);
8582 type = build_pointer_type (type);
8583 TREE_TYPE (decl) = type;
8585 else if (abstract_virtuals_error (decl, type))
8586 any_error = 1; /* Seems like a good idea. */
8587 else if (POINTER_TYPE_P (type))
8589 /* [dcl.fct]/6, parameter types cannot contain pointers
8590 (references) to arrays of unknown bound. */
8591 tree t = TREE_TYPE (type);
8592 int ptr = TYPE_PTR_P (type);
8594 while (1)
8596 if (TYPE_PTR_P (t))
8597 ptr = 1;
8598 else if (TREE_CODE (t) != ARRAY_TYPE)
8599 break;
8600 else if (!TYPE_DOMAIN (t))
8601 break;
8602 t = TREE_TYPE (t);
8604 if (TREE_CODE (t) == ARRAY_TYPE)
8605 error ("parameter %qD includes %s to array of unknown "
8606 "bound %qT",
8607 decl, ptr ? "pointer" : "reference", t);
8610 if (any_error)
8611 init = NULL_TREE;
8612 else if (init && !processing_template_decl)
8613 init = check_default_argument (decl, init);
8616 TREE_CHAIN (decl) = decls;
8617 decls = decl;
8618 result = tree_cons (init, type, result);
8620 decls = nreverse (decls);
8621 result = nreverse (result);
8622 if (!ellipsis)
8623 result = chainon (result, void_list_node);
8624 *parms = decls;
8626 return result;
8630 /* D is a constructor or overloaded `operator='.
8632 Let T be the class in which D is declared. Then, this function
8633 returns:
8635 -1 if D's is an ill-formed constructor or copy assignment operator
8636 whose first parameter is of type `T'.
8637 0 if D is not a copy constructor or copy assignment
8638 operator.
8639 1 if D is a copy constructor or copy assignment operator whose
8640 first parameter is a reference to const qualified T.
8641 2 if D is a copy constructor or copy assignment operator whose
8642 first parameter is a reference to non-const qualified T.
8644 This function can be used as a predicate. Positive values indicate
8645 a copy constructor and nonzero values indicate a copy assignment
8646 operator. */
8649 copy_fn_p (tree d)
8651 tree args;
8652 tree arg_type;
8653 int result = 1;
8655 gcc_assert (DECL_FUNCTION_MEMBER_P (d));
8657 if (DECL_TEMPLATE_INFO (d)
8658 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d)))
8659 /* Instantiations of template member functions are never copy
8660 functions. Note that member functions of templated classes are
8661 represented as template functions internally, and we must
8662 accept those as copy functions. */
8663 return 0;
8665 args = FUNCTION_FIRST_USER_PARMTYPE (d);
8666 if (!args)
8667 return 0;
8669 arg_type = TREE_VALUE (args);
8671 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
8673 /* Pass by value copy assignment operator. */
8674 result = -1;
8676 else if (TREE_CODE (arg_type) == REFERENCE_TYPE
8677 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
8679 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
8680 result = 2;
8682 else
8683 return 0;
8685 args = TREE_CHAIN (args);
8687 if (args && args != void_list_node && !TREE_PURPOSE (args))
8688 /* There are more non-optional args. */
8689 return 0;
8691 return result;
8694 /* Remember any special properties of member function DECL. */
8696 void grok_special_member_properties (tree decl)
8698 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P(decl))
8699 ; /* Not special. */
8700 else if (DECL_CONSTRUCTOR_P (decl))
8702 int ctor = copy_fn_p (decl);
8704 if (ctor > 0)
8706 /* [class.copy]
8708 A non-template constructor for class X is a copy
8709 constructor if its first parameter is of type X&, const
8710 X&, volatile X& or const volatile X&, and either there
8711 are no other parameters or else all other parameters have
8712 default arguments. */
8713 TYPE_HAS_INIT_REF (DECL_CONTEXT (decl)) = 1;
8714 if (ctor > 1)
8715 TYPE_HAS_CONST_INIT_REF (DECL_CONTEXT (decl)) = 1;
8717 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
8718 TYPE_HAS_DEFAULT_CONSTRUCTOR (DECL_CONTEXT (decl)) = 1;
8720 else if (DECL_OVERLOADED_OPERATOR_P (decl) == NOP_EXPR)
8722 /* [class.copy]
8724 A non-template assignment operator for class X is a copy
8725 assignment operator if its parameter is of type X, X&, const
8726 X&, volatile X& or const volatile X&. */
8728 int assop = copy_fn_p (decl);
8730 if (assop)
8732 TYPE_HAS_ASSIGN_REF (DECL_CONTEXT (decl)) = 1;
8733 if (assop != 1)
8734 TYPE_HAS_CONST_ASSIGN_REF (DECL_CONTEXT (decl)) = 1;
8739 /* Check a constructor DECL has the correct form. Complains
8740 if the class has a constructor of the form X(X). */
8743 grok_ctor_properties (tree ctype, tree decl)
8745 int ctor_parm = copy_fn_p (decl);
8747 if (ctor_parm < 0)
8749 /* [class.copy]
8751 A declaration of a constructor for a class X is ill-formed if
8752 its first parameter is of type (optionally cv-qualified) X
8753 and either there are no other parameters or else all other
8754 parameters have default arguments.
8756 We *don't* complain about member template instantiations that
8757 have this form, though; they can occur as we try to decide
8758 what constructor to use during overload resolution. Since
8759 overload resolution will never prefer such a constructor to
8760 the non-template copy constructor (which is either explicitly
8761 or implicitly defined), there's no need to worry about their
8762 existence. Theoretically, they should never even be
8763 instantiated, but that's hard to forestall. */
8764 error ("invalid constructor; you probably meant %<%T (const %T&)%>",
8765 ctype, ctype);
8766 return 0;
8769 return 1;
8772 /* An operator with this code is unary, but can also be binary. */
8774 static int
8775 ambi_op_p (enum tree_code code)
8777 return (code == INDIRECT_REF
8778 || code == ADDR_EXPR
8779 || code == UNARY_PLUS_EXPR
8780 || code == NEGATE_EXPR
8781 || code == PREINCREMENT_EXPR
8782 || code == PREDECREMENT_EXPR);
8785 /* An operator with this name can only be unary. */
8787 static int
8788 unary_op_p (enum tree_code code)
8790 return (code == TRUTH_NOT_EXPR
8791 || code == BIT_NOT_EXPR
8792 || code == COMPONENT_REF
8793 || code == TYPE_EXPR);
8796 /* DECL is a declaration for an overloaded operator. If COMPLAIN is true,
8797 errors are issued for invalid declarations. */
8799 void
8800 grok_op_properties (tree decl, bool complain)
8802 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
8803 tree argtype;
8804 int methodp = (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE);
8805 tree name = DECL_NAME (decl);
8806 enum tree_code operator_code;
8807 int arity;
8808 tree class_type;
8810 /* Count the number of arguments. */
8811 for (argtype = argtypes, arity = 0;
8812 argtype && argtype != void_list_node;
8813 argtype = TREE_CHAIN (argtype))
8814 ++arity;
8816 class_type = DECL_CONTEXT (decl);
8817 if (class_type && !CLASS_TYPE_P (class_type))
8818 class_type = NULL_TREE;
8820 if (DECL_CONV_FN_P (decl))
8821 operator_code = TYPE_EXPR;
8822 else
8825 #define DEF_OPERATOR(NAME, CODE, MANGLING, ARITY, ASSN_P) \
8826 if (ansi_opname (CODE) == name) \
8828 operator_code = (CODE); \
8829 break; \
8831 else if (ansi_assopname (CODE) == name) \
8833 operator_code = (CODE); \
8834 DECL_ASSIGNMENT_OPERATOR_P (decl) = 1; \
8835 break; \
8838 #include "operators.def"
8839 #undef DEF_OPERATOR
8841 gcc_unreachable ();
8843 while (0);
8844 gcc_assert (operator_code != LAST_CPLUS_TREE_CODE);
8845 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
8847 if (class_type)
8848 switch (operator_code)
8850 case NEW_EXPR:
8851 TYPE_HAS_NEW_OPERATOR (class_type) = 1;
8852 break;
8854 case DELETE_EXPR:
8855 TYPE_GETS_DELETE (class_type) |= 1;
8856 break;
8858 case VEC_NEW_EXPR:
8859 TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
8860 break;
8862 case VEC_DELETE_EXPR:
8863 TYPE_GETS_DELETE (class_type) |= 2;
8864 break;
8866 default:
8867 break;
8870 /* [basic.std.dynamic.allocation]/1:
8872 A program is ill-formed if an allocation function is declared
8873 in a namespace scope other than global scope or declared static
8874 in global scope.
8876 The same also holds true for deallocation functions. */
8877 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR
8878 || operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
8880 if (DECL_NAMESPACE_SCOPE_P (decl))
8882 if (CP_DECL_CONTEXT (decl) != global_namespace)
8883 error ("%qD may not be declared within a namespace", decl);
8884 else if (!TREE_PUBLIC (decl))
8885 error ("%qD may not be declared as static", decl);
8889 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR)
8890 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
8891 else if (operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
8892 TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
8893 else
8895 /* An operator function must either be a non-static member function
8896 or have at least one parameter of a class, a reference to a class,
8897 an enumeration, or a reference to an enumeration. 13.4.0.6 */
8898 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
8900 if (operator_code == TYPE_EXPR
8901 || operator_code == CALL_EXPR
8902 || operator_code == COMPONENT_REF
8903 || operator_code == ARRAY_REF
8904 || operator_code == NOP_EXPR)
8906 error ("%qD must be a nonstatic member function", decl);
8907 return;
8909 else
8911 tree p;
8913 if (DECL_STATIC_FUNCTION_P (decl))
8915 error ("%qD must be either a non-static member "
8916 "function or a non-member function", decl);
8917 return;
8920 for (p = argtypes; p && p != void_list_node; p = TREE_CHAIN (p))
8922 tree arg = non_reference (TREE_VALUE (p));
8923 /* IS_AGGR_TYPE, rather than CLASS_TYPE_P, is used
8924 because these checks are performed even on
8925 template functions. */
8926 if (IS_AGGR_TYPE (arg) || TREE_CODE (arg) == ENUMERAL_TYPE)
8927 break;
8930 if (!p || p == void_list_node)
8932 if (!complain)
8933 return;
8935 error ("%qD must have an argument of class or "
8936 "enumerated type",
8937 decl);
8942 /* There are no restrictions on the arguments to an overloaded
8943 "operator ()". */
8944 if (operator_code == CALL_EXPR)
8945 return;
8947 /* Warn about conversion operators that will never be used. */
8948 if (IDENTIFIER_TYPENAME_P (name)
8949 && ! DECL_TEMPLATE_INFO (decl)
8950 && warn_conversion
8951 /* Warn only declaring the function; there is no need to
8952 warn again about out-of-class definitions. */
8953 && class_type == current_class_type)
8955 tree t = TREE_TYPE (name);
8956 int ref = (TREE_CODE (t) == REFERENCE_TYPE);
8957 const char *what = 0;
8959 if (ref)
8960 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
8962 if (TREE_CODE (t) == VOID_TYPE)
8963 what = "void";
8964 else if (class_type)
8966 if (t == class_type)
8967 what = "the same type";
8968 /* Don't force t to be complete here. */
8969 else if (IS_AGGR_TYPE (t)
8970 && COMPLETE_TYPE_P (t)
8971 && DERIVED_FROM_P (t, class_type))
8972 what = "a base class";
8975 if (what)
8976 warning (0, "conversion to %s%s will never use a type "
8977 "conversion operator",
8978 ref ? "a reference to " : "", what);
8980 if (operator_code == COND_EXPR)
8982 /* 13.4.0.3 */
8983 error ("ISO C++ prohibits overloading operator ?:");
8985 else if (ambi_op_p (operator_code))
8987 if (arity == 1)
8988 /* We pick the one-argument operator codes by default, so
8989 we don't have to change anything. */
8991 else if (arity == 2)
8993 /* If we thought this was a unary operator, we now know
8994 it to be a binary operator. */
8995 switch (operator_code)
8997 case INDIRECT_REF:
8998 operator_code = MULT_EXPR;
8999 break;
9001 case ADDR_EXPR:
9002 operator_code = BIT_AND_EXPR;
9003 break;
9005 case UNARY_PLUS_EXPR:
9006 operator_code = PLUS_EXPR;
9007 break;
9009 case NEGATE_EXPR:
9010 operator_code = MINUS_EXPR;
9011 break;
9013 case PREINCREMENT_EXPR:
9014 operator_code = POSTINCREMENT_EXPR;
9015 break;
9017 case PREDECREMENT_EXPR:
9018 operator_code = POSTDECREMENT_EXPR;
9019 break;
9021 default:
9022 gcc_unreachable ();
9025 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
9027 if ((operator_code == POSTINCREMENT_EXPR
9028 || operator_code == POSTDECREMENT_EXPR)
9029 && ! processing_template_decl
9030 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)), integer_type_node))
9032 if (methodp)
9033 error ("postfix %qD must take %<int%> as its argument",
9034 decl);
9035 else
9036 error
9037 ("postfix %qD must take %<int%> as its second argument",
9038 decl);
9041 else
9043 if (methodp)
9044 error ("%qD must take either zero or one argument", decl);
9045 else
9046 error ("%qD must take either one or two arguments", decl);
9049 /* More Effective C++ rule 6. */
9050 if (warn_ecpp
9051 && (operator_code == POSTINCREMENT_EXPR
9052 || operator_code == POSTDECREMENT_EXPR
9053 || operator_code == PREINCREMENT_EXPR
9054 || operator_code == PREDECREMENT_EXPR))
9056 tree arg = TREE_VALUE (argtypes);
9057 tree ret = TREE_TYPE (TREE_TYPE (decl));
9058 if (methodp || TREE_CODE (arg) == REFERENCE_TYPE)
9059 arg = TREE_TYPE (arg);
9060 arg = TYPE_MAIN_VARIANT (arg);
9061 if (operator_code == PREINCREMENT_EXPR
9062 || operator_code == PREDECREMENT_EXPR)
9064 if (TREE_CODE (ret) != REFERENCE_TYPE
9065 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)),
9066 arg))
9067 warning (0, "prefix %qD should return %qT", decl,
9068 build_reference_type (arg));
9070 else
9072 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
9073 warning (0, "postfix %qD should return %qT", decl, arg);
9077 else if (unary_op_p (operator_code))
9079 if (arity != 1)
9081 if (methodp)
9082 error ("%qD must take %<void%>", decl);
9083 else
9084 error ("%qD must take exactly one argument", decl);
9087 else /* if (binary_op_p (operator_code)) */
9089 if (arity != 2)
9091 if (methodp)
9092 error ("%qD must take exactly one argument", decl);
9093 else
9094 error ("%qD must take exactly two arguments", decl);
9097 /* More Effective C++ rule 7. */
9098 if (warn_ecpp
9099 && (operator_code == TRUTH_ANDIF_EXPR
9100 || operator_code == TRUTH_ORIF_EXPR
9101 || operator_code == COMPOUND_EXPR))
9102 warning (0, "user-defined %qD always evaluates both arguments",
9103 decl);
9106 /* Effective C++ rule 23. */
9107 if (warn_ecpp
9108 && arity == 2
9109 && !DECL_ASSIGNMENT_OPERATOR_P (decl)
9110 && (operator_code == PLUS_EXPR
9111 || operator_code == MINUS_EXPR
9112 || operator_code == TRUNC_DIV_EXPR
9113 || operator_code == MULT_EXPR
9114 || operator_code == TRUNC_MOD_EXPR)
9115 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
9116 warning (0, "%qD should return by value", decl);
9118 /* [over.oper]/8 */
9119 for (; argtypes && argtypes != void_list_node;
9120 argtypes = TREE_CHAIN (argtypes))
9121 if (TREE_PURPOSE (argtypes))
9123 TREE_PURPOSE (argtypes) = NULL_TREE;
9124 if (operator_code == POSTINCREMENT_EXPR
9125 || operator_code == POSTDECREMENT_EXPR)
9127 if (pedantic)
9128 pedwarn ("%qD cannot have default arguments", decl);
9130 else
9131 error ("%qD cannot have default arguments", decl);
9138 /* Return a string giving the keyword associate with CODE. */
9140 static const char *
9141 tag_name (enum tag_types code)
9143 switch (code)
9145 case record_type:
9146 return "struct";
9147 case class_type:
9148 return "class";
9149 case union_type:
9150 return "union";
9151 case enum_type:
9152 return "enum";
9153 case typename_type:
9154 return "typename";
9155 default:
9156 gcc_unreachable ();
9160 /* Name lookup in an elaborated-type-specifier (after the keyword
9161 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
9162 elaborated-type-specifier is invalid, issue a diagnostic and return
9163 error_mark_node; otherwise, return the *_TYPE to which it referred.
9164 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
9166 tree
9167 check_elaborated_type_specifier (enum tag_types tag_code,
9168 tree decl,
9169 bool allow_template_p)
9171 tree type;
9173 /* In the case of:
9175 struct S { struct S *p; };
9177 name lookup will find the TYPE_DECL for the implicit "S::S"
9178 typedef. Adjust for that here. */
9179 if (DECL_SELF_REFERENCE_P (decl))
9180 decl = TYPE_NAME (TREE_TYPE (decl));
9182 type = TREE_TYPE (decl);
9184 /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
9185 is false for this case as well. */
9186 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
9188 error ("using template type parameter %qT after %qs",
9189 type, tag_name (tag_code));
9190 return error_mark_node;
9192 /* [dcl.type.elab]
9194 If the identifier resolves to a typedef-name or a template
9195 type-parameter, the elaborated-type-specifier is ill-formed.
9197 In other words, the only legitimate declaration to use in the
9198 elaborated type specifier is the implicit typedef created when
9199 the type is declared. */
9200 else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
9201 && tag_code != typename_type)
9203 error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
9204 error ("%q+D has a previous declaration here", decl);
9205 return error_mark_node;
9207 else if (TREE_CODE (type) != RECORD_TYPE
9208 && TREE_CODE (type) != UNION_TYPE
9209 && tag_code != enum_type
9210 && tag_code != typename_type)
9212 error ("%qT referred to as %qs", type, tag_name (tag_code));
9213 error ("%q+T has a previous declaration here", type);
9214 return error_mark_node;
9216 else if (TREE_CODE (type) != ENUMERAL_TYPE
9217 && tag_code == enum_type)
9219 error ("%qT referred to as enum", type);
9220 error ("%q+T has a previous declaration here", type);
9221 return error_mark_node;
9223 else if (!allow_template_p
9224 && TREE_CODE (type) == RECORD_TYPE
9225 && CLASSTYPE_IS_TEMPLATE (type))
9227 /* If a class template appears as elaborated type specifier
9228 without a template header such as:
9230 template <class T> class C {};
9231 void f(class C); // No template header here
9233 then the required template argument is missing. */
9234 error ("template argument required for %<%s %T%>",
9235 tag_name (tag_code),
9236 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
9237 return error_mark_node;
9240 return type;
9243 /* Lookup NAME in elaborate type specifier in scope according to
9244 SCOPE and issue diagnostics if necessary.
9245 Return *_TYPE node upon success, NULL_TREE when the NAME is not
9246 found, and ERROR_MARK_NODE for type error. */
9248 static tree
9249 lookup_and_check_tag (enum tag_types tag_code, tree name,
9250 tag_scope scope, bool template_header_p)
9252 tree t;
9253 tree decl;
9254 if (scope == ts_global)
9256 /* First try ordinary name lookup, ignoring hidden class name
9257 injected via friend declaration. */
9258 decl = lookup_name (name, 2);
9259 /* If that fails, the name will be placed in the smallest
9260 non-class, non-function-prototype scope according to 3.3.1/5.
9261 We may already have a hidden name declared as friend in this
9262 scope. So lookup again but not ignoring hidden name.
9263 If we find one, that name will be made visible rather than
9264 creating a new tag. */
9265 if (!decl)
9266 decl = lookup_type_scope (name, ts_within_enclosing_non_class);
9268 else
9269 decl = lookup_type_scope (name, scope);
9271 if (decl && DECL_CLASS_TEMPLATE_P (decl))
9272 decl = DECL_TEMPLATE_RESULT (decl);
9274 if (decl && TREE_CODE (decl) == TYPE_DECL)
9276 /* Look for invalid nested type:
9277 class C {
9278 class C {};
9279 }; */
9280 if (scope == ts_current && DECL_SELF_REFERENCE_P (decl))
9282 error ("%qD has the same name as the class in which it is "
9283 "declared",
9284 decl);
9285 return error_mark_node;
9288 /* Two cases we need to consider when deciding if a class
9289 template is allowed as an elaborated type specifier:
9290 1. It is a self reference to its own class.
9291 2. It comes with a template header.
9293 For example:
9295 template <class T> class C {
9296 class C *c1; // DECL_SELF_REFERENCE_P is true
9297 class D;
9299 template <class U> class C; // template_header_p is true
9300 template <class T> class C<T>::D {
9301 class C *c2; // DECL_SELF_REFERENCE_P is true
9302 }; */
9304 t = check_elaborated_type_specifier (tag_code,
9305 decl,
9306 template_header_p
9307 | DECL_SELF_REFERENCE_P (decl));
9308 return t;
9310 else
9311 return NULL_TREE;
9314 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
9315 Define the tag as a forward-reference if it is not defined.
9317 If a declaration is given, process it here, and report an error if
9318 multiple declarations are not identical.
9320 SCOPE is TS_CURRENT when this is also a definition. Only look in
9321 the current frame for the name (since C++ allows new names in any
9322 scope.) It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
9323 declaration. Only look beginning from the current scope outward up
9324 till the nearest non-class scope. Otherwise it is TS_GLOBAL.
9326 TEMPLATE_HEADER_P is true when this declaration is preceded by
9327 a set of template parameters. */
9329 tree
9330 xref_tag (enum tag_types tag_code, tree name,
9331 tag_scope scope, bool template_header_p)
9333 enum tree_code code;
9334 tree t;
9335 tree context = NULL_TREE;
9337 timevar_push (TV_NAME_LOOKUP);
9339 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
9341 switch (tag_code)
9343 case record_type:
9344 case class_type:
9345 code = RECORD_TYPE;
9346 break;
9347 case union_type:
9348 code = UNION_TYPE;
9349 break;
9350 case enum_type:
9351 code = ENUMERAL_TYPE;
9352 break;
9353 default:
9354 gcc_unreachable ();
9357 /* In case of anonymous name, xref_tag is only called to
9358 make type node and push name. Name lookup is not required. */
9359 if (ANON_AGGRNAME_P (name))
9360 t = NULL_TREE;
9361 else
9362 t = lookup_and_check_tag (tag_code, name,
9363 scope, template_header_p);
9365 if (t == error_mark_node)
9366 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
9368 if (scope != ts_current && t && current_class_type
9369 && template_class_depth (current_class_type)
9370 && template_header_p)
9372 /* Since SCOPE is not TS_CURRENT, we are not looking at a
9373 definition of this tag. Since, in addition, we are currently
9374 processing a (member) template declaration of a template
9375 class, we must be very careful; consider:
9377 template <class X>
9378 struct S1
9380 template <class U>
9381 struct S2
9382 { template <class V>
9383 friend struct S1; };
9385 Here, the S2::S1 declaration should not be confused with the
9386 outer declaration. In particular, the inner version should
9387 have a template parameter of level 2, not level 1. This
9388 would be particularly important if the member declaration
9389 were instead:
9391 template <class V = U> friend struct S1;
9393 say, when we should tsubst into `U' when instantiating
9394 S2. On the other hand, when presented with:
9396 template <class T>
9397 struct S1 {
9398 template <class U>
9399 struct S2 {};
9400 template <class U>
9401 friend struct S2;
9404 we must find the inner binding eventually. We
9405 accomplish this by making sure that the new type we
9406 create to represent this declaration has the right
9407 TYPE_CONTEXT. */
9408 context = TYPE_CONTEXT (t);
9409 t = NULL_TREE;
9412 if (! t)
9414 /* If no such tag is yet defined, create a forward-reference node
9415 and record it as the "definition".
9416 When a real declaration of this type is found,
9417 the forward-reference will be altered into a real type. */
9418 if (code == ENUMERAL_TYPE)
9420 error ("use of enum %q#D without previous declaration", name);
9421 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
9423 else
9425 t = make_aggr_type (code);
9426 TYPE_CONTEXT (t) = context;
9427 t = pushtag (name, t, scope);
9430 else
9432 if (template_header_p && IS_AGGR_TYPE (t))
9433 redeclare_class_template (t, current_template_parms);
9434 else if (!processing_template_decl
9435 && CLASS_TYPE_P (t)
9436 && CLASSTYPE_IS_TEMPLATE (t))
9438 error ("redeclaration of %qT as a non-template", t);
9439 t = error_mark_node;
9442 /* Make injected friend class visible. */
9443 if (scope != ts_within_enclosing_non_class
9444 && hidden_name_p (TYPE_NAME (t)))
9446 DECL_ANTICIPATED (TYPE_NAME (t)) = 0;
9447 DECL_FRIEND_P (TYPE_NAME (t)) = 0;
9449 if (TYPE_TEMPLATE_INFO (t))
9451 DECL_ANTICIPATED (TYPE_TI_TEMPLATE (t)) = 0;
9452 DECL_FRIEND_P (TYPE_TI_TEMPLATE (t)) = 0;
9457 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
9460 tree
9461 xref_tag_from_type (tree old, tree id, tag_scope scope)
9463 enum tag_types tag_kind;
9465 if (TREE_CODE (old) == RECORD_TYPE)
9466 tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
9467 else
9468 tag_kind = union_type;
9470 if (id == NULL_TREE)
9471 id = TYPE_IDENTIFIER (old);
9473 return xref_tag (tag_kind, id, scope, false);
9476 /* Create the binfo hierarchy for REF with (possibly NULL) base list
9477 BASE_LIST. For each element on BASE_LIST the TREE_PURPOSE is an
9478 access_* node, and the TREE_VALUE is the type of the base-class.
9479 Non-NULL TREE_TYPE indicates virtual inheritance. */
9481 void
9482 xref_basetypes (tree ref, tree base_list)
9484 tree *basep;
9485 tree binfo, base_binfo;
9486 unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases. */
9487 unsigned max_bases = 0; /* Maximum direct bases. */
9488 int i;
9489 tree default_access;
9490 tree igo_prev; /* Track Inheritance Graph Order. */
9492 if (ref == error_mark_node)
9493 return;
9495 /* The base of a derived class is private by default, all others are
9496 public. */
9497 default_access = (TREE_CODE (ref) == RECORD_TYPE
9498 && CLASSTYPE_DECLARED_CLASS (ref)
9499 ? access_private_node : access_public_node);
9501 /* First, make sure that any templates in base-classes are
9502 instantiated. This ensures that if we call ourselves recursively
9503 we do not get confused about which classes are marked and which
9504 are not. */
9505 basep = &base_list;
9506 while (*basep)
9508 tree basetype = TREE_VALUE (*basep);
9510 if (!(processing_template_decl && uses_template_parms (basetype))
9511 && !complete_type_or_else (basetype, NULL))
9512 /* An incomplete type. Remove it from the list. */
9513 *basep = TREE_CHAIN (*basep);
9514 else
9516 max_bases++;
9517 if (TREE_TYPE (*basep))
9518 max_vbases++;
9519 if (CLASS_TYPE_P (basetype))
9520 max_vbases += VEC_length (tree, CLASSTYPE_VBASECLASSES (basetype));
9521 basep = &TREE_CHAIN (*basep);
9525 TYPE_MARKED_P (ref) = 1;
9527 /* The binfo slot should be empty, unless this is an (ill-formed)
9528 redefinition. */
9529 gcc_assert (!TYPE_BINFO (ref) || TYPE_SIZE (ref));
9530 gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
9532 binfo = make_tree_binfo (max_bases);
9534 TYPE_BINFO (ref) = binfo;
9535 BINFO_OFFSET (binfo) = size_zero_node;
9536 BINFO_TYPE (binfo) = ref;
9538 if (max_bases)
9540 BINFO_BASE_ACCESSES (binfo) = VEC_alloc (tree, gc, max_bases);
9541 /* An aggregate cannot have baseclasses. */
9542 CLASSTYPE_NON_AGGREGATE (ref) = 1;
9544 if (TREE_CODE (ref) == UNION_TYPE)
9545 error ("derived union %qT invalid", ref);
9548 if (max_bases > 1)
9550 if (TYPE_FOR_JAVA (ref))
9551 error ("Java class %qT cannot have multiple bases", ref);
9554 if (max_vbases)
9556 CLASSTYPE_VBASECLASSES (ref) = VEC_alloc (tree, gc, max_vbases);
9558 if (TYPE_FOR_JAVA (ref))
9559 error ("Java class %qT cannot have virtual bases", ref);
9562 for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
9564 tree access = TREE_PURPOSE (base_list);
9565 int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
9566 tree basetype = TREE_VALUE (base_list);
9568 if (access == access_default_node)
9569 access = default_access;
9571 if (TREE_CODE (basetype) == TYPE_DECL)
9572 basetype = TREE_TYPE (basetype);
9573 if (TREE_CODE (basetype) != RECORD_TYPE
9574 && TREE_CODE (basetype) != TYPENAME_TYPE
9575 && TREE_CODE (basetype) != TEMPLATE_TYPE_PARM
9576 && TREE_CODE (basetype) != BOUND_TEMPLATE_TEMPLATE_PARM)
9578 error ("base type %qT fails to be a struct or class type",
9579 basetype);
9580 continue;
9583 if (TYPE_FOR_JAVA (basetype) && (current_lang_depth () == 0))
9584 TYPE_FOR_JAVA (ref) = 1;
9586 base_binfo = NULL_TREE;
9587 if (CLASS_TYPE_P (basetype) && !dependent_type_p (basetype))
9589 base_binfo = TYPE_BINFO (basetype);
9590 /* The original basetype could have been a typedef'd type. */
9591 basetype = BINFO_TYPE (base_binfo);
9593 /* Inherit flags from the base. */
9594 TYPE_HAS_NEW_OPERATOR (ref)
9595 |= TYPE_HAS_NEW_OPERATOR (basetype);
9596 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
9597 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
9598 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
9599 TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
9600 CLASSTYPE_DIAMOND_SHAPED_P (ref)
9601 |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
9602 CLASSTYPE_REPEATED_BASE_P (ref)
9603 |= CLASSTYPE_REPEATED_BASE_P (basetype);
9606 /* We must do this test after we've seen through a typedef
9607 type. */
9608 if (TYPE_MARKED_P (basetype))
9610 if (basetype == ref)
9611 error ("recursive type %qT undefined", basetype);
9612 else
9613 error ("duplicate base type %qT invalid", basetype);
9614 continue;
9616 TYPE_MARKED_P (basetype) = 1;
9618 base_binfo = copy_binfo (base_binfo, basetype, ref,
9619 &igo_prev, via_virtual);
9620 if (!BINFO_INHERITANCE_CHAIN (base_binfo))
9621 BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
9623 BINFO_BASE_APPEND (binfo, base_binfo);
9624 BINFO_BASE_ACCESS_APPEND (binfo, access);
9627 if (VEC_space (tree, CLASSTYPE_VBASECLASSES (ref), 1))
9628 /* If we have space in the vbase vector, we must have shared at
9629 least one of them, and are therefore diamond shaped. */
9630 CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
9632 /* Unmark all the types. */
9633 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
9634 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
9635 TYPE_MARKED_P (ref) = 0;
9637 /* Now see if we have a repeated base type. */
9638 if (!CLASSTYPE_REPEATED_BASE_P (ref))
9640 for (base_binfo = binfo; base_binfo;
9641 base_binfo = TREE_CHAIN (base_binfo))
9643 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
9645 CLASSTYPE_REPEATED_BASE_P (ref) = 1;
9646 break;
9648 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
9650 for (base_binfo = binfo; base_binfo;
9651 base_binfo = TREE_CHAIN (base_binfo))
9652 if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
9653 TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
9654 else
9655 break;
9660 /* Begin compiling the definition of an enumeration type.
9661 NAME is its name.
9662 Returns the type object, as yet incomplete.
9663 Also records info about it so that build_enumerator
9664 may be used to declare the individual values as they are read. */
9666 tree
9667 start_enum (tree name)
9669 tree enumtype;
9671 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
9673 /* If this is the real definition for a previous forward reference,
9674 fill in the contents in the same object that used to be the
9675 forward reference. */
9677 enumtype = lookup_and_check_tag (enum_type, name,
9678 /*tag_scope=*/ts_current,
9679 /*template_header_p=*/false);
9681 if (enumtype != NULL_TREE && TREE_CODE (enumtype) == ENUMERAL_TYPE)
9683 error ("multiple definition of %q#T", enumtype);
9684 error ("%Jprevious definition here", TYPE_MAIN_DECL (enumtype));
9685 /* Clear out TYPE_VALUES, and start again. */
9686 TYPE_VALUES (enumtype) = NULL_TREE;
9688 else
9690 /* In case of error, make a dummy enum to allow parsing to
9691 continue. */
9692 if (enumtype == error_mark_node)
9693 name = make_anon_name ();
9695 enumtype = make_node (ENUMERAL_TYPE);
9696 enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
9699 return enumtype;
9702 /* After processing and defining all the values of an enumeration type,
9703 install their decls in the enumeration type and finish it off.
9704 ENUMTYPE is the type object and VALUES a list of name-value pairs. */
9706 void
9707 finish_enum (tree enumtype)
9709 tree values;
9710 tree decl;
9711 tree value;
9712 tree minnode;
9713 tree maxnode;
9714 tree t;
9715 bool unsignedp;
9716 bool use_short_enum;
9717 int lowprec;
9718 int highprec;
9719 int precision;
9720 integer_type_kind itk;
9721 tree underlying_type = NULL_TREE;
9723 /* We built up the VALUES in reverse order. */
9724 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
9726 /* For an enum defined in a template, just set the type of the values;
9727 all further processing is postponed until the template is
9728 instantiated. We need to set the type so that tsubst of a CONST_DECL
9729 works. */
9730 if (processing_template_decl)
9732 for (values = TYPE_VALUES (enumtype);
9733 values;
9734 values = TREE_CHAIN (values))
9735 TREE_TYPE (TREE_VALUE (values)) = enumtype;
9736 if (at_function_scope_p ())
9737 add_stmt (build_min (TAG_DEFN, enumtype));
9738 return;
9741 /* Determine the minimum and maximum values of the enumerators. */
9742 if (TYPE_VALUES (enumtype))
9744 minnode = maxnode = NULL_TREE;
9746 for (values = TYPE_VALUES (enumtype);
9747 values;
9748 values = TREE_CHAIN (values))
9750 decl = TREE_VALUE (values);
9752 /* [dcl.enum]: Following the closing brace of an enum-specifier,
9753 each enumerator has the type of its enumeration. Prior to the
9754 closing brace, the type of each enumerator is the type of its
9755 initializing value. */
9756 TREE_TYPE (decl) = enumtype;
9758 /* Update the minimum and maximum values, if appropriate. */
9759 value = DECL_INITIAL (decl);
9760 if (value == error_mark_node)
9761 value = integer_zero_node;
9762 /* Figure out what the minimum and maximum values of the
9763 enumerators are. */
9764 if (!minnode)
9765 minnode = maxnode = value;
9766 else if (tree_int_cst_lt (maxnode, value))
9767 maxnode = value;
9768 else if (tree_int_cst_lt (value, minnode))
9769 minnode = value;
9772 else
9773 /* [dcl.enum]
9775 If the enumerator-list is empty, the underlying type is as if
9776 the enumeration had a single enumerator with value 0. */
9777 minnode = maxnode = integer_zero_node;
9779 /* Compute the number of bits require to represent all values of the
9780 enumeration. We must do this before the type of MINNODE and
9781 MAXNODE are transformed, since min_precision relies on the
9782 TREE_TYPE of the value it is passed. */
9783 unsignedp = tree_int_cst_sgn (minnode) >= 0;
9784 lowprec = min_precision (minnode, unsignedp);
9785 highprec = min_precision (maxnode, unsignedp);
9786 precision = MAX (lowprec, highprec);
9788 /* Determine the underlying type of the enumeration.
9790 [dcl.enum]
9792 The underlying type of an enumeration is an integral type that
9793 can represent all the enumerator values defined in the
9794 enumeration. It is implementation-defined which integral type is
9795 used as the underlying type for an enumeration except that the
9796 underlying type shall not be larger than int unless the value of
9797 an enumerator cannot fit in an int or unsigned int.
9799 We use "int" or an "unsigned int" as the underlying type, even if
9800 a smaller integral type would work, unless the user has
9801 explicitly requested that we use the smallest possible type. The
9802 user can request that for all enumerations with a command line
9803 flag, or for just one enumeration with an attribute. */
9805 use_short_enum = flag_short_enums
9806 || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
9808 for (itk = (use_short_enum ? itk_char : itk_int);
9809 itk != itk_none;
9810 itk++)
9812 underlying_type = integer_types[itk];
9813 if (TYPE_PRECISION (underlying_type) >= precision
9814 && TYPE_UNSIGNED (underlying_type) == unsignedp)
9815 break;
9817 if (itk == itk_none)
9819 /* DR 377
9821 IF no integral type can represent all the enumerator values, the
9822 enumeration is ill-formed. */
9823 error ("no integral type can represent all of the enumerator values "
9824 "for %qT", enumtype);
9825 precision = TYPE_PRECISION (long_long_integer_type_node);
9826 underlying_type = integer_types[itk_unsigned_long_long];
9829 /* Compute the minium and maximum values for the type.
9831 [dcl.enum]
9833 For an enumeration where emin is the smallest enumerator and emax
9834 is the largest, the values of the enumeration are the values of the
9835 underlying type in the range bmin to bmax, where bmin and bmax are,
9836 respectively, the smallest and largest values of the smallest bit-
9837 field that can store emin and emax. */
9839 /* The middle-end currently assumes that types with TYPE_PRECISION
9840 narrower than their underlying type are suitably zero or sign
9841 extended to fill their mode. g++ doesn't make these guarantees.
9842 Until the middle-end can represent such paradoxical types, we
9843 set the TYPE_PRECISION to the width of the underlying type. */
9844 TYPE_PRECISION (enumtype) = TYPE_PRECISION (underlying_type);
9846 set_min_and_max_values_for_integral_type (enumtype, precision, unsignedp);
9848 /* [dcl.enum]
9850 The value of sizeof() applied to an enumeration type, an object
9851 of an enumeration type, or an enumerator, is the value of sizeof()
9852 applied to the underlying type. */
9853 TYPE_SIZE (enumtype) = TYPE_SIZE (underlying_type);
9854 TYPE_SIZE_UNIT (enumtype) = TYPE_SIZE_UNIT (underlying_type);
9855 TYPE_MODE (enumtype) = TYPE_MODE (underlying_type);
9856 TYPE_ALIGN (enumtype) = TYPE_ALIGN (underlying_type);
9857 TYPE_USER_ALIGN (enumtype) = TYPE_USER_ALIGN (underlying_type);
9858 TYPE_UNSIGNED (enumtype) = TYPE_UNSIGNED (underlying_type);
9860 /* Convert each of the enumerators to the type of the underlying
9861 type of the enumeration. */
9862 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
9864 location_t saved_location;
9866 decl = TREE_VALUE (values);
9867 saved_location = input_location;
9868 input_location = DECL_SOURCE_LOCATION (decl);
9869 value = perform_implicit_conversion (underlying_type,
9870 DECL_INITIAL (decl));
9871 input_location = saved_location;
9873 /* Do not clobber shared ints. */
9874 value = copy_node (value);
9876 TREE_TYPE (value) = enumtype;
9877 DECL_INITIAL (decl) = value;
9878 TREE_VALUE (values) = value;
9881 /* Fix up all variant types of this enum type. */
9882 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
9884 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
9885 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (enumtype);
9886 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (enumtype);
9887 TYPE_SIZE (t) = TYPE_SIZE (enumtype);
9888 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (enumtype);
9889 TYPE_MODE (t) = TYPE_MODE (enumtype);
9890 TYPE_PRECISION (t) = TYPE_PRECISION (enumtype);
9891 TYPE_ALIGN (t) = TYPE_ALIGN (enumtype);
9892 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (enumtype);
9893 TYPE_UNSIGNED (t) = TYPE_UNSIGNED (enumtype);
9896 /* Finish debugging output for this type. */
9897 rest_of_type_compilation (enumtype, namespace_bindings_p ());
9900 /* Build and install a CONST_DECL for an enumeration constant of the
9901 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
9902 Assignment of sequential values by default is handled here. */
9904 void
9905 build_enumerator (tree name, tree value, tree enumtype)
9907 tree decl;
9908 tree context;
9909 tree type;
9911 /* If the VALUE was erroneous, pretend it wasn't there; that will
9912 result in the enum being assigned the next value in sequence. */
9913 if (value == error_mark_node)
9914 value = NULL_TREE;
9916 /* Remove no-op casts from the value. */
9917 if (value)
9918 STRIP_TYPE_NOPS (value);
9920 if (! processing_template_decl)
9922 /* Validate and default VALUE. */
9923 if (value != NULL_TREE)
9925 value = integral_constant_value (value);
9927 if (TREE_CODE (value) == INTEGER_CST)
9929 value = perform_integral_promotions (value);
9930 constant_expression_warning (value);
9932 else
9934 error ("enumerator value for %qD not integer constant", name);
9935 value = NULL_TREE;
9939 /* Default based on previous value. */
9940 if (value == NULL_TREE)
9942 if (TYPE_VALUES (enumtype))
9944 HOST_WIDE_INT hi;
9945 unsigned HOST_WIDE_INT lo;
9946 tree prev_value;
9947 bool overflowed;
9949 /* The next value is the previous value plus one. We can
9950 safely assume that the previous value is an INTEGER_CST.
9951 add_double doesn't know the type of the target expression,
9952 so we must check with int_fits_type_p as well. */
9953 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
9954 overflowed = add_double (TREE_INT_CST_LOW (prev_value),
9955 TREE_INT_CST_HIGH (prev_value),
9956 1, 0, &lo, &hi);
9957 value = build_int_cst_wide (TREE_TYPE (prev_value), lo, hi);
9958 overflowed |= !int_fits_type_p (value, TREE_TYPE (prev_value));
9960 if (overflowed)
9962 error ("overflow in enumeration values at %qD", name);
9963 value = error_mark_node;
9966 else
9967 value = integer_zero_node;
9970 /* Remove no-op casts from the value. */
9971 STRIP_TYPE_NOPS (value);
9974 /* C++ associates enums with global, function, or class declarations. */
9975 context = current_scope ();
9977 /* Build the actual enumeration constant. Note that the enumeration
9978 constants have the type of their initializers until the
9979 enumeration is complete:
9981 [ dcl.enum ]
9983 Following the closing brace of an enum-specifier, each enumer-
9984 ator has the type of its enumeration. Prior to the closing
9985 brace, the type of each enumerator is the type of its
9986 initializing value.
9988 In finish_enum we will reset the type. Of course, if we're
9989 processing a template, there may be no value. */
9990 type = value ? TREE_TYPE (value) : NULL_TREE;
9992 if (context && context == current_class_type)
9993 /* This enum declaration is local to the class. We need the full
9994 lang_decl so that we can record DECL_CLASS_CONTEXT, for example. */
9995 decl = build_lang_decl (CONST_DECL, name, type);
9996 else
9997 /* It's a global enum, or it's local to a function. (Note local to
9998 a function could mean local to a class method. */
9999 decl = build_decl (CONST_DECL, name, type);
10001 DECL_CONTEXT (decl) = FROB_CONTEXT (context);
10002 TREE_CONSTANT (decl) = 1;
10003 TREE_INVARIANT (decl) = 1;
10004 TREE_READONLY (decl) = 1;
10005 DECL_INITIAL (decl) = value;
10007 if (context && context == current_class_type)
10008 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
10009 on the TYPE_FIELDS list for `S'. (That's so that you can say
10010 things like `S::i' later.) */
10011 finish_member_declaration (decl);
10012 else
10013 pushdecl (decl);
10015 /* Add this enumeration constant to the list for this type. */
10016 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
10020 /* We're defining DECL. Make sure that it's type is OK. */
10022 static void
10023 check_function_type (tree decl, tree current_function_parms)
10025 tree fntype = TREE_TYPE (decl);
10026 tree return_type = complete_type (TREE_TYPE (fntype));
10028 /* In a function definition, arg types must be complete. */
10029 require_complete_types_for_parms (current_function_parms);
10031 if (dependent_type_p (return_type))
10032 return;
10033 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
10035 tree args = TYPE_ARG_TYPES (fntype);
10037 error ("return type %q#T is incomplete", return_type);
10039 /* Make it return void instead. */
10040 if (TREE_CODE (fntype) == METHOD_TYPE)
10041 fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
10042 void_type_node,
10043 TREE_CHAIN (args));
10044 else
10045 fntype = build_function_type (void_type_node, args);
10046 TREE_TYPE (decl)
10047 = build_exception_variant (fntype,
10048 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl)));
10050 else
10051 abstract_virtuals_error (decl, TREE_TYPE (fntype));
10054 /* Create the FUNCTION_DECL for a function definition.
10055 DECLSPECS and DECLARATOR are the parts of the declaration;
10056 they describe the function's name and the type it returns,
10057 but twisted together in a fashion that parallels the syntax of C.
10059 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
10060 DECLARATOR is really the DECL for the function we are about to
10061 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
10062 indicating that the function is an inline defined in-class.
10064 This function creates a binding context for the function body
10065 as well as setting up the FUNCTION_DECL in current_function_decl.
10067 For C++, we must first check whether that datum makes any sense.
10068 For example, "class A local_a(1,2);" means that variable local_a
10069 is an aggregate of type A, which should have a constructor
10070 applied to it with the argument list [1, 2]. */
10072 void
10073 start_preparsed_function (tree decl1, tree attrs, int flags)
10075 tree ctype = NULL_TREE;
10076 tree fntype;
10077 tree restype;
10078 int doing_friend = 0;
10079 struct cp_binding_level *bl;
10080 tree current_function_parms;
10081 struct c_fileinfo *finfo
10082 = get_fileinfo (lbasename (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1))));
10083 bool honor_interface;
10085 /* Sanity check. */
10086 gcc_assert (TREE_CODE (TREE_VALUE (void_list_node)) == VOID_TYPE);
10087 gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
10089 fntype = TREE_TYPE (decl1);
10090 if (TREE_CODE (fntype) == METHOD_TYPE)
10091 ctype = TYPE_METHOD_BASETYPE (fntype);
10093 /* ISO C++ 11.4/5. A friend function defined in a class is in
10094 the (lexical) scope of the class in which it is defined. */
10095 if (!ctype && DECL_FRIEND_P (decl1))
10097 ctype = DECL_FRIEND_CONTEXT (decl1);
10099 /* CTYPE could be null here if we're dealing with a template;
10100 for example, `inline friend float foo()' inside a template
10101 will have no CTYPE set. */
10102 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
10103 ctype = NULL_TREE;
10104 else
10105 doing_friend = 1;
10108 if (DECL_DECLARED_INLINE_P (decl1)
10109 && lookup_attribute ("noinline", attrs))
10110 warning (0, "inline function %q+D given attribute noinline", decl1);
10112 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
10113 /* This is a constructor, we must ensure that any default args
10114 introduced by this definition are propagated to the clones
10115 now. The clones are used directly in overload resolution. */
10116 adjust_clone_args (decl1);
10118 /* Sometimes we don't notice that a function is a static member, and
10119 build a METHOD_TYPE for it. Fix that up now. */
10120 if (ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
10121 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE)
10123 revert_static_member_fn (decl1);
10124 ctype = NULL_TREE;
10127 /* Set up current_class_type, and enter the scope of the class, if
10128 appropriate. */
10129 if (ctype)
10130 push_nested_class (ctype);
10131 else if (DECL_STATIC_FUNCTION_P (decl1))
10132 push_nested_class (DECL_CONTEXT (decl1));
10134 /* Now that we have entered the scope of the class, we must restore
10135 the bindings for any template parameters surrounding DECL1, if it
10136 is an inline member template. (Order is important; consider the
10137 case where a template parameter has the same name as a field of
10138 the class.) It is not until after this point that
10139 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
10140 if (flags & SF_INCLASS_INLINE)
10141 maybe_begin_member_template_processing (decl1);
10143 /* Effective C++ rule 15. */
10144 if (warn_ecpp
10145 && DECL_OVERLOADED_OPERATOR_P (decl1) == NOP_EXPR
10146 && TREE_CODE (TREE_TYPE (fntype)) == VOID_TYPE)
10147 warning (0, "%<operator=%> should return a reference to %<*this%>");
10149 /* Make the init_value nonzero so pushdecl knows this is not tentative.
10150 error_mark_node is replaced below (in poplevel) with the BLOCK. */
10151 if (!DECL_INITIAL (decl1))
10152 DECL_INITIAL (decl1) = error_mark_node;
10154 /* This function exists in static storage.
10155 (This does not mean `static' in the C sense!) */
10156 TREE_STATIC (decl1) = 1;
10158 /* We must call push_template_decl after current_class_type is set
10159 up. (If we are processing inline definitions after exiting a
10160 class scope, current_class_type will be NULL_TREE until set above
10161 by push_nested_class.) */
10162 if (processing_template_decl)
10164 /* FIXME: Handle error_mark_node more gracefully. */
10165 tree newdecl1 = push_template_decl (decl1);
10166 if (newdecl1 != error_mark_node)
10167 decl1 = newdecl1;
10170 /* We are now in the scope of the function being defined. */
10171 current_function_decl = decl1;
10173 /* Save the parm names or decls from this function's declarator
10174 where store_parm_decls will find them. */
10175 current_function_parms = DECL_ARGUMENTS (decl1);
10177 /* Make sure the parameter and return types are reasonable. When
10178 you declare a function, these types can be incomplete, but they
10179 must be complete when you define the function. */
10180 check_function_type (decl1, current_function_parms);
10182 /* Build the return declaration for the function. */
10183 restype = TREE_TYPE (fntype);
10184 /* Promote the value to int before returning it. */
10185 if (c_promoting_integer_type_p (restype))
10186 restype = type_promotes_to (restype);
10187 if (DECL_RESULT (decl1) == NULL_TREE)
10189 tree resdecl;
10191 resdecl = build_decl (RESULT_DECL, 0, TYPE_MAIN_VARIANT (restype));
10192 DECL_ARTIFICIAL (resdecl) = 1;
10193 DECL_IGNORED_P (resdecl) = 1;
10194 DECL_RESULT (decl1) = resdecl;
10196 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
10199 /* Initialize RTL machinery. We cannot do this until
10200 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
10201 even when processing a template; this is how we get
10202 CFUN set up, and our per-function variables initialized.
10203 FIXME factor out the non-RTL stuff. */
10204 bl = current_binding_level;
10205 allocate_struct_function (decl1);
10206 current_binding_level = bl;
10208 /* Even though we're inside a function body, we still don't want to
10209 call expand_expr to calculate the size of a variable-sized array.
10210 We haven't necessarily assigned RTL to all variables yet, so it's
10211 not safe to try to expand expressions involving them. */
10212 cfun->x_dont_save_pending_sizes_p = 1;
10214 /* Start the statement-tree, start the tree now. */
10215 DECL_SAVED_TREE (decl1) = push_stmt_list ();
10217 /* Let the user know we're compiling this function. */
10218 announce_function (decl1);
10220 /* Record the decl so that the function name is defined.
10221 If we already have a decl for this name, and it is a FUNCTION_DECL,
10222 use the old decl. */
10223 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
10225 /* A specialization is not used to guide overload resolution. */
10226 if (!DECL_FUNCTION_MEMBER_P (decl1)
10227 && !(DECL_USE_TEMPLATE (decl1) &&
10228 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
10230 tree olddecl = pushdecl (decl1);
10232 if (olddecl == error_mark_node)
10233 /* If something went wrong when registering the declaration,
10234 use DECL1; we have to have a FUNCTION_DECL to use when
10235 parsing the body of the function. */
10237 else
10238 /* Otherwise, OLDDECL is either a previous declaration of
10239 the same function or DECL1 itself. */
10240 decl1 = olddecl;
10242 else
10244 /* We need to set the DECL_CONTEXT. */
10245 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
10246 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
10247 /* And make sure we have enough default args. */
10248 check_default_args (decl1);
10250 fntype = TREE_TYPE (decl1);
10253 /* Determine the ELF visibility attribute for the function. We must
10254 not do this before calling "pushdecl", as we must allow
10255 "duplicate_decls" to merge any attributes appropriately. */
10256 if (!DECL_CLONED_FUNCTION_P (decl1))
10257 determine_visibility (decl1);
10259 /* Reset these in case the call to pushdecl changed them. */
10260 current_function_decl = decl1;
10261 cfun->decl = decl1;
10263 /* If we are (erroneously) defining a function that we have already
10264 defined before, wipe out what we knew before. */
10265 if (!DECL_PENDING_INLINE_P (decl1))
10266 DECL_SAVED_FUNCTION_DATA (decl1) = NULL;
10268 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
10270 /* We know that this was set up by `grokclassfn'. We do not
10271 wait until `store_parm_decls', since evil parse errors may
10272 never get us to that point. Here we keep the consistency
10273 between `current_class_type' and `current_class_ptr'. */
10274 tree t = DECL_ARGUMENTS (decl1);
10276 gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
10277 gcc_assert (TREE_CODE (TREE_TYPE (t)) == POINTER_TYPE);
10279 cp_function_chain->x_current_class_ref
10280 = build_indirect_ref (t, NULL);
10281 cp_function_chain->x_current_class_ptr = t;
10283 /* Constructors and destructors need to know whether they're "in
10284 charge" of initializing virtual base classes. */
10285 t = TREE_CHAIN (t);
10286 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
10288 current_in_charge_parm = t;
10289 t = TREE_CHAIN (t);
10291 if (DECL_HAS_VTT_PARM_P (decl1))
10293 gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
10294 current_vtt_parm = t;
10298 honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
10299 /* Implicitly-defined methods (like the
10300 destructor for a class in which no destructor
10301 is explicitly declared) must not be defined
10302 until their definition is needed. So, we
10303 ignore interface specifications for
10304 compiler-generated functions. */
10305 && !DECL_ARTIFICIAL (decl1));
10307 if (DECL_INTERFACE_KNOWN (decl1))
10309 tree ctx = decl_function_context (decl1);
10311 if (DECL_NOT_REALLY_EXTERN (decl1))
10312 DECL_EXTERNAL (decl1) = 0;
10314 if (ctx != NULL_TREE && DECL_DECLARED_INLINE_P (ctx)
10315 && TREE_PUBLIC (ctx))
10316 /* This is a function in a local class in an extern inline
10317 function. */
10318 comdat_linkage (decl1);
10320 /* If this function belongs to an interface, it is public.
10321 If it belongs to someone else's interface, it is also external.
10322 This only affects inlines and template instantiations. */
10323 else if (!finfo->interface_unknown && honor_interface)
10325 if (DECL_DECLARED_INLINE_P (decl1)
10326 || DECL_TEMPLATE_INSTANTIATION (decl1)
10327 || processing_template_decl)
10329 DECL_EXTERNAL (decl1)
10330 = (finfo->interface_only
10331 || (DECL_DECLARED_INLINE_P (decl1)
10332 && ! flag_implement_inlines
10333 && !DECL_VINDEX (decl1)));
10335 /* For WIN32 we also want to put these in linkonce sections. */
10336 maybe_make_one_only (decl1);
10338 else
10339 DECL_EXTERNAL (decl1) = 0;
10340 DECL_INTERFACE_KNOWN (decl1) = 1;
10341 /* If this function is in an interface implemented in this file,
10342 make sure that the backend knows to emit this function
10343 here. */
10344 if (!DECL_EXTERNAL (decl1))
10345 mark_needed (decl1);
10347 else if (finfo->interface_unknown && finfo->interface_only
10348 && honor_interface)
10350 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
10351 interface, we will have both finfo->interface_unknown and
10352 finfo->interface_only set. In that case, we don't want to
10353 use the normal heuristics because someone will supply a
10354 #pragma implementation elsewhere, and deducing it here would
10355 produce a conflict. */
10356 comdat_linkage (decl1);
10357 DECL_EXTERNAL (decl1) = 0;
10358 DECL_INTERFACE_KNOWN (decl1) = 1;
10359 DECL_DEFER_OUTPUT (decl1) = 1;
10361 else
10363 /* This is a definition, not a reference.
10364 So clear DECL_EXTERNAL. */
10365 DECL_EXTERNAL (decl1) = 0;
10367 if ((DECL_DECLARED_INLINE_P (decl1)
10368 || DECL_TEMPLATE_INSTANTIATION (decl1))
10369 && ! DECL_INTERFACE_KNOWN (decl1)
10370 /* Don't try to defer nested functions for now. */
10371 && ! decl_function_context (decl1))
10372 DECL_DEFER_OUTPUT (decl1) = 1;
10373 else
10374 DECL_INTERFACE_KNOWN (decl1) = 1;
10377 begin_scope (sk_function_parms, decl1);
10379 ++function_depth;
10381 if (DECL_DESTRUCTOR_P (decl1)
10382 || (DECL_CONSTRUCTOR_P (decl1)
10383 && targetm.cxx.cdtor_returns_this ()))
10385 cdtor_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
10386 DECL_CONTEXT (cdtor_label) = current_function_decl;
10389 start_fname_decls ();
10391 store_parm_decls (current_function_parms);
10395 /* Like start_preparsed_function, except that instead of a
10396 FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
10398 Returns 1 on success. If the DECLARATOR is not suitable for a function
10399 (it defines a datum instead), we return 0, which tells
10400 yyparse to report a parse error. */
10403 start_function (cp_decl_specifier_seq *declspecs,
10404 const cp_declarator *declarator,
10405 tree attrs)
10407 tree decl1;
10409 if (have_extern_spec)
10411 declspecs->storage_class = sc_extern;
10412 /* This should only be done once on the outermost decl. */
10413 have_extern_spec = false;
10416 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
10417 /* If the declarator is not suitable for a function definition,
10418 cause a syntax error. */
10419 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL)
10420 return 0;
10422 /* If #pragma weak was used, mark the decl weak now. */
10423 if (global_scope_p (current_binding_level))
10424 maybe_apply_pragma_weak (decl1);
10426 if (DECL_MAIN_P (decl1))
10427 /* main must return int. grokfndecl should have corrected it
10428 (and issued a diagnostic) if the user got it wrong. */
10429 gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
10430 integer_type_node));
10432 start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
10434 return 1;
10437 /* Store the parameter declarations into the current function declaration.
10438 This is called after parsing the parameter declarations, before
10439 digesting the body of the function.
10441 Also install to binding contour return value identifier, if any. */
10443 static void
10444 store_parm_decls (tree current_function_parms)
10446 tree fndecl = current_function_decl;
10447 tree parm;
10449 /* This is a chain of any other decls that came in among the parm
10450 declarations. If a parm is declared with enum {foo, bar} x;
10451 then CONST_DECLs for foo and bar are put here. */
10452 tree nonparms = NULL_TREE;
10454 if (current_function_parms)
10456 /* This case is when the function was defined with an ANSI prototype.
10457 The parms already have decls, so we need not do anything here
10458 except record them as in effect
10459 and complain if any redundant old-style parm decls were written. */
10461 tree specparms = current_function_parms;
10462 tree next;
10464 /* Must clear this because it might contain TYPE_DECLs declared
10465 at class level. */
10466 current_binding_level->names = NULL;
10468 /* If we're doing semantic analysis, then we'll call pushdecl
10469 for each of these. We must do them in reverse order so that
10470 they end in the correct forward order. */
10471 specparms = nreverse (specparms);
10473 for (parm = specparms; parm; parm = next)
10475 next = TREE_CHAIN (parm);
10476 if (TREE_CODE (parm) == PARM_DECL)
10478 if (DECL_NAME (parm) == NULL_TREE
10479 || TREE_CODE (parm) != VOID_TYPE)
10480 pushdecl (parm);
10481 else
10482 error ("parameter %qD declared void", parm);
10484 else
10486 /* If we find an enum constant or a type tag,
10487 put it aside for the moment. */
10488 TREE_CHAIN (parm) = NULL_TREE;
10489 nonparms = chainon (nonparms, parm);
10493 /* Get the decls in their original chain order and record in the
10494 function. This is all and only the PARM_DECLs that were
10495 pushed into scope by the loop above. */
10496 DECL_ARGUMENTS (fndecl) = getdecls ();
10498 else
10499 DECL_ARGUMENTS (fndecl) = NULL_TREE;
10501 /* Now store the final chain of decls for the arguments
10502 as the decl-chain of the current lexical scope.
10503 Put the enumerators in as well, at the front so that
10504 DECL_ARGUMENTS is not modified. */
10505 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
10507 /* For a cloned function, we've already got all the code we need;
10508 there's no need to add any extra bits. */
10509 if (!DECL_CLONED_FUNCTION_P (fndecl))
10511 /* Do the starting of the exception specifications, if we have any. */
10512 if (flag_exceptions && !processing_template_decl
10513 && flag_enforce_eh_specs
10514 && TYPE_RAISES_EXCEPTIONS (TREE_TYPE (current_function_decl)))
10515 current_eh_spec_block = begin_eh_spec_block ();
10520 /* We have finished doing semantic analysis on DECL, but have not yet
10521 generated RTL for its body. Save away our current state, so that
10522 when we want to generate RTL later we know what to do. */
10524 static void
10525 save_function_data (tree decl)
10527 struct language_function *f;
10529 /* Save the language-specific per-function data so that we can
10530 get it back when we really expand this function. */
10531 gcc_assert (!DECL_PENDING_INLINE_P (decl));
10533 /* Make a copy. */
10534 f = GGC_NEW (struct language_function);
10535 memcpy (f, cp_function_chain, sizeof (struct language_function));
10536 DECL_SAVED_FUNCTION_DATA (decl) = f;
10538 /* Clear out the bits we don't need. */
10539 f->base.x_stmt_tree.x_cur_stmt_list = NULL_TREE;
10540 f->x_named_label_uses = NULL;
10541 f->bindings = NULL;
10542 f->x_local_names = NULL;
10546 /* Set the return value of the constructor (if present). */
10548 static void
10549 finish_constructor_body (void)
10551 tree val;
10552 tree exprstmt;
10554 if (targetm.cxx.cdtor_returns_this ())
10556 /* Any return from a constructor will end up here. */
10557 add_stmt (build_stmt (LABEL_EXPR, cdtor_label));
10559 val = DECL_ARGUMENTS (current_function_decl);
10560 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
10561 DECL_RESULT (current_function_decl), val);
10562 /* Return the address of the object. */
10563 exprstmt = build_stmt (RETURN_EXPR, val);
10564 add_stmt (exprstmt);
10568 /* Do all the processing for the beginning of a destructor; set up the
10569 vtable pointers and cleanups for bases and members. */
10571 static void
10572 begin_destructor_body (void)
10574 tree if_stmt;
10575 tree compound_stmt;
10577 /* If the dtor is empty, and we know there is not any possible
10578 way we could use any vtable entries, before they are possibly
10579 set by a base class dtor, we don't have to setup the vtables,
10580 as we know that any base class dtor will set up any vtables
10581 it needs. We avoid MI, because one base class dtor can do a
10582 virtual dispatch to an overridden function that would need to
10583 have a non-related vtable set up, we cannot avoid setting up
10584 vtables in that case. We could change this to see if there
10585 is just one vtable.
10587 ??? In the destructor for a class, the vtables are set
10588 appropriately for that class. There will be no non-related
10589 vtables. jason 2001-12-11. */
10590 if_stmt = begin_if_stmt ();
10592 /* If it is not safe to avoid setting up the vtables, then
10593 someone will change the condition to be boolean_true_node.
10594 (Actually, for now, we do not have code to set the condition
10595 appropriately, so we just assume that we always need to
10596 initialize the vtables.) */
10597 finish_if_stmt_cond (boolean_true_node, if_stmt);
10599 compound_stmt = begin_compound_stmt (0);
10601 /* Make all virtual function table pointers in non-virtual base
10602 classes point to CURRENT_CLASS_TYPE's virtual function
10603 tables. */
10604 initialize_vtbl_ptrs (current_class_ptr);
10606 finish_compound_stmt (compound_stmt);
10607 finish_then_clause (if_stmt);
10608 finish_if_stmt (if_stmt);
10610 /* And insert cleanups for our bases and members so that they
10611 will be properly destroyed if we throw. */
10612 push_base_cleanups ();
10615 /* At the end of every destructor we generate code to delete the object if
10616 necessary. Do that now. */
10618 static void
10619 finish_destructor_body (void)
10621 tree exprstmt;
10623 /* Any return from a destructor will end up here; that way all base
10624 and member cleanups will be run when the function returns. */
10625 add_stmt (build_stmt (LABEL_EXPR, cdtor_label));
10627 /* In a virtual destructor, we must call delete. */
10628 if (DECL_VIRTUAL_P (current_function_decl))
10630 tree if_stmt;
10631 tree virtual_size = cxx_sizeof (current_class_type);
10633 /* [class.dtor]
10635 At the point of definition of a virtual destructor (including
10636 an implicit definition), non-placement operator delete shall
10637 be looked up in the scope of the destructor's class and if
10638 found shall be accessible and unambiguous. */
10639 exprstmt = build_op_delete_call
10640 (DELETE_EXPR, current_class_ptr, virtual_size,
10641 /*global_p=*/false, NULL_TREE);
10643 if_stmt = begin_if_stmt ();
10644 finish_if_stmt_cond (build2 (BIT_AND_EXPR, integer_type_node,
10645 current_in_charge_parm,
10646 integer_one_node),
10647 if_stmt);
10648 finish_expr_stmt (exprstmt);
10649 finish_then_clause (if_stmt);
10650 finish_if_stmt (if_stmt);
10653 if (targetm.cxx.cdtor_returns_this ())
10655 tree val;
10657 val = DECL_ARGUMENTS (current_function_decl);
10658 val = build2 (MODIFY_EXPR, TREE_TYPE (val),
10659 DECL_RESULT (current_function_decl), val);
10660 /* Return the address of the object. */
10661 exprstmt = build_stmt (RETURN_EXPR, val);
10662 add_stmt (exprstmt);
10666 /* Do the necessary processing for the beginning of a function body, which
10667 in this case includes member-initializers, but not the catch clauses of
10668 a function-try-block. Currently, this means opening a binding level
10669 for the member-initializers (in a ctor) and member cleanups (in a dtor). */
10671 tree
10672 begin_function_body (void)
10674 tree stmt;
10676 if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
10677 return NULL_TREE;
10679 if (processing_template_decl)
10680 /* Do nothing now. */;
10681 else
10682 /* Always keep the BLOCK node associated with the outermost pair of
10683 curly braces of a function. These are needed for correct
10684 operation of dwarfout.c. */
10685 keep_next_level (true);
10687 stmt = begin_compound_stmt (BCS_FN_BODY);
10689 if (processing_template_decl)
10690 /* Do nothing now. */;
10691 else if (DECL_DESTRUCTOR_P (current_function_decl))
10692 begin_destructor_body ();
10694 return stmt;
10697 /* Do the processing for the end of a function body. Currently, this means
10698 closing out the cleanups for fully-constructed bases and members, and in
10699 the case of the destructor, deleting the object if desired. Again, this
10700 is only meaningful for [cd]tors, since they are the only functions where
10701 there is a significant distinction between the main body and any
10702 function catch clauses. Handling, say, main() return semantics here
10703 would be wrong, as flowing off the end of a function catch clause for
10704 main() would also need to return 0. */
10706 void
10707 finish_function_body (tree compstmt)
10709 if (compstmt == NULL_TREE)
10710 return;
10712 /* Close the block. */
10713 finish_compound_stmt (compstmt);
10715 if (processing_template_decl)
10716 /* Do nothing now. */;
10717 else if (DECL_CONSTRUCTOR_P (current_function_decl))
10718 finish_constructor_body ();
10719 else if (DECL_DESTRUCTOR_P (current_function_decl))
10720 finish_destructor_body ();
10723 /* Given a function, returns the BLOCK corresponding to the outermost level
10724 of curly braces, skipping the artificial block created for constructor
10725 initializers. */
10727 static tree
10728 outer_curly_brace_block (tree fndecl)
10730 tree block = BLOCK_SUBBLOCKS (DECL_INITIAL (fndecl));
10731 if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
10732 /* Skip the artificial function body block. */
10733 block = BLOCK_SUBBLOCKS (block);
10734 return block;
10737 /* Finish up a function declaration and compile that function
10738 all the way to assembler language output. The free the storage
10739 for the function definition.
10741 FLAGS is a bitwise or of the following values:
10742 2 - INCLASS_INLINE
10743 We just finished processing the body of an in-class inline
10744 function definition. (This processing will have taken place
10745 after the class definition is complete.) */
10747 tree
10748 finish_function (int flags)
10750 tree fndecl = current_function_decl;
10751 tree fntype, ctype = NULL_TREE;
10752 int inclass_inline = (flags & 2) != 0;
10753 int nested;
10755 /* When we get some parse errors, we can end up without a
10756 current_function_decl, so cope. */
10757 if (fndecl == NULL_TREE)
10758 return error_mark_node;
10760 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
10761 && DECL_VIRTUAL_P (fndecl)
10762 && !processing_template_decl)
10764 tree fnclass = DECL_CONTEXT (fndecl);
10765 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
10766 keyed_classes = tree_cons (NULL_TREE, fnclass, keyed_classes);
10769 nested = function_depth > 1;
10770 fntype = TREE_TYPE (fndecl);
10772 /* TREE_READONLY (fndecl) = 1;
10773 This caused &foo to be of type ptr-to-const-function
10774 which then got a warning when stored in a ptr-to-function variable. */
10776 gcc_assert (building_stmt_tree ());
10778 /* For a cloned function, we've already got all the code we need;
10779 there's no need to add any extra bits. */
10780 if (!DECL_CLONED_FUNCTION_P (fndecl))
10782 if (DECL_MAIN_P (current_function_decl))
10784 tree stmt;
10786 /* Make it so that `main' always returns 0 by default (or
10787 1 for VMS). */
10788 #if VMS_TARGET
10789 stmt = finish_return_stmt (integer_one_node);
10790 #else
10791 stmt = finish_return_stmt (integer_zero_node);
10792 #endif
10793 /* Hack. We don't want the middle-end to warn that this
10794 return is unreachable, so put the statement on the
10795 special line 0. */
10796 #ifdef USE_MAPPED_LOCATION
10797 SET_EXPR_LOCATION (stmt, UNKNOWN_LOCATION);
10798 #else
10799 annotate_with_file_line (stmt, input_filename, 0);
10800 #endif
10803 /* Finish dealing with exception specifiers. */
10804 if (flag_exceptions && !processing_template_decl
10805 && flag_enforce_eh_specs
10806 && TYPE_RAISES_EXCEPTIONS (TREE_TYPE (current_function_decl)))
10807 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
10808 (TREE_TYPE (current_function_decl)),
10809 current_eh_spec_block);
10812 /* If we're saving up tree structure, tie off the function now. */
10813 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
10815 finish_fname_decls ();
10817 /* If this function can't throw any exceptions, remember that. */
10818 if (!processing_template_decl
10819 && !cp_function_chain->can_throw
10820 && !flag_non_call_exceptions)
10821 TREE_NOTHROW (fndecl) = 1;
10823 /* This must come after expand_function_end because cleanups might
10824 have declarations (from inline functions) that need to go into
10825 this function's blocks. */
10827 /* If the current binding level isn't the outermost binding level
10828 for this function, either there is a bug, or we have experienced
10829 syntax errors and the statement tree is malformed. */
10830 if (current_binding_level->kind != sk_function_parms)
10832 /* Make sure we have already experienced errors. */
10833 gcc_assert (errorcount);
10835 /* Throw away the broken statement tree and extra binding
10836 levels. */
10837 DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
10839 while (current_binding_level->kind != sk_function_parms)
10841 if (current_binding_level->kind == sk_class)
10842 pop_nested_class ();
10843 else
10844 poplevel (0, 0, 0);
10847 poplevel (1, 0, 1);
10849 /* Statements should always be full-expressions at the outermost set
10850 of curly braces for a function. */
10851 gcc_assert (stmts_are_full_exprs_p ());
10853 /* Set up the named return value optimization, if we can. Candidate
10854 variables are selected in check_return_value. */
10855 if (current_function_return_value)
10857 tree r = current_function_return_value;
10858 tree outer;
10860 if (r != error_mark_node
10861 /* This is only worth doing for fns that return in memory--and
10862 simpler, since we don't have to worry about promoted modes. */
10863 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
10864 /* Only allow this for variables declared in the outer scope of
10865 the function so we know that their lifetime always ends with a
10866 return; see g++.dg/opt/nrv6.C. We could be more flexible if
10867 we were to do this optimization in tree-ssa. */
10868 && (outer = outer_curly_brace_block (fndecl))
10869 && chain_member (r, BLOCK_VARS (outer)))
10870 finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
10872 current_function_return_value = NULL_TREE;
10875 /* Remember that we were in class scope. */
10876 if (current_class_name)
10877 ctype = current_class_type;
10879 /* Must mark the RESULT_DECL as being in this function. */
10880 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
10882 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
10883 to the FUNCTION_DECL node itself. */
10884 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
10886 /* Save away current state, if appropriate. */
10887 if (!processing_template_decl)
10888 save_function_data (fndecl);
10890 /* Complain if there's just no return statement. */
10891 if (warn_return_type
10892 && TREE_CODE (TREE_TYPE (fntype)) != VOID_TYPE
10893 && !dependent_type_p (TREE_TYPE (fntype))
10894 && !current_function_returns_value && !current_function_returns_null
10895 /* Don't complain if we abort or throw. */
10896 && !current_function_returns_abnormally
10897 && !DECL_NAME (DECL_RESULT (fndecl))
10898 /* Normally, with -Wreturn-type, flow will complain. Unless we're an
10899 inline function, as we might never be compiled separately. */
10900 && (DECL_INLINE (fndecl) || processing_template_decl)
10901 /* Structor return values (if any) are set by the compiler. */
10902 && !DECL_CONSTRUCTOR_P (fndecl)
10903 && !DECL_DESTRUCTOR_P (fndecl))
10904 warning (0, "no return statement in function returning non-void");
10906 /* Store the end of the function, so that we get good line number
10907 info for the epilogue. */
10908 cfun->function_end_locus = input_location;
10910 /* Genericize before inlining. */
10911 if (!processing_template_decl)
10913 struct language_function *f = DECL_SAVED_FUNCTION_DATA (fndecl);
10914 cp_genericize (fndecl);
10915 /* Clear out the bits we don't need. */
10916 f->x_current_class_ptr = NULL;
10917 f->x_current_class_ref = NULL;
10918 f->x_eh_spec_block = NULL;
10919 f->x_in_charge_parm = NULL;
10920 f->x_vtt_parm = NULL;
10921 f->x_return_value = NULL;
10922 f->bindings = NULL;
10924 /* Handle attribute((warn_unused_result)). Relies on gimple input. */
10925 c_warn_unused_result (&DECL_SAVED_TREE (fndecl));
10927 /* Clear out the bits we don't need. */
10928 local_names = NULL;
10929 named_label_uses = NULL;
10931 /* We're leaving the context of this function, so zap cfun. It's still in
10932 DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation. */
10933 cfun = NULL;
10934 current_function_decl = NULL;
10936 /* If this is an in-class inline definition, we may have to pop the
10937 bindings for the template parameters that we added in
10938 maybe_begin_member_template_processing when start_function was
10939 called. */
10940 if (inclass_inline)
10941 maybe_end_member_template_processing ();
10943 /* Leave the scope of the class. */
10944 if (ctype)
10945 pop_nested_class ();
10947 --function_depth;
10949 /* Clean up. */
10950 if (! nested)
10951 /* Let the error reporting routines know that we're outside a
10952 function. For a nested function, this value is used in
10953 cxx_pop_function_context and then reset via pop_function_context. */
10954 current_function_decl = NULL_TREE;
10956 return fndecl;
10959 /* Create the FUNCTION_DECL for a function definition.
10960 DECLSPECS and DECLARATOR are the parts of the declaration;
10961 they describe the return type and the name of the function,
10962 but twisted together in a fashion that parallels the syntax of C.
10964 This function creates a binding context for the function body
10965 as well as setting up the FUNCTION_DECL in current_function_decl.
10967 Returns a FUNCTION_DECL on success.
10969 If the DECLARATOR is not suitable for a function (it defines a datum
10970 instead), we return 0, which tells yyparse to report a parse error.
10972 May return void_type_node indicating that this method is actually
10973 a friend. See grokfield for more details.
10975 Came here with a `.pushlevel' .
10977 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
10978 CHANGES TO CODE IN `grokfield'. */
10980 tree
10981 start_method (cp_decl_specifier_seq *declspecs,
10982 const cp_declarator *declarator, tree attrlist)
10984 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
10985 &attrlist);
10987 if (fndecl == error_mark_node)
10988 return error_mark_node;
10990 if (fndecl == NULL || TREE_CODE (fndecl) != FUNCTION_DECL)
10992 error ("invalid member function declaration");
10993 return error_mark_node;
10996 if (attrlist)
10997 cplus_decl_attributes (&fndecl, attrlist, 0);
10999 /* Pass friends other than inline friend functions back. */
11000 if (fndecl == void_type_node)
11001 return fndecl;
11003 if (DECL_IN_AGGR_P (fndecl))
11005 if (DECL_CONTEXT (fndecl)
11006 && TREE_CODE( DECL_CONTEXT (fndecl)) != NAMESPACE_DECL)
11007 error ("%qD is already defined in class %qT", fndecl,
11008 DECL_CONTEXT (fndecl));
11009 return error_mark_node;
11012 check_template_shadow (fndecl);
11014 DECL_DECLARED_INLINE_P (fndecl) = 1;
11015 if (flag_default_inline)
11016 DECL_INLINE (fndecl) = 1;
11018 /* We process method specializations in finish_struct_1. */
11019 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
11021 fndecl = push_template_decl (fndecl);
11022 if (fndecl == error_mark_node)
11023 return fndecl;
11026 if (! DECL_FRIEND_P (fndecl))
11028 if (TREE_CHAIN (fndecl))
11030 fndecl = copy_node (fndecl);
11031 TREE_CHAIN (fndecl) = NULL_TREE;
11033 grok_special_member_properties (fndecl);
11036 cp_finish_decl (fndecl, NULL_TREE, NULL_TREE, 0);
11038 /* Make a place for the parms. */
11039 begin_scope (sk_function_parms, fndecl);
11041 DECL_IN_AGGR_P (fndecl) = 1;
11042 return fndecl;
11045 /* Go through the motions of finishing a function definition.
11046 We don't compile this method until after the whole class has
11047 been processed.
11049 FINISH_METHOD must return something that looks as though it
11050 came from GROKFIELD (since we are defining a method, after all).
11052 This is called after parsing the body of the function definition.
11053 STMTS is the chain of statements that makes up the function body.
11055 DECL is the ..._DECL that `start_method' provided. */
11057 tree
11058 finish_method (tree decl)
11060 tree fndecl = decl;
11061 tree old_initial;
11063 tree link;
11065 if (decl == void_type_node)
11066 return decl;
11068 old_initial = DECL_INITIAL (fndecl);
11070 /* Undo the level for the parms (from start_method).
11071 This is like poplevel, but it causes nothing to be
11072 saved. Saving information here confuses symbol-table
11073 output routines. Besides, this information will
11074 be correctly output when this method is actually
11075 compiled. */
11077 /* Clear out the meanings of the local variables of this level;
11078 also record in each decl which block it belongs to. */
11080 for (link = current_binding_level->names; link; link = TREE_CHAIN (link))
11082 if (DECL_NAME (link) != NULL_TREE)
11083 pop_binding (DECL_NAME (link), link);
11084 gcc_assert (TREE_CODE (link) != FUNCTION_DECL);
11085 DECL_CONTEXT (link) = NULL_TREE;
11088 poplevel (0, 0, 0);
11090 DECL_INITIAL (fndecl) = old_initial;
11092 /* We used to check if the context of FNDECL was different from
11093 current_class_type as another way to get inside here. This didn't work
11094 for String.cc in libg++. */
11095 if (DECL_FRIEND_P (fndecl))
11097 VEC_safe_push (tree, gc, CLASSTYPE_INLINE_FRIENDS (current_class_type),
11098 fndecl);
11099 decl = void_type_node;
11102 return decl;
11106 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
11107 we can lay it out later, when and if its type becomes complete. */
11109 void
11110 maybe_register_incomplete_var (tree var)
11112 gcc_assert (TREE_CODE (var) == VAR_DECL);
11114 /* Keep track of variables with incomplete types. */
11115 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
11116 && DECL_EXTERNAL (var))
11118 tree inner_type = TREE_TYPE (var);
11120 while (TREE_CODE (inner_type) == ARRAY_TYPE)
11121 inner_type = TREE_TYPE (inner_type);
11122 inner_type = TYPE_MAIN_VARIANT (inner_type);
11124 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
11125 /* RTTI TD entries are created while defining the type_info. */
11126 || (TYPE_LANG_SPECIFIC (inner_type)
11127 && TYPE_BEING_DEFINED (inner_type)))
11128 incomplete_vars = tree_cons (inner_type, var, incomplete_vars);
11132 /* Called when a class type (given by TYPE) is defined. If there are
11133 any existing VAR_DECLs whose type hsa been completed by this
11134 declaration, update them now. */
11136 void
11137 complete_vars (tree type)
11139 tree *list = &incomplete_vars;
11141 gcc_assert (CLASS_TYPE_P (type));
11142 while (*list)
11144 if (same_type_p (type, TREE_PURPOSE (*list)))
11146 tree var = TREE_VALUE (*list);
11147 tree type = TREE_TYPE (var);
11148 /* Complete the type of the variable. The VAR_DECL itself
11149 will be laid out in expand_expr. */
11150 complete_type (type);
11151 cp_apply_type_quals_to_decl (cp_type_quals (type), var);
11152 /* Remove this entry from the list. */
11153 *list = TREE_CHAIN (*list);
11155 else
11156 list = &TREE_CHAIN (*list);
11159 /* Check for pending declarations which may have abstract type. */
11160 complete_type_check_abstract (type);
11163 /* If DECL is of a type which needs a cleanup, build that cleanup
11164 here. */
11166 tree
11167 cxx_maybe_build_cleanup (tree decl)
11169 tree type = TREE_TYPE (decl);
11171 if (type != error_mark_node && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
11173 int flags = LOOKUP_NORMAL|LOOKUP_DESTRUCTOR;
11174 tree rval;
11175 bool has_vbases = (TREE_CODE (type) == RECORD_TYPE
11176 && CLASSTYPE_VBASECLASSES (type));
11178 if (TREE_CODE (type) == ARRAY_TYPE)
11179 rval = decl;
11180 else
11182 cxx_mark_addressable (decl);
11183 rval = build_unary_op (ADDR_EXPR, decl, 0);
11186 /* Optimize for space over speed here. */
11187 if (!has_vbases || flag_expensive_optimizations)
11188 flags |= LOOKUP_NONVIRTUAL;
11190 rval = build_delete (TREE_TYPE (rval), rval,
11191 sfk_complete_destructor, flags, 0);
11193 return rval;
11195 return NULL_TREE;
11198 /* When a stmt has been parsed, this function is called. */
11200 void
11201 finish_stmt (void)
11205 /* DECL was originally constructed as a non-static member function,
11206 but turned out to be static. Update it accordingly. */
11208 void
11209 revert_static_member_fn (tree decl)
11211 tree tmp;
11212 tree function = TREE_TYPE (decl);
11213 tree args = TYPE_ARG_TYPES (function);
11215 if (cp_type_quals (TREE_TYPE (TREE_VALUE (args)))
11216 != TYPE_UNQUALIFIED)
11217 error ("static member function %q#D declared with type qualifiers", decl);
11219 args = TREE_CHAIN (args);
11220 tmp = build_function_type (TREE_TYPE (function), args);
11221 tmp = build_qualified_type (tmp, cp_type_quals (function));
11222 tmp = build_exception_variant (tmp,
11223 TYPE_RAISES_EXCEPTIONS (function));
11224 TREE_TYPE (decl) = tmp;
11225 if (DECL_ARGUMENTS (decl))
11226 DECL_ARGUMENTS (decl) = TREE_CHAIN (DECL_ARGUMENTS (decl));
11227 DECL_STATIC_FUNCTION_P (decl) = 1;
11230 /* Initialize the variables used during compilation of a C++
11231 function. */
11233 void
11234 cxx_push_function_context (struct function * f)
11236 struct language_function *p = GGC_CNEW (struct language_function);
11237 f->language = p;
11239 /* Whenever we start a new function, we destroy temporaries in the
11240 usual way. */
11241 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
11243 if (f->decl)
11245 tree fn = f->decl;
11247 if (DECL_SAVED_FUNCTION_DATA (fn))
11249 /* If we already parsed this function, and we're just expanding it
11250 now, restore saved state. */
11251 *cp_function_chain = *DECL_SAVED_FUNCTION_DATA (fn);
11253 /* We don't need the saved data anymore. Unless this is an inline
11254 function; we need the named return value info for
11255 declare_return_variable. */
11256 if (! DECL_INLINE (fn))
11257 DECL_SAVED_FUNCTION_DATA (fn) = NULL;
11262 /* Free the language-specific parts of F, now that we've finished
11263 compiling the function. */
11265 void
11266 cxx_pop_function_context (struct function * f)
11268 f->language = 0;
11271 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
11272 one of the language-independent trees. */
11274 enum cp_tree_node_structure_enum
11275 cp_tree_node_structure (union lang_tree_node * t)
11277 switch (TREE_CODE (&t->generic))
11279 case DEFAULT_ARG: return TS_CP_DEFAULT_ARG;
11280 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
11281 case OVERLOAD: return TS_CP_OVERLOAD;
11282 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
11283 case TINST_LEVEL: return TS_CP_TINST_LEVEL;
11284 case PTRMEM_CST: return TS_CP_PTRMEM;
11285 case BASELINK: return TS_CP_BASELINK;
11286 default: return TS_CP_GENERIC;
11290 /* Build the void_list_node (void_type_node having been created). */
11291 tree
11292 build_void_list_node (void)
11294 tree t = build_tree_list (NULL_TREE, void_type_node);
11295 return t;
11298 bool
11299 cp_missing_noreturn_ok_p (tree decl)
11301 /* A missing noreturn is ok for the `main' function. */
11302 return DECL_MAIN_P (decl);
11305 /* Return the COMDAT group into which DECL should be placed. */
11307 const char *
11308 cxx_comdat_group (tree decl)
11310 tree name;
11312 /* Virtual tables, construction virtual tables, and virtual table
11313 tables all go in a single COMDAT group, named after the primary
11314 virtual table. */
11315 if (TREE_CODE (decl) == VAR_DECL && DECL_VTABLE_OR_VTT_P (decl))
11316 name = DECL_ASSEMBLER_NAME (CLASSTYPE_VTABLES (DECL_CONTEXT (decl)));
11317 /* For all other DECLs, the COMDAT group is the mangled name of the
11318 declaration itself. */
11319 else
11321 while (DECL_THUNK_P (decl))
11323 /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
11324 into the same section as the target function. In that case
11325 we must return target's name. */
11326 tree target = THUNK_TARGET (decl);
11327 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
11328 && DECL_SECTION_NAME (target) != NULL
11329 && DECL_ONE_ONLY (target))
11330 decl = target;
11331 else
11332 break;
11334 name = DECL_ASSEMBLER_NAME (decl);
11337 return IDENTIFIER_POINTER (name);
11340 #include "gt-cp-decl.h"