This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / cp / decl.c
blobc7f0cb8702e4433e846c373d66f5d97f9fd78878
1 /* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
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, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, 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 "lex.h"
43 #include "output.h"
44 #include "except.h"
45 #include "toplev.h"
46 #include "hashtab.h"
47 #include "tm_p.h"
48 #include "target.h"
49 #include "c-common.h"
50 #include "c-pragma.h"
51 #include "diagnostic.h"
52 #include "debug.h"
53 #include "timevar.h"
55 static tree grokparms (tree, 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 grokfndecl (tree, tree, tree, tree, tree, int,
65 enum overload_flags, tree,
66 tree, int, int, int, int, int, int, tree);
67 static tree grokvardecl (tree, tree, RID_BIT_TYPE *, int, int, tree);
68 static void record_unknown_type (tree, const char *);
69 static tree builtin_function_1 (const char *, tree, tree, int,
70 enum built_in_class, const char *,
71 tree);
72 static tree build_library_fn_1 (tree, enum tree_code, tree);
73 static int member_function_or_else (tree, tree, enum overload_flags);
74 static void bad_specifiers (tree, const char *, int, int, int, int,
75 int);
76 static void check_for_uninitialized_const_var (tree);
77 static hashval_t typename_hash (const void *);
78 static int typename_compare (const void *, const void *);
79 static tree local_variable_p_walkfn (tree *, int *, void *);
80 static tree record_builtin_java_type (const char *, int);
81 static const char *tag_name (enum tag_types code);
82 static int walk_namespaces_r (tree, walk_namespaces_fn, void *);
83 static int walk_globals_r (tree, void*);
84 static int walk_vtables_r (tree, void*);
85 static tree make_label_decl (tree, int);
86 static void use_label (tree);
87 static void check_previous_goto_1 (tree, struct cp_binding_level *, tree,
88 const location_t *);
89 static void check_previous_goto (struct named_label_use_list *);
90 static void check_switch_goto (struct cp_binding_level *);
91 static void check_previous_gotos (tree);
92 static void pop_label (tree, tree);
93 static void pop_labels (tree);
94 static void maybe_deduce_size_from_array_init (tree, tree);
95 static void layout_var_decl (tree);
96 static void maybe_commonize_var (tree);
97 static tree check_initializer (tree, tree, int, tree *);
98 static void make_rtl_for_nonlocal_decl (tree, tree, const char *);
99 static void save_function_data (tree);
100 static void check_function_type (tree, tree);
101 static void begin_constructor_body (void);
102 static void finish_constructor_body (void);
103 static void begin_destructor_body (void);
104 static void finish_destructor_body (void);
105 static tree create_array_type_for_decl (tree, tree, tree);
106 static tree get_atexit_node (void);
107 static tree get_dso_handle_node (void);
108 static tree start_cleanup_fn (void);
109 static void end_cleanup_fn (void);
110 static tree cp_make_fname_decl (tree, int);
111 static void initialize_predefined_identifiers (void);
112 static tree check_special_function_return_type
113 (special_function_kind, tree, tree);
114 static tree push_cp_library_fn (enum tree_code, tree);
115 static tree build_cp_library_fn (tree, enum tree_code, tree);
116 static void store_parm_decls (tree);
117 static int cp_missing_noreturn_ok_p (tree);
118 static void initialize_local_var (tree, tree);
119 static void expand_static_init (tree, tree);
120 static tree next_initializable_field (tree);
121 static tree reshape_init (tree, tree *);
122 static tree build_typename_type (tree, tree, tree);
124 /* Erroneous argument lists can use this *IFF* they do not modify it. */
125 tree error_mark_list;
127 /* The following symbols are subsumed in the cp_global_trees array, and
128 listed here individually for documentation purposes.
130 C++ extensions
131 tree wchar_decl_node;
133 tree vtable_entry_type;
134 tree delta_type_node;
135 tree __t_desc_type_node;
136 tree ti_desc_type_node;
137 tree bltn_desc_type_node, ptr_desc_type_node;
138 tree ary_desc_type_node, func_desc_type_node, enum_desc_type_node;
139 tree class_desc_type_node, si_class_desc_type_node, vmi_class_desc_type_node;
140 tree ptm_desc_type_node;
141 tree base_desc_type_node;
143 tree class_type_node;
144 tree unknown_type_node;
146 Array type `vtable_entry_type[]'
148 tree vtbl_type_node;
149 tree vtbl_ptr_type_node;
151 Namespaces,
153 tree std_node;
154 tree abi_node;
156 A FUNCTION_DECL which can call `abort'. Not necessarily the
157 one that the user will declare, but sufficient to be called
158 by routines that want to abort the program.
160 tree abort_fndecl;
162 The FUNCTION_DECL for the default `::operator delete'.
164 tree global_delete_fndecl;
166 Used by RTTI
167 tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
168 tree tinfo_var_id;
172 tree cp_global_trees[CPTI_MAX];
174 /* Indicates that there is a type value in some namespace, although
175 that is not necessarily in scope at the moment. */
177 tree global_type_node;
179 /* The node that holds the "name" of the global scope. */
180 tree global_scope_name;
182 /* Used only for jumps to as-yet undefined labels, since jumps to
183 defined labels can have their validity checked immediately. */
185 struct named_label_use_list GTY(())
187 struct cp_binding_level *binding_level;
188 tree names_in_scope;
189 tree label_decl;
190 location_t o_goto_locus;
191 struct named_label_use_list *next;
194 #define named_label_uses cp_function_chain->x_named_label_uses
196 #define local_names cp_function_chain->x_local_names
198 /* A list of objects which have constructors or destructors
199 which reside in the global scope. The decl is stored in
200 the TREE_VALUE slot and the initializer is stored
201 in the TREE_PURPOSE slot. */
202 tree static_aggregates;
204 /* -- end of C++ */
206 /* A node for the integer constants 2, and 3. */
208 tree integer_two_node, integer_three_node;
210 /* A list of all LABEL_DECLs in the function that have names. Here so
211 we can clear out their names' definitions at the end of the
212 function, and so we can check the validity of jumps to these labels. */
214 struct named_label_list GTY(())
216 struct cp_binding_level *binding_level;
217 tree names_in_scope;
218 tree old_value;
219 tree label_decl;
220 tree bad_decls;
221 struct named_label_list *next;
222 unsigned int in_try_scope : 1;
223 unsigned int in_catch_scope : 1;
226 #define named_labels cp_function_chain->x_named_labels
228 /* The number of function bodies which we are currently processing.
229 (Zero if we are at namespace scope, one inside the body of a
230 function, two inside the body of a function in a local class, etc.) */
231 int function_depth;
233 /* States indicating how grokdeclarator() should handle declspecs marked
234 with __attribute__((deprecated)). An object declared as
235 __attribute__((deprecated)) suppresses warnings of uses of other
236 deprecated items. */
238 enum deprecated_states {
239 DEPRECATED_NORMAL,
240 DEPRECATED_SUPPRESS
243 static enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
245 /* Set by add_implicitly_declared_members() to keep those members from
246 being flagged as deprecated or reported as using deprecated
247 types. */
248 int adding_implicit_members = 0;
250 /* True if a declaration with an `extern' linkage specifier is being
251 processed. */
252 bool have_extern_spec;
255 /* A TREE_LIST of VAR_DECLs. The TREE_PURPOSE is a RECORD_TYPE or
256 UNION_TYPE; the TREE_VALUE is a VAR_DECL with that type. At the
257 time the VAR_DECL was declared, the type was incomplete. */
259 static GTY(()) tree incomplete_vars;
261 /* Returns the kind of template specialization we are currently
262 processing, given that it's declaration contained N_CLASS_SCOPES
263 explicit scope qualifications. */
265 tmpl_spec_kind
266 current_tmpl_spec_kind (int n_class_scopes)
268 int n_template_parm_scopes = 0;
269 int seen_specialization_p = 0;
270 int innermost_specialization_p = 0;
271 struct cp_binding_level *b;
273 /* Scan through the template parameter scopes. */
274 for (b = current_binding_level;
275 b->kind == sk_template_parms;
276 b = b->level_chain)
278 /* If we see a specialization scope inside a parameter scope,
279 then something is wrong. That corresponds to a declaration
280 like:
282 template <class T> template <> ...
284 which is always invalid since [temp.expl.spec] forbids the
285 specialization of a class member template if the enclosing
286 class templates are not explicitly specialized as well. */
287 if (b->explicit_spec_p)
289 if (n_template_parm_scopes == 0)
290 innermost_specialization_p = 1;
291 else
292 seen_specialization_p = 1;
294 else if (seen_specialization_p == 1)
295 return tsk_invalid_member_spec;
297 ++n_template_parm_scopes;
300 /* Handle explicit instantiations. */
301 if (processing_explicit_instantiation)
303 if (n_template_parm_scopes != 0)
304 /* We've seen a template parameter list during an explicit
305 instantiation. For example:
307 template <class T> template void f(int);
309 This is erroneous. */
310 return tsk_invalid_expl_inst;
311 else
312 return tsk_expl_inst;
315 if (n_template_parm_scopes < n_class_scopes)
316 /* We've not seen enough template headers to match all the
317 specialized classes present. For example:
319 template <class T> void R<T>::S<T>::f(int);
321 This is invalid; there needs to be one set of template
322 parameters for each class. */
323 return tsk_insufficient_parms;
324 else if (n_template_parm_scopes == n_class_scopes)
325 /* We're processing a non-template declaration (even though it may
326 be a member of a template class.) For example:
328 template <class T> void S<T>::f(int);
330 The `class T' maches the `S<T>', leaving no template headers
331 corresponding to the `f'. */
332 return tsk_none;
333 else if (n_template_parm_scopes > n_class_scopes + 1)
334 /* We've got too many template headers. For example:
336 template <> template <class T> void f (T);
338 There need to be more enclosing classes. */
339 return tsk_excessive_parms;
340 else
341 /* This must be a template. It's of the form:
343 template <class T> template <class U> void S<T>::f(U);
345 This is a specialization if the innermost level was a
346 specialization; otherwise it's just a definition of the
347 template. */
348 return innermost_specialization_p ? tsk_expl_spec : tsk_template;
351 /* Exit the current scope. */
353 void
354 finish_scope (void)
356 poplevel (0, 0, 0);
359 /* When a label goes out of scope, check to see if that label was used
360 in a valid manner, and issue any appropriate warnings or errors. */
362 static void
363 pop_label (tree label, tree old_value)
365 if (!processing_template_decl)
367 if (DECL_INITIAL (label) == NULL_TREE)
369 location_t location;
371 cp_error_at ("label `%D' used but not defined", label);
372 location.file = input_filename;
373 location.line = 0;
374 /* Avoid crashing later. */
375 define_label (location, DECL_NAME (label));
377 else if (warn_unused_label && !TREE_USED (label))
378 cp_warning_at ("label `%D' defined but not used", label);
381 SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (label), old_value);
384 /* At the end of a function, all labels declared within the function
385 go out of scope. BLOCK is the top-level block for the
386 function. */
388 static void
389 pop_labels (tree block)
391 struct named_label_list *link;
393 /* Clear out the definitions of all label names, since their scopes
394 end here. */
395 for (link = named_labels; link; link = link->next)
397 pop_label (link->label_decl, link->old_value);
398 /* Put the labels into the "variables" of the top-level block,
399 so debugger can see them. */
400 TREE_CHAIN (link->label_decl) = BLOCK_VARS (block);
401 BLOCK_VARS (block) = link->label_decl;
404 named_labels = NULL;
407 /* Exit a binding level.
408 Pop the level off, and restore the state of the identifier-decl mappings
409 that were in effect when this level was entered.
411 If KEEP == 1, this level had explicit declarations, so
412 and create a "block" (a BLOCK node) for the level
413 to record its declarations and subblocks for symbol table output.
415 If FUNCTIONBODY is nonzero, this level is the body of a function,
416 so create a block as if KEEP were set and also clear out all
417 label names.
419 If REVERSE is nonzero, reverse the order of decls before putting
420 them into the BLOCK. */
422 tree
423 poplevel (int keep, int reverse, int functionbody)
425 tree link;
426 /* The chain of decls was accumulated in reverse order.
427 Put it into forward order, just for cleanliness. */
428 tree decls;
429 int tmp = functionbody;
430 int real_functionbody;
431 tree subblocks;
432 tree block = NULL_TREE;
433 tree decl;
434 int leaving_for_scope;
435 scope_kind kind;
437 timevar_push (TV_NAME_LOOKUP);
439 my_friendly_assert (current_binding_level->kind != sk_class, 19990916);
441 real_functionbody = (current_binding_level->kind == sk_cleanup
442 ? ((functionbody = 0), tmp) : functionbody);
443 subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
445 my_friendly_assert (!current_binding_level->class_shadowed,
446 19990414);
448 /* We used to use KEEP == 2 to indicate that the new block should go
449 at the beginning of the list of blocks at this binding level,
450 rather than the end. This hack is no longer used. */
451 my_friendly_assert (keep == 0 || keep == 1, 0);
453 if (current_binding_level->keep)
454 keep = 1;
456 /* Any uses of undefined labels, and any defined labels, now operate
457 under constraints of next binding contour. */
458 if (cfun && !functionbody)
460 struct cp_binding_level *level_chain;
461 level_chain = current_binding_level->level_chain;
462 if (level_chain)
464 struct named_label_use_list *uses;
465 struct named_label_list *labels;
466 for (labels = named_labels; labels; labels = labels->next)
467 if (labels->binding_level == current_binding_level)
469 tree decl;
470 if (current_binding_level->kind == sk_try)
471 labels->in_try_scope = 1;
472 if (current_binding_level->kind == sk_catch)
473 labels->in_catch_scope = 1;
474 for (decl = labels->names_in_scope; decl;
475 decl = TREE_CHAIN (decl))
476 if (decl_jump_unsafe (decl))
477 labels->bad_decls = tree_cons (NULL_TREE, decl,
478 labels->bad_decls);
479 labels->binding_level = level_chain;
480 labels->names_in_scope = level_chain->names;
483 for (uses = named_label_uses; uses; uses = uses->next)
484 if (uses->binding_level == current_binding_level)
486 uses->binding_level = level_chain;
487 uses->names_in_scope = level_chain->names;
492 /* Get the decls in the order they were written.
493 Usually current_binding_level->names is in reverse order.
494 But parameter decls were previously put in forward order. */
496 if (reverse)
497 current_binding_level->names
498 = decls = nreverse (current_binding_level->names);
499 else
500 decls = current_binding_level->names;
502 /* Output any nested inline functions within this block
503 if they weren't already output. */
504 for (decl = decls; decl; decl = TREE_CHAIN (decl))
505 if (TREE_CODE (decl) == FUNCTION_DECL
506 && ! TREE_ASM_WRITTEN (decl)
507 && DECL_INITIAL (decl) != NULL_TREE
508 && TREE_ADDRESSABLE (decl)
509 && decl_function_context (decl) == current_function_decl)
511 /* If this decl was copied from a file-scope decl
512 on account of a block-scope extern decl,
513 propagate TREE_ADDRESSABLE to the file-scope decl. */
514 if (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE)
515 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
516 else
518 push_function_context ();
519 output_inline_function (decl);
520 pop_function_context ();
524 /* When not in function-at-a-time mode, expand_end_bindings will
525 warn about unused variables. But, in function-at-a-time mode
526 expand_end_bindings is not passed the list of variables in the
527 current scope, and therefore no warning is emitted. So, we
528 explicitly warn here. */
529 if (!processing_template_decl)
530 warn_about_unused_variables (getdecls ());
532 /* If there were any declarations or structure tags in that level,
533 or if this level is a function body,
534 create a BLOCK to record them for the life of this function. */
535 block = NULL_TREE;
536 if (keep == 1 || functionbody)
537 block = make_node (BLOCK);
538 if (block != NULL_TREE)
540 BLOCK_VARS (block) = decls;
541 BLOCK_SUBBLOCKS (block) = subblocks;
544 /* In each subblock, record that this is its superior. */
545 if (keep >= 0)
546 for (link = subblocks; link; link = TREE_CHAIN (link))
547 BLOCK_SUPERCONTEXT (link) = block;
549 /* We still support the old for-scope rules, whereby the variables
550 in a for-init statement were in scope after the for-statement
551 ended. We only use the new rules if flag_new_for_scope is
552 nonzero. */
553 leaving_for_scope
554 = current_binding_level->kind == sk_for && flag_new_for_scope == 1;
556 /* Remove declarations for all the DECLs in this level. */
557 for (link = decls; link; link = TREE_CHAIN (link))
559 if (leaving_for_scope && TREE_CODE (link) == VAR_DECL
560 && DECL_NAME (link))
562 cxx_binding *outer_binding
563 = IDENTIFIER_BINDING (DECL_NAME (link))->previous;
564 tree ns_binding;
566 if (!outer_binding)
567 ns_binding = IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (link));
568 else
569 ns_binding = NULL_TREE;
571 if (outer_binding
572 && outer_binding->scope == current_binding_level->level_chain)
573 /* We have something like:
575 int i;
576 for (int i; ;);
578 and we are leaving the `for' scope. There's no reason to
579 keep the binding of the inner `i' in this case. */
580 pop_binding (DECL_NAME (link), link);
581 else if ((outer_binding
582 && (TREE_CODE (outer_binding->value) == TYPE_DECL))
583 || (ns_binding && TREE_CODE (ns_binding) == TYPE_DECL))
584 /* Here, we have something like:
586 typedef int I;
588 void f () {
589 for (int I; ;);
592 We must pop the for-scope binding so we know what's a
593 type and what isn't. */
594 pop_binding (DECL_NAME (link), link);
595 else
597 /* Mark this VAR_DECL as dead so that we can tell we left it
598 there only for backward compatibility. */
599 DECL_DEAD_FOR_LOCAL (link) = 1;
601 /* Keep track of what should have happened when we
602 popped the binding. */
603 if (outer_binding && outer_binding->value)
604 DECL_SHADOWED_FOR_VAR (link) = outer_binding->value;
606 /* Add it to the list of dead variables in the next
607 outermost binding to that we can remove these when we
608 leave that binding. */
609 current_binding_level->level_chain->dead_vars_from_for
610 = tree_cons (NULL_TREE, link,
611 current_binding_level->level_chain->
612 dead_vars_from_for);
614 /* Although we don't pop the cxx_binding, we do clear
615 its SCOPE since the scope is going away now. */
616 IDENTIFIER_BINDING (DECL_NAME (link))->scope = NULL;
619 else
621 /* Remove the binding. */
622 decl = link;
623 if (TREE_CODE (decl) == TREE_LIST)
624 decl = TREE_VALUE (decl);
625 if (DECL_P (decl))
626 pop_binding (DECL_NAME (decl), decl);
627 else if (TREE_CODE (decl) == OVERLOAD)
628 pop_binding (DECL_NAME (OVL_FUNCTION (decl)), decl);
629 else
630 abort ();
634 /* Remove declarations for any `for' variables from inner scopes
635 that we kept around. */
636 for (link = current_binding_level->dead_vars_from_for;
637 link; link = TREE_CHAIN (link))
638 pop_binding (DECL_NAME (TREE_VALUE (link)), TREE_VALUE (link));
640 /* Restore the IDENTIFIER_TYPE_VALUEs. */
641 for (link = current_binding_level->type_shadowed;
642 link; link = TREE_CHAIN (link))
643 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
645 /* Restore the IDENTIFIER_LABEL_VALUEs for local labels. */
646 for (link = current_binding_level->shadowed_labels;
647 link;
648 link = TREE_CHAIN (link))
649 pop_label (TREE_VALUE (link), TREE_PURPOSE (link));
651 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
652 list if a `using' declaration put them there. The debugging
653 back-ends won't understand OVERLOAD, so we remove them here.
654 Because the BLOCK_VARS are (temporarily) shared with
655 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
656 popped all the bindings. */
657 if (block)
659 tree* d;
661 for (d = &BLOCK_VARS (block); *d; )
663 if (TREE_CODE (*d) == TREE_LIST)
664 *d = TREE_CHAIN (*d);
665 else
666 d = &TREE_CHAIN (*d);
670 /* If the level being exited is the top level of a function,
671 check over all the labels. */
672 if (functionbody)
674 /* Since this is the top level block of a function, the vars are
675 the function's parameters. Don't leave them in the BLOCK
676 because they are found in the FUNCTION_DECL instead. */
677 BLOCK_VARS (block) = 0;
678 pop_labels (block);
681 kind = current_binding_level->kind;
683 leave_scope ();
684 if (functionbody)
685 DECL_INITIAL (current_function_decl) = block;
686 else if (block)
687 current_binding_level->blocks
688 = chainon (current_binding_level->blocks, block);
690 /* If we did not make a block for the level just exited,
691 any blocks made for inner levels
692 (since they cannot be recorded as subblocks in that level)
693 must be carried forward so they will later become subblocks
694 of something else. */
695 else if (subblocks)
696 current_binding_level->blocks
697 = chainon (current_binding_level->blocks, subblocks);
699 /* Each and every BLOCK node created here in `poplevel' is important
700 (e.g. for proper debugging information) so if we created one
701 earlier, mark it as "used". */
702 if (block)
703 TREE_USED (block) = 1;
705 /* Take care of compiler's internal binding structures. */
706 if (kind == sk_cleanup)
708 tree scope_stmts;
710 scope_stmts
711 = add_scope_stmt (/*begin_p=*/0, /*partial_p=*/1);
712 if (block)
714 SCOPE_STMT_BLOCK (TREE_PURPOSE (scope_stmts)) = block;
715 SCOPE_STMT_BLOCK (TREE_VALUE (scope_stmts)) = block;
718 block = poplevel (keep, reverse, functionbody);
721 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, block);
724 /* Delete the node BLOCK from the current binding level.
725 This is used for the block inside a stmt expr ({...})
726 so that the block can be reinserted where appropriate. */
728 void
729 delete_block (tree block)
731 tree t;
732 if (current_binding_level->blocks == block)
733 current_binding_level->blocks = TREE_CHAIN (block);
734 for (t = current_binding_level->blocks; t;)
736 if (TREE_CHAIN (t) == block)
737 TREE_CHAIN (t) = TREE_CHAIN (block);
738 else
739 t = TREE_CHAIN (t);
741 TREE_CHAIN (block) = NULL_TREE;
742 /* Clear TREE_USED which is always set by poplevel.
743 The flag is set again if insert_block is called. */
744 TREE_USED (block) = 0;
747 /* Insert BLOCK at the end of the list of subblocks of the
748 current binding level. This is used when a BIND_EXPR is expanded,
749 to handle the BLOCK node inside the BIND_EXPR. */
751 void
752 insert_block (tree block)
754 TREE_USED (block) = 1;
755 current_binding_level->blocks
756 = chainon (current_binding_level->blocks, block);
759 /* Set the BLOCK node for the innermost scope
760 (the one we are currently in). */
762 void
763 set_block (tree block ATTRIBUTE_UNUSED )
765 /* The RTL expansion machinery requires us to provide this callback,
766 but it is not applicable in function-at-a-time mode. */
769 /* Returns nonzero if T is a virtual function table. */
772 vtable_decl_p (tree t, void* data ATTRIBUTE_UNUSED )
774 return (TREE_CODE (t) == VAR_DECL && DECL_VIRTUAL_P (t));
777 /* Returns nonzero if T is a TYPE_DECL for a type with virtual
778 functions. */
781 vtype_decl_p (tree t, void *data ATTRIBUTE_UNUSED )
783 return (TREE_CODE (t) == TYPE_DECL
784 && TREE_CODE (TREE_TYPE (t)) == RECORD_TYPE
785 && TYPE_POLYMORPHIC_P (TREE_TYPE (t)));
788 struct walk_globals_data {
789 walk_globals_pred p;
790 walk_globals_fn f;
791 void *data;
794 /* Walk the vtable declarations in NAMESPACE. Whenever one is found
795 for which P returns nonzero, call F with its address. If any call
796 to F returns a nonzero value, return a nonzero value. */
798 static int
799 walk_vtables_r (tree namespace, void* data)
801 struct walk_globals_data* wgd = (struct walk_globals_data *) data;
802 walk_globals_fn f = wgd->f;
803 void *d = wgd->data;
804 tree decl = NAMESPACE_LEVEL (namespace)->vtables;
805 int result = 0;
807 for (; decl ; decl = TREE_CHAIN (decl))
808 result |= (*f) (&decl, d);
810 return result;
813 /* Walk the vtable declarations. Whenever one is found for which P
814 returns nonzero, call F with its address. If any call to F
815 returns a nonzero value, return a nonzero value. */
816 bool
817 walk_vtables (walk_globals_pred p, walk_globals_fn f, void *data)
819 struct walk_globals_data wgd;
820 wgd.p = p;
821 wgd.f = f;
822 wgd.data = data;
824 return walk_namespaces (walk_vtables_r, &wgd);
827 /* Walk all the namespaces contained NAMESPACE, including NAMESPACE
828 itself, calling F for each. The DATA is passed to F as well. */
830 static int
831 walk_namespaces_r (tree namespace, walk_namespaces_fn f, void* data)
833 int result = 0;
834 tree current = NAMESPACE_LEVEL (namespace)->namespaces;
836 result |= (*f) (namespace, data);
838 for (; current; current = TREE_CHAIN (current))
839 result |= walk_namespaces_r (current, f, data);
841 return result;
844 /* Walk all the namespaces, calling F for each. The DATA is passed to
845 F as well. */
848 walk_namespaces (walk_namespaces_fn f, void* data)
850 return walk_namespaces_r (global_namespace, f, data);
853 /* Walk the global declarations in NAMESPACE. Whenever one is found
854 for which P returns nonzero, call F with its address. If any call
855 to F returns a nonzero value, return a nonzero value. */
857 static int
858 walk_globals_r (tree namespace, void* data)
860 struct walk_globals_data* wgd = (struct walk_globals_data *) data;
861 walk_globals_pred p = wgd->p;
862 walk_globals_fn f = wgd->f;
863 void *d = wgd->data;
864 tree *t;
865 int result = 0;
867 t = &NAMESPACE_LEVEL (namespace)->names;
869 while (*t)
871 tree glbl = *t;
873 if ((*p) (glbl, d))
874 result |= (*f) (t, d);
876 /* If F changed *T, then *T still points at the next item to
877 examine. */
878 if (*t == glbl)
879 t = &TREE_CHAIN (*t);
882 return result;
885 /* Walk the global declarations. Whenever one is found for which P
886 returns true, call F with its address. If any call to F
887 returns true, return true. */
889 bool
890 walk_globals (walk_globals_pred p, walk_globals_fn f, void *data)
892 struct walk_globals_data wgd;
893 wgd.p = p;
894 wgd.f = f;
895 wgd.data = data;
897 return walk_namespaces (walk_globals_r, &wgd);
900 /* Call wrapup_globals_declarations for the globals in NAMESPACE. If
901 DATA is non-NULL, this is the last time we will call
902 wrapup_global_declarations for this NAMESPACE. */
905 wrapup_globals_for_namespace (tree namespace, void* data)
907 struct cp_binding_level *level = NAMESPACE_LEVEL (namespace);
908 varray_type statics = level->static_decls;
909 tree *vec = &VARRAY_TREE (statics, 0);
910 int len = VARRAY_ACTIVE_SIZE (statics);
911 int last_time = (data != 0);
913 if (last_time)
915 check_global_declarations (vec, len);
916 return 0;
919 /* Write out any globals that need to be output. */
920 return wrapup_global_declarations (vec, len);
924 /* In C++, you don't have to write `struct S' to refer to `S'; you
925 can just use `S'. We accomplish this by creating a TYPE_DECL as
926 if the user had written `typedef struct S S'. Create and return
927 the TYPE_DECL for TYPE. */
929 tree
930 create_implicit_typedef (tree name, tree type)
932 tree decl;
934 decl = build_decl (TYPE_DECL, name, type);
935 DECL_ARTIFICIAL (decl) = 1;
936 /* There are other implicit type declarations, like the one *within*
937 a class that allows you to write `S::S'. We must distinguish
938 amongst these. */
939 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
940 TYPE_NAME (type) = decl;
942 return decl;
945 /* Remember a local name for name-mangling purposes. */
947 static void
948 push_local_name (tree decl)
950 size_t i, nelts;
951 tree t, name;
953 timevar_push (TV_NAME_LOOKUP);
954 if (!local_names)
955 VARRAY_TREE_INIT (local_names, 8, "local_names");
957 name = DECL_NAME (decl);
959 nelts = VARRAY_ACTIVE_SIZE (local_names);
960 for (i = 0; i < nelts; i++)
962 t = VARRAY_TREE (local_names, i);
963 if (DECL_NAME (t) == name)
965 if (!DECL_LANG_SPECIFIC (decl))
966 retrofit_lang_decl (decl);
967 DECL_LANG_SPECIFIC (decl)->decl_flags.u2sel = 1;
968 if (DECL_LANG_SPECIFIC (t))
969 DECL_DISCRIMINATOR (decl) = DECL_DISCRIMINATOR (t) + 1;
970 else
971 DECL_DISCRIMINATOR (decl) = 1;
973 VARRAY_TREE (local_names, i) = decl;
974 timevar_pop (TV_NAME_LOOKUP);
975 return;
979 VARRAY_PUSH_TREE (local_names, decl);
980 timevar_pop (TV_NAME_LOOKUP);
983 /* Subroutine of duplicate_decls: return truthvalue of whether
984 or not types of these decls match.
986 For C++, we must compare the parameter list so that `int' can match
987 `int&' in a parameter position, but `int&' is not confused with
988 `const int&'. */
991 decls_match (tree newdecl, tree olddecl)
993 int types_match;
995 if (newdecl == olddecl)
996 return 1;
998 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
999 /* If the two DECLs are not even the same kind of thing, we're not
1000 interested in their types. */
1001 return 0;
1003 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1005 tree f1 = TREE_TYPE (newdecl);
1006 tree f2 = TREE_TYPE (olddecl);
1007 tree p1 = TYPE_ARG_TYPES (f1);
1008 tree p2 = TYPE_ARG_TYPES (f2);
1010 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
1011 && ! (DECL_EXTERN_C_P (newdecl)
1012 && DECL_EXTERN_C_P (olddecl)))
1013 return 0;
1015 if (TREE_CODE (f1) != TREE_CODE (f2))
1016 return 0;
1018 if (same_type_p (TREE_TYPE (f1), TREE_TYPE (f2)))
1020 if (p2 == NULL_TREE && DECL_EXTERN_C_P (olddecl)
1021 && (DECL_BUILT_IN (olddecl)
1022 #ifndef NO_IMPLICIT_EXTERN_C
1023 || (DECL_IN_SYSTEM_HEADER (newdecl) && !DECL_CLASS_SCOPE_P (newdecl))
1024 || (DECL_IN_SYSTEM_HEADER (olddecl) && !DECL_CLASS_SCOPE_P (olddecl))
1025 #endif
1028 types_match = self_promoting_args_p (p1);
1029 if (p1 == void_list_node)
1030 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1032 #ifndef NO_IMPLICIT_EXTERN_C
1033 else if (p1 == NULL_TREE
1034 && (DECL_EXTERN_C_P (olddecl)
1035 && DECL_IN_SYSTEM_HEADER (olddecl)
1036 && !DECL_CLASS_SCOPE_P (olddecl))
1037 && (DECL_EXTERN_C_P (newdecl)
1038 && DECL_IN_SYSTEM_HEADER (newdecl)
1039 && !DECL_CLASS_SCOPE_P (newdecl)))
1041 types_match = self_promoting_args_p (p2);
1042 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
1044 #endif
1045 else
1046 types_match = compparms (p1, p2);
1048 else
1049 types_match = 0;
1051 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1053 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl))
1054 != TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)))
1055 return 0;
1057 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1058 DECL_TEMPLATE_PARMS (olddecl)))
1059 return 0;
1061 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1062 types_match = same_type_p (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl)),
1063 TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl)));
1064 else
1065 types_match = decls_match (DECL_TEMPLATE_RESULT (olddecl),
1066 DECL_TEMPLATE_RESULT (newdecl));
1068 else
1070 if (TREE_TYPE (newdecl) == error_mark_node)
1071 types_match = TREE_TYPE (olddecl) == error_mark_node;
1072 else if (TREE_TYPE (olddecl) == NULL_TREE)
1073 types_match = TREE_TYPE (newdecl) == NULL_TREE;
1074 else if (TREE_TYPE (newdecl) == NULL_TREE)
1075 types_match = 0;
1076 else
1077 types_match = comptypes (TREE_TYPE (newdecl),
1078 TREE_TYPE (olddecl),
1079 COMPARE_REDECLARATION);
1082 return types_match;
1085 /* If NEWDECL is `static' and an `extern' was seen previously,
1086 warn about it. OLDDECL is the previous declaration.
1088 Note that this does not apply to the C++ case of declaring
1089 a variable `extern const' and then later `const'.
1091 Don't complain about built-in functions, since they are beyond
1092 the user's control. */
1094 void
1095 warn_extern_redeclared_static (tree newdecl, tree olddecl)
1097 static const char *const explicit_extern_static_warning
1098 = "`%D' was declared `extern' and later `static'";
1099 static const char *const implicit_extern_static_warning
1100 = "`%D' was declared implicitly `extern' and later `static'";
1102 tree name;
1104 if (TREE_CODE (newdecl) == TYPE_DECL
1105 || TREE_CODE (newdecl) == TEMPLATE_DECL
1106 || TREE_CODE (newdecl) == CONST_DECL
1107 || TREE_CODE (newdecl) == NAMESPACE_DECL)
1108 return;
1110 /* Don't get confused by static member functions; that's a different
1111 use of `static'. */
1112 if (TREE_CODE (newdecl) == FUNCTION_DECL
1113 && DECL_STATIC_FUNCTION_P (newdecl))
1114 return;
1116 /* If the old declaration was `static', or the new one isn't, then
1117 then everything is OK. */
1118 if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
1119 return;
1121 /* It's OK to declare a builtin function as `static'. */
1122 if (TREE_CODE (olddecl) == FUNCTION_DECL
1123 && DECL_ARTIFICIAL (olddecl))
1124 return;
1126 name = DECL_ASSEMBLER_NAME (newdecl);
1127 pedwarn (IDENTIFIER_IMPLICIT_DECL (name)
1128 ? implicit_extern_static_warning
1129 : explicit_extern_static_warning, newdecl);
1130 cp_pedwarn_at ("previous declaration of `%D'", olddecl);
1133 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1134 If the redeclaration is invalid, a diagnostic is issued, and the
1135 error_mark_node is returned. Otherwise, OLDDECL is returned.
1137 If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1138 returned. */
1140 tree
1141 duplicate_decls (tree newdecl, tree olddecl)
1143 unsigned olddecl_uid = DECL_UID (olddecl);
1144 int olddecl_friend = 0, types_match = 0;
1145 int new_defines_function = 0;
1147 if (newdecl == olddecl)
1148 return olddecl;
1150 types_match = decls_match (newdecl, olddecl);
1152 /* If either the type of the new decl or the type of the old decl is an
1153 error_mark_node, then that implies that we have already issued an
1154 error (earlier) for some bogus type specification, and in that case,
1155 it is rather pointless to harass the user with yet more error message
1156 about the same declaration, so just pretend the types match here. */
1157 if (TREE_TYPE (newdecl) == error_mark_node
1158 || TREE_TYPE (olddecl) == error_mark_node)
1159 types_match = 1;
1161 if (DECL_P (olddecl)
1162 && TREE_CODE (newdecl) == FUNCTION_DECL
1163 && TREE_CODE (olddecl) == FUNCTION_DECL
1164 && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
1166 if (DECL_DECLARED_INLINE_P (newdecl)
1167 && DECL_UNINLINABLE (newdecl)
1168 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1169 /* Already warned elsewhere. */;
1170 else if (DECL_DECLARED_INLINE_P (olddecl)
1171 && DECL_UNINLINABLE (olddecl)
1172 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1173 /* Already warned. */;
1174 else if (DECL_DECLARED_INLINE_P (newdecl)
1175 && DECL_UNINLINABLE (olddecl)
1176 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1178 warning ("%Jfunction '%D' redeclared as inline", newdecl, newdecl);
1179 warning ("%Jprevious declaration of '%D' with attribute noinline",
1180 olddecl, olddecl);
1182 else if (DECL_DECLARED_INLINE_P (olddecl)
1183 && DECL_UNINLINABLE (newdecl)
1184 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1186 warning ("%Jfunction '%D' redeclared with attribute noinline",
1187 newdecl, newdecl);
1188 warning ("%Jprevious declaration of '%D' was inline",
1189 olddecl, olddecl);
1193 /* Check for redeclaration and other discrepancies. */
1194 if (TREE_CODE (olddecl) == FUNCTION_DECL
1195 && DECL_ARTIFICIAL (olddecl))
1197 if (TREE_CODE (newdecl) != FUNCTION_DECL)
1199 /* Avoid warnings redeclaring anticipated built-ins. */
1200 if (DECL_ANTICIPATED (olddecl))
1201 return NULL_TREE;
1203 /* If you declare a built-in or predefined function name as static,
1204 the old definition is overridden, but optionally warn this was a
1205 bad choice of name. */
1206 if (! TREE_PUBLIC (newdecl))
1208 if (warn_shadow)
1209 warning ("shadowing %s function `%#D'",
1210 DECL_BUILT_IN (olddecl) ? "built-in" : "library",
1211 olddecl);
1212 /* Discard the old built-in function. */
1213 return NULL_TREE;
1215 /* If the built-in is not ansi, then programs can override
1216 it even globally without an error. */
1217 else if (! DECL_BUILT_IN (olddecl))
1218 warning ("library function `%#D' redeclared as non-function `%#D'",
1219 olddecl, newdecl);
1220 else
1222 error ("declaration of `%#D'", newdecl);
1223 error ("conflicts with built-in declaration `%#D'",
1224 olddecl);
1226 return NULL_TREE;
1228 else if (!types_match)
1230 /* Avoid warnings redeclaring anticipated built-ins. */
1231 if (DECL_ANTICIPATED (olddecl))
1232 ; /* Do nothing yet. */
1233 else if ((DECL_EXTERN_C_P (newdecl)
1234 && DECL_EXTERN_C_P (olddecl))
1235 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1236 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1238 /* A near match; override the builtin. */
1240 if (TREE_PUBLIC (newdecl))
1242 warning ("new declaration `%#D'", newdecl);
1243 warning ("ambiguates built-in declaration `%#D'",
1244 olddecl);
1246 else if (warn_shadow)
1247 warning ("shadowing %s function `%#D'",
1248 DECL_BUILT_IN (olddecl) ? "built-in" : "library",
1249 olddecl);
1251 else
1252 /* Discard the old built-in function. */
1253 return NULL_TREE;
1255 /* Replace the old RTL to avoid problems with inlining. */
1256 SET_DECL_RTL (olddecl, DECL_RTL (newdecl));
1258 /* Even if the types match, prefer the new declarations type
1259 for anticipated built-ins, for exception lists, etc... */
1260 else if (DECL_ANTICIPATED (olddecl))
1262 tree type = TREE_TYPE (newdecl);
1263 tree attribs = (*targetm.merge_type_attributes)
1264 (TREE_TYPE (olddecl), type);
1266 type = cp_build_type_attribute_variant (type, attribs);
1267 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1270 /* Whether or not the builtin can throw exceptions has no
1271 bearing on this declarator. */
1272 TREE_NOTHROW (olddecl) = 0;
1274 if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1276 /* If a builtin function is redeclared as `static', merge
1277 the declarations, but make the original one static. */
1278 DECL_THIS_STATIC (olddecl) = 1;
1279 TREE_PUBLIC (olddecl) = 0;
1281 /* Make the old declaration consistent with the new one so
1282 that all remnants of the builtin-ness of this function
1283 will be banished. */
1284 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1285 SET_DECL_RTL (olddecl, DECL_RTL (newdecl));
1288 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1290 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
1291 && TREE_CODE (newdecl) != TYPE_DECL
1292 && ! (TREE_CODE (newdecl) == TEMPLATE_DECL
1293 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL))
1294 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
1295 && TREE_CODE (olddecl) != TYPE_DECL
1296 && ! (TREE_CODE (olddecl) == TEMPLATE_DECL
1297 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
1298 == TYPE_DECL))))
1300 /* We do nothing special here, because C++ does such nasty
1301 things with TYPE_DECLs. Instead, just let the TYPE_DECL
1302 get shadowed, and know that if we need to find a TYPE_DECL
1303 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1304 slot of the identifier. */
1305 return NULL_TREE;
1308 if ((TREE_CODE (newdecl) == FUNCTION_DECL
1309 && DECL_FUNCTION_TEMPLATE_P (olddecl))
1310 || (TREE_CODE (olddecl) == FUNCTION_DECL
1311 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1312 return NULL_TREE;
1314 error ("`%#D' redeclared as different kind of symbol", newdecl);
1315 if (TREE_CODE (olddecl) == TREE_LIST)
1316 olddecl = TREE_VALUE (olddecl);
1317 cp_error_at ("previous declaration of `%#D'", olddecl);
1319 /* New decl is completely inconsistent with the old one =>
1320 tell caller to replace the old one. */
1322 return NULL_TREE;
1324 else if (!types_match)
1326 if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1327 /* These are certainly not duplicate declarations; they're
1328 from different scopes. */
1329 return NULL_TREE;
1331 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1333 /* The name of a class template may not be declared to refer to
1334 any other template, class, function, object, namespace, value,
1335 or type in the same scope. */
1336 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1337 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1339 error ("declaration of template `%#D'", newdecl);
1340 cp_error_at ("conflicts with previous declaration `%#D'",
1341 olddecl);
1343 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1344 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1345 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1346 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1347 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1348 DECL_TEMPLATE_PARMS (olddecl))
1349 /* Template functions can be disambiguated by
1350 return type. */
1351 && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1352 TREE_TYPE (TREE_TYPE (olddecl))))
1354 error ("new declaration `%#D'", newdecl);
1355 cp_error_at ("ambiguates old declaration `%#D'", olddecl);
1357 return NULL_TREE;
1359 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1361 if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1363 error ("declaration of C function `%#D' conflicts with",
1364 newdecl);
1365 cp_error_at ("previous declaration `%#D' here", olddecl);
1367 else if (compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1368 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1370 error ("new declaration `%#D'", newdecl);
1371 cp_error_at ("ambiguates old declaration `%#D'", olddecl);
1373 else
1374 return NULL_TREE;
1377 /* Already complained about this, so don't do so again. */
1378 else if (current_class_type == NULL_TREE
1379 || IDENTIFIER_ERROR_LOCUS (DECL_ASSEMBLER_NAME (newdecl)) != current_class_type)
1381 error ("conflicting declaration '%#D'", newdecl);
1382 cp_error_at ("'%D' has a previous declaration as `%#D'",
1383 olddecl, olddecl);
1384 return NULL_TREE;
1387 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1388 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1389 && (!DECL_TEMPLATE_INFO (newdecl)
1390 || (DECL_TI_TEMPLATE (newdecl)
1391 != DECL_TI_TEMPLATE (olddecl))))
1392 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1393 && (!DECL_TEMPLATE_INFO (olddecl)
1394 || (DECL_TI_TEMPLATE (olddecl)
1395 != DECL_TI_TEMPLATE (newdecl))))))
1396 /* It's OK to have a template specialization and a non-template
1397 with the same type, or to have specializations of two
1398 different templates with the same type. Note that if one is a
1399 specialization, and the other is an instantiation of the same
1400 template, that we do not exit at this point. That situation
1401 can occur if we instantiate a template class, and then
1402 specialize one of its methods. This situation is valid, but
1403 the declarations must be merged in the usual way. */
1404 return NULL_TREE;
1405 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1406 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1407 && !DECL_USE_TEMPLATE (newdecl))
1408 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1409 && !DECL_USE_TEMPLATE (olddecl))))
1410 /* One of the declarations is a template instantiation, and the
1411 other is not a template at all. That's OK. */
1412 return NULL_TREE;
1413 else if (TREE_CODE (newdecl) == NAMESPACE_DECL
1414 && DECL_NAMESPACE_ALIAS (newdecl)
1415 && DECL_NAMESPACE_ALIAS (newdecl) == DECL_NAMESPACE_ALIAS (olddecl))
1416 /* In [namespace.alias] we have:
1418 In a declarative region, a namespace-alias-definition can be
1419 used to redefine a namespace-alias declared in that declarative
1420 region to refer only to the namespace to which it already
1421 refers.
1423 Therefore, if we encounter a second alias directive for the same
1424 alias, we can just ignore the second directive. */
1425 return olddecl;
1426 else
1428 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1429 if (errmsg)
1431 error (errmsg, newdecl);
1432 if (DECL_NAME (olddecl) != NULL_TREE)
1433 cp_error_at ((DECL_INITIAL (olddecl)
1434 && namespace_bindings_p ())
1435 ? "`%#D' previously defined here"
1436 : "`%#D' previously declared here", olddecl);
1437 return error_mark_node;
1439 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1440 && DECL_INITIAL (olddecl) != NULL_TREE
1441 && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) == NULL_TREE
1442 && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != NULL_TREE)
1444 /* Prototype decl follows defn w/o prototype. */
1445 cp_warning_at ("prototype for `%#D'", newdecl);
1446 warning ("%Jfollows non-prototype definition here", olddecl);
1448 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1449 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1451 /* extern "C" int foo ();
1452 int foo () { bar (); }
1453 is OK. */
1454 if (current_lang_depth () == 0)
1455 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1456 else
1458 cp_error_at ("previous declaration of `%#D' with %L linkage",
1459 olddecl, DECL_LANGUAGE (olddecl));
1460 error ("conflicts with new declaration with %L linkage",
1461 DECL_LANGUAGE (newdecl));
1465 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1467 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1469 tree t1 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1470 tree t2 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1471 int i = 1;
1473 if (TREE_CODE (TREE_TYPE (newdecl)) == METHOD_TYPE)
1474 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2);
1476 for (; t1 && t1 != void_list_node;
1477 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1478 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1480 if (1 == simple_cst_equal (TREE_PURPOSE (t1),
1481 TREE_PURPOSE (t2)))
1483 pedwarn ("default argument given for parameter %d of `%#D'",
1484 i, newdecl);
1485 cp_pedwarn_at ("after previous specification in `%#D'",
1486 olddecl);
1488 else
1490 error ("default argument given for parameter %d of `%#D'",
1491 i, newdecl);
1492 cp_error_at ("after previous specification in `%#D'",
1493 olddecl);
1497 if (DECL_DECLARED_INLINE_P (newdecl)
1498 && ! DECL_DECLARED_INLINE_P (olddecl)
1499 && TREE_ADDRESSABLE (olddecl) && warn_inline)
1501 warning ("`%#D' was used before it was declared inline", newdecl);
1502 warning ("%Jprevious non-inline declaration here", olddecl);
1507 /* Do not merge an implicit typedef with an explicit one. In:
1509 class A;
1511 typedef class A A __attribute__ ((foo));
1513 the attribute should apply only to the typedef. */
1514 if (TREE_CODE (olddecl) == TYPE_DECL
1515 && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1516 || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1517 return NULL_TREE;
1519 /* If new decl is `static' and an `extern' was seen previously,
1520 warn about it. */
1521 warn_extern_redeclared_static (newdecl, olddecl);
1523 /* We have committed to returning 1 at this point. */
1524 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1526 /* Now that functions must hold information normally held
1527 by field decls, there is extra work to do so that
1528 declaration information does not get destroyed during
1529 definition. */
1530 if (DECL_VINDEX (olddecl))
1531 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1532 if (DECL_CONTEXT (olddecl))
1533 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1534 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1535 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1536 DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1537 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1538 DECL_NEEDS_FINAL_OVERRIDER_P (newdecl) |= DECL_NEEDS_FINAL_OVERRIDER_P (olddecl);
1539 DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1540 if (DECL_OVERLOADED_OPERATOR_P (olddecl) != ERROR_MARK)
1541 SET_OVERLOADED_OPERATOR_CODE
1542 (newdecl, DECL_OVERLOADED_OPERATOR_P (olddecl));
1543 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1545 /* Optionally warn about more than one declaration for the same
1546 name, but don't warn about a function declaration followed by a
1547 definition. */
1548 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1549 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1550 /* Don't warn about extern decl followed by definition. */
1551 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1552 /* Don't warn about friends, let add_friend take care of it. */
1553 && ! (DECL_FRIEND_P (newdecl) || DECL_FRIEND_P (olddecl)))
1555 warning ("redundant redeclaration of `%D' in same scope", newdecl);
1556 cp_warning_at ("previous declaration of `%D'", olddecl);
1560 /* Deal with C++: must preserve virtual function table size. */
1561 if (TREE_CODE (olddecl) == TYPE_DECL)
1563 tree newtype = TREE_TYPE (newdecl);
1564 tree oldtype = TREE_TYPE (olddecl);
1566 if (newtype != error_mark_node && oldtype != error_mark_node
1567 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
1568 CLASSTYPE_FRIEND_CLASSES (newtype)
1569 = CLASSTYPE_FRIEND_CLASSES (oldtype);
1571 DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
1574 /* Copy all the DECL_... slots specified in the new decl
1575 except for any that we copy here from the old type. */
1576 DECL_ATTRIBUTES (newdecl)
1577 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1579 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1581 TREE_TYPE (olddecl) = TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl));
1582 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
1583 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
1584 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
1586 /* If the new declaration is a definition, update the file and
1587 line information on the declaration. */
1588 if (DECL_INITIAL (DECL_TEMPLATE_RESULT (olddecl)) == NULL_TREE
1589 && DECL_INITIAL (DECL_TEMPLATE_RESULT (newdecl)) != NULL_TREE)
1591 DECL_SOURCE_LOCATION (olddecl)
1592 = DECL_SOURCE_LOCATION (DECL_TEMPLATE_RESULT (olddecl))
1593 = DECL_SOURCE_LOCATION (newdecl);
1594 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1595 DECL_ARGUMENTS (DECL_TEMPLATE_RESULT (olddecl))
1596 = DECL_ARGUMENTS (DECL_TEMPLATE_RESULT (newdecl));
1599 if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1601 DECL_INLINE (DECL_TEMPLATE_RESULT (olddecl))
1602 |= DECL_INLINE (DECL_TEMPLATE_RESULT (newdecl));
1603 DECL_DECLARED_INLINE_P (DECL_TEMPLATE_RESULT (olddecl))
1604 |= DECL_DECLARED_INLINE_P (DECL_TEMPLATE_RESULT (newdecl));
1607 return olddecl;
1610 if (types_match)
1612 /* Automatically handles default parameters. */
1613 tree oldtype = TREE_TYPE (olddecl);
1614 tree newtype;
1616 /* Merge the data types specified in the two decls. */
1617 newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1619 /* If merge_types produces a non-typedef type, just use the old type. */
1620 if (TREE_CODE (newdecl) == TYPE_DECL
1621 && newtype == DECL_ORIGINAL_TYPE (newdecl))
1622 newtype = oldtype;
1624 if (TREE_CODE (newdecl) == VAR_DECL)
1626 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
1627 DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
1628 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
1629 |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
1632 /* Do this after calling `merge_types' so that default
1633 parameters don't confuse us. */
1634 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1635 && (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (newdecl))
1636 != TYPE_RAISES_EXCEPTIONS (TREE_TYPE (olddecl))))
1638 TREE_TYPE (newdecl) = build_exception_variant (newtype,
1639 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (newdecl)));
1640 TREE_TYPE (olddecl) = build_exception_variant (newtype,
1641 TYPE_RAISES_EXCEPTIONS (oldtype));
1643 if ((pedantic || ! DECL_IN_SYSTEM_HEADER (olddecl))
1644 && DECL_SOURCE_LINE (olddecl) != 0
1645 && flag_exceptions
1646 && !comp_except_specs (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (newdecl)),
1647 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (olddecl)), 1))
1649 error ("declaration of `%F' throws different exceptions",
1650 newdecl);
1651 cp_error_at ("than previous declaration `%F'", olddecl);
1654 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
1656 /* Lay the type out, unless already done. */
1657 if (! same_type_p (newtype, oldtype)
1658 && TREE_TYPE (newdecl) != error_mark_node
1659 && !(processing_template_decl && uses_template_parms (newdecl)))
1660 layout_type (TREE_TYPE (newdecl));
1662 if ((TREE_CODE (newdecl) == VAR_DECL
1663 || TREE_CODE (newdecl) == PARM_DECL
1664 || TREE_CODE (newdecl) == RESULT_DECL
1665 || TREE_CODE (newdecl) == FIELD_DECL
1666 || TREE_CODE (newdecl) == TYPE_DECL)
1667 && !(processing_template_decl && uses_template_parms (newdecl)))
1668 layout_decl (newdecl, 0);
1670 /* Merge the type qualifiers. */
1671 if (TREE_READONLY (newdecl))
1672 TREE_READONLY (olddecl) = 1;
1673 if (TREE_THIS_VOLATILE (newdecl))
1674 TREE_THIS_VOLATILE (olddecl) = 1;
1676 /* Merge the initialization information. */
1677 if (DECL_INITIAL (newdecl) == NULL_TREE
1678 && DECL_INITIAL (olddecl) != NULL_TREE)
1680 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1681 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
1682 if (CAN_HAVE_FULL_LANG_DECL_P (newdecl)
1683 && DECL_LANG_SPECIFIC (newdecl)
1684 && DECL_LANG_SPECIFIC (olddecl))
1686 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
1687 DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
1691 /* Merge the section attribute.
1692 We want to issue an error if the sections conflict but that must be
1693 done later in decl_attributes since we are called before attributes
1694 are assigned. */
1695 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1696 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1698 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1700 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1701 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1702 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
1703 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1704 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
1705 TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
1706 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
1707 DECL_IS_PURE (newdecl) |= DECL_IS_PURE (olddecl);
1708 /* Keep the old RTL. */
1709 COPY_DECL_RTL (olddecl, newdecl);
1711 else if (TREE_CODE (newdecl) == VAR_DECL
1712 && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
1714 /* Keep the old RTL. We cannot keep the old RTL if the old
1715 declaration was for an incomplete object and the new
1716 declaration is not since many attributes of the RTL will
1717 change. */
1718 COPY_DECL_RTL (olddecl, newdecl);
1721 /* If cannot merge, then use the new type and qualifiers,
1722 and don't preserve the old rtl. */
1723 else
1725 /* Clean out any memory we had of the old declaration. */
1726 tree oldstatic = value_member (olddecl, static_aggregates);
1727 if (oldstatic)
1728 TREE_VALUE (oldstatic) = error_mark_node;
1730 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1731 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1732 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1733 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1736 /* Merge the storage class information. */
1737 merge_weak (newdecl, olddecl);
1739 DECL_ONE_ONLY (newdecl) |= DECL_ONE_ONLY (olddecl);
1740 DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
1741 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1742 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
1743 if (! DECL_EXTERNAL (olddecl))
1744 DECL_EXTERNAL (newdecl) = 0;
1746 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
1748 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
1749 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
1750 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
1751 DECL_TEMPLATE_INSTANTIATED (newdecl)
1752 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
1753 /* Don't really know how much of the language-specific
1754 values we should copy from old to new. */
1755 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
1756 DECL_LANG_SPECIFIC (newdecl)->decl_flags.u2 =
1757 DECL_LANG_SPECIFIC (olddecl)->decl_flags.u2;
1758 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
1759 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
1760 DECL_INITIALIZED_IN_CLASS_P (newdecl)
1761 |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
1762 olddecl_friend = DECL_FRIEND_P (olddecl);
1764 /* Only functions have DECL_BEFRIENDING_CLASSES. */
1765 if (TREE_CODE (newdecl) == FUNCTION_DECL
1766 || DECL_FUNCTION_TEMPLATE_P (newdecl))
1768 DECL_BEFRIENDING_CLASSES (newdecl)
1769 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
1770 DECL_BEFRIENDING_CLASSES (olddecl));
1771 /* DECL_THUNKS is only valid for virtual functions,
1772 otherwise it is a DECL_FRIEND_CONTEXT. */
1773 if (DECL_VIRTUAL_P (newdecl))
1774 DECL_THUNKS (newdecl) = DECL_THUNKS (olddecl);
1778 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1780 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
1781 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
1783 /* If newdecl is not a specialization, then it is not a
1784 template-related function at all. And that means that we
1785 should have exited above, returning 0. */
1786 my_friendly_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl),
1789 if (TREE_USED (olddecl))
1790 /* From [temp.expl.spec]:
1792 If a template, a member template or the member of a class
1793 template is explicitly specialized then that
1794 specialization shall be declared before the first use of
1795 that specialization that would cause an implicit
1796 instantiation to take place, in every translation unit in
1797 which such a use occurs. */
1798 error ("explicit specialization of %D after first use",
1799 olddecl);
1801 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
1803 /* [temp.expl.spec/14] We don't inline explicit specialization
1804 just because the primary template says so. */
1806 else
1808 if (DECL_PENDING_INLINE_INFO (newdecl) == 0)
1809 DECL_PENDING_INLINE_INFO (newdecl) = DECL_PENDING_INLINE_INFO (olddecl);
1811 DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
1813 /* If either decl says `inline', this fn is inline, unless
1814 its definition was passed already. */
1815 if (DECL_INLINE (newdecl) && DECL_INITIAL (olddecl) == NULL_TREE)
1816 DECL_INLINE (olddecl) = 1;
1817 DECL_INLINE (newdecl) = DECL_INLINE (olddecl);
1819 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
1820 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
1823 /* Preserve abstractness on cloned [cd]tors. */
1824 DECL_ABSTRACT (newdecl) = DECL_ABSTRACT (olddecl);
1826 if (! types_match)
1828 SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1829 COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
1830 SET_DECL_RTL (olddecl, DECL_RTL (newdecl));
1832 if (! types_match || new_defines_function)
1834 /* These need to be copied so that the names are available.
1835 Note that if the types do match, we'll preserve inline
1836 info and other bits, but if not, we won't. */
1837 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
1838 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
1840 if (new_defines_function)
1841 /* If defining a function declared with other language
1842 linkage, use the previously declared language linkage. */
1843 SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1844 else if (types_match)
1846 /* If redeclaring a builtin function, and not a definition,
1847 it stays built in. */
1848 if (DECL_BUILT_IN (olddecl))
1850 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
1851 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
1852 /* If we're keeping the built-in definition, keep the rtl,
1853 regardless of declaration matches. */
1854 SET_DECL_RTL (newdecl, DECL_RTL (olddecl));
1857 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
1858 /* Don't clear out the arguments if we're redefining a function. */
1859 if (DECL_ARGUMENTS (olddecl))
1860 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
1863 else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1864 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
1866 /* Now preserve various other info from the definition. */
1867 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
1868 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
1869 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
1870 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1872 /* If either declaration has a nondefault visibility, use it. */
1873 if (DECL_VISIBILITY (olddecl) != VISIBILITY_DEFAULT)
1875 if (DECL_VISIBILITY (newdecl) != VISIBILITY_DEFAULT
1876 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
1878 warning ("%J'%D': visibility attribute ignored because it",
1879 newdecl, newdecl);
1880 warning ("%Jconflicts with previous declaration here", olddecl);
1882 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
1885 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1887 int function_size;
1889 function_size = sizeof (struct tree_decl);
1891 memcpy ((char *) olddecl + sizeof (struct tree_common),
1892 (char *) newdecl + sizeof (struct tree_common),
1893 function_size - sizeof (struct tree_common));
1895 if (DECL_TEMPLATE_INSTANTIATION (newdecl))
1896 /* If newdecl is a template instantiation, it is possible that
1897 the following sequence of events has occurred:
1899 o A friend function was declared in a class template. The
1900 class template was instantiated.
1902 o The instantiation of the friend declaration was
1903 recorded on the instantiation list, and is newdecl.
1905 o Later, however, instantiate_class_template called pushdecl
1906 on the newdecl to perform name injection. But, pushdecl in
1907 turn called duplicate_decls when it discovered that another
1908 declaration of a global function with the same name already
1909 existed.
1911 o Here, in duplicate_decls, we decided to clobber newdecl.
1913 If we're going to do that, we'd better make sure that
1914 olddecl, and not newdecl, is on the list of
1915 instantiations so that if we try to do the instantiation
1916 again we won't get the clobbered declaration. */
1917 reregister_specialization (newdecl,
1918 DECL_TI_TEMPLATE (newdecl),
1919 olddecl);
1921 else
1923 memcpy ((char *) olddecl + sizeof (struct tree_common),
1924 (char *) newdecl + sizeof (struct tree_common),
1925 sizeof (struct tree_decl) - sizeof (struct tree_common)
1926 + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
1929 DECL_UID (olddecl) = olddecl_uid;
1930 if (olddecl_friend)
1931 DECL_FRIEND_P (olddecl) = 1;
1933 /* NEWDECL contains the merged attribute lists.
1934 Update OLDDECL to be the same. */
1935 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
1937 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
1938 so that encode_section_info has a chance to look at the new decl
1939 flags and attributes. */
1940 if (DECL_RTL_SET_P (olddecl)
1941 && (TREE_CODE (olddecl) == FUNCTION_DECL
1942 || (TREE_CODE (olddecl) == VAR_DECL
1943 && TREE_STATIC (olddecl))))
1944 make_decl_rtl (olddecl, NULL);
1946 return olddecl;
1949 /* Generate an implicit declaration for identifier FUNCTIONID
1950 as a function of type int (). Print a warning if appropriate. */
1952 tree
1953 implicitly_declare (tree functionid)
1955 tree decl;
1957 /* We used to reuse an old implicit decl here,
1958 but this loses with inline functions because it can clobber
1959 the saved decl chains. */
1960 decl = build_lang_decl (FUNCTION_DECL, functionid, default_function_type);
1962 DECL_EXTERNAL (decl) = 1;
1963 TREE_PUBLIC (decl) = 1;
1965 /* ISO standard says implicit declarations are in the innermost block.
1966 So we record the decl in the standard fashion. */
1967 pushdecl (decl);
1968 rest_of_decl_compilation (decl, NULL, 0, 0);
1970 if (warn_implicit
1971 /* Only one warning per identifier. */
1972 && IDENTIFIER_IMPLICIT_DECL (functionid) == NULL_TREE)
1974 pedwarn ("implicit declaration of function `%#D'", decl);
1977 SET_IDENTIFIER_IMPLICIT_DECL (functionid, decl);
1979 return decl;
1982 /* Return zero if the declaration NEWDECL is valid
1983 when the declaration OLDDECL (assumed to be for the same name)
1984 has already been seen.
1985 Otherwise return an error message format string with a %s
1986 where the identifier should go. */
1988 static const char *
1989 redeclaration_error_message (tree newdecl, tree olddecl)
1991 if (TREE_CODE (newdecl) == TYPE_DECL)
1993 /* Because C++ can put things into name space for free,
1994 constructs like "typedef struct foo { ... } foo"
1995 would look like an erroneous redeclaration. */
1996 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
1997 return 0;
1998 else
1999 return "redefinition of `%#D'";
2001 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2003 /* If this is a pure function, its olddecl will actually be
2004 the original initialization to `0' (which we force to call
2005 abort()). Don't complain about redefinition in this case. */
2006 if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl))
2007 return 0;
2009 /* If both functions come from different namespaces, this is not
2010 a redeclaration - this is a conflict with a used function. */
2011 if (DECL_NAMESPACE_SCOPE_P (olddecl)
2012 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl))
2013 return "`%D' conflicts with used function";
2015 /* We'll complain about linkage mismatches in
2016 warn_extern_redeclared_static. */
2018 /* Defining the same name twice is no good. */
2019 if (DECL_INITIAL (olddecl) != NULL_TREE
2020 && DECL_INITIAL (newdecl) != NULL_TREE)
2022 if (DECL_NAME (olddecl) == NULL_TREE)
2023 return "`%#D' not declared in class";
2024 else
2025 return "redefinition of `%#D'";
2027 return 0;
2029 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2031 tree nt, ot;
2033 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2035 if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2036 && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2037 return "redefinition of `%#D'";
2038 return NULL;
2041 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2042 || (DECL_TEMPLATE_RESULT (newdecl)
2043 == DECL_TEMPLATE_RESULT (olddecl)))
2044 return NULL;
2046 nt = DECL_TEMPLATE_RESULT (newdecl);
2047 if (DECL_TEMPLATE_INFO (nt))
2048 nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2049 ot = DECL_TEMPLATE_RESULT (olddecl);
2050 if (DECL_TEMPLATE_INFO (ot))
2051 ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2052 if (DECL_INITIAL (nt) && DECL_INITIAL (ot))
2053 return "redefinition of `%#D'";
2055 return NULL;
2057 else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2059 /* Objects declared at top level: */
2060 /* If at least one is a reference, it's ok. */
2061 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2062 return 0;
2063 /* Reject two definitions. */
2064 return "redefinition of `%#D'";
2066 else
2068 /* Objects declared with block scope: */
2069 /* Reject two definitions, and reject a definition
2070 together with an external reference. */
2071 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
2072 return "redeclaration of `%#D'";
2073 return 0;
2077 /* Create a new label, named ID. */
2079 static tree
2080 make_label_decl (tree id, int local_p)
2082 tree decl;
2084 decl = build_decl (LABEL_DECL, id, void_type_node);
2086 DECL_CONTEXT (decl) = current_function_decl;
2087 DECL_MODE (decl) = VOIDmode;
2088 C_DECLARED_LABEL_FLAG (decl) = local_p;
2090 /* Say where one reference is to the label, for the sake of the
2091 error if it is not defined. */
2092 DECL_SOURCE_LOCATION (decl) = input_location;
2094 /* Record the fact that this identifier is bound to this label. */
2095 SET_IDENTIFIER_LABEL_VALUE (id, decl);
2097 return decl;
2100 /* Record this label on the list of used labels so that we can check
2101 at the end of the function to see whether or not the label was
2102 actually defined, and so we can check when the label is defined whether
2103 this use is valid. */
2105 static void
2106 use_label (tree decl)
2108 if (named_label_uses == NULL
2109 || named_label_uses->names_in_scope != current_binding_level->names
2110 || named_label_uses->label_decl != decl)
2112 struct named_label_use_list *new_ent;
2113 new_ent = ggc_alloc (sizeof (struct named_label_use_list));
2114 new_ent->label_decl = decl;
2115 new_ent->names_in_scope = current_binding_level->names;
2116 new_ent->binding_level = current_binding_level;
2117 new_ent->o_goto_locus = input_location;
2118 new_ent->next = named_label_uses;
2119 named_label_uses = new_ent;
2123 /* Look for a label named ID in the current function. If one cannot
2124 be found, create one. (We keep track of used, but undefined,
2125 labels, and complain about them at the end of a function.) */
2127 tree
2128 lookup_label (tree id)
2130 tree decl;
2131 struct named_label_list *ent;
2133 timevar_push (TV_NAME_LOOKUP);
2134 /* You can't use labels at global scope. */
2135 if (current_function_decl == NULL_TREE)
2137 error ("label `%s' referenced outside of any function",
2138 IDENTIFIER_POINTER (id));
2139 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2142 /* See if we've already got this label. */
2143 decl = IDENTIFIER_LABEL_VALUE (id);
2144 if (decl != NULL_TREE && DECL_CONTEXT (decl) == current_function_decl)
2145 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2147 /* Record this label on the list of labels used in this function.
2148 We do this before calling make_label_decl so that we get the
2149 IDENTIFIER_LABEL_VALUE before the new label is declared. */
2150 ent = ggc_alloc_cleared (sizeof (struct named_label_list));
2151 ent->old_value = IDENTIFIER_LABEL_VALUE (id);
2152 ent->next = named_labels;
2153 named_labels = ent;
2155 /* We need a new label. */
2156 decl = make_label_decl (id, /*local_p=*/0);
2158 /* Now fill in the information we didn't have before. */
2159 ent->label_decl = decl;
2161 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2164 /* Declare a local label named ID. */
2166 tree
2167 declare_local_label (tree id)
2169 tree decl;
2171 /* Add a new entry to the SHADOWED_LABELS list so that when we leave
2172 this scope we can restore the old value of
2173 IDENTIFIER_TYPE_VALUE. */
2174 current_binding_level->shadowed_labels
2175 = tree_cons (IDENTIFIER_LABEL_VALUE (id), NULL_TREE,
2176 current_binding_level->shadowed_labels);
2177 /* Look for the label. */
2178 decl = make_label_decl (id, /*local_p=*/1);
2179 /* Now fill in the information we didn't have before. */
2180 TREE_VALUE (current_binding_level->shadowed_labels) = decl;
2182 return decl;
2185 /* Returns nonzero if it is ill-formed to jump past the declaration of
2186 DECL. Returns 2 if it's also a real problem. */
2188 static int
2189 decl_jump_unsafe (tree decl)
2191 if (TREE_CODE (decl) != VAR_DECL || TREE_STATIC (decl))
2192 return 0;
2194 if (DECL_INITIAL (decl) == NULL_TREE
2195 && pod_type_p (TREE_TYPE (decl)))
2196 return 0;
2198 /* This is really only important if we're crossing an initialization.
2199 The POD stuff is just pedantry; why should it matter if the class
2200 contains a field of pointer to member type? */
2201 if (DECL_INITIAL (decl)
2202 || (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl))))
2203 return 2;
2204 return 1;
2207 /* Check that a single previously seen jump to a newly defined label
2208 is OK. DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
2209 the jump context; NAMES are the names in scope in LEVEL at the jump
2210 context; FILE and LINE are the source position of the jump or 0. */
2212 static void
2213 check_previous_goto_1 (tree decl,
2214 struct cp_binding_level* level,
2215 tree names, const location_t *locus)
2217 int identified = 0;
2218 int saw_eh = 0;
2219 struct cp_binding_level *b = current_binding_level;
2220 for (; b; b = b->level_chain)
2222 tree new_decls = b->names;
2223 tree old_decls = (b == level ? names : NULL_TREE);
2224 for (; new_decls != old_decls;
2225 new_decls = TREE_CHAIN (new_decls))
2227 int problem = decl_jump_unsafe (new_decls);
2228 if (! problem)
2229 continue;
2231 if (! identified)
2233 if (decl)
2234 pedwarn ("jump to label `%D'", decl);
2235 else
2236 pedwarn ("jump to case label");
2238 if (locus)
2239 pedwarn ("%H from here", locus);
2240 identified = 1;
2243 if (problem > 1)
2244 cp_error_at (" crosses initialization of `%#D'",
2245 new_decls);
2246 else
2247 cp_pedwarn_at (" enters scope of non-POD `%#D'",
2248 new_decls);
2251 if (b == level)
2252 break;
2253 if ((b->kind == sk_try || b->kind == sk_catch) && ! saw_eh)
2255 if (! identified)
2257 if (decl)
2258 pedwarn ("jump to label `%D'", decl);
2259 else
2260 pedwarn ("jump to case label");
2262 if (locus)
2263 pedwarn ("%H from here", locus);
2264 identified = 1;
2266 if (b->kind == sk_try)
2267 error (" enters try block");
2268 else
2269 error (" enters catch block");
2270 saw_eh = 1;
2275 static void
2276 check_previous_goto (struct named_label_use_list* use)
2278 check_previous_goto_1 (use->label_decl, use->binding_level,
2279 use->names_in_scope, &use->o_goto_locus);
2282 static void
2283 check_switch_goto (struct cp_binding_level* level)
2285 check_previous_goto_1 (NULL_TREE, level, level->names, NULL);
2288 /* Check that any previously seen jumps to a newly defined label DECL
2289 are OK. Called by define_label. */
2291 static void
2292 check_previous_gotos (tree decl)
2294 struct named_label_use_list **usep;
2296 if (! TREE_USED (decl))
2297 return;
2299 for (usep = &named_label_uses; *usep; )
2301 struct named_label_use_list *use = *usep;
2302 if (use->label_decl == decl)
2304 check_previous_goto (use);
2305 *usep = use->next;
2307 else
2308 usep = &(use->next);
2312 /* Check that a new jump to a label DECL is OK. Called by
2313 finish_goto_stmt. */
2315 void
2316 check_goto (tree decl)
2318 int identified = 0;
2319 tree bad;
2320 struct named_label_list *lab;
2322 /* We can't know where a computed goto is jumping. So we assume
2323 that it's OK. */
2324 if (! DECL_P (decl))
2325 return;
2327 /* If the label hasn't been defined yet, defer checking. */
2328 if (! DECL_INITIAL (decl))
2330 use_label (decl);
2331 return;
2334 for (lab = named_labels; lab; lab = lab->next)
2335 if (decl == lab->label_decl)
2336 break;
2338 /* If the label is not on named_labels it's a gcc local label, so
2339 it must be in an outer scope, so jumping to it is always OK. */
2340 if (lab == 0)
2341 return;
2343 if ((lab->in_try_scope || lab->in_catch_scope || lab->bad_decls)
2344 && !identified)
2346 cp_pedwarn_at ("jump to label `%D'", decl);
2347 pedwarn (" from here");
2348 identified = 1;
2351 for (bad = lab->bad_decls; bad; bad = TREE_CHAIN (bad))
2353 tree b = TREE_VALUE (bad);
2354 int u = decl_jump_unsafe (b);
2356 if (u > 1 && DECL_ARTIFICIAL (b))
2357 /* Can't skip init of __exception_info. */
2358 error ("%J enters catch block", b);
2359 else if (u > 1)
2360 cp_error_at (" skips initialization of `%#D'", b);
2361 else
2362 cp_pedwarn_at (" enters scope of non-POD `%#D'", b);
2365 if (lab->in_try_scope)
2366 error (" enters try block");
2367 else if (lab->in_catch_scope)
2368 error (" enters catch block");
2371 /* Define a label, specifying the location in the source file.
2372 Return the LABEL_DECL node for the label. */
2374 tree
2375 define_label (location_t location, tree name)
2377 tree decl = lookup_label (name);
2378 struct named_label_list *ent;
2379 struct cp_binding_level *p;
2381 timevar_push (TV_NAME_LOOKUP);
2382 for (ent = named_labels; ent; ent = ent->next)
2383 if (ent->label_decl == decl)
2384 break;
2386 /* After labels, make any new cleanups in the function go into their
2387 own new (temporary) binding contour. */
2388 for (p = current_binding_level;
2389 p->kind != sk_function_parms;
2390 p = p->level_chain)
2391 p->more_cleanups_ok = 0;
2393 if (name == get_identifier ("wchar_t"))
2394 pedwarn ("label named wchar_t");
2396 if (DECL_INITIAL (decl) != NULL_TREE)
2397 error ("duplicate label `%D'", decl);
2398 else
2400 /* Mark label as having been defined. */
2401 DECL_INITIAL (decl) = error_mark_node;
2402 /* Say where in the source. */
2403 DECL_SOURCE_LOCATION (decl) = location;
2404 if (ent)
2406 ent->names_in_scope = current_binding_level->names;
2407 ent->binding_level = current_binding_level;
2409 check_previous_gotos (decl);
2412 timevar_pop (TV_NAME_LOOKUP);
2413 return decl;
2416 struct cp_switch
2418 struct cp_binding_level *level;
2419 struct cp_switch *next;
2420 /* The SWITCH_STMT being built. */
2421 tree switch_stmt;
2422 /* A splay-tree mapping the low element of a case range to the high
2423 element, or NULL_TREE if there is no high element. Used to
2424 determine whether or not a new case label duplicates an old case
2425 label. We need a tree, rather than simply a hash table, because
2426 of the GNU case range extension. */
2427 splay_tree cases;
2430 /* A stack of the currently active switch statements. The innermost
2431 switch statement is on the top of the stack. There is no need to
2432 mark the stack for garbage collection because it is only active
2433 during the processing of the body of a function, and we never
2434 collect at that point. */
2436 static struct cp_switch *switch_stack;
2438 /* Called right after a switch-statement condition is parsed.
2439 SWITCH_STMT is the switch statement being parsed. */
2441 void
2442 push_switch (tree switch_stmt)
2444 struct cp_switch *p = xmalloc (sizeof (struct cp_switch));
2445 p->level = current_binding_level;
2446 p->next = switch_stack;
2447 p->switch_stmt = switch_stmt;
2448 p->cases = splay_tree_new (case_compare, NULL, NULL);
2449 switch_stack = p;
2452 void
2453 pop_switch (void)
2455 struct cp_switch *cs;
2457 cs = switch_stack;
2458 splay_tree_delete (cs->cases);
2459 switch_stack = switch_stack->next;
2460 free (cs);
2463 /* Note that we've seen a definition of a case label, and complain if this
2464 is a bad place for one. */
2466 tree
2467 finish_case_label (tree low_value, tree high_value)
2469 tree cond, r;
2470 struct cp_binding_level *p;
2472 if (processing_template_decl)
2474 tree label;
2476 /* For templates, just add the case label; we'll do semantic
2477 analysis at instantiation-time. */
2478 label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
2479 return add_stmt (build_case_label (low_value, high_value, label));
2482 /* Find the condition on which this switch statement depends. */
2483 cond = SWITCH_COND (switch_stack->switch_stmt);
2484 if (cond && TREE_CODE (cond) == TREE_LIST)
2485 cond = TREE_VALUE (cond);
2487 r = c_add_case_label (switch_stack->cases, cond, low_value, high_value);
2489 check_switch_goto (switch_stack->level);
2491 /* After labels, make any new cleanups in the function go into their
2492 own new (temporary) binding contour. */
2493 for (p = current_binding_level;
2494 p->kind != sk_function_parms;
2495 p = p->level_chain)
2496 p->more_cleanups_ok = 0;
2498 return r;
2501 /* Hash a TYPENAME_TYPE. K is really of type `tree'. */
2503 static hashval_t
2504 typename_hash (const void* k)
2506 hashval_t hash;
2507 tree t = (tree) k;
2509 hash = (htab_hash_pointer (TYPE_CONTEXT (t))
2510 ^ htab_hash_pointer (DECL_NAME (TYPE_NAME (t))));
2512 return hash;
2515 /* Compare two TYPENAME_TYPEs. K1 and K2 are really of type `tree'. */
2517 static int
2518 typename_compare (const void * k1, const void * k2)
2520 tree t1;
2521 tree t2;
2522 tree d1;
2523 tree d2;
2525 t1 = (tree) k1;
2526 t2 = (tree) k2;
2527 d1 = TYPE_NAME (t1);
2528 d2 = TYPE_NAME (t2);
2530 return (DECL_NAME (d1) == DECL_NAME (d2)
2531 && TYPE_CONTEXT (t1) == TYPE_CONTEXT (t2)
2532 && ((TREE_TYPE (t1) != NULL_TREE)
2533 == (TREE_TYPE (t2) != NULL_TREE))
2534 && same_type_p (TREE_TYPE (t1), TREE_TYPE (t2))
2535 && TYPENAME_TYPE_FULLNAME (t1) == TYPENAME_TYPE_FULLNAME (t2));
2538 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
2539 the type of `T', NAME is the IDENTIFIER_NODE for `t'. If BASE_TYPE
2540 is non-NULL, this type is being created by the implicit typename
2541 extension, and BASE_TYPE is a type named `t' in some base class of
2542 `T' which depends on template parameters.
2544 Returns the new TYPENAME_TYPE. */
2546 static GTY ((param_is (union tree_node))) htab_t typename_htab;
2548 static tree
2549 build_typename_type (tree context, tree name, tree fullname)
2551 tree t;
2552 tree d;
2553 void **e;
2555 if (typename_htab == NULL)
2557 typename_htab = htab_create_ggc (61, &typename_hash,
2558 &typename_compare, NULL);
2561 /* Build the TYPENAME_TYPE. */
2562 t = make_aggr_type (TYPENAME_TYPE);
2563 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
2564 TYPENAME_TYPE_FULLNAME (t) = fullname;
2566 /* Build the corresponding TYPE_DECL. */
2567 d = build_decl (TYPE_DECL, name, t);
2568 TYPE_NAME (TREE_TYPE (d)) = d;
2569 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
2570 DECL_CONTEXT (d) = FROB_CONTEXT (context);
2571 DECL_ARTIFICIAL (d) = 1;
2573 /* See if we already have this type. */
2574 e = htab_find_slot (typename_htab, t, INSERT);
2575 if (*e)
2576 t = (tree) *e;
2577 else
2578 *e = t;
2580 return t;
2583 /* Resolve `typename CONTEXT::NAME'. Returns an appropriate type,
2584 unless an error occurs, in which case error_mark_node is returned.
2585 If we locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is
2586 set, we return that, rather than the _TYPE it corresponds to, in
2587 other cases we look through the type decl. If TF_ERROR is set,
2588 complain about errors, otherwise be quiet. */
2590 tree
2591 make_typename_type (tree context, tree name, tsubst_flags_t complain)
2593 tree fullname;
2595 if (name == error_mark_node
2596 || context == NULL_TREE
2597 || context == error_mark_node)
2598 return error_mark_node;
2600 if (TYPE_P (name))
2602 if (!(TYPE_LANG_SPECIFIC (name)
2603 && (CLASSTYPE_IS_TEMPLATE (name)
2604 || CLASSTYPE_USE_TEMPLATE (name))))
2605 name = TYPE_IDENTIFIER (name);
2606 else
2607 /* Create a TEMPLATE_ID_EXPR for the type. */
2608 name = build_nt (TEMPLATE_ID_EXPR,
2609 CLASSTYPE_TI_TEMPLATE (name),
2610 CLASSTYPE_TI_ARGS (name));
2612 else if (TREE_CODE (name) == TYPE_DECL)
2613 name = DECL_NAME (name);
2615 fullname = name;
2617 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
2619 name = TREE_OPERAND (name, 0);
2620 if (TREE_CODE (name) == TEMPLATE_DECL)
2621 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
2623 if (TREE_CODE (name) == TEMPLATE_DECL)
2625 error ("`%D' used without template parameters", name);
2626 return error_mark_node;
2628 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 20030802);
2630 if (TREE_CODE (context) == NAMESPACE_DECL)
2632 /* We can get here from typename_sub0 in the explicit_template_type
2633 expansion. Just fail. */
2634 if (complain & tf_error)
2635 error ("no class template named `%#T' in `%#T'",
2636 name, context);
2637 return error_mark_node;
2640 if (!dependent_type_p (context)
2641 || currently_open_class (context))
2643 if (TREE_CODE (fullname) == TEMPLATE_ID_EXPR)
2645 tree tmpl = NULL_TREE;
2646 if (IS_AGGR_TYPE (context))
2647 tmpl = lookup_field (context, name, 0, false);
2648 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
2650 if (complain & tf_error)
2651 error ("no class template named `%#T' in `%#T'",
2652 name, context);
2653 return error_mark_node;
2656 if (complain & tf_error)
2657 perform_or_defer_access_check (TYPE_BINFO (context), tmpl);
2659 return lookup_template_class (tmpl,
2660 TREE_OPERAND (fullname, 1),
2661 NULL_TREE, context,
2662 /*entering_scope=*/0,
2663 tf_error | tf_warning | tf_user);
2665 else
2667 tree t;
2669 if (!IS_AGGR_TYPE (context))
2671 if (complain & tf_error)
2672 error ("no type named `%#T' in `%#T'", name, context);
2673 return error_mark_node;
2676 t = lookup_field (context, name, 0, true);
2677 if (t)
2679 if (TREE_CODE (t) != TYPE_DECL)
2681 if (complain & tf_error)
2682 error ("no type named `%#T' in `%#T'", name, context);
2683 return error_mark_node;
2686 if (complain & tf_error)
2687 perform_or_defer_access_check (TYPE_BINFO (context), t);
2689 if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
2690 t = TREE_TYPE (t);
2692 return t;
2697 /* If the CONTEXT is not a template type, then either the field is
2698 there now or its never going to be. */
2699 if (!dependent_type_p (context))
2701 if (complain & tf_error)
2702 error ("no type named `%#T' in `%#T'", name, context);
2703 return error_mark_node;
2706 return build_typename_type (context, name, fullname);
2709 /* Resolve `CONTEXT::template NAME'. Returns an appropriate type,
2710 unless an error occurs, in which case error_mark_node is returned.
2711 If we locate a TYPE_DECL, we return that, rather than the _TYPE it
2712 corresponds to. If COMPLAIN zero, don't complain about any errors
2713 that occur. */
2715 tree
2716 make_unbound_class_template (tree context, tree name, tsubst_flags_t complain)
2718 tree t;
2719 tree d;
2721 if (TYPE_P (name))
2722 name = TYPE_IDENTIFIER (name);
2723 else if (DECL_P (name))
2724 name = DECL_NAME (name);
2725 if (TREE_CODE (name) != IDENTIFIER_NODE)
2726 abort ();
2728 if (!dependent_type_p (context)
2729 || currently_open_class (context))
2731 tree tmpl = NULL_TREE;
2733 if (IS_AGGR_TYPE (context))
2734 tmpl = lookup_field (context, name, 0, false);
2736 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
2738 if (complain & tf_error)
2739 error ("no class template named `%#T' in `%#T'", name, context);
2740 return error_mark_node;
2743 if (complain & tf_error)
2744 perform_or_defer_access_check (TYPE_BINFO (context), tmpl);
2746 return tmpl;
2749 /* Build the UNBOUND_CLASS_TEMPLATE. */
2750 t = make_aggr_type (UNBOUND_CLASS_TEMPLATE);
2751 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
2752 TREE_TYPE (t) = NULL_TREE;
2754 /* Build the corresponding TEMPLATE_DECL. */
2755 d = build_decl (TEMPLATE_DECL, name, t);
2756 TYPE_NAME (TREE_TYPE (d)) = d;
2757 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
2758 DECL_CONTEXT (d) = FROB_CONTEXT (context);
2759 DECL_ARTIFICIAL (d) = 1;
2761 return t;
2766 /* A chain of TYPE_DECLs for the builtin types. */
2768 static GTY(()) tree builtin_type_decls;
2770 /* Return a chain of TYPE_DECLs for the builtin types. */
2772 tree
2773 cxx_builtin_type_decls (void)
2775 return builtin_type_decls;
2778 /* Push the declarations of builtin types into the namespace.
2779 RID_INDEX is the index of the builtin type in the array
2780 RID_POINTERS. NAME is the name used when looking up the builtin
2781 type. TYPE is the _TYPE node for the builtin type. */
2783 void
2784 record_builtin_type (enum rid rid_index,
2785 const char* name,
2786 tree type)
2788 tree rname = NULL_TREE, tname = NULL_TREE;
2789 tree tdecl = NULL_TREE;
2791 if ((int) rid_index < (int) RID_MAX)
2792 rname = ridpointers[(int) rid_index];
2793 if (name)
2794 tname = get_identifier (name);
2796 /* The calls to SET_IDENTIFIER_GLOBAL_VALUE below should be
2797 eliminated. Built-in types should not be looked up name; their
2798 names are keywords that the parser can recognize. However, there
2799 is code in c-common.c that uses identifier_global_value to look
2800 up built-in types by name. */
2801 if (tname)
2803 tdecl = build_decl (TYPE_DECL, tname, type);
2804 DECL_ARTIFICIAL (tdecl) = 1;
2805 SET_IDENTIFIER_GLOBAL_VALUE (tname, tdecl);
2807 if (rname)
2809 if (!tdecl)
2811 tdecl = build_decl (TYPE_DECL, rname, type);
2812 DECL_ARTIFICIAL (tdecl) = 1;
2814 SET_IDENTIFIER_GLOBAL_VALUE (rname, tdecl);
2817 if (!TYPE_NAME (type))
2818 TYPE_NAME (type) = tdecl;
2820 if (tdecl)
2822 TREE_CHAIN (tdecl) = builtin_type_decls;
2823 builtin_type_decls = tdecl;
2827 /* Record one of the standard Java types.
2828 * Declare it as having the given NAME.
2829 * If SIZE > 0, it is the size of one of the integral types;
2830 * otherwise it is the negative of the size of one of the other types. */
2832 static tree
2833 record_builtin_java_type (const char* name, int size)
2835 tree type, decl;
2836 if (size > 0)
2837 type = make_signed_type (size);
2838 else if (size > -32)
2839 { /* "__java_char" or ""__java_boolean". */
2840 type = make_unsigned_type (-size);
2841 /*if (size == -1) TREE_SET_CODE (type, BOOLEAN_TYPE);*/
2843 else
2844 { /* "__java_float" or ""__java_double". */
2845 type = make_node (REAL_TYPE);
2846 TYPE_PRECISION (type) = - size;
2847 layout_type (type);
2849 record_builtin_type (RID_MAX, name, type);
2850 decl = TYPE_NAME (type);
2852 /* Suppress generate debug symbol entries for these types,
2853 since for normal C++ they are just clutter.
2854 However, push_lang_context undoes this if extern "Java" is seen. */
2855 DECL_IGNORED_P (decl) = 1;
2857 TYPE_FOR_JAVA (type) = 1;
2858 return type;
2861 /* Push a type into the namespace so that the back-ends ignore it. */
2863 static void
2864 record_unknown_type (tree type, const char* name)
2866 tree decl = pushdecl (build_decl (TYPE_DECL, get_identifier (name), type));
2867 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
2868 DECL_IGNORED_P (decl) = 1;
2869 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
2870 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
2871 TYPE_ALIGN (type) = 1;
2872 TYPE_USER_ALIGN (type) = 0;
2873 TYPE_MODE (type) = TYPE_MODE (void_type_node);
2876 /* An string for which we should create an IDENTIFIER_NODE at
2877 startup. */
2879 typedef struct predefined_identifier
2881 /* The name of the identifier. */
2882 const char *const name;
2883 /* The place where the IDENTIFIER_NODE should be stored. */
2884 tree *const node;
2885 /* Nonzero if this is the name of a constructor or destructor. */
2886 const int ctor_or_dtor_p;
2887 } predefined_identifier;
2889 /* Create all the predefined identifiers. */
2891 static void
2892 initialize_predefined_identifiers (void)
2894 const predefined_identifier *pid;
2896 /* A table of identifiers to create at startup. */
2897 static const predefined_identifier predefined_identifiers[] = {
2898 { "C++", &lang_name_cplusplus, 0 },
2899 { "C", &lang_name_c, 0 },
2900 { "Java", &lang_name_java, 0 },
2901 { CTOR_NAME, &ctor_identifier, 1 },
2902 { "__base_ctor", &base_ctor_identifier, 1 },
2903 { "__comp_ctor", &complete_ctor_identifier, 1 },
2904 { DTOR_NAME, &dtor_identifier, 1 },
2905 { "__comp_dtor", &complete_dtor_identifier, 1 },
2906 { "__base_dtor", &base_dtor_identifier, 1 },
2907 { "__deleting_dtor", &deleting_dtor_identifier, 1 },
2908 { IN_CHARGE_NAME, &in_charge_identifier, 0 },
2909 { "nelts", &nelts_identifier, 0 },
2910 { THIS_NAME, &this_identifier, 0 },
2911 { VTABLE_DELTA_NAME, &delta_identifier, 0 },
2912 { VTABLE_PFN_NAME, &pfn_identifier, 0 },
2913 { "_vptr", &vptr_identifier, 0 },
2914 { "__vtt_parm", &vtt_parm_identifier, 0 },
2915 { "::", &global_scope_name, 0 },
2916 { "std", &std_identifier, 0 },
2917 { NULL, NULL, 0 }
2920 for (pid = predefined_identifiers; pid->name; ++pid)
2922 *pid->node = get_identifier (pid->name);
2923 if (pid->ctor_or_dtor_p)
2924 IDENTIFIER_CTOR_OR_DTOR_P (*pid->node) = 1;
2928 /* Create the predefined scalar types of C,
2929 and some nodes representing standard constants (0, 1, (void *)0).
2930 Initialize the global binding level.
2931 Make definitions for built-in primitive functions. */
2933 void
2934 cxx_init_decl_processing (void)
2936 tree void_ftype;
2937 tree void_ftype_ptr;
2939 /* Create all the identifiers we need. */
2940 initialize_predefined_identifiers ();
2942 /* Fill in back-end hooks. */
2943 lang_missing_noreturn_ok_p = &cp_missing_noreturn_ok_p;
2945 /* Create the global variables. */
2946 push_to_top_level ();
2948 current_function_decl = NULL_TREE;
2949 current_binding_level = NULL;
2950 /* Enter the global namespace. */
2951 my_friendly_assert (global_namespace == NULL_TREE, 375);
2952 global_namespace = build_lang_decl (NAMESPACE_DECL, global_scope_name,
2953 void_type_node);
2954 begin_scope (sk_namespace, global_namespace);
2956 current_lang_name = NULL_TREE;
2958 /* Adjust various flags based on command-line settings. */
2959 if (!flag_permissive)
2960 flag_pedantic_errors = 1;
2961 if (!flag_no_inline)
2963 flag_inline_trees = 1;
2964 flag_no_inline = 1;
2966 if (flag_inline_functions)
2968 flag_inline_trees = 2;
2969 flag_inline_functions = 0;
2972 /* Force minimum function alignment if using the least significant
2973 bit of function pointers to store the virtual bit. */
2974 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
2975 && force_align_functions_log < 1)
2976 force_align_functions_log = 1;
2978 /* Initially, C. */
2979 current_lang_name = lang_name_c;
2981 build_common_tree_nodes (flag_signed_char);
2983 error_mark_list = build_tree_list (error_mark_node, error_mark_node);
2984 TREE_TYPE (error_mark_list) = error_mark_node;
2986 /* Create the `std' namespace. */
2987 push_namespace (std_identifier);
2988 std_node = current_namespace;
2989 pop_namespace ();
2991 c_common_nodes_and_builtins ();
2993 java_byte_type_node = record_builtin_java_type ("__java_byte", 8);
2994 java_short_type_node = record_builtin_java_type ("__java_short", 16);
2995 java_int_type_node = record_builtin_java_type ("__java_int", 32);
2996 java_long_type_node = record_builtin_java_type ("__java_long", 64);
2997 java_float_type_node = record_builtin_java_type ("__java_float", -32);
2998 java_double_type_node = record_builtin_java_type ("__java_double", -64);
2999 java_char_type_node = record_builtin_java_type ("__java_char", -16);
3000 java_boolean_type_node = record_builtin_java_type ("__java_boolean", -1);
3002 integer_two_node = build_int_2 (2, 0);
3003 TREE_TYPE (integer_two_node) = integer_type_node;
3004 integer_three_node = build_int_2 (3, 0);
3005 TREE_TYPE (integer_three_node) = integer_type_node;
3007 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
3008 truthvalue_type_node = boolean_type_node;
3009 truthvalue_false_node = boolean_false_node;
3010 truthvalue_true_node = boolean_true_node;
3012 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
3014 #if 0
3015 record_builtin_type (RID_MAX, NULL, string_type_node);
3016 #endif
3018 delta_type_node = ptrdiff_type_node;
3019 vtable_index_type = ptrdiff_type_node;
3021 vtt_parm_type = build_pointer_type (const_ptr_type_node);
3022 void_ftype = build_function_type (void_type_node, void_list_node);
3023 void_ftype_ptr = build_function_type (void_type_node,
3024 tree_cons (NULL_TREE,
3025 ptr_type_node,
3026 void_list_node));
3027 void_ftype_ptr
3028 = build_exception_variant (void_ftype_ptr, empty_except_spec);
3030 /* C++ extensions */
3032 unknown_type_node = make_node (UNKNOWN_TYPE);
3033 record_unknown_type (unknown_type_node, "unknown type");
3035 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
3036 TREE_TYPE (unknown_type_node) = unknown_type_node;
3038 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
3039 result. */
3040 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
3041 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
3044 /* Make sure we get a unique function type, so we can give
3045 its pointer type a name. (This wins for gdb.) */
3046 tree vfunc_type = make_node (FUNCTION_TYPE);
3047 TREE_TYPE (vfunc_type) = integer_type_node;
3048 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
3049 layout_type (vfunc_type);
3051 vtable_entry_type = build_pointer_type (vfunc_type);
3053 record_builtin_type (RID_MAX, VTBL_PTR_TYPE, vtable_entry_type);
3055 vtbl_type_node
3056 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
3057 layout_type (vtbl_type_node);
3058 vtbl_type_node = build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
3059 record_builtin_type (RID_MAX, NULL, vtbl_type_node);
3060 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
3061 layout_type (vtbl_ptr_type_node);
3062 record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
3064 push_namespace (get_identifier ("__cxxabiv1"));
3065 abi_node = current_namespace;
3066 pop_namespace ();
3068 global_type_node = make_node (LANG_TYPE);
3069 record_unknown_type (global_type_node, "global type");
3071 /* Now, C++. */
3072 current_lang_name = lang_name_cplusplus;
3075 tree bad_alloc_id;
3076 tree bad_alloc_type_node;
3077 tree bad_alloc_decl;
3078 tree newtype, deltype;
3079 tree ptr_ftype_sizetype;
3081 push_namespace (std_identifier);
3082 bad_alloc_id = get_identifier ("bad_alloc");
3083 bad_alloc_type_node = make_aggr_type (RECORD_TYPE);
3084 TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
3085 bad_alloc_decl
3086 = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
3087 DECL_CONTEXT (bad_alloc_decl) = current_namespace;
3088 TYPE_STUB_DECL (bad_alloc_type_node) = bad_alloc_decl;
3089 pop_namespace ();
3091 ptr_ftype_sizetype
3092 = build_function_type (ptr_type_node,
3093 tree_cons (NULL_TREE,
3094 size_type_node,
3095 void_list_node));
3096 newtype = build_exception_variant
3097 (ptr_ftype_sizetype, add_exception_specifier
3098 (NULL_TREE, bad_alloc_type_node, -1));
3099 deltype = build_exception_variant (void_ftype_ptr, empty_except_spec);
3100 push_cp_library_fn (NEW_EXPR, newtype);
3101 push_cp_library_fn (VEC_NEW_EXPR, newtype);
3102 global_delete_fndecl = push_cp_library_fn (DELETE_EXPR, deltype);
3103 push_cp_library_fn (VEC_DELETE_EXPR, deltype);
3106 abort_fndecl
3107 = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype);
3109 /* Perform other language dependent initializations. */
3110 init_class_processing ();
3111 init_search_processing ();
3112 init_rtti_processing ();
3114 if (flag_exceptions)
3115 init_exception_processing ();
3117 if (! supports_one_only ())
3118 flag_weak = 0;
3120 make_fname_decl = cp_make_fname_decl;
3121 start_fname_decls ();
3123 /* Show we use EH for cleanups. */
3124 using_eh_for_cleanups ();
3126 /* Maintain consistency. Perhaps we should just complain if they
3127 say -fwritable-strings? */
3128 if (flag_writable_strings)
3129 flag_const_strings = 0;
3132 /* Generate an initializer for a function naming variable from
3133 NAME. NAME may be NULL, to indicate a dependent name. TYPE_P is
3134 filled in with the type of the init. */
3136 tree
3137 cp_fname_init (const char* name, tree *type_p)
3139 tree domain = NULL_TREE;
3140 tree type;
3141 tree init = NULL_TREE;
3142 size_t length = 0;
3144 if (name)
3146 length = strlen (name);
3147 domain = build_index_type (size_int (length));
3148 init = build_string (length + 1, name);
3151 type = build_qualified_type (char_type_node, TYPE_QUAL_CONST);
3152 type = build_cplus_array_type (type, domain);
3154 *type_p = type;
3156 if (init)
3157 TREE_TYPE (init) = type;
3158 else
3159 init = error_mark_node;
3161 return init;
3164 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
3165 decl, NAME is the initialization string and TYPE_DEP indicates whether
3166 NAME depended on the type of the function. We make use of that to detect
3167 __PRETTY_FUNCTION__ inside a template fn. This is being done
3168 lazily at the point of first use, so we musn't push the decl now. */
3170 static tree
3171 cp_make_fname_decl (tree id, int type_dep)
3173 const char *const name = (type_dep && processing_template_decl
3174 ? NULL : fname_as_string (type_dep));
3175 tree type;
3176 tree init = cp_fname_init (name, &type);
3177 tree decl = build_decl (VAR_DECL, id, type);
3179 /* As we're using pushdecl_with_scope, we must set the context. */
3180 DECL_CONTEXT (decl) = current_function_decl;
3181 DECL_PRETTY_FUNCTION_P (decl) = type_dep;
3183 TREE_STATIC (decl) = 1;
3184 TREE_READONLY (decl) = 1;
3185 DECL_ARTIFICIAL (decl) = 1;
3186 DECL_INITIAL (decl) = init;
3188 TREE_USED (decl) = 1;
3190 if (current_function_decl)
3192 struct cp_binding_level *b = current_binding_level;
3193 while (b->level_chain->kind != sk_function_parms)
3194 b = b->level_chain;
3195 pushdecl_with_scope (decl, b);
3196 cp_finish_decl (decl, init, NULL_TREE, LOOKUP_ONLYCONVERTING);
3198 else
3199 pushdecl_top_level_and_finish (decl, init);
3201 return decl;
3204 /* Make a definition for a builtin function named NAME in the current
3205 namespace, whose data type is TYPE and whose context is CONTEXT.
3206 TYPE should be a function type with argument types.
3208 CLASS and CODE tell later passes how to compile calls to this function.
3209 See tree.h for possible values.
3211 If LIBNAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3212 the name to be called if we can't opencode the function.
3213 If ATTRS is nonzero, use that for the function's attribute
3214 list. */
3216 static tree
3217 builtin_function_1 (const char* name,
3218 tree type,
3219 tree context,
3220 int code,
3221 enum built_in_class class,
3222 const char* libname,
3223 tree attrs)
3225 tree decl = build_library_fn_1 (get_identifier (name), ERROR_MARK, type);
3226 DECL_BUILT_IN_CLASS (decl) = class;
3227 DECL_FUNCTION_CODE (decl) = code;
3228 DECL_CONTEXT (decl) = context;
3230 pushdecl (decl);
3232 /* Since `pushdecl' relies on DECL_ASSEMBLER_NAME instead of DECL_NAME,
3233 we cannot change DECL_ASSEMBLER_NAME until we have installed this
3234 function in the namespace. */
3235 if (libname)
3236 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (libname));
3237 make_decl_rtl (decl, NULL);
3239 /* Warn if a function in the namespace for users
3240 is used without an occasion to consider it declared. */
3241 if (name[0] != '_' || name[1] != '_')
3242 DECL_ANTICIPATED (decl) = 1;
3244 /* Possibly apply some default attributes to this built-in function. */
3245 if (attrs)
3246 decl_attributes (&decl, attrs, ATTR_FLAG_BUILT_IN);
3247 else
3248 decl_attributes (&decl, NULL_TREE, 0);
3250 return decl;
3253 /* Entry point for the benefit of c_common_nodes_and_builtins.
3255 Make a definition for a builtin function named NAME and whose data type
3256 is TYPE. TYPE should be a function type with argument types. This
3257 function places the anticipated declaration in the global namespace
3258 and additionally in the std namespace if appropriate.
3260 CLASS and CODE tell later passes how to compile calls to this function.
3261 See tree.h for possible values.
3263 If LIBNAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3264 the name to be called if we can't opencode the function.
3266 If ATTRS is nonzero, use that for the function's attribute
3267 list. */
3269 tree
3270 builtin_function (const char* name,
3271 tree type,
3272 int code,
3273 enum built_in_class class,
3274 const char* libname,
3275 tree attrs)
3277 /* All builtins that don't begin with an '_' should additionally
3278 go in the 'std' namespace. */
3279 if (name[0] != '_')
3281 push_namespace (std_identifier);
3282 builtin_function_1 (name, type, std_node, code, class, libname, attrs);
3283 pop_namespace ();
3286 return builtin_function_1 (name, type, NULL_TREE, code,
3287 class, libname, attrs);
3290 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
3291 function. Not called directly. */
3293 static tree
3294 build_library_fn_1 (tree name, enum tree_code operator_code, tree type)
3296 tree fn = build_lang_decl (FUNCTION_DECL, name, type);
3297 DECL_EXTERNAL (fn) = 1;
3298 TREE_PUBLIC (fn) = 1;
3299 DECL_ARTIFICIAL (fn) = 1;
3300 TREE_NOTHROW (fn) = 1;
3301 SET_OVERLOADED_OPERATOR_CODE (fn, operator_code);
3302 SET_DECL_LANGUAGE (fn, lang_c);
3303 return fn;
3306 /* Returns the _DECL for a library function with C linkage.
3307 We assume that such functions never throw; if this is incorrect,
3308 callers should unset TREE_NOTHROW. */
3310 tree
3311 build_library_fn (tree name, tree type)
3313 return build_library_fn_1 (name, ERROR_MARK, type);
3316 /* Returns the _DECL for a library function with C++ linkage. */
3318 static tree
3319 build_cp_library_fn (tree name, enum tree_code operator_code, tree type)
3321 tree fn = build_library_fn_1 (name, operator_code, type);
3322 TREE_NOTHROW (fn) = TYPE_NOTHROW_P (type);
3323 DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
3324 SET_DECL_LANGUAGE (fn, lang_cplusplus);
3325 set_mangled_name_for_decl (fn);
3326 return fn;
3329 /* Like build_library_fn, but takes a C string instead of an
3330 IDENTIFIER_NODE. */
3332 tree
3333 build_library_fn_ptr (const char* name, tree type)
3335 return build_library_fn (get_identifier (name), type);
3338 /* Like build_cp_library_fn, but takes a C string instead of an
3339 IDENTIFIER_NODE. */
3341 tree
3342 build_cp_library_fn_ptr (const char* name, tree type)
3344 return build_cp_library_fn (get_identifier (name), ERROR_MARK, type);
3347 /* Like build_library_fn, but also pushes the function so that we will
3348 be able to find it via IDENTIFIER_GLOBAL_VALUE. */
3350 tree
3351 push_library_fn (tree name, tree type)
3353 tree fn = build_library_fn (name, type);
3354 pushdecl_top_level (fn);
3355 return fn;
3358 /* Like build_cp_library_fn, but also pushes the function so that it
3359 will be found by normal lookup. */
3361 static tree
3362 push_cp_library_fn (enum tree_code operator_code, tree type)
3364 tree fn = build_cp_library_fn (ansi_opname (operator_code),
3365 operator_code,
3366 type);
3367 pushdecl (fn);
3368 return fn;
3371 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
3372 a FUNCTION_TYPE. */
3374 tree
3375 push_void_library_fn (tree name, tree parmtypes)
3377 tree type = build_function_type (void_type_node, parmtypes);
3378 return push_library_fn (name, type);
3381 /* Like push_library_fn, but also note that this function throws
3382 and does not return. Used for __throw_foo and the like. */
3384 tree
3385 push_throw_library_fn (tree name, tree type)
3387 tree fn = push_library_fn (name, type);
3388 TREE_THIS_VOLATILE (fn) = 1;
3389 TREE_NOTHROW (fn) = 0;
3390 return fn;
3393 /* When we call finish_struct for an anonymous union, we create
3394 default copy constructors and such. But, an anonymous union
3395 shouldn't have such things; this function undoes the damage to the
3396 anonymous union type T.
3398 (The reason that we create the synthesized methods is that we don't
3399 distinguish `union { int i; }' from `typedef union { int i; } U'.
3400 The first is an anonymous union; the second is just an ordinary
3401 union type.) */
3403 void
3404 fixup_anonymous_aggr (tree t)
3406 tree *q;
3408 /* Wipe out memory of synthesized methods. */
3409 TYPE_HAS_CONSTRUCTOR (t) = 0;
3410 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
3411 TYPE_HAS_INIT_REF (t) = 0;
3412 TYPE_HAS_CONST_INIT_REF (t) = 0;
3413 TYPE_HAS_ASSIGN_REF (t) = 0;
3414 TYPE_HAS_CONST_ASSIGN_REF (t) = 0;
3416 /* Splice the implicitly generated functions out of the TYPE_METHODS
3417 list. */
3418 q = &TYPE_METHODS (t);
3419 while (*q)
3421 if (DECL_ARTIFICIAL (*q))
3422 *q = TREE_CHAIN (*q);
3423 else
3424 q = &TREE_CHAIN (*q);
3427 /* ISO C++ 9.5.3. Anonymous unions may not have function members. */
3428 if (TYPE_METHODS (t))
3429 error ("%Jan anonymous union cannot have function members",
3430 TYPE_MAIN_DECL (t));
3432 /* Anonymous aggregates cannot have fields with ctors, dtors or complex
3433 assignment operators (because they cannot have these methods themselves).
3434 For anonymous unions this is already checked because they are not allowed
3435 in any union, otherwise we have to check it. */
3436 if (TREE_CODE (t) != UNION_TYPE)
3438 tree field, type;
3440 for (field = TYPE_FIELDS (t); field; field = TREE_CHAIN (field))
3441 if (TREE_CODE (field) == FIELD_DECL)
3443 type = TREE_TYPE (field);
3444 if (CLASS_TYPE_P (type))
3446 if (TYPE_NEEDS_CONSTRUCTING (type))
3447 cp_error_at ("member %#D' with constructor not allowed in anonymous aggregate",
3448 field);
3449 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3450 cp_error_at ("member %#D' with destructor not allowed in anonymous aggregate",
3451 field);
3452 if (TYPE_HAS_COMPLEX_ASSIGN_REF (type))
3453 cp_error_at ("member %#D' with copy assignment operator not allowed in anonymous aggregate",
3454 field);
3460 /* Make sure that a declaration with no declarator is well-formed, i.e.
3461 just declares a tagged type or anonymous union.
3463 Returns the type declared; or NULL_TREE if none. */
3465 tree
3466 check_tag_decl (tree declspecs)
3468 int found_type = 0;
3469 int saw_friend = 0;
3470 int saw_typedef = 0;
3471 tree ob_modifier = NULL_TREE;
3472 tree link;
3473 /* If a class, struct, or enum type is declared by the DECLSPECS
3474 (i.e, if a class-specifier, enum-specifier, or non-typename
3475 elaborated-type-specifier appears in the DECLSPECS),
3476 DECLARED_TYPE is set to the corresponding type. */
3477 tree declared_type = NULL_TREE;
3478 bool error_p = false;
3480 for (link = declspecs; link; link = TREE_CHAIN (link))
3482 tree value = TREE_VALUE (link);
3484 if (TYPE_P (value) || TREE_CODE (value) == TYPE_DECL
3485 || (TREE_CODE (value) == IDENTIFIER_NODE
3486 && is_typename_at_global_scope (value)))
3488 ++found_type;
3490 if (found_type == 2 && TREE_CODE (value) == IDENTIFIER_NODE)
3492 if (! in_system_header)
3493 pedwarn ("redeclaration of C++ built-in type `%T'", value);
3494 return NULL_TREE;
3497 if (TYPE_P (value)
3498 && ((TREE_CODE (value) != TYPENAME_TYPE && IS_AGGR_TYPE (value))
3499 || TREE_CODE (value) == ENUMERAL_TYPE))
3501 my_friendly_assert (TYPE_MAIN_DECL (value) != NULL_TREE, 261);
3502 declared_type = value;
3505 else if (value == ridpointers[(int) RID_TYPEDEF])
3506 saw_typedef = 1;
3507 else if (value == ridpointers[(int) RID_FRIEND])
3509 if (current_class_type == NULL_TREE
3510 || current_scope () != current_class_type)
3511 ob_modifier = value;
3512 else
3513 saw_friend = 1;
3515 else if (value == ridpointers[(int) RID_STATIC]
3516 || value == ridpointers[(int) RID_EXTERN]
3517 || value == ridpointers[(int) RID_AUTO]
3518 || value == ridpointers[(int) RID_REGISTER]
3519 || value == ridpointers[(int) RID_INLINE]
3520 || value == ridpointers[(int) RID_VIRTUAL]
3521 || value == ridpointers[(int) RID_CONST]
3522 || value == ridpointers[(int) RID_VOLATILE]
3523 || value == ridpointers[(int) RID_EXPLICIT]
3524 || value == ridpointers[(int) RID_THREAD])
3525 ob_modifier = value;
3526 else if (value == error_mark_node)
3527 error_p = true;
3530 if (found_type > 1)
3531 error ("multiple types in one declaration");
3533 if (declared_type == NULL_TREE && ! saw_friend && !error_p)
3534 pedwarn ("declaration does not declare anything");
3535 /* Check for an anonymous union. */
3536 else if (declared_type && IS_AGGR_TYPE_CODE (TREE_CODE (declared_type))
3537 && TYPE_ANONYMOUS_P (declared_type))
3539 /* 7/3 In a simple-declaration, the optional init-declarator-list
3540 can be omitted only when declaring a class (clause 9) or
3541 enumeration (7.2), that is, when the decl-specifier-seq contains
3542 either a class-specifier, an elaborated-type-specifier with
3543 a class-key (9.1), or an enum-specifier. In these cases and
3544 whenever a class-specifier or enum-specifier is present in the
3545 decl-specifier-seq, the identifiers in these specifiers are among
3546 the names being declared by the declaration (as class-name,
3547 enum-names, or enumerators, depending on the syntax). In such
3548 cases, and except for the declaration of an unnamed bit-field (9.6),
3549 the decl-specifier-seq shall introduce one or more names into the
3550 program, or shall redeclare a name introduced by a previous
3551 declaration. [Example:
3552 enum { }; // ill-formed
3553 typedef class { }; // ill-formed
3554 --end example] */
3555 if (saw_typedef)
3557 error ("missing type-name in typedef-declaration");
3558 return NULL_TREE;
3560 /* Anonymous unions are objects, so they can have specifiers. */;
3561 SET_ANON_AGGR_TYPE_P (declared_type);
3563 if (TREE_CODE (declared_type) != UNION_TYPE && pedantic
3564 && !in_system_header)
3565 pedwarn ("ISO C++ prohibits anonymous structs");
3568 else if (ob_modifier)
3570 if (ob_modifier == ridpointers[(int) RID_INLINE]
3571 || ob_modifier == ridpointers[(int) RID_VIRTUAL])
3572 error ("`%D' can only be specified for functions", ob_modifier);
3573 else if (ob_modifier == ridpointers[(int) RID_FRIEND])
3574 error ("`%D' can only be specified inside a class", ob_modifier);
3575 else if (ob_modifier == ridpointers[(int) RID_EXPLICIT])
3576 error ("`%D' can only be specified for constructors",
3577 ob_modifier);
3578 else
3579 error ("`%D' can only be specified for objects and functions",
3580 ob_modifier);
3583 return declared_type;
3586 /* Called when a declaration is seen that contains no names to declare.
3587 If its type is a reference to a structure, union or enum inherited
3588 from a containing scope, shadow that tag name for the current scope
3589 with a forward reference.
3590 If its type defines a new named structure or union
3591 or defines an enum, it is valid but we need not do anything here.
3592 Otherwise, it is an error.
3594 C++: may have to grok the declspecs to learn about static,
3595 complain for anonymous unions.
3597 Returns the TYPE declared -- or NULL_TREE if none. */
3599 tree
3600 shadow_tag (tree declspecs)
3602 tree t = check_tag_decl (declspecs);
3604 if (!t)
3605 return NULL_TREE;
3607 maybe_process_partial_specialization (t);
3609 /* This is where the variables in an anonymous union are
3610 declared. An anonymous union declaration looks like:
3611 union { ... } ;
3612 because there is no declarator after the union, the parser
3613 sends that declaration here. */
3614 if (ANON_AGGR_TYPE_P (t))
3616 fixup_anonymous_aggr (t);
3618 if (TYPE_FIELDS (t))
3620 tree decl = grokdeclarator (NULL_TREE, declspecs, NORMAL, 0,
3621 NULL);
3622 finish_anon_union (decl);
3626 return t;
3629 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3631 tree
3632 groktypename (tree typename)
3634 tree specs, attrs;
3635 tree type;
3636 if (TREE_CODE (typename) != TREE_LIST)
3637 return typename;
3638 split_specs_attrs (TREE_PURPOSE (typename), &specs, &attrs);
3639 type = grokdeclarator (TREE_VALUE (typename), specs,
3640 TYPENAME, 0, &attrs);
3641 if (attrs)
3642 cplus_decl_attributes (&type, attrs, 0);
3643 return type;
3646 /* Decode a declarator in an ordinary declaration or data definition.
3647 This is called as soon as the type information and variable name
3648 have been parsed, before parsing the initializer if any.
3649 Here we create the ..._DECL node, fill in its type,
3650 and put it on the list of decls for the current context.
3651 The ..._DECL node is returned as the value.
3653 Exception: for arrays where the length is not specified,
3654 the type is left null, to be filled in by `cp_finish_decl'.
3656 Function definitions do not come here; they go to start_function
3657 instead. However, external and forward declarations of functions
3658 do go through here. Structure field declarations are done by
3659 grokfield and not through here. */
3661 tree
3662 start_decl (tree declarator,
3663 tree declspecs,
3664 int initialized,
3665 tree attributes,
3666 tree prefix_attributes)
3668 tree decl;
3669 tree type, tem;
3670 tree context;
3672 /* This should only be done once on the top most decl. */
3673 if (have_extern_spec)
3675 declspecs = tree_cons (NULL_TREE, get_identifier ("extern"),
3676 declspecs);
3677 have_extern_spec = false;
3680 /* An object declared as __attribute__((deprecated)) suppresses
3681 warnings of uses of other deprecated items. */
3682 if (lookup_attribute ("deprecated", attributes))
3683 deprecated_state = DEPRECATED_SUPPRESS;
3685 attributes = chainon (attributes, prefix_attributes);
3687 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
3688 &attributes);
3690 deprecated_state = DEPRECATED_NORMAL;
3692 if (decl == NULL_TREE || TREE_CODE (decl) == VOID_TYPE)
3693 return NULL_TREE;
3695 type = TREE_TYPE (decl);
3697 if (type == error_mark_node)
3698 return NULL_TREE;
3700 context = DECL_CONTEXT (decl);
3702 if (initialized && context && TREE_CODE (context) == NAMESPACE_DECL
3703 && context != current_namespace && TREE_CODE (decl) == VAR_DECL)
3705 /* When parsing the initializer, lookup should use the object's
3706 namespace. */
3707 push_decl_namespace (context);
3710 /* We are only interested in class contexts, later. */
3711 if (context && TREE_CODE (context) == NAMESPACE_DECL)
3712 context = NULL_TREE;
3714 if (initialized)
3715 /* Is it valid for this decl to have an initializer at all?
3716 If not, set INITIALIZED to zero, which will indirectly
3717 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
3718 switch (TREE_CODE (decl))
3720 case TYPE_DECL:
3721 error ("typedef `%D' is initialized (use __typeof__ instead)", decl);
3722 initialized = 0;
3723 break;
3725 case FUNCTION_DECL:
3726 error ("function `%#D' is initialized like a variable", decl);
3727 initialized = 0;
3728 break;
3730 default:
3731 break;
3734 if (initialized)
3736 if (! toplevel_bindings_p ()
3737 && DECL_EXTERNAL (decl))
3738 warning ("declaration of `%#D' has `extern' and is initialized",
3739 decl);
3740 DECL_EXTERNAL (decl) = 0;
3741 if (toplevel_bindings_p ())
3742 TREE_STATIC (decl) = 1;
3744 /* Tell `pushdecl' this is an initialized decl
3745 even though we don't yet have the initializer expression.
3746 Also tell `cp_finish_decl' it may store the real initializer. */
3747 DECL_INITIAL (decl) = error_mark_node;
3750 /* Set attributes here so if duplicate decl, will have proper attributes. */
3751 cplus_decl_attributes (&decl, attributes, 0);
3753 /* If #pragma weak was used, mark the decl weak now. */
3754 if (global_scope_p (current_binding_level))
3755 maybe_apply_pragma_weak (decl);
3757 if (TREE_CODE (decl) == FUNCTION_DECL
3758 && DECL_DECLARED_INLINE_P (decl)
3759 && DECL_UNINLINABLE (decl)
3760 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
3761 warning ("%Jinline function '%D' given attribute noinline", decl, decl);
3763 if (context && COMPLETE_TYPE_P (complete_type (context)))
3765 push_nested_class (context);
3767 if (TREE_CODE (decl) == VAR_DECL)
3769 tree field = lookup_field (context, DECL_NAME (decl), 0, false);
3770 if (field == NULL_TREE || TREE_CODE (field) != VAR_DECL)
3771 error ("`%#D' is not a static member of `%#T'", decl, context);
3772 else
3774 if (DECL_CONTEXT (field) != context)
3776 if (!same_type_p (DECL_CONTEXT (field), context))
3777 pedwarn ("ISO C++ does not permit `%T::%D' to be defined as `%T::%D'",
3778 DECL_CONTEXT (field), DECL_NAME (decl),
3779 context, DECL_NAME (decl));
3780 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
3782 /* Static data member are tricky; an in-class initialization
3783 still doesn't provide a definition, so the in-class
3784 declaration will have DECL_EXTERNAL set, but will have an
3785 initialization. Thus, duplicate_decls won't warn
3786 about this situation, and so we check here. */
3787 if (DECL_INITIAL (decl) && DECL_INITIAL (field))
3788 error ("duplicate initialization of %D", decl);
3789 if (duplicate_decls (decl, field))
3790 decl = field;
3793 else
3795 tree field = check_classfn (context, decl,
3796 processing_template_decl
3797 > template_class_depth (context));
3798 if (field && duplicate_decls (decl, field))
3799 decl = field;
3802 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
3803 DECL_IN_AGGR_P (decl) = 0;
3804 if ((DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
3805 || CLASSTYPE_TEMPLATE_INSTANTIATION (context))
3807 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
3808 /* [temp.expl.spec] An explicit specialization of a static data
3809 member of a template is a definition if the declaration
3810 includes an initializer; otherwise, it is a declaration.
3812 We check for processing_specialization so this only applies
3813 to the new specialization syntax. */
3814 if (DECL_INITIAL (decl) == NULL_TREE && processing_specialization)
3815 DECL_EXTERNAL (decl) = 1;
3818 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl))
3819 pedwarn ("declaration of `%#D' outside of class is not definition",
3820 decl);
3823 /* Enter this declaration into the symbol table. */
3824 tem = maybe_push_decl (decl);
3826 if (processing_template_decl)
3827 tem = push_template_decl (tem);
3828 if (tem == error_mark_node)
3829 return error_mark_node;
3831 #if ! defined (ASM_OUTPUT_BSS) && ! defined (ASM_OUTPUT_ALIGNED_BSS)
3832 /* Tell the back-end to use or not use .common as appropriate. If we say
3833 -fconserve-space, we want this to save .data space, at the expense of
3834 wrong semantics. If we say -fno-conserve-space, we want this to
3835 produce errors about redefs; to do this we force variables into the
3836 data segment. */
3837 DECL_COMMON (tem) = ((TREE_CODE (tem) != VAR_DECL
3838 || !DECL_THREAD_LOCAL (tem))
3839 && (flag_conserve_space || ! TREE_PUBLIC (tem)));
3840 #endif
3842 if (! processing_template_decl)
3843 start_decl_1 (tem);
3845 return tem;
3848 void
3849 start_decl_1 (tree decl)
3851 tree type = TREE_TYPE (decl);
3852 int initialized = (DECL_INITIAL (decl) != NULL_TREE);
3854 if (type == error_mark_node)
3855 return;
3857 if (initialized)
3858 /* Is it valid for this decl to have an initializer at all?
3859 If not, set INITIALIZED to zero, which will indirectly
3860 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
3862 /* Don't allow initializations for incomplete types except for
3863 arrays which might be completed by the initialization. */
3864 if (COMPLETE_TYPE_P (complete_type (type)))
3865 ; /* A complete type is ok. */
3866 else if (TREE_CODE (type) != ARRAY_TYPE)
3868 error ("variable `%#D' has initializer but incomplete type",
3869 decl);
3870 initialized = 0;
3871 type = TREE_TYPE (decl) = error_mark_node;
3873 else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
3875 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
3876 error ("elements of array `%#D' have incomplete type", decl);
3877 /* else we already gave an error in start_decl. */
3878 initialized = 0;
3882 if (!initialized
3883 && TREE_CODE (decl) != TYPE_DECL
3884 && TREE_CODE (decl) != TEMPLATE_DECL
3885 && type != error_mark_node
3886 && IS_AGGR_TYPE (type)
3887 && ! DECL_EXTERNAL (decl))
3889 if ((! processing_template_decl || ! uses_template_parms (type))
3890 && !COMPLETE_TYPE_P (complete_type (type)))
3892 error ("aggregate `%#D' has incomplete type and cannot be defined",
3893 decl);
3894 /* Change the type so that assemble_variable will give
3895 DECL an rtl we can live with: (mem (const_int 0)). */
3896 type = TREE_TYPE (decl) = error_mark_node;
3898 else
3900 /* If any base type in the hierarchy of TYPE needs a constructor,
3901 then we set initialized to 1. This way any nodes which are
3902 created for the purposes of initializing this aggregate
3903 will live as long as it does. This is necessary for global
3904 aggregates which do not have their initializers processed until
3905 the end of the file. */
3906 initialized = TYPE_NEEDS_CONSTRUCTING (type);
3910 if (! initialized)
3911 DECL_INITIAL (decl) = NULL_TREE;
3913 /* Create a new scope to hold this declaration if necessary.
3914 Whether or not a new scope is necessary cannot be determined
3915 until after the type has been completed; if the type is a
3916 specialization of a class template it is not until after
3917 instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
3918 will be set correctly. */
3919 maybe_push_cleanup_level (type);
3922 /* Handle initialization of references. DECL, TYPE, and INIT have the
3923 same meaning as in cp_finish_decl. *CLEANUP must be NULL on entry,
3924 but will be set to a new CLEANUP_STMT if a temporary is created
3925 that must be destroyed subsequently.
3927 Returns an initializer expression to use to initialize DECL, or
3928 NULL if the initialization can be performed statically.
3930 Quotes on semantics can be found in ARM 8.4.3. */
3932 static tree
3933 grok_reference_init (tree decl, tree type, tree init, tree *cleanup)
3935 tree tmp;
3937 if (init == NULL_TREE)
3939 if ((DECL_LANG_SPECIFIC (decl) == 0
3940 || DECL_IN_AGGR_P (decl) == 0)
3941 && ! DECL_THIS_EXTERN (decl))
3942 error ("`%D' declared as reference but not initialized", decl);
3943 return NULL_TREE;
3946 if (TREE_CODE (init) == CONSTRUCTOR)
3948 error ("ISO C++ forbids use of initializer list to initialize reference `%D'", decl);
3949 return NULL_TREE;
3952 if (TREE_CODE (init) == TREE_LIST)
3953 init = build_x_compound_expr_from_list (init, "initializer");
3955 if (TREE_CODE (TREE_TYPE (init)) == REFERENCE_TYPE)
3956 init = convert_from_reference (init);
3958 if (TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE
3959 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
3960 /* Note: default conversion is only called in very special cases. */
3961 init = decay_conversion (init);
3963 /* Convert INIT to the reference type TYPE. This may involve the
3964 creation of a temporary, whose lifetime must be the same as that
3965 of the reference. If so, a DECL_STMT for the temporary will be
3966 added just after the DECL_STMT for DECL. That's why we don't set
3967 DECL_INITIAL for local references (instead assigning to them
3968 explicitly); we need to allow the temporary to be initialized
3969 first. */
3970 tmp = initialize_reference (type, init, decl, cleanup);
3972 if (tmp == error_mark_node)
3973 return NULL_TREE;
3974 else if (tmp == NULL_TREE)
3976 error ("cannot initialize `%T' from `%T'", type, TREE_TYPE (init));
3977 return NULL_TREE;
3980 if (TREE_STATIC (decl) && !TREE_CONSTANT (tmp))
3981 return tmp;
3983 DECL_INITIAL (decl) = tmp;
3985 return NULL_TREE;
3988 /* When parsing `int a[] = {1, 2};' we don't know the size of the
3989 array until we finish parsing the initializer. If that's the
3990 situation we're in, update DECL accordingly. */
3992 static void
3993 maybe_deduce_size_from_array_init (tree decl, tree init)
3995 tree type = TREE_TYPE (decl);
3997 if (TREE_CODE (type) == ARRAY_TYPE
3998 && TYPE_DOMAIN (type) == NULL_TREE
3999 && TREE_CODE (decl) != TYPE_DECL)
4001 /* do_default is really a C-ism to deal with tentative definitions.
4002 But let's leave it here to ease the eventual merge. */
4003 int do_default = !DECL_EXTERNAL (decl);
4004 tree initializer = init ? init : DECL_INITIAL (decl);
4005 int failure = complete_array_type (type, initializer, do_default);
4007 if (failure == 1)
4008 error ("initializer fails to determine size of `%D'", decl);
4010 if (failure == 2)
4012 if (do_default)
4013 error ("array size missing in `%D'", decl);
4014 /* If a `static' var's size isn't known, make it extern as
4015 well as static, so it does not get allocated. If it's not
4016 `static', then don't mark it extern; finish_incomplete_decl
4017 will give it a default size and it will get allocated. */
4018 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
4019 DECL_EXTERNAL (decl) = 1;
4022 if (pedantic && TYPE_DOMAIN (type) != NULL_TREE
4023 && tree_int_cst_lt (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
4024 integer_zero_node))
4025 error ("zero-size array `%D'", decl);
4027 layout_decl (decl, 0);
4031 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
4032 any appropriate error messages regarding the layout. */
4034 static void
4035 layout_var_decl (tree decl)
4037 tree type = TREE_TYPE (decl);
4038 #if 0
4039 tree ttype = target_type (type);
4040 #endif
4042 /* If we haven't already layed out this declaration, do so now.
4043 Note that we must not call complete type for an external object
4044 because it's type might involve templates that we are not
4045 supposed to instantiate yet. (And it's perfectly valid to say
4046 `extern X x' for some incomplete type `X'.) */
4047 if (!DECL_EXTERNAL (decl))
4048 complete_type (type);
4049 if (!DECL_SIZE (decl)
4050 && TREE_TYPE (decl) != error_mark_node
4051 && (COMPLETE_TYPE_P (type)
4052 || (TREE_CODE (type) == ARRAY_TYPE
4053 && !TYPE_DOMAIN (type)
4054 && COMPLETE_TYPE_P (TREE_TYPE (type)))))
4055 layout_decl (decl, 0);
4057 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
4059 /* An automatic variable with an incomplete type: that is an error.
4060 Don't talk about array types here, since we took care of that
4061 message in grokdeclarator. */
4062 error ("storage size of `%D' isn't known", decl);
4063 TREE_TYPE (decl) = error_mark_node;
4065 #if 0
4066 /* Keep this code around in case we later want to control debug info
4067 based on whether a type is "used". (jason 1999-11-11) */
4069 else if (!DECL_EXTERNAL (decl) && IS_AGGR_TYPE (ttype))
4070 /* Let debugger know it should output info for this type. */
4071 note_debug_info_needed (ttype);
4073 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
4074 note_debug_info_needed (DECL_CONTEXT (decl));
4075 #endif
4077 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
4078 && DECL_SIZE (decl) != NULL_TREE
4079 && ! TREE_CONSTANT (DECL_SIZE (decl)))
4081 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
4082 constant_expression_warning (DECL_SIZE (decl));
4083 else
4084 error ("storage size of `%D' isn't constant", decl);
4087 if (TREE_STATIC (decl)
4088 && !DECL_ARTIFICIAL (decl)
4089 && current_function_decl
4090 && DECL_CONTEXT (decl) == current_function_decl)
4091 push_local_name (decl);
4094 /* If a local static variable is declared in an inline function, or if
4095 we have a weak definition, we must endeavor to create only one
4096 instance of the variable at link-time. */
4098 static void
4099 maybe_commonize_var (tree decl)
4101 /* Static data in a function with comdat linkage also has comdat
4102 linkage. */
4103 if (TREE_STATIC (decl)
4104 /* Don't mess with __FUNCTION__. */
4105 && ! DECL_ARTIFICIAL (decl)
4106 && DECL_FUNCTION_SCOPE_P (decl)
4107 /* Unfortunately, import_export_decl has not always been called
4108 before the function is processed, so we cannot simply check
4109 DECL_COMDAT. */
4110 && (DECL_COMDAT (DECL_CONTEXT (decl))
4111 || ((DECL_DECLARED_INLINE_P (DECL_CONTEXT (decl))
4112 || DECL_TEMPLATE_INSTANTIATION (DECL_CONTEXT (decl)))
4113 && TREE_PUBLIC (DECL_CONTEXT (decl)))))
4115 if (flag_weak)
4117 /* With weak symbols, we simply make the variable COMDAT;
4118 that will cause copies in multiple translations units to
4119 be merged. */
4120 comdat_linkage (decl);
4122 else
4124 if (DECL_INITIAL (decl) == NULL_TREE
4125 || DECL_INITIAL (decl) == error_mark_node)
4127 /* Without weak symbols, we can use COMMON to merge
4128 uninitialized variables. */
4129 TREE_PUBLIC (decl) = 1;
4130 DECL_COMMON (decl) = 1;
4132 else
4134 /* While for initialized variables, we must use internal
4135 linkage -- which means that multiple copies will not
4136 be merged. */
4137 TREE_PUBLIC (decl) = 0;
4138 DECL_COMMON (decl) = 0;
4139 cp_warning_at ("sorry: semantics of inline function static data `%#D' are wrong (you'll wind up with multiple copies)", decl);
4140 warning ("%J you can work around this by removing the initializer",
4141 decl);
4145 else if (DECL_LANG_SPECIFIC (decl) && DECL_COMDAT (decl))
4146 /* Set it up again; we might have set DECL_INITIAL since the last
4147 time. */
4148 comdat_linkage (decl);
4151 /* Issue an error message if DECL is an uninitialized const variable. */
4153 static void
4154 check_for_uninitialized_const_var (tree decl)
4156 tree type = TREE_TYPE (decl);
4158 /* ``Unless explicitly declared extern, a const object does not have
4159 external linkage and must be initialized. ($8.4; $12.1)'' ARM
4160 7.1.6 */
4161 if (TREE_CODE (decl) == VAR_DECL
4162 && TREE_CODE (type) != REFERENCE_TYPE
4163 && CP_TYPE_CONST_P (type)
4164 && !TYPE_NEEDS_CONSTRUCTING (type)
4165 && !DECL_INITIAL (decl))
4166 error ("uninitialized const `%D'", decl);
4169 /* FIELD is a FIELD_DECL or NULL. In the former case, the value
4170 returned is the next FIELD_DECL (possibly FIELD itself) that can be
4171 initialized. If there are no more such fields, the return value
4172 will be NULL. */
4174 static tree
4175 next_initializable_field (tree field)
4177 while (field
4178 && (TREE_CODE (field) != FIELD_DECL
4179 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field))
4180 || DECL_ARTIFICIAL (field)))
4181 field = TREE_CHAIN (field);
4183 return field;
4186 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
4187 brace-enclosed aggregate initializer.
4189 *INITP is one of a list of initializers describing a brace-enclosed
4190 initializer for an entity of the indicated aggregate TYPE. It may
4191 not presently match the shape of the TYPE; for example:
4193 struct S { int a; int b; };
4194 struct S a[] = { 1, 2, 3, 4 };
4196 Here *INITP will point to TREE_LIST of four elements, rather than a
4197 list of two elements, each itself a list of two elements. This
4198 routine transforms INIT from the former form into the latter. The
4199 revised initializer is returned. */
4201 static tree
4202 reshape_init (tree type, tree *initp)
4204 tree inits;
4205 tree old_init;
4206 tree old_init_value;
4207 tree new_init;
4208 bool brace_enclosed_p;
4210 old_init = *initp;
4211 old_init_value = (TREE_CODE (*initp) == TREE_LIST
4212 ? TREE_VALUE (*initp) : old_init);
4214 my_friendly_assert (old_init_value, 20030723);
4216 /* If the initializer is brace-enclosed, pull initializers from the
4217 enclosed elements. Advance past the brace-enclosed initializer
4218 now. */
4219 if (TREE_CODE (old_init_value) == CONSTRUCTOR
4220 && TREE_TYPE (old_init_value) == NULL_TREE
4221 && TREE_HAS_CONSTRUCTOR (old_init_value))
4223 *initp = TREE_CHAIN (old_init);
4224 TREE_CHAIN (old_init) = NULL_TREE;
4225 inits = CONSTRUCTOR_ELTS (old_init_value);
4226 initp = &inits;
4227 brace_enclosed_p = true;
4229 else
4231 inits = NULL_TREE;
4232 brace_enclosed_p = false;
4235 /* A non-aggregate type is always initialized with a single
4236 initializer. */
4237 if (!CP_AGGREGATE_TYPE_P (type))
4239 *initp = TREE_CHAIN (old_init);
4240 TREE_CHAIN (old_init) = NULL_TREE;
4241 /* It is invalid to initialize a non-aggregate type with a
4242 brace-enclosed initializer. */
4243 if (brace_enclosed_p)
4245 error ("brace-enclosed initializer used to initialize `%T'",
4246 type);
4247 if (TREE_CODE (old_init) == TREE_LIST)
4248 TREE_VALUE (old_init) = error_mark_node;
4249 else
4250 old_init = error_mark_node;
4253 return old_init;
4256 /* [dcl.init.aggr]
4258 All implicit type conversions (clause _conv_) are considered when
4259 initializing the aggregate member with an initializer from an
4260 initializer-list. If the initializer can initialize a member,
4261 the member is initialized. Otherwise, if the member is itself a
4262 non-empty subaggregate, brace elision is assumed and the
4263 initializer is considered for the initialization of the first
4264 member of the subaggregate. */
4265 if (!brace_enclosed_p
4266 && can_convert_arg (type, TREE_TYPE (old_init_value), old_init_value))
4268 *initp = TREE_CHAIN (old_init);
4269 TREE_CHAIN (old_init) = NULL_TREE;
4270 return old_init;
4273 if (TREE_CODE (old_init_value) == STRING_CST
4274 && TREE_CODE (type) == ARRAY_TYPE
4275 && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
4277 /* [dcl.init.string]
4279 A char array (whether plain char, signed char, or unsigned char)
4280 can be initialized by a string-literal (optionally enclosed in
4281 braces); a wchar_t array can be initialized by a wide
4282 string-literal (optionally enclosed in braces). */
4283 new_init = old_init;
4284 /* Move past the initializer. */
4285 *initp = TREE_CHAIN (old_init);
4286 TREE_CHAIN (old_init) = NULL_TREE;
4288 else
4290 /* Build a CONSTRUCTOR to hold the contents of the aggregate. */
4291 new_init = build_constructor (type, NULL_TREE);
4292 TREE_HAS_CONSTRUCTOR (new_init) = 1;
4294 if (CLASS_TYPE_P (type))
4296 tree field;
4298 field = next_initializable_field (TYPE_FIELDS (type));
4300 if (!field)
4302 /* [dcl.init.aggr]
4304 An initializer for an aggregate member that is an
4305 empty class shall have the form of an empty
4306 initializer-list {}. */
4307 if (!brace_enclosed_p)
4309 error ("initializer for `%T' must be brace-enclosed",
4310 type);
4311 return error_mark_node;
4314 else
4316 /* Loop through the initializable fields, gathering
4317 initializers. */
4318 while (*initp)
4320 tree field_init;
4322 /* Handle designated initializers, as an extension. */
4323 if (TREE_PURPOSE (*initp))
4325 if (pedantic)
4326 pedwarn ("ISO C++ does not allow designated initializers");
4327 field = lookup_field_1 (type, TREE_PURPOSE (*initp),
4328 /*want_type=*/false);
4329 if (!field || TREE_CODE (field) != FIELD_DECL)
4330 error ("`%T' has no non-static data member named `%D'",
4331 type, TREE_PURPOSE (*initp));
4333 if (!field)
4334 break;
4336 field_init = reshape_init (TREE_TYPE (field), initp);
4337 if (field_init == error_mark_node)
4338 return error_mark_node;
4339 TREE_CHAIN (field_init) = CONSTRUCTOR_ELTS (new_init);
4340 CONSTRUCTOR_ELTS (new_init) = field_init;
4341 /* [dcl.init.aggr]
4343 When a union is initialized with a brace-enclosed
4344 initializer, the braces shall only contain an
4345 initializer for the first member of the union. */
4346 if (TREE_CODE (type) == UNION_TYPE)
4347 break;
4348 field = next_initializable_field (TREE_CHAIN (field));
4352 else if ((TREE_CODE (type) == ARRAY_TYPE)|| (TREE_CODE (type) == VECTOR_TYPE))
4354 tree index;
4355 tree max_index;
4357 /* If the bound of the array is known, take no more initializers
4358 than are allowed. */
4359 max_index = ((TYPE_DOMAIN (type) && (TREE_CODE (type) == ARRAY_TYPE))
4360 ? array_type_nelts (type) : NULL_TREE);
4361 /* Loop through the array elements, gathering initializers. */
4362 for (index = size_zero_node;
4363 *initp && (!max_index || !tree_int_cst_lt (max_index, index));
4364 index = size_binop (PLUS_EXPR, index, size_one_node))
4366 tree element_init;
4368 element_init = reshape_init (TREE_TYPE (type), initp);
4369 if (element_init == error_mark_node)
4370 return error_mark_node;
4371 TREE_CHAIN (element_init) = CONSTRUCTOR_ELTS (new_init);
4372 CONSTRUCTOR_ELTS (new_init) = element_init;
4373 if (TREE_PURPOSE (element_init))
4375 tree next_index = TREE_PURPOSE (element_init);
4376 if (TREE_CODE (next_index) == IDENTIFIER_NODE)
4378 error ("name `%D' used in a GNU-style designated "
4379 "initializer for an array", next_index);
4380 TREE_PURPOSE (element_init) = NULL_TREE;
4382 else
4383 index = next_index;
4387 else
4388 abort ();
4390 /* The initializers were placed in reverse order in the
4391 CONSTRUCTOR. */
4392 CONSTRUCTOR_ELTS (new_init) = nreverse (CONSTRUCTOR_ELTS (new_init));
4394 if (TREE_CODE (old_init) == TREE_LIST)
4395 new_init = build_tree_list (TREE_PURPOSE (old_init), new_init);
4398 /* If this was a brace-enclosed initializer and all of the
4399 initializers were not used up, there is a problem. */
4400 if (brace_enclosed_p && *initp)
4401 error ("too many initializers for `%T'", type);
4403 return new_init;
4406 /* Verify INIT (the initializer for DECL), and record the
4407 initialization in DECL_INITIAL, if appropriate. CLEANUP is as for
4408 grok_reference_init.
4410 If the return value is non-NULL, it is an expression that must be
4411 evaluated dynamically to initialize DECL. */
4413 static tree
4414 check_initializer (tree decl, tree init, int flags, tree *cleanup)
4416 tree type = TREE_TYPE (decl);
4417 tree init_code = NULL;
4419 /* If `start_decl' didn't like having an initialization, ignore it now. */
4420 if (init != NULL_TREE && DECL_INITIAL (decl) == NULL_TREE)
4421 init = NULL_TREE;
4423 /* If an initializer is present, DECL_INITIAL has been
4424 error_mark_node, to indicate that an as-of-yet unevaluated
4425 initialization will occur. From now on, DECL_INITIAL reflects
4426 the static initialization -- if any -- of DECL. */
4427 DECL_INITIAL (decl) = NULL_TREE;
4429 /* Things that are going to be initialized need to have complete
4430 type. */
4431 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
4433 if (type == error_mark_node)
4434 /* We will have already complained. */
4435 init = NULL_TREE;
4436 else if (init && COMPLETE_TYPE_P (type)
4437 && !TREE_CONSTANT (TYPE_SIZE (type)))
4439 error ("variable-sized object `%D' may not be initialized", decl);
4440 init = NULL_TREE;
4442 else if (TREE_CODE (type) == ARRAY_TYPE
4443 && !COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
4445 error ("elements of array `%#D' have incomplete type", decl);
4446 init = NULL_TREE;
4448 else if (TREE_CODE (type) != ARRAY_TYPE && !COMPLETE_TYPE_P (type))
4450 error ("`%D' has incomplete type", decl);
4451 TREE_TYPE (decl) = error_mark_node;
4452 init = NULL_TREE;
4455 if (TREE_CODE (decl) == CONST_DECL)
4457 my_friendly_assert (TREE_CODE (decl) != REFERENCE_TYPE, 148);
4459 DECL_INITIAL (decl) = init;
4461 my_friendly_assert (init != NULL_TREE, 149);
4462 init = NULL_TREE;
4464 else if (!DECL_EXTERNAL (decl) && TREE_CODE (type) == REFERENCE_TYPE)
4465 init = grok_reference_init (decl, type, init, cleanup);
4466 else if (init)
4468 if (TREE_CODE (init) == CONSTRUCTOR && TREE_HAS_CONSTRUCTOR (init))
4470 /* [dcl.init] paragraph 13,
4471 If T is a scalar type, then a declaration of the form
4472 T x = { a };
4473 is equivalent to
4474 T x = a;
4476 reshape_init will complain about the extra braces,
4477 and doesn't do anything useful in the case where TYPE is
4478 scalar, so just don't call it. */
4479 if (CP_AGGREGATE_TYPE_P (type))
4480 init = reshape_init (type, &init);
4482 if ((*targetm.vector_opaque_p) (type))
4484 error ("opaque vector types cannot be initialized");
4485 init = error_mark_node;
4489 /* If DECL has an array type without a specific bound, deduce the
4490 array size from the initializer. */
4491 maybe_deduce_size_from_array_init (decl, init);
4492 type = TREE_TYPE (decl);
4493 if (TREE_CODE (init) == CONSTRUCTOR && TREE_HAS_CONSTRUCTOR (init))
4494 TREE_TYPE (init) = type;
4496 if (TYPE_HAS_CONSTRUCTOR (type) || TYPE_NEEDS_CONSTRUCTING (type))
4498 if (TREE_CODE (type) == ARRAY_TYPE)
4499 goto initialize_aggr;
4500 else if (TREE_CODE (init) == CONSTRUCTOR
4501 && TREE_HAS_CONSTRUCTOR (init))
4503 if (TYPE_NON_AGGREGATE_CLASS (type))
4505 error ("`%D' must be initialized by constructor, not by `{...}'",
4506 decl);
4507 init = error_mark_node;
4509 else
4510 goto dont_use_constructor;
4512 else
4514 int saved_stmts_are_full_exprs_p;
4516 initialize_aggr:
4517 saved_stmts_are_full_exprs_p = 0;
4518 if (building_stmt_tree ())
4520 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
4521 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
4523 init = build_aggr_init (decl, init, flags);
4524 if (building_stmt_tree ())
4525 current_stmt_tree ()->stmts_are_full_exprs_p =
4526 saved_stmts_are_full_exprs_p;
4527 return init;
4530 else
4532 dont_use_constructor:
4533 if (TREE_CODE (init) != TREE_VEC)
4535 init_code = store_init_value (decl, init);
4536 init = NULL;
4540 else if (DECL_EXTERNAL (decl))
4542 else if (TYPE_P (type) && TYPE_NEEDS_CONSTRUCTING (type))
4543 goto initialize_aggr;
4544 else if (IS_AGGR_TYPE (type))
4546 tree core_type = strip_array_types (type);
4548 if (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type))
4549 error ("structure `%D' with uninitialized const members", decl);
4550 if (CLASSTYPE_REF_FIELDS_NEED_INIT (core_type))
4551 error ("structure `%D' with uninitialized reference members",
4552 decl);
4554 check_for_uninitialized_const_var (decl);
4556 else
4557 check_for_uninitialized_const_var (decl);
4559 if (init && init != error_mark_node)
4560 init_code = build (INIT_EXPR, type, decl, init);
4562 return init_code;
4565 /* If DECL is not a local variable, give it RTL. */
4567 static void
4568 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
4570 int toplev = toplevel_bindings_p ();
4571 int defer_p;
4573 /* Handle non-variables up front. */
4574 if (TREE_CODE (decl) != VAR_DECL)
4576 rest_of_decl_compilation (decl, asmspec, toplev, at_eof);
4577 return;
4580 /* If we see a class member here, it should be a static data
4581 member. */
4582 if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
4584 my_friendly_assert (TREE_STATIC (decl), 19990828);
4585 /* An in-class declaration of a static data member should be
4586 external; it is only a declaration, and not a definition. */
4587 if (init == NULL_TREE)
4588 my_friendly_assert (DECL_EXTERNAL (decl), 20000723);
4591 /* Set the DECL_ASSEMBLER_NAME for the variable. */
4592 if (asmspec)
4594 change_decl_assembler_name (decl, get_identifier (asmspec));
4595 /* The `register' keyword, when used together with an
4596 asm-specification, indicates that the variable should be
4597 placed in a particular register. */
4598 if (DECL_REGISTER (decl))
4599 DECL_C_HARD_REGISTER (decl) = 1;
4602 /* We don't create any RTL for local variables. */
4603 if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
4604 return;
4606 /* We defer emission of local statics until the corresponding
4607 DECL_STMT is expanded. */
4608 defer_p = DECL_FUNCTION_SCOPE_P (decl) || DECL_VIRTUAL_P (decl);
4610 /* We try to defer namespace-scope static constants so that they are
4611 not emitted into the object file unnecessarily. */
4612 if (!DECL_VIRTUAL_P (decl)
4613 && TREE_READONLY (decl)
4614 && DECL_INITIAL (decl) != NULL_TREE
4615 && DECL_INITIAL (decl) != error_mark_node
4616 && ! EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl))
4617 && toplev
4618 && !TREE_PUBLIC (decl))
4620 /* Fool with the linkage of static consts according to #pragma
4621 interface. */
4622 if (!interface_unknown && !TREE_PUBLIC (decl))
4624 TREE_PUBLIC (decl) = 1;
4625 DECL_EXTERNAL (decl) = interface_only;
4628 defer_p = 1;
4630 /* Likewise for template instantiations. */
4631 else if (DECL_COMDAT (decl))
4632 defer_p = 1;
4634 /* If we're deferring the variable, we only need to make RTL if
4635 there's an ASMSPEC. Otherwise, we'll lazily create it later when
4636 we need it. (There's no way to lazily create RTL for things that
4637 have assembly specs because the information about the specifier
4638 isn't stored in the tree, yet) */
4639 if (defer_p && asmspec)
4640 make_decl_rtl (decl, asmspec);
4641 /* If we're not deferring, go ahead and assemble the variable. */
4642 else if (!defer_p)
4643 rest_of_decl_compilation (decl, asmspec, toplev, at_eof);
4646 /* Generate code to initialize DECL (a local variable). */
4648 static void
4649 initialize_local_var (tree decl, tree init)
4651 tree type = TREE_TYPE (decl);
4652 tree cleanup;
4654 my_friendly_assert (TREE_CODE (decl) == VAR_DECL
4655 || TREE_CODE (decl) == RESULT_DECL,
4656 20021010);
4657 my_friendly_assert (!TREE_STATIC (decl), 20021010);
4659 if (DECL_SIZE (decl) == NULL_TREE)
4661 /* If we used it already as memory, it must stay in memory. */
4662 DECL_INITIAL (decl) = NULL_TREE;
4663 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
4666 if (DECL_SIZE (decl) && type != error_mark_node)
4668 int already_used;
4670 /* Compute and store the initial value. */
4671 already_used = TREE_USED (decl) || TREE_USED (type);
4673 /* Perform the initialization. */
4674 if (init)
4676 int saved_stmts_are_full_exprs_p;
4678 my_friendly_assert (building_stmt_tree (), 20000906);
4679 saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
4680 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
4681 finish_expr_stmt (init);
4682 current_stmt_tree ()->stmts_are_full_exprs_p =
4683 saved_stmts_are_full_exprs_p;
4686 /* Set this to 0 so we can tell whether an aggregate which was
4687 initialized was ever used. Don't do this if it has a
4688 destructor, so we don't complain about the 'resource
4689 allocation is initialization' idiom. Now set
4690 attribute((unused)) on types so decls of that type will be
4691 marked used. (see TREE_USED, above.) */
4692 if (TYPE_NEEDS_CONSTRUCTING (type)
4693 && ! already_used
4694 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
4695 && DECL_NAME (decl))
4696 TREE_USED (decl) = 0;
4697 else if (already_used)
4698 TREE_USED (decl) = 1;
4701 /* Generate a cleanup, if necessary. */
4702 cleanup = cxx_maybe_build_cleanup (decl);
4703 if (DECL_SIZE (decl) && cleanup)
4704 finish_decl_cleanup (decl, cleanup);
4707 /* Finish processing of a declaration;
4708 install its line number and initial value.
4709 If the length of an array type is not known before,
4710 it must be determined now, from the initial value, or it is an error.
4712 INIT holds the value of an initializer that should be allowed to escape
4713 the normal rules.
4715 FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
4716 if the (init) syntax was used. */
4718 void
4719 cp_finish_decl (tree decl, tree init, tree asmspec_tree, int flags)
4721 tree type;
4722 tree ttype = NULL_TREE;
4723 tree cleanup;
4724 const char *asmspec = NULL;
4725 int was_readonly = 0;
4727 if (decl == error_mark_node)
4728 return;
4729 else if (! decl)
4731 if (init)
4732 error ("assignment (not initialization) in declaration");
4733 return;
4736 my_friendly_assert (TREE_CODE (decl) != RESULT_DECL, 20030619);
4738 /* Assume no cleanup is required. */
4739 cleanup = NULL_TREE;
4741 /* If a name was specified, get the string. */
4742 if (global_scope_p (current_binding_level))
4743 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
4744 if (asmspec_tree)
4745 asmspec = TREE_STRING_POINTER (asmspec_tree);
4747 if (init && TREE_CODE (init) == NAMESPACE_DECL)
4749 error ("cannot initialize `%D' to namespace `%D'",
4750 decl, init);
4751 init = NULL_TREE;
4754 if (current_class_type
4755 && CP_DECL_CONTEXT (decl) == current_class_type
4756 && TYPE_BEING_DEFINED (current_class_type)
4757 && (DECL_INITIAL (decl) || init))
4758 DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
4760 if (TREE_CODE (decl) == VAR_DECL
4761 && DECL_CONTEXT (decl)
4762 && TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL
4763 && DECL_CONTEXT (decl) != current_namespace
4764 && init)
4766 /* Leave the namespace of the object. */
4767 pop_decl_namespace ();
4770 type = TREE_TYPE (decl);
4772 if (type == error_mark_node)
4773 goto finish_end0;
4775 if (TYPE_HAS_MUTABLE_P (type))
4776 TREE_READONLY (decl) = 0;
4778 if (processing_template_decl)
4780 /* Add this declaration to the statement-tree. */
4781 if (at_function_scope_p ())
4782 add_decl_stmt (decl);
4784 if (init && DECL_INITIAL (decl))
4785 DECL_INITIAL (decl) = init;
4786 if (TREE_CODE (decl) == VAR_DECL
4787 && !DECL_PRETTY_FUNCTION_P (decl)
4788 && !dependent_type_p (TREE_TYPE (decl)))
4789 maybe_deduce_size_from_array_init (decl, init);
4790 goto finish_end0;
4793 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
4794 my_friendly_assert (TREE_CODE (decl) != PARM_DECL, 19990828);
4796 /* Take care of TYPE_DECLs up front. */
4797 if (TREE_CODE (decl) == TYPE_DECL)
4799 if (type != error_mark_node
4800 && IS_AGGR_TYPE (type) && DECL_NAME (decl))
4802 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
4803 warning ("shadowing previous type declaration of `%#D'", decl);
4804 set_identifier_type_value (DECL_NAME (decl), decl);
4807 /* If we have installed this as the canonical typedef for this
4808 type, and that type has not been defined yet, delay emitting
4809 the debug information for it, as we will emit it later. */
4810 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
4811 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
4812 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
4814 rest_of_decl_compilation (decl, NULL,
4815 DECL_CONTEXT (decl) == NULL_TREE, at_eof);
4816 goto finish_end;
4819 if (TREE_CODE (decl) != FUNCTION_DECL)
4820 ttype = target_type (type);
4823 /* Currently, GNU C++ puts constants in text space, making them
4824 impossible to initialize. In the future, one would hope for
4825 an operating system which understood the difference between
4826 initialization and the running of a program. */
4827 if (! DECL_EXTERNAL (decl) && TREE_READONLY (decl))
4829 was_readonly = 1;
4830 if (TYPE_NEEDS_CONSTRUCTING (type)
4831 || TREE_CODE (type) == REFERENCE_TYPE)
4832 TREE_READONLY (decl) = 0;
4835 if (TREE_CODE (decl) == VAR_DECL)
4837 /* Only PODs can have thread-local storage. Other types may require
4838 various kinds of non-trivial initialization. */
4839 if (DECL_THREAD_LOCAL (decl) && !pod_type_p (TREE_TYPE (decl)))
4840 error ("`%D' cannot be thread-local because it has non-POD type `%T'",
4841 decl, TREE_TYPE (decl));
4842 /* Convert the initializer to the type of DECL, if we have not
4843 already initialized DECL. */
4844 if (!DECL_INITIALIZED_P (decl)
4845 /* If !DECL_EXTERNAL then DECL is being defined. In the
4846 case of a static data member initialized inside the
4847 class-specifier, there can be an initializer even if DECL
4848 is *not* defined. */
4849 && (!DECL_EXTERNAL (decl) || init))
4851 init = check_initializer (decl, init, flags, &cleanup);
4852 /* Thread-local storage cannot be dynamically initialized. */
4853 if (DECL_THREAD_LOCAL (decl) && init)
4855 error ("`%D' is thread-local and so cannot be dynamically "
4856 "initialized", decl);
4857 init = NULL_TREE;
4859 /* Handle:
4861 [dcl.init]
4863 The memory occupied by any object of static storage
4864 duration is zero-initialized at program startup before
4865 any other initialization takes place.
4867 We cannot create an appropriate initializer until after
4868 the type of DECL is finalized. If DECL_INITIAL is set,
4869 then the DECL is statically initialized, and any
4870 necessary zero-initialization has already been performed. */
4871 if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
4872 DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
4873 /*nelts=*/NULL_TREE,
4874 /*static_storage_p=*/true);
4875 /* Remember that the initialization for this variable has
4876 taken place. */
4877 DECL_INITIALIZED_P (decl) = 1;
4879 /* If the variable has an array type, lay out the type, even if
4880 there is no initializer. It is valid to index through the
4881 array, and we must get TYPE_ALIGN set correctly on the array
4882 type. */
4883 else if (TREE_CODE (type) == ARRAY_TYPE)
4884 layout_type (type);
4887 /* Add this declaration to the statement-tree. This needs to happen
4888 after the call to check_initializer so that the DECL_STMT for a
4889 reference temp is added before the DECL_STMT for the reference itself. */
4890 if (at_function_scope_p ())
4891 add_decl_stmt (decl);
4893 if (TREE_CODE (decl) == VAR_DECL)
4894 layout_var_decl (decl);
4896 /* Output the assembler code and/or RTL code for variables and functions,
4897 unless the type is an undefined structure or union.
4898 If not, it will get done when the type is completed. */
4899 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
4901 if (TREE_CODE (decl) == VAR_DECL)
4902 maybe_commonize_var (decl);
4904 make_rtl_for_nonlocal_decl (decl, init, asmspec);
4906 if (TREE_CODE (type) == FUNCTION_TYPE
4907 || TREE_CODE (type) == METHOD_TYPE)
4908 abstract_virtuals_error (decl,
4909 strip_array_types (TREE_TYPE (type)));
4910 else if (POINTER_TYPE_P (type) || TREE_CODE (type) == ARRAY_TYPE)
4912 /* If it's either a pointer or an array type, strip through all
4913 of them but the last one. If the last is an array type, issue
4914 an error if the element type is abstract. */
4915 while (POINTER_TYPE_P (TREE_TYPE (type))
4916 || TREE_CODE (TREE_TYPE (type)) == ARRAY_TYPE)
4917 type = TREE_TYPE (type);
4918 if (TREE_CODE (type) == ARRAY_TYPE)
4919 abstract_virtuals_error (decl, TREE_TYPE (type));
4921 else
4922 abstract_virtuals_error (decl, type);
4924 if (TREE_CODE (decl) == FUNCTION_DECL
4925 || TREE_TYPE (decl) == error_mark_node)
4926 /* No initialization required. */
4928 else if (DECL_EXTERNAL (decl)
4929 && ! (DECL_LANG_SPECIFIC (decl)
4930 && DECL_NOT_REALLY_EXTERN (decl)))
4932 if (init)
4933 DECL_INITIAL (decl) = init;
4935 else
4937 /* A variable definition. */
4938 if (DECL_FUNCTION_SCOPE_P (decl))
4940 /* This is a local declaration. */
4941 maybe_inject_for_scope_var (decl);
4942 /* Initialize the local variable. */
4943 if (processing_template_decl)
4945 if (init || DECL_INITIAL (decl) == error_mark_node)
4946 DECL_INITIAL (decl) = init;
4948 else if (!TREE_STATIC (decl))
4949 initialize_local_var (decl, init);
4952 if (TREE_STATIC (decl))
4953 expand_static_init (decl, init);
4955 finish_end0:
4957 /* Undo call to `pushclass' that was done in `start_decl'
4958 due to initialization of qualified member variable.
4959 I.e., Foo::x = 10; */
4961 tree context = CP_DECL_CONTEXT (decl);
4962 if (context
4963 && TYPE_P (context)
4964 && (TREE_CODE (decl) == VAR_DECL
4965 /* We also have a pushclass done that we need to undo here
4966 if we're at top level and declare a method. */
4967 || TREE_CODE (decl) == FUNCTION_DECL)
4968 /* If size hasn't been set, we're still defining it,
4969 and therefore inside the class body; don't pop
4970 the binding level.. */
4971 && COMPLETE_TYPE_P (context)
4972 && context == current_class_type)
4973 pop_nested_class ();
4977 /* If a CLEANUP_STMT was created to destroy a temporary bound to a
4978 reference, insert it in the statement-tree now. */
4979 if (cleanup)
4980 add_stmt (cleanup);
4982 finish_end:
4984 if (was_readonly)
4985 TREE_READONLY (decl) = 1;
4987 /* If this was marked 'used', be sure it will be output. */
4988 if (lookup_attribute ("used", DECL_ATTRIBUTES (decl)))
4989 mark_referenced (DECL_ASSEMBLER_NAME (decl));
4992 /* This is here for a midend callback from c-common.c. */
4994 void
4995 finish_decl (tree decl, tree init, tree asmspec_tree)
4997 cp_finish_decl (decl, init, asmspec_tree, 0);
5000 /* Returns a declaration for a VAR_DECL as if:
5002 extern "C" TYPE NAME;
5004 had been seen. Used to create compiler-generated global
5005 variables. */
5007 tree
5008 declare_global_var (tree name, tree type)
5010 tree decl;
5012 push_to_top_level ();
5013 decl = build_decl (VAR_DECL, name, type);
5014 TREE_PUBLIC (decl) = 1;
5015 DECL_EXTERNAL (decl) = 1;
5016 DECL_ARTIFICIAL (decl) = 1;
5017 pushdecl (decl);
5018 cp_finish_decl (decl, NULL_TREE, NULL_TREE, 0);
5019 pop_from_top_level ();
5021 return decl;
5024 /* Returns a pointer to the `atexit' function. Note that if
5025 FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
5026 `__cxa_atexit' function specified in the IA64 C++ ABI. */
5028 static tree
5029 get_atexit_node (void)
5031 tree atexit_fndecl;
5032 tree arg_types;
5033 tree fn_type;
5034 tree fn_ptr_type;
5035 const char *name;
5037 if (atexit_node)
5038 return atexit_node;
5040 if (flag_use_cxa_atexit)
5042 /* The declaration for `__cxa_atexit' is:
5044 int __cxa_atexit (void (*)(void *), void *, void *)
5046 We build up the argument types and then then function type
5047 itself. */
5049 /* First, build the pointer-to-function type for the first
5050 argument. */
5051 arg_types = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
5052 fn_type = build_function_type (void_type_node, arg_types);
5053 fn_ptr_type = build_pointer_type (fn_type);
5054 /* Then, build the rest of the argument types. */
5055 arg_types = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
5056 arg_types = tree_cons (NULL_TREE, ptr_type_node, arg_types);
5057 arg_types = tree_cons (NULL_TREE, fn_ptr_type, arg_types);
5058 /* And the final __cxa_atexit type. */
5059 fn_type = build_function_type (integer_type_node, arg_types);
5060 fn_ptr_type = build_pointer_type (fn_type);
5061 name = "__cxa_atexit";
5063 else
5065 /* The declaration for `atexit' is:
5067 int atexit (void (*)());
5069 We build up the argument types and then then function type
5070 itself. */
5071 fn_type = build_function_type (void_type_node, void_list_node);
5072 fn_ptr_type = build_pointer_type (fn_type);
5073 arg_types = tree_cons (NULL_TREE, fn_ptr_type, void_list_node);
5074 /* Build the final atexit type. */
5075 fn_type = build_function_type (integer_type_node, arg_types);
5076 name = "atexit";
5079 /* Now, build the function declaration. */
5080 push_lang_context (lang_name_c);
5081 atexit_fndecl = build_library_fn_ptr (name, fn_type);
5082 mark_used (atexit_fndecl);
5083 pop_lang_context ();
5084 atexit_node = decay_conversion (atexit_fndecl);
5086 return atexit_node;
5089 /* Returns the __dso_handle VAR_DECL. */
5091 static tree
5092 get_dso_handle_node (void)
5094 if (dso_handle_node)
5095 return dso_handle_node;
5097 /* Declare the variable. */
5098 dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
5099 ptr_type_node);
5101 return dso_handle_node;
5104 /* Begin a new function with internal linkage whose job will be simply
5105 to destroy some particular variable. */
5107 static GTY(()) int start_cleanup_cnt;
5109 static tree
5110 start_cleanup_fn (void)
5112 int old_interface_only = interface_only;
5113 int old_interface_unknown = interface_unknown;
5114 char name[32];
5115 tree parmtypes;
5116 tree fntype;
5117 tree fndecl;
5119 push_to_top_level ();
5121 /* No need to mangle this. */
5122 push_lang_context (lang_name_c);
5124 interface_only = 0;
5125 interface_unknown = 1;
5127 /* Build the parameter-types. */
5128 parmtypes = void_list_node;
5129 /* Functions passed to __cxa_atexit take an additional parameter.
5130 We'll just ignore it. After we implement the new calling
5131 convention for destructors, we can eliminate the use of
5132 additional cleanup functions entirely in the -fnew-abi case. */
5133 if (flag_use_cxa_atexit)
5134 parmtypes = tree_cons (NULL_TREE, ptr_type_node, parmtypes);
5135 /* Build the function type itself. */
5136 fntype = build_function_type (void_type_node, parmtypes);
5137 /* Build the name of the function. */
5138 sprintf (name, "__tcf_%d", start_cleanup_cnt++);
5139 /* Build the function declaration. */
5140 fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
5141 /* It's a function with internal linkage, generated by the
5142 compiler. */
5143 TREE_PUBLIC (fndecl) = 0;
5144 DECL_ARTIFICIAL (fndecl) = 1;
5145 /* Make the function `inline' so that it is only emitted if it is
5146 actually needed. It is unlikely that it will be inlined, since
5147 it is only called via a function pointer, but we avoid unnecessary
5148 emissions this way. */
5149 DECL_INLINE (fndecl) = 1;
5150 DECL_DECLARED_INLINE_P (fndecl) = 1;
5151 DECL_INTERFACE_KNOWN (fndecl) = 1;
5152 /* Build the parameter. */
5153 if (flag_use_cxa_atexit)
5155 tree parmdecl;
5157 parmdecl = cp_build_parm_decl (NULL_TREE, ptr_type_node);
5158 DECL_CONTEXT (parmdecl) = fndecl;
5159 TREE_USED (parmdecl) = 1;
5160 DECL_ARGUMENTS (fndecl) = parmdecl;
5163 pushdecl (fndecl);
5164 start_function (/*specs=*/NULL_TREE, fndecl, NULL_TREE, SF_PRE_PARSED);
5166 interface_unknown = old_interface_unknown;
5167 interface_only = old_interface_only;
5169 pop_lang_context ();
5171 return current_function_decl;
5174 /* Finish the cleanup function begun by start_cleanup_fn. */
5176 static void
5177 end_cleanup_fn (void)
5179 expand_or_defer_fn (finish_function (0));
5181 pop_from_top_level ();
5184 /* Generate code to handle the destruction of DECL, an object with
5185 static storage duration. */
5187 void
5188 register_dtor_fn (tree decl)
5190 tree cleanup;
5191 tree compound_stmt;
5192 tree args;
5193 tree fcall;
5195 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
5196 return;
5198 /* Call build_cleanup before we enter the anonymous function so that
5199 any access checks will be done relative to the current scope,
5200 rather than the scope of the anonymous function. */
5201 build_cleanup (decl);
5203 /* Now start the function. */
5204 cleanup = start_cleanup_fn ();
5206 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
5207 to the original function, rather than the anonymous one. That
5208 will make the back-end think that nested functions are in use,
5209 which causes confusion. */
5211 push_deferring_access_checks (dk_no_check);
5212 fcall = build_cleanup (decl);
5213 pop_deferring_access_checks ();
5215 /* Create the body of the anonymous function. */
5216 compound_stmt = begin_compound_stmt (/*has_no_scope=*/false);
5217 finish_expr_stmt (fcall);
5218 finish_compound_stmt (compound_stmt);
5219 end_cleanup_fn ();
5221 /* Call atexit with the cleanup function. */
5222 cxx_mark_addressable (cleanup);
5223 mark_used (cleanup);
5224 cleanup = build_unary_op (ADDR_EXPR, cleanup, 0);
5225 if (flag_use_cxa_atexit)
5227 args = tree_cons (NULL_TREE,
5228 build_unary_op (ADDR_EXPR, get_dso_handle_node (), 0),
5229 NULL_TREE);
5230 args = tree_cons (NULL_TREE, null_pointer_node, args);
5231 args = tree_cons (NULL_TREE, cleanup, args);
5233 else
5234 args = tree_cons (NULL_TREE, cleanup, NULL_TREE);
5235 finish_expr_stmt (build_function_call (get_atexit_node (), args));
5238 /* DECL is a VAR_DECL with static storage duration. INIT, if present,
5239 is its initializer. Generate code to handle the construction
5240 and destruction of DECL. */
5242 static void
5243 expand_static_init (tree decl, tree init)
5245 my_friendly_assert (TREE_CODE (decl) == VAR_DECL, 20021010);
5246 my_friendly_assert (TREE_STATIC (decl), 20021010);
5248 /* Some variables require no initialization. */
5249 if (!init
5250 && !TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl))
5251 && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
5252 return;
5254 if (! toplevel_bindings_p ())
5256 /* Emit code to perform this initialization but once. */
5257 tree if_stmt;
5258 tree then_clause;
5259 tree assignment;
5260 tree guard;
5261 tree guard_init;
5263 /* Emit code to perform this initialization but once. This code
5264 looks like:
5266 static int guard = 0;
5267 if (!guard) {
5268 // Do initialization.
5269 guard = 1;
5270 // Register variable for destruction at end of program.
5273 Note that the `temp' variable is only set to 1 *after* the
5274 initialization is complete. This ensures that an exception,
5275 thrown during the construction, will cause the variable to
5276 reinitialized when we pass through this code again, as per:
5278 [stmt.dcl]
5280 If the initialization exits by throwing an exception, the
5281 initialization is not complete, so it will be tried again
5282 the next time control enters the declaration.
5284 In theory, this process should be thread-safe, too; multiple
5285 threads should not be able to initialize the variable more
5286 than once. We don't yet attempt to ensure thread-safety. */
5288 /* Create the guard variable. */
5289 guard = get_guard (decl);
5291 /* Begin the conditional initialization. */
5292 if_stmt = begin_if_stmt ();
5293 finish_if_stmt_cond (get_guard_cond (guard), if_stmt);
5294 then_clause = begin_compound_stmt (/*has_no_scope=*/false);
5296 /* Do the initialization itself. */
5297 assignment = init ? init : NULL_TREE;
5299 /* Once the assignment is complete, set TEMP to 1. Since the
5300 construction of the static object is complete at this point,
5301 we want to make sure TEMP is set to 1 even if a temporary
5302 constructed during the initialization throws an exception
5303 when it is destroyed. So, we combine the initialization and
5304 the assignment to TEMP into a single expression, ensuring
5305 that when we call finish_expr_stmt the cleanups will not be
5306 run until after TEMP is set to 1. */
5307 guard_init = set_guard (guard);
5308 if (assignment)
5309 assignment = build_compound_expr (assignment, guard_init);
5310 else
5311 assignment = guard_init;
5312 finish_expr_stmt (assignment);
5314 /* Use atexit to register a function for destroying this static
5315 variable. */
5316 register_dtor_fn (decl);
5318 finish_compound_stmt (then_clause);
5319 finish_then_clause (if_stmt);
5320 finish_if_stmt ();
5322 else
5323 static_aggregates = tree_cons (init, decl, static_aggregates);
5326 /* Finish the declaration of a catch-parameter. */
5328 tree
5329 start_handler_parms (tree declspecs, tree declarator)
5331 tree decl;
5332 if (declspecs)
5334 decl = grokdeclarator (declarator, declspecs, CATCHPARM,
5335 1, NULL);
5336 if (decl == NULL_TREE)
5337 error ("invalid catch parameter");
5339 else
5340 decl = NULL_TREE;
5342 return decl;
5346 /* Make TYPE a complete type based on INITIAL_VALUE.
5347 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
5348 2 if there was no information (in which case assume 0 if DO_DEFAULT). */
5351 complete_array_type (tree type, tree initial_value, int do_default)
5353 tree maxindex = NULL_TREE;
5354 int value = 0;
5356 if (initial_value)
5358 /* An array of character type can be initialized from a
5359 brace-enclosed string constant. */
5360 if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type)))
5361 && TREE_CODE (initial_value) == CONSTRUCTOR
5362 && CONSTRUCTOR_ELTS (initial_value)
5363 && (TREE_CODE (TREE_VALUE (CONSTRUCTOR_ELTS (initial_value)))
5364 == STRING_CST)
5365 && TREE_CHAIN (CONSTRUCTOR_ELTS (initial_value)) == NULL_TREE)
5366 initial_value = TREE_VALUE (CONSTRUCTOR_ELTS (initial_value));
5368 /* Note MAXINDEX is really the maximum index, one less than the
5369 size. */
5370 if (TREE_CODE (initial_value) == STRING_CST)
5372 int eltsize
5373 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
5374 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
5375 / eltsize) - 1, 0);
5377 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
5379 tree elts = CONSTRUCTOR_ELTS (initial_value);
5381 maxindex = ssize_int (-1);
5382 for (; elts; elts = TREE_CHAIN (elts))
5384 if (TREE_PURPOSE (elts))
5385 maxindex = TREE_PURPOSE (elts);
5386 else
5387 maxindex = size_binop (PLUS_EXPR, maxindex, ssize_int (1));
5389 maxindex = copy_node (maxindex);
5391 else
5393 /* Make an error message unless that happened already. */
5394 if (initial_value != error_mark_node)
5395 value = 1;
5396 else
5397 initial_value = NULL_TREE;
5399 /* Prevent further error messages. */
5400 maxindex = build_int_2 (0, 0);
5404 if (!maxindex)
5406 if (do_default)
5407 maxindex = build_int_2 (0, 0);
5408 value = 2;
5411 if (maxindex)
5413 tree itype;
5414 tree domain;
5416 domain = build_index_type (maxindex);
5417 TYPE_DOMAIN (type) = domain;
5419 if (! TREE_TYPE (maxindex))
5420 TREE_TYPE (maxindex) = domain;
5421 if (initial_value)
5422 itype = TREE_TYPE (initial_value);
5423 else
5424 itype = NULL;
5425 if (itype && !TYPE_DOMAIN (itype))
5426 TYPE_DOMAIN (itype) = domain;
5427 /* The type of the main variant should never be used for arrays
5428 of different sizes. It should only ever be completed with the
5429 size of the array. */
5430 if (! TYPE_DOMAIN (TYPE_MAIN_VARIANT (type)))
5431 TYPE_DOMAIN (TYPE_MAIN_VARIANT (type)) = domain;
5434 /* Lay out the type now that we can get the real answer. */
5436 layout_type (type);
5438 return value;
5441 /* Return zero if something is declared to be a member of type
5442 CTYPE when in the context of CUR_TYPE. STRING is the error
5443 message to print in that case. Otherwise, quietly return 1. */
5445 static int
5446 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
5448 if (ctype && ctype != cur_type)
5450 if (flags == DTOR_FLAG)
5451 error ("destructor for alien class `%T' cannot be a member",
5452 ctype);
5453 else
5454 error ("constructor for alien class `%T' cannot be a member",
5455 ctype);
5456 return 0;
5458 return 1;
5461 /* Subroutine of `grokdeclarator'. */
5463 /* Generate errors possibly applicable for a given set of specifiers.
5464 This is for ARM $7.1.2. */
5466 static void
5467 bad_specifiers (tree object,
5468 const char* type,
5469 int virtualp,
5470 int quals,
5471 int inlinep,
5472 int friendp,
5473 int raises)
5475 if (virtualp)
5476 error ("`%D' declared as a `virtual' %s", object, type);
5477 if (inlinep)
5478 error ("`%D' declared as an `inline' %s", object, type);
5479 if (quals)
5480 error ("`const' and `volatile' function specifiers on `%D' invalid in %s declaration",
5481 object, type);
5482 if (friendp)
5483 cp_error_at ("`%D' declared as a friend", object);
5484 if (raises
5485 && (TREE_CODE (object) == TYPE_DECL
5486 || (!TYPE_PTRFN_P (TREE_TYPE (object))
5487 && !TYPE_REFFN_P (TREE_TYPE (object))
5488 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
5489 cp_error_at ("`%D' declared with an exception specification", object);
5492 /* CTYPE is class type, or null if non-class.
5493 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
5494 or METHOD_TYPE.
5495 DECLARATOR is the function's name.
5496 PARMS is a chain of PARM_DECLs for the function.
5497 VIRTUALP is truthvalue of whether the function is virtual or not.
5498 FLAGS are to be passed through to `grokclassfn'.
5499 QUALS are qualifiers indicating whether the function is `const'
5500 or `volatile'.
5501 RAISES is a list of exceptions that this function can raise.
5502 CHECK is 1 if we must find this method in CTYPE, 0 if we should
5503 not look, and -1 if we should not call `grokclassfn' at all.
5505 Returns `NULL_TREE' if something goes wrong, after issuing
5506 applicable error messages. */
5508 static tree
5509 grokfndecl (tree ctype,
5510 tree type,
5511 tree declarator,
5512 tree parms,
5513 tree orig_declarator,
5514 int virtualp,
5515 enum overload_flags flags,
5516 tree quals,
5517 tree raises,
5518 int check,
5519 int friendp,
5520 int publicp,
5521 int inlinep,
5522 int funcdef_flag,
5523 int template_count,
5524 tree in_namespace)
5526 tree decl;
5527 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
5528 int has_default_arg = 0;
5529 tree t;
5531 if (raises)
5532 type = build_exception_variant (type, raises);
5534 decl = build_lang_decl (FUNCTION_DECL, declarator, type);
5535 DECL_ARGUMENTS (decl) = parms;
5536 /* Propagate volatile out from type to decl. */
5537 if (TYPE_VOLATILE (type))
5538 TREE_THIS_VOLATILE (decl) = 1;
5540 /* If this decl has namespace scope, set that up. */
5541 if (in_namespace)
5542 set_decl_namespace (decl, in_namespace, friendp);
5543 else if (!ctype)
5544 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5546 /* `main' and builtins have implicit 'C' linkage. */
5547 if ((MAIN_NAME_P (declarator)
5548 || (IDENTIFIER_LENGTH (declarator) > 10
5549 && IDENTIFIER_POINTER (declarator)[0] == '_'
5550 && IDENTIFIER_POINTER (declarator)[1] == '_'
5551 && strncmp (IDENTIFIER_POINTER (declarator)+2, "builtin_", 8) == 0))
5552 && current_lang_name == lang_name_cplusplus
5553 && ctype == NULL_TREE
5554 /* NULL_TREE means global namespace. */
5555 && DECL_CONTEXT (decl) == NULL_TREE)
5556 SET_DECL_LANGUAGE (decl, lang_c);
5558 /* Should probably propagate const out from type to decl I bet (mrs). */
5559 if (staticp)
5561 DECL_STATIC_FUNCTION_P (decl) = 1;
5562 DECL_CONTEXT (decl) = ctype;
5565 if (ctype)
5566 DECL_CONTEXT (decl) = ctype;
5568 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
5570 if (processing_template_decl)
5571 error ("cannot declare `::main' to be a template");
5572 if (inlinep)
5573 error ("cannot declare `::main' to be inline");
5574 if (!publicp)
5575 error ("cannot declare `::main' to be static");
5576 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
5577 integer_type_node))
5578 error ("`main' must return `int'");
5579 inlinep = 0;
5580 publicp = 1;
5583 /* Members of anonymous types and local classes have no linkage; make
5584 them internal. */
5585 /* FIXME what if it gets a name from typedef? */
5586 if (ctype && (TYPE_ANONYMOUS_P (ctype)
5587 || decl_function_context (TYPE_MAIN_DECL (ctype))))
5588 publicp = 0;
5590 if (publicp)
5592 /* [basic.link]: A name with no linkage (notably, the name of a class
5593 or enumeration declared in a local scope) shall not be used to
5594 declare an entity with linkage.
5596 Only check this for public decls for now. See core 319, 389. */
5597 t = no_linkage_check (TREE_TYPE (decl));
5598 if (t)
5600 if (TYPE_ANONYMOUS_P (t))
5602 if (DECL_EXTERN_C_P (decl))
5603 /* Allow this; it's pretty common in C. */;
5604 else
5606 pedwarn ("non-local function `%#D' uses anonymous type",
5607 decl);
5608 if (DECL_ORIGINAL_TYPE (TYPE_NAME (t)))
5609 cp_pedwarn_at ("\
5610 `%#D' does not refer to the unqualified type, so it is not used for linkage",
5611 TYPE_NAME (t));
5614 else
5615 pedwarn ("non-local function `%#D' uses local type `%T'",
5616 decl, t);
5620 TREE_PUBLIC (decl) = publicp;
5621 if (! publicp)
5623 DECL_INTERFACE_KNOWN (decl) = 1;
5624 DECL_NOT_REALLY_EXTERN (decl) = 1;
5627 /* If the declaration was declared inline, mark it as such. */
5628 if (inlinep)
5629 DECL_DECLARED_INLINE_P (decl) = 1;
5630 /* We inline functions that are explicitly declared inline, or, when
5631 the user explicitly asks us to, all functions. */
5632 if (DECL_DECLARED_INLINE_P (decl)
5633 || (flag_inline_trees == 2 && !DECL_INLINE (decl) && funcdef_flag))
5634 DECL_INLINE (decl) = 1;
5636 DECL_EXTERNAL (decl) = 1;
5637 if (quals != NULL_TREE && TREE_CODE (type) == FUNCTION_TYPE)
5639 error ("%smember function `%D' cannot have `%T' method qualifier",
5640 (ctype ? "static " : "non-"), decl, TREE_VALUE (quals));
5641 quals = NULL_TREE;
5644 if (IDENTIFIER_OPNAME_P (DECL_NAME (decl)))
5645 grok_op_properties (decl, friendp, /*complain=*/true);
5647 if (ctype && decl_function_context (decl))
5648 DECL_NO_STATIC_CHAIN (decl) = 1;
5650 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
5651 if (TREE_PURPOSE (t)
5652 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
5654 has_default_arg = 1;
5655 break;
5658 if (friendp
5659 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
5661 if (funcdef_flag)
5662 error
5663 ("defining explicit specialization `%D' in friend declaration",
5664 orig_declarator);
5665 else
5667 tree fns = TREE_OPERAND (orig_declarator, 0);
5668 tree args = TREE_OPERAND (orig_declarator, 1);
5670 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
5672 /* Something like `template <class T> friend void f<T>()'. */
5673 error ("invalid use of template-id `%D' in declaration of primary template",
5674 orig_declarator);
5675 return NULL_TREE;
5679 /* A friend declaration of the form friend void f<>(). Record
5680 the information in the TEMPLATE_ID_EXPR. */
5681 SET_DECL_IMPLICIT_INSTANTIATION (decl);
5683 if (TREE_CODE (fns) == COMPONENT_REF)
5685 /* Due to bison parser ickiness, we will have already looked
5686 up an operator_name or PFUNCNAME within the current class
5687 (see template_id in parse.y). If the current class contains
5688 such a name, we'll get a COMPONENT_REF here. Undo that. */
5690 my_friendly_assert (TREE_TYPE (TREE_OPERAND (fns, 0))
5691 == current_class_type, 20001120);
5692 fns = TREE_OPERAND (fns, 1);
5694 my_friendly_assert (TREE_CODE (fns) == IDENTIFIER_NODE
5695 || TREE_CODE (fns) == OVERLOAD, 20001120);
5696 DECL_TEMPLATE_INFO (decl) = tree_cons (fns, args, NULL_TREE);
5698 if (has_default_arg)
5700 error ("default arguments are not allowed in declaration of friend template specialization `%D'",
5701 decl);
5702 return NULL_TREE;
5705 if (inlinep)
5707 error ("`inline' is not allowed in declaration of friend template specialization `%D'",
5708 decl);
5709 return NULL_TREE;
5714 if (funcdef_flag)
5715 /* Make the init_value nonzero so pushdecl knows this is not
5716 tentative. error_mark_node is replaced later with the BLOCK. */
5717 DECL_INITIAL (decl) = error_mark_node;
5719 if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
5720 TREE_NOTHROW (decl) = 1;
5722 /* Caller will do the rest of this. */
5723 if (check < 0)
5724 return decl;
5726 if (flags == NO_SPECIAL && ctype && constructor_name_p (declarator, ctype))
5727 DECL_CONSTRUCTOR_P (decl) = 1;
5729 /* Function gets the ugly name, field gets the nice one. This call
5730 may change the type of the function (because of default
5731 parameters)! */
5732 if (ctype != NULL_TREE)
5733 grokclassfn (ctype, decl, flags, quals);
5735 decl = check_explicit_specialization (orig_declarator, decl,
5736 template_count,
5737 2 * (funcdef_flag != 0) +
5738 4 * (friendp != 0));
5739 if (decl == error_mark_node)
5740 return NULL_TREE;
5742 if (ctype != NULL_TREE
5743 && (! TYPE_FOR_JAVA (ctype) || check_java_method (decl))
5744 && check)
5746 tree old_decl;
5748 old_decl = check_classfn (ctype, decl,
5749 processing_template_decl
5750 > template_class_depth (ctype));
5752 if (old_decl && TREE_CODE (old_decl) == TEMPLATE_DECL)
5753 /* Because grokfndecl is always supposed to return a
5754 FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
5755 here. We depend on our callers to figure out that its
5756 really a template that's being returned. */
5757 old_decl = DECL_TEMPLATE_RESULT (old_decl);
5759 if (old_decl && DECL_STATIC_FUNCTION_P (old_decl)
5760 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
5761 /* Remove the `this' parm added by grokclassfn.
5762 XXX Isn't this done in start_function, too? */
5763 revert_static_member_fn (decl);
5764 if (old_decl && DECL_ARTIFICIAL (old_decl))
5765 error ("definition of implicitly-declared `%D'", old_decl);
5767 if (old_decl)
5769 tree ok;
5770 bool pop_p;
5772 /* Since we've smashed OLD_DECL to its
5773 DECL_TEMPLATE_RESULT, we must do the same to DECL. */
5774 if (TREE_CODE (decl) == TEMPLATE_DECL)
5775 decl = DECL_TEMPLATE_RESULT (decl);
5777 /* Attempt to merge the declarations. This can fail, in
5778 the case of some invalid specialization declarations. */
5779 pop_p = push_scope (ctype);
5780 ok = duplicate_decls (decl, old_decl);
5781 if (pop_p)
5782 pop_scope (ctype);
5783 if (!ok)
5785 error ("no `%#D' member function declared in class `%T'",
5786 decl, ctype);
5787 return NULL_TREE;
5789 return old_decl;
5793 if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
5794 return NULL_TREE;
5796 if (ctype == NULL_TREE || check)
5797 return decl;
5799 if (virtualp)
5800 DECL_VIRTUAL_P (decl) = 1;
5802 return decl;
5805 /* Create a VAR_DECL named NAME with the indicated TYPE.
5807 If SCOPE is non-NULL, it is the class type or namespace containing
5808 the variable. If SCOPE is NULL, the variable should is created in
5809 the innermost enclosings scope. */
5811 static tree
5812 grokvardecl (tree type,
5813 tree name,
5814 RID_BIT_TYPE * specbits_in,
5815 int initialized,
5816 int constp,
5817 tree scope)
5819 tree decl;
5820 RID_BIT_TYPE specbits;
5822 my_friendly_assert (!name || TREE_CODE (name) == IDENTIFIER_NODE,
5823 20020808);
5825 specbits = *specbits_in;
5827 /* Compute the scope in which to place the variable. */
5828 if (!scope)
5830 /* An explicit "extern" specifier indicates a namespace-scope
5831 variable. */
5832 if (RIDBIT_SETP (RID_EXTERN, specbits))
5833 scope = current_namespace;
5834 else if (!at_function_scope_p ())
5836 scope = current_scope ();
5837 if (!scope)
5838 scope = current_namespace;
5842 if (scope
5843 && (/* If the variable is a namespace-scope variable declared in a
5844 template, we need DECL_LANG_SPECIFIC. */
5845 (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
5846 /* Similarly for namespace-scope variables with language linkage
5847 other than C++. */
5848 || (TREE_CODE (scope) == NAMESPACE_DECL
5849 && current_lang_name != lang_name_cplusplus)
5850 /* Similarly for static data members. */
5851 || TYPE_P (scope)))
5852 decl = build_lang_decl (VAR_DECL, name, type);
5853 else
5854 decl = build_decl (VAR_DECL, name, type);
5856 if (scope && TREE_CODE (scope) == NAMESPACE_DECL)
5857 set_decl_namespace (decl, scope, 0);
5858 else
5859 DECL_CONTEXT (decl) = scope;
5861 if (name && scope && current_lang_name != lang_name_c)
5862 /* We can't mangle lazily here because we don't have any
5863 way to recover whether or not a variable was `extern
5864 "C"' later. */
5865 mangle_decl (decl);
5867 if (RIDBIT_SETP (RID_EXTERN, specbits))
5869 DECL_THIS_EXTERN (decl) = 1;
5870 DECL_EXTERNAL (decl) = !initialized;
5873 /* In class context, static means one per class,
5874 public access, and static storage. */
5875 if (DECL_CLASS_SCOPE_P (decl))
5877 TREE_PUBLIC (decl) = 1;
5878 TREE_STATIC (decl) = 1;
5879 DECL_EXTERNAL (decl) = 0;
5881 /* At top level, either `static' or no s.c. makes a definition
5882 (perhaps tentative), and absence of `static' makes it public. */
5883 else if (toplevel_bindings_p ())
5885 TREE_PUBLIC (decl) = (RIDBIT_NOTSETP (RID_STATIC, specbits)
5886 && (DECL_THIS_EXTERN (decl) || ! constp));
5887 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
5889 /* Not at top level, only `static' makes a static definition. */
5890 else
5892 TREE_STATIC (decl) = !! RIDBIT_SETP (RID_STATIC, specbits);
5893 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
5896 if (RIDBIT_SETP (RID_THREAD, specbits))
5898 if (targetm.have_tls)
5899 DECL_THREAD_LOCAL (decl) = 1;
5900 else
5901 /* A mere warning is sure to result in improper semantics
5902 at runtime. Don't bother to allow this to compile. */
5903 error ("thread-local storage not supported for this target");
5906 if (TREE_PUBLIC (decl))
5908 /* [basic.link]: A name with no linkage (notably, the name of a class
5909 or enumeration declared in a local scope) shall not be used to
5910 declare an entity with linkage.
5912 Only check this for public decls for now. */
5913 tree t = no_linkage_check (TREE_TYPE (decl));
5914 if (t)
5916 if (TYPE_ANONYMOUS_P (t))
5917 /* Ignore for now; `enum { foo } e' is pretty common. */;
5918 else
5919 pedwarn ("non-local variable `%#D' uses local type `%T'",
5920 decl, t);
5924 return decl;
5927 /* Create and return a canonical pointer to member function type, for
5928 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
5930 tree
5931 build_ptrmemfunc_type (tree type)
5933 tree field, fields;
5934 tree t;
5935 tree unqualified_variant = NULL_TREE;
5937 if (type == error_mark_node)
5938 return type;
5940 /* If a canonical type already exists for this type, use it. We use
5941 this method instead of type_hash_canon, because it only does a
5942 simple equality check on the list of field members. */
5944 if ((t = TYPE_GET_PTRMEMFUNC_TYPE (type)))
5945 return t;
5947 /* Make sure that we always have the unqualified pointer-to-member
5948 type first. */
5949 if (cp_type_quals (type) != TYPE_UNQUALIFIED)
5950 unqualified_variant
5951 = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
5953 t = make_aggr_type (RECORD_TYPE);
5954 /* Let the front-end know this is a pointer to member function... */
5955 TYPE_PTRMEMFUNC_FLAG (t) = 1;
5956 /* ... and not really an aggregate. */
5957 SET_IS_AGGR_TYPE (t, 0);
5959 field = build_decl (FIELD_DECL, pfn_identifier, type);
5960 fields = field;
5962 field = build_decl (FIELD_DECL, delta_identifier, delta_type_node);
5963 TREE_CHAIN (field) = fields;
5964 fields = field;
5966 finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
5968 /* Zap out the name so that the back-end will give us the debugging
5969 information for this anonymous RECORD_TYPE. */
5970 TYPE_NAME (t) = NULL_TREE;
5972 /* If this is not the unqualified form of this pointer-to-member
5973 type, set the TYPE_MAIN_VARIANT for this type to be the
5974 unqualified type. Since they are actually RECORD_TYPEs that are
5975 not variants of each other, we must do this manually. */
5976 if (cp_type_quals (type) != TYPE_UNQUALIFIED)
5978 t = build_qualified_type (t, cp_type_quals (type));
5979 TYPE_MAIN_VARIANT (t) = unqualified_variant;
5980 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (unqualified_variant);
5981 TYPE_NEXT_VARIANT (unqualified_variant) = t;
5984 /* Cache this pointer-to-member type so that we can find it again
5985 later. */
5986 TYPE_SET_PTRMEMFUNC_TYPE (type, t);
5988 return t;
5991 /* Create and return a pointer to data member type. */
5993 tree
5994 build_ptrmem_type (tree class_type, tree member_type)
5996 if (TREE_CODE (member_type) == METHOD_TYPE)
5998 tree arg_types;
6000 arg_types = TYPE_ARG_TYPES (member_type);
6001 class_type = (cp_build_qualified_type
6002 (class_type,
6003 cp_type_quals (TREE_TYPE (TREE_VALUE (arg_types)))));
6004 member_type
6005 = build_method_type_directly (class_type,
6006 TREE_TYPE (member_type),
6007 TREE_CHAIN (arg_types));
6008 return build_ptrmemfunc_type (build_pointer_type (member_type));
6010 else
6012 my_friendly_assert (TREE_CODE (member_type) != FUNCTION_TYPE,
6013 20030716);
6014 return build_offset_type (class_type, member_type);
6018 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
6019 Check to see that the definition is valid. Issue appropriate error
6020 messages. Return 1 if the definition is particularly bad, or 0
6021 otherwise. */
6024 check_static_variable_definition (tree decl, tree type)
6026 /* Motion 10 at San Diego: If a static const integral data member is
6027 initialized with an integral constant expression, the initializer
6028 may appear either in the declaration (within the class), or in
6029 the definition, but not both. If it appears in the class, the
6030 member is a member constant. The file-scope definition is always
6031 required. */
6032 if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
6034 error ("invalid in-class initialization of static data member of non-integral type `%T'",
6035 type);
6036 /* If we just return the declaration, crashes will sometimes
6037 occur. We therefore return void_type_node, as if this was a
6038 friend declaration, to cause callers to completely ignore
6039 this declaration. */
6040 return 1;
6042 else if (!CP_TYPE_CONST_P (type))
6043 error ("ISO C++ forbids in-class initialization of non-const static member `%D'",
6044 decl);
6045 else if (pedantic && !INTEGRAL_TYPE_P (type))
6046 pedwarn ("ISO C++ forbids initialization of member constant `%D' of non-integral type `%T'", decl, type);
6048 return 0;
6051 /* Given the SIZE (i.e., number of elements) in an array, compute an
6052 appropriate index type for the array. If non-NULL, NAME is the
6053 name of the thing being declared. */
6055 tree
6056 compute_array_index_type (tree name, tree size)
6058 tree type = TREE_TYPE (size);
6059 tree itype;
6061 /* The array bound must be an integer type. */
6062 if (!dependent_type_p (type) && !INTEGRAL_TYPE_P (type))
6064 if (name)
6065 error ("size of array `%D' has non-integral type `%T'", name, type);
6066 else
6067 error ("size of array has non-integral type `%T'", type);
6068 size = integer_one_node;
6069 type = TREE_TYPE (size);
6072 if (abi_version_at_least (2)
6073 /* We should only handle value dependent expressions specially. */
6074 ? value_dependent_expression_p (size)
6075 /* But for abi-1, we handled all instances in templates. This
6076 effects the manglings produced. */
6077 : processing_template_decl)
6078 return build_index_type (build_min (MINUS_EXPR, sizetype,
6079 size, integer_one_node));
6081 /* The size might be the result of a cast. */
6082 STRIP_TYPE_NOPS (size);
6084 /* It might be a const variable or enumeration constant. */
6085 size = decl_constant_value (size);
6087 /* Normally, the array-bound will be a constant. */
6088 if (TREE_CODE (size) == INTEGER_CST)
6090 /* Check to see if the array bound overflowed. Make that an
6091 error, no matter how generous we're being. */
6092 int old_flag_pedantic_errors = flag_pedantic_errors;
6093 int old_pedantic = pedantic;
6094 pedantic = flag_pedantic_errors = 1;
6095 constant_expression_warning (size);
6096 pedantic = old_pedantic;
6097 flag_pedantic_errors = old_flag_pedantic_errors;
6099 /* An array must have a positive number of elements. */
6100 if (INT_CST_LT (size, integer_zero_node))
6102 if (name)
6103 error ("size of array `%D' is negative", name);
6104 else
6105 error ("size of array is negative");
6106 size = integer_one_node;
6108 /* As an extension we allow zero-sized arrays. We always allow
6109 them in system headers because glibc uses them. */
6110 else if (integer_zerop (size) && pedantic && !in_system_header)
6112 if (name)
6113 pedwarn ("ISO C++ forbids zero-size array `%D'", name);
6114 else
6115 pedwarn ("ISO C++ forbids zero-size array");
6118 else if (TREE_CONSTANT (size))
6120 /* `(int) &fn' is not a valid array bound. */
6121 if (name)
6122 error ("size of array `%D' is not an integral constant-expression",
6123 name);
6124 else
6125 error ("size of array is not an integral constant-expression");
6127 else if (pedantic)
6129 if (name)
6130 pedwarn ("ISO C++ forbids variable-size array `%D'", name);
6131 else
6132 pedwarn ("ISO C++ forbids variable-size array");
6135 if (processing_template_decl && !TREE_CONSTANT (size))
6136 /* A variable sized array. */
6137 itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
6138 else
6140 /* Compute the index of the largest element in the array. It is
6141 one less than the number of elements in the array. */
6142 itype
6143 = fold (cp_build_binary_op (MINUS_EXPR,
6144 cp_convert (ssizetype, size),
6145 cp_convert (ssizetype, integer_one_node)));
6146 if (!TREE_CONSTANT (itype))
6147 /* A variable sized array. */
6148 itype = variable_size (itype);
6149 /* Make sure that there was no overflow when creating to a signed
6150 index type. (For example, on a 32-bit machine, an array with
6151 size 2^32 - 1 is too big.) */
6152 else if (TREE_OVERFLOW (itype))
6154 error ("overflow in array dimension");
6155 TREE_OVERFLOW (itype) = 0;
6159 /* Create and return the appropriate index type. */
6160 return build_index_type (itype);
6163 /* Returns the scope (if any) in which the entity declared by
6164 DECLARATOR will be located. If the entity was declared with an
6165 unqualified name, NULL_TREE is returned. */
6167 tree
6168 get_scope_of_declarator (tree declarator)
6170 if (!declarator)
6171 return NULL_TREE;
6173 switch (TREE_CODE (declarator))
6175 case CALL_EXPR:
6176 case ARRAY_REF:
6177 case INDIRECT_REF:
6178 case ADDR_EXPR:
6179 /* For any of these, the main declarator is the first operand. */
6180 return get_scope_of_declarator (TREE_OPERAND
6181 (declarator, 0));
6183 case SCOPE_REF:
6184 /* For a pointer-to-member, continue descending. */
6185 if (TREE_CODE (TREE_OPERAND (declarator, 1))
6186 == INDIRECT_REF)
6187 return get_scope_of_declarator (TREE_OPERAND
6188 (declarator, 1));
6189 /* Otherwise, if the declarator-id is a SCOPE_REF, the scope in
6190 which the declaration occurs is the first operand. */
6191 return TREE_OPERAND (declarator, 0);
6193 case TREE_LIST:
6194 /* Attributes to be applied. The declarator is TREE_VALUE. */
6195 return get_scope_of_declarator (TREE_VALUE (declarator));
6197 default:
6198 /* Otherwise, we have a declarator-id which is not a qualified
6199 name; the entity will be declared in the current scope. */
6200 return NULL_TREE;
6204 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
6205 indicated TYPE. If non-NULL, NAME is the NAME of the declaration
6206 with this type. */
6208 static tree
6209 create_array_type_for_decl (tree name, tree type, tree size)
6211 tree itype = NULL_TREE;
6212 const char* error_msg;
6214 /* If things have already gone awry, bail now. */
6215 if (type == error_mark_node || size == error_mark_node)
6216 return error_mark_node;
6218 /* Assume that everything will go OK. */
6219 error_msg = NULL;
6221 /* There are some types which cannot be array elements. */
6222 switch (TREE_CODE (type))
6224 case VOID_TYPE:
6225 error_msg = "array of void";
6226 break;
6228 case FUNCTION_TYPE:
6229 error_msg = "array of functions";
6230 break;
6232 case REFERENCE_TYPE:
6233 error_msg = "array of references";
6234 break;
6236 case METHOD_TYPE:
6237 error_msg = "array of function members";
6238 break;
6240 default:
6241 break;
6244 /* If something went wrong, issue an error-message and return. */
6245 if (error_msg)
6247 if (name)
6248 error ("declaration of `%D' as %s", name, error_msg);
6249 else
6250 error ("creating %s", error_msg);
6252 return error_mark_node;
6255 /* [dcl.array]
6257 The constant expressions that specify the bounds of the arrays
6258 can be omitted only for the first member of the sequence. */
6259 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
6261 if (name)
6262 error ("declaration of `%D' as multidimensional array must have bounds for all dimensions except the first",
6263 name);
6264 else
6265 error ("multidimensional array must have bounds for all dimensions except the first");
6267 return error_mark_node;
6270 /* Figure out the index type for the array. */
6271 if (size)
6272 itype = compute_array_index_type (name, size);
6274 return build_cplus_array_type (type, itype);
6277 /* Check that it's OK to declare a function with the indicated TYPE.
6278 SFK indicates the kind of special function (if any) that this
6279 function is. OPTYPE is the type given in a conversion operator
6280 declaration. Returns the actual return type of the function; that
6281 may be different than TYPE if an error occurs, or for certain
6282 special functions. */
6284 static tree
6285 check_special_function_return_type (special_function_kind sfk,
6286 tree type,
6287 tree optype)
6289 switch (sfk)
6291 case sfk_constructor:
6292 if (type)
6293 error ("return type specification for constructor invalid");
6295 type = void_type_node;
6296 break;
6298 case sfk_destructor:
6299 if (type)
6300 error ("return type specification for destructor invalid");
6301 type = void_type_node;
6302 break;
6304 case sfk_conversion:
6305 if (type && !same_type_p (type, optype))
6306 error ("operator `%T' declared to return `%T'", optype, type);
6307 else if (type)
6308 pedwarn ("return type specified for `operator %T'", optype);
6309 type = optype;
6310 break;
6312 default:
6313 abort ();
6314 break;
6317 return type;
6320 /* Given declspecs and a declarator (abstract or otherwise), determine
6321 the name and type of the object declared and construct a DECL node
6322 for it.
6324 DECLSPECS is a chain of tree_list nodes whose value fields
6325 are the storage classes and type specifiers.
6327 DECL_CONTEXT says which syntactic context this declaration is in:
6328 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
6329 FUNCDEF for a function definition. Like NORMAL but a few different
6330 error messages in each case. Return value may be zero meaning
6331 this definition is too screwy to try to parse.
6332 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
6333 handle member functions (which have FIELD context).
6334 Return value may be zero meaning this definition is too screwy to
6335 try to parse.
6336 PARM for a parameter declaration (either within a function prototype
6337 or before a function body). Make a PARM_DECL, or return void_type_node.
6338 CATCHPARM for a parameter declaration before a catch clause.
6339 TYPENAME if for a typename (in a cast or sizeof).
6340 Don't make a DECL node; just return the ..._TYPE node.
6341 FIELD for a struct or union field; make a FIELD_DECL.
6342 BITFIELD for a field with specified width.
6343 INITIALIZED is 1 if the decl has an initializer.
6345 ATTRLIST is a pointer to the list of attributes, which may be NULL
6346 if there are none; *ATTRLIST may be modified if attributes from inside
6347 the declarator should be applied to the declaration.
6349 When this function is called, scoping variables (such as
6350 CURRENT_CLASS_TYPE) should reflect the scope in which the
6351 declaration occurs, not the scope in which the new declaration will
6352 be placed. For example, on:
6354 void S::f() { ... }
6356 when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
6357 should not be `S'. */
6359 tree
6360 grokdeclarator (tree declarator,
6361 tree declspecs,
6362 enum decl_context decl_context,
6363 int initialized,
6364 tree* attrlist)
6366 RID_BIT_TYPE specbits;
6367 int nclasses = 0;
6368 tree spec;
6369 tree type = NULL_TREE;
6370 int longlong = 0;
6371 int type_quals;
6372 int virtualp, explicitp, friendp, inlinep, staticp;
6373 int explicit_int = 0;
6374 int explicit_char = 0;
6375 int defaulted_int = 0;
6376 int extern_langp = 0;
6377 tree dependant_name = NULL_TREE;
6379 tree typedef_decl = NULL_TREE;
6380 const char *name;
6381 tree typedef_type = NULL_TREE;
6382 int funcdef_flag = 0;
6383 enum tree_code innermost_code = ERROR_MARK;
6384 int bitfield = 0;
6385 #if 0
6386 /* See the code below that used this. */
6387 tree decl_attr = NULL_TREE;
6388 #endif
6390 /* Keep track of what sort of function is being processed
6391 so that we can warn about default return values, or explicit
6392 return values which do not match prescribed defaults. */
6393 special_function_kind sfk = sfk_none;
6395 tree dname = NULL_TREE;
6396 tree ctype = current_class_type;
6397 tree ctor_return_type = NULL_TREE;
6398 enum overload_flags flags = NO_SPECIAL;
6399 tree quals = NULL_TREE;
6400 tree raises = NULL_TREE;
6401 int template_count = 0;
6402 tree in_namespace = NULL_TREE;
6403 tree returned_attrs = NULL_TREE;
6404 tree scope = NULL_TREE;
6405 tree parms = NULL_TREE;
6407 RIDBIT_RESET_ALL (specbits);
6408 if (decl_context == FUNCDEF)
6409 funcdef_flag = 1, decl_context = NORMAL;
6410 else if (decl_context == MEMFUNCDEF)
6411 funcdef_flag = -1, decl_context = FIELD;
6412 else if (decl_context == BITFIELD)
6413 bitfield = 1, decl_context = FIELD;
6415 /* Look inside a declarator for the name being declared
6416 and get it as a string, for an error message. */
6418 tree *next = &declarator;
6419 tree decl;
6420 name = NULL;
6422 while (next && *next)
6424 decl = *next;
6425 switch (TREE_CODE (decl))
6427 case TREE_LIST:
6428 /* For attributes. */
6429 next = &TREE_VALUE (decl);
6430 break;
6432 case COND_EXPR:
6433 ctype = NULL_TREE;
6434 next = &TREE_OPERAND (decl, 0);
6435 break;
6437 case BIT_NOT_EXPR: /* For C++ destructors! */
6439 tree name = TREE_OPERAND (decl, 0);
6440 tree rename = NULL_TREE;
6442 my_friendly_assert (flags == NO_SPECIAL, 152);
6443 flags = DTOR_FLAG;
6444 sfk = sfk_destructor;
6445 if (TYPE_P (name))
6446 TREE_OPERAND (decl, 0) = name = constructor_name (name);
6447 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 153);
6448 if (ctype == NULL_TREE)
6450 if (current_class_type == NULL_TREE)
6452 error ("destructors must be member functions");
6453 flags = NO_SPECIAL;
6455 else
6457 tree t = constructor_name (current_class_type);
6458 if (t != name)
6459 rename = t;
6462 else
6464 tree t = constructor_name (ctype);
6465 if (t != name)
6466 rename = t;
6469 if (rename)
6471 error ("destructor `%T' must match class name `%T'",
6472 name, rename);
6473 TREE_OPERAND (decl, 0) = rename;
6475 next = &name;
6477 break;
6479 case ADDR_EXPR: /* C++ reference declaration */
6480 /* Fall through. */
6481 case ARRAY_REF:
6482 case INDIRECT_REF:
6483 ctype = NULL_TREE;
6484 innermost_code = TREE_CODE (decl);
6485 next = &TREE_OPERAND (decl, 0);
6486 break;
6488 case CALL_EXPR:
6489 innermost_code = TREE_CODE (decl);
6490 if (decl_context == FIELD && ctype == NULL_TREE)
6491 ctype = current_class_type;
6492 if (ctype
6493 && TREE_OPERAND (decl, 0)
6494 && (TREE_CODE (TREE_OPERAND (decl, 0)) == TYPE_DECL
6495 && constructor_name_p (DECL_NAME (TREE_OPERAND (decl, 0)),
6496 ctype)))
6497 TREE_OPERAND (decl, 0) = constructor_name (ctype);
6498 next = &TREE_OPERAND (decl, 0);
6499 decl = *next;
6500 if (ctype != NULL_TREE
6501 && decl != NULL_TREE && flags != DTOR_FLAG
6502 && constructor_name_p (decl, ctype))
6504 sfk = sfk_constructor;
6505 ctor_return_type = ctype;
6507 ctype = NULL_TREE;
6508 break;
6510 case TEMPLATE_ID_EXPR:
6512 tree fns = TREE_OPERAND (decl, 0);
6514 dname = fns;
6515 if (TREE_CODE (dname) == COMPONENT_REF)
6516 dname = TREE_OPERAND (dname, 1);
6517 if (TREE_CODE (dname) != IDENTIFIER_NODE)
6519 my_friendly_assert (is_overloaded_fn (dname),
6520 19990331);
6521 dname = DECL_NAME (get_first_fn (dname));
6524 /* Fall through. */
6526 case IDENTIFIER_NODE:
6527 if (TREE_CODE (decl) == IDENTIFIER_NODE)
6528 dname = decl;
6530 next = 0;
6532 if (C_IS_RESERVED_WORD (dname))
6534 error ("declarator-id missing; using reserved word `%D'",
6535 dname);
6536 name = IDENTIFIER_POINTER (dname);
6538 else if (!IDENTIFIER_TYPENAME_P (dname))
6539 name = IDENTIFIER_POINTER (dname);
6540 else
6542 my_friendly_assert (flags == NO_SPECIAL, 154);
6543 flags = TYPENAME_FLAG;
6544 ctor_return_type = TREE_TYPE (dname);
6545 sfk = sfk_conversion;
6546 if (is_typename_at_global_scope (dname))
6547 name = IDENTIFIER_POINTER (dname);
6548 else
6549 name = "<invalid operator>";
6551 break;
6553 /* C++ extension */
6554 case SCOPE_REF:
6556 /* Perform error checking, and decide on a ctype. */
6557 tree cname = TREE_OPERAND (decl, 0);
6558 if (cname == NULL_TREE)
6559 ctype = NULL_TREE;
6560 else if (TREE_CODE (cname) == NAMESPACE_DECL)
6562 ctype = NULL_TREE;
6563 in_namespace = TREE_OPERAND (decl, 0);
6565 else if (! is_aggr_type (cname, 1))
6566 ctype = NULL_TREE;
6567 /* Must test TREE_OPERAND (decl, 1), in case user gives
6568 us `typedef (class::memfunc)(int); memfunc *memfuncptr;' */
6569 else if (TREE_OPERAND (decl, 1)
6570 && TREE_CODE (TREE_OPERAND (decl, 1)) == INDIRECT_REF)
6571 ctype = cname;
6572 else if (TREE_CODE (cname) == TEMPLATE_TYPE_PARM
6573 || TREE_CODE (cname) == BOUND_TEMPLATE_TEMPLATE_PARM)
6575 /* This might be declaring a member of a template
6576 parm to be a friend. */
6577 ctype = cname;
6578 dependant_name = TREE_OPERAND (decl, 1);
6580 else if (ctype == NULL_TREE)
6581 ctype = cname;
6582 else if (TREE_COMPLEXITY (decl) == current_class_depth)
6584 else
6586 if (! UNIQUELY_DERIVED_FROM_P (cname, ctype))
6588 error ("type `%T' is not derived from type `%T'",
6589 cname, ctype);
6590 ctype = NULL_TREE;
6592 else
6593 ctype = cname;
6596 /* It is valid to write:
6598 class C { void f(); };
6599 typedef C D;
6600 void D::f();
6602 The standard is not clear about whether `typedef const C D' is
6603 legal; as of 2002-09-15 the committee is considering
6604 that question. EDG 3.0 allows that syntax.
6605 Therefore, we do as well. */
6606 if (ctype)
6607 ctype = TYPE_MAIN_VARIANT (ctype);
6608 /* Update the declarator so that when we process it
6609 again the correct type is present. */
6610 TREE_OPERAND (decl, 0) = ctype;
6612 if (ctype && TREE_CODE (TREE_OPERAND (decl, 1)) == TYPE_DECL
6613 && constructor_name_p (DECL_NAME (TREE_OPERAND (decl, 1)),
6614 ctype))
6615 TREE_OPERAND (decl, 1) = constructor_name (ctype);
6616 next = &TREE_OPERAND (decl, 1);
6617 decl = *next;
6618 if (ctype)
6620 tree name = decl;
6622 if (TREE_CODE (name) == BIT_NOT_EXPR)
6623 name = TREE_OPERAND (name, 0);
6625 if (!constructor_name_p (decl, ctype))
6627 else if (decl == name)
6629 sfk = sfk_constructor;
6630 ctor_return_type = ctype;
6632 else
6634 sfk = sfk_destructor;
6635 ctor_return_type = ctype;
6636 flags = DTOR_FLAG;
6637 TREE_OPERAND (decl, 0) = constructor_name (ctype);
6638 next = &TREE_OPERAND (decl, 0);
6642 break;
6644 case ERROR_MARK:
6645 next = 0;
6646 break;
6648 case TYPE_DECL:
6649 /* Parse error puts this typespec where
6650 a declarator should go. */
6651 error ("`%T' specified as declarator-id", DECL_NAME (decl));
6652 if (TREE_TYPE (decl) == current_class_type)
6653 error (" perhaps you want `%T' for a constructor",
6654 current_class_name);
6655 dname = DECL_NAME (decl);
6656 name = IDENTIFIER_POINTER (dname);
6658 /* Avoid giving two errors for this. */
6659 IDENTIFIER_CLASS_VALUE (dname) = NULL_TREE;
6661 declspecs = tree_cons (NULL_TREE, integer_type_node, declspecs);
6662 *next = dname;
6663 next = 0;
6664 break;
6666 case BASELINK:
6667 next = &BASELINK_FUNCTIONS (decl);
6668 break;
6670 case TEMPLATE_DECL:
6671 /* Sometimes, we see a template-name used as part of a
6672 decl-specifier like in
6673 std::allocator alloc;
6674 Handle that gracefully. */
6675 error ("invalid use of template-name '%E' in a declarator", decl);
6676 return error_mark_node;
6677 break;
6679 default:
6680 my_friendly_assert (0, 20020917);
6685 /* A function definition's declarator must have the form of
6686 a function declarator. */
6688 if (funcdef_flag && innermost_code != CALL_EXPR)
6689 return 0;
6691 if (((dname && IDENTIFIER_OPNAME_P (dname)) || flags == TYPENAME_FLAG)
6692 && innermost_code != CALL_EXPR
6693 && ! (ctype && declspecs == NULL_TREE))
6695 error ("declaration of `%D' as non-function", dname);
6696 return void_type_node;
6699 /* Anything declared one level down from the top level
6700 must be one of the parameters of a function
6701 (because the body is at least two levels down). */
6703 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
6704 by not allowing C++ class definitions to specify their parameters
6705 with xdecls (must be spec.d in the parmlist).
6707 Since we now wait to push a class scope until we are sure that
6708 we are in a legitimate method context, we must set oldcname
6709 explicitly (since current_class_name is not yet alive).
6711 We also want to avoid calling this a PARM if it is in a namespace. */
6713 if (decl_context == NORMAL && !toplevel_bindings_p ())
6715 struct cp_binding_level *b = current_binding_level;
6716 current_binding_level = b->level_chain;
6717 if (current_binding_level != 0 && toplevel_bindings_p ())
6718 decl_context = PARM;
6719 current_binding_level = b;
6722 if (name == NULL)
6723 name = decl_context == PARM ? "parameter" : "type name";
6725 /* Look through the decl specs and record which ones appear.
6726 Some typespecs are defined as built-in typenames.
6727 Others, the ones that are modifiers of other types,
6728 are represented by bits in SPECBITS: set the bits for
6729 the modifiers that appear. Storage class keywords are also in SPECBITS.
6731 If there is a typedef name or a type, store the type in TYPE.
6732 This includes builtin typedefs such as `int'.
6734 Set EXPLICIT_INT if the type is `int' or `char' and did not
6735 come from a user typedef.
6737 Set LONGLONG if `long' is mentioned twice.
6739 For C++, constructors and destructors have their own fast treatment. */
6741 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
6743 int i;
6744 tree id;
6746 /* Certain parse errors slip through. For example,
6747 `int class;' is not caught by the parser. Try
6748 weakly to recover here. */
6749 if (TREE_CODE (spec) != TREE_LIST)
6750 return 0;
6752 id = TREE_VALUE (spec);
6754 /* If the entire declaration is itself tagged as deprecated then
6755 suppress reports of deprecated items. */
6756 if (!adding_implicit_members && id && TREE_DEPRECATED (id))
6758 if (deprecated_state != DEPRECATED_SUPPRESS)
6759 warn_deprecated_use (id);
6762 if (TREE_CODE (id) == IDENTIFIER_NODE)
6764 if (id == ridpointers[(int) RID_INT]
6765 || id == ridpointers[(int) RID_CHAR]
6766 || id == ridpointers[(int) RID_BOOL]
6767 || id == ridpointers[(int) RID_WCHAR])
6769 if (type)
6771 if (id == ridpointers[(int) RID_BOOL])
6772 error ("`bool' is now a keyword");
6773 else
6774 error ("extraneous `%T' ignored", id);
6776 else
6778 if (id == ridpointers[(int) RID_INT])
6779 explicit_int = 1;
6780 else if (id == ridpointers[(int) RID_CHAR])
6781 explicit_char = 1;
6782 type = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (id));
6784 goto found;
6786 /* C++ aggregate types. */
6787 if (IDENTIFIER_HAS_TYPE_VALUE (id))
6789 if (type)
6790 error ("multiple declarations `%T' and `%T'", type, id);
6791 else
6792 type = IDENTIFIER_TYPE_VALUE (id);
6793 goto found;
6796 for (i = (int) RID_FIRST_MODIFIER; i <= (int) RID_LAST_MODIFIER; i++)
6798 if (ridpointers[i] == id)
6800 if (i == (int) RID_LONG && RIDBIT_SETP (i, specbits))
6802 if (pedantic && ! in_system_header && warn_long_long)
6803 pedwarn ("ISO C++ does not support `long long'");
6804 if (longlong)
6805 error ("`long long long' is too long for GCC");
6806 else
6807 longlong = 1;
6809 else if (RIDBIT_SETP (i, specbits))
6810 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
6812 /* Diagnose "__thread extern" or "__thread static". */
6813 if (RIDBIT_SETP (RID_THREAD, specbits))
6815 if (i == (int)RID_EXTERN)
6816 error ("`__thread' before `extern'");
6817 else if (i == (int)RID_STATIC)
6818 error ("`__thread' before `static'");
6821 if (i == (int)RID_EXTERN
6822 && TREE_PURPOSE (spec) == error_mark_node)
6823 /* This extern was part of a language linkage. */
6824 extern_langp = 1;
6826 RIDBIT_SET (i, specbits);
6827 goto found;
6831 else if (TREE_CODE (id) == TYPE_DECL)
6833 if (type)
6834 error ("multiple declarations `%T' and `%T'", type,
6835 TREE_TYPE (id));
6836 else
6838 type = TREE_TYPE (id);
6839 TREE_VALUE (spec) = type;
6840 typedef_decl = id;
6842 goto found;
6844 if (type)
6845 error ("two or more data types in declaration of `%s'", name);
6846 else if (TREE_CODE (id) == IDENTIFIER_NODE)
6848 tree t = lookup_name (id, 1);
6849 if (!t || TREE_CODE (t) != TYPE_DECL)
6850 error ("`%s' fails to be a typedef or built in type",
6851 IDENTIFIER_POINTER (id));
6852 else
6854 type = TREE_TYPE (t);
6855 typedef_decl = t;
6858 else if (id != error_mark_node)
6859 /* Can't change CLASS nodes into RECORD nodes here! */
6860 type = id;
6862 found: ;
6865 #if 0
6866 /* See the code below that used this. */
6867 if (typedef_decl)
6868 decl_attr = DECL_ATTRIBUTES (typedef_decl);
6869 #endif
6870 typedef_type = type;
6872 /* No type at all: default to `int', and set DEFAULTED_INT
6873 because it was not a user-defined typedef. */
6875 if (type == NULL_TREE
6876 && (RIDBIT_SETP (RID_SIGNED, specbits)
6877 || RIDBIT_SETP (RID_UNSIGNED, specbits)
6878 || RIDBIT_SETP (RID_LONG, specbits)
6879 || RIDBIT_SETP (RID_SHORT, specbits)))
6881 /* These imply 'int'. */
6882 type = integer_type_node;
6883 defaulted_int = 1;
6886 if (sfk != sfk_none)
6887 type = check_special_function_return_type (sfk, type,
6888 ctor_return_type);
6889 else if (type == NULL_TREE)
6891 int is_main;
6893 explicit_int = -1;
6895 /* We handle `main' specially here, because 'main () { }' is so
6896 common. With no options, it is allowed. With -Wreturn-type,
6897 it is a warning. It is only an error with -pedantic-errors. */
6898 is_main = (funcdef_flag
6899 && dname && MAIN_NAME_P (dname)
6900 && ctype == NULL_TREE
6901 && in_namespace == NULL_TREE
6902 && current_namespace == global_namespace);
6904 if (in_system_header || flag_ms_extensions)
6905 /* Allow it, sigh. */;
6906 else if (pedantic || ! is_main)
6907 pedwarn ("ISO C++ forbids declaration of `%s' with no type",
6908 name);
6909 else if (warn_return_type)
6910 warning ("ISO C++ forbids declaration of `%s' with no type",
6911 name);
6913 type = integer_type_node;
6916 ctype = NULL_TREE;
6918 /* Now process the modifiers that were specified
6919 and check for invalid combinations. */
6921 /* Long double is a special combination. */
6923 if (RIDBIT_SETP (RID_LONG, specbits)
6924 && TYPE_MAIN_VARIANT (type) == double_type_node)
6926 RIDBIT_RESET (RID_LONG, specbits);
6927 type = build_qualified_type (long_double_type_node,
6928 cp_type_quals (type));
6931 /* Check all other uses of type modifiers. */
6933 if (RIDBIT_SETP (RID_UNSIGNED, specbits)
6934 || RIDBIT_SETP (RID_SIGNED, specbits)
6935 || RIDBIT_SETP (RID_LONG, specbits)
6936 || RIDBIT_SETP (RID_SHORT, specbits))
6938 int ok = 0;
6940 if (TREE_CODE (type) == REAL_TYPE)
6941 error ("short, signed or unsigned invalid for `%s'", name);
6942 else if (TREE_CODE (type) != INTEGER_TYPE)
6943 error ("long, short, signed or unsigned invalid for `%s'", name);
6944 else if (RIDBIT_SETP (RID_LONG, specbits)
6945 && RIDBIT_SETP (RID_SHORT, specbits))
6946 error ("long and short specified together for `%s'", name);
6947 else if ((RIDBIT_SETP (RID_LONG, specbits)
6948 || RIDBIT_SETP (RID_SHORT, specbits))
6949 && explicit_char)
6950 error ("long or short specified with char for `%s'", name);
6951 else if ((RIDBIT_SETP (RID_LONG, specbits)
6952 || RIDBIT_SETP (RID_SHORT, specbits))
6953 && TREE_CODE (type) == REAL_TYPE)
6954 error ("long or short specified with floating type for `%s'", name);
6955 else if (RIDBIT_SETP (RID_SIGNED, specbits)
6956 && RIDBIT_SETP (RID_UNSIGNED, specbits))
6957 error ("signed and unsigned given together for `%s'", name);
6958 else
6960 ok = 1;
6961 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
6963 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
6964 name);
6965 if (flag_pedantic_errors)
6966 ok = 0;
6970 /* Discard the type modifiers if they are invalid. */
6971 if (! ok)
6973 RIDBIT_RESET (RID_UNSIGNED, specbits);
6974 RIDBIT_RESET (RID_SIGNED, specbits);
6975 RIDBIT_RESET (RID_LONG, specbits);
6976 RIDBIT_RESET (RID_SHORT, specbits);
6977 longlong = 0;
6981 if (RIDBIT_SETP (RID_COMPLEX, specbits)
6982 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
6984 error ("complex invalid for `%s'", name);
6985 RIDBIT_RESET (RID_COMPLEX, specbits);
6988 /* Decide whether an integer type is signed or not.
6989 Optionally treat bitfields as signed by default. */
6990 if (RIDBIT_SETP (RID_UNSIGNED, specbits)
6991 /* [class.bit]
6993 It is implementation-defined whether a plain (neither
6994 explicitly signed or unsigned) char, short, int, or long
6995 bit-field is signed or unsigned.
6997 Naturally, we extend this to long long as well. Note that
6998 this does not include wchar_t. */
6999 || (bitfield && !flag_signed_bitfields
7000 && RIDBIT_NOTSETP (RID_SIGNED, specbits)
7001 /* A typedef for plain `int' without `signed' can be
7002 controlled just like plain `int', but a typedef for
7003 `signed int' cannot be so controlled. */
7004 && !(typedef_decl
7005 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
7006 && (TREE_CODE (type) == INTEGER_TYPE
7007 || TREE_CODE (type) == CHAR_TYPE)
7008 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
7010 if (longlong)
7011 type = long_long_unsigned_type_node;
7012 else if (RIDBIT_SETP (RID_LONG, specbits))
7013 type = long_unsigned_type_node;
7014 else if (RIDBIT_SETP (RID_SHORT, specbits))
7015 type = short_unsigned_type_node;
7016 else if (type == char_type_node)
7017 type = unsigned_char_type_node;
7018 else if (typedef_decl)
7019 type = c_common_unsigned_type (type);
7020 else
7021 type = unsigned_type_node;
7023 else if (RIDBIT_SETP (RID_SIGNED, specbits)
7024 && type == char_type_node)
7025 type = signed_char_type_node;
7026 else if (longlong)
7027 type = long_long_integer_type_node;
7028 else if (RIDBIT_SETP (RID_LONG, specbits))
7029 type = long_integer_type_node;
7030 else if (RIDBIT_SETP (RID_SHORT, specbits))
7031 type = short_integer_type_node;
7033 if (RIDBIT_SETP (RID_COMPLEX, specbits))
7035 /* If we just have "complex", it is equivalent to
7036 "complex double", but if any modifiers at all are specified it is
7037 the complex form of TYPE. E.g, "complex short" is
7038 "complex short int". */
7040 if (defaulted_int && ! longlong
7041 && ! (RIDBIT_SETP (RID_LONG, specbits)
7042 || RIDBIT_SETP (RID_SHORT, specbits)
7043 || RIDBIT_SETP (RID_SIGNED, specbits)
7044 || RIDBIT_SETP (RID_UNSIGNED, specbits)))
7045 type = complex_double_type_node;
7046 else if (type == integer_type_node)
7047 type = complex_integer_type_node;
7048 else if (type == float_type_node)
7049 type = complex_float_type_node;
7050 else if (type == double_type_node)
7051 type = complex_double_type_node;
7052 else if (type == long_double_type_node)
7053 type = complex_long_double_type_node;
7054 else
7055 type = build_complex_type (type);
7058 type_quals = TYPE_UNQUALIFIED;
7059 if (RIDBIT_SETP (RID_CONST, specbits))
7060 type_quals |= TYPE_QUAL_CONST;
7061 if (RIDBIT_SETP (RID_VOLATILE, specbits))
7062 type_quals |= TYPE_QUAL_VOLATILE;
7063 if (RIDBIT_SETP (RID_RESTRICT, specbits))
7064 type_quals |= TYPE_QUAL_RESTRICT;
7065 if (sfk == sfk_conversion && type_quals != TYPE_UNQUALIFIED)
7066 error ("qualifiers are not allowed on declaration of `operator %T'",
7067 ctor_return_type);
7069 type_quals |= cp_type_quals (type);
7070 type = cp_build_qualified_type_real
7071 (type, type_quals, ((typedef_decl && !DECL_ARTIFICIAL (typedef_decl)
7072 ? tf_ignore_bad_quals : 0) | tf_error | tf_warning));
7073 /* We might have ignored or rejected some of the qualifiers. */
7074 type_quals = cp_type_quals (type);
7076 staticp = 0;
7077 inlinep = !! RIDBIT_SETP (RID_INLINE, specbits);
7078 virtualp = RIDBIT_SETP (RID_VIRTUAL, specbits);
7079 RIDBIT_RESET (RID_VIRTUAL, specbits);
7080 explicitp = RIDBIT_SETP (RID_EXPLICIT, specbits) != 0;
7081 RIDBIT_RESET (RID_EXPLICIT, specbits);
7083 if (RIDBIT_SETP (RID_STATIC, specbits))
7084 staticp = 1 + (decl_context == FIELD);
7086 if (virtualp && staticp == 2)
7088 error ("member `%D' cannot be declared both virtual and static",
7089 dname);
7090 staticp = 0;
7092 friendp = RIDBIT_SETP (RID_FRIEND, specbits);
7093 RIDBIT_RESET (RID_FRIEND, specbits);
7095 if (dependant_name && !friendp)
7097 error ("`%T::%D' is not a valid declarator", ctype, dependant_name);
7098 return void_type_node;
7101 /* Warn if two storage classes are given. Default to `auto'. */
7103 if (RIDBIT_ANY_SET (specbits))
7105 if (RIDBIT_SETP (RID_STATIC, specbits)) nclasses++;
7106 if (RIDBIT_SETP (RID_EXTERN, specbits) && !extern_langp) nclasses++;
7107 if (RIDBIT_SETP (RID_THREAD, specbits)) nclasses++;
7108 if (decl_context == PARM && nclasses > 0)
7109 error ("storage class specifiers invalid in parameter declarations");
7110 if (RIDBIT_SETP (RID_TYPEDEF, specbits))
7112 if (decl_context == PARM)
7113 error ("typedef declaration invalid in parameter declaration");
7114 nclasses++;
7116 if (RIDBIT_SETP (RID_AUTO, specbits)) nclasses++;
7117 if (RIDBIT_SETP (RID_REGISTER, specbits)) nclasses++;
7118 if (!nclasses && !friendp && extern_langp)
7119 nclasses++;
7122 /* Give error if `virtual' is used outside of class declaration. */
7123 if (virtualp
7124 && (current_class_name == NULL_TREE || decl_context != FIELD))
7126 error ("virtual outside class declaration");
7127 virtualp = 0;
7130 /* Static anonymous unions are dealt with here. */
7131 if (staticp && decl_context == TYPENAME
7132 && TREE_CODE (declspecs) == TREE_LIST
7133 && ANON_AGGR_TYPE_P (TREE_VALUE (declspecs)))
7134 decl_context = FIELD;
7136 /* Warn about storage classes that are invalid for certain
7137 kinds of declarations (parameters, typenames, etc.). */
7139 /* "static __thread" and "extern __thread" are allowed. */
7140 if (nclasses == 2
7141 && RIDBIT_SETP (RID_THREAD, specbits)
7142 && (RIDBIT_SETP (RID_EXTERN, specbits)
7143 || RIDBIT_SETP (RID_STATIC, specbits)))
7144 nclasses = 1;
7146 if (nclasses > 1)
7147 error ("multiple storage classes in declaration of `%s'", name);
7148 else if (decl_context != NORMAL && nclasses > 0)
7150 if ((decl_context == PARM || decl_context == CATCHPARM)
7151 && (RIDBIT_SETP (RID_REGISTER, specbits)
7152 || RIDBIT_SETP (RID_AUTO, specbits)))
7154 else if (RIDBIT_SETP (RID_TYPEDEF, specbits))
7156 else if (decl_context == FIELD
7157 /* C++ allows static class elements. */
7158 && RIDBIT_SETP (RID_STATIC, specbits))
7159 /* C++ also allows inlines and signed and unsigned elements,
7160 but in those cases we don't come in here. */
7162 else
7164 if (decl_context == FIELD)
7166 tree tmp = NULL_TREE;
7167 int op = 0;
7169 if (declarator)
7171 /* Avoid trying to get an operand off an identifier node. */
7172 if (TREE_CODE (declarator) == IDENTIFIER_NODE)
7173 tmp = declarator;
7174 else
7175 tmp = TREE_OPERAND (declarator, 0);
7176 op = IDENTIFIER_OPNAME_P (tmp);
7177 if (IDENTIFIER_TYPENAME_P (tmp))
7179 if (is_typename_at_global_scope (tmp))
7180 name = IDENTIFIER_POINTER (tmp);
7181 else
7182 name = "<invalid operator>";
7185 error ("storage class specified for %s `%s'",
7186 op ? "member operator" : "field",
7187 name);
7189 else
7191 if (decl_context == PARM || decl_context == CATCHPARM)
7192 error ("storage class specified for parameter `%s'", name);
7193 else
7194 error ("storage class specified for typename");
7196 RIDBIT_RESET (RID_REGISTER, specbits);
7197 RIDBIT_RESET (RID_AUTO, specbits);
7198 RIDBIT_RESET (RID_EXTERN, specbits);
7199 RIDBIT_RESET (RID_THREAD, specbits);
7202 else if (RIDBIT_SETP (RID_EXTERN, specbits) && initialized && !funcdef_flag)
7204 if (toplevel_bindings_p ())
7206 /* It's common practice (and completely valid) to have a const
7207 be initialized and declared extern. */
7208 if (!(type_quals & TYPE_QUAL_CONST))
7209 warning ("`%s' initialized and declared `extern'", name);
7211 else
7212 error ("`%s' has both `extern' and initializer", name);
7214 else if (RIDBIT_SETP (RID_EXTERN, specbits) && funcdef_flag
7215 && ! toplevel_bindings_p ())
7216 error ("nested function `%s' declared `extern'", name);
7217 else if (toplevel_bindings_p ())
7219 if (RIDBIT_SETP (RID_AUTO, specbits))
7220 error ("top-level declaration of `%s' specifies `auto'", name);
7222 else if (RIDBIT_SETP (RID_THREAD, specbits)
7223 && !RIDBIT_SETP (RID_EXTERN, specbits)
7224 && !RIDBIT_SETP (RID_STATIC, specbits))
7226 error ("function-scope `%s' implicitly auto and declared `__thread'",
7227 name);
7228 RIDBIT_RESET (RID_THREAD, specbits);
7231 if (nclasses > 0 && friendp)
7232 error ("storage class specifiers invalid in friend function declarations");
7234 scope = get_scope_of_declarator (declarator);
7236 /* Now figure out the structure of the declarator proper.
7237 Descend through it, creating more complex types, until we reach
7238 the declared identifier (or NULL_TREE, in an abstract declarator). */
7240 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE
7241 && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
7243 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
7244 an INDIRECT_REF (for *...),
7245 a CALL_EXPR (for ...(...)),
7246 an identifier (for the name being declared)
7247 or a null pointer (for the place in an absolute declarator
7248 where the name was omitted).
7249 For the last two cases, we have just exited the loop.
7251 For C++ it could also be
7252 a SCOPE_REF (for class :: ...). In this case, we have converted
7253 sensible names to types, and those are the values we use to
7254 qualify the member name.
7255 an ADDR_EXPR (for &...),
7256 a BIT_NOT_EXPR (for destructors)
7258 At this point, TYPE is the type of elements of an array,
7259 or for a function to return, or for a pointer to point to.
7260 After this sequence of ifs, TYPE is the type of the
7261 array or function or pointer, and DECLARATOR has had its
7262 outermost layer removed. */
7264 if (type == error_mark_node)
7266 if (declarator == error_mark_node)
7267 return error_mark_node;
7268 else if (TREE_CODE (declarator) == SCOPE_REF)
7269 declarator = TREE_OPERAND (declarator, 1);
7270 else
7271 declarator = TREE_OPERAND (declarator, 0);
7272 continue;
7274 if (quals != NULL_TREE
7275 && (declarator == NULL_TREE
7276 || TREE_CODE (declarator) != SCOPE_REF))
7278 if (ctype == NULL_TREE && TREE_CODE (type) == METHOD_TYPE)
7279 ctype = TYPE_METHOD_BASETYPE (type);
7280 if (ctype != NULL_TREE)
7282 tree dummy = build_decl (TYPE_DECL, NULL_TREE, type);
7283 grok_method_quals (ctype, dummy, quals);
7284 type = TREE_TYPE (dummy);
7285 quals = NULL_TREE;
7289 switch (TREE_CODE (declarator))
7291 case TREE_LIST:
7293 /* We encode a declarator with embedded attributes using
7294 a TREE_LIST. */
7295 tree attrs = TREE_PURPOSE (declarator);
7296 tree inner_decl;
7297 int attr_flags;
7299 declarator = TREE_VALUE (declarator);
7300 inner_decl = declarator;
7301 while (inner_decl != NULL_TREE
7302 && TREE_CODE (inner_decl) == TREE_LIST)
7303 inner_decl = TREE_VALUE (inner_decl);
7304 attr_flags = 0;
7305 if (inner_decl == NULL_TREE
7306 || TREE_CODE (inner_decl) == IDENTIFIER_NODE)
7307 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
7308 if (TREE_CODE (inner_decl) == CALL_EXPR)
7309 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
7310 if (TREE_CODE (inner_decl) == ARRAY_REF)
7311 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
7312 returned_attrs = decl_attributes (&type,
7313 chainon (returned_attrs, attrs),
7314 attr_flags);
7316 break;
7318 case ARRAY_REF:
7320 tree size = TREE_OPERAND (declarator, 1);
7321 declarator = TREE_OPERAND (declarator, 0);
7323 type = create_array_type_for_decl (dname, type, size);
7325 ctype = NULL_TREE;
7327 break;
7329 case CALL_EXPR:
7331 tree arg_types;
7332 int funcdecl_p;
7333 tree inner_parms = CALL_DECLARATOR_PARMS (declarator);
7334 tree inner_decl = TREE_OPERAND (declarator, 0);
7336 /* Declaring a function type.
7337 Make sure we have a valid type for the function to return. */
7339 /* We now know that the TYPE_QUALS don't apply to the
7340 decl, but to its return type. */
7341 type_quals = TYPE_UNQUALIFIED;
7343 /* Warn about some types functions can't return. */
7345 if (TREE_CODE (type) == FUNCTION_TYPE)
7347 error ("`%s' declared as function returning a function", name);
7348 type = integer_type_node;
7350 if (TREE_CODE (type) == ARRAY_TYPE)
7352 error ("`%s' declared as function returning an array", name);
7353 type = integer_type_node;
7356 if (inner_decl && TREE_CODE (inner_decl) == SCOPE_REF)
7357 inner_decl = TREE_OPERAND (inner_decl, 1);
7359 if (inner_decl && TREE_CODE (inner_decl) == TEMPLATE_ID_EXPR)
7360 inner_decl = dname;
7362 /* Pick up type qualifiers which should be applied to `this'. */
7363 quals = CALL_DECLARATOR_QUALS (declarator);
7365 /* Pick up the exception specifications. */
7366 raises = CALL_DECLARATOR_EXCEPTION_SPEC (declarator);
7368 /* Say it's a definition only for the CALL_EXPR
7369 closest to the identifier. */
7370 funcdecl_p
7371 = inner_decl
7372 && (TREE_CODE (inner_decl) == IDENTIFIER_NODE
7373 || TREE_CODE (inner_decl) == TEMPLATE_ID_EXPR
7374 || TREE_CODE (inner_decl) == BIT_NOT_EXPR);
7376 if (ctype == NULL_TREE
7377 && decl_context == FIELD
7378 && funcdecl_p
7379 && (friendp == 0 || dname == current_class_name))
7380 ctype = current_class_type;
7382 if (ctype && sfk == sfk_conversion)
7383 TYPE_HAS_CONVERSION (ctype) = 1;
7384 if (ctype && constructor_name_p (dname, ctype))
7386 /* We are within a class's scope. If our declarator name
7387 is the same as the class name, and we are defining
7388 a function, then it is a constructor/destructor, and
7389 therefore returns a void type. */
7391 if (flags == DTOR_FLAG)
7393 /* ISO C++ 12.4/2. A destructor may not be
7394 declared const or volatile. A destructor may
7395 not be static. */
7396 if (staticp == 2)
7397 error ("destructor cannot be static member function");
7398 if (quals)
7400 error ("destructors may not be `%s'",
7401 IDENTIFIER_POINTER (TREE_VALUE (quals)));
7402 quals = NULL_TREE;
7404 if (decl_context == FIELD)
7406 if (! member_function_or_else (ctype,
7407 current_class_type,
7408 flags))
7409 return void_type_node;
7412 else /* It's a constructor. */
7414 if (explicitp == 1)
7415 explicitp = 2;
7416 /* ISO C++ 12.1. A constructor may not be
7417 declared const or volatile. A constructor may
7418 not be virtual. A constructor may not be
7419 static. */
7420 if (staticp == 2)
7421 error ("constructor cannot be static member function");
7422 if (virtualp)
7424 pedwarn ("constructors cannot be declared virtual");
7425 virtualp = 0;
7427 if (quals)
7429 error ("constructors may not be `%s'",
7430 IDENTIFIER_POINTER (TREE_VALUE (quals)));
7431 quals = NULL_TREE;
7434 RID_BIT_TYPE tmp_bits;
7435 memcpy (&tmp_bits, &specbits, sizeof (RID_BIT_TYPE));
7436 RIDBIT_RESET (RID_INLINE, tmp_bits);
7437 RIDBIT_RESET (RID_STATIC, tmp_bits);
7438 if (RIDBIT_ANY_SET (tmp_bits))
7439 error ("return value type specifier for constructor ignored");
7441 if (decl_context == FIELD)
7443 if (! member_function_or_else (ctype,
7444 current_class_type,
7445 flags))
7446 return void_type_node;
7447 TYPE_HAS_CONSTRUCTOR (ctype) = 1;
7448 if (sfk != sfk_constructor)
7449 return NULL_TREE;
7452 if (decl_context == FIELD)
7453 staticp = 0;
7455 else if (friendp)
7457 if (initialized)
7458 error ("can't initialize friend function `%s'", name);
7459 if (virtualp)
7461 /* Cannot be both friend and virtual. */
7462 error ("virtual functions cannot be friends");
7463 RIDBIT_RESET (RID_FRIEND, specbits);
7464 friendp = 0;
7466 if (decl_context == NORMAL)
7467 error ("friend declaration not in class definition");
7468 if (current_function_decl && funcdef_flag)
7469 error ("can't define friend function `%s' in a local class definition",
7470 name);
7473 /* Construct the function type and go to the next
7474 inner layer of declarator. */
7476 declarator = TREE_OPERAND (declarator, 0);
7478 arg_types = grokparms (inner_parms, &parms);
7480 if (declarator && flags == DTOR_FLAG)
7482 /* A destructor declared in the body of a class will
7483 be represented as a BIT_NOT_EXPR. But, we just
7484 want the underlying IDENTIFIER. */
7485 if (TREE_CODE (declarator) == BIT_NOT_EXPR)
7486 declarator = TREE_OPERAND (declarator, 0);
7488 if (arg_types != void_list_node)
7490 error ("destructors may not have parameters");
7491 arg_types = void_list_node;
7492 parms = NULL_TREE;
7496 /* ANSI says that `const int foo ();'
7497 does not make the function foo const. */
7498 type = build_function_type (type, arg_types);
7500 break;
7502 case ADDR_EXPR:
7503 case INDIRECT_REF:
7504 /* Filter out pointers-to-references and references-to-references.
7505 We can get these if a TYPE_DECL is used. */
7507 if (TREE_CODE (type) == REFERENCE_TYPE)
7509 error (TREE_CODE (declarator) == ADDR_EXPR
7510 ? "cannot declare reference to `%#T'"
7511 : "cannot declare pointer to `%#T'", type);
7512 type = TREE_TYPE (type);
7514 else if (VOID_TYPE_P (type)
7515 && (ctype || TREE_CODE (declarator) == ADDR_EXPR))
7516 error (ctype ? "cannot declare pointer to `%#T' member"
7517 : "cannot declare reference to `%#T'", type);
7519 /* Merge any constancy or volatility into the target type
7520 for the pointer. */
7522 /* We now know that the TYPE_QUALS don't apply to the decl,
7523 but to the target of the pointer. */
7524 type_quals = TYPE_UNQUALIFIED;
7526 if (TREE_CODE (declarator) == ADDR_EXPR)
7528 if (!VOID_TYPE_P (type))
7529 type = build_reference_type (type);
7531 else if (TREE_CODE (type) == METHOD_TYPE)
7532 type = build_ptrmemfunc_type (build_pointer_type (type));
7533 else if (ctype)
7534 type = build_ptrmem_type (ctype, type);
7535 else
7536 type = build_pointer_type (type);
7538 /* Process a list of type modifier keywords (such as
7539 const or volatile) that were given inside the `*' or `&'. */
7541 if (TREE_TYPE (declarator))
7543 tree typemodlist;
7544 int erred = 0;
7545 int constp = 0;
7546 int volatilep = 0;
7547 int restrictp = 0;
7549 for (typemodlist = TREE_TYPE (declarator); typemodlist;
7550 typemodlist = TREE_CHAIN (typemodlist))
7552 tree qualifier = TREE_VALUE (typemodlist);
7554 if (qualifier == ridpointers[(int) RID_CONST])
7556 constp++;
7557 type_quals |= TYPE_QUAL_CONST;
7559 else if (qualifier == ridpointers[(int) RID_VOLATILE])
7561 volatilep++;
7562 type_quals |= TYPE_QUAL_VOLATILE;
7564 else if (qualifier == ridpointers[(int) RID_RESTRICT])
7566 restrictp++;
7567 type_quals |= TYPE_QUAL_RESTRICT;
7569 else if (!erred)
7571 erred = 1;
7572 error ("invalid type modifier within pointer declarator");
7575 if (constp > 1)
7576 pedwarn ("duplicate `const'");
7577 if (volatilep > 1)
7578 pedwarn ("duplicate `volatile'");
7579 if (restrictp > 1)
7580 pedwarn ("duplicate `restrict'");
7581 type = cp_build_qualified_type (type, type_quals);
7582 type_quals = cp_type_quals (type);
7584 declarator = TREE_OPERAND (declarator, 0);
7585 ctype = NULL_TREE;
7586 break;
7588 case SCOPE_REF:
7590 /* We have converted type names to NULL_TREE if the
7591 name was bogus, or to a _TYPE node, if not.
7593 The variable CTYPE holds the type we will ultimately
7594 resolve to. The code here just needs to build
7595 up appropriate member types. */
7596 tree sname = TREE_OPERAND (declarator, 1);
7597 tree t;
7599 /* Destructors can have their visibilities changed as well. */
7600 if (TREE_CODE (sname) == BIT_NOT_EXPR)
7601 sname = TREE_OPERAND (sname, 0);
7603 if (TREE_OPERAND (declarator, 0) == NULL_TREE)
7605 /* We had a reference to a global decl, or
7606 perhaps we were given a non-aggregate typedef,
7607 in which case we cleared this out, and should just
7608 keep going as though it wasn't there. */
7609 declarator = sname;
7610 continue;
7612 ctype = TREE_OPERAND (declarator, 0);
7614 t = ctype;
7615 while (t != NULL_TREE && CLASS_TYPE_P (t))
7617 /* You're supposed to have one `template <...>'
7618 for every template class, but you don't need one
7619 for a full specialization. For example:
7621 template <class T> struct S{};
7622 template <> struct S<int> { void f(); };
7623 void S<int>::f () {}
7625 is correct; there shouldn't be a `template <>' for
7626 the definition of `S<int>::f'. */
7627 if (CLASSTYPE_TEMPLATE_INFO (t)
7628 && (CLASSTYPE_TEMPLATE_INSTANTIATION (t)
7629 || uses_template_parms (CLASSTYPE_TI_ARGS (t)))
7630 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)))
7631 template_count += 1;
7633 t = TYPE_MAIN_DECL (t);
7634 t = DECL_CONTEXT (t);
7637 if (sname == NULL_TREE)
7638 goto done_scoping;
7640 if (TREE_CODE (sname) == IDENTIFIER_NODE)
7642 /* This is the `standard' use of the scoping operator:
7643 basetype :: member . */
7645 if (ctype == current_class_type)
7647 /* class A {
7648 void A::f ();
7651 Is this ill-formed? */
7653 if (pedantic)
7654 pedwarn ("extra qualification `%T::' on member `%s' ignored",
7655 ctype, name);
7657 else if (TREE_CODE (type) == FUNCTION_TYPE)
7659 if (NEW_DELETE_OPNAME_P (sname))
7660 /* Overloaded operator new and operator delete
7661 are always static functions. */
7663 else if (current_class_type == NULL_TREE || friendp)
7664 type
7665 = build_method_type_directly (ctype,
7666 TREE_TYPE (type),
7667 TYPE_ARG_TYPES (type));
7668 else
7670 error ("cannot declare member function `%T::%s' within `%T'",
7671 ctype, name, current_class_type);
7672 return error_mark_node;
7675 else if (RIDBIT_SETP (RID_TYPEDEF, specbits)
7676 || COMPLETE_TYPE_P (complete_type (ctype)))
7678 /* Have to move this code elsewhere in this function.
7679 this code is used for i.e., typedef int A::M; M *pm;
7681 It is? How? jason 10/2/94 */
7683 if (current_class_type)
7685 error ("cannot declare member `%T::%s' within `%T'",
7686 ctype, name, current_class_type);
7687 return void_type_node;
7690 else
7692 cxx_incomplete_type_error (NULL_TREE, ctype);
7693 return error_mark_node;
7696 declarator = sname;
7698 else if (TREE_CODE (sname) == SCOPE_REF)
7699 abort ();
7700 else
7702 done_scoping:
7703 declarator = TREE_OPERAND (declarator, 1);
7704 if (declarator && TREE_CODE (declarator) == CALL_EXPR)
7705 /* In this case, we will deal with it later. */
7707 else if (TREE_CODE (type) == FUNCTION_TYPE)
7708 type = build_method_type_directly (ctype,
7709 TREE_TYPE (type),
7710 TYPE_ARG_TYPES (type));
7713 break;
7715 case BIT_NOT_EXPR:
7716 declarator = TREE_OPERAND (declarator, 0);
7717 break;
7719 case BASELINK:
7720 declarator = BASELINK_FUNCTIONS (declarator);
7721 break;
7723 case RECORD_TYPE:
7724 case UNION_TYPE:
7725 case ENUMERAL_TYPE:
7726 declarator = NULL_TREE;
7727 break;
7729 case ERROR_MARK:
7730 declarator = NULL_TREE;
7731 break;
7733 default:
7734 abort ();
7738 if (returned_attrs)
7740 if (attrlist)
7741 *attrlist = chainon (returned_attrs, *attrlist);
7742 else
7743 attrlist = &returned_attrs;
7746 /* Now TYPE has the actual type. */
7748 /* Did array size calculations overflow? */
7750 if (TREE_CODE (type) == ARRAY_TYPE
7751 && COMPLETE_TYPE_P (type)
7752 && TREE_OVERFLOW (TYPE_SIZE (type)))
7754 error ("size of array `%s' is too large", name);
7755 /* If we proceed with the array type as it is, we'll eventually
7756 crash in tree_low_cst(). */
7757 type = error_mark_node;
7760 if ((decl_context == FIELD || decl_context == PARM)
7761 && !processing_template_decl
7762 && variably_modified_type_p (type))
7764 if (decl_context == FIELD)
7765 error ("data member may not have variably modified type `%T'", type);
7766 else
7767 error ("parameter may not have variably modified type `%T'", type);
7768 type = error_mark_node;
7771 if (explicitp == 1 || (explicitp && friendp))
7773 /* [dcl.fct.spec] The explicit specifier shall only be used in
7774 declarations of constructors within a class definition. */
7775 error ("only declarations of constructors can be `explicit'");
7776 explicitp = 0;
7779 if (RIDBIT_SETP (RID_MUTABLE, specbits))
7781 if (decl_context != FIELD || friendp)
7783 error ("non-member `%s' cannot be declared `mutable'", name);
7784 RIDBIT_RESET (RID_MUTABLE, specbits);
7786 else if (decl_context == TYPENAME || RIDBIT_SETP (RID_TYPEDEF, specbits))
7788 error ("non-object member `%s' cannot be declared `mutable'", name);
7789 RIDBIT_RESET (RID_MUTABLE, specbits);
7791 else if (TREE_CODE (type) == FUNCTION_TYPE
7792 || TREE_CODE (type) == METHOD_TYPE)
7794 error ("function `%s' cannot be declared `mutable'", name);
7795 RIDBIT_RESET (RID_MUTABLE, specbits);
7797 else if (staticp)
7799 error ("static `%s' cannot be declared `mutable'", name);
7800 RIDBIT_RESET (RID_MUTABLE, specbits);
7802 else if (type_quals & TYPE_QUAL_CONST)
7804 error ("const `%s' cannot be declared `mutable'", name);
7805 RIDBIT_RESET (RID_MUTABLE, specbits);
7809 if (declarator == NULL_TREE
7810 || TREE_CODE (declarator) == IDENTIFIER_NODE
7811 || (TREE_CODE (declarator) == TEMPLATE_ID_EXPR
7812 && (TREE_CODE (type) == FUNCTION_TYPE
7813 || TREE_CODE (type) == METHOD_TYPE)))
7814 /* OK */;
7815 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
7817 error ("template-id `%D' used as a declarator", declarator);
7818 declarator = dname;
7820 else
7821 /* Unexpected declarator format. */
7822 abort ();
7824 /* If this is declaring a typedef name, return a TYPE_DECL. */
7826 if (RIDBIT_SETP (RID_TYPEDEF, specbits) && decl_context != TYPENAME)
7828 tree decl;
7830 /* Note that the grammar rejects storage classes
7831 in typenames, fields or parameters. */
7832 if (current_lang_name == lang_name_java)
7833 TYPE_FOR_JAVA (type) = 1;
7835 if (decl_context == FIELD)
7837 if (constructor_name_p (declarator, current_class_type))
7838 pedwarn ("ISO C++ forbids nested type `%D' with same name as enclosing class",
7839 declarator);
7840 decl = build_lang_decl (TYPE_DECL, declarator, type);
7842 else
7844 decl = build_decl (TYPE_DECL, declarator, type);
7845 if (in_namespace || ctype)
7846 error ("%Jtypedef name may not be a nested-name-specifier", decl);
7847 if (!current_function_decl)
7848 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
7851 /* If the user declares "typedef struct {...} foo" then the
7852 struct will have an anonymous name. Fill that name in now.
7853 Nothing can refer to it, so nothing needs know about the name
7854 change. */
7855 if (type != error_mark_node
7856 && declarator
7857 && TYPE_NAME (type)
7858 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
7859 && TYPE_ANONYMOUS_P (type)
7860 /* Don't do this if there are attributes. */
7861 && (!attrlist || !*attrlist)
7862 && cp_type_quals (type) == TYPE_UNQUALIFIED)
7864 tree oldname = TYPE_NAME (type);
7865 tree t;
7867 /* Replace the anonymous name with the real name everywhere. */
7868 lookup_tag_reverse (type, declarator);
7869 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
7870 if (TYPE_NAME (t) == oldname)
7871 TYPE_NAME (t) = decl;
7873 if (TYPE_LANG_SPECIFIC (type))
7874 TYPE_WAS_ANONYMOUS (type) = 1;
7876 /* If this is a typedef within a template class, the nested
7877 type is a (non-primary) template. The name for the
7878 template needs updating as well. */
7879 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
7880 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
7881 = TYPE_IDENTIFIER (type);
7883 /* FIXME remangle member functions; member functions of a
7884 type with external linkage have external linkage. */
7887 if (quals)
7889 if (ctype == NULL_TREE)
7891 if (TREE_CODE (type) != METHOD_TYPE)
7892 error ("%Jinvalid type qualifier for non-member function type",
7893 decl);
7894 else
7895 ctype = TYPE_METHOD_BASETYPE (type);
7897 if (ctype != NULL_TREE)
7898 grok_method_quals (ctype, decl, quals);
7901 if (RIDBIT_SETP (RID_SIGNED, specbits)
7902 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
7903 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
7905 bad_specifiers (decl, "type", virtualp, quals != NULL_TREE,
7906 inlinep, friendp, raises != NULL_TREE);
7908 return decl;
7911 /* Detect the case of an array type of unspecified size
7912 which came, as such, direct from a typedef name.
7913 We must copy the type, so that the array's domain can be
7914 individually set by the object's initializer. */
7916 if (type && typedef_type
7917 && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
7918 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
7919 type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
7921 /* Detect where we're using a typedef of function type to declare a
7922 function. PARMS will not be set, so we must create it now. */
7924 if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
7926 tree decls = NULL_TREE;
7927 tree args;
7929 for (args = TYPE_ARG_TYPES (type); args; args = TREE_CHAIN (args))
7931 tree decl = cp_build_parm_decl (NULL_TREE, TREE_VALUE (args));
7933 TREE_CHAIN (decl) = decls;
7934 decls = decl;
7937 parms = nreverse (decls);
7940 /* If this is a type name (such as, in a cast or sizeof),
7941 compute the type and return it now. */
7943 if (decl_context == TYPENAME)
7945 /* Note that the grammar rejects storage classes
7946 in typenames, fields or parameters. */
7947 if (type_quals != TYPE_UNQUALIFIED)
7948 type_quals = TYPE_UNQUALIFIED;
7950 /* Special case: "friend class foo" looks like a TYPENAME context. */
7951 if (friendp)
7953 if (type_quals != TYPE_UNQUALIFIED)
7955 error ("type qualifiers specified for friend class declaration");
7956 type_quals = TYPE_UNQUALIFIED;
7958 if (inlinep)
7960 error ("`inline' specified for friend class declaration");
7961 inlinep = 0;
7964 if (!current_aggr)
7966 /* Don't allow friend declaration without a class-key. */
7967 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
7968 pedwarn ("template parameters cannot be friends");
7969 else if (TREE_CODE (type) == TYPENAME_TYPE)
7970 pedwarn ("friend declaration requires class-key, "
7971 "i.e. `friend class %T::%D'",
7972 TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
7973 else
7974 pedwarn ("friend declaration requires class-key, "
7975 "i.e. `friend %#T'",
7976 type);
7979 /* Only try to do this stuff if we didn't already give up. */
7980 if (type != integer_type_node)
7982 /* A friendly class? */
7983 if (current_class_type)
7984 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
7985 /*complain=*/true);
7986 else
7987 error ("trying to make class `%T' a friend of global scope",
7988 type);
7990 type = void_type_node;
7993 else if (quals)
7995 if (ctype == NULL_TREE)
7997 if (TREE_CODE (type) != METHOD_TYPE)
7998 error ("invalid qualifiers on non-member function type");
7999 else
8000 ctype = TYPE_METHOD_BASETYPE (type);
8002 if (ctype)
8004 tree dummy = build_decl (TYPE_DECL, declarator, type);
8005 grok_method_quals (ctype, dummy, quals);
8006 type = TREE_TYPE (dummy);
8010 return type;
8012 else if (declarator == NULL_TREE && decl_context != PARM
8013 && decl_context != CATCHPARM
8014 && TREE_CODE (type) != UNION_TYPE
8015 && ! bitfield)
8017 error ("abstract declarator `%T' used as declaration", type);
8018 declarator = make_anon_name ();
8021 /* `void' at top level (not within pointer)
8022 is allowed only in typedefs or type names.
8023 We don't complain about parms either, but that is because
8024 a better error message can be made later. */
8026 if (TREE_CODE (type) == VOID_TYPE && decl_context != PARM)
8028 if (! declarator)
8029 error ("unnamed variable or field declared void");
8030 else if (TREE_CODE (declarator) == IDENTIFIER_NODE)
8032 if (IDENTIFIER_OPNAME_P (declarator))
8033 abort ();
8034 else
8035 error ("variable or field `%s' declared void", name);
8037 else
8038 error ("variable or field declared void");
8039 type = integer_type_node;
8042 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
8043 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
8045 if (decl_context == PARM || decl_context == CATCHPARM)
8047 if (ctype || in_namespace)
8048 error ("cannot use `::' in parameter declaration");
8050 /* A parameter declared as an array of T is really a pointer to T.
8051 One declared as a function is really a pointer to a function.
8052 One declared as a member is really a pointer to member. */
8054 if (TREE_CODE (type) == ARRAY_TYPE)
8056 /* Transfer const-ness of array into that of type pointed to. */
8057 type = build_pointer_type (TREE_TYPE (type));
8058 type_quals = TYPE_UNQUALIFIED;
8060 else if (TREE_CODE (type) == FUNCTION_TYPE)
8061 type = build_pointer_type (type);
8065 tree decl;
8067 if (decl_context == PARM)
8069 decl = cp_build_parm_decl (declarator, type);
8071 bad_specifiers (decl, "parameter", virtualp, quals != NULL_TREE,
8072 inlinep, friendp, raises != NULL_TREE);
8074 else if (decl_context == FIELD)
8076 /* The C99 flexible array extension. */
8077 if (!staticp && TREE_CODE (type) == ARRAY_TYPE
8078 && TYPE_DOMAIN (type) == NULL_TREE)
8080 tree itype = compute_array_index_type (dname, integer_zero_node);
8081 type = build_cplus_array_type (TREE_TYPE (type), itype);
8084 if (type == error_mark_node)
8086 /* Happens when declaring arrays of sizes which
8087 are error_mark_node, for example. */
8088 decl = NULL_TREE;
8090 else if (in_namespace && !friendp)
8092 /* Something like struct S { int N::j; }; */
8093 error ("invalid use of `::'");
8094 decl = NULL_TREE;
8096 else if (TREE_CODE (type) == FUNCTION_TYPE)
8098 int publicp = 0;
8099 tree function_context;
8101 /* We catch the others as conflicts with the builtin
8102 typedefs. */
8103 if (friendp && declarator == ridpointers[(int) RID_SIGNED])
8105 error ("function `%D' cannot be declared friend",
8106 declarator);
8107 friendp = 0;
8110 if (friendp == 0)
8112 if (ctype == NULL_TREE)
8113 ctype = current_class_type;
8115 if (ctype == NULL_TREE)
8117 error ("can't make `%D' into a method -- not in a class",
8118 declarator);
8119 return void_type_node;
8122 /* ``A union may [ ... ] not [ have ] virtual functions.''
8123 ARM 9.5 */
8124 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
8126 error ("function `%D' declared virtual inside a union",
8127 declarator);
8128 return void_type_node;
8131 if (NEW_DELETE_OPNAME_P (declarator))
8133 if (virtualp)
8135 error ("`%D' cannot be declared virtual, since it is always static",
8136 declarator);
8137 virtualp = 0;
8140 else if (staticp < 2)
8141 type = build_method_type_directly (ctype,
8142 TREE_TYPE (type),
8143 TYPE_ARG_TYPES (type));
8146 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
8147 function_context = (ctype != NULL_TREE) ?
8148 decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
8149 publicp = (! friendp || ! staticp)
8150 && function_context == NULL_TREE;
8151 decl = grokfndecl (ctype, type,
8152 TREE_CODE (declarator) != TEMPLATE_ID_EXPR
8153 ? declarator : dname,
8154 parms,
8155 declarator,
8156 virtualp, flags, quals, raises,
8157 friendp ? -1 : 0, friendp, publicp, inlinep,
8158 funcdef_flag, template_count, in_namespace);
8159 if (decl == NULL_TREE)
8160 return decl;
8161 #if 0
8162 /* This clobbers the attrs stored in `decl' from `attrlist'. */
8163 /* The decl and setting of decl_attr is also turned off. */
8164 decl = build_decl_attribute_variant (decl, decl_attr);
8165 #endif
8167 /* [class.conv.ctor]
8169 A constructor declared without the function-specifier
8170 explicit that can be called with a single parameter
8171 specifies a conversion from the type of its first
8172 parameter to the type of its class. Such a constructor
8173 is called a converting constructor. */
8174 if (explicitp == 2)
8175 DECL_NONCONVERTING_P (decl) = 1;
8176 else if (DECL_CONSTRUCTOR_P (decl))
8178 /* The constructor can be called with exactly one
8179 parameter if there is at least one parameter, and
8180 any subsequent parameters have default arguments.
8181 Ignore any compiler-added parms. */
8182 tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (decl);
8184 if (arg_types == void_list_node
8185 || (arg_types
8186 && TREE_CHAIN (arg_types)
8187 && TREE_CHAIN (arg_types) != void_list_node
8188 && !TREE_PURPOSE (TREE_CHAIN (arg_types))))
8189 DECL_NONCONVERTING_P (decl) = 1;
8192 else if (TREE_CODE (type) == METHOD_TYPE)
8194 /* We only get here for friend declarations of
8195 members of other classes. */
8196 /* All method decls are public, so tell grokfndecl to set
8197 TREE_PUBLIC, also. */
8198 decl = grokfndecl (ctype, type,
8199 TREE_CODE (declarator) != TEMPLATE_ID_EXPR
8200 ? declarator : dname,
8201 parms,
8202 declarator,
8203 virtualp, flags, quals, raises,
8204 friendp ? -1 : 0, friendp, 1, 0, funcdef_flag,
8205 template_count, in_namespace);
8206 if (decl == NULL_TREE)
8207 return NULL_TREE;
8209 else if (!staticp && !dependent_type_p (type)
8210 && !COMPLETE_TYPE_P (complete_type (type))
8211 && (TREE_CODE (type) != ARRAY_TYPE || initialized == 0))
8213 if (declarator)
8214 error ("field `%D' has incomplete type", declarator);
8215 else
8216 error ("name `%T' has incomplete type", type);
8218 /* If we're instantiating a template, tell them which
8219 instantiation made the field's type be incomplete. */
8220 if (current_class_type
8221 && TYPE_NAME (current_class_type)
8222 && IDENTIFIER_TEMPLATE (TYPE_IDENTIFIER (current_class_type))
8223 && declspecs && TREE_VALUE (declspecs)
8224 && TREE_TYPE (TREE_VALUE (declspecs)) == type)
8225 error (" in instantiation of template `%T'",
8226 current_class_type);
8228 type = error_mark_node;
8229 decl = NULL_TREE;
8231 else
8233 if (friendp)
8235 error ("`%s' is neither function nor member function; cannot be declared friend",
8236 IDENTIFIER_POINTER (declarator));
8237 friendp = 0;
8239 decl = NULL_TREE;
8242 if (friendp)
8244 /* Friends are treated specially. */
8245 if (ctype == current_class_type)
8246 warning ("member functions are implicitly friends of their class");
8247 else if (decl && DECL_NAME (decl))
8249 if (template_class_depth (current_class_type) == 0)
8251 decl = check_explicit_specialization
8252 (declarator, decl, template_count,
8253 2 * (funcdef_flag != 0) + 4);
8254 if (decl == error_mark_node)
8255 return error_mark_node;
8258 decl = do_friend (ctype, declarator, decl,
8259 *attrlist, flags, quals, funcdef_flag);
8260 return decl;
8262 else
8263 return void_type_node;
8266 /* Structure field. It may not be a function, except for C++. */
8268 if (decl == NULL_TREE)
8270 if (initialized)
8272 if (!staticp)
8274 /* An attempt is being made to initialize a non-static
8275 member. But, from [class.mem]:
8277 4 A member-declarator can contain a
8278 constant-initializer only if it declares a static
8279 member (_class.static_) of integral or enumeration
8280 type, see _class.static.data_.
8282 This used to be relatively common practice, but
8283 the rest of the compiler does not correctly
8284 handle the initialization unless the member is
8285 static so we make it static below. */
8286 pedwarn ("ISO C++ forbids initialization of member `%D'",
8287 declarator);
8288 pedwarn ("making `%D' static", declarator);
8289 staticp = 1;
8292 if (uses_template_parms (type))
8293 /* We'll check at instantiation time. */
8295 else if (check_static_variable_definition (declarator,
8296 type))
8297 /* If we just return the declaration, crashes
8298 will sometimes occur. We therefore return
8299 void_type_node, as if this was a friend
8300 declaration, to cause callers to completely
8301 ignore this declaration. */
8302 return void_type_node;
8305 if (staticp)
8307 /* C++ allows static class members. All other work
8308 for this is done by grokfield. */
8309 decl = build_lang_decl (VAR_DECL, declarator, type);
8310 TREE_STATIC (decl) = 1;
8311 /* In class context, 'static' means public access. */
8312 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl) = 1;
8314 else
8316 decl = build_decl (FIELD_DECL, declarator, type);
8317 DECL_NONADDRESSABLE_P (decl) = bitfield;
8318 if (RIDBIT_SETP (RID_MUTABLE, specbits))
8320 DECL_MUTABLE_P (decl) = 1;
8321 RIDBIT_RESET (RID_MUTABLE, specbits);
8325 bad_specifiers (decl, "field", virtualp, quals != NULL_TREE,
8326 inlinep, friendp, raises != NULL_TREE);
8329 else if (TREE_CODE (type) == FUNCTION_TYPE
8330 || TREE_CODE (type) == METHOD_TYPE)
8332 tree original_name;
8333 int publicp = 0;
8335 if (! declarator)
8336 return NULL_TREE;
8338 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
8339 original_name = dname;
8340 else
8341 original_name = declarator;
8343 if (RIDBIT_SETP (RID_AUTO, specbits))
8344 error ("storage class `auto' invalid for function `%s'", name);
8345 else if (RIDBIT_SETP (RID_REGISTER, specbits))
8346 error ("storage class `register' invalid for function `%s'", name);
8347 else if (RIDBIT_SETP (RID_THREAD, specbits))
8348 error ("storage class `__thread' invalid for function `%s'", name);
8350 /* Function declaration not at top level.
8351 Storage classes other than `extern' are not allowed
8352 and `extern' makes no difference. */
8353 if (! toplevel_bindings_p ()
8354 && (RIDBIT_SETP (RID_STATIC, specbits)
8355 || RIDBIT_SETP (RID_INLINE, specbits))
8356 && pedantic)
8358 if (RIDBIT_SETP (RID_STATIC, specbits))
8359 pedwarn ("storage class `static' invalid for function `%s' declared out of global scope", name);
8360 else
8361 pedwarn ("storage class `inline' invalid for function `%s' declared out of global scope", name);
8364 if (ctype == NULL_TREE)
8366 if (virtualp)
8368 error ("virtual non-class function `%s'", name);
8369 virtualp = 0;
8372 else if (TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
8373 && !NEW_DELETE_OPNAME_P (original_name))
8374 type = build_method_type_directly (ctype,
8375 TREE_TYPE (type),
8376 TYPE_ARG_TYPES (type));
8378 /* Record presence of `static'. */
8379 publicp = (ctype != NULL_TREE
8380 || RIDBIT_SETP (RID_EXTERN, specbits)
8381 || !RIDBIT_SETP (RID_STATIC, specbits));
8383 decl = grokfndecl (ctype, type, original_name, parms, declarator,
8384 virtualp, flags, quals, raises,
8385 1, friendp,
8386 publicp, inlinep, funcdef_flag,
8387 template_count, in_namespace);
8388 if (decl == NULL_TREE)
8389 return NULL_TREE;
8391 if (staticp == 1)
8393 int invalid_static = 0;
8395 /* Don't allow a static member function in a class, and forbid
8396 declaring main to be static. */
8397 if (TREE_CODE (type) == METHOD_TYPE)
8399 pedwarn ("cannot declare member function `%D' to have static linkage", decl);
8400 invalid_static = 1;
8402 else if (current_function_decl)
8404 /* FIXME need arm citation */
8405 error ("cannot declare static function inside another function");
8406 invalid_static = 1;
8409 if (invalid_static)
8411 staticp = 0;
8412 RIDBIT_RESET (RID_STATIC, specbits);
8416 else
8418 /* It's a variable. */
8420 /* An uninitialized decl with `extern' is a reference. */
8421 decl = grokvardecl (type, declarator, &specbits,
8422 initialized,
8423 (type_quals & TYPE_QUAL_CONST) != 0,
8424 ctype ? ctype : in_namespace);
8425 bad_specifiers (decl, "variable", virtualp, quals != NULL_TREE,
8426 inlinep, friendp, raises != NULL_TREE);
8428 if (ctype)
8430 DECL_CONTEXT (decl) = ctype;
8431 if (staticp == 1)
8433 pedwarn ("`static' may not be used when defining (as opposed to declaring) a static data member");
8434 staticp = 0;
8435 RIDBIT_RESET (RID_STATIC, specbits);
8437 if (RIDBIT_SETP (RID_REGISTER, specbits) && TREE_STATIC (decl))
8439 error ("static member `%D' declared `register'", decl);
8440 RIDBIT_RESET (RID_REGISTER, specbits);
8442 if (RIDBIT_SETP (RID_EXTERN, specbits) && pedantic)
8444 pedwarn ("cannot explicitly declare member `%#D' to have extern linkage",
8445 decl);
8446 RIDBIT_RESET (RID_EXTERN, specbits);
8451 my_friendly_assert (!RIDBIT_SETP (RID_MUTABLE, specbits), 19990927);
8453 /* Record `register' declaration for warnings on &
8454 and in case doing stupid register allocation. */
8456 if (RIDBIT_SETP (RID_REGISTER, specbits))
8457 DECL_REGISTER (decl) = 1;
8459 if (RIDBIT_SETP (RID_EXTERN, specbits))
8460 DECL_THIS_EXTERN (decl) = 1;
8462 if (RIDBIT_SETP (RID_STATIC, specbits))
8463 DECL_THIS_STATIC (decl) = 1;
8465 /* Record constancy and volatility. There's no need to do this
8466 when processing a template; we'll do this for the instantiated
8467 declaration based on the type of DECL. */
8468 if (!processing_template_decl)
8469 c_apply_type_quals_to_decl (type_quals, decl);
8471 return decl;
8475 /* Subroutine of start_function. Ensure that each of the parameter
8476 types (as listed in PARMS) is complete, as is required for a
8477 function definition. */
8479 static void
8480 require_complete_types_for_parms (tree parms)
8482 for (; parms; parms = TREE_CHAIN (parms))
8484 if (VOID_TYPE_P (TREE_TYPE (parms)))
8485 /* grokparms will have already issued an error. */
8486 TREE_TYPE (parms) = error_mark_node;
8487 else if (complete_type_or_else (TREE_TYPE (parms), parms))
8489 layout_decl (parms, 0);
8490 DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
8495 /* Returns nonzero if T is a local variable. */
8498 local_variable_p (tree t)
8500 if ((TREE_CODE (t) == VAR_DECL
8501 /* A VAR_DECL with a context that is a _TYPE is a static data
8502 member. */
8503 && !TYPE_P (CP_DECL_CONTEXT (t))
8504 /* Any other non-local variable must be at namespace scope. */
8505 && !DECL_NAMESPACE_SCOPE_P (t))
8506 || (TREE_CODE (t) == PARM_DECL))
8507 return 1;
8509 return 0;
8512 /* Returns nonzero if T is an automatic local variable or a label.
8513 (These are the declarations that need to be remapped when the code
8514 containing them is duplicated.) */
8517 nonstatic_local_decl_p (tree t)
8519 return ((local_variable_p (t) && !TREE_STATIC (t))
8520 || TREE_CODE (t) == LABEL_DECL
8521 || TREE_CODE (t) == RESULT_DECL);
8524 /* Like local_variable_p, but suitable for use as a tree-walking
8525 function. */
8527 static tree
8528 local_variable_p_walkfn (tree* tp,
8529 int* walk_subtrees ATTRIBUTE_UNUSED ,
8530 void* data ATTRIBUTE_UNUSED )
8532 return ((local_variable_p (*tp) && !DECL_ARTIFICIAL (*tp))
8533 ? *tp : NULL_TREE);
8536 /* Check that ARG, which is a default-argument expression for a
8537 parameter DECL, is valid. Returns ARG, or ERROR_MARK_NODE, if
8538 something goes wrong. DECL may also be a _TYPE node, rather than a
8539 DECL, if there is no DECL available. */
8541 tree
8542 check_default_argument (tree decl, tree arg)
8544 tree var;
8545 tree decl_type;
8547 if (TREE_CODE (arg) == DEFAULT_ARG)
8548 /* We get a DEFAULT_ARG when looking at an in-class declaration
8549 with a default argument. Ignore the argument for now; we'll
8550 deal with it after the class is complete. */
8551 return arg;
8553 if (processing_template_decl || uses_template_parms (arg))
8554 /* We don't do anything checking until instantiation-time. Note
8555 that there may be uninstantiated arguments even for an
8556 instantiated function, since default arguments are not
8557 instantiated until they are needed. */
8558 return arg;
8560 if (TYPE_P (decl))
8562 decl_type = decl;
8563 decl = NULL_TREE;
8565 else
8566 decl_type = TREE_TYPE (decl);
8568 if (arg == error_mark_node
8569 || decl == error_mark_node
8570 || TREE_TYPE (arg) == error_mark_node
8571 || decl_type == error_mark_node)
8572 /* Something already went wrong. There's no need to check
8573 further. */
8574 return error_mark_node;
8576 /* [dcl.fct.default]
8578 A default argument expression is implicitly converted to the
8579 parameter type. */
8580 if (!TREE_TYPE (arg)
8581 || !can_convert_arg (decl_type, TREE_TYPE (arg), arg))
8583 if (decl)
8584 error ("default argument for `%#D' has type `%T'",
8585 decl, TREE_TYPE (arg));
8586 else
8587 error ("default argument for parameter of type `%T' has type `%T'",
8588 decl_type, TREE_TYPE (arg));
8590 return error_mark_node;
8593 /* [dcl.fct.default]
8595 Local variables shall not be used in default argument
8596 expressions.
8598 The keyword `this' shall not be used in a default argument of a
8599 member function. */
8600 var = walk_tree_without_duplicates (&arg, local_variable_p_walkfn,
8601 NULL);
8602 if (var)
8604 error ("default argument `%E' uses local variable `%D'",
8605 arg, var);
8606 return error_mark_node;
8609 /* All is well. */
8610 return arg;
8613 /* Decode the list of parameter types for a function type.
8614 Given the list of things declared inside the parens,
8615 return a list of types.
8617 We determine whether ellipsis parms are used by PARMLIST_ELLIPSIS_P
8618 flag. If unset, we append void_list_node. A parmlist declared
8619 as `(void)' is accepted as the empty parmlist.
8621 *PARMS is set to the chain of PARM_DECLs created. */
8623 static tree
8624 grokparms (tree first_parm, tree *parms)
8626 tree result = NULL_TREE;
8627 tree decls = NULL_TREE;
8628 int ellipsis = !first_parm || PARMLIST_ELLIPSIS_P (first_parm);
8629 tree parm, chain;
8630 int any_error = 0;
8632 my_friendly_assert (!first_parm || TREE_PARMLIST (first_parm), 20001115);
8634 for (parm = first_parm; parm != NULL_TREE; parm = chain)
8636 tree type = NULL_TREE;
8637 tree decl = TREE_VALUE (parm);
8638 tree init = TREE_PURPOSE (parm);
8639 tree specs, attrs;
8641 chain = TREE_CHAIN (parm);
8642 /* @@ weak defense against parse errors. */
8643 if (TREE_CODE (decl) != VOID_TYPE
8644 && TREE_CODE (decl) != TREE_LIST)
8646 /* Give various messages as the need arises. */
8647 if (TREE_CODE (decl) == STRING_CST)
8648 error ("invalid string constant `%E'", decl);
8649 else if (TREE_CODE (decl) == INTEGER_CST)
8650 error ("invalid integer constant in parameter list, did you forget to give parameter name?");
8651 continue;
8654 if (parm == void_list_node)
8655 break;
8657 split_specs_attrs (TREE_PURPOSE (decl), &specs, &attrs);
8658 decl = grokdeclarator (TREE_VALUE (decl), specs,
8659 PARM, init != NULL_TREE, &attrs);
8660 if (! decl || TREE_TYPE (decl) == error_mark_node)
8661 continue;
8663 if (attrs)
8664 cplus_decl_attributes (&decl, attrs, 0);
8666 type = TREE_TYPE (decl);
8667 if (VOID_TYPE_P (type))
8669 if (same_type_p (type, void_type_node)
8670 && !DECL_NAME (decl) && !result && !chain && !ellipsis)
8671 /* this is a parmlist of `(void)', which is ok. */
8672 break;
8673 cxx_incomplete_type_error (decl, type);
8674 /* It's not a good idea to actually create parameters of
8675 type `void'; other parts of the compiler assume that a
8676 void type terminates the parameter list. */
8677 type = error_mark_node;
8678 TREE_TYPE (decl) = error_mark_node;
8681 if (type != error_mark_node)
8683 /* Top-level qualifiers on the parameters are
8684 ignored for function types. */
8685 type = cp_build_qualified_type (type, 0);
8686 if (TREE_CODE (type) == METHOD_TYPE)
8688 error ("parameter `%D' invalidly declared method type", decl);
8689 type = build_pointer_type (type);
8690 TREE_TYPE (decl) = type;
8692 else if (abstract_virtuals_error (decl, type))
8693 any_error = 1; /* Seems like a good idea. */
8694 else if (POINTER_TYPE_P (type))
8696 /* [dcl.fct]/6, parameter types cannot contain pointers
8697 (references) to arrays of unknown bound. */
8698 tree t = TREE_TYPE (type);
8699 int ptr = TYPE_PTR_P (type);
8701 while (1)
8703 if (TYPE_PTR_P (t))
8704 ptr = 1;
8705 else if (TREE_CODE (t) != ARRAY_TYPE)
8706 break;
8707 else if (!TYPE_DOMAIN (t))
8708 break;
8709 t = TREE_TYPE (t);
8711 if (TREE_CODE (t) == ARRAY_TYPE)
8712 error ("parameter `%D' includes %s to array of unknown bound `%T'",
8713 decl, ptr ? "pointer" : "reference", t);
8716 if (!any_error && init)
8717 init = check_default_argument (decl, init);
8718 else
8719 init = NULL_TREE;
8722 TREE_CHAIN (decl) = decls;
8723 decls = decl;
8724 result = tree_cons (init, type, result);
8726 decls = nreverse (decls);
8727 result = nreverse (result);
8728 if (!ellipsis)
8729 result = chainon (result, void_list_node);
8730 *parms = decls;
8732 return result;
8736 /* D is a constructor or overloaded `operator='.
8738 Let T be the class in which D is declared. Then, this function
8739 returns:
8741 -1 if D's is an ill-formed constructor or copy assignment operator
8742 whose first parameter is of type `T'.
8743 0 if D is not a copy constructor or copy assignment
8744 operator.
8745 1 if D is a copy constructor or copy assignment operator whose
8746 first parameter is a reference to const qualified T.
8747 2 if D is a copy constructor or copy assignment operator whose
8748 first parameter is a reference to non-const qualified T.
8750 This function can be used as a predicate. Positive values indicate
8751 a copy constructor and nonzero values indicate a copy assignment
8752 operator. */
8755 copy_fn_p (tree d)
8757 tree args;
8758 tree arg_type;
8759 int result = 1;
8761 my_friendly_assert (DECL_FUNCTION_MEMBER_P (d), 20011208);
8763 if (DECL_TEMPLATE_INFO (d) && is_member_template (DECL_TI_TEMPLATE (d)))
8764 /* Instantiations of template member functions are never copy
8765 functions. Note that member functions of templated classes are
8766 represented as template functions internally, and we must
8767 accept those as copy functions. */
8768 return 0;
8770 args = FUNCTION_FIRST_USER_PARMTYPE (d);
8771 if (!args)
8772 return 0;
8774 arg_type = TREE_VALUE (args);
8776 if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
8778 /* Pass by value copy assignment operator. */
8779 result = -1;
8781 else if (TREE_CODE (arg_type) == REFERENCE_TYPE
8782 && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
8784 if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
8785 result = 2;
8787 else
8788 return 0;
8790 args = TREE_CHAIN (args);
8792 if (args && args != void_list_node && !TREE_PURPOSE (args))
8793 /* There are more non-optional args. */
8794 return 0;
8796 return result;
8799 /* Remember any special properties of member function DECL. */
8801 void grok_special_member_properties (tree decl)
8803 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P(decl))
8804 ; /* Not special. */
8805 else if (DECL_CONSTRUCTOR_P (decl))
8807 int ctor = copy_fn_p (decl);
8809 if (ctor > 0)
8811 /* [class.copy]
8813 A non-template constructor for class X is a copy
8814 constructor if its first parameter is of type X&, const
8815 X&, volatile X& or const volatile X&, and either there
8816 are no other parameters or else all other parameters have
8817 default arguments. */
8818 TYPE_HAS_INIT_REF (DECL_CONTEXT (decl)) = 1;
8819 if (ctor > 1)
8820 TYPE_HAS_CONST_INIT_REF (DECL_CONTEXT (decl)) = 1;
8822 else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
8823 TYPE_HAS_DEFAULT_CONSTRUCTOR (DECL_CONTEXT (decl)) = 1;
8825 else if (DECL_OVERLOADED_OPERATOR_P (decl) == NOP_EXPR)
8827 /* [class.copy]
8829 A non-template assignment operator for class X is a copy
8830 assignment operator if its parameter is of type X, X&, const
8831 X&, volatile X& or const volatile X&. */
8833 int assop = copy_fn_p (decl);
8835 if (assop)
8837 TYPE_HAS_ASSIGN_REF (DECL_CONTEXT (decl)) = 1;
8838 if (assop != 1)
8839 TYPE_HAS_CONST_ASSIGN_REF (DECL_CONTEXT (decl)) = 1;
8840 if (DECL_PURE_VIRTUAL_P (decl))
8841 TYPE_HAS_ABSTRACT_ASSIGN_REF (DECL_CONTEXT (decl)) = 1;
8846 /* Check a constructor DECL has the correct form. Complains
8847 if the class has a constructor of the form X(X). */
8850 grok_ctor_properties (tree ctype, tree decl)
8852 int ctor_parm = copy_fn_p (decl);
8854 if (ctor_parm < 0)
8856 /* [class.copy]
8858 A declaration of a constructor for a class X is ill-formed if
8859 its first parameter is of type (optionally cv-qualified) X
8860 and either there are no other parameters or else all other
8861 parameters have default arguments.
8863 We *don't* complain about member template instantiations that
8864 have this form, though; they can occur as we try to decide
8865 what constructor to use during overload resolution. Since
8866 overload resolution will never prefer such a constructor to
8867 the non-template copy constructor (which is either explicitly
8868 or implicitly defined), there's no need to worry about their
8869 existence. Theoretically, they should never even be
8870 instantiated, but that's hard to forestall. */
8871 error ("invalid constructor; you probably meant `%T (const %T&)'",
8872 ctype, ctype);
8873 SET_IDENTIFIER_ERROR_LOCUS (DECL_NAME (decl), ctype);
8874 return 0;
8877 return 1;
8880 /* An operator with this code is unary, but can also be binary. */
8882 static int
8883 ambi_op_p (enum tree_code code)
8885 return (code == INDIRECT_REF
8886 || code == ADDR_EXPR
8887 || code == CONVERT_EXPR
8888 || code == NEGATE_EXPR
8889 || code == PREINCREMENT_EXPR
8890 || code == PREDECREMENT_EXPR);
8893 /* An operator with this name can only be unary. */
8895 static int
8896 unary_op_p (enum tree_code code)
8898 return (code == TRUTH_NOT_EXPR
8899 || code == BIT_NOT_EXPR
8900 || code == COMPONENT_REF
8901 || code == TYPE_EXPR);
8904 /* DECL is a declaration for an overloaded operator. Returns true if
8905 the declaration is valid; false otherwise. If COMPLAIN is true,
8906 errors are issued for invalid declarations. */
8908 bool
8909 grok_op_properties (tree decl, int friendp, bool complain)
8911 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
8912 tree argtype;
8913 int methodp = (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE);
8914 tree name = DECL_NAME (decl);
8915 enum tree_code operator_code;
8916 int arity;
8917 bool ok;
8919 /* Assume that the declaration is valid. */
8920 ok = true;
8922 /* Count the number of arguments. */
8923 for (argtype = argtypes, arity = 0;
8924 argtype && argtype != void_list_node;
8925 argtype = TREE_CHAIN (argtype))
8926 ++arity;
8928 if (current_class_type == NULL_TREE)
8929 friendp = 1;
8931 if (DECL_CONV_FN_P (decl))
8932 operator_code = TYPE_EXPR;
8933 else
8936 #define DEF_OPERATOR(NAME, CODE, MANGLING, ARITY, ASSN_P) \
8937 if (ansi_opname (CODE) == name) \
8939 operator_code = (CODE); \
8940 break; \
8942 else if (ansi_assopname (CODE) == name) \
8944 operator_code = (CODE); \
8945 DECL_ASSIGNMENT_OPERATOR_P (decl) = 1; \
8946 break; \
8949 #include "operators.def"
8950 #undef DEF_OPERATOR
8952 abort ();
8954 while (0);
8955 my_friendly_assert (operator_code != LAST_CPLUS_TREE_CODE, 20000526);
8956 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
8958 if (! friendp)
8960 switch (operator_code)
8962 case NEW_EXPR:
8963 TYPE_HAS_NEW_OPERATOR (current_class_type) = 1;
8964 break;
8966 case DELETE_EXPR:
8967 TYPE_GETS_DELETE (current_class_type) |= 1;
8968 break;
8970 case VEC_NEW_EXPR:
8971 TYPE_HAS_ARRAY_NEW_OPERATOR (current_class_type) = 1;
8972 break;
8974 case VEC_DELETE_EXPR:
8975 TYPE_GETS_DELETE (current_class_type) |= 2;
8976 break;
8978 default:
8979 break;
8983 if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR)
8984 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
8985 else if (operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
8986 TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
8987 else
8989 /* An operator function must either be a non-static member function
8990 or have at least one parameter of a class, a reference to a class,
8991 an enumeration, or a reference to an enumeration. 13.4.0.6 */
8992 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
8994 if (operator_code == TYPE_EXPR
8995 || operator_code == CALL_EXPR
8996 || operator_code == COMPONENT_REF
8997 || operator_code == ARRAY_REF
8998 || operator_code == NOP_EXPR)
8999 error ("`%D' must be a nonstatic member function", decl);
9000 else
9002 tree p;
9004 if (DECL_STATIC_FUNCTION_P (decl))
9005 error ("`%D' must be either a non-static member function or a non-member function", decl);
9007 for (p = argtypes; p && p != void_list_node; p = TREE_CHAIN (p))
9009 tree arg = non_reference (TREE_VALUE (p));
9010 /* IS_AGGR_TYPE, rather than CLASS_TYPE_P, is used
9011 because these checks are performed even on
9012 template functions. */
9013 if (IS_AGGR_TYPE (arg) || TREE_CODE (arg) == ENUMERAL_TYPE)
9014 break;
9017 if (!p || p == void_list_node)
9019 if (!complain)
9020 return false;
9022 error ("`%D' must have an argument of class or "
9023 "enumerated type",
9024 decl);
9025 ok = false;
9030 /* There are no restrictions on the arguments to an overloaded
9031 "operator ()". */
9032 if (operator_code == CALL_EXPR)
9033 return ok;
9035 if (IDENTIFIER_TYPENAME_P (name) && ! DECL_TEMPLATE_INFO (decl))
9037 tree t = TREE_TYPE (name);
9038 if (! friendp)
9040 int ref = (TREE_CODE (t) == REFERENCE_TYPE);
9041 const char *what = 0;
9043 if (ref)
9044 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
9046 if (TREE_CODE (t) == VOID_TYPE)
9047 what = "void";
9048 else if (t == current_class_type)
9049 what = "the same type";
9050 /* Don't force t to be complete here. */
9051 else if (IS_AGGR_TYPE (t)
9052 && COMPLETE_TYPE_P (t)
9053 && DERIVED_FROM_P (t, current_class_type))
9054 what = "a base class";
9056 if (what && warn_conversion)
9057 warning ("conversion to %s%s will never use a type conversion operator",
9058 ref ? "a reference to " : "", what);
9061 if (operator_code == COND_EXPR)
9063 /* 13.4.0.3 */
9064 error ("ISO C++ prohibits overloading operator ?:");
9066 else if (ambi_op_p (operator_code))
9068 if (arity == 1)
9069 /* We pick the one-argument operator codes by default, so
9070 we don't have to change anything. */
9072 else if (arity == 2)
9074 /* If we thought this was a unary operator, we now know
9075 it to be a binary operator. */
9076 switch (operator_code)
9078 case INDIRECT_REF:
9079 operator_code = MULT_EXPR;
9080 break;
9082 case ADDR_EXPR:
9083 operator_code = BIT_AND_EXPR;
9084 break;
9086 case CONVERT_EXPR:
9087 operator_code = PLUS_EXPR;
9088 break;
9090 case NEGATE_EXPR:
9091 operator_code = MINUS_EXPR;
9092 break;
9094 case PREINCREMENT_EXPR:
9095 operator_code = POSTINCREMENT_EXPR;
9096 break;
9098 case PREDECREMENT_EXPR:
9099 operator_code = POSTDECREMENT_EXPR;
9100 break;
9102 default:
9103 abort ();
9106 SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
9108 if ((operator_code == POSTINCREMENT_EXPR
9109 || operator_code == POSTDECREMENT_EXPR)
9110 && ! processing_template_decl
9111 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)), integer_type_node))
9113 if (methodp)
9114 error ("postfix `%D' must take `int' as its argument",
9115 decl);
9116 else
9117 error
9118 ("postfix `%D' must take `int' as its second argument",
9119 decl);
9122 else
9124 if (methodp)
9125 error ("`%D' must take either zero or one argument", decl);
9126 else
9127 error ("`%D' must take either one or two arguments", decl);
9130 /* More Effective C++ rule 6. */
9131 if (warn_ecpp
9132 && (operator_code == POSTINCREMENT_EXPR
9133 || operator_code == POSTDECREMENT_EXPR
9134 || operator_code == PREINCREMENT_EXPR
9135 || operator_code == PREDECREMENT_EXPR))
9137 tree arg = TREE_VALUE (argtypes);
9138 tree ret = TREE_TYPE (TREE_TYPE (decl));
9139 if (methodp || TREE_CODE (arg) == REFERENCE_TYPE)
9140 arg = TREE_TYPE (arg);
9141 arg = TYPE_MAIN_VARIANT (arg);
9142 if (operator_code == PREINCREMENT_EXPR
9143 || operator_code == PREDECREMENT_EXPR)
9145 if (TREE_CODE (ret) != REFERENCE_TYPE
9146 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)),
9147 arg))
9148 warning ("prefix `%D' should return `%T'", decl,
9149 build_reference_type (arg));
9151 else
9153 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
9154 warning ("postfix `%D' should return `%T'", decl, arg);
9158 else if (unary_op_p (operator_code))
9160 if (arity != 1)
9162 if (methodp)
9163 error ("`%D' must take `void'", decl);
9164 else
9165 error ("`%D' must take exactly one argument", decl);
9168 else /* if (binary_op_p (operator_code)) */
9170 if (arity != 2)
9172 if (methodp)
9173 error ("`%D' must take exactly one argument", decl);
9174 else
9175 error ("`%D' must take exactly two arguments", decl);
9178 /* More Effective C++ rule 7. */
9179 if (warn_ecpp
9180 && (operator_code == TRUTH_ANDIF_EXPR
9181 || operator_code == TRUTH_ORIF_EXPR
9182 || operator_code == COMPOUND_EXPR))
9183 warning ("user-defined `%D' always evaluates both arguments",
9184 decl);
9187 /* Effective C++ rule 23. */
9188 if (warn_ecpp
9189 && arity == 2
9190 && !DECL_ASSIGNMENT_OPERATOR_P (decl)
9191 && (operator_code == PLUS_EXPR
9192 || operator_code == MINUS_EXPR
9193 || operator_code == TRUNC_DIV_EXPR
9194 || operator_code == MULT_EXPR
9195 || operator_code == TRUNC_MOD_EXPR)
9196 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
9197 warning ("`%D' should return by value", decl);
9199 /* [over.oper]/8 */
9200 for (; argtypes && argtypes != void_list_node;
9201 argtypes = TREE_CHAIN (argtypes))
9202 if (TREE_PURPOSE (argtypes))
9204 TREE_PURPOSE (argtypes) = NULL_TREE;
9205 if (operator_code == POSTINCREMENT_EXPR
9206 || operator_code == POSTDECREMENT_EXPR)
9208 if (pedantic)
9209 pedwarn ("`%D' cannot have default arguments", decl);
9211 else
9212 error ("`%D' cannot have default arguments", decl);
9217 return ok;
9220 static const char *
9221 tag_name (enum tag_types code)
9223 switch (code)
9225 case record_type:
9226 return "struct";
9227 case class_type:
9228 return "class";
9229 case union_type:
9230 return "union ";
9231 case enum_type:
9232 return "enum";
9233 default:
9234 abort ();
9238 /* Name lookup in an elaborated-type-specifier (after the keyword
9239 indicated by TAG_CODE) has found the TYPE_DECL DECL. If the
9240 elaborated-type-specifier is invalid, issue a diagnostic and return
9241 error_mark_node; otherwise, return the *_TYPE to which it referred.
9242 If ALLOW_TEMPLATE_P is true, TYPE may be a class template. */
9244 tree
9245 check_elaborated_type_specifier (enum tag_types tag_code,
9246 tree decl,
9247 bool allow_template_p)
9249 tree type;
9251 /* In the case of:
9253 struct S { struct S *p; };
9255 name lookup will find the TYPE_DECL for the implicit "S::S"
9256 typedef. Adjust for that here. */
9257 if (DECL_SELF_REFERENCE_P (decl))
9258 decl = TYPE_NAME (TREE_TYPE (decl));
9260 type = TREE_TYPE (decl);
9262 /* [dcl.type.elab]
9264 If the identifier resolves to a typedef-name or a template
9265 type-parameter, the elaborated-type-specifier is ill-formed.
9267 In other words, the only legitimate declaration to use in the
9268 elaborated type specifier is the implicit typedef created when
9269 the type is declared. */
9270 if (!DECL_IMPLICIT_TYPEDEF_P (decl))
9272 error ("using typedef-name `%D' after `%s'", decl, tag_name (tag_code));
9273 return IS_AGGR_TYPE (type) ? type : error_mark_node;
9276 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
9278 error ("using template type parameter `%T' after `%s'",
9279 type, tag_name (tag_code));
9280 return error_mark_node;
9282 else if (TREE_CODE (type) != RECORD_TYPE
9283 && TREE_CODE (type) != UNION_TYPE
9284 && tag_code != enum_type)
9286 error ("`%T' referred to as `%s'", type, tag_name (tag_code));
9287 return error_mark_node;
9289 else if (TREE_CODE (type) != ENUMERAL_TYPE
9290 && tag_code == enum_type)
9292 error ("`%T' referred to as enum", type);
9293 return error_mark_node;
9295 else if (!allow_template_p
9296 && TREE_CODE (type) == RECORD_TYPE
9297 && CLASSTYPE_IS_TEMPLATE (type))
9299 /* If a class template appears as elaborated type specifier
9300 without a template header such as:
9302 template <class T> class C {};
9303 void f(class C); // No template header here
9305 then the required template argument is missing. */
9307 error ("template argument required for `%s %T'",
9308 tag_name (tag_code),
9309 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
9310 return error_mark_node;
9313 return type;
9316 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
9317 Define the tag as a forward-reference if it is not defined.
9319 If a declaration is given, process it here, and report an error if
9320 multiple declarations are not identical.
9322 GLOBALIZE is false when this is also a definition. Only look in
9323 the current frame for the name (since C++ allows new names in any
9324 scope.)
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 bool globalize, bool template_header_p)
9333 enum tree_code code;
9334 tree t;
9335 struct cp_binding_level *b = current_binding_level;
9336 tree context = NULL_TREE;
9338 timevar_push (TV_NAME_LOOKUP);
9340 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 0);
9342 switch (tag_code)
9344 case record_type:
9345 case class_type:
9346 code = RECORD_TYPE;
9347 break;
9348 case union_type:
9349 code = UNION_TYPE;
9350 break;
9351 case enum_type:
9352 code = ENUMERAL_TYPE;
9353 break;
9354 default:
9355 abort ();
9358 if (! globalize)
9360 /* If we know we are defining this tag, only look it up in
9361 this scope and don't try to find it as a type. */
9362 t = lookup_tag (code, name, b, 1);
9364 else
9366 tree decl = lookup_name (name, 2);
9368 if (decl && DECL_CLASS_TEMPLATE_P (decl))
9369 decl = DECL_TEMPLATE_RESULT (decl);
9371 if (decl && TREE_CODE (decl) == TYPE_DECL)
9373 /* Two cases we need to consider when deciding if a class
9374 template is allowed as an elaborated type specifier:
9375 1. It is a self reference to its own class.
9376 2. It comes with a template header.
9378 For example:
9380 template <class T> class C {
9381 class C *c1; // DECL_SELF_REFERENCE_P is true
9382 class D;
9384 template <class U> class C; // template_header_p is true
9385 template <class T> class C<T>::D {
9386 class C *c2; // DECL_SELF_REFERENCE_P is true
9387 }; */
9389 t = check_elaborated_type_specifier (tag_code,
9390 decl,
9391 template_header_p
9392 | DECL_SELF_REFERENCE_P (decl));
9393 if (t == error_mark_node)
9394 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
9396 else
9397 t = NULL_TREE;
9399 if (t && current_class_type
9400 && template_class_depth (current_class_type)
9401 && template_header_p)
9403 /* Since GLOBALIZE is nonzero, we are not looking at a
9404 definition of this tag. Since, in addition, we are currently
9405 processing a (member) template declaration of a template
9406 class, we must be very careful; consider:
9408 template <class X>
9409 struct S1
9411 template <class U>
9412 struct S2
9413 { template <class V>
9414 friend struct S1; };
9416 Here, the S2::S1 declaration should not be confused with the
9417 outer declaration. In particular, the inner version should
9418 have a template parameter of level 2, not level 1. This
9419 would be particularly important if the member declaration
9420 were instead:
9422 template <class V = U> friend struct S1;
9424 say, when we should tsubst into `U' when instantiating
9425 S2. On the other hand, when presented with:
9427 template <class T>
9428 struct S1 {
9429 template <class U>
9430 struct S2 {};
9431 template <class U>
9432 friend struct S2;
9435 we must find the inner binding eventually. We
9436 accomplish this by making sure that the new type we
9437 create to represent this declaration has the right
9438 TYPE_CONTEXT. */
9439 context = TYPE_CONTEXT (t);
9440 t = NULL_TREE;
9444 if (! t)
9446 /* If no such tag is yet defined, create a forward-reference node
9447 and record it as the "definition".
9448 When a real declaration of this type is found,
9449 the forward-reference will be altered into a real type. */
9450 if (code == ENUMERAL_TYPE)
9452 error ("use of enum `%#D' without previous declaration", name);
9453 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
9455 else
9457 t = make_aggr_type (code);
9458 TYPE_CONTEXT (t) = context;
9459 pushtag (name, t, globalize);
9462 else
9464 if (!globalize && processing_template_decl && IS_AGGR_TYPE (t))
9465 redeclare_class_template (t, current_template_parms);
9468 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
9471 tree
9472 xref_tag_from_type (tree old, tree id, int globalize)
9474 enum tag_types tag_kind;
9476 if (TREE_CODE (old) == RECORD_TYPE)
9477 tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
9478 else
9479 tag_kind = union_type;
9481 if (id == NULL_TREE)
9482 id = TYPE_IDENTIFIER (old);
9484 return xref_tag (tag_kind, id, globalize, false);
9487 /* REF is a type (named NAME), for which we have just seen some
9488 baseclasses. BASE_LIST is a list of those baseclasses; the
9489 TREE_PURPOSE is an access_* node, and the TREE_VALUE is the type of
9490 the base-class. TREE_VIA_VIRTUAL indicates virtual
9491 inheritance. CODE_TYPE_NODE indicates whether REF is a class,
9492 struct, or union. */
9494 void
9495 xref_basetypes (tree ref, tree base_list)
9497 /* In the declaration `A : X, Y, ... Z' we mark all the types
9498 (A, X, Y, ..., Z) so we can check for duplicates. */
9499 tree *basep;
9501 int i;
9502 enum tag_types tag_code;
9504 if (ref == error_mark_node)
9505 return;
9507 if (TREE_CODE (ref) == UNION_TYPE)
9509 error ("derived union `%T' invalid", ref);
9510 return;
9513 tag_code = (CLASSTYPE_DECLARED_CLASS (ref) ? class_type : record_type);
9515 /* First, make sure that any templates in base-classes are
9516 instantiated. This ensures that if we call ourselves recursively
9517 we do not get confused about which classes are marked and which
9518 are not. */
9519 basep = &base_list;
9520 while (*basep)
9522 tree basetype = TREE_VALUE (*basep);
9523 if (!(processing_template_decl && uses_template_parms (basetype))
9524 && !complete_type_or_else (basetype, NULL))
9525 /* An incomplete type. Remove it from the list. */
9526 *basep = TREE_CHAIN (*basep);
9527 else
9528 basep = &TREE_CHAIN (*basep);
9531 SET_CLASSTYPE_MARKED (ref);
9532 i = list_length (base_list);
9533 if (i)
9535 tree binfo = TYPE_BINFO (ref);
9536 tree binfos = make_tree_vec (i);
9537 tree accesses = make_tree_vec (i);
9539 BINFO_BASETYPES (binfo) = binfos;
9540 BINFO_BASEACCESSES (binfo) = accesses;
9542 for (i = 0; base_list; base_list = TREE_CHAIN (base_list))
9544 tree access = TREE_PURPOSE (base_list);
9545 int via_virtual = TREE_VIA_VIRTUAL (base_list);
9546 tree basetype = TREE_VALUE (base_list);
9547 tree base_binfo;
9549 if (access == access_default_node)
9550 /* The base of a derived struct is public by default. */
9551 access = (tag_code == class_type
9552 ? access_private_node : access_public_node);
9554 if (basetype && TREE_CODE (basetype) == TYPE_DECL)
9555 basetype = TREE_TYPE (basetype);
9556 if (!basetype
9557 || (TREE_CODE (basetype) != RECORD_TYPE
9558 && TREE_CODE (basetype) != TYPENAME_TYPE
9559 && TREE_CODE (basetype) != TEMPLATE_TYPE_PARM
9560 && TREE_CODE (basetype) != BOUND_TEMPLATE_TEMPLATE_PARM))
9562 error ("base type `%T' fails to be a struct or class type",
9563 basetype);
9564 continue;
9567 if (CLASSTYPE_MARKED (basetype))
9569 if (basetype == ref)
9570 error ("recursive type `%T' undefined", basetype);
9571 else
9572 error ("duplicate base type `%T' invalid", basetype);
9573 continue;
9576 if (TYPE_FOR_JAVA (basetype)
9577 && (current_lang_depth () == 0))
9578 TYPE_FOR_JAVA (ref) = 1;
9580 if (CLASS_TYPE_P (basetype))
9582 base_binfo = TYPE_BINFO (basetype);
9583 /* This flag will be in the binfo of the base type, we must
9584 clear it after copying the base binfos. */
9585 BINFO_DEPENDENT_BASE_P (base_binfo)
9586 = dependent_type_p (basetype);
9588 else
9589 base_binfo = make_binfo (size_zero_node, basetype,
9590 NULL_TREE, NULL_TREE);
9592 TREE_VEC_ELT (binfos, i) = base_binfo;
9593 TREE_VEC_ELT (accesses, i) = access;
9594 /* This flag will be in the binfo of the base type, we must
9595 clear it after copying the base binfos. */
9596 TREE_VIA_VIRTUAL (base_binfo) = via_virtual;
9598 SET_CLASSTYPE_MARKED (basetype);
9600 /* We are free to modify these bits because they are meaningless
9601 at top level, and BASETYPE is a top-level type. */
9602 if (via_virtual || TYPE_USES_VIRTUAL_BASECLASSES (basetype))
9604 TYPE_USES_VIRTUAL_BASECLASSES (ref) = 1;
9605 /* Converting to a virtual base class requires looking
9606 up the offset of the virtual base. */
9607 TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (ref) = 1;
9610 if (CLASS_TYPE_P (basetype))
9612 TYPE_HAS_NEW_OPERATOR (ref)
9613 |= TYPE_HAS_NEW_OPERATOR (basetype);
9614 TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
9615 |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
9616 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
9617 /* If the base-class uses multiple inheritance, so do we. */
9618 TYPE_USES_MULTIPLE_INHERITANCE (ref)
9619 |= TYPE_USES_MULTIPLE_INHERITANCE (basetype);
9620 /* Likewise, if converting to a base of the base may require
9621 code, then we may need to generate code to convert to a
9622 base as well. */
9623 TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (ref)
9624 |= TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (basetype);
9626 i++;
9628 if (i)
9629 TREE_VEC_LENGTH (accesses) = TREE_VEC_LENGTH (binfos) = i;
9630 else
9631 BINFO_BASEACCESSES (binfo) = BINFO_BASETYPES (binfo) = NULL_TREE;
9633 if (i > 1)
9635 TYPE_USES_MULTIPLE_INHERITANCE (ref) = 1;
9636 /* If there is more than one non-empty they cannot be at the same
9637 address. */
9638 TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (ref) = 1;
9642 /* Copy the base binfos, collect the virtual bases and set the
9643 inheritance order chain. */
9644 copy_base_binfos (TYPE_BINFO (ref), ref, NULL_TREE);
9645 CLASSTYPE_VBASECLASSES (ref) = nreverse (CLASSTYPE_VBASECLASSES (ref));
9647 if (TYPE_FOR_JAVA (ref))
9649 if (TYPE_USES_MULTIPLE_INHERITANCE (ref))
9650 error ("Java class '%T' cannot have multiple bases", ref);
9651 if (CLASSTYPE_VBASECLASSES (ref))
9652 error ("Java class '%T' cannot have virtual bases", ref);
9655 /* Unmark all the types. */
9656 while (i--)
9658 tree basetype = BINFO_TYPE (BINFO_BASETYPE (TYPE_BINFO (ref), i));
9660 CLEAR_CLASSTYPE_MARKED (basetype);
9661 if (CLASS_TYPE_P (basetype))
9663 TREE_VIA_VIRTUAL (TYPE_BINFO (basetype)) = 0;
9664 BINFO_DEPENDENT_BASE_P (TYPE_BINFO (basetype)) = 0;
9667 CLEAR_CLASSTYPE_MARKED (ref);
9671 /* Begin compiling the definition of an enumeration type.
9672 NAME is its name (or null if anonymous).
9673 Returns the type object, as yet incomplete.
9674 Also records info about it so that build_enumerator
9675 may be used to declare the individual values as they are read. */
9677 tree
9678 start_enum (tree name)
9680 tree enumtype = NULL_TREE;
9681 struct cp_binding_level *b = current_binding_level;
9683 /* If this is the real definition for a previous forward reference,
9684 fill in the contents in the same object that used to be the
9685 forward reference. */
9687 if (name != NULL_TREE)
9688 enumtype = lookup_tag (ENUMERAL_TYPE, name, b, 1);
9690 if (enumtype != NULL_TREE && TREE_CODE (enumtype) == ENUMERAL_TYPE)
9692 error ("multiple definition of `%#T'", enumtype);
9693 error ("%Jprevious definition here", TYPE_MAIN_DECL (enumtype));
9694 /* Clear out TYPE_VALUES, and start again. */
9695 TYPE_VALUES (enumtype) = NULL_TREE;
9697 else
9699 enumtype = make_node (ENUMERAL_TYPE);
9700 pushtag (name, enumtype, 0);
9703 return enumtype;
9706 /* After processing and defining all the values of an enumeration type,
9707 install their decls in the enumeration type and finish it off.
9708 ENUMTYPE is the type object and VALUES a list of name-value pairs. */
9710 void
9711 finish_enum (tree enumtype)
9713 tree values;
9714 tree decl;
9715 tree value;
9716 tree minnode;
9717 tree maxnode;
9718 tree t;
9719 bool unsignedp;
9720 int lowprec;
9721 int highprec;
9722 int precision;
9723 integer_type_kind itk;
9724 tree underlying_type = NULL_TREE;
9726 /* We built up the VALUES in reverse order. */
9727 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
9729 /* For an enum defined in a template, just set the type of the values;
9730 all further processing is postponed until the template is
9731 instantiated. We need to set the type so that tsubst of a CONST_DECL
9732 works. */
9733 if (processing_template_decl)
9735 for (values = TYPE_VALUES (enumtype);
9736 values;
9737 values = TREE_CHAIN (values))
9738 TREE_TYPE (TREE_VALUE (values)) = enumtype;
9739 if (at_function_scope_p ())
9740 add_stmt (build_min (TAG_DEFN, enumtype));
9741 return;
9744 /* Determine the minimum and maximum values of the enumerators. */
9745 if (TYPE_VALUES (enumtype))
9747 minnode = maxnode = NULL_TREE;
9749 for (values = TYPE_VALUES (enumtype);
9750 values;
9751 values = TREE_CHAIN (values))
9753 decl = TREE_VALUE (values);
9755 /* [dcl.enum]: Following the closing brace of an enum-specifier,
9756 each enumerator has the type of its enumeration. Prior to the
9757 closing brace, the type of each enumerator is the type of its
9758 initializing value. */
9759 TREE_TYPE (decl) = enumtype;
9761 /* Update the minimum and maximum values, if appropriate. */
9762 value = DECL_INITIAL (decl);
9763 /* Figure out what the minimum and maximum values of the
9764 enumerators are. */
9765 if (!minnode)
9766 minnode = maxnode = value;
9767 else if (tree_int_cst_lt (maxnode, value))
9768 maxnode = value;
9769 else if (tree_int_cst_lt (value, minnode))
9770 minnode = value;
9772 /* Set the TREE_TYPE for the values as well. That's so that when
9773 we call decl_constant_value we get an entity of the right type
9774 (but with the constant value). But first make a copy so we
9775 don't clobber shared INTEGER_CSTs. */
9776 if (TREE_TYPE (value) != enumtype)
9778 value = DECL_INITIAL (decl) = copy_node (value);
9779 TREE_TYPE (value) = enumtype;
9783 else
9784 /* [dcl.enum]
9786 If the enumerator-list is empty, the underlying type is as if
9787 the enumeration had a single enumerator with value 0. */
9788 minnode = maxnode = integer_zero_node;
9790 /* Compute the number of bits require to represent all values of the
9791 enumeration. We must do this before the type of MINNODE and
9792 MAXNODE are transformed, since min_precision relies on the
9793 TREE_TYPE of the value it is passed. */
9794 unsignedp = tree_int_cst_sgn (minnode) >= 0;
9795 lowprec = min_precision (minnode, unsignedp);
9796 highprec = min_precision (maxnode, unsignedp);
9797 precision = MAX (lowprec, highprec);
9799 /* Determine the underlying type of the enumeration.
9801 [dcl.enum]
9803 The underlying type of an enumeration is an integral type that
9804 can represent all the enumerator values defined in the
9805 enumeration. It is implementation-defined which integral type is
9806 used as the underlying type for an enumeration except that the
9807 underlying type shall not be larger than int unless the value of
9808 an enumerator cannot fit in an int or unsigned int.
9810 We use "int" or an "unsigned int" as the underlying type, even if
9811 a smaller integral type would work, unless the user has
9812 explicitly requested that we use the smallest possible type. */
9813 for (itk = (flag_short_enums ? itk_char : itk_int);
9814 itk != itk_none;
9815 itk++)
9817 underlying_type = integer_types[itk];
9818 if (TYPE_PRECISION (underlying_type) >= precision
9819 && TREE_UNSIGNED (underlying_type) == unsignedp)
9820 break;
9822 if (itk == itk_none)
9824 /* DR 377
9826 IF no integral type can represent all the enumerator values, the
9827 enumeration is ill-formed. */
9828 error ("no integral type can represent all of the enumerator values "
9829 "for `%T'", enumtype);
9830 precision = TYPE_PRECISION (long_long_integer_type_node);
9831 underlying_type = integer_types[itk_unsigned_long_long];
9834 /* Compute the minium and maximum values for the type.
9836 [dcl.enum]
9838 For an enumeration where emin is the smallest enumerator and emax
9839 is the largest, the values of the enumeration are the values of the
9840 underlying type in the range bmin to bmax, where bmin and bmax are,
9841 respectively, the smallest and largest values of the smallest bit-
9842 field that can store emin and emax. */
9843 TYPE_PRECISION (enumtype) = precision;
9844 set_min_and_max_values_for_integral_type (enumtype, precision, unsignedp);
9846 /* [dcl.enum]
9848 The value of sizeof() applied to an enumeration type, an object
9849 of an enumeration type, or an enumerator, is the value of sizeof()
9850 applied to the underlying type. */
9851 TYPE_SIZE (enumtype) = TYPE_SIZE (underlying_type);
9852 TYPE_SIZE_UNIT (enumtype) = TYPE_SIZE_UNIT (underlying_type);
9853 TYPE_MODE (enumtype) = TYPE_MODE (underlying_type);
9854 TYPE_ALIGN (enumtype) = TYPE_ALIGN (underlying_type);
9855 TYPE_USER_ALIGN (enumtype) = TYPE_USER_ALIGN (underlying_type);
9856 TREE_UNSIGNED (enumtype) = TREE_UNSIGNED (underlying_type);
9858 /* Convert each of the enumerators to the type of the underlying
9859 type of the enumeration. */
9860 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
9862 decl = TREE_VALUE (values);
9863 value = perform_implicit_conversion (underlying_type,
9864 DECL_INITIAL (decl));
9865 TREE_TYPE (value) = enumtype;
9866 DECL_INITIAL (decl) = value;
9867 TREE_VALUE (values) = value;
9870 /* Fix up all variant types of this enum type. */
9871 for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
9873 TYPE_VALUES (t) = TYPE_VALUES (enumtype);
9874 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (enumtype);
9875 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (enumtype);
9876 TYPE_SIZE (t) = TYPE_SIZE (enumtype);
9877 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (enumtype);
9878 TYPE_MODE (t) = TYPE_MODE (enumtype);
9879 TYPE_PRECISION (t) = TYPE_PRECISION (enumtype);
9880 TYPE_ALIGN (t) = TYPE_ALIGN (enumtype);
9881 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (enumtype);
9882 TREE_UNSIGNED (t) = TREE_UNSIGNED (enumtype);
9885 /* Finish debugging output for this type. */
9886 rest_of_type_compilation (enumtype, namespace_bindings_p ());
9889 /* Build and install a CONST_DECL for an enumeration constant of the
9890 enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
9891 Assignment of sequential values by default is handled here. */
9893 void
9894 build_enumerator (tree name, tree value, tree enumtype)
9896 tree decl;
9897 tree context;
9898 tree type;
9900 /* Remove no-op casts from the value. */
9901 if (value)
9902 STRIP_TYPE_NOPS (value);
9904 if (! processing_template_decl)
9906 /* Validate and default VALUE. */
9907 if (value != NULL_TREE)
9909 value = decl_constant_value (value);
9911 if (TREE_CODE (value) == INTEGER_CST)
9913 value = perform_integral_promotions (value);
9914 constant_expression_warning (value);
9916 else
9918 error ("enumerator value for `%D' not integer constant", name);
9919 value = NULL_TREE;
9923 /* Default based on previous value. */
9924 if (value == NULL_TREE)
9926 tree prev_value;
9928 if (TYPE_VALUES (enumtype))
9930 /* The next value is the previous value ... */
9931 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
9932 /* ... plus one. */
9933 value = cp_build_binary_op (PLUS_EXPR,
9934 prev_value,
9935 integer_one_node);
9937 if (tree_int_cst_lt (value, prev_value))
9938 error ("overflow in enumeration values at `%D'", name);
9940 else
9941 value = integer_zero_node;
9944 /* Remove no-op casts from the value. */
9945 STRIP_TYPE_NOPS (value);
9948 /* C++ associates enums with global, function, or class declarations. */
9949 context = current_scope ();
9950 if (!context)
9951 context = current_namespace;
9953 /* Build the actual enumeration constant. Note that the enumeration
9954 constants have the type of their initializers until the
9955 enumeration is complete:
9957 [ dcl.enum ]
9959 Following the closing brace of an enum-specifier, each enumer-
9960 ator has the type of its enumeration. Prior to the closing
9961 brace, the type of each enumerator is the type of its
9962 initializing value.
9964 In finish_enum we will reset the type. Of course, if we're
9965 processing a template, there may be no value. */
9966 type = value ? TREE_TYPE (value) : NULL_TREE;
9968 if (context && context == current_class_type)
9969 /* This enum declaration is local to the class. We need the full
9970 lang_decl so that we can record DECL_CLASS_CONTEXT, for example. */
9971 decl = build_lang_decl (CONST_DECL, name, type);
9972 else
9973 /* It's a global enum, or it's local to a function. (Note local to
9974 a function could mean local to a class method. */
9975 decl = build_decl (CONST_DECL, name, type);
9977 DECL_CONTEXT (decl) = FROB_CONTEXT (context);
9978 TREE_CONSTANT (decl) = TREE_READONLY (decl) = 1;
9979 DECL_INITIAL (decl) = value;
9981 if (context && context == current_class_type)
9982 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
9983 on the TYPE_FIELDS list for `S'. (That's so that you can say
9984 things like `S::i' later.) */
9985 finish_member_declaration (decl);
9986 else
9987 pushdecl (decl);
9989 /* Add this enumeration constant to the list for this type. */
9990 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
9994 /* We're defining DECL. Make sure that it's type is OK. */
9996 static void
9997 check_function_type (tree decl, tree current_function_parms)
9999 tree fntype = TREE_TYPE (decl);
10000 tree return_type = complete_type (TREE_TYPE (fntype));
10002 /* In a function definition, arg types must be complete. */
10003 require_complete_types_for_parms (current_function_parms);
10005 if (!COMPLETE_OR_VOID_TYPE_P (return_type))
10007 error ("return type `%#T' is incomplete", TREE_TYPE (fntype));
10009 /* Make it return void instead, but don't change the
10010 type of the DECL_RESULT, in case we have a named return value. */
10011 if (TREE_CODE (fntype) == METHOD_TYPE)
10013 tree ctype = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (fntype)));
10014 TREE_TYPE (decl)
10015 = build_method_type_directly (ctype,
10016 void_type_node,
10017 FUNCTION_ARG_CHAIN (decl));
10019 else
10020 TREE_TYPE (decl)
10021 = build_function_type (void_type_node,
10022 TYPE_ARG_TYPES (TREE_TYPE (decl)));
10023 TREE_TYPE (decl)
10024 = build_exception_variant (fntype,
10025 TYPE_RAISES_EXCEPTIONS (fntype));
10027 else
10028 abstract_virtuals_error (decl, TREE_TYPE (fntype));
10031 /* Create the FUNCTION_DECL for a function definition.
10032 DECLSPECS and DECLARATOR are the parts of the declaration;
10033 they describe the function's name and the type it returns,
10034 but twisted together in a fashion that parallels the syntax of C.
10036 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
10037 DECLARATOR is really the DECL for the function we are about to
10038 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
10039 indicating that the function is an inline defined in-class.
10041 This function creates a binding context for the function body
10042 as well as setting up the FUNCTION_DECL in current_function_decl.
10044 Returns 1 on success. If the DECLARATOR is not suitable for a function
10045 (it defines a datum instead), we return 0, which tells
10046 yyparse to report a parse error.
10048 For C++, we must first check whether that datum makes any sense.
10049 For example, "class A local_a(1,2);" means that variable local_a
10050 is an aggregate of type A, which should have a constructor
10051 applied to it with the argument list [1, 2]. */
10054 start_function (tree declspecs, tree declarator, tree attrs, int flags)
10056 tree decl1;
10057 tree ctype = NULL_TREE;
10058 tree fntype;
10059 tree restype;
10060 int doing_friend = 0;
10061 struct cp_binding_level *bl;
10062 tree current_function_parms;
10064 /* Sanity check. */
10065 my_friendly_assert (TREE_CODE (TREE_VALUE (void_list_node)) == VOID_TYPE, 160);
10066 my_friendly_assert (TREE_CHAIN (void_list_node) == NULL_TREE, 161);
10068 /* This should only be done once on the top most decl. */
10069 if (have_extern_spec)
10071 declspecs = tree_cons (NULL_TREE, get_identifier ("extern"), declspecs);
10072 have_extern_spec = false;
10075 if (flags & SF_PRE_PARSED)
10077 decl1 = declarator;
10079 fntype = TREE_TYPE (decl1);
10080 if (TREE_CODE (fntype) == METHOD_TYPE)
10081 ctype = TYPE_METHOD_BASETYPE (fntype);
10083 /* ISO C++ 11.4/5. A friend function defined in a class is in
10084 the (lexical) scope of the class in which it is defined. */
10085 if (!ctype && DECL_FRIEND_P (decl1))
10087 ctype = DECL_FRIEND_CONTEXT (decl1);
10089 /* CTYPE could be null here if we're dealing with a template;
10090 for example, `inline friend float foo()' inside a template
10091 will have no CTYPE set. */
10092 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
10093 ctype = NULL_TREE;
10094 else
10095 doing_friend = 1;
10098 else
10100 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
10101 /* If the declarator is not suitable for a function definition,
10102 cause a syntax error. */
10103 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL)
10104 return 0;
10106 cplus_decl_attributes (&decl1, attrs, 0);
10108 /* If #pragma weak was used, mark the decl weak now. */
10109 if (global_scope_p (current_binding_level))
10110 maybe_apply_pragma_weak (decl1);
10112 fntype = TREE_TYPE (decl1);
10114 restype = TREE_TYPE (fntype);
10116 if (TREE_CODE (fntype) == METHOD_TYPE)
10117 ctype = TYPE_METHOD_BASETYPE (fntype);
10118 else if (DECL_MAIN_P (decl1))
10120 /* If this doesn't return integer_type, or a typedef to
10121 integer_type, complain. */
10122 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl1)), integer_type_node))
10124 if (pedantic || warn_return_type)
10125 pedwarn ("return type for `main' changed to `int'");
10126 TREE_TYPE (decl1) = fntype = default_function_type;
10131 if (DECL_DECLARED_INLINE_P (decl1)
10132 && lookup_attribute ("noinline", attrs))
10133 warning ("%Jinline function '%D' given attribute noinline", decl1, decl1);
10135 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
10136 /* This is a constructor, we must ensure that any default args
10137 introduced by this definition are propagated to the clones
10138 now. The clones are used directly in overload resolution. */
10139 adjust_clone_args (decl1);
10141 /* Sometimes we don't notice that a function is a static member, and
10142 build a METHOD_TYPE for it. Fix that up now. */
10143 if (ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
10144 && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE)
10146 revert_static_member_fn (decl1);
10147 ctype = NULL_TREE;
10150 /* Warn if function was previously implicitly declared
10151 (but not if we warned then). */
10152 if (! warn_implicit
10153 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)) != NULL_TREE)
10154 cp_warning_at ("`%D' implicitly declared before its definition", IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)));
10156 /* Set up current_class_type, and enter the scope of the class, if
10157 appropriate. */
10158 if (ctype)
10159 push_nested_class (ctype);
10160 else if (DECL_STATIC_FUNCTION_P (decl1))
10161 push_nested_class (DECL_CONTEXT (decl1));
10163 /* Now that we have entered the scope of the class, we must restore
10164 the bindings for any template parameters surrounding DECL1, if it
10165 is an inline member template. (Order is important; consider the
10166 case where a template parameter has the same name as a field of
10167 the class.) It is not until after this point that
10168 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
10169 if (flags & SF_INCLASS_INLINE)
10170 maybe_begin_member_template_processing (decl1);
10172 /* Effective C++ rule 15. */
10173 if (warn_ecpp
10174 && DECL_OVERLOADED_OPERATOR_P (decl1) == NOP_EXPR
10175 && TREE_CODE (TREE_TYPE (fntype)) == VOID_TYPE)
10176 warning ("`operator=' should return a reference to `*this'");
10178 /* Make the init_value nonzero so pushdecl knows this is not tentative.
10179 error_mark_node is replaced below (in poplevel) with the BLOCK. */
10180 if (!DECL_INITIAL (decl1))
10181 DECL_INITIAL (decl1) = error_mark_node;
10183 /* This function exists in static storage.
10184 (This does not mean `static' in the C sense!) */
10185 TREE_STATIC (decl1) = 1;
10187 /* We must call push_template_decl after current_class_type is set
10188 up. (If we are processing inline definitions after exiting a
10189 class scope, current_class_type will be NULL_TREE until set above
10190 by push_nested_class.) */
10191 if (processing_template_decl)
10192 decl1 = push_template_decl (decl1);
10194 /* We are now in the scope of the function being defined. */
10195 current_function_decl = decl1;
10197 /* Save the parm names or decls from this function's declarator
10198 where store_parm_decls will find them. */
10199 current_function_parms = DECL_ARGUMENTS (decl1);
10201 /* Make sure the parameter and return types are reasonable. When
10202 you declare a function, these types can be incomplete, but they
10203 must be complete when you define the function. */
10204 if (! processing_template_decl)
10205 check_function_type (decl1, current_function_parms);
10207 /* Build the return declaration for the function. */
10208 restype = TREE_TYPE (fntype);
10209 /* Promote the value to int before returning it. */
10210 if (c_promoting_integer_type_p (restype))
10211 restype = type_promotes_to (restype);
10212 if (DECL_RESULT (decl1) == NULL_TREE)
10214 DECL_RESULT (decl1)
10215 = build_decl (RESULT_DECL, 0, TYPE_MAIN_VARIANT (restype));
10216 c_apply_type_quals_to_decl (cp_type_quals (restype),
10217 DECL_RESULT (decl1));
10220 /* Initialize RTL machinery. We cannot do this until
10221 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
10222 even when processing a template; this is how we get
10223 CFUN set up, and our per-function variables initialized.
10224 FIXME factor out the non-RTL stuff. */
10225 bl = current_binding_level;
10226 allocate_struct_function (decl1);
10227 current_binding_level = bl;
10229 /* Even though we're inside a function body, we still don't want to
10230 call expand_expr to calculate the size of a variable-sized array.
10231 We haven't necessarily assigned RTL to all variables yet, so it's
10232 not safe to try to expand expressions involving them. */
10233 immediate_size_expand = 0;
10234 cfun->x_dont_save_pending_sizes_p = 1;
10236 /* Start the statement-tree, start the tree now. */
10237 begin_stmt_tree (&DECL_SAVED_TREE (decl1));
10239 /* Let the user know we're compiling this function. */
10240 announce_function (decl1);
10242 /* Record the decl so that the function name is defined.
10243 If we already have a decl for this name, and it is a FUNCTION_DECL,
10244 use the old decl. */
10245 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
10247 /* A specialization is not used to guide overload resolution. */
10248 if (!DECL_FUNCTION_MEMBER_P (decl1)
10249 && !(DECL_USE_TEMPLATE (decl1) &&
10250 PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
10252 tree olddecl = pushdecl (decl1);
10254 if (olddecl == error_mark_node)
10255 /* If something went wrong when registering the declaration,
10256 use DECL1; we have to have a FUNCTION_DECL to use when
10257 parsing the body of the function. */
10259 else
10260 /* Otherwise, OLDDECL is either a previous declaration of
10261 the same function or DECL1 itself. */
10262 decl1 = olddecl;
10264 else
10266 /* We need to set the DECL_CONTEXT. */
10267 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
10268 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
10269 /* And make sure we have enough default args. */
10270 check_default_args (decl1);
10272 fntype = TREE_TYPE (decl1);
10275 /* Reset these in case the call to pushdecl changed them. */
10276 current_function_decl = decl1;
10277 cfun->decl = decl1;
10279 /* If we are (erroneously) defining a function that we have already
10280 defined before, wipe out what we knew before. */
10281 if (!DECL_PENDING_INLINE_P (decl1))
10282 DECL_SAVED_FUNCTION_DATA (decl1) = NULL;
10284 if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
10286 /* We know that this was set up by `grokclassfn'. We do not
10287 wait until `store_parm_decls', since evil parse errors may
10288 never get us to that point. Here we keep the consistency
10289 between `current_class_type' and `current_class_ptr'. */
10290 tree t = DECL_ARGUMENTS (decl1);
10292 my_friendly_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL,
10293 162);
10294 my_friendly_assert (TREE_CODE (TREE_TYPE (t)) == POINTER_TYPE,
10295 19990811);
10297 cp_function_chain->x_current_class_ref
10298 = build_indirect_ref (t, NULL);
10299 cp_function_chain->x_current_class_ptr = t;
10301 /* Constructors and destructors need to know whether they're "in
10302 charge" of initializing virtual base classes. */
10303 t = TREE_CHAIN (t);
10304 if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
10306 current_in_charge_parm = t;
10307 t = TREE_CHAIN (t);
10309 if (DECL_HAS_VTT_PARM_P (decl1))
10311 if (DECL_NAME (t) != vtt_parm_identifier)
10312 abort ();
10313 current_vtt_parm = t;
10317 if (DECL_INTERFACE_KNOWN (decl1))
10319 tree ctx = decl_function_context (decl1);
10321 if (DECL_NOT_REALLY_EXTERN (decl1))
10322 DECL_EXTERNAL (decl1) = 0;
10324 if (ctx != NULL_TREE && DECL_DECLARED_INLINE_P (ctx)
10325 && TREE_PUBLIC (ctx))
10326 /* This is a function in a local class in an extern inline
10327 function. */
10328 comdat_linkage (decl1);
10330 /* If this function belongs to an interface, it is public.
10331 If it belongs to someone else's interface, it is also external.
10332 This only affects inlines and template instantiations. */
10333 else if (interface_unknown == 0
10334 && ! DECL_TEMPLATE_INSTANTIATION (decl1))
10336 if (DECL_DECLARED_INLINE_P (decl1)
10337 || DECL_TEMPLATE_INSTANTIATION (decl1)
10338 || processing_template_decl)
10340 DECL_EXTERNAL (decl1)
10341 = (interface_only
10342 || (DECL_DECLARED_INLINE_P (decl1)
10343 && ! flag_implement_inlines
10344 && !DECL_VINDEX (decl1)));
10346 /* For WIN32 we also want to put these in linkonce sections. */
10347 maybe_make_one_only (decl1);
10349 else
10350 DECL_EXTERNAL (decl1) = 0;
10351 DECL_NOT_REALLY_EXTERN (decl1) = 0;
10352 DECL_INTERFACE_KNOWN (decl1) = 1;
10354 else if (interface_unknown && interface_only
10355 && ! DECL_TEMPLATE_INSTANTIATION (decl1))
10357 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
10358 interface, we will have interface_only set but not
10359 interface_known. In that case, we don't want to use the normal
10360 heuristics because someone will supply a #pragma implementation
10361 elsewhere, and deducing it here would produce a conflict. */
10362 comdat_linkage (decl1);
10363 DECL_EXTERNAL (decl1) = 0;
10364 DECL_INTERFACE_KNOWN (decl1) = 1;
10365 DECL_DEFER_OUTPUT (decl1) = 1;
10367 else
10369 /* This is a definition, not a reference.
10370 So clear DECL_EXTERNAL. */
10371 DECL_EXTERNAL (decl1) = 0;
10373 if ((DECL_DECLARED_INLINE_P (decl1)
10374 || DECL_TEMPLATE_INSTANTIATION (decl1))
10375 && ! DECL_INTERFACE_KNOWN (decl1)
10376 /* Don't try to defer nested functions for now. */
10377 && ! decl_function_context (decl1))
10378 DECL_DEFER_OUTPUT (decl1) = 1;
10379 else
10380 DECL_INTERFACE_KNOWN (decl1) = 1;
10383 begin_scope (sk_function_parms, decl1);
10385 ++function_depth;
10387 if (DECL_DESTRUCTOR_P (decl1))
10389 dtor_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
10390 DECL_CONTEXT (dtor_label) = current_function_decl;
10393 start_fname_decls ();
10395 store_parm_decls (current_function_parms);
10397 return 1;
10400 /* Store the parameter declarations into the current function declaration.
10401 This is called after parsing the parameter declarations, before
10402 digesting the body of the function.
10404 Also install to binding contour return value identifier, if any. */
10406 static void
10407 store_parm_decls (tree current_function_parms)
10409 tree fndecl = current_function_decl;
10410 tree parm;
10412 /* This is a chain of any other decls that came in among the parm
10413 declarations. If a parm is declared with enum {foo, bar} x;
10414 then CONST_DECLs for foo and bar are put here. */
10415 tree nonparms = NULL_TREE;
10417 if (current_function_parms)
10419 /* This case is when the function was defined with an ANSI prototype.
10420 The parms already have decls, so we need not do anything here
10421 except record them as in effect
10422 and complain if any redundant old-style parm decls were written. */
10424 tree specparms = current_function_parms;
10425 tree next;
10427 /* Must clear this because it might contain TYPE_DECLs declared
10428 at class level. */
10429 current_binding_level->names = NULL;
10431 /* If we're doing semantic analysis, then we'll call pushdecl
10432 for each of these. We must do them in reverse order so that
10433 they end in the correct forward order. */
10434 specparms = nreverse (specparms);
10436 for (parm = specparms; parm; parm = next)
10438 next = TREE_CHAIN (parm);
10439 if (TREE_CODE (parm) == PARM_DECL)
10441 if (DECL_NAME (parm) == NULL_TREE
10442 || TREE_CODE (parm) != VOID_TYPE)
10443 pushdecl (parm);
10444 else
10445 error ("parameter `%D' declared void", parm);
10447 else
10449 /* If we find an enum constant or a type tag,
10450 put it aside for the moment. */
10451 TREE_CHAIN (parm) = NULL_TREE;
10452 nonparms = chainon (nonparms, parm);
10456 /* Get the decls in their original chain order and record in the
10457 function. This is all and only the PARM_DECLs that were
10458 pushed into scope by the loop above. */
10459 DECL_ARGUMENTS (fndecl) = getdecls ();
10461 else
10462 DECL_ARGUMENTS (fndecl) = NULL_TREE;
10464 /* Now store the final chain of decls for the arguments
10465 as the decl-chain of the current lexical scope.
10466 Put the enumerators in as well, at the front so that
10467 DECL_ARGUMENTS is not modified. */
10468 current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
10470 /* Do the starting of the exception specifications, if we have any. */
10471 if (flag_exceptions && !processing_template_decl
10472 && flag_enforce_eh_specs
10473 && TYPE_RAISES_EXCEPTIONS (TREE_TYPE (current_function_decl)))
10474 current_eh_spec_block = begin_eh_spec_block ();
10478 /* We have finished doing semantic analysis on DECL, but have not yet
10479 generated RTL for its body. Save away our current state, so that
10480 when we want to generate RTL later we know what to do. */
10482 static void
10483 save_function_data (tree decl)
10485 struct language_function *f;
10487 /* Save the language-specific per-function data so that we can
10488 get it back when we really expand this function. */
10489 my_friendly_assert (!DECL_PENDING_INLINE_P (decl),
10490 19990908);
10492 /* Make a copy. */
10493 f = ggc_alloc (sizeof (struct language_function));
10494 memcpy (f, cp_function_chain, sizeof (struct language_function));
10495 DECL_SAVED_FUNCTION_DATA (decl) = f;
10497 /* Clear out the bits we don't need. */
10498 f->base.x_stmt_tree.x_last_stmt = NULL_TREE;
10499 f->base.x_stmt_tree.x_last_expr_type = NULL_TREE;
10500 f->x_named_label_uses = NULL;
10501 f->bindings = NULL;
10502 f->x_local_names = NULL;
10504 /* If we've already decided that we cannot inline this function, we
10505 must remember that fact when we actually go to expand the
10506 function. */
10507 if (current_function_cannot_inline)
10509 f->cannot_inline = current_function_cannot_inline;
10510 DECL_INLINE (decl) = 0;
10514 /* Add a note to mark the beginning of the main body of the constructor.
10515 This is used to set up the data structures for the cleanup regions for
10516 fully-constructed bases and members. */
10518 static void
10519 begin_constructor_body (void)
10523 /* Add a note to mark the end of the main body of the constructor. This is
10524 used to end the cleanup regions for fully-constructed bases and
10525 members. */
10527 static void
10528 finish_constructor_body (void)
10532 /* Do all the processing for the beginning of a destructor; set up the
10533 vtable pointers and cleanups for bases and members. */
10535 static void
10536 begin_destructor_body (void)
10538 tree if_stmt;
10539 tree compound_stmt;
10541 /* If the dtor is empty, and we know there is not any possible
10542 way we could use any vtable entries, before they are possibly
10543 set by a base class dtor, we don't have to setup the vtables,
10544 as we know that any base class dtor will set up any vtables
10545 it needs. We avoid MI, because one base class dtor can do a
10546 virtual dispatch to an overridden function that would need to
10547 have a non-related vtable set up, we cannot avoid setting up
10548 vtables in that case. We could change this to see if there
10549 is just one vtable.
10551 ??? In the destructor for a class, the vtables are set
10552 appropriately for that class. There will be no non-related
10553 vtables. jason 2001-12-11. */
10554 if_stmt = begin_if_stmt ();
10556 /* If it is not safe to avoid setting up the vtables, then
10557 someone will change the condition to be boolean_true_node.
10558 (Actually, for now, we do not have code to set the condition
10559 appropriately, so we just assume that we always need to
10560 initialize the vtables.) */
10561 finish_if_stmt_cond (boolean_true_node, if_stmt);
10563 compound_stmt = begin_compound_stmt (/*has_no_scope=*/false);
10565 /* Make all virtual function table pointers in non-virtual base
10566 classes point to CURRENT_CLASS_TYPE's virtual function
10567 tables. */
10568 initialize_vtbl_ptrs (current_class_ptr);
10570 finish_compound_stmt (compound_stmt);
10571 finish_then_clause (if_stmt);
10572 finish_if_stmt ();
10574 /* And insert cleanups for our bases and members so that they
10575 will be properly destroyed if we throw. */
10576 push_base_cleanups ();
10579 /* At the end of every destructor we generate code to delete the object if
10580 necessary. Do that now. */
10582 static void
10583 finish_destructor_body (void)
10585 tree exprstmt;
10587 /* Any return from a destructor will end up here; that way all base
10588 and member cleanups will be run when the function returns. */
10589 add_stmt (build_stmt (LABEL_STMT, dtor_label));
10591 /* In a virtual destructor, we must call delete. */
10592 if (DECL_VIRTUAL_P (current_function_decl))
10594 tree if_stmt;
10595 tree virtual_size = cxx_sizeof (current_class_type);
10597 /* [class.dtor]
10599 At the point of definition of a virtual destructor (including
10600 an implicit definition), non-placement operator delete shall
10601 be looked up in the scope of the destructor's class and if
10602 found shall be accessible and unambiguous. */
10603 exprstmt = build_op_delete_call
10604 (DELETE_EXPR, current_class_ptr, virtual_size,
10605 LOOKUP_NORMAL | LOOKUP_SPECULATIVELY, NULL_TREE);
10607 if_stmt = begin_if_stmt ();
10608 finish_if_stmt_cond (build (BIT_AND_EXPR, integer_type_node,
10609 current_in_charge_parm,
10610 integer_one_node),
10611 if_stmt);
10612 finish_expr_stmt (exprstmt);
10613 finish_then_clause (if_stmt);
10614 finish_if_stmt ();
10618 /* Do the necessary processing for the beginning of a function body, which
10619 in this case includes member-initializers, but not the catch clauses of
10620 a function-try-block. Currently, this means opening a binding level
10621 for the member-initializers (in a ctor) and member cleanups (in a dtor).
10622 In other functions, this isn't necessary, but it doesn't hurt. */
10624 tree
10625 begin_function_body (void)
10627 tree stmt;
10629 if (processing_template_decl)
10630 /* Do nothing now. */;
10631 else
10632 /* Always keep the BLOCK node associated with the outermost pair of
10633 curly braces of a function. These are needed for correct
10634 operation of dwarfout.c. */
10635 keep_next_level (true);
10637 stmt = begin_compound_stmt (/*has_no_scope=*/false);
10638 COMPOUND_STMT_BODY_BLOCK (stmt) = 1;
10640 if (processing_template_decl)
10641 /* Do nothing now. */;
10642 else if (DECL_CONSTRUCTOR_P (current_function_decl))
10643 begin_constructor_body ();
10644 else if (DECL_DESTRUCTOR_P (current_function_decl))
10645 begin_destructor_body ();
10647 return stmt;
10650 /* Do the processing for the end of a function body. Currently, this means
10651 closing out the cleanups for fully-constructed bases and members, and in
10652 the case of the destructor, deleting the object if desired. Again, this
10653 is only meaningful for [cd]tors, since they are the only functions where
10654 there is a significant distinction between the main body and any
10655 function catch clauses. Handling, say, main() return semantics here
10656 would be wrong, as flowing off the end of a function catch clause for
10657 main() would also need to return 0. */
10659 void
10660 finish_function_body (tree compstmt)
10662 /* Close the block. */
10663 finish_compound_stmt (compstmt);
10665 if (processing_template_decl)
10666 /* Do nothing now. */;
10667 else if (DECL_CONSTRUCTOR_P (current_function_decl))
10668 finish_constructor_body ();
10669 else if (DECL_DESTRUCTOR_P (current_function_decl))
10670 finish_destructor_body ();
10673 /* Finish up a function declaration and compile that function
10674 all the way to assembler language output. The free the storage
10675 for the function definition.
10677 FLAGS is a bitwise or of the following values:
10678 2 - INCLASS_INLINE
10679 We just finished processing the body of an in-class inline
10680 function definition. (This processing will have taken place
10681 after the class definition is complete.) */
10683 tree
10684 finish_function (int flags)
10686 tree fndecl = current_function_decl;
10687 tree fntype, ctype = NULL_TREE;
10688 int inclass_inline = (flags & 2) != 0;
10689 int nested;
10691 /* When we get some parse errors, we can end up without a
10692 current_function_decl, so cope. */
10693 if (fndecl == NULL_TREE)
10694 return error_mark_node;
10696 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
10697 && DECL_VIRTUAL_P (fndecl)
10698 && !processing_template_decl)
10700 tree fnclass = DECL_CONTEXT (fndecl);
10701 if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
10702 keyed_classes = tree_cons (NULL_TREE, fnclass, keyed_classes);
10705 nested = function_depth > 1;
10706 fntype = TREE_TYPE (fndecl);
10708 /* TREE_READONLY (fndecl) = 1;
10709 This caused &foo to be of type ptr-to-const-function
10710 which then got a warning when stored in a ptr-to-function variable. */
10712 my_friendly_assert (building_stmt_tree (), 20000911);
10714 /* For a cloned function, we've already got all the code we need;
10715 there's no need to add any extra bits. */
10716 if (!DECL_CLONED_FUNCTION_P (fndecl))
10718 if (DECL_MAIN_P (current_function_decl))
10720 /* Make it so that `main' always returns 0 by default. */
10721 #if VMS_TARGET
10722 finish_return_stmt (integer_one_node);
10723 #else
10724 finish_return_stmt (integer_zero_node);
10725 #endif
10728 /* Finish dealing with exception specifiers. */
10729 if (flag_exceptions && !processing_template_decl
10730 && flag_enforce_eh_specs
10731 && TYPE_RAISES_EXCEPTIONS (TREE_TYPE (current_function_decl)))
10732 finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
10733 (TREE_TYPE (current_function_decl)),
10734 current_eh_spec_block);
10737 finish_fname_decls ();
10739 /* If we're saving up tree structure, tie off the function now. */
10740 finish_stmt_tree (&DECL_SAVED_TREE (fndecl));
10742 /* If this function can't throw any exceptions, remember that. */
10743 if (!processing_template_decl
10744 && !cp_function_chain->can_throw
10745 && !flag_non_call_exceptions)
10746 TREE_NOTHROW (fndecl) = 1;
10748 /* This must come after expand_function_end because cleanups might
10749 have declarations (from inline functions) that need to go into
10750 this function's blocks. */
10752 /* If the current binding level isn't the outermost binding level
10753 for this function, either there is a bug, or we have experienced
10754 syntax errors and the statement tree is malformed. */
10755 if (current_binding_level->kind != sk_function_parms)
10757 /* Make sure we have already experienced errors. */
10758 if (errorcount == 0)
10759 abort ();
10761 /* Throw away the broken statement tree and extra binding
10762 levels. */
10763 DECL_SAVED_TREE (fndecl) = build_stmt (COMPOUND_STMT, NULL_TREE);
10765 while (current_binding_level->kind != sk_function_parms)
10767 if (current_binding_level->kind == sk_class)
10768 pop_nested_class ();
10769 else
10770 poplevel (0, 0, 0);
10773 poplevel (1, 0, 1);
10775 /* Statements should always be full-expressions at the outermost set
10776 of curly braces for a function. */
10777 my_friendly_assert (stmts_are_full_exprs_p (), 19990831);
10779 /* Set up the named return value optimization, if we can. Here, we
10780 eliminate the copy from the nrv into the RESULT_DECL and any cleanup
10781 for the nrv. genrtl_start_function and declare_return_variable
10782 handle making the nrv and RESULT_DECL share space. */
10783 if (current_function_return_value)
10785 tree r = current_function_return_value;
10786 tree outer;
10788 if (r != error_mark_node
10789 /* This is only worth doing for fns that return in memory--and
10790 simpler, since we don't have to worry about promoted modes. */
10791 && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
10792 /* Only allow this for variables declared in the outer scope of
10793 the function so we know that their lifetime always ends with a
10794 return; see g++.dg/opt/nrv6.C. We could be more flexible if
10795 we were to do this optimization in tree-ssa. */
10796 /* Skip the artificial function body block. */
10797 && (outer = BLOCK_SUBBLOCKS (BLOCK_SUBBLOCKS (DECL_INITIAL (fndecl))),
10798 chain_member (r, BLOCK_VARS (outer))))
10801 DECL_ALIGN (r) = DECL_ALIGN (DECL_RESULT (fndecl));
10802 walk_tree_without_duplicates (&DECL_SAVED_TREE (fndecl),
10803 nullify_returns_r, r);
10805 else
10806 /* Clear it so genrtl_start_function and declare_return_variable
10807 know we're not optimizing. */
10808 current_function_return_value = NULL_TREE;
10811 /* Remember that we were in class scope. */
10812 if (current_class_name)
10813 ctype = current_class_type;
10815 /* Must mark the RESULT_DECL as being in this function. */
10816 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
10818 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
10819 to the FUNCTION_DECL node itself. */
10820 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
10822 /* Save away current state, if appropriate. */
10823 if (!processing_template_decl)
10824 save_function_data (fndecl);
10826 /* If this function calls `setjmp' it cannot be inlined. When
10827 `longjmp' is called it is not guaranteed to restore the value of
10828 local variables that have been modified since the call to
10829 `setjmp'. So, if were to inline this function into some caller
10830 `c', then when we `longjmp', we might not restore all variables
10831 in `c'. (It might seem, at first blush, that there's no way for
10832 this function to modify local variables in `c', but their
10833 addresses may have been stored somewhere accessible to this
10834 function.) */
10835 if (!processing_template_decl && calls_setjmp_p (fndecl))
10836 DECL_UNINLINABLE (fndecl) = 1;
10838 /* Complain if there's just no return statement. */
10839 if (warn_return_type
10840 && TREE_CODE (TREE_TYPE (fntype)) != VOID_TYPE
10841 && !dependent_type_p (TREE_TYPE (fntype))
10842 && !current_function_returns_value && !current_function_returns_null
10843 /* Don't complain if we abort or throw. */
10844 && !current_function_returns_abnormally
10845 && !DECL_NAME (DECL_RESULT (fndecl))
10846 /* Normally, with -Wreturn-type, flow will complain. Unless we're an
10847 inline function, as we might never be compiled separately. */
10848 && (DECL_INLINE (fndecl) || processing_template_decl))
10849 warning ("no return statement in function returning non-void");
10851 /* We're leaving the context of this function, so zap cfun. It's still in
10852 DECL_SAVED_INSNS, and we'll restore it in tree_rest_of_compilation. */
10853 cfun = NULL;
10854 current_function_decl = NULL;
10856 /* If this is an in-class inline definition, we may have to pop the
10857 bindings for the template parameters that we added in
10858 maybe_begin_member_template_processing when start_function was
10859 called. */
10860 if (inclass_inline)
10861 maybe_end_member_template_processing ();
10863 /* Leave the scope of the class. */
10864 if (ctype)
10865 pop_nested_class ();
10867 --function_depth;
10869 /* Clean up. */
10870 if (! nested)
10871 /* Let the error reporting routines know that we're outside a
10872 function. For a nested function, this value is used in
10873 cxx_pop_function_context and then reset via pop_function_context. */
10874 current_function_decl = NULL_TREE;
10876 return fndecl;
10879 /* Create the FUNCTION_DECL for a function definition.
10880 DECLSPECS and DECLARATOR are the parts of the declaration;
10881 they describe the return type and the name of the function,
10882 but twisted together in a fashion that parallels the syntax of C.
10884 This function creates a binding context for the function body
10885 as well as setting up the FUNCTION_DECL in current_function_decl.
10887 Returns a FUNCTION_DECL on success.
10889 If the DECLARATOR is not suitable for a function (it defines a datum
10890 instead), we return 0, which tells yyparse to report a parse error.
10892 May return void_type_node indicating that this method is actually
10893 a friend. See grokfield for more details.
10895 Came here with a `.pushlevel' .
10897 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
10898 CHANGES TO CODE IN `grokfield'. */
10900 tree
10901 start_method (tree declspecs, tree declarator, tree attrlist)
10903 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
10904 &attrlist);
10906 if (fndecl == error_mark_node)
10907 return error_mark_node;
10909 if (fndecl == NULL || TREE_CODE (fndecl) != FUNCTION_DECL)
10911 error ("invalid member function declaration");
10912 return error_mark_node;
10915 if (attrlist)
10916 cplus_decl_attributes (&fndecl, attrlist, 0);
10918 /* Pass friends other than inline friend functions back. */
10919 if (fndecl == void_type_node)
10920 return fndecl;
10922 if (DECL_IN_AGGR_P (fndecl))
10924 if (IDENTIFIER_ERROR_LOCUS (DECL_ASSEMBLER_NAME (fndecl)) != current_class_type)
10926 if (DECL_CONTEXT (fndecl)
10927 && TREE_CODE( DECL_CONTEXT (fndecl)) != NAMESPACE_DECL)
10928 error ("`%D' is already defined in class `%T'", fndecl,
10929 DECL_CONTEXT (fndecl));
10931 return void_type_node;
10934 check_template_shadow (fndecl);
10936 DECL_DECLARED_INLINE_P (fndecl) = 1;
10937 if (flag_default_inline)
10938 DECL_INLINE (fndecl) = 1;
10940 /* We process method specializations in finish_struct_1. */
10941 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
10943 fndecl = push_template_decl (fndecl);
10944 if (fndecl == error_mark_node)
10945 return fndecl;
10948 if (! DECL_FRIEND_P (fndecl))
10950 if (TREE_CHAIN (fndecl))
10952 fndecl = copy_node (fndecl);
10953 TREE_CHAIN (fndecl) = NULL_TREE;
10955 grok_special_member_properties (fndecl);
10958 cp_finish_decl (fndecl, NULL_TREE, NULL_TREE, 0);
10960 /* Make a place for the parms. */
10961 begin_scope (sk_function_parms, fndecl);
10963 DECL_IN_AGGR_P (fndecl) = 1;
10964 return fndecl;
10967 /* Go through the motions of finishing a function definition.
10968 We don't compile this method until after the whole class has
10969 been processed.
10971 FINISH_METHOD must return something that looks as though it
10972 came from GROKFIELD (since we are defining a method, after all).
10974 This is called after parsing the body of the function definition.
10975 STMTS is the chain of statements that makes up the function body.
10977 DECL is the ..._DECL that `start_method' provided. */
10979 tree
10980 finish_method (tree decl)
10982 tree fndecl = decl;
10983 tree old_initial;
10985 tree link;
10987 if (decl == void_type_node)
10988 return decl;
10990 old_initial = DECL_INITIAL (fndecl);
10992 /* Undo the level for the parms (from start_method).
10993 This is like poplevel, but it causes nothing to be
10994 saved. Saving information here confuses symbol-table
10995 output routines. Besides, this information will
10996 be correctly output when this method is actually
10997 compiled. */
10999 /* Clear out the meanings of the local variables of this level;
11000 also record in each decl which block it belongs to. */
11002 for (link = current_binding_level->names; link; link = TREE_CHAIN (link))
11004 if (DECL_NAME (link) != NULL_TREE)
11005 pop_binding (DECL_NAME (link), link);
11006 my_friendly_assert (TREE_CODE (link) != FUNCTION_DECL, 163);
11007 DECL_CONTEXT (link) = NULL_TREE;
11010 poplevel (0, 0, 0);
11012 DECL_INITIAL (fndecl) = old_initial;
11014 /* We used to check if the context of FNDECL was different from
11015 current_class_type as another way to get inside here. This didn't work
11016 for String.cc in libg++. */
11017 if (DECL_FRIEND_P (fndecl))
11019 CLASSTYPE_INLINE_FRIENDS (current_class_type)
11020 = tree_cons (NULL_TREE, fndecl, CLASSTYPE_INLINE_FRIENDS (current_class_type));
11021 decl = void_type_node;
11024 return decl;
11028 /* VAR is a VAR_DECL. If its type is incomplete, remember VAR so that
11029 we can lay it out later, when and if its type becomes complete. */
11031 void
11032 maybe_register_incomplete_var (tree var)
11034 my_friendly_assert (TREE_CODE (var) == VAR_DECL, 20020406);
11036 /* Keep track of variables with incomplete types. */
11037 if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
11038 && DECL_EXTERNAL (var))
11040 tree inner_type = TREE_TYPE (var);
11042 while (TREE_CODE (inner_type) == ARRAY_TYPE)
11043 inner_type = TREE_TYPE (inner_type);
11044 inner_type = TYPE_MAIN_VARIANT (inner_type);
11046 if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
11047 /* RTTI TD entries are created while defining the type_info. */
11048 || (TYPE_LANG_SPECIFIC (inner_type)
11049 && TYPE_BEING_DEFINED (inner_type)))
11050 incomplete_vars = tree_cons (inner_type, var, incomplete_vars);
11054 /* Called when a class type (given by TYPE) is defined. If there are
11055 any existing VAR_DECLs whose type hsa been completed by this
11056 declaration, update them now. */
11058 void
11059 complete_vars (tree type)
11061 tree *list = &incomplete_vars;
11063 my_friendly_assert (CLASS_TYPE_P (type), 20020406);
11064 while (*list)
11066 if (same_type_p (type, TREE_PURPOSE (*list)))
11068 tree var = TREE_VALUE (*list);
11069 /* Complete the type of the variable. The VAR_DECL itself
11070 will be laid out in expand_expr. */
11071 complete_type (TREE_TYPE (var));
11072 /* Remove this entry from the list. */
11073 *list = TREE_CHAIN (*list);
11075 else
11076 list = &TREE_CHAIN (*list);
11080 /* If DECL is of a type which needs a cleanup, build that cleanup
11081 here. */
11083 tree
11084 cxx_maybe_build_cleanup (tree decl)
11086 tree type = TREE_TYPE (decl);
11088 if (type != error_mark_node && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
11090 int flags = LOOKUP_NORMAL|LOOKUP_DESTRUCTOR;
11091 tree rval;
11093 if (TREE_CODE (type) == ARRAY_TYPE)
11094 rval = decl;
11095 else
11097 cxx_mark_addressable (decl);
11098 rval = build_unary_op (ADDR_EXPR, decl, 0);
11101 /* Optimize for space over speed here. */
11102 if (! TYPE_USES_VIRTUAL_BASECLASSES (type)
11103 || flag_expensive_optimizations)
11104 flags |= LOOKUP_NONVIRTUAL;
11106 rval = build_delete (TREE_TYPE (rval), rval,
11107 sfk_complete_destructor, flags, 0);
11109 if (TYPE_USES_VIRTUAL_BASECLASSES (type)
11110 && ! TYPE_HAS_DESTRUCTOR (type))
11111 rval = build_compound_expr (rval, build_vbase_delete (type, decl));
11113 return rval;
11115 return NULL_TREE;
11118 /* When a stmt has been parsed, this function is called. */
11120 void
11121 finish_stmt (void)
11123 /* Always assume this statement was not an expression statement. If
11124 it actually was an expression statement, its our callers
11125 responsibility to fix this up. */
11126 last_expr_type = NULL_TREE;
11129 /* DECL was originally constructed as a non-static member function,
11130 but turned out to be static. Update it accordingly. */
11132 void
11133 revert_static_member_fn (tree decl)
11135 tree tmp;
11136 tree function = TREE_TYPE (decl);
11137 tree args = TYPE_ARG_TYPES (function);
11139 if (cp_type_quals (TREE_TYPE (TREE_VALUE (args)))
11140 != TYPE_UNQUALIFIED)
11141 error ("static member function `%#D' declared with type qualifiers",
11142 decl);
11144 args = TREE_CHAIN (args);
11145 tmp = build_function_type (TREE_TYPE (function), args);
11146 tmp = build_qualified_type (tmp, cp_type_quals (function));
11147 tmp = build_exception_variant (tmp,
11148 TYPE_RAISES_EXCEPTIONS (function));
11149 TREE_TYPE (decl) = tmp;
11150 if (DECL_ARGUMENTS (decl))
11151 DECL_ARGUMENTS (decl) = TREE_CHAIN (DECL_ARGUMENTS (decl));
11152 DECL_STATIC_FUNCTION_P (decl) = 1;
11155 /* Initialize the variables used during compilation of a C++
11156 function. */
11158 void
11159 cxx_push_function_context (struct function * f)
11161 struct language_function *p
11162 = ggc_alloc_cleared (sizeof (struct language_function));
11163 f->language = p;
11165 /* Whenever we start a new function, we destroy temporaries in the
11166 usual way. */
11167 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
11169 if (f->decl)
11171 tree fn = f->decl;
11173 if (DECL_SAVED_FUNCTION_DATA (fn))
11175 /* If we already parsed this function, and we're just expanding it
11176 now, restore saved state. */
11177 *cp_function_chain = *DECL_SAVED_FUNCTION_DATA (fn);
11179 /* If we decided that we didn't want to inline this function,
11180 make sure the back-end knows that. */
11181 if (!current_function_cannot_inline)
11182 current_function_cannot_inline = cp_function_chain->cannot_inline;
11184 /* We don't need the saved data anymore. Unless this is an inline
11185 function; we need the named return value info for
11186 cp_copy_res_decl_for_inlining. */
11187 if (! DECL_INLINE (fn))
11188 DECL_SAVED_FUNCTION_DATA (fn) = NULL;
11193 /* Free the language-specific parts of F, now that we've finished
11194 compiling the function. */
11196 void
11197 cxx_pop_function_context (struct function * f)
11199 f->language = 0;
11202 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
11203 one of the language-independent trees. */
11205 enum cp_tree_node_structure_enum
11206 cp_tree_node_structure (union lang_tree_node * t)
11208 switch (TREE_CODE (&t->generic))
11210 case DEFAULT_ARG: return TS_CP_DEFAULT_ARG;
11211 case IDENTIFIER_NODE: return TS_CP_IDENTIFIER;
11212 case OVERLOAD: return TS_CP_OVERLOAD;
11213 case TEMPLATE_PARM_INDEX: return TS_CP_TPI;
11214 case PTRMEM_CST: return TS_CP_PTRMEM;
11215 case BASELINK: return TS_CP_BASELINK;
11216 case WRAPPER: return TS_CP_WRAPPER;
11217 default: return TS_CP_GENERIC;
11221 /* Build the void_list_node (void_type_node having been created). */
11222 tree
11223 build_void_list_node (void)
11225 tree t = build_tree_list (NULL_TREE, void_type_node);
11226 TREE_PARMLIST (t) = 1;
11227 return t;
11230 static int
11231 cp_missing_noreturn_ok_p (tree decl)
11233 /* A missing noreturn is ok for the `main' function. */
11234 return DECL_MAIN_P (decl);
11237 #include "gt-cp-decl.h"
11238 #include "gtype-cp.h"