* decl.c (layout_var_decl): Change prototype. Don't complete
[official-gcc.git] / gcc / cp / decl.c
blobc75cddcd1c1182c29215d47271d60074aaa638ca
1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 92-98, 1999 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com)
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 /* Process declarations and symbol lookup for C front end.
24 Also constructs types; the standard scalar types at initialization,
25 and structure, union, array and enum types when they are declared. */
27 /* ??? not all decl nodes are given the most useful possible
28 line numbers. For example, the CONST_DECLs for enum values. */
30 #include "config.h"
31 #include "system.h"
32 #include "tree.h"
33 #include "rtl.h"
34 #include "flags.h"
35 #include "cp-tree.h"
36 #include "decl.h"
37 #include "lex.h"
38 #include <signal.h>
39 #include "obstack.h"
40 #include "defaults.h"
41 #include "output.h"
42 #include "except.h"
43 #include "toplev.h"
44 #include "../hash.h"
45 #include "defaults.h"
46 #include "ggc.h"
48 #define obstack_chunk_alloc xmalloc
49 #define obstack_chunk_free free
51 extern struct obstack permanent_obstack;
52 extern struct obstack* saveable_obstack;
54 extern int current_class_depth;
56 extern tree static_ctors, static_dtors;
58 extern tree global_namespace;
60 extern int (*valid_lang_attribute) PROTO ((tree, tree, tree, tree));
62 /* Use garbage collection. */
64 int ggc_p = 1;
66 /* Obstack used for remembering local class declarations (like
67 enums and static (const) members. */
68 #include "stack.h"
69 struct obstack decl_obstack;
70 static struct stack_level *decl_stack;
72 #ifndef CHAR_TYPE_SIZE
73 #define CHAR_TYPE_SIZE BITS_PER_UNIT
74 #endif
76 #ifndef SHORT_TYPE_SIZE
77 #define SHORT_TYPE_SIZE (BITS_PER_UNIT * MIN ((UNITS_PER_WORD + 1) / 2, 2))
78 #endif
80 #ifndef INT_TYPE_SIZE
81 #define INT_TYPE_SIZE BITS_PER_WORD
82 #endif
84 #ifndef LONG_TYPE_SIZE
85 #define LONG_TYPE_SIZE BITS_PER_WORD
86 #endif
88 #ifndef LONG_LONG_TYPE_SIZE
89 #define LONG_LONG_TYPE_SIZE (BITS_PER_WORD * 2)
90 #endif
92 #ifndef WCHAR_UNSIGNED
93 #define WCHAR_UNSIGNED 0
94 #endif
96 #ifndef FLOAT_TYPE_SIZE
97 #define FLOAT_TYPE_SIZE BITS_PER_WORD
98 #endif
100 #ifndef DOUBLE_TYPE_SIZE
101 #define DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
102 #endif
104 #ifndef LONG_DOUBLE_TYPE_SIZE
105 #define LONG_DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
106 #endif
108 #ifndef BOOL_TYPE_SIZE
109 #ifdef SLOW_BYTE_ACCESS
110 #define BOOL_TYPE_SIZE ((SLOW_BYTE_ACCESS) ? (POINTER_SIZE) : (CHAR_TYPE_SIZE))
111 #else
112 #define BOOL_TYPE_SIZE CHAR_TYPE_SIZE
113 #endif
114 #endif
116 /* We let tm.h override the types used here, to handle trivial differences
117 such as the choice of unsigned int or long unsigned int for size_t.
118 When machines start needing nontrivial differences in the size type,
119 it would be best to do something here to figure out automatically
120 from other information what type to use. */
122 #ifndef SIZE_TYPE
123 #define SIZE_TYPE "long unsigned int"
124 #endif
126 #ifndef PTRDIFF_TYPE
127 #define PTRDIFF_TYPE "long int"
128 #endif
130 #ifndef WCHAR_TYPE
131 #define WCHAR_TYPE "int"
132 #endif
134 static tree grokparms PROTO((tree, int));
135 static const char *redeclaration_error_message PROTO((tree, tree));
137 static struct stack_level *push_decl_level PROTO((struct stack_level *,
138 struct obstack *));
139 static void push_binding_level PROTO((struct binding_level *, int,
140 int));
141 static void pop_binding_level PROTO((void));
142 static void suspend_binding_level PROTO((void));
143 static void resume_binding_level PROTO((struct binding_level *));
144 static struct binding_level *make_binding_level PROTO((void));
145 static void declare_namespace_level PROTO((void));
146 static void signal_catch PROTO((int)) ATTRIBUTE_NORETURN;
147 static void storedecls PROTO((tree));
148 static void require_complete_types_for_parms PROTO((tree));
149 static void push_overloaded_decl_1 PROTO((tree));
150 static int ambi_op_p PROTO((tree));
151 static int unary_op_p PROTO((tree));
152 static tree store_bindings PROTO((tree, tree));
153 static tree lookup_tag_reverse PROTO((tree, tree));
154 static tree obscure_complex_init PROTO((tree, tree));
155 static tree maybe_build_cleanup_1 PROTO((tree, tree));
156 static tree lookup_name_real PROTO((tree, int, int, int));
157 static void warn_extern_redeclared_static PROTO((tree, tree));
158 static void grok_reference_init PROTO((tree, tree, tree));
159 static tree grokfndecl PROTO((tree, tree, tree, tree, int,
160 enum overload_flags, tree,
161 tree, int, int, int, int, int, int, tree));
162 static tree grokvardecl PROTO((tree, tree, RID_BIT_TYPE *, int, int, tree));
163 static tree lookup_tag PROTO((enum tree_code, tree,
164 struct binding_level *, int));
165 static void set_identifier_type_value_with_scope
166 PROTO((tree, tree, struct binding_level *));
167 static void record_builtin_type PROTO((enum rid, const char *, tree));
168 static void record_unknown_type PROTO((tree, const char *));
169 static int member_function_or_else PROTO((tree, tree, const char *));
170 static void bad_specifiers PROTO((tree, const char *, int, int, int, int,
171 int));
172 static void lang_print_error_function PROTO((const char *));
173 static tree maybe_process_template_type_declaration PROTO((tree, int, struct binding_level*));
174 static void check_for_uninitialized_const_var PROTO((tree));
175 static unsigned long typename_hash PROTO((hash_table_key));
176 static boolean typename_compare PROTO((hash_table_key, hash_table_key));
177 static void push_binding PROTO((tree, tree, struct binding_level*));
178 static int add_binding PROTO((tree, tree));
179 static void pop_binding PROTO((tree, tree));
180 static tree local_variable_p PROTO((tree));
181 static tree find_binding PROTO((tree, tree));
182 static tree select_decl PROTO((tree, int));
183 static int lookup_flags PROTO((int, int));
184 static tree qualify_lookup PROTO((tree, int));
185 static tree record_builtin_java_type PROTO((const char *, int));
186 static const char *tag_name PROTO((enum tag_types code));
187 static void find_class_binding_level PROTO((void));
188 static struct binding_level *innermost_nonclass_level PROTO((void));
189 static tree poplevel_class PROTO((void));
190 static void warn_about_implicit_typename_lookup PROTO((tree, tree));
191 static int walk_namespaces_r PROTO((tree, walk_namespaces_fn, void *));
192 static int walk_globals_r PROTO((tree, void *));
193 static void add_decl_to_level PROTO((tree, struct binding_level *));
194 static tree make_label_decl PROTO((tree, int));
195 static void pop_label PROTO((tree));
196 static void pop_labels PROTO((tree));
197 static void maybe_deduce_size_from_array_init PROTO((tree, tree));
198 static tree layout_var_decl PROTO((tree, tree));
199 static void maybe_commonize_var PROTO((tree));
200 static tree build_cleanup_on_safe_obstack PROTO((tree));
201 static tree check_initializer PROTO((tree, tree));
202 static void make_rtl_for_nonlocal_decl PROTO((tree, tree, const char *));
203 static void push_cp_function_context PROTO((struct function *));
204 static void pop_cp_function_context PROTO((struct function *));
205 static void mark_binding_level PROTO((void *));
206 static void mark_cp_function_context PROTO((struct function *));
207 static void mark_saved_scope PROTO((void *));
209 #if defined (DEBUG_CP_BINDING_LEVELS)
210 static void indent PROTO((void));
211 #endif
213 /* A node which has tree code ERROR_MARK, and whose type is itself.
214 All erroneous expressions are replaced with this node. All functions
215 that accept nodes as arguments should avoid generating error messages
216 if this node is one of the arguments, since it is undesirable to get
217 multiple error messages from one error in the input. */
219 tree error_mark_node;
221 /* Erroneous argument lists can use this *IFF* they do not modify it. */
222 tree error_mark_list;
224 /* The following symbols are subsumed in the cp_global_trees array, and
225 listed here individually for documentation purposes.
227 C++ extensions
228 tree wchar_decl_node;
229 tree void_zero_node;
231 tree vtable_entry_type;
232 tree delta_type_node;
233 #if 0
234 Old rtti stuff.
235 tree __baselist_desc_type_node;
236 tree __i_desc_type_node, __m_desc_type_node;
237 tree __t_desc_array_type, __i_desc_array_type, __m_desc_array_type;
238 #endif
239 tree __t_desc_type_node;
240 #if 0
241 tree __tp_desc_type_node;
242 #endif
243 tree __access_mode_type_node;
244 tree __bltn_desc_type_node, __user_desc_type_node, __class_desc_type_node;
245 tree __ptr_desc_type_node, __attr_desc_type_node, __func_desc_type_node;
246 tree __ptmf_desc_type_node, __ptmd_desc_type_node;
247 #if 0
248 Not needed yet? May be needed one day?
249 tree __bltn_desc_array_type, __user_desc_array_type, __class_desc_array_type;
250 tree __ptr_desc_array_type, __attr_dec_array_type, __func_desc_array_type;
251 tree __ptmf_desc_array_type, __ptmd_desc_array_type;
252 #endif
254 tree class_star_type_node;
255 tree class_type_node, record_type_node, union_type_node, enum_type_node;
256 tree unknown_type_node;
258 Array type `vtable_entry_type[]'
260 tree vtbl_type_node;
261 tree vtbl_ptr_type_node;
263 Nnamespace std
265 tree std_node;
267 A FUNCTION_DECL which can call `abort'. Not necessarily the
268 one that the user will declare, but sufficient to be called
269 by routines that want to abort the program.
271 tree abort_fndecl;
273 The FUNCTION_DECL for the default `::operator delete'.
275 tree global_delete_fndecl;
277 Used by RTTI
278 tree type_info_type_node, tinfo_fn_id, tinfo_fn_type;
282 tree cp_global_trees[CPTI_MAX];
284 /* These can't be part of the above array, since they are declared
285 individually in tree.h, and used by the debug output routines. */
287 tree void_type_node;
288 tree char_type_node;
289 tree integer_type_node;
290 tree unsigned_type_node;
292 /* These can't be part of the above array, since they are declared
293 individially in tree.h and used by the target routines. */
295 tree ptr_type_node;
296 tree va_list_type_node;
297 tree null_pointer_node;
299 /* Indicates that there is a type value in some namespace, although
300 that is not necessarily in scope at the moment. */
302 static tree global_type_node;
304 /* Namespace std. */
305 int in_std;
307 /* Expect only namespace names now. */
308 static int only_namespace_names;
310 /* In a destructor, the last insn emitted after the start of the
311 function and the parms. */
313 #define last_dtor_insn cp_function_chain->x_last_dtor_insn
315 /* In a constructor, the last insn emitted after the start of the
316 function and the parms, the exception specification and any
317 function-try-block. The constructor initializers are emitted after
318 this insn. */
320 #define last_parm_cleanup_insn cp_function_chain->x_last_parm_cleanup_insn
322 /* If original DECL_RESULT of current function was a register,
323 but due to being an addressable named return value, would up
324 on the stack, this variable holds the named return value's
325 original location. */
327 #define original_result_rtx cp_function_chain->x_result_rtx
329 struct named_label_list
331 struct binding_level *binding_level;
332 tree names_in_scope;
333 tree label_decl;
334 const char *filename_o_goto;
335 int lineno_o_goto;
336 struct named_label_list *next;
339 /* A list (chain of TREE_LIST nodes) of named label uses.
340 The TREE_PURPOSE field is the list of variables defined
341 in the label's scope defined at the point of use.
342 The TREE_VALUE field is the LABEL_DECL used.
343 The TREE_TYPE field holds `current_binding_level' at the
344 point of the label's use.
346 BWAHAHAAHAHahhahahahaah. No, no, no, said the little chicken.
348 Look at the pretty struct named_label_list. See the pretty struct
349 with the pretty named fields that describe what they do. See the
350 pretty lack of gratuitous casts. Notice the code got a lot cleaner.
352 Used only for jumps to as-yet undefined labels, since
353 jumps to defined labels can have their validity checked
354 by stmt.c. */
356 #define named_label_uses cp_function_chain->named_label_uses
358 /* A list of objects which have constructors or destructors
359 which reside in the global scope. The decl is stored in
360 the TREE_VALUE slot and the initializer is stored
361 in the TREE_PURPOSE slot. */
362 tree static_aggregates;
364 /* -- end of C++ */
366 /* An expression of type `int' for the constant zero. */
368 tree integer_zero_node;
370 /* A node for the integer constants 1, 2, and 3. */
372 tree integer_one_node, integer_two_node, integer_three_node;
374 /* While defining an enum type, this is 1 plus the last enumerator
375 constant value. */
377 static tree enum_next_value;
379 /* Nonzero means that there was overflow computing enum_next_value. */
381 static int enum_overflow;
383 /* Parsing a function declarator leaves here a chain of structure
384 and enum types declared in the parmlist. */
386 static tree last_function_parm_tags;
388 /* Similar, for last_function_parm_tags. */
389 tree last_function_parms;
390 static tree current_function_parm_tags;
392 /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
393 that have names. Here so we can clear out their names' definitions
394 at the end of the function. The TREE_VALUE is a LABEL_DECL; the
395 TREE_PURPOSE is the previous binding of the label. */
397 #define named_labels cp_function_chain->x_named_labels
399 /* The FUNCTION_DECL for the function currently being compiled,
400 or 0 if between functions. */
401 tree current_function_decl;
403 /* Set to 0 at beginning of a function definition, and whenever
404 a label (case or named) is defined. Set to value of expression
405 returned from function when that value can be transformed into
406 a named return value. */
408 tree current_function_return_value;
410 /* Nonzero means give `double' the same size as `float'. */
412 extern int flag_short_double;
414 /* Nonzero means don't recognize any builtin functions. */
416 extern int flag_no_builtin;
418 /* Nonzero means don't recognize the non-ANSI builtin functions.
419 -ansi sets this. */
421 extern int flag_no_nonansi_builtin;
423 /* Nonzero means enable obscure ANSI features and disable GNU extensions
424 that might cause ANSI-compliant code to be miscompiled. */
426 extern int flag_ansi;
428 /* Nonzero if we want to support huge (> 2^(sizeof(short)*8-1) bytes)
429 objects. */
430 extern int flag_huge_objects;
432 /* Nonzero if we want to conserve space in the .o files. We do this
433 by putting uninitialized data and runtime initialized data into
434 .common instead of .data at the expense of not flagging multiple
435 definitions. */
436 extern int flag_conserve_space;
438 /* C and C++ flags are in decl2.c. */
440 /* Set to 0 at beginning of a constructor, set to 1
441 if that function does an allocation before referencing its
442 instance variable. */
443 #define current_function_assigns_this cp_function_chain->assigns_this
444 #define current_function_just_assigned_this \
445 cp_function_chain->just_assigned_this
447 /* Flag used when debugging spew.c */
449 extern int spew_debug;
451 /* A expression of value 0 with the same precision as a sizetype
452 node, but signed. */
453 tree signed_size_zero_node;
455 /* The name of the anonymous namespace, throughout this translation
456 unit. */
457 tree anonymous_namespace_name;
460 /* Allocate a level of searching. */
462 static
463 struct stack_level *
464 push_decl_level (stack, obstack)
465 struct stack_level *stack;
466 struct obstack *obstack;
468 struct stack_level tem;
469 tem.prev = stack;
471 return push_stack_level (obstack, (char *)&tem, sizeof (tem));
474 /* For each binding contour we allocate a binding_level structure
475 which records the names defined in that contour.
476 Contours include:
477 0) the global one
478 1) one for each function definition,
479 where internal declarations of the parameters appear.
480 2) one for each compound statement,
481 to record its declarations.
483 The current meaning of a name can be found by searching the levels
484 from the current one out to the global one.
486 Off to the side, may be the class_binding_level. This exists only
487 to catch class-local declarations. It is otherwise nonexistent.
489 Also there may be binding levels that catch cleanups that must be
490 run when exceptions occur. Thus, to see whether a name is bound in
491 the current scope, it is not enough to look in the
492 CURRENT_BINDING_LEVEL. You should use lookup_name_current_level
493 instead. */
495 /* Note that the information in the `names' component of the global contour
496 is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers. */
498 struct binding_level
500 /* A chain of _DECL nodes for all variables, constants, functions,
501 and typedef types. These are in the reverse of the order
502 supplied. There may be OVERLOADs on this list, too, but they
503 are wrapped in TREE_LISTs; the TREE_VALUE is the OVERLOAD. */
504 tree names;
506 /* A list of structure, union and enum definitions, for looking up
507 tag names.
508 It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
509 or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
510 or ENUMERAL_TYPE node.
512 C++: the TREE_VALUE nodes can be simple types for
513 component_bindings. */
514 tree tags;
516 /* A list of USING_DECL nodes. */
517 tree usings;
519 /* A list of used namespaces. PURPOSE is the namespace,
520 VALUE the common ancestor with this binding_level's namespace. */
521 tree using_directives;
523 /* If this binding level is the binding level for a class, then
524 class_shadowed is a TREE_LIST. The TREE_PURPOSE of each node
525 is the name of an entity bound in the class; the TREE_VALUE is
526 the IDENTIFIER_CLASS_VALUE before we entered the class. Thus,
527 when leaving class scope, we can restore the
528 IDENTIFIER_CLASS_VALUE by walking this list. The TREE_TYPE is
529 the DECL bound by this name in the class. */
530 tree class_shadowed;
532 /* Similar to class_shadowed, but for IDENTIFIER_TYPE_VALUE, and
533 is used for all binding levels. */
534 tree type_shadowed;
536 /* A TREE_LIST. Each TREE_VALUE is the LABEL_DECL for a local
537 label in this scope. The TREE_PURPOSE is the previous value of
538 the IDENTIFIER_LABEL VALUE. */
539 tree shadowed_labels;
541 /* For each level (except not the global one),
542 a chain of BLOCK nodes for all the levels
543 that were entered and exited one level down. */
544 tree blocks;
546 /* The BLOCK node for this level, if one has been preallocated.
547 If 0, the BLOCK is allocated (if needed) when the level is popped. */
548 tree this_block;
550 /* The binding level which this one is contained in (inherits from). */
551 struct binding_level *level_chain;
553 /* List of decls in `names' that have incomplete
554 structure or union types. */
555 tree incomplete;
557 /* List of VAR_DECLS saved from a previous for statement.
558 These would be dead in ANSI-conforming code, but might
559 be referenced in ARM-era code. These are stored in a
560 TREE_LIST; the TREE_VALUE is the actual declaration. */
561 tree dead_vars_from_for;
563 /* 1 for the level that holds the parameters of a function.
564 2 for the level that holds a class declaration.
565 3 for levels that hold parameter declarations. */
566 unsigned parm_flag : 4;
568 /* 1 means make a BLOCK for this level regardless of all else.
569 2 for temporary binding contours created by the compiler. */
570 unsigned keep : 3;
572 /* Nonzero if this level "doesn't exist" for tags. */
573 unsigned tag_transparent : 1;
575 /* Nonzero if this level can safely have additional
576 cleanup-needing variables added to it. */
577 unsigned more_cleanups_ok : 1;
578 unsigned have_cleanups : 1;
580 /* Nonzero if this level is for storing the decls for template
581 parameters and generic decls; these decls will be discarded and
582 replaced with a TEMPLATE_DECL. */
583 unsigned pseudo_global : 1;
585 /* This is set for a namespace binding level. */
586 unsigned namespace_p : 1;
588 /* True if this level is that of a for-statement where we need to
589 worry about ambiguous (ARM or ANSI) scope rules. */
590 unsigned is_for_scope : 1;
592 /* True if this level corresponds to an EH region, as for a try block. */
593 unsigned eh_region : 1;
595 /* One bit left for this word. */
597 #if defined(DEBUG_CP_BINDING_LEVELS)
598 /* Binding depth at which this level began. */
599 unsigned binding_depth;
600 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
603 #define NULL_BINDING_LEVEL ((struct binding_level *) NULL)
605 /* The binding level currently in effect. */
607 #define current_binding_level cp_function_chain->binding_level
609 /* The binding level of the current class, if any. */
611 #define class_binding_level scope_chain->class_bindings
613 /* A chain of binding_level structures awaiting reuse. */
615 static struct binding_level *free_binding_level;
617 /* The outermost binding level, for names of file scope.
618 This is created when the compiler is started and exists
619 through the entire run. */
621 static struct binding_level *global_binding_level;
623 /* Nonzero means unconditionally make a BLOCK for the next level pushed. */
625 static int keep_next_level_flag;
627 #if defined(DEBUG_CP_BINDING_LEVELS)
628 static int binding_depth = 0;
629 static int is_class_level = 0;
631 static void
632 indent ()
634 register unsigned i;
636 for (i = 0; i < binding_depth*2; i++)
637 putc (' ', stderr);
639 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
641 static tree pushdecl_with_scope PROTO((tree, struct binding_level *));
643 static void
644 push_binding_level (newlevel, tag_transparent, keep)
645 struct binding_level *newlevel;
646 int tag_transparent, keep;
648 /* Add this level to the front of the chain (stack) of levels that
649 are active. */
650 bzero ((char*) newlevel, sizeof (struct binding_level));
651 newlevel->level_chain = current_binding_level;
652 current_binding_level = newlevel;
653 newlevel->tag_transparent = tag_transparent;
654 newlevel->more_cleanups_ok = 1;
656 /* We are called before expand_start_bindings, but after
657 expand_eh_region_start for a try block; so we check this now,
658 before the EH block is covered up. */
659 newlevel->eh_region = is_eh_region ();
661 newlevel->keep = keep;
662 #if defined(DEBUG_CP_BINDING_LEVELS)
663 newlevel->binding_depth = binding_depth;
664 indent ();
665 fprintf (stderr, "push %s level 0x%08x line %d\n",
666 (is_class_level) ? "class" : "block", newlevel, lineno);
667 is_class_level = 0;
668 binding_depth++;
669 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
672 /* Find the innermost enclosing class scope, and reset
673 CLASS_BINDING_LEVEL appropriately. */
675 static void
676 find_class_binding_level ()
678 struct binding_level *level = current_binding_level;
680 while (level && level->parm_flag != 2)
681 level = level->level_chain;
682 if (level && level->parm_flag == 2)
683 class_binding_level = level;
684 else
685 class_binding_level = 0;
688 static void
689 pop_binding_level ()
691 if (global_binding_level)
693 /* Cannot pop a level, if there are none left to pop. */
694 if (current_binding_level == global_binding_level)
695 my_friendly_abort (123);
697 /* Pop the current level, and free the structure for reuse. */
698 #if defined(DEBUG_CP_BINDING_LEVELS)
699 binding_depth--;
700 indent ();
701 fprintf (stderr, "pop %s level 0x%08x line %d\n",
702 (is_class_level) ? "class" : "block",
703 current_binding_level, lineno);
704 if (is_class_level != (current_binding_level == class_binding_level))
706 indent ();
707 fprintf (stderr, "XXX is_class_level != (current_binding_level == class_binding_level)\n");
709 is_class_level = 0;
710 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
712 register struct binding_level *level = current_binding_level;
713 current_binding_level = current_binding_level->level_chain;
714 level->level_chain = free_binding_level;
715 #if 0 /* defined(DEBUG_CP_BINDING_LEVELS) */
716 if (level->binding_depth != binding_depth)
717 abort ();
718 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
719 free_binding_level = level;
720 find_class_binding_level ();
724 static void
725 suspend_binding_level ()
727 if (class_binding_level)
728 current_binding_level = class_binding_level;
730 if (global_binding_level)
732 /* Cannot suspend a level, if there are none left to suspend. */
733 if (current_binding_level == global_binding_level)
734 my_friendly_abort (123);
736 /* Suspend the current level. */
737 #if defined(DEBUG_CP_BINDING_LEVELS)
738 binding_depth--;
739 indent ();
740 fprintf (stderr, "suspend %s level 0x%08x line %d\n",
741 (is_class_level) ? "class" : "block",
742 current_binding_level, lineno);
743 if (is_class_level != (current_binding_level == class_binding_level))
745 indent ();
746 fprintf (stderr, "XXX is_class_level != (current_binding_level == class_binding_level)\n");
748 is_class_level = 0;
749 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
750 current_binding_level = current_binding_level->level_chain;
751 find_class_binding_level ();
754 static void
755 resume_binding_level (b)
756 struct binding_level *b;
758 /* Resuming binding levels is meant only for namespaces,
759 and those cannot nest into classes. */
760 my_friendly_assert(!class_binding_level, 386);
761 /* Also, resuming a non-directly nested namespace is a no-no. */
762 my_friendly_assert(b->level_chain == current_binding_level, 386);
763 current_binding_level = b;
764 #if defined(DEBUG_CP_BINDING_LEVELS)
765 b->binding_depth = binding_depth;
766 indent ();
767 fprintf (stderr, "resume %s level 0x%08x line %d\n",
768 (is_class_level) ? "class" : "block", b, lineno);
769 is_class_level = 0;
770 binding_depth++;
771 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
774 /* Create a new `struct binding_level'. */
776 static
777 struct binding_level *
778 make_binding_level ()
780 /* NOSTRICT */
781 return (struct binding_level *) xmalloc (sizeof (struct binding_level));
784 /* Nonzero if we are currently in the global binding level. */
787 global_bindings_p ()
789 return current_binding_level == global_binding_level;
792 /* Return the innermost binding level that is not for a class scope. */
794 static struct binding_level *
795 innermost_nonclass_level ()
797 struct binding_level *b;
799 b = current_binding_level;
800 while (b->parm_flag == 2)
801 b = b->level_chain;
803 return b;
806 /* Nonzero if we are currently in a toplevel binding level. This
807 means either the global binding level or a namespace in a toplevel
808 binding level. Since there are no non-toplevel namespace levels,
809 this really means any namespace or pseudo-global level. We also
810 include a class whose context is toplevel. */
813 toplevel_bindings_p ()
815 struct binding_level *b = innermost_nonclass_level ();
817 return b->namespace_p || b->pseudo_global;
820 /* Nonzero if this is a namespace scope, or if we are defining a class
821 which is itself at namespace scope, or whose enclosing class is
822 such a class, etc. */
825 namespace_bindings_p ()
827 struct binding_level *b = innermost_nonclass_level ();
829 return b->namespace_p;
832 /* If KEEP is non-zero, make a BLOCK node for the next binding level,
833 unconditionally. Otherwise, use the normal logic to decide whether
834 or not to create a BLOCK. */
836 void
837 keep_next_level (keep)
838 int keep;
840 keep_next_level_flag = keep;
843 /* Nonzero if the current level needs to have a BLOCK made. */
846 kept_level_p ()
848 return (current_binding_level->blocks != NULL_TREE
849 || current_binding_level->keep
850 || current_binding_level->names != NULL_TREE
851 || (current_binding_level->tags != NULL_TREE
852 && !current_binding_level->tag_transparent));
855 /* Identify this binding level as a level of parameters. */
857 void
858 declare_parm_level ()
860 current_binding_level->parm_flag = 1;
863 void
864 declare_pseudo_global_level ()
866 current_binding_level->pseudo_global = 1;
869 static void
870 declare_namespace_level ()
872 current_binding_level->namespace_p = 1;
876 pseudo_global_level_p ()
878 return current_binding_level->pseudo_global;
881 void
882 set_class_shadows (shadows)
883 tree shadows;
885 class_binding_level->class_shadowed = shadows;
888 /* Enter a new binding level.
889 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
890 not for that of tags. */
892 void
893 pushlevel (tag_transparent)
894 int tag_transparent;
896 register struct binding_level *newlevel = NULL_BINDING_LEVEL;
898 /* If this is the top level of a function,
899 just make sure that NAMED_LABELS is 0.
900 They should have been set to 0 at the end of the previous function. */
902 if (current_binding_level == global_binding_level)
903 my_friendly_assert (named_labels == NULL_TREE, 134);
905 /* Reuse or create a struct for this binding level. */
907 #if defined(DEBUG_CP_BINDING_LEVELS)
908 if (0)
909 #else /* !defined(DEBUG_CP_BINDING_LEVELS) */
910 if (free_binding_level)
911 #endif /* !defined(DEBUG_CP_BINDING_LEVELS) */
913 newlevel = free_binding_level;
914 free_binding_level = free_binding_level->level_chain;
916 else
917 newlevel = make_binding_level ();
919 push_binding_level (newlevel, tag_transparent, keep_next_level_flag);
920 GNU_xref_start_scope ((HOST_WIDE_INT) newlevel);
921 keep_next_level_flag = 0;
924 void
925 note_level_for_for ()
927 current_binding_level->is_for_scope = 1;
930 void
931 pushlevel_temporary (tag_transparent)
932 int tag_transparent;
934 pushlevel (tag_transparent);
935 current_binding_level->keep = 2;
936 clear_last_expr ();
938 /* Note we don't call push_momentary() here. Otherwise, it would cause
939 cleanups to be allocated on the momentary obstack, and they will be
940 overwritten by the next statement. */
942 expand_start_bindings (0);
945 /* For a binding between a name and an entity at a block scope,
946 this is the `struct binding_level' for the block. */
947 #define BINDING_LEVEL(NODE) \
948 (((struct tree_binding*)NODE)->scope.level)
950 /* Make DECL the innermost binding for ID. The LEVEL is the binding
951 level at which this declaration is being bound. */
953 static void
954 push_binding (id, decl, level)
955 tree id;
956 tree decl;
957 struct binding_level* level;
959 tree binding;
961 binding = make_node (CPLUS_BINDING);
963 /* Now, fill in the binding information. */
964 BINDING_VALUE (binding) = decl;
965 BINDING_TYPE (binding) = NULL_TREE;
966 BINDING_LEVEL (binding) = level;
967 INHERITED_VALUE_BINDING_P (binding) = 0;
968 LOCAL_BINDING_P (binding) = (level != class_binding_level);
969 BINDING_HAS_LEVEL_P (binding) = 1;
971 /* And put it on the front of the list of bindings for ID. */
972 TREE_CHAIN (binding) = IDENTIFIER_BINDING (id);
973 IDENTIFIER_BINDING (id) = binding;
976 /* ID is already bound in the current scope. But, DECL is an
977 additional binding for ID in the same scope. This is the `struct
978 stat' hack whereby a non-typedef class-name or enum-name can be
979 bound at the same level as some other kind of entity. It's the
980 responsibility of the caller to check that inserting this name is
981 legal here. Returns nonzero if the new binding was successful. */
982 static int
983 add_binding (id, decl)
984 tree id;
985 tree decl;
987 tree binding = IDENTIFIER_BINDING (id);
988 int ok = 1;
990 if (TREE_CODE (decl) == TYPE_DECL && DECL_ARTIFICIAL (decl))
991 /* The new name is the type name. */
992 BINDING_TYPE (binding) = decl;
993 else if (!BINDING_VALUE (binding))
994 /* This situation arises when push_class_level_binding moves an
995 inherited type-binding out of the way to make room for a new
996 value binding. */
997 BINDING_VALUE (binding) = decl;
998 else if (TREE_CODE (BINDING_VALUE (binding)) == TYPE_DECL
999 && DECL_ARTIFICIAL (BINDING_VALUE (binding)))
1001 /* The old binding was a type name. It was placed in
1002 BINDING_VALUE because it was thought, at the point it was
1003 declared, to be the only entity with such a name. Move the
1004 type name into the type slot; it is now hidden by the new
1005 binding. */
1006 BINDING_TYPE (binding) = BINDING_VALUE (binding);
1007 BINDING_VALUE (binding) = decl;
1008 INHERITED_VALUE_BINDING_P (binding) = 0;
1010 else if (TREE_CODE (BINDING_VALUE (binding)) == TYPE_DECL
1011 && TREE_CODE (decl) == TYPE_DECL
1012 && DECL_NAME (decl) == DECL_NAME (BINDING_VALUE (binding))
1013 && same_type_p (TREE_TYPE (decl),
1014 TREE_TYPE (BINDING_VALUE (binding))))
1015 /* We have two typedef-names, both naming the same type to have
1016 the same name. This is OK because of:
1018 [dcl.typedef]
1020 In a given scope, a typedef specifier can be used to redefine
1021 the name of any type declared in that scope to refer to the
1022 type to which it already refers. */
1023 ok = 0;
1024 else
1026 cp_error ("declaration of `%#D'", decl);
1027 cp_error_at ("conflicts with previous declaration `%#D'",
1028 BINDING_VALUE (binding));
1029 ok = 0;
1032 return ok;
1035 /* Add DECL to the list of things declared in B. */
1037 static void
1038 add_decl_to_level (decl, b)
1039 tree decl;
1040 struct binding_level *b;
1042 /* Only things that will live forever should go in the global
1043 binding level. */
1044 my_friendly_assert (!(b == global_binding_level
1045 && !TREE_PERMANENT (decl)),
1046 19990817);
1048 /* We build up the list in reverse order, and reverse it later if
1049 necessary. */
1050 TREE_CHAIN (decl) = b->names;
1051 b->names = decl;
1054 /* Bind DECL to ID in the current_binding_level, assumed to be a local
1055 binding level. If PUSH_USING is set in FLAGS, we know that DECL
1056 doesn't really belong to this binding level, that it got here
1057 through a using-declaration. */
1059 void
1060 push_local_binding (id, decl, flags)
1061 tree id;
1062 tree decl;
1063 int flags;
1065 struct binding_level *b;
1067 /* Skip over any local classes. This makes sense if we call
1068 push_local_binding with a friend decl of a local class. */
1069 b = current_binding_level;
1070 while (b->parm_flag == 2)
1071 b = b->level_chain;
1073 if (lookup_name_current_level (id))
1075 /* Supplement the existing binding. */
1076 if (!add_binding (id, decl))
1077 /* It didn't work. Something else must be bound at this
1078 level. Do not add DECL to the list of things to pop
1079 later. */
1080 return;
1082 else
1083 /* Create a new binding. */
1084 push_binding (id, decl, b);
1086 if (TREE_CODE (decl) == OVERLOAD || (flags & PUSH_USING))
1087 /* We must put the OVERLOAD into a TREE_LIST since the
1088 TREE_CHAIN of an OVERLOAD is already used. Similarly for
1089 decls that got here through a using-declaration. */
1090 decl = build_tree_list (NULL_TREE, decl);
1092 /* And put DECL on the list of things declared by the current
1093 binding level. */
1094 add_decl_to_level (decl, b);
1097 /* Bind DECL to ID in the class_binding_level. Returns nonzero if the
1098 binding was successful. */
1101 push_class_binding (id, decl)
1102 tree id;
1103 tree decl;
1105 int result = 1;
1106 tree binding = IDENTIFIER_BINDING (id);
1107 tree context;
1109 /* Note that we declared this value so that we can issue an error if
1110 this an illegal redeclaration of a name already used for some
1111 other purpose. */
1112 note_name_declared_in_class (id, decl);
1114 if (binding && BINDING_LEVEL (binding) == class_binding_level)
1115 /* Supplement the existing binding. */
1116 result = add_binding (id, decl);
1117 else
1118 /* Create a new binding. */
1119 push_binding (id, decl, class_binding_level);
1121 /* Update the IDENTIFIER_CLASS_VALUE for this ID to be the
1122 class-level declaration. Note that we do not use DECL here
1123 because of the possibility of the `struct stat' hack; if DECL is
1124 a class-name or enum-name we might prefer a field-name, or some
1125 such. */
1126 IDENTIFIER_CLASS_VALUE (id) = BINDING_VALUE (IDENTIFIER_BINDING (id));
1128 /* If this is a binding from a base class, mark it as such. */
1129 binding = IDENTIFIER_BINDING (id);
1130 if (BINDING_VALUE (binding) == decl && TREE_CODE (decl) != TREE_LIST)
1132 /* Any implicit typename must be from a base-class. The
1133 context for an implicit typename declaration is always
1134 the derived class in which the lookup was done, so the checks
1135 based on the context of DECL below will not trigger. */
1136 if (IMPLICIT_TYPENAME_TYPE_DECL_P (decl))
1137 INHERITED_VALUE_BINDING_P (binding) = 1;
1138 else
1140 if (TREE_CODE (decl) == OVERLOAD)
1141 context = DECL_REAL_CONTEXT (OVL_CURRENT (decl));
1142 else
1144 my_friendly_assert (TREE_CODE_CLASS (TREE_CODE (decl)) == 'd',
1146 context = DECL_REAL_CONTEXT (decl);
1149 if (is_properly_derived_from (current_class_type, context))
1150 INHERITED_VALUE_BINDING_P (binding) = 1;
1151 else
1152 INHERITED_VALUE_BINDING_P (binding) = 0;
1155 else if (BINDING_VALUE (binding) == decl)
1156 /* We only encounter a TREE_LIST when push_class_decls detects an
1157 ambiguity. Such an ambiguity can be overridden by a definition
1158 in this class. */
1159 INHERITED_VALUE_BINDING_P (binding) = 1;
1161 return result;
1164 /* Remove the binding for DECL which should be the innermost binding
1165 for ID. */
1167 static void
1168 pop_binding (id, decl)
1169 tree id;
1170 tree decl;
1172 tree binding;
1174 if (id == NULL_TREE)
1175 /* It's easiest to write the loops that call this function without
1176 checking whether or not the entities involved have names. We
1177 get here for such an entity. */
1178 return;
1180 /* Get the innermost binding for ID. */
1181 binding = IDENTIFIER_BINDING (id);
1183 /* The name should be bound. */
1184 my_friendly_assert (binding != NULL_TREE, 0);
1186 /* The DECL will be either the ordinary binding or the type
1187 binding for this identifier. Remove that binding. */
1188 if (BINDING_VALUE (binding) == decl)
1189 BINDING_VALUE (binding) = NULL_TREE;
1190 else if (BINDING_TYPE (binding) == decl)
1191 BINDING_TYPE (binding) = NULL_TREE;
1192 else
1193 my_friendly_abort (0);
1195 if (!BINDING_VALUE (binding) && !BINDING_TYPE (binding))
1196 /* We're completely done with the innermost binding for this
1197 identifier. Unhook it from the list of bindings. */
1198 IDENTIFIER_BINDING (id) = TREE_CHAIN (binding);
1201 /* When a label goes out of scope, check to see if that label was used
1202 in a valid manner, and issue any appropriate warnings or errors. */
1204 static void
1205 pop_label (link)
1206 tree link;
1208 tree label = TREE_VALUE (link);
1210 if (DECL_INITIAL (label) == NULL_TREE)
1212 cp_error_at ("label `%D' used but not defined", label);
1213 /* Avoid crashing later. */
1214 define_label (input_filename, 1, DECL_NAME (label));
1216 else if (warn_unused && !TREE_USED (label))
1217 cp_warning_at ("label `%D' defined but not used", label);
1219 SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (label), TREE_PURPOSE (link));
1222 /* At the end of a function, all labels declared within the fucntion
1223 go out of scope. BLOCK is the top-level block for the
1224 function. */
1226 static void
1227 pop_labels (block)
1228 tree block;
1230 tree link;
1232 /* Clear out the definitions of all label names, since their scopes
1233 end here. */
1234 for (link = named_labels; link; link = TREE_CHAIN (link))
1236 pop_label (link);
1237 /* Put the labels into the "variables" of the top-level block,
1238 so debugger can see them. */
1239 TREE_CHAIN (TREE_VALUE (link)) = BLOCK_VARS (block);
1240 BLOCK_VARS (block) = TREE_VALUE (link);
1243 named_labels = NULL_TREE;
1246 /* Exit a binding level.
1247 Pop the level off, and restore the state of the identifier-decl mappings
1248 that were in effect when this level was entered.
1250 If KEEP == 1, this level had explicit declarations, so
1251 and create a "block" (a BLOCK node) for the level
1252 to record its declarations and subblocks for symbol table output.
1254 If FUNCTIONBODY is nonzero, this level is the body of a function,
1255 so create a block as if KEEP were set and also clear out all
1256 label names.
1258 If REVERSE is nonzero, reverse the order of decls before putting
1259 them into the BLOCK. */
1261 tree
1262 poplevel (keep, reverse, functionbody)
1263 int keep;
1264 int reverse;
1265 int functionbody;
1267 register tree link;
1268 /* The chain of decls was accumulated in reverse order.
1269 Put it into forward order, just for cleanliness. */
1270 tree decls;
1271 int tmp = functionbody;
1272 int real_functionbody = current_binding_level->keep == 2
1273 ? ((functionbody = 0), tmp) : functionbody;
1274 tree tags = functionbody >= 0 ? current_binding_level->tags : 0;
1275 tree subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
1276 tree block = NULL_TREE;
1277 tree decl;
1278 int block_previously_created;
1279 int leaving_for_scope;
1281 if (current_binding_level->parm_flag == 2)
1282 return poplevel_class ();
1284 my_friendly_assert (!current_binding_level->class_shadowed,
1285 19990414);
1287 /* We used to use KEEP == 2 to indicate that the new block should go
1288 at the beginning of the list of blocks at this binding level,
1289 rather than the end. This hack is no longer used. */
1290 my_friendly_assert (keep == 0 || keep == 1, 0);
1292 GNU_xref_end_scope ((HOST_WIDE_INT) current_binding_level,
1293 (HOST_WIDE_INT) current_binding_level->level_chain,
1294 current_binding_level->parm_flag,
1295 current_binding_level->keep);
1297 if (current_binding_level->keep == 1)
1298 keep = 1;
1300 /* Get the decls in the order they were written.
1301 Usually current_binding_level->names is in reverse order.
1302 But parameter decls were previously put in forward order. */
1304 if (reverse)
1305 current_binding_level->names
1306 = decls = nreverse (current_binding_level->names);
1307 else
1308 decls = current_binding_level->names;
1310 /* Output any nested inline functions within this block
1311 if they weren't already output. */
1313 for (decl = decls; decl; decl = TREE_CHAIN (decl))
1314 if (TREE_CODE (decl) == FUNCTION_DECL
1315 && ! TREE_ASM_WRITTEN (decl)
1316 && DECL_INITIAL (decl) != NULL_TREE
1317 && TREE_ADDRESSABLE (decl)
1318 && decl_function_context (decl) == current_function_decl)
1320 /* If this decl was copied from a file-scope decl
1321 on account of a block-scope extern decl,
1322 propagate TREE_ADDRESSABLE to the file-scope decl. */
1323 if (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE)
1324 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
1325 else
1327 push_function_context ();
1328 output_inline_function (decl);
1329 pop_function_context ();
1333 /* If there were any declarations or structure tags in that level,
1334 or if this level is a function body,
1335 create a BLOCK to record them for the life of this function. */
1337 block = NULL_TREE;
1338 block_previously_created = (current_binding_level->this_block != NULL_TREE);
1339 if (block_previously_created)
1340 block = current_binding_level->this_block;
1341 else if (keep == 1 || functionbody)
1342 block = make_node (BLOCK);
1343 if (block != NULL_TREE)
1345 if (block_previously_created)
1347 if (decls || tags || subblocks)
1349 if (BLOCK_VARS (block) || BLOCK_TYPE_TAGS (block))
1350 warning ("internal compiler error: debugging info corrupted");
1352 BLOCK_VARS (block) = decls;
1353 BLOCK_TYPE_TAGS (block) = tags;
1355 /* We can have previous subblocks and new subblocks when
1356 doing fixup_gotos with complex cleanups. We chain the new
1357 subblocks onto the end of any pre-existing subblocks. */
1358 BLOCK_SUBBLOCKS (block) = chainon (BLOCK_SUBBLOCKS (block),
1359 subblocks);
1361 /* If we created the block earlier on, and we are just
1362 diddling it now, then it already should have a proper
1363 BLOCK_END_NOTE value associated with it. */
1365 else
1367 BLOCK_VARS (block) = decls;
1368 BLOCK_TYPE_TAGS (block) = tags;
1369 BLOCK_SUBBLOCKS (block) = subblocks;
1370 /* Otherwise, for a new block, install a new BLOCK_END_NOTE
1371 value. */
1372 remember_end_note (block);
1376 /* In each subblock, record that this is its superior. */
1378 if (keep >= 0)
1379 for (link = subblocks; link; link = TREE_CHAIN (link))
1380 BLOCK_SUPERCONTEXT (link) = block;
1382 /* We still support the old for-scope rules, whereby the variables
1383 in a for-init statement were in scope after the for-statement
1384 ended. We only use the new rules in flag_new_for_scope is
1385 nonzero. */
1386 leaving_for_scope
1387 = current_binding_level->is_for_scope && flag_new_for_scope == 1;
1389 /* Remove declarations for all the DECLs in this level. */
1390 for (link = decls; link; link = TREE_CHAIN (link))
1392 if (leaving_for_scope && TREE_CODE (link) == VAR_DECL)
1394 tree outer_binding
1395 = TREE_CHAIN (IDENTIFIER_BINDING (DECL_NAME (link)));
1396 tree ns_binding;
1398 if (!outer_binding)
1399 ns_binding = IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (link));
1400 else
1401 ns_binding = NULL_TREE;
1403 if (outer_binding
1404 && (BINDING_LEVEL (outer_binding)
1405 == current_binding_level->level_chain))
1406 /* We have something like:
1408 int i;
1409 for (int i; ;);
1411 and we are leaving the `for' scope. There's no reason to
1412 keep the binding of the inner `i' in this case. */
1413 pop_binding (DECL_NAME (link), link);
1414 else if ((outer_binding
1415 && (TREE_CODE (BINDING_VALUE (outer_binding))
1416 == TYPE_DECL))
1417 || (ns_binding
1418 && TREE_CODE (ns_binding) == TYPE_DECL))
1419 /* Here, we have something like:
1421 typedef int I;
1423 void f () {
1424 for (int I; ;);
1427 We must pop the for-scope binding so we know what's a
1428 type and what isn't. */
1429 pop_binding (DECL_NAME (link), link);
1430 else
1432 /* Mark this VAR_DECL as dead so that we can tell we left it
1433 there only for backward compatibility. */
1434 DECL_DEAD_FOR_LOCAL (link) = 1;
1436 /* Keep track of what should of have happenned when we
1437 popped the binding. */
1438 if (outer_binding && BINDING_VALUE (outer_binding))
1439 DECL_SHADOWED_FOR_VAR (link)
1440 = BINDING_VALUE (outer_binding);
1442 /* Add it to the list of dead variables in the next
1443 outermost binding to that we can remove these when we
1444 leave that binding. */
1445 current_binding_level->level_chain->dead_vars_from_for
1446 = tree_cons (NULL_TREE, link,
1447 current_binding_level->level_chain->
1448 dead_vars_from_for);
1450 /* Although we don't pop the CPLUS_BINDING, we do clear
1451 its BINDING_LEVEL since the level is going away now. */
1452 BINDING_LEVEL (IDENTIFIER_BINDING (DECL_NAME (link)))
1453 = 0;
1456 else
1458 /* Remove the binding. */
1459 decl = link;
1460 if (TREE_CODE (decl) == TREE_LIST)
1461 decl = TREE_VALUE (decl);
1462 if (TREE_CODE_CLASS (TREE_CODE (decl)) == 'd')
1463 pop_binding (DECL_NAME (decl), decl);
1464 else if (TREE_CODE (decl) == OVERLOAD)
1465 pop_binding (DECL_NAME (OVL_FUNCTION (decl)), decl);
1466 else
1467 my_friendly_abort (0);
1471 /* Remove declarations for any `for' variables from inner scopes
1472 that we kept around. */
1473 for (link = current_binding_level->dead_vars_from_for;
1474 link; link = TREE_CHAIN (link))
1475 pop_binding (DECL_NAME (TREE_VALUE (link)), TREE_VALUE (link));
1477 /* Restore the IDENTIFIER_TYPE_VALUEs. */
1478 for (link = current_binding_level->type_shadowed;
1479 link; link = TREE_CHAIN (link))
1480 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
1482 /* Restore the IDENTIFIER_LABEL_VALUEs for local labels. */
1483 for (link = current_binding_level->shadowed_labels;
1484 link;
1485 link = TREE_CHAIN (link))
1486 pop_label (link);
1488 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
1489 list if a `using' declaration put them there. The debugging
1490 back-ends won't understand OVERLOAD, so we remove them here.
1491 Because the BLOCK_VARS are (temporarily) shared with
1492 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
1493 popped all the bindings. */
1494 if (block)
1496 tree* d;
1498 for (d = &BLOCK_VARS (block); *d; )
1500 if (TREE_CODE (*d) == TREE_LIST)
1501 *d = TREE_CHAIN (*d);
1502 else
1503 d = &TREE_CHAIN (*d);
1507 /* If the level being exited is the top level of a function,
1508 check over all the labels. */
1509 if (functionbody)
1511 /* Since this is the top level block of a function, the vars are
1512 the function's parameters. Don't leave them in the BLOCK
1513 because they are found in the FUNCTION_DECL instead. */
1514 BLOCK_VARS (block) = 0;
1515 pop_labels (block);
1518 /* Any uses of undefined labels now operate under constraints
1519 of next binding contour. */
1521 struct binding_level *level_chain;
1522 level_chain = current_binding_level->level_chain;
1523 if (level_chain)
1525 struct named_label_list *labels;
1526 for (labels = named_label_uses; labels; labels = labels->next)
1527 if (labels->binding_level == current_binding_level)
1529 labels->binding_level = level_chain;
1530 labels->names_in_scope = level_chain->names;
1535 tmp = current_binding_level->keep;
1537 pop_binding_level ();
1538 if (functionbody)
1539 DECL_INITIAL (current_function_decl) = block;
1540 else if (block)
1542 if (!block_previously_created)
1543 current_binding_level->blocks
1544 = chainon (current_binding_level->blocks, block);
1546 /* If we did not make a block for the level just exited,
1547 any blocks made for inner levels
1548 (since they cannot be recorded as subblocks in that level)
1549 must be carried forward so they will later become subblocks
1550 of something else. */
1551 else if (subblocks)
1552 current_binding_level->blocks
1553 = chainon (current_binding_level->blocks, subblocks);
1555 /* Take care of compiler's internal binding structures. */
1556 if (tmp == 2)
1558 expand_end_bindings (getdecls (), keep, 1);
1559 /* Each and every BLOCK node created here in `poplevel' is important
1560 (e.g. for proper debugging information) so if we created one
1561 earlier, mark it as "used". */
1562 if (block)
1563 TREE_USED (block) = 1;
1564 block = poplevel (keep, reverse, real_functionbody);
1567 /* Each and every BLOCK node created here in `poplevel' is important
1568 (e.g. for proper debugging information) so if we created one
1569 earlier, mark it as "used". */
1570 if (block)
1571 TREE_USED (block) = 1;
1572 return block;
1575 /* Delete the node BLOCK from the current binding level.
1576 This is used for the block inside a stmt expr ({...})
1577 so that the block can be reinserted where appropriate. */
1579 void
1580 delete_block (block)
1581 tree block;
1583 tree t;
1584 if (current_binding_level->blocks == block)
1585 current_binding_level->blocks = TREE_CHAIN (block);
1586 for (t = current_binding_level->blocks; t;)
1588 if (TREE_CHAIN (t) == block)
1589 TREE_CHAIN (t) = TREE_CHAIN (block);
1590 else
1591 t = TREE_CHAIN (t);
1593 TREE_CHAIN (block) = NULL_TREE;
1594 /* Clear TREE_USED which is always set by poplevel.
1595 The flag is set again if insert_block is called. */
1596 TREE_USED (block) = 0;
1599 /* Insert BLOCK at the end of the list of subblocks of the
1600 current binding level. This is used when a BIND_EXPR is expanded,
1601 to handle the BLOCK node inside the BIND_EXPR. */
1603 void
1604 insert_block (block)
1605 tree block;
1607 TREE_USED (block) = 1;
1608 current_binding_level->blocks
1609 = chainon (current_binding_level->blocks, block);
1612 /* Set the BLOCK node for the innermost scope
1613 (the one we are currently in). */
1615 void
1616 set_block (block)
1617 register tree block;
1619 current_binding_level->this_block = block;
1622 /* Do a pushlevel for class declarations. */
1624 void
1625 pushlevel_class ()
1627 register struct binding_level *newlevel;
1629 /* Reuse or create a struct for this binding level. */
1630 #if defined(DEBUG_CP_BINDING_LEVELS)
1631 if (0)
1632 #else /* !defined(DEBUG_CP_BINDING_LEVELS) */
1633 if (free_binding_level)
1634 #endif /* !defined(DEBUG_CP_BINDING_LEVELS) */
1636 newlevel = free_binding_level;
1637 free_binding_level = free_binding_level->level_chain;
1639 else
1640 newlevel = make_binding_level ();
1642 #if defined(DEBUG_CP_BINDING_LEVELS)
1643 is_class_level = 1;
1644 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
1646 push_binding_level (newlevel, 0, 0);
1648 decl_stack = push_decl_level (decl_stack, &decl_obstack);
1649 class_binding_level = current_binding_level;
1650 class_binding_level->parm_flag = 2;
1653 /* ...and a poplevel for class declarations. */
1655 static tree
1656 poplevel_class ()
1658 register struct binding_level *level = class_binding_level;
1659 tree shadowed;
1661 my_friendly_assert (level != 0, 354);
1663 decl_stack = pop_stack_level (decl_stack);
1664 /* If we're leaving a toplevel class, don't bother to do the setting
1665 of IDENTIFIER_CLASS_VALUE to NULL_TREE, since first of all this slot
1666 shouldn't even be used when current_class_type isn't set, and second,
1667 if we don't touch it here, we're able to use the cache effect if the
1668 next time we're entering a class scope, it is the same class. */
1669 if (current_class_depth != 1)
1671 struct binding_level* b;
1673 /* Clear out our IDENTIFIER_CLASS_VALUEs. */
1674 for (shadowed = level->class_shadowed;
1675 shadowed;
1676 shadowed = TREE_CHAIN (shadowed))
1677 IDENTIFIER_CLASS_VALUE (TREE_PURPOSE (shadowed)) = NULL_TREE;
1679 /* Find the next enclosing class, and recreate
1680 IDENTIFIER_CLASS_VALUEs appropriate for that class. */
1681 b = level->level_chain;
1682 while (b && b->parm_flag != 2)
1683 b = b->level_chain;
1685 if (b)
1686 for (shadowed = b->class_shadowed;
1687 shadowed;
1688 shadowed = TREE_CHAIN (shadowed))
1690 tree t;
1692 t = IDENTIFIER_BINDING (TREE_PURPOSE (shadowed));
1693 while (t && BINDING_LEVEL (t) != b)
1694 t = TREE_CHAIN (t);
1696 if (t)
1697 IDENTIFIER_CLASS_VALUE (TREE_PURPOSE (shadowed))
1698 = BINDING_VALUE (t);
1701 else
1702 /* Remember to save what IDENTIFIER's were bound in this scope so we
1703 can recover from cache misses. */
1705 previous_class_type = current_class_type;
1706 previous_class_values = class_binding_level->class_shadowed;
1708 for (shadowed = level->type_shadowed;
1709 shadowed;
1710 shadowed = TREE_CHAIN (shadowed))
1711 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (shadowed), TREE_VALUE (shadowed));
1713 /* Remove the bindings for all of the class-level declarations. */
1714 for (shadowed = level->class_shadowed;
1715 shadowed;
1716 shadowed = TREE_CHAIN (shadowed))
1717 pop_binding (TREE_PURPOSE (shadowed), TREE_TYPE (shadowed));
1719 GNU_xref_end_scope ((HOST_WIDE_INT) class_binding_level,
1720 (HOST_WIDE_INT) class_binding_level->level_chain,
1721 class_binding_level->parm_flag,
1722 class_binding_level->keep);
1724 /* Now, pop out of the binding level which we created up in the
1725 `pushlevel_class' routine. */
1726 #if defined(DEBUG_CP_BINDING_LEVELS)
1727 is_class_level = 1;
1728 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
1730 pop_binding_level ();
1732 return NULL_TREE;
1735 /* We are entering the scope of a class. Clear IDENTIFIER_CLASS_VALUE
1736 for any names in enclosing classes. */
1738 void
1739 clear_identifier_class_values ()
1741 tree t;
1743 if (!class_binding_level)
1744 return;
1746 for (t = class_binding_level->class_shadowed;
1748 t = TREE_CHAIN (t))
1749 IDENTIFIER_CLASS_VALUE (TREE_PURPOSE (t)) = NULL_TREE;
1752 /* Returns non-zero if T is a virtual function table. */
1755 vtable_decl_p (t, data)
1756 tree t;
1757 void *data ATTRIBUTE_UNUSED;
1759 return (TREE_CODE (t) == VAR_DECL && DECL_VIRTUAL_P (t));
1762 /* Returns non-zero if T is a TYPE_DECL for a type with virtual
1763 functions. */
1766 vtype_decl_p (t, data)
1767 tree t;
1768 void *data ATTRIBUTE_UNUSED;
1770 return (TREE_CODE (t) == TYPE_DECL
1771 && TREE_TYPE (t) != error_mark_node
1772 && TYPE_LANG_SPECIFIC (TREE_TYPE (t))
1773 && CLASSTYPE_VSIZE (TREE_TYPE (t)));
1776 /* Return the declarations that are members of the namespace NS. */
1778 tree
1779 cp_namespace_decls (ns)
1780 tree ns;
1782 return NAMESPACE_LEVEL (ns)->names;
1785 /* Walk all the namespaces contained NAMESPACE, including NAMESPACE
1786 itself, calling F for each. The DATA is passed to F as well. */
1788 static int
1789 walk_namespaces_r (namespace, f, data)
1790 tree namespace;
1791 walk_namespaces_fn f;
1792 void *data;
1794 tree current;
1795 int result = 0;
1797 result |= (*f) (namespace, data);
1799 for (current = cp_namespace_decls (namespace);
1800 current;
1801 current = TREE_CHAIN (current))
1803 if (TREE_CODE (current) != NAMESPACE_DECL
1804 || DECL_NAMESPACE_ALIAS (current))
1805 continue;
1806 if (!DECL_LANG_SPECIFIC (current))
1808 /* Hmm. std. */
1809 my_friendly_assert (current == std_node, 393);
1810 continue;
1813 /* We found a namespace. */
1814 result |= walk_namespaces_r (current, f, data);
1817 return result;
1820 /* Walk all the namespaces, calling F for each. The DATA is passed to
1821 F as well. */
1824 walk_namespaces (f, data)
1825 walk_namespaces_fn f;
1826 void *data;
1828 return walk_namespaces_r (global_namespace, f, data);
1831 struct walk_globals_data {
1832 walk_globals_pred p;
1833 walk_globals_fn f;
1834 void *data;
1837 /* Walk the global declarations in NAMESPACE. Whenever one is found
1838 for which P returns non-zero, call F with its address. If any call
1839 to F returns a non-zero value, return a non-zero value. */
1841 static int
1842 walk_globals_r (namespace, data)
1843 tree namespace;
1844 void *data;
1846 struct walk_globals_data* wgd = (struct walk_globals_data *) data;
1847 walk_globals_pred p = wgd->p;
1848 walk_globals_fn f = wgd->f;
1849 void *d = wgd->data;
1850 tree *t;
1851 int result = 0;
1853 t = &NAMESPACE_LEVEL (namespace)->names;
1855 while (*t)
1857 tree glbl = *t;
1859 if ((*p) (glbl, d))
1860 result |= (*f) (t, d);
1862 /* If F changed *T, then *T still points at the next item to
1863 examine. */
1864 if (*t == glbl)
1865 t = &TREE_CHAIN (*t);
1868 return result;
1871 /* Walk the global declarations. Whenever one is found for which P
1872 returns non-zero, call F with its address. If any call to F
1873 returns a non-zero value, return a non-zero value. */
1876 walk_globals (p, f, data)
1877 walk_globals_pred p;
1878 walk_globals_fn f;
1879 void *data;
1881 struct walk_globals_data wgd;
1882 wgd.p = p;
1883 wgd.f = f;
1884 wgd.data = data;
1886 return walk_namespaces (walk_globals_r, &wgd);
1889 /* Call wrapup_globals_declarations for the globals in NAMESPACE. If
1890 DATA is non-NULL, this is the last time we will call
1891 wrapup_global_declarations for this NAMESPACE. */
1894 wrapup_globals_for_namespace (namespace, data)
1895 tree namespace;
1896 void *data;
1898 tree globals = cp_namespace_decls (namespace);
1899 int len = list_length (globals);
1900 tree *vec = (tree *) alloca (sizeof (tree) * len);
1901 int i;
1902 int result;
1903 tree decl;
1904 int last_time = (data != 0);
1906 if (last_time && namespace == global_namespace)
1907 /* Let compile_file handle the global namespace. */
1908 return 0;
1910 /* Process the decls in reverse order--earliest first.
1911 Put them into VEC from back to front, then take out from front. */
1913 for (i = 0, decl = globals; i < len; i++, decl = TREE_CHAIN (decl))
1914 vec[len - i - 1] = decl;
1916 if (last_time)
1918 check_global_declarations (vec, len);
1919 return 0;
1922 /* Temporarily mark vtables as external. That prevents
1923 wrapup_global_declarations from writing them out; we must process
1924 them ourselves in finish_vtable_vardecl. */
1925 for (i = 0; i < len; ++i)
1926 if (vtable_decl_p (vec[i], /*data=*/0) && !DECL_EXTERNAL (vec[i]))
1928 DECL_NOT_REALLY_EXTERN (vec[i]) = 1;
1929 DECL_EXTERNAL (vec[i]) = 1;
1932 /* Write out any globals that need to be output. */
1933 result = wrapup_global_declarations (vec, len);
1935 /* Undo the hack to DECL_EXTERNAL above. */
1936 for (i = 0; i < len; ++i)
1937 if (vtable_decl_p (vec[i], /*data=*/0)
1938 && DECL_NOT_REALLY_EXTERN (vec[i]))
1940 DECL_NOT_REALLY_EXTERN (vec[i]) = 0;
1941 DECL_EXTERNAL (vec[i]) = 0;
1944 return result;
1948 /* Mark ARG (which is really a struct binding_level **) for GC. */
1950 static void
1951 mark_binding_level (arg)
1952 void *arg;
1954 struct binding_level *lvl = *(struct binding_level **)arg;
1956 while (lvl)
1958 ggc_mark_tree (lvl->names);
1959 ggc_mark_tree (lvl->tags);
1960 ggc_mark_tree (lvl->usings);
1961 ggc_mark_tree (lvl->using_directives);
1962 ggc_mark_tree (lvl->class_shadowed);
1963 ggc_mark_tree (lvl->type_shadowed);
1964 ggc_mark_tree (lvl->shadowed_labels);
1965 ggc_mark_tree (lvl->blocks);
1966 ggc_mark_tree (lvl->this_block);
1967 ggc_mark_tree (lvl->incomplete);
1968 ggc_mark_tree (lvl->dead_vars_from_for);
1970 lvl = lvl->level_chain;
1974 /* For debugging. */
1975 static int no_print_functions = 0;
1976 static int no_print_builtins = 0;
1978 void
1979 print_binding_level (lvl)
1980 struct binding_level *lvl;
1982 tree t;
1983 int i = 0, len;
1984 fprintf (stderr, " blocks=");
1985 fprintf (stderr, HOST_PTR_PRINTF, lvl->blocks);
1986 fprintf (stderr, " n_incomplete=%d parm_flag=%d keep=%d",
1987 list_length (lvl->incomplete), lvl->parm_flag, lvl->keep);
1988 if (lvl->tag_transparent)
1989 fprintf (stderr, " tag-transparent");
1990 if (lvl->more_cleanups_ok)
1991 fprintf (stderr, " more-cleanups-ok");
1992 if (lvl->have_cleanups)
1993 fprintf (stderr, " have-cleanups");
1994 fprintf (stderr, "\n");
1995 if (lvl->names)
1997 fprintf (stderr, " names:\t");
1998 /* We can probably fit 3 names to a line? */
1999 for (t = lvl->names; t; t = TREE_CHAIN (t))
2001 if (no_print_functions && (TREE_CODE (t) == FUNCTION_DECL))
2002 continue;
2003 if (no_print_builtins
2004 && (TREE_CODE (t) == TYPE_DECL)
2005 && (!strcmp (DECL_SOURCE_FILE (t),"<built-in>")))
2006 continue;
2008 /* Function decls tend to have longer names. */
2009 if (TREE_CODE (t) == FUNCTION_DECL)
2010 len = 3;
2011 else
2012 len = 2;
2013 i += len;
2014 if (i > 6)
2016 fprintf (stderr, "\n\t");
2017 i = len;
2019 print_node_brief (stderr, "", t, 0);
2020 if (t == error_mark_node)
2021 break;
2023 if (i)
2024 fprintf (stderr, "\n");
2026 if (lvl->tags)
2028 fprintf (stderr, " tags:\t");
2029 i = 0;
2030 for (t = lvl->tags; t; t = TREE_CHAIN (t))
2032 if (TREE_PURPOSE (t) == NULL_TREE)
2033 len = 3;
2034 else if (TREE_PURPOSE (t) == TYPE_IDENTIFIER (TREE_VALUE (t)))
2035 len = 2;
2036 else
2037 len = 4;
2038 i += len;
2039 if (i > 5)
2041 fprintf (stderr, "\n\t");
2042 i = len;
2044 if (TREE_PURPOSE (t) == NULL_TREE)
2046 print_node_brief (stderr, "<unnamed-typedef", TREE_VALUE (t), 0);
2047 fprintf (stderr, ">");
2049 else if (TREE_PURPOSE (t) == TYPE_IDENTIFIER (TREE_VALUE (t)))
2050 print_node_brief (stderr, "", TREE_VALUE (t), 0);
2051 else
2053 print_node_brief (stderr, "<typedef", TREE_PURPOSE (t), 0);
2054 print_node_brief (stderr, "", TREE_VALUE (t), 0);
2055 fprintf (stderr, ">");
2058 if (i)
2059 fprintf (stderr, "\n");
2061 if (lvl->class_shadowed)
2063 fprintf (stderr, " class-shadowed:");
2064 for (t = lvl->class_shadowed; t; t = TREE_CHAIN (t))
2066 fprintf (stderr, " %s ", IDENTIFIER_POINTER (TREE_PURPOSE (t)));
2068 fprintf (stderr, "\n");
2070 if (lvl->type_shadowed)
2072 fprintf (stderr, " type-shadowed:");
2073 for (t = lvl->type_shadowed; t; t = TREE_CHAIN (t))
2075 fprintf (stderr, " %s ", IDENTIFIER_POINTER (TREE_PURPOSE (t)));
2077 fprintf (stderr, "\n");
2081 void
2082 print_other_binding_stack (stack)
2083 struct binding_level *stack;
2085 struct binding_level *level;
2086 for (level = stack; level != global_binding_level; level = level->level_chain)
2088 fprintf (stderr, "binding level ");
2089 fprintf (stderr, HOST_PTR_PRINTF, level);
2090 fprintf (stderr, "\n");
2091 print_binding_level (level);
2095 void
2096 print_binding_stack ()
2098 struct binding_level *b;
2099 fprintf (stderr, "current_binding_level=");
2100 fprintf (stderr, HOST_PTR_PRINTF, current_binding_level);
2101 fprintf (stderr, "\nclass_binding_level=");
2102 fprintf (stderr, HOST_PTR_PRINTF, class_binding_level);
2103 fprintf (stderr, "\nglobal_binding_level=");
2104 fprintf (stderr, HOST_PTR_PRINTF, global_binding_level);
2105 fprintf (stderr, "\n");
2106 if (class_binding_level)
2108 for (b = class_binding_level; b; b = b->level_chain)
2109 if (b == current_binding_level)
2110 break;
2111 if (b)
2112 b = class_binding_level;
2113 else
2114 b = current_binding_level;
2116 else
2117 b = current_binding_level;
2118 print_other_binding_stack (b);
2119 fprintf (stderr, "global:\n");
2120 print_binding_level (global_binding_level);
2123 /* Namespace binding access routines: The namespace_bindings field of
2124 the identifier is polymorphic, with three possible values:
2125 NULL_TREE, a list of CPLUS_BINDINGS, or any other tree_node
2126 indicating the BINDING_VALUE of global_namespace. */
2128 /* Check whether the a binding for the name to scope is known.
2129 Assumes that the bindings of the name are already a list
2130 of bindings. Returns the binding found, or NULL_TREE. */
2132 static tree
2133 find_binding (name, scope)
2134 tree name;
2135 tree scope;
2137 tree iter, prev = NULL_TREE;
2139 scope = ORIGINAL_NAMESPACE (scope);
2141 for (iter = IDENTIFIER_NAMESPACE_BINDINGS (name); iter;
2142 iter = TREE_CHAIN (iter))
2144 my_friendly_assert (TREE_CODE (iter) == CPLUS_BINDING, 374);
2145 if (BINDING_SCOPE (iter) == scope)
2147 /* Move binding found to the front of the list, so
2148 subsequent lookups will find it faster. */
2149 if (prev)
2151 TREE_CHAIN (prev) = TREE_CHAIN (iter);
2152 TREE_CHAIN (iter) = IDENTIFIER_NAMESPACE_BINDINGS (name);
2153 IDENTIFIER_NAMESPACE_BINDINGS (name) = iter;
2155 return iter;
2157 prev = iter;
2159 return NULL_TREE;
2162 /* Always returns a binding for name in scope. If the
2163 namespace_bindings is not a list, convert it to one first.
2164 If no binding is found, make a new one. */
2166 tree
2167 binding_for_name (name, scope)
2168 tree name;
2169 tree scope;
2171 tree b = IDENTIFIER_NAMESPACE_BINDINGS (name);
2172 tree result;
2174 scope = ORIGINAL_NAMESPACE (scope);
2176 if (b && TREE_CODE (b) != CPLUS_BINDING)
2178 /* Get rid of optimization for global scope. */
2179 IDENTIFIER_NAMESPACE_BINDINGS (name) = NULL_TREE;
2180 BINDING_VALUE (binding_for_name (name, global_namespace)) = b;
2181 b = IDENTIFIER_NAMESPACE_BINDINGS (name);
2183 if (b && (result = find_binding (name, scope)))
2184 return result;
2185 /* Not found, make a new permanent one. */
2186 push_obstacks (&permanent_obstack, &permanent_obstack);
2187 result = make_node (CPLUS_BINDING);
2188 TREE_CHAIN (result) = b;
2189 IDENTIFIER_NAMESPACE_BINDINGS (name) = result;
2190 BINDING_SCOPE (result) = scope;
2191 BINDING_TYPE (result) = NULL_TREE;
2192 BINDING_VALUE (result) = NULL_TREE;
2193 pop_obstacks ();
2194 return result;
2197 /* Return the binding value for name in scope, considering that
2198 namespace_binding may or may not be a list of CPLUS_BINDINGS. */
2200 tree
2201 namespace_binding (name, scope)
2202 tree name;
2203 tree scope;
2205 tree b = IDENTIFIER_NAMESPACE_BINDINGS (name);
2206 if (b == NULL_TREE)
2207 return NULL_TREE;
2208 if (scope == NULL_TREE)
2209 scope = global_namespace;
2210 if (TREE_CODE (b) != CPLUS_BINDING)
2211 return (scope == global_namespace) ? b : NULL_TREE;
2212 name = find_binding (name,scope);
2213 if (name == NULL_TREE)
2214 return name;
2215 return BINDING_VALUE (name);
2218 /* Set the binding value for name in scope. If modifying the binding
2219 of global_namespace is attempted, try to optimize it. */
2221 void
2222 set_namespace_binding (name, scope, val)
2223 tree name;
2224 tree scope;
2225 tree val;
2227 tree b;
2229 if (scope == NULL_TREE)
2230 scope = global_namespace;
2232 if (scope == global_namespace)
2234 b = IDENTIFIER_NAMESPACE_BINDINGS (name);
2235 if (b == NULL_TREE || TREE_CODE (b) != CPLUS_BINDING)
2237 IDENTIFIER_NAMESPACE_BINDINGS (name) = val;
2238 return;
2241 b = binding_for_name (name, scope);
2242 BINDING_VALUE (b) = val;
2245 /* Push into the scope of the NAME namespace. If NAME is NULL_TREE, then we
2246 select a name that is unique to this compilation unit. */
2248 void
2249 push_namespace (name)
2250 tree name;
2252 tree d = NULL_TREE;
2253 int need_new = 1;
2254 int implicit_use = 0;
2255 int global = 0;
2256 if (!global_namespace)
2258 /* This must be ::. */
2259 my_friendly_assert (name == get_identifier ("::"), 377);
2260 global = 1;
2262 else if (!name)
2264 /* The name of anonymous namespace is unique for the translation
2265 unit. */
2266 if (!anonymous_namespace_name)
2267 anonymous_namespace_name = get_file_function_name ('N');
2268 name = anonymous_namespace_name;
2269 d = IDENTIFIER_NAMESPACE_VALUE (name);
2270 if (d)
2271 /* Reopening anonymous namespace. */
2272 need_new = 0;
2273 implicit_use = 1;
2275 else if (current_namespace == global_namespace
2276 && name == DECL_NAME (std_node))
2278 in_std++;
2279 return;
2281 else
2283 /* Check whether this is an extended namespace definition. */
2284 d = IDENTIFIER_NAMESPACE_VALUE (name);
2285 if (d != NULL_TREE && TREE_CODE (d) == NAMESPACE_DECL)
2287 need_new = 0;
2288 if (DECL_NAMESPACE_ALIAS (d))
2290 cp_error ("namespace alias `%D' not allowed here, assuming `%D'",
2291 d, DECL_NAMESPACE_ALIAS (d));
2292 d = DECL_NAMESPACE_ALIAS (d);
2297 if (need_new)
2299 /* Make a new namespace, binding the name to it. */
2300 d = build_lang_decl (NAMESPACE_DECL, name, void_type_node);
2301 /* The global namespace is not pushed, and the global binding
2302 level is set elsewhere. */
2303 if (!global)
2305 d = pushdecl (d);
2306 pushlevel (0);
2307 declare_namespace_level ();
2308 NAMESPACE_LEVEL (d) = current_binding_level;
2311 else
2312 resume_binding_level (NAMESPACE_LEVEL (d));
2314 if (implicit_use)
2315 do_using_directive (d);
2316 /* Enter the name space. */
2317 current_namespace = d;
2320 /* Pop from the scope of the current namespace. */
2322 void
2323 pop_namespace ()
2325 if (current_namespace == global_namespace)
2327 my_friendly_assert (in_std>0, 980421);
2328 in_std--;
2329 return;
2331 current_namespace = CP_DECL_CONTEXT (current_namespace);
2332 /* The binding level is not popped, as it might be re-opened later. */
2333 suspend_binding_level ();
2336 /* Push into the scope of the namespace NS, even if it is deeply
2337 nested within another namespace. */
2339 void
2340 push_nested_namespace (ns)
2341 tree ns;
2343 if (ns == global_namespace)
2344 push_to_top_level ();
2345 else
2347 push_nested_namespace (CP_DECL_CONTEXT (ns));
2348 push_namespace (DECL_NAME (ns));
2352 /* Pop back from the scope of the namespace NS, which was previously
2353 entered with push_nested_namespace. */
2355 void
2356 pop_nested_namespace (ns)
2357 tree ns;
2359 while (ns != global_namespace)
2361 pop_namespace ();
2362 ns = CP_DECL_CONTEXT (ns);
2365 pop_from_top_level ();
2369 /* Subroutines for reverting temporarily to top-level for instantiation
2370 of templates and such. We actually need to clear out the class- and
2371 local-value slots of all identifiers, so that only the global values
2372 are at all visible. Simply setting current_binding_level to the global
2373 scope isn't enough, because more binding levels may be pushed. */
2374 struct saved_scope *scope_chain;
2376 /* Mark ARG (which is really a struct saved_scope **) for GC. */
2378 static void
2379 mark_saved_scope (arg)
2380 void *arg;
2382 struct saved_scope *t = *(struct saved_scope **)arg;
2383 while (t)
2385 mark_binding_level (&t->old_binding_level);
2386 mark_binding_level (&t->class_bindings);
2387 ggc_mark_tree (t->old_bindings);
2388 ggc_mark_tree (t->old_namespace);
2389 ggc_mark_tree (t->class_name);
2390 ggc_mark_tree (t->class_type);
2391 ggc_mark_tree (t->access_specifier);
2392 ggc_mark_tree (t->function_decl);
2393 if (t->lang_base)
2394 ggc_mark_tree_varray (t->lang_base);
2395 ggc_mark_tree (t->lang_name);
2396 ggc_mark_tree (t->x_function_parms);
2397 ggc_mark_tree (t->template_parms);
2398 ggc_mark_tree (t->x_previous_class_type);
2399 ggc_mark_tree (t->x_previous_class_values);
2400 t = t->prev;
2404 static tree
2405 store_bindings (names, old_bindings)
2406 tree names, old_bindings;
2408 tree t;
2409 for (t = names; t; t = TREE_CHAIN (t))
2411 tree binding, t1, id;
2413 if (TREE_CODE (t) == TREE_LIST)
2414 id = TREE_PURPOSE (t);
2415 else
2416 id = DECL_NAME (t);
2418 if (!id
2419 /* Note that we may have an IDENTIFIER_CLASS_VALUE even when
2420 we have no IDENTIFIER_BINDING if we have left the class
2421 scope, but cached the class-level declarations. */
2422 || !(IDENTIFIER_BINDING (id) || IDENTIFIER_CLASS_VALUE (id)))
2423 continue;
2425 for (t1 = old_bindings; t1; t1 = TREE_CHAIN (t1))
2426 if (TREE_VEC_ELT (t1, 0) == id)
2427 goto skip_it;
2429 binding = make_tree_vec (4);
2431 if (id)
2433 my_friendly_assert (TREE_CODE (id) == IDENTIFIER_NODE, 135);
2434 TREE_VEC_ELT (binding, 0) = id;
2435 TREE_VEC_ELT (binding, 1) = REAL_IDENTIFIER_TYPE_VALUE (id);
2436 TREE_VEC_ELT (binding, 2) = IDENTIFIER_BINDING (id);
2437 TREE_VEC_ELT (binding, 3) = IDENTIFIER_CLASS_VALUE (id);
2438 IDENTIFIER_BINDING (id) = NULL_TREE;
2439 IDENTIFIER_CLASS_VALUE (id) = NULL_TREE;
2441 TREE_CHAIN (binding) = old_bindings;
2442 old_bindings = binding;
2443 skip_it:
2446 return old_bindings;
2449 void
2450 maybe_push_to_top_level (pseudo)
2451 int pseudo;
2453 struct saved_scope *s
2454 = (struct saved_scope *) xmalloc (sizeof (struct saved_scope));
2455 struct binding_level *b;
2456 tree old_bindings = NULL_TREE;
2458 b = scope_chain ? current_binding_level : 0;
2460 push_function_context_to (NULL_TREE);
2462 if (scope_chain && previous_class_type)
2463 old_bindings = store_bindings (previous_class_values, old_bindings);
2465 /* Have to include global_binding_level, because class-level decls
2466 aren't listed anywhere useful. */
2467 for (; b; b = b->level_chain)
2469 tree t;
2471 /* Template IDs are inserted into the global level. If they were
2472 inserted into namespace level, finish_file wouldn't find them
2473 when doing pending instantiations. Therefore, don't stop at
2474 namespace level, but continue until :: . */
2475 if (b == global_binding_level || (pseudo && b->pseudo_global))
2476 break;
2478 old_bindings = store_bindings (b->names, old_bindings);
2479 /* We also need to check class_shadowed to save class-level type
2480 bindings, since pushclass doesn't fill in b->names. */
2481 if (b->parm_flag == 2)
2482 old_bindings = store_bindings (b->class_shadowed, old_bindings);
2484 /* Unwind type-value slots back to top level. */
2485 for (t = b->type_shadowed; t; t = TREE_CHAIN (t))
2486 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (t), TREE_VALUE (t));
2488 if (scope_chain)
2489 *s = *scope_chain;
2490 s->old_binding_level = scope_chain ? current_binding_level : 0;
2491 s->old_bindings = old_bindings;
2492 s->prev = scope_chain;
2493 scope_chain = s;
2494 current_binding_level = b;
2496 current_class_name = current_class_type = NULL_TREE;
2497 current_function_decl = NULL_TREE;
2498 class_binding_level = (struct binding_level *)0;
2499 VARRAY_TREE_INIT (current_lang_base, 10, "current_lang_base");
2500 current_lang_stack = &VARRAY_TREE (current_lang_base, 0);
2501 current_lang_name = lang_name_cplusplus;
2502 strict_prototype = strict_prototypes_lang_cplusplus;
2503 named_labels = NULL_TREE;
2504 previous_class_type = previous_class_values = NULL_TREE;
2505 class_cache_firstobj = 0;
2506 processing_specialization = 0;
2507 processing_explicit_instantiation = 0;
2508 current_template_parms = NULL_TREE;
2509 processing_template_decl = 0;
2510 current_namespace = global_namespace;
2512 push_obstacks (&permanent_obstack, &permanent_obstack);
2515 void
2516 push_to_top_level ()
2518 maybe_push_to_top_level (0);
2521 void
2522 pop_from_top_level ()
2524 struct saved_scope *s = scope_chain;
2525 tree t;
2527 /* Clear out class-level bindings cache. */
2528 if (previous_class_type)
2529 invalidate_class_lookup_cache ();
2531 pop_obstacks ();
2533 VARRAY_FREE (current_lang_base);
2535 scope_chain = s->prev;
2536 for (t = s->old_bindings; t; t = TREE_CHAIN (t))
2538 tree id = TREE_VEC_ELT (t, 0);
2539 if (id)
2541 SET_IDENTIFIER_TYPE_VALUE (id, TREE_VEC_ELT (t, 1));
2542 IDENTIFIER_BINDING (id) = TREE_VEC_ELT (t, 2);
2543 IDENTIFIER_CLASS_VALUE (id) = TREE_VEC_ELT (t, 3);
2547 if (current_lang_name == lang_name_cplusplus)
2548 strict_prototype = strict_prototypes_lang_cplusplus;
2549 else if (current_lang_name == lang_name_c)
2550 strict_prototype = strict_prototypes_lang_c;
2552 free (s);
2554 pop_function_context_from (NULL_TREE);
2557 /* Push a definition of struct, union or enum tag "name".
2558 into binding_level "b". "type" should be the type node,
2559 We assume that the tag "name" is not already defined.
2561 Note that the definition may really be just a forward reference.
2562 In that case, the TYPE_SIZE will be a NULL_TREE.
2564 C++ gratuitously puts all these tags in the name space. */
2566 /* When setting the IDENTIFIER_TYPE_VALUE field of an identifier ID,
2567 record the shadowed value for this binding contour. TYPE is
2568 the type that ID maps to. */
2570 static void
2571 set_identifier_type_value_with_scope (id, type, b)
2572 tree id;
2573 tree type;
2574 struct binding_level *b;
2576 if (!b->namespace_p)
2578 /* Shadow the marker, not the real thing, so that the marker
2579 gets restored later. */
2580 tree old_type_value = REAL_IDENTIFIER_TYPE_VALUE (id);
2581 b->type_shadowed
2582 = tree_cons (id, old_type_value, b->type_shadowed);
2584 else
2586 tree binding = binding_for_name (id, current_namespace);
2587 BINDING_TYPE (binding) = type;
2588 /* Store marker instead of real type. */
2589 type = global_type_node;
2591 SET_IDENTIFIER_TYPE_VALUE (id, type);
2594 /* As set_identifier_type_value_with_scope, but using current_binding_level. */
2596 void
2597 set_identifier_type_value (id, type)
2598 tree id;
2599 tree type;
2601 set_identifier_type_value_with_scope (id, type, current_binding_level);
2604 /* Return the type associated with id. */
2606 tree
2607 identifier_type_value (id)
2608 tree id;
2610 /* There is no type with that name, anywhere. */
2611 if (REAL_IDENTIFIER_TYPE_VALUE (id) == NULL_TREE)
2612 return NULL_TREE;
2613 /* This is not the type marker, but the real thing. */
2614 if (REAL_IDENTIFIER_TYPE_VALUE (id) != global_type_node)
2615 return REAL_IDENTIFIER_TYPE_VALUE (id);
2616 /* Have to search for it. It must be on the global level, now.
2617 Ask lookup_name not to return non-types. */
2618 id = lookup_name_real (id, 2, 1, 0);
2619 if (id)
2620 return TREE_TYPE (id);
2621 return NULL_TREE;
2624 /* Pop off extraneous binding levels left over due to syntax errors.
2626 We don't pop past namespaces, as they might be valid. */
2628 void
2629 pop_everything ()
2631 #ifdef DEBUG_CP_BINDING_LEVELS
2632 fprintf (stderr, "XXX entering pop_everything ()\n");
2633 #endif
2634 while (!toplevel_bindings_p ())
2636 if (current_binding_level->parm_flag == 2)
2637 pop_nested_class ();
2638 else
2639 poplevel (0, 0, 0);
2641 #ifdef DEBUG_CP_BINDING_LEVELS
2642 fprintf (stderr, "XXX leaving pop_everything ()\n");
2643 #endif
2646 /* The type TYPE is being declared. If it is a class template, or a
2647 specialization of a class template, do any processing required and
2648 perform error-checking. If IS_FRIEND is non-zero, this TYPE is
2649 being declared a friend. B is the binding level at which this TYPE
2650 should be bound.
2652 Returns the TYPE_DECL for TYPE, which may have been altered by this
2653 processing. */
2655 static tree
2656 maybe_process_template_type_declaration (type, globalize, b)
2657 tree type;
2658 int globalize;
2659 struct binding_level* b;
2661 tree decl = TYPE_NAME (type);
2663 if (processing_template_parmlist)
2664 /* You can't declare a new template type in a template parameter
2665 list. But, you can declare a non-template type:
2667 template <class A*> struct S;
2669 is a forward-declaration of `A'. */
2671 else
2673 maybe_check_template_type (type);
2675 my_friendly_assert (IS_AGGR_TYPE (type)
2676 || TREE_CODE (type) == ENUMERAL_TYPE, 0);
2679 if (processing_template_decl)
2681 /* This may change after the call to
2682 push_template_decl_real, but we want the original value. */
2683 tree name = DECL_NAME (decl);
2685 decl = push_template_decl_real (decl, globalize);
2686 /* If the current binding level is the binding level for the
2687 template parameters (see the comment in
2688 begin_template_parm_list) and the enclosing level is a class
2689 scope, and we're not looking at a friend, push the
2690 declaration of the member class into the class scope. In the
2691 friend case, push_template_decl will already have put the
2692 friend into global scope, if appropriate. */
2693 if (TREE_CODE (type) != ENUMERAL_TYPE
2694 && !globalize && b->pseudo_global
2695 && b->level_chain->parm_flag == 2)
2697 finish_member_declaration (CLASSTYPE_TI_TEMPLATE (type));
2698 /* Put this tag on the list of tags for the class, since
2699 that won't happen below because B is not the class
2700 binding level, but is instead the pseudo-global level. */
2701 b->level_chain->tags =
2702 saveable_tree_cons (name, type, b->level_chain->tags);
2703 if (TYPE_SIZE (current_class_type) == NULL_TREE)
2704 CLASSTYPE_TAGS (current_class_type) = b->level_chain->tags;
2709 return decl;
2712 /* In C++, you don't have to write `struct S' to refer to `S'; you
2713 can just use `S'. We accomplish this by creating a TYPE_DECL as
2714 if the user had written `typedef struct S S'. Create and return
2715 the TYPE_DECL for TYPE. */
2717 tree
2718 create_implicit_typedef (name, type)
2719 tree name;
2720 tree type;
2722 tree decl;
2724 decl = build_decl (TYPE_DECL, name, type);
2725 SET_DECL_ARTIFICIAL (decl);
2726 /* There are other implicit type declarations, like the one *within*
2727 a class that allows you to write `S::S'. We must distinguish
2728 amongst these. */
2729 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
2730 TYPE_NAME (type) = decl;
2732 return decl;
2735 /* Push a tag name NAME for struct/class/union/enum type TYPE.
2736 Normally put it into the inner-most non-tag-transparent scope,
2737 but if GLOBALIZE is true, put it in the inner-most non-class scope.
2738 The latter is needed for implicit declarations. */
2740 void
2741 pushtag (name, type, globalize)
2742 tree name, type;
2743 int globalize;
2745 register struct binding_level *b;
2747 b = current_binding_level;
2748 while (b->tag_transparent
2749 || (globalize && b->parm_flag == 2))
2750 b = b->level_chain;
2752 if (toplevel_bindings_p ())
2753 b->tags = perm_tree_cons (name, type, b->tags);
2754 else
2755 b->tags = saveable_tree_cons (name, type, b->tags);
2757 if (name)
2759 /* Do C++ gratuitous typedefing. */
2760 if (IDENTIFIER_TYPE_VALUE (name) != type)
2762 register tree d = NULL_TREE;
2763 int in_class = 0;
2764 tree context = TYPE_CONTEXT (type);
2766 if (! context)
2768 tree cs = current_scope ();
2770 if (! globalize)
2771 context = cs;
2772 else if (cs != NULL_TREE
2773 && TREE_CODE_CLASS (TREE_CODE (cs)) == 't')
2774 /* When declaring a friend class of a local class, we want
2775 to inject the newly named class into the scope
2776 containing the local class, not the namespace scope. */
2777 context = hack_decl_function_context (get_type_decl (cs));
2779 if (!context)
2780 context = current_namespace;
2782 if ((b->pseudo_global && b->level_chain->parm_flag == 2)
2783 || b->parm_flag == 2)
2784 in_class = 1;
2786 if (current_lang_name == lang_name_java)
2787 TYPE_FOR_JAVA (type) = 1;
2789 d = create_implicit_typedef (name, type);
2790 DECL_CONTEXT (d) = FROB_CONTEXT (context);
2791 if (! in_class)
2792 set_identifier_type_value_with_scope (name, type, b);
2794 d = maybe_process_template_type_declaration (type,
2795 globalize, b);
2797 if (b->parm_flag == 2)
2799 if (!PROCESSING_REAL_TEMPLATE_DECL_P ())
2800 /* Put this TYPE_DECL on the TYPE_FIELDS list for the
2801 class. But if it's a member template class, we
2802 want the TEMPLATE_DECL, not the TYPE_DECL, so this
2803 is done later. */
2804 finish_member_declaration (d);
2805 else
2806 pushdecl_class_level (d);
2808 else
2809 d = pushdecl_with_scope (d, b);
2811 if (ANON_AGGRNAME_P (name))
2812 DECL_IGNORED_P (d) = 1;
2814 TYPE_CONTEXT (type) = DECL_CONTEXT (d);
2815 DECL_ASSEMBLER_NAME (d) = DECL_NAME (d);
2816 if (!uses_template_parms (type))
2817 DECL_ASSEMBLER_NAME (d)
2818 = get_identifier (build_overload_name (type, 1, 1));
2820 if (b->parm_flag == 2)
2822 if (TYPE_SIZE (current_class_type) == NULL_TREE)
2823 CLASSTYPE_TAGS (current_class_type) = b->tags;
2827 if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL)
2828 /* Use the canonical TYPE_DECL for this node. */
2829 TYPE_STUB_DECL (type) = TYPE_NAME (type);
2830 else
2832 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE
2833 will be the tagged type we just added to the current
2834 binding level. This fake NULL-named TYPE_DECL node helps
2835 dwarfout.c to know when it needs to output a
2836 representation of a tagged type, and it also gives us a
2837 convenient place to record the "scope start" address for
2838 the tagged type. */
2840 tree d = build_decl (TYPE_DECL, NULL_TREE, type);
2841 TYPE_STUB_DECL (type) = pushdecl_with_scope (d, b);
2845 /* Counter used to create anonymous type names. */
2847 static int anon_cnt = 0;
2849 /* Return an IDENTIFIER which can be used as a name for
2850 anonymous structs and unions. */
2852 tree
2853 make_anon_name ()
2855 char buf[32];
2857 sprintf (buf, ANON_AGGRNAME_FORMAT, anon_cnt++);
2858 return get_identifier (buf);
2861 /* Clear the TREE_PURPOSE slot of tags which have anonymous typenames.
2862 This keeps dbxout from getting confused. */
2864 void
2865 clear_anon_tags ()
2867 register struct binding_level *b;
2868 register tree tags;
2869 static int last_cnt = 0;
2871 /* Fast out if no new anon names were declared. */
2872 if (last_cnt == anon_cnt)
2873 return;
2875 b = current_binding_level;
2876 while (b->tag_transparent)
2877 b = b->level_chain;
2878 tags = b->tags;
2879 while (tags)
2881 /* A NULL purpose means we have already processed all tags
2882 from here to the end of the list. */
2883 if (TREE_PURPOSE (tags) == NULL_TREE)
2884 break;
2885 if (ANON_AGGRNAME_P (TREE_PURPOSE (tags)))
2886 TREE_PURPOSE (tags) = NULL_TREE;
2887 tags = TREE_CHAIN (tags);
2889 last_cnt = anon_cnt;
2892 /* Subroutine of duplicate_decls: return truthvalue of whether
2893 or not types of these decls match.
2895 For C++, we must compare the parameter list so that `int' can match
2896 `int&' in a parameter position, but `int&' is not confused with
2897 `const int&'. */
2900 decls_match (newdecl, olddecl)
2901 tree newdecl, olddecl;
2903 int types_match;
2905 if (newdecl == olddecl)
2906 return 1;
2908 if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
2909 /* If the two DECLs are not even the same kind of thing, we're not
2910 interested in their types. */
2911 return 0;
2913 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2915 tree f1 = TREE_TYPE (newdecl);
2916 tree f2 = TREE_TYPE (olddecl);
2917 tree p1 = TYPE_ARG_TYPES (f1);
2918 tree p2 = TYPE_ARG_TYPES (f2);
2920 if (DECL_REAL_CONTEXT (newdecl) != DECL_REAL_CONTEXT (olddecl)
2921 && ! (DECL_LANGUAGE (newdecl) == lang_c
2922 && DECL_LANGUAGE (olddecl) == lang_c))
2923 return 0;
2925 /* When we parse a static member function definition,
2926 we put together a FUNCTION_DECL which thinks its type
2927 is METHOD_TYPE. Change that to FUNCTION_TYPE, and
2928 proceed. */
2929 if (TREE_CODE (f1) == METHOD_TYPE && DECL_STATIC_FUNCTION_P (olddecl))
2930 revert_static_member_fn (&newdecl, &f1, &p1);
2931 else if (TREE_CODE (f2) == METHOD_TYPE
2932 && DECL_STATIC_FUNCTION_P (newdecl))
2933 revert_static_member_fn (&olddecl, &f2, &p2);
2935 /* Here we must take care of the case where new default
2936 parameters are specified. Also, warn if an old
2937 declaration becomes ambiguous because default
2938 parameters may cause the two to be ambiguous. */
2939 if (TREE_CODE (f1) != TREE_CODE (f2))
2941 if (TREE_CODE (f1) == OFFSET_TYPE)
2942 cp_compiler_error ("`%D' redeclared as member function", newdecl);
2943 else
2944 cp_compiler_error ("`%D' redeclared as non-member function", newdecl);
2945 return 0;
2948 if (same_type_p (TREE_TYPE (f1), TREE_TYPE (f2)))
2950 if (! strict_prototypes_lang_c && DECL_LANGUAGE (olddecl) == lang_c
2951 && p2 == NULL_TREE)
2953 types_match = self_promoting_args_p (p1);
2954 if (p1 == void_list_node)
2955 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
2957 else if (!strict_prototypes_lang_c && DECL_LANGUAGE (olddecl)==lang_c
2958 && DECL_LANGUAGE (newdecl) == lang_c && p1 == NULL_TREE)
2960 types_match = self_promoting_args_p (p2);
2961 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
2963 else
2964 types_match = compparms (p1, p2);
2966 else
2967 types_match = 0;
2969 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2971 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
2972 DECL_TEMPLATE_PARMS (olddecl)))
2973 return 0;
2975 if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2976 types_match = 1;
2977 else
2978 types_match = decls_match (DECL_TEMPLATE_RESULT (olddecl),
2979 DECL_TEMPLATE_RESULT (newdecl));
2981 else
2983 if (TREE_TYPE (newdecl) == error_mark_node)
2984 types_match = TREE_TYPE (olddecl) == error_mark_node;
2985 else if (TREE_TYPE (olddecl) == NULL_TREE)
2986 types_match = TREE_TYPE (newdecl) == NULL_TREE;
2987 else if (TREE_TYPE (newdecl) == NULL_TREE)
2988 types_match = 0;
2989 else
2990 types_match = comptypes (TREE_TYPE (newdecl),
2991 TREE_TYPE (olddecl),
2992 COMPARE_REDECLARATION);
2995 return types_match;
2998 /* If NEWDECL is `static' and an `extern' was seen previously,
2999 warn about it. (OLDDECL may be NULL_TREE; NAME contains
3000 information about previous usage as an `extern'.)
3002 Note that this does not apply to the C++ case of declaring
3003 a variable `extern const' and then later `const'.
3005 Don't complain about built-in functions, since they are beyond
3006 the user's control. */
3008 static void
3009 warn_extern_redeclared_static (newdecl, olddecl)
3010 tree newdecl, olddecl;
3012 tree name;
3014 static const char *explicit_extern_static_warning
3015 = "`%D' was declared `extern' and later `static'";
3016 static const char *implicit_extern_static_warning
3017 = "`%D' was declared implicitly `extern' and later `static'";
3019 if (TREE_CODE (newdecl) == TYPE_DECL)
3020 return;
3022 name = DECL_ASSEMBLER_NAME (newdecl);
3023 if (TREE_PUBLIC (name) && DECL_THIS_STATIC (newdecl))
3025 /* It's okay to redeclare an ANSI built-in function as static,
3026 or to declare a non-ANSI built-in function as anything. */
3027 if (! (TREE_CODE (newdecl) == FUNCTION_DECL
3028 && olddecl != NULL_TREE
3029 && TREE_CODE (olddecl) == FUNCTION_DECL
3030 && DECL_ARTIFICIAL (olddecl)))
3032 cp_pedwarn (IDENTIFIER_IMPLICIT_DECL (name)
3033 ? implicit_extern_static_warning
3034 : explicit_extern_static_warning, newdecl);
3035 if (olddecl != NULL_TREE)
3036 cp_pedwarn_at ("previous declaration of `%D'", olddecl);
3041 /* Handle when a new declaration NEWDECL has the same name as an old
3042 one OLDDECL in the same binding contour. Prints an error message
3043 if appropriate.
3045 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
3046 Otherwise, return 0. */
3049 duplicate_decls (newdecl, olddecl)
3050 tree newdecl, olddecl;
3052 extern struct obstack permanent_obstack;
3053 unsigned olddecl_uid = DECL_UID (olddecl);
3054 int olddecl_friend = 0, types_match = 0;
3055 int new_defines_function = 0;
3057 if (newdecl == olddecl)
3058 return 1;
3060 types_match = decls_match (newdecl, olddecl);
3062 /* If either the type of the new decl or the type of the old decl is an
3063 error_mark_node, then that implies that we have already issued an
3064 error (earlier) for some bogus type specification, and in that case,
3065 it is rather pointless to harass the user with yet more error message
3066 about the same declaration, so just pretend the types match here. */
3067 if (TREE_TYPE (newdecl) == error_mark_node
3068 || TREE_TYPE (olddecl) == error_mark_node)
3069 types_match = 1;
3071 /* Check for redeclaration and other discrepancies. */
3072 if (TREE_CODE (olddecl) == FUNCTION_DECL
3073 && DECL_ARTIFICIAL (olddecl))
3075 if (TREE_CODE (newdecl) != FUNCTION_DECL)
3077 /* If you declare a built-in or predefined function name as static,
3078 the old definition is overridden, but optionally warn this was a
3079 bad choice of name. */
3080 if (! TREE_PUBLIC (newdecl))
3082 if (warn_shadow)
3083 cp_warning ("shadowing %s function `%#D'",
3084 DECL_BUILT_IN (olddecl) ? "built-in" : "library",
3085 olddecl);
3086 /* Discard the old built-in function. */
3087 return 0;
3089 /* If the built-in is not ansi, then programs can override
3090 it even globally without an error. */
3091 else if (! DECL_BUILT_IN (olddecl))
3092 cp_warning ("library function `%#D' redeclared as non-function `%#D'",
3093 olddecl, newdecl);
3094 else
3096 cp_error ("declaration of `%#D'", newdecl);
3097 cp_error ("conflicts with built-in declaration `%#D'",
3098 olddecl);
3100 return 0;
3102 else if (!types_match)
3104 if ((DECL_LANGUAGE (newdecl) == lang_c
3105 && DECL_LANGUAGE (olddecl) == lang_c)
3106 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
3107 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
3109 /* A near match; override the builtin. */
3111 if (TREE_PUBLIC (newdecl))
3113 cp_warning ("new declaration `%#D'", newdecl);
3114 cp_warning ("ambiguates built-in declaration `%#D'",
3115 olddecl);
3117 else if (warn_shadow)
3118 cp_warning ("shadowing %s function `%#D'",
3119 DECL_BUILT_IN (olddecl) ? "built-in" : "library",
3120 olddecl);
3122 else
3123 /* Discard the old built-in function. */
3124 return 0;
3127 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
3129 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
3130 && TREE_CODE (newdecl) != TYPE_DECL
3131 && ! (TREE_CODE (newdecl) == TEMPLATE_DECL
3132 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL))
3133 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
3134 && TREE_CODE (olddecl) != TYPE_DECL
3135 && ! (TREE_CODE (olddecl) == TEMPLATE_DECL
3136 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
3137 == TYPE_DECL))))
3139 /* We do nothing special here, because C++ does such nasty
3140 things with TYPE_DECLs. Instead, just let the TYPE_DECL
3141 get shadowed, and know that if we need to find a TYPE_DECL
3142 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
3143 slot of the identifier. */
3144 return 0;
3147 if ((TREE_CODE (newdecl) == FUNCTION_DECL
3148 && DECL_FUNCTION_TEMPLATE_P (olddecl))
3149 || (TREE_CODE (olddecl) == FUNCTION_DECL
3150 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
3151 return 0;
3153 cp_error ("`%#D' redeclared as different kind of symbol", newdecl);
3154 if (TREE_CODE (olddecl) == TREE_LIST)
3155 olddecl = TREE_VALUE (olddecl);
3156 cp_error_at ("previous declaration of `%#D'", olddecl);
3158 /* New decl is completely inconsistent with the old one =>
3159 tell caller to replace the old one. */
3161 return 0;
3163 else if (!types_match)
3165 if (DECL_REAL_CONTEXT (newdecl) != DECL_REAL_CONTEXT (olddecl))
3166 /* These are certainly not duplicate declarations; they're
3167 from different scopes. */
3168 return 0;
3170 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
3172 /* The name of a class template may not be declared to refer to
3173 any other template, class, function, object, namespace, value,
3174 or type in the same scope. */
3175 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
3176 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
3178 cp_error ("declaration of template `%#D'", newdecl);
3179 cp_error_at ("conflicts with previous declaration `%#D'",
3180 olddecl);
3182 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
3183 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
3184 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
3185 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
3186 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
3187 DECL_TEMPLATE_PARMS (olddecl)))
3189 cp_error ("new declaration `%#D'", newdecl);
3190 cp_error_at ("ambiguates old declaration `%#D'", olddecl);
3192 return 0;
3194 if (TREE_CODE (newdecl) == FUNCTION_DECL)
3196 if (DECL_LANGUAGE (newdecl) == lang_c
3197 && DECL_LANGUAGE (olddecl) == lang_c)
3199 cp_error ("declaration of C function `%#D' conflicts with",
3200 newdecl);
3201 cp_error_at ("previous declaration `%#D' here", olddecl);
3203 else if (compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
3204 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
3206 cp_error ("new declaration `%#D'", newdecl);
3207 cp_error_at ("ambiguates old declaration `%#D'", olddecl);
3209 else
3210 return 0;
3213 /* Already complained about this, so don't do so again. */
3214 else if (current_class_type == NULL_TREE
3215 || IDENTIFIER_ERROR_LOCUS (DECL_ASSEMBLER_NAME (newdecl)) != current_class_type)
3217 cp_error ("conflicting types for `%#D'", newdecl);
3218 cp_error_at ("previous declaration as `%#D'", olddecl);
3221 else if (TREE_CODE (newdecl) == FUNCTION_DECL
3222 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
3223 && (!DECL_TEMPLATE_INFO (newdecl)
3224 || (DECL_TI_TEMPLATE (newdecl)
3225 != DECL_TI_TEMPLATE (olddecl))))
3226 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
3227 && (!DECL_TEMPLATE_INFO (olddecl)
3228 || (DECL_TI_TEMPLATE (olddecl)
3229 != DECL_TI_TEMPLATE (newdecl))))))
3230 /* It's OK to have a template specialization and a non-template
3231 with the same type, or to have specializations of two
3232 different templates with the same type. Note that if one is a
3233 specialization, and the other is an instantiation of the same
3234 template, that we do not exit at this point. That situation
3235 can occur if we instantiate a template class, and then
3236 specialize one of its methods. This situation is legal, but
3237 the declarations must be merged in the usual way. */
3238 return 0;
3239 else if (TREE_CODE (newdecl) == FUNCTION_DECL
3240 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
3241 && !DECL_USE_TEMPLATE (newdecl))
3242 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
3243 && !DECL_USE_TEMPLATE (olddecl))))
3244 /* One of the declarations is a template instantiation, and the
3245 other is not a template at all. That's OK. */
3246 return 0;
3247 else if (TREE_CODE (newdecl) == NAMESPACE_DECL
3248 && DECL_NAMESPACE_ALIAS (newdecl)
3249 && DECL_NAMESPACE_ALIAS (newdecl) == DECL_NAMESPACE_ALIAS (olddecl))
3250 /* Redeclaration of namespace alias, ignore it. */
3251 return 1;
3252 else
3254 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
3255 if (errmsg)
3257 cp_error (errmsg, newdecl);
3258 if (DECL_NAME (olddecl) != NULL_TREE)
3259 cp_error_at ((DECL_INITIAL (olddecl)
3260 && namespace_bindings_p ())
3261 ? "`%#D' previously defined here"
3262 : "`%#D' previously declared here", olddecl);
3264 else if (TREE_CODE (olddecl) == FUNCTION_DECL
3265 && DECL_INITIAL (olddecl) != NULL_TREE
3266 && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) == NULL_TREE
3267 && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != NULL_TREE)
3269 /* Prototype decl follows defn w/o prototype. */
3270 cp_warning_at ("prototype for `%#D'", newdecl);
3271 cp_warning_at ("follows non-prototype definition here", olddecl);
3273 else if (TREE_CODE (olddecl) == FUNCTION_DECL
3274 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
3276 /* extern "C" int foo ();
3277 int foo () { bar (); }
3278 is OK. */
3279 if (current_lang_stack
3280 == &VARRAY_TREE (current_lang_base, 0))
3281 DECL_LANGUAGE (newdecl) = DECL_LANGUAGE (olddecl);
3282 else
3284 cp_error_at ("previous declaration of `%#D' with %L linkage",
3285 olddecl, DECL_LANGUAGE (olddecl));
3286 cp_error ("conflicts with new declaration with %L linkage",
3287 DECL_LANGUAGE (newdecl));
3291 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
3293 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
3295 tree t1 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
3296 tree t2 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
3297 int i = 1;
3299 if (TREE_CODE (TREE_TYPE (newdecl)) == METHOD_TYPE)
3300 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2);
3302 for (; t1 && t1 != void_list_node;
3303 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
3304 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
3306 if (1 == simple_cst_equal (TREE_PURPOSE (t1),
3307 TREE_PURPOSE (t2)))
3309 if (pedantic)
3311 cp_pedwarn ("default argument given for parameter %d of `%#D'",
3312 i, newdecl);
3313 cp_pedwarn_at ("after previous specification in `%#D'",
3314 olddecl);
3317 else
3319 cp_error ("default argument given for parameter %d of `%#D'",
3320 i, newdecl);
3321 cp_error_at ("after previous specification in `%#D'",
3322 olddecl);
3326 if (DECL_THIS_INLINE (newdecl) && ! DECL_THIS_INLINE (olddecl)
3327 && TREE_ADDRESSABLE (olddecl) && warn_inline)
3329 cp_warning ("`%#D' was used before it was declared inline",
3330 newdecl);
3331 cp_warning_at ("previous non-inline declaration here",
3332 olddecl);
3337 /* If new decl is `static' and an `extern' was seen previously,
3338 warn about it. */
3339 warn_extern_redeclared_static (newdecl, olddecl);
3341 /* We have committed to returning 1 at this point. */
3342 if (TREE_CODE (newdecl) == FUNCTION_DECL)
3344 /* Now that functions must hold information normally held
3345 by field decls, there is extra work to do so that
3346 declaration information does not get destroyed during
3347 definition. */
3348 if (DECL_VINDEX (olddecl))
3349 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
3350 if (DECL_CONTEXT (olddecl))
3351 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
3352 if (DECL_CLASS_CONTEXT (olddecl))
3353 DECL_CLASS_CONTEXT (newdecl) = DECL_CLASS_CONTEXT (olddecl);
3354 if (DECL_PENDING_INLINE_INFO (newdecl) == (struct pending_inline *)0)
3355 DECL_PENDING_INLINE_INFO (newdecl) = DECL_PENDING_INLINE_INFO (olddecl);
3356 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
3357 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
3358 DECL_ABSTRACT_VIRTUAL_P (newdecl) |= DECL_ABSTRACT_VIRTUAL_P (olddecl);
3359 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
3360 DECL_NEEDS_FINAL_OVERRIDER_P (newdecl) |= DECL_NEEDS_FINAL_OVERRIDER_P (olddecl);
3361 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
3363 /* Optionally warn about more than one declaration for the same
3364 name, but don't warn about a function declaration followed by a
3365 definition. */
3366 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
3367 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
3368 /* Don't warn about extern decl followed by definition. */
3369 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
3370 /* Don't warn about friends, let add_friend take care of it. */
3371 && ! DECL_FRIEND_P (newdecl))
3373 cp_warning ("redundant redeclaration of `%D' in same scope", newdecl);
3374 cp_warning_at ("previous declaration of `%D'", olddecl);
3378 /* Deal with C++: must preserve virtual function table size. */
3379 if (TREE_CODE (olddecl) == TYPE_DECL)
3381 register tree newtype = TREE_TYPE (newdecl);
3382 register tree oldtype = TREE_TYPE (olddecl);
3384 if (newtype != error_mark_node && oldtype != error_mark_node
3385 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
3387 CLASSTYPE_VSIZE (newtype) = CLASSTYPE_VSIZE (oldtype);
3388 CLASSTYPE_FRIEND_CLASSES (newtype)
3389 = CLASSTYPE_FRIEND_CLASSES (oldtype);
3393 /* Copy all the DECL_... slots specified in the new decl
3394 except for any that we copy here from the old type. */
3395 DECL_MACHINE_ATTRIBUTES (newdecl)
3396 = merge_machine_decl_attributes (olddecl, newdecl);
3398 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
3400 if (! duplicate_decls (DECL_TEMPLATE_RESULT (newdecl),
3401 DECL_TEMPLATE_RESULT (olddecl)))
3402 cp_error ("invalid redeclaration of %D", newdecl);
3403 TREE_TYPE (olddecl) = TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl));
3404 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
3405 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
3406 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
3408 return 1;
3411 if (types_match)
3413 /* Automatically handles default parameters. */
3414 tree oldtype = TREE_TYPE (olddecl);
3415 tree newtype;
3417 /* Make sure we put the new type in the same obstack as the old one. */
3418 if (oldtype)
3419 push_obstacks (TYPE_OBSTACK (oldtype), TYPE_OBSTACK (oldtype));
3420 else
3421 push_permanent_obstack ();
3423 /* Merge the data types specified in the two decls. */
3424 newtype = common_type (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
3426 if (TREE_CODE (newdecl) == VAR_DECL)
3427 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
3428 /* Do this after calling `common_type' so that default
3429 parameters don't confuse us. */
3430 else if (TREE_CODE (newdecl) == FUNCTION_DECL
3431 && (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (newdecl))
3432 != TYPE_RAISES_EXCEPTIONS (TREE_TYPE (olddecl))))
3434 TREE_TYPE (newdecl) = build_exception_variant (newtype,
3435 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (newdecl)));
3436 TREE_TYPE (olddecl) = build_exception_variant (newtype,
3437 TYPE_RAISES_EXCEPTIONS (oldtype));
3439 if ((pedantic || ! DECL_IN_SYSTEM_HEADER (olddecl))
3440 && DECL_SOURCE_LINE (olddecl) != 0
3441 && flag_exceptions
3442 && !comp_except_specs (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (newdecl)),
3443 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (olddecl)), 1))
3445 cp_error ("declaration of `%F' throws different exceptions",
3446 newdecl);
3447 cp_error_at ("to previous declaration `%F'", olddecl);
3450 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
3452 /* Lay the type out, unless already done. */
3453 if (! same_type_p (newtype, oldtype)
3454 && TREE_TYPE (newdecl) != error_mark_node
3455 && !(processing_template_decl && uses_template_parms (newdecl)))
3456 layout_type (TREE_TYPE (newdecl));
3458 if ((TREE_CODE (newdecl) == VAR_DECL
3459 || TREE_CODE (newdecl) == PARM_DECL
3460 || TREE_CODE (newdecl) == RESULT_DECL
3461 || TREE_CODE (newdecl) == FIELD_DECL
3462 || TREE_CODE (newdecl) == TYPE_DECL)
3463 && !(processing_template_decl && uses_template_parms (newdecl)))
3464 layout_decl (newdecl, 0);
3466 /* Merge the type qualifiers. */
3467 if (TREE_READONLY (newdecl))
3468 TREE_READONLY (olddecl) = 1;
3469 if (TREE_THIS_VOLATILE (newdecl))
3470 TREE_THIS_VOLATILE (olddecl) = 1;
3472 /* Merge the initialization information. */
3473 if (DECL_INITIAL (newdecl) == NULL_TREE
3474 && DECL_INITIAL (olddecl) != NULL_TREE)
3476 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
3477 DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
3478 DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
3479 if (CAN_HAVE_FULL_LANG_DECL_P (newdecl)
3480 && DECL_LANG_SPECIFIC (newdecl)
3481 && DECL_LANG_SPECIFIC (olddecl))
3482 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
3485 /* Merge the section attribute.
3486 We want to issue an error if the sections conflict but that must be
3487 done later in decl_attributes since we are called before attributes
3488 are assigned. */
3489 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
3490 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
3492 /* Keep the old rtl since we can safely use it, unless it's the
3493 call to abort() used for abstract virtuals. */
3494 if ((DECL_LANG_SPECIFIC (olddecl)
3495 && !DECL_ABSTRACT_VIRTUAL_P (olddecl))
3496 || DECL_RTL (olddecl) != DECL_RTL (abort_fndecl))
3497 DECL_RTL (newdecl) = DECL_RTL (olddecl);
3499 pop_obstacks ();
3501 /* If cannot merge, then use the new type and qualifiers,
3502 and don't preserve the old rtl. */
3503 else
3505 /* Clean out any memory we had of the old declaration. */
3506 tree oldstatic = value_member (olddecl, static_aggregates);
3507 if (oldstatic)
3508 TREE_VALUE (oldstatic) = error_mark_node;
3510 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
3511 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
3512 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
3513 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
3516 /* Merge the storage class information. */
3517 DECL_WEAK (newdecl) |= DECL_WEAK (olddecl);
3518 DECL_ONE_ONLY (newdecl) |= DECL_ONE_ONLY (olddecl);
3519 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
3520 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
3521 if (! DECL_EXTERNAL (olddecl))
3522 DECL_EXTERNAL (newdecl) = 0;
3524 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
3526 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
3527 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
3528 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
3529 DECL_TEMPLATE_INSTANTIATED (newdecl)
3530 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
3531 /* Don't really know how much of the language-specific
3532 values we should copy from old to new. */
3533 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
3534 DECL_ACCESS (newdecl) = DECL_ACCESS (olddecl);
3535 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
3536 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
3537 olddecl_friend = DECL_FRIEND_P (olddecl);
3539 /* Only functions have DECL_BEFRIENDING_CLASSES. */
3540 if (TREE_CODE (newdecl) == FUNCTION_DECL
3541 || DECL_FUNCTION_TEMPLATE_P (newdecl))
3542 DECL_BEFRIENDING_CLASSES (newdecl)
3543 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
3544 DECL_BEFRIENDING_CLASSES (olddecl));
3547 if (TREE_CODE (newdecl) == FUNCTION_DECL)
3549 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
3550 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
3552 /* If newdecl is not a specialization, then it is not a
3553 template-related function at all. And that means that we
3554 shoud have exited above, returning 0. */
3555 my_friendly_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl),
3558 if (TREE_USED (olddecl))
3559 /* From [temp.expl.spec]:
3561 If a template, a member template or the member of a class
3562 template is explicitly specialized then that
3563 specialization shall be declared before the first use of
3564 that specialization that would cause an implicit
3565 instantiation to take place, in every translation unit in
3566 which such a use occurs. */
3567 cp_error ("explicit specialization of %D after first use",
3568 olddecl);
3570 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
3572 DECL_THIS_INLINE (newdecl) |= DECL_THIS_INLINE (olddecl);
3574 /* If either decl says `inline', this fn is inline, unless its
3575 definition was passed already. */
3576 if (DECL_INLINE (newdecl) && DECL_INITIAL (olddecl) == NULL_TREE)
3577 DECL_INLINE (olddecl) = 1;
3578 DECL_INLINE (newdecl) = DECL_INLINE (olddecl);
3580 if (! types_match)
3582 DECL_LANGUAGE (olddecl) = DECL_LANGUAGE (newdecl);
3583 DECL_ASSEMBLER_NAME (olddecl) = DECL_ASSEMBLER_NAME (newdecl);
3584 DECL_RTL (olddecl) = DECL_RTL (newdecl);
3586 if (! types_match || new_defines_function)
3588 /* These need to be copied so that the names are available.
3589 Note that if the types do match, we'll preserve inline
3590 info and other bits, but if not, we won't. */
3591 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
3592 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
3594 if (new_defines_function)
3595 /* If defining a function declared with other language
3596 linkage, use the previously declared language linkage. */
3597 DECL_LANGUAGE (newdecl) = DECL_LANGUAGE (olddecl);
3598 else if (types_match)
3600 /* If redeclaring a builtin function, and not a definition,
3601 it stays built in. */
3602 if (DECL_BUILT_IN (olddecl))
3604 DECL_BUILT_IN (newdecl) = 1;
3605 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
3606 /* If we're keeping the built-in definition, keep the rtl,
3607 regardless of declaration matches. */
3608 DECL_RTL (newdecl) = DECL_RTL (olddecl);
3610 else
3611 DECL_FRAME_SIZE (newdecl) = DECL_FRAME_SIZE (olddecl);
3613 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
3614 if ((DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl)))
3615 /* Previously saved insns go together with
3616 the function's previous definition. */
3617 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
3618 /* Don't clear out the arguments if we're redefining a function. */
3619 if (DECL_ARGUMENTS (olddecl))
3620 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
3622 if (DECL_LANG_SPECIFIC (olddecl))
3623 DECL_MAIN_VARIANT (newdecl) = DECL_MAIN_VARIANT (olddecl);
3626 if (TREE_CODE (newdecl) == NAMESPACE_DECL)
3628 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
3631 /* Now preserve various other info from the definition. */
3632 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
3633 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
3634 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
3635 DECL_ASSEMBLER_NAME (newdecl) = DECL_ASSEMBLER_NAME (olddecl);
3637 if (TREE_CODE (newdecl) == FUNCTION_DECL)
3639 int function_size;
3640 struct lang_decl *ol = DECL_LANG_SPECIFIC (olddecl);
3641 struct lang_decl *nl = DECL_LANG_SPECIFIC (newdecl);
3643 function_size = sizeof (struct tree_decl);
3645 bcopy ((char *) newdecl + sizeof (struct tree_common),
3646 (char *) olddecl + sizeof (struct tree_common),
3647 function_size - sizeof (struct tree_common));
3649 /* Can we safely free the storage used by newdecl? */
3651 #define ROUND(x) ((x + obstack_alignment_mask (&permanent_obstack)) \
3652 & ~ obstack_alignment_mask (&permanent_obstack))
3654 if (DECL_TEMPLATE_INSTANTIATION (newdecl))
3656 /* If newdecl is a template instantiation, it is possible that
3657 the following sequence of events has occurred:
3659 o A friend function was declared in a class template. The
3660 class template was instantiated.
3662 o The instantiation of the friend declaration was
3663 recorded on the instantiation list, and is newdecl.
3665 o Later, however, instantiate_class_template called pushdecl
3666 on the newdecl to perform name injection. But, pushdecl in
3667 turn called duplicate_decls when it discovered that another
3668 declaration of a global function with the same name already
3669 existed.
3671 o Here, in duplicate_decls, we decided to clobber newdecl.
3673 If we're going to do that, we'd better make sure that
3674 olddecl, and not newdecl, is on the list of
3675 instantiations so that if we try to do the instantiation
3676 again we won't get the clobbered declaration. */
3678 tree tmpl = DECL_TI_TEMPLATE (newdecl);
3679 tree decls = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
3681 for (; decls; decls = TREE_CHAIN (decls))
3682 if (TREE_VALUE (decls) == newdecl)
3683 TREE_VALUE (decls) = olddecl;
3686 if (((char *)newdecl + ROUND (function_size) == (char *)nl
3687 && ((char *)newdecl + ROUND (function_size)
3688 + ROUND (sizeof (struct lang_decl))
3689 == obstack_next_free (&permanent_obstack)))
3690 || ((char *)newdecl + ROUND (function_size)
3691 == obstack_next_free (&permanent_obstack)))
3693 DECL_MAIN_VARIANT (newdecl) = olddecl;
3694 DECL_LANG_SPECIFIC (olddecl) = ol;
3695 bcopy ((char *)nl, (char *)ol, sizeof (struct lang_decl));
3697 obstack_free (&permanent_obstack, newdecl);
3699 else if (LANG_DECL_PERMANENT (ol) && ol != nl)
3701 if (DECL_MAIN_VARIANT (olddecl) == olddecl)
3703 struct lang_decl *free_lang_decl = ol;
3705 /* Save these lang_decls that would otherwise be lost. */
3706 if (DECL_LANG_SPECIFIC (olddecl) == ol)
3707 abort ();
3709 free_lang_decl->u.next = free_lang_decl_chain;
3710 free_lang_decl_chain = free_lang_decl;
3712 else
3714 /* Storage leak. */;
3718 else
3720 bcopy ((char *) newdecl + sizeof (struct tree_common),
3721 (char *) olddecl + sizeof (struct tree_common),
3722 sizeof (struct tree_decl) - sizeof (struct tree_common)
3723 + tree_code_length [(int)TREE_CODE (newdecl)] * sizeof (char *));
3726 DECL_UID (olddecl) = olddecl_uid;
3727 if (olddecl_friend)
3728 DECL_FRIEND_P (olddecl) = 1;
3730 /* NEWDECL contains the merged attribute lists.
3731 Update OLDDECL to be the same. */
3732 DECL_MACHINE_ATTRIBUTES (olddecl) = DECL_MACHINE_ATTRIBUTES (newdecl);
3734 return 1;
3737 /* Record a decl-node X as belonging to the current lexical scope.
3738 Check for errors (such as an incompatible declaration for the same
3739 name already seen in the same scope).
3741 Returns either X or an old decl for the same name.
3742 If an old decl is returned, it may have been smashed
3743 to agree with what X says. */
3745 tree
3746 pushdecl (x)
3747 tree x;
3749 register tree t;
3750 register tree name = DECL_ASSEMBLER_NAME (x);
3751 int need_new_binding = 1;
3753 if (DECL_TEMPLATE_PARM_P (x))
3754 /* Template parameters have no context; they are not X::T even
3755 when declared within a class or namespace. */
3757 else
3759 if (current_function_decl && x != current_function_decl
3760 /* A local declaration for a function doesn't constitute
3761 nesting. */
3762 && (TREE_CODE (x) != FUNCTION_DECL || DECL_INITIAL (x))
3763 /* Don't change DECL_CONTEXT of virtual methods. */
3764 && (TREE_CODE (x) != FUNCTION_DECL || !DECL_VIRTUAL_P (x))
3765 && !DECL_CONTEXT (x))
3766 DECL_CONTEXT (x) = current_function_decl;
3767 if (!DECL_CONTEXT (x))
3768 DECL_CONTEXT (x) = FROB_CONTEXT (current_namespace);
3771 /* Type are looked up using the DECL_NAME, as that is what the rest of the
3772 compiler wants to use. */
3773 if (TREE_CODE (x) == TYPE_DECL || TREE_CODE (x) == VAR_DECL
3774 || TREE_CODE (x) == NAMESPACE_DECL)
3775 name = DECL_NAME (x);
3777 if (name)
3779 #if 0
3780 /* Not needed...see below. */
3781 char *file;
3782 int line;
3783 #endif
3784 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3785 name = TREE_OPERAND (name, 0);
3787 /* Namespace-scoped variables are not found in the current level. */
3788 if (TREE_CODE (x) == VAR_DECL && DECL_NAMESPACE_SCOPE_P (x))
3789 t = namespace_binding (name, DECL_CONTEXT (x));
3790 else
3791 t = lookup_name_current_level (name);
3792 if (t == error_mark_node)
3794 /* error_mark_node is 0 for a while during initialization! */
3795 t = NULL_TREE;
3796 cp_error_at ("`%#D' used prior to declaration", x);
3799 else if (t != NULL_TREE)
3801 #if 0
3802 /* This is turned off until I have time to do it right (bpk). */
3803 /* With the code below that uses it... */
3804 file = DECL_SOURCE_FILE (t);
3805 line = DECL_SOURCE_LINE (t);
3806 #endif
3807 if (TREE_CODE (t) == PARM_DECL)
3809 if (DECL_CONTEXT (t) == NULL_TREE)
3810 fatal ("parse errors have confused me too much");
3812 /* Check for duplicate params. */
3813 if (duplicate_decls (x, t))
3814 return t;
3816 else if (((TREE_CODE (x) == FUNCTION_DECL && DECL_LANGUAGE (x) == lang_c)
3817 || DECL_FUNCTION_TEMPLATE_P (x))
3818 && is_overloaded_fn (t))
3819 /* Don't do anything just yet. */;
3820 else if (t == wchar_decl_node)
3822 if (pedantic && ! DECL_IN_SYSTEM_HEADER (x))
3823 cp_pedwarn ("redeclaration of wchar_t as `%T'", TREE_TYPE (x));
3825 /* Throw away the redeclaration. */
3826 return t;
3828 else if (TREE_CODE (t) != TREE_CODE (x))
3830 if (duplicate_decls (x, t))
3831 return t;
3833 else if (duplicate_decls (x, t))
3835 #if 0
3836 /* This is turned off until I have time to do it right (bpk). */
3838 /* Also warn if they did a prototype with `static' on it, but
3839 then later left the `static' off. */
3840 if (! TREE_PUBLIC (name) && TREE_PUBLIC (x))
3842 if (DECL_LANG_SPECIFIC (t) && DECL_FRIEND_P (t))
3843 return t;
3845 if (extra_warnings)
3847 cp_warning ("`static' missing from declaration of `%D'",
3849 warning_with_file_and_line (file, line,
3850 "previous declaration of `%s'",
3851 decl_as_string (t, 0));
3854 /* Now fix things so it'll do what they expect. */
3855 if (current_function_decl)
3856 TREE_PUBLIC (current_function_decl) = 0;
3858 /* Due to interference in memory reclamation (X may be
3859 obstack-deallocated at this point), we must guard against
3860 one really special case. [jason: This should be handled
3861 by start_function] */
3862 if (current_function_decl == x)
3863 current_function_decl = t;
3864 #endif
3865 if (TREE_CODE (t) == TYPE_DECL)
3866 SET_IDENTIFIER_TYPE_VALUE (name, TREE_TYPE (t));
3867 else if (TREE_CODE (t) == FUNCTION_DECL)
3868 check_default_args (t);
3870 return t;
3872 else if (DECL_MAIN_P (x))
3874 /* A redeclaration of main, but not a duplicate of the
3875 previous one.
3877 [basic.start.main]
3879 This function shall not be overloaded. */
3880 cp_error_at ("invalid redeclaration of `%D'", t);
3881 cp_error ("as `%D'", x);
3882 /* We don't try to push this declaration since that
3883 causes a crash. */
3884 return x;
3888 check_template_shadow (x);
3890 /* If this is a function conjured up by the backend, massage it
3891 so it looks friendly. */
3892 if (TREE_CODE (x) == FUNCTION_DECL
3893 && ! DECL_LANG_SPECIFIC (x))
3895 retrofit_lang_decl (x);
3896 DECL_LANGUAGE (x) = lang_c;
3899 if (TREE_CODE (x) == FUNCTION_DECL && ! DECL_FUNCTION_MEMBER_P (x))
3901 t = push_overloaded_decl (x, PUSH_LOCAL);
3902 if (t != x || DECL_LANGUAGE (x) == lang_c)
3903 return t;
3904 if (!namespace_bindings_p ())
3905 /* We do not need to create a binding for this name;
3906 push_overloaded_decl will have already done so if
3907 necessary. */
3908 need_new_binding = 0;
3910 else if (DECL_FUNCTION_TEMPLATE_P (x) && DECL_NAMESPACE_SCOPE_P (x))
3912 t = push_overloaded_decl (x, PUSH_GLOBAL);
3913 if (t == x)
3914 add_decl_to_level (x, NAMESPACE_LEVEL (CP_DECL_CONTEXT (t)));
3915 return t;
3918 /* If declaring a type as a typedef, copy the type (unless we're
3919 at line 0), and install this TYPE_DECL as the new type's typedef
3920 name. See the extensive comment in ../c-decl.c (pushdecl). */
3921 if (TREE_CODE (x) == TYPE_DECL)
3923 tree type = TREE_TYPE (x);
3924 if (DECL_SOURCE_LINE (x) == 0)
3926 if (TYPE_NAME (type) == 0)
3927 TYPE_NAME (type) = x;
3929 else if (type != error_mark_node && TYPE_NAME (type) != x
3930 /* We don't want to copy the type when all we're
3931 doing is making a TYPE_DECL for the purposes of
3932 inlining. */
3933 && (!TYPE_NAME (type)
3934 || TYPE_NAME (type) != DECL_ABSTRACT_ORIGIN (x)))
3936 push_obstacks (TYPE_OBSTACK (type), TYPE_OBSTACK (type));
3938 DECL_ORIGINAL_TYPE (x) = type;
3939 type = build_type_copy (type);
3940 TYPE_STUB_DECL (type) = TYPE_STUB_DECL (DECL_ORIGINAL_TYPE (x));
3941 TYPE_NAME (type) = x;
3942 TREE_TYPE (x) = type;
3944 pop_obstacks ();
3947 if (type != error_mark_node
3948 && TYPE_NAME (type)
3949 && TYPE_IDENTIFIER (type))
3950 set_identifier_type_value_with_scope (DECL_NAME (x), type,
3951 current_binding_level);
3955 /* Multiple external decls of the same identifier ought to match.
3957 We get warnings about inline functions where they are defined.
3958 We get warnings about other functions from push_overloaded_decl.
3960 Avoid duplicate warnings where they are used. */
3961 if (TREE_PUBLIC (x) && TREE_CODE (x) != FUNCTION_DECL)
3963 tree decl;
3965 if (IDENTIFIER_NAMESPACE_VALUE (name) != NULL_TREE
3966 && (DECL_EXTERNAL (IDENTIFIER_NAMESPACE_VALUE (name))
3967 || TREE_PUBLIC (IDENTIFIER_NAMESPACE_VALUE (name))))
3968 decl = IDENTIFIER_NAMESPACE_VALUE (name);
3969 else
3970 decl = NULL_TREE;
3972 if (decl
3973 /* If different sort of thing, we already gave an error. */
3974 && TREE_CODE (decl) == TREE_CODE (x)
3975 && !same_type_p (TREE_TYPE (x), TREE_TYPE (decl)))
3977 cp_pedwarn ("type mismatch with previous external decl", x);
3978 cp_pedwarn_at ("previous external decl of `%#D'", decl);
3982 /* This name is new in its binding level.
3983 Install the new declaration and return it. */
3984 if (namespace_bindings_p ())
3986 /* Install a global value. */
3988 /* If the first global decl has external linkage,
3989 warn if we later see static one. */
3990 if (IDENTIFIER_GLOBAL_VALUE (name) == NULL_TREE && TREE_PUBLIC (x))
3991 TREE_PUBLIC (name) = 1;
3993 if (!(TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x)
3994 && t != NULL_TREE))
3996 if (TREE_CODE (x) == FUNCTION_DECL)
3997 my_friendly_assert
3998 ((IDENTIFIER_GLOBAL_VALUE (name) == NULL_TREE)
3999 || (IDENTIFIER_GLOBAL_VALUE (name) == x), 378);
4000 SET_IDENTIFIER_NAMESPACE_VALUE (name, x);
4003 /* Don't forget if the function was used via an implicit decl. */
4004 if (IDENTIFIER_IMPLICIT_DECL (name)
4005 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
4006 TREE_USED (x) = 1;
4008 /* Don't forget if its address was taken in that way. */
4009 if (IDENTIFIER_IMPLICIT_DECL (name)
4010 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
4011 TREE_ADDRESSABLE (x) = 1;
4013 /* Warn about mismatches against previous implicit decl. */
4014 if (IDENTIFIER_IMPLICIT_DECL (name) != NULL_TREE
4015 /* If this real decl matches the implicit, don't complain. */
4016 && ! (TREE_CODE (x) == FUNCTION_DECL
4017 && TREE_TYPE (TREE_TYPE (x)) == integer_type_node))
4018 cp_warning
4019 ("`%D' was previously implicitly declared to return `int'", x);
4021 /* If new decl is `static' and an `extern' was seen previously,
4022 warn about it. */
4023 if (x != NULL_TREE && t != NULL_TREE && decls_match (x, t))
4024 warn_extern_redeclared_static (x, t);
4026 else
4028 /* Here to install a non-global value. */
4029 tree oldlocal = IDENTIFIER_VALUE (name);
4030 tree oldglobal = IDENTIFIER_NAMESPACE_VALUE (name);
4032 if (need_new_binding)
4034 push_local_binding (name, x, 0);
4035 /* Because push_local_binding will hook X on to the
4036 current_binding_level's name list, we don't want to
4037 do that again below. */
4038 need_new_binding = 0;
4041 /* If this is a TYPE_DECL, push it into the type value slot. */
4042 if (TREE_CODE (x) == TYPE_DECL)
4043 set_identifier_type_value_with_scope (name, TREE_TYPE (x),
4044 current_binding_level);
4046 /* Clear out any TYPE_DECL shadowed by a namespace so that
4047 we won't think this is a type. The C struct hack doesn't
4048 go through namespaces. */
4049 if (TREE_CODE (x) == NAMESPACE_DECL)
4050 set_identifier_type_value_with_scope (name, NULL_TREE,
4051 current_binding_level);
4053 /* If this is an extern function declaration, see if we
4054 have a global definition or declaration for the function. */
4055 if (oldlocal == NULL_TREE
4056 && DECL_EXTERNAL (x)
4057 && oldglobal != NULL_TREE
4058 && TREE_CODE (x) == FUNCTION_DECL
4059 && TREE_CODE (oldglobal) == FUNCTION_DECL)
4061 /* We have one. Their types must agree. */
4062 if (decls_match (x, oldglobal))
4063 /* OK */;
4064 else
4066 cp_warning ("extern declaration of `%#D' doesn't match", x);
4067 cp_warning_at ("global declaration `%#D'", oldglobal);
4070 /* If we have a local external declaration,
4071 and no file-scope declaration has yet been seen,
4072 then if we later have a file-scope decl it must not be static. */
4073 if (oldlocal == NULL_TREE
4074 && oldglobal == NULL_TREE
4075 && DECL_EXTERNAL (x)
4076 && TREE_PUBLIC (x))
4077 TREE_PUBLIC (name) = 1;
4079 if (DECL_FROM_INLINE (x))
4080 /* Inline decls shadow nothing. */;
4082 /* Warn if shadowing an argument at the top level of the body. */
4083 else if (oldlocal != NULL_TREE && !DECL_EXTERNAL (x)
4084 && TREE_CODE (oldlocal) == PARM_DECL
4085 /* Don't complain if it's from an enclosing function. */
4086 && DECL_CONTEXT (oldlocal) == current_function_decl
4087 && TREE_CODE (x) != PARM_DECL)
4089 /* Go to where the parms should be and see if we
4090 find them there. */
4091 struct binding_level *b = current_binding_level->level_chain;
4093 if (cleanup_label)
4094 b = b->level_chain;
4096 /* ARM $8.3 */
4097 if (b->parm_flag == 1)
4098 cp_error ("declaration of `%#D' shadows a parameter", name);
4100 else if (warn_shadow && oldlocal != NULL_TREE
4101 && current_binding_level->is_for_scope
4102 && !DECL_DEAD_FOR_LOCAL (oldlocal))
4104 warning ("variable `%s' shadows local",
4105 IDENTIFIER_POINTER (name));
4106 cp_warning_at (" this is the shadowed declaration", oldlocal);
4108 /* Maybe warn if shadowing something else. */
4109 else if (warn_shadow && !DECL_EXTERNAL (x)
4110 /* No shadow warnings for internally generated vars. */
4111 && ! DECL_ARTIFICIAL (x)
4112 /* No shadow warnings for vars made for inlining. */
4113 && ! DECL_FROM_INLINE (x))
4115 const char *warnstring = NULL;
4117 if (oldlocal != NULL_TREE && TREE_CODE (oldlocal) == PARM_DECL)
4118 warnstring = "declaration of `%s' shadows a parameter";
4119 else if (IDENTIFIER_CLASS_VALUE (name) != NULL_TREE
4120 && current_class_ptr
4121 && !TREE_STATIC (name))
4122 warnstring = "declaration of `%s' shadows a member of `this'";
4123 else if (oldlocal != NULL_TREE)
4124 warnstring = "declaration of `%s' shadows previous local";
4125 else if (oldglobal != NULL_TREE)
4126 /* XXX shadow warnings in outer-more namespaces */
4127 warnstring = "declaration of `%s' shadows global declaration";
4129 if (warnstring)
4130 warning (warnstring, IDENTIFIER_POINTER (name));
4134 if (TREE_CODE (x) == FUNCTION_DECL)
4135 check_default_args (x);
4137 /* Keep count of variables in this level with incomplete type. */
4138 if (TREE_CODE (x) == VAR_DECL
4139 && TREE_TYPE (x) != error_mark_node
4140 && ((TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
4141 && PROMOTES_TO_AGGR_TYPE (TREE_TYPE (x), ARRAY_TYPE))
4142 /* RTTI TD entries are created while defining the type_info. */
4143 || (TYPE_LANG_SPECIFIC (TREE_TYPE (x))
4144 && TYPE_BEING_DEFINED (TREE_TYPE (x)))))
4145 current_binding_level->incomplete
4146 = tree_cons (NULL_TREE, x, current_binding_level->incomplete);
4149 if (need_new_binding)
4150 add_decl_to_level (x, current_binding_level);
4152 return x;
4155 /* Same as pushdecl, but define X in binding-level LEVEL. We rely on the
4156 caller to set DECL_CONTEXT properly. */
4158 static tree
4159 pushdecl_with_scope (x, level)
4160 tree x;
4161 struct binding_level *level;
4163 register struct binding_level *b;
4164 tree function_decl = current_function_decl;
4166 current_function_decl = NULL_TREE;
4167 if (level->parm_flag == 2)
4169 b = class_binding_level;
4170 class_binding_level = level;
4171 pushdecl_class_level (x);
4172 class_binding_level = b;
4174 else
4176 b = current_binding_level;
4177 current_binding_level = level;
4178 x = pushdecl (x);
4179 current_binding_level = b;
4181 current_function_decl = function_decl;
4182 return x;
4185 /* Like pushdecl, only it places X in the current namespace,
4186 if appropriate. */
4188 tree
4189 pushdecl_namespace_level (x)
4190 tree x;
4192 register struct binding_level *b = current_binding_level;
4193 register tree t;
4195 t = pushdecl_with_scope (x, NAMESPACE_LEVEL (current_namespace));
4197 /* Now, the type_shadowed stack may screw us. Munge it so it does
4198 what we want. */
4199 if (TREE_CODE (x) == TYPE_DECL)
4201 tree name = DECL_NAME (x);
4202 tree newval;
4203 tree *ptr = (tree *)0;
4204 for (; b != global_binding_level; b = b->level_chain)
4206 tree shadowed = b->type_shadowed;
4207 for (; shadowed; shadowed = TREE_CHAIN (shadowed))
4208 if (TREE_PURPOSE (shadowed) == name)
4210 ptr = &TREE_VALUE (shadowed);
4211 /* Can't break out of the loop here because sometimes
4212 a binding level will have duplicate bindings for
4213 PT names. It's gross, but I haven't time to fix it. */
4216 newval = TREE_TYPE (x);
4217 if (ptr == (tree *)0)
4219 /* @@ This shouldn't be needed. My test case "zstring.cc" trips
4220 up here if this is changed to an assertion. --KR */
4221 SET_IDENTIFIER_TYPE_VALUE (name, newval);
4223 else
4225 *ptr = newval;
4228 return t;
4231 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL,
4232 if appropriate. */
4234 tree
4235 pushdecl_top_level (x)
4236 tree x;
4238 tree cur_namespace = current_namespace;
4239 current_namespace = global_namespace;
4240 x = pushdecl_namespace_level (x);
4241 current_namespace = cur_namespace;
4242 return x;
4245 /* Make the declaration of X appear in CLASS scope. */
4247 void
4248 pushdecl_class_level (x)
4249 tree x;
4251 /* Don't use DECL_ASSEMBLER_NAME here! Everything that looks in class
4252 scope looks for the pre-mangled name. */
4253 register tree name;
4255 if (TREE_CODE (x) == OVERLOAD)
4256 x = OVL_CURRENT (x);
4257 name = DECL_NAME (x);
4259 if (name)
4261 push_class_level_binding (name, x);
4262 if (TREE_CODE (x) == TYPE_DECL)
4263 set_identifier_type_value (name, TREE_TYPE (x));
4265 else if (ANON_AGGR_TYPE_P (TREE_TYPE (x)))
4267 tree f;
4269 for (f = TYPE_FIELDS (TREE_TYPE (x));
4271 f = TREE_CHAIN (f))
4272 pushdecl_class_level (f);
4276 /* Enter DECL into the symbol table, if that's appropriate. Returns
4277 DECL, or a modified version thereof. */
4279 tree
4280 maybe_push_decl (decl)
4281 tree decl;
4283 tree type = TREE_TYPE (decl);
4285 /* Add this decl to the current binding level, but not if it comes
4286 from another scope, e.g. a static member variable. TEM may equal
4287 DECL or it may be a previous decl of the same name. */
4288 if ((TREE_CODE (decl) != PARM_DECL
4289 && DECL_CONTEXT (decl) != NULL_TREE
4290 /* Definitions of namespace members outside their namespace are
4291 possible. */
4292 && TREE_CODE (DECL_CONTEXT (decl)) != NAMESPACE_DECL)
4293 || (TREE_CODE (decl) == TEMPLATE_DECL && !namespace_bindings_p ())
4294 || TREE_CODE (type) == UNKNOWN_TYPE
4295 /* The declaration of a template specialization does not affect
4296 the functions available for overload resolution, so we do not
4297 call pushdecl. */
4298 || (TREE_CODE (decl) == FUNCTION_DECL
4299 && DECL_TEMPLATE_SPECIALIZATION (decl)))
4300 return decl;
4301 else
4302 return pushdecl (decl);
4305 #if 0
4306 /* This function is used to push the mangled decls for nested types into
4307 the appropriate scope. Previously pushdecl_top_level was used, but that
4308 is incorrect for members of local classes. */
4310 void
4311 pushdecl_nonclass_level (x)
4312 tree x;
4314 struct binding_level *b = current_binding_level;
4316 my_friendly_assert (b->parm_flag != 2, 180);
4318 #if 0
4319 /* Get out of template binding levels */
4320 while (b->pseudo_global)
4321 b = b->level_chain;
4322 #endif
4324 pushdecl_with_scope (x, b);
4326 #endif
4328 /* Make the declaration(s) of X appear in CLASS scope
4329 under the name NAME. */
4331 void
4332 push_class_level_binding (name, x)
4333 tree name;
4334 tree x;
4336 tree binding;
4337 /* The class_binding_level will be NULL if x is a template
4338 parameter name in a member template. */
4339 if (!class_binding_level)
4340 return;
4342 /* Make sure that this new member does not have the same name
4343 as a template parameter. */
4344 if (TYPE_BEING_DEFINED (current_class_type))
4345 check_template_shadow (x);
4347 /* If this declaration shadows a declaration from an enclosing
4348 class, then we will need to restore IDENTIFIER_CLASS_VALUE when
4349 we leave this class. Record the shadowed declaration here. */
4350 binding = IDENTIFIER_BINDING (name);
4351 if (binding
4352 && ((TREE_CODE (x) == OVERLOAD
4353 && BINDING_VALUE (binding)
4354 && is_overloaded_fn (BINDING_VALUE (binding)))
4355 || INHERITED_VALUE_BINDING_P (binding)))
4357 tree shadow;
4358 tree old_decl;
4360 /* If the old binding was from a base class, and was for a tag
4361 name, slide it over to make room for the new binding. The
4362 old binding is still visible if explicitly qualified with a
4363 class-key. */
4364 if (INHERITED_VALUE_BINDING_P (binding)
4365 && BINDING_VALUE (binding)
4366 && TREE_CODE (BINDING_VALUE (binding)) == TYPE_DECL
4367 && DECL_ARTIFICIAL (BINDING_VALUE (binding))
4368 && !(TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x)))
4370 old_decl = BINDING_TYPE (binding);
4371 BINDING_TYPE (binding) = BINDING_VALUE (binding);
4372 BINDING_VALUE (binding) = NULL_TREE;
4373 INHERITED_VALUE_BINDING_P (binding) = 0;
4375 else
4376 old_decl = BINDING_VALUE (binding);
4378 /* There was already a binding for X containing fewer
4379 functions than are named in X. Find the previous
4380 declaration of X on the class-shadowed list, and update it. */
4381 for (shadow = class_binding_level->class_shadowed;
4382 shadow;
4383 shadow = TREE_CHAIN (shadow))
4384 if (TREE_PURPOSE (shadow) == name
4385 && TREE_TYPE (shadow) == old_decl)
4387 BINDING_VALUE (binding) = x;
4388 INHERITED_VALUE_BINDING_P (binding) = 0;
4389 TREE_TYPE (shadow) = x;
4390 return;
4394 /* If we didn't replace an existing binding, put the binding on the
4395 stack of bindings for the identifier, and update
4396 IDENTIFIER_CLASS_VALUE. */
4397 if (push_class_binding (name, x))
4399 push_cache_obstack ();
4400 class_binding_level->class_shadowed
4401 = tree_cons (name, IDENTIFIER_CLASS_VALUE (name),
4402 class_binding_level->class_shadowed);
4403 pop_obstacks ();
4404 /* Record the value we are binding NAME to so that we can know
4405 what to pop later. */
4406 TREE_TYPE (class_binding_level->class_shadowed) = x;
4410 /* Insert another USING_DECL into the current binding level,
4411 returning this declaration. If this is a redeclaration,
4412 do nothing and return NULL_TREE. */
4414 tree
4415 push_using_decl (scope, name)
4416 tree scope;
4417 tree name;
4419 tree decl;
4421 my_friendly_assert (TREE_CODE (scope) == NAMESPACE_DECL, 383);
4422 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 384);
4423 for (decl = current_binding_level->usings; decl; decl = TREE_CHAIN (decl))
4424 if (DECL_INITIAL (decl) == scope && DECL_NAME (decl) == name)
4425 break;
4426 if (decl)
4427 return NULL_TREE;
4428 decl = build_lang_decl (USING_DECL, name, void_type_node);
4429 DECL_INITIAL (decl) = scope;
4430 TREE_CHAIN (decl) = current_binding_level->usings;
4431 current_binding_level->usings = decl;
4432 return decl;
4435 /* Add namespace to using_directives. Return NULL_TREE if nothing was
4436 changed (i.e. there was already a directive), or the fresh
4437 TREE_LIST otherwise. */
4439 tree
4440 push_using_directive (used)
4441 tree used;
4443 tree ud = current_binding_level->using_directives;
4444 tree iter, ancestor;
4446 /* Check if we already have this. */
4447 if (purpose_member (used, ud) != NULL_TREE)
4448 return NULL_TREE;
4450 /* Recursively add all namespaces used. */
4451 for (iter = DECL_NAMESPACE_USING (used); iter; iter = TREE_CHAIN (iter))
4452 push_using_directive (TREE_PURPOSE (iter));
4454 ancestor = namespace_ancestor (current_decl_namespace (), used);
4455 ud = current_binding_level->using_directives;
4456 ud = perm_tree_cons (used, ancestor, ud);
4457 current_binding_level->using_directives = ud;
4458 return ud;
4461 /* DECL is a FUNCTION_DECL for a non-member function, which may have
4462 other definitions already in place. We get around this by making
4463 the value of the identifier point to a list of all the things that
4464 want to be referenced by that name. It is then up to the users of
4465 that name to decide what to do with that list.
4467 DECL may also be a TEMPLATE_DECL, with a FUNCTION_DECL in its DECL_RESULT
4468 slot. It is dealt with the same way.
4470 FLAGS is a bitwise-or of the following values:
4471 PUSH_LOCAL: Bind DECL in the current scope, rather than at
4472 namespace scope.
4473 PUSH_USING: DECL is being pushed as the result of a using
4474 declaration.
4476 The value returned may be a previous declaration if we guessed wrong
4477 about what language DECL should belong to (C or C++). Otherwise,
4478 it's always DECL (and never something that's not a _DECL). */
4480 tree
4481 push_overloaded_decl (decl, flags)
4482 tree decl;
4483 int flags;
4485 tree name = DECL_NAME (decl);
4486 tree old;
4487 tree new_binding;
4488 int doing_global = (namespace_bindings_p () || !(flags & PUSH_LOCAL));
4490 if (doing_global)
4491 old = namespace_binding (name, DECL_CONTEXT (decl));
4492 else
4493 old = lookup_name_current_level (name);
4495 if (old)
4497 if (TREE_CODE (old) == TYPE_DECL && DECL_ARTIFICIAL (old))
4499 tree t = TREE_TYPE (old);
4500 if (IS_AGGR_TYPE (t) && warn_shadow
4501 && (! DECL_IN_SYSTEM_HEADER (decl)
4502 || ! DECL_IN_SYSTEM_HEADER (old)))
4503 cp_warning ("`%#D' hides constructor for `%#T'", decl, t);
4504 old = NULL_TREE;
4506 else if (is_overloaded_fn (old))
4508 tree tmp;
4510 for (tmp = old; tmp; tmp = OVL_NEXT (tmp))
4512 tree fn = OVL_CURRENT (tmp);
4514 if (TREE_CODE (tmp) == OVERLOAD && OVL_USED (tmp)
4515 && !(flags & PUSH_USING)
4516 && compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
4517 TYPE_ARG_TYPES (TREE_TYPE (decl))))
4518 cp_error ("`%#D' conflicts with previous using declaration `%#D'",
4519 decl, fn);
4521 if (duplicate_decls (decl, fn))
4522 return fn;
4525 else
4527 cp_error_at ("previous non-function declaration `%#D'", old);
4528 cp_error ("conflicts with function declaration `%#D'", decl);
4529 return decl;
4533 if (old || TREE_CODE (decl) == TEMPLATE_DECL)
4535 if (old && TREE_CODE (old) != OVERLOAD)
4536 new_binding = ovl_cons (decl, ovl_cons (old, NULL_TREE));
4537 else
4538 new_binding = ovl_cons (decl, old);
4539 if (flags & PUSH_USING)
4540 OVL_USED (new_binding) = 1;
4542 else
4543 /* NAME is not ambiguous. */
4544 new_binding = decl;
4546 if (doing_global)
4547 set_namespace_binding (name, current_namespace, new_binding);
4548 else
4550 /* We only create an OVERLOAD if there was a previous binding at
4551 this level, or if decl is a template. In the former case, we
4552 need to remove the old binding and replace it with the new
4553 binding. We must also run through the NAMES on the binding
4554 level where the name was bound to update the chain. */
4556 if (TREE_CODE (new_binding) == OVERLOAD && old)
4558 tree *d;
4560 for (d = &BINDING_LEVEL (IDENTIFIER_BINDING (name))->names;
4562 d = &TREE_CHAIN (*d))
4563 if (*d == old
4564 || (TREE_CODE (*d) == TREE_LIST
4565 && TREE_VALUE (*d) == old))
4567 if (TREE_CODE (*d) == TREE_LIST)
4568 /* Just replace the old binding with the new. */
4569 TREE_VALUE (*d) = new_binding;
4570 else
4571 /* Build a TREE_LIST to wrap the OVERLOAD. */
4572 *d = build_tree_list (NULL_TREE, new_binding);
4574 /* And update the CPLUS_BINDING node. */
4575 BINDING_VALUE (IDENTIFIER_BINDING (name))
4576 = new_binding;
4577 return decl;
4580 /* We should always find a previous binding in this case. */
4581 my_friendly_abort (0);
4584 /* Install the new binding. */
4585 push_local_binding (name, new_binding, flags);
4588 return decl;
4591 /* Generate an implicit declaration for identifier FUNCTIONID
4592 as a function of type int (). Print a warning if appropriate. */
4594 tree
4595 implicitly_declare (functionid)
4596 tree functionid;
4598 register tree decl;
4599 int temp = allocation_temporary_p ();
4601 push_obstacks_nochange ();
4603 /* Save the decl permanently so we can warn if definition follows.
4604 In ANSI C, warn_implicit is usually false, so the saves little space.
4605 But in C++, it's usually true, hence the extra code. */
4606 if (temp && (! warn_implicit || toplevel_bindings_p ()))
4607 end_temporary_allocation ();
4609 /* We used to reuse an old implicit decl here,
4610 but this loses with inline functions because it can clobber
4611 the saved decl chains. */
4612 decl = build_lang_decl (FUNCTION_DECL, functionid, default_function_type);
4614 DECL_EXTERNAL (decl) = 1;
4615 TREE_PUBLIC (decl) = 1;
4617 /* ANSI standard says implicit declarations are in the innermost block.
4618 So we record the decl in the standard fashion. */
4619 pushdecl (decl);
4620 rest_of_decl_compilation (decl, NULL_PTR, 0, 0);
4622 if (warn_implicit
4623 /* Only one warning per identifier. */
4624 && IDENTIFIER_IMPLICIT_DECL (functionid) == NULL_TREE)
4626 cp_pedwarn ("implicit declaration of function `%#D'", decl);
4629 SET_IDENTIFIER_IMPLICIT_DECL (functionid, decl);
4631 pop_obstacks ();
4633 return decl;
4636 /* Return zero if the declaration NEWDECL is valid
4637 when the declaration OLDDECL (assumed to be for the same name)
4638 has already been seen.
4639 Otherwise return an error message format string with a %s
4640 where the identifier should go. */
4642 static const char *
4643 redeclaration_error_message (newdecl, olddecl)
4644 tree newdecl, olddecl;
4646 if (TREE_CODE (newdecl) == TYPE_DECL)
4648 /* Because C++ can put things into name space for free,
4649 constructs like "typedef struct foo { ... } foo"
4650 would look like an erroneous redeclaration. */
4651 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
4652 return 0;
4653 else
4654 return "redefinition of `%#D'";
4656 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
4658 /* If this is a pure function, its olddecl will actually be
4659 the original initialization to `0' (which we force to call
4660 abort()). Don't complain about redefinition in this case. */
4661 if (DECL_LANG_SPECIFIC (olddecl) && DECL_ABSTRACT_VIRTUAL_P (olddecl))
4662 return 0;
4664 /* If both functions come from different namespaces, this is not
4665 a redeclaration - this is a conflict with a used function. */
4666 if (DECL_NAMESPACE_SCOPE_P (olddecl)
4667 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl))
4668 return "`%D' conflicts with used function";
4670 /* We'll complain about linkage mismatches in
4671 warn_extern_redeclared_static. */
4673 /* Defining the same name twice is no good. */
4674 if (DECL_INITIAL (olddecl) != NULL_TREE
4675 && DECL_INITIAL (newdecl) != NULL_TREE)
4677 if (DECL_NAME (olddecl) == NULL_TREE)
4678 return "`%#D' not declared in class";
4679 else
4680 return "redefinition of `%#D'";
4682 return 0;
4684 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
4686 if ((TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
4687 && DECL_INITIAL (DECL_TEMPLATE_RESULT (newdecl))
4688 && DECL_INITIAL (DECL_TEMPLATE_RESULT (olddecl)))
4689 || (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL
4690 && TYPE_SIZE (TREE_TYPE (newdecl))
4691 && TYPE_SIZE (TREE_TYPE (olddecl))))
4692 return "redefinition of `%#D'";
4693 return 0;
4695 else if (toplevel_bindings_p ())
4697 /* Objects declared at top level: */
4698 /* If at least one is a reference, it's ok. */
4699 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
4700 return 0;
4701 /* Reject two definitions. */
4702 return "redefinition of `%#D'";
4704 else
4706 /* Objects declared with block scope: */
4707 /* Reject two definitions, and reject a definition
4708 together with an external reference. */
4709 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
4710 return "redeclaration of `%#D'";
4711 return 0;
4715 /* Create a new label, named ID. */
4717 static tree
4718 make_label_decl (id, local_p)
4719 tree id;
4720 int local_p;
4722 tree decl;
4724 if (building_stmt_tree ())
4725 push_permanent_obstack ();
4726 decl = build_decl (LABEL_DECL, id, void_type_node);
4727 if (building_stmt_tree ())
4728 pop_obstacks ();
4729 else
4730 /* Make sure every label has an rtx. */
4731 label_rtx (decl);
4733 DECL_CONTEXT (decl) = current_function_decl;
4734 DECL_MODE (decl) = VOIDmode;
4735 C_DECLARED_LABEL_FLAG (decl) = local_p;
4737 /* Say where one reference is to the label, for the sake of the
4738 error if it is not defined. */
4739 DECL_SOURCE_LINE (decl) = lineno;
4740 DECL_SOURCE_FILE (decl) = input_filename;
4742 /* Record the fact that this identifier is bound to this label. */
4743 SET_IDENTIFIER_LABEL_VALUE (id, decl);
4745 /* Record this label on the list of used labels so that we can check
4746 at the end of the function to see whether or not the label was
4747 actually defined. */
4748 if ((named_label_uses == NULL || named_label_uses->label_decl != decl)
4749 && (named_label_uses == NULL
4750 || named_label_uses->names_in_scope != current_binding_level->names
4751 || named_label_uses->label_decl != decl))
4753 struct named_label_list *new_ent;
4754 new_ent
4755 = (struct named_label_list*)oballoc (sizeof (struct named_label_list));
4756 new_ent->label_decl = decl;
4757 new_ent->names_in_scope = current_binding_level->names;
4758 new_ent->binding_level = current_binding_level;
4759 new_ent->lineno_o_goto = lineno;
4760 new_ent->filename_o_goto = input_filename;
4761 new_ent->next = named_label_uses;
4762 named_label_uses = new_ent;
4765 return decl;
4768 /* Look for a label named ID in the current function. If one cannot
4769 be found, create one. (We keep track of used, but undefined,
4770 labels, and complain about them at the end of a function.) */
4772 tree
4773 lookup_label (id)
4774 tree id;
4776 tree decl;
4778 /* You can't use labels at global scope. */
4779 if (current_function_decl == NULL_TREE)
4781 error ("label `%s' referenced outside of any function",
4782 IDENTIFIER_POINTER (id));
4783 return NULL_TREE;
4786 /* See if we've already got this label. */
4787 decl = IDENTIFIER_LABEL_VALUE (id);
4788 if (decl != NULL_TREE && DECL_CONTEXT (decl) == current_function_decl)
4789 return decl;
4791 /* Record this label on the list of labels used in this function.
4792 We do this before calling make_label_decl so that we get the
4793 IDENTIFIER_LABEL_VALUE before the new label is declared. */
4794 named_labels = tree_cons (IDENTIFIER_LABEL_VALUE (id), NULL_TREE,
4795 named_labels);
4796 /* We need a new label. */
4797 decl = make_label_decl (id, /*local_p=*/0);
4798 /* Now fill in the information we didn't have before. */
4799 TREE_VALUE (named_labels) = decl;
4801 return decl;
4804 /* Declare a local label named ID. */
4806 tree
4807 declare_local_label (id)
4808 tree id;
4810 tree decl;
4812 /* Add a new entry to the SHADOWED_LABELS list so that when we leave
4813 this scope we can restore the old value of
4814 IDENTIFIER_TYPE_VALUE. */
4815 current_binding_level->shadowed_labels
4816 = tree_cons (IDENTIFIER_LABEL_VALUE (id), NULL_TREE,
4817 current_binding_level->shadowed_labels);
4818 /* Look for the label. */
4819 decl = make_label_decl (id, /*local_p=*/1);
4820 /* Now fill in the information we didn't have before. */
4821 TREE_VALUE (current_binding_level->shadowed_labels) = decl;
4823 return decl;
4826 /* Define a label, specifying the location in the source file.
4827 Return the LABEL_DECL node for the label, if the definition is valid.
4828 Otherwise return 0. */
4830 tree
4831 define_label (filename, line, name)
4832 char *filename;
4833 int line;
4834 tree name;
4836 tree decl = lookup_label (name);
4838 /* After labels, make any new cleanups go into their
4839 own new (temporary) binding contour. */
4840 current_binding_level->more_cleanups_ok = 0;
4842 if (name == get_identifier ("wchar_t"))
4843 cp_pedwarn ("label named wchar_t");
4845 if (DECL_INITIAL (decl) != NULL_TREE)
4847 cp_error ("duplicate label `%D'", decl);
4848 return 0;
4850 else
4852 struct named_label_list *uses, *prev;
4853 int identified = 0;
4854 int saw_eh = 0;
4856 /* Mark label as having been defined. */
4857 DECL_INITIAL (decl) = error_mark_node;
4858 /* Say where in the source. */
4859 DECL_SOURCE_FILE (decl) = filename;
4860 DECL_SOURCE_LINE (decl) = line;
4862 prev = NULL;
4863 uses = named_label_uses;
4864 while (uses != NULL)
4865 if (uses->label_decl == decl)
4867 struct binding_level *b = current_binding_level;
4868 while (b)
4870 tree new_decls = b->names;
4871 tree old_decls = (b == uses->binding_level)
4872 ? uses->names_in_scope : NULL_TREE;
4873 while (new_decls != old_decls)
4875 if (TREE_CODE (new_decls) == VAR_DECL
4876 /* Don't complain about crossing initialization
4877 of internal entities. They can't be accessed,
4878 and they should be cleaned up
4879 by the time we get to the label. */
4880 && ! DECL_ARTIFICIAL (new_decls)
4881 && !(DECL_INITIAL (new_decls) == NULL_TREE
4882 && pod_type_p (TREE_TYPE (new_decls))))
4884 /* This is really only important if we're crossing
4885 an initialization. The POD stuff is just
4886 pedantry; why should it matter if the class
4887 contains a field of pointer to member type? */
4888 int problem = (DECL_INITIAL (new_decls)
4889 || (TYPE_NEEDS_CONSTRUCTING
4890 (TREE_TYPE (new_decls))));
4892 if (! identified)
4894 if (problem)
4896 cp_error ("jump to label `%D'", decl);
4897 error_with_file_and_line
4898 (uses->filename_o_goto,
4899 uses->lineno_o_goto, " from here");
4901 else
4903 cp_pedwarn ("jump to label `%D'", decl);
4904 pedwarn_with_file_and_line
4905 (uses->filename_o_goto,
4906 uses->lineno_o_goto, " from here");
4908 identified = 1;
4911 if (problem)
4912 cp_error_at (" crosses initialization of `%#D'",
4913 new_decls);
4914 else
4915 cp_pedwarn_at (" enters scope of non-POD `%#D'",
4916 new_decls);
4918 new_decls = TREE_CHAIN (new_decls);
4920 if (b == uses->binding_level)
4921 break;
4922 if (b->eh_region && ! saw_eh)
4924 if (! identified)
4926 cp_error ("jump to label `%D'", decl);
4927 error_with_file_and_line
4928 (uses->filename_o_goto,
4929 uses->lineno_o_goto, " from here");
4930 identified = 1;
4932 error (" enters exception handling block");
4933 saw_eh = 1;
4935 b = b->level_chain;
4938 if (prev != NULL)
4939 prev->next = uses->next;
4940 else
4941 named_label_uses = uses->next;
4943 uses = uses->next;
4945 else
4947 prev = uses;
4948 uses = uses->next;
4950 current_function_return_value = NULL_TREE;
4951 return decl;
4955 struct cp_switch
4957 struct binding_level *level;
4958 struct cp_switch *next;
4961 static struct cp_switch *switch_stack;
4963 void
4964 push_switch ()
4966 struct cp_switch *p
4967 = (struct cp_switch *) oballoc (sizeof (struct cp_switch));
4968 p->level = current_binding_level;
4969 p->next = switch_stack;
4970 switch_stack = p;
4973 void
4974 pop_switch ()
4976 switch_stack = switch_stack->next;
4979 /* Same, but for CASE labels. If DECL is NULL_TREE, it's the default. */
4980 /* XXX Note decl is never actually used. (bpk) */
4982 void
4983 define_case_label ()
4985 tree cleanup = last_cleanup_this_contour ();
4986 struct binding_level *b = current_binding_level;
4987 int identified = 0;
4989 if (cleanup)
4991 static int explained = 0;
4992 cp_warning_at ("destructor needed for `%#D'", TREE_PURPOSE (cleanup));
4993 warning ("where case label appears here");
4994 if (!explained)
4996 warning ("(enclose actions of previous case statements requiring");
4997 warning ("destructors in their own binding contours.)");
4998 explained = 1;
5002 for (; b && b != switch_stack->level; b = b->level_chain)
5004 tree new_decls = b->names;
5005 for (; new_decls; new_decls = TREE_CHAIN (new_decls))
5007 if (TREE_CODE (new_decls) == VAR_DECL
5008 /* Don't complain about crossing initialization
5009 of internal entities. They can't be accessed,
5010 and they should be cleaned up
5011 by the time we get to the label. */
5012 && ! DECL_ARTIFICIAL (new_decls)
5013 && ((DECL_INITIAL (new_decls) != NULL_TREE
5014 && DECL_INITIAL (new_decls) != error_mark_node)
5015 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (new_decls))))
5017 if (! identified)
5018 error ("jump to case label");
5019 identified = 1;
5020 cp_error_at (" crosses initialization of `%#D'",
5021 new_decls);
5026 /* After labels, make any new cleanups go into their
5027 own new (temporary) binding contour. */
5029 current_binding_level->more_cleanups_ok = 0;
5030 current_function_return_value = NULL_TREE;
5033 /* Return the list of declarations of the current level.
5034 Note that this list is in reverse order unless/until
5035 you nreverse it; and when you do nreverse it, you must
5036 store the result back using `storedecls' or you will lose. */
5038 tree
5039 getdecls ()
5041 return current_binding_level->names;
5044 /* Return the list of type-tags (for structs, etc) of the current level. */
5046 tree
5047 gettags ()
5049 return current_binding_level->tags;
5052 /* Store the list of declarations of the current level.
5053 This is done for the parameter declarations of a function being defined,
5054 after they are modified in the light of any missing parameters. */
5056 static void
5057 storedecls (decls)
5058 tree decls;
5060 current_binding_level->names = decls;
5063 /* Similarly, store the list of tags of the current level. */
5065 void
5066 storetags (tags)
5067 tree tags;
5069 current_binding_level->tags = tags;
5072 /* Given NAME, an IDENTIFIER_NODE,
5073 return the structure (or union or enum) definition for that name.
5074 Searches binding levels from BINDING_LEVEL up to the global level.
5075 If THISLEVEL_ONLY is nonzero, searches only the specified context
5076 (but skips any tag-transparent contexts to find one that is
5077 meaningful for tags).
5078 FORM says which kind of type the caller wants;
5079 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
5080 If the wrong kind of type is found, and it's not a template, an error is
5081 reported. */
5083 static tree
5084 lookup_tag (form, name, binding_level, thislevel_only)
5085 enum tree_code form;
5086 tree name;
5087 struct binding_level *binding_level;
5088 int thislevel_only;
5090 register struct binding_level *level;
5091 /* Non-zero if, we should look past a pseudo-global level, even if
5092 THISLEVEL_ONLY. */
5093 int allow_pseudo_global = 1;
5095 for (level = binding_level; level; level = level->level_chain)
5097 register tree tail;
5098 if (ANON_AGGRNAME_P (name))
5099 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
5101 /* There's no need for error checking here, because
5102 anon names are unique throughout the compilation. */
5103 if (TYPE_IDENTIFIER (TREE_VALUE (tail)) == name)
5104 return TREE_VALUE (tail);
5106 else if (level->namespace_p)
5107 /* Do namespace lookup. */
5108 for (tail = current_namespace; 1; tail = CP_DECL_CONTEXT (tail))
5110 tree old = binding_for_name (name, tail);
5112 /* If we just skipped past a pseudo global level, even
5113 though THISLEVEL_ONLY, and we find a template class
5114 declaration, then we use the _TYPE node for the
5115 template. See the example below. */
5116 if (thislevel_only && !allow_pseudo_global
5117 && old && BINDING_VALUE (old)
5118 && DECL_CLASS_TEMPLATE_P (BINDING_VALUE (old)))
5119 old = TREE_TYPE (BINDING_VALUE (old));
5120 else
5121 old = BINDING_TYPE (old);
5123 /* If it has an original type, it is a typedef, and we
5124 should not return it. */
5125 if (old && DECL_ORIGINAL_TYPE (TYPE_NAME (old)))
5126 old = NULL_TREE;
5127 if (old && TREE_CODE (old) != form
5128 && !(form != ENUMERAL_TYPE && TREE_CODE (old) == TEMPLATE_DECL))
5130 cp_error ("`%#D' redeclared as %C", old, form);
5131 return NULL_TREE;
5133 if (old)
5134 return old;
5135 if (thislevel_only || tail == global_namespace)
5136 return NULL_TREE;
5138 else
5139 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
5141 if (TREE_PURPOSE (tail) == name)
5143 enum tree_code code = TREE_CODE (TREE_VALUE (tail));
5144 /* Should tighten this up; it'll probably permit
5145 UNION_TYPE and a struct template, for example. */
5146 if (code != form
5147 && !(form != ENUMERAL_TYPE && code == TEMPLATE_DECL))
5149 /* Definition isn't the kind we were looking for. */
5150 cp_error ("`%#D' redeclared as %C", TREE_VALUE (tail),
5151 form);
5152 return NULL_TREE;
5154 return TREE_VALUE (tail);
5157 if (thislevel_only && ! level->tag_transparent)
5159 if (level->pseudo_global && allow_pseudo_global)
5161 /* We must deal with cases like this:
5163 template <class T> struct S;
5164 template <class T> struct S {};
5166 When looking up `S', for the second declaration, we
5167 would like to find the first declaration. But, we
5168 are in the pseudo-global level created for the
5169 template parameters, rather than the (surrounding)
5170 namespace level. Thus, we keep going one more level,
5171 even though THISLEVEL_ONLY is non-zero. */
5172 allow_pseudo_global = 0;
5173 continue;
5175 else
5176 return NULL_TREE;
5179 return NULL_TREE;
5182 #if 0
5183 void
5184 set_current_level_tags_transparency (tags_transparent)
5185 int tags_transparent;
5187 current_binding_level->tag_transparent = tags_transparent;
5189 #endif
5191 /* Given a type, find the tag that was defined for it and return the tag name.
5192 Otherwise return 0. However, the value can never be 0
5193 in the cases in which this is used.
5195 C++: If NAME is non-zero, this is the new name to install. This is
5196 done when replacing anonymous tags with real tag names. */
5198 static tree
5199 lookup_tag_reverse (type, name)
5200 tree type;
5201 tree name;
5203 register struct binding_level *level;
5205 for (level = current_binding_level; level; level = level->level_chain)
5207 register tree tail;
5208 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
5210 if (TREE_VALUE (tail) == type)
5212 if (name)
5213 TREE_PURPOSE (tail) = name;
5214 return TREE_PURPOSE (tail);
5218 return NULL_TREE;
5221 /* Look up NAME in the NAMESPACE. */
5223 tree
5224 lookup_namespace_name (namespace, name)
5225 tree namespace, name;
5227 tree val;
5228 tree template_id = NULL_TREE;
5230 my_friendly_assert (TREE_CODE (namespace) == NAMESPACE_DECL, 370);
5232 if (TREE_CODE (name) == NAMESPACE_DECL)
5233 /* This happens for A::B<int> when B is a namespace. */
5234 return name;
5235 else if (TREE_CODE (name) == TEMPLATE_DECL)
5237 /* This happens for A::B where B is a template, and there are no
5238 template arguments. */
5239 cp_error ("invalid use of `%D'", name);
5240 return error_mark_node;
5243 namespace = ORIGINAL_NAMESPACE (namespace);
5245 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
5247 template_id = name;
5248 name = TREE_OPERAND (name, 0);
5249 if (TREE_CODE (name) == OVERLOAD)
5250 name = DECL_NAME (OVL_CURRENT (name));
5251 else if (TREE_CODE_CLASS (TREE_CODE (name)) == 'd')
5252 name = DECL_NAME (name);
5255 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 373);
5257 val = make_node (CPLUS_BINDING);
5258 if (!qualified_lookup_using_namespace (name, namespace, val, 0))
5259 return error_mark_node;
5261 if (BINDING_VALUE (val))
5263 val = BINDING_VALUE (val);
5265 if (template_id)
5267 if (DECL_CLASS_TEMPLATE_P (val))
5268 val = lookup_template_class (val,
5269 TREE_OPERAND (template_id, 1),
5270 /*in_decl=*/NULL_TREE,
5271 /*context=*/NULL_TREE,
5272 /*entering_scope=*/0);
5273 else if (DECL_FUNCTION_TEMPLATE_P (val)
5274 || TREE_CODE (val) == OVERLOAD)
5275 val = lookup_template_function (val,
5276 TREE_OPERAND (template_id, 1));
5277 else
5279 cp_error ("`%D::%D' is not a template",
5280 namespace, name);
5281 return error_mark_node;
5285 /* If we have a single function from a using decl, pull it out. */
5286 if (TREE_CODE (val) == OVERLOAD && ! really_overloaded_fn (val))
5287 val = OVL_FUNCTION (val);
5288 return val;
5291 cp_error ("`%D' undeclared in namespace `%D'", name, namespace);
5292 return error_mark_node;
5295 /* Hash a TYPENAME_TYPE. K is really of type `tree'. */
5297 static unsigned long
5298 typename_hash (k)
5299 hash_table_key k;
5301 unsigned long hash;
5302 tree t;
5304 t = (tree) k;
5305 hash = (((unsigned long) TYPE_CONTEXT (t))
5306 ^ ((unsigned long) DECL_NAME (TYPE_NAME (t))));
5308 return hash;
5311 /* Compare two TYPENAME_TYPEs. K1 and K2 are really of type `tree'. */
5313 static boolean
5314 typename_compare (k1, k2)
5315 hash_table_key k1;
5316 hash_table_key k2;
5318 tree t1;
5319 tree t2;
5320 tree d1;
5321 tree d2;
5323 t1 = (tree) k1;
5324 t2 = (tree) k2;
5325 d1 = TYPE_NAME (t1);
5326 d2 = TYPE_NAME (t2);
5328 return (DECL_NAME (d1) == DECL_NAME (d2)
5329 && same_type_p (TYPE_CONTEXT (t1), TYPE_CONTEXT (t2))
5330 && ((TREE_TYPE (t1) != NULL_TREE)
5331 == (TREE_TYPE (t2) != NULL_TREE))
5332 && same_type_p (TREE_TYPE (t1), TREE_TYPE (t2))
5333 && TYPENAME_TYPE_FULLNAME (t1) == TYPENAME_TYPE_FULLNAME (t2));
5336 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
5337 the type of `T', NAME is the IDENTIFIER_NODE for `t'. If BASE_TYPE
5338 is non-NULL, this type is being created by the implicit typename
5339 extension, and BASE_TYPE is a type named `t' in some base class of
5340 `T' which depends on template parameters.
5342 Returns the new TYPENAME_TYPE. */
5344 tree
5345 build_typename_type (context, name, fullname, base_type)
5346 tree context;
5347 tree name;
5348 tree fullname;
5349 tree base_type;
5351 tree t;
5352 tree d;
5353 struct hash_entry* e;
5355 static struct hash_table ht;
5357 push_obstacks (&permanent_obstack, &permanent_obstack);
5359 if (!ht.table)
5361 static struct hash_table *h = &ht;
5362 if (!hash_table_init (&ht, &hash_newfunc, &typename_hash,
5363 &typename_compare))
5364 fatal ("virtual memory exhausted");
5365 ggc_add_tree_hash_table_root (&h, 1);
5368 /* Build the TYPENAME_TYPE. */
5369 t = make_lang_type (TYPENAME_TYPE);
5370 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
5371 TYPENAME_TYPE_FULLNAME (t) = fullname;
5372 TREE_TYPE (t) = base_type;
5374 /* Build the corresponding TYPE_DECL. */
5375 d = build_decl (TYPE_DECL, name, t);
5376 TYPE_NAME (TREE_TYPE (d)) = d;
5377 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
5378 DECL_CONTEXT (d) = FROB_CONTEXT (context);
5379 DECL_ARTIFICIAL (d) = 1;
5381 /* See if we already have this type. */
5382 e = hash_lookup (&ht, t, /*create=*/false, /*copy=*/0);
5383 if (e)
5384 t = (tree) e->key;
5385 else
5386 /* Insert the type into the table. */
5387 hash_lookup (&ht, t, /*create=*/true, /*copy=*/0);
5389 pop_obstacks ();
5391 return t;
5394 tree
5395 make_typename_type (context, name)
5396 tree context, name;
5398 tree fullname;
5400 if (TREE_CODE_CLASS (TREE_CODE (name)) == 't')
5402 if (!(TYPE_LANG_SPECIFIC (name)
5403 && (CLASSTYPE_IS_TEMPLATE (name)
5404 || CLASSTYPE_USE_TEMPLATE (name))))
5405 name = TYPE_IDENTIFIER (name);
5406 else
5407 /* Create a TEMPLATE_ID_EXPR for the type. */
5408 name = build_nt (TEMPLATE_ID_EXPR,
5409 CLASSTYPE_TI_TEMPLATE (name),
5410 CLASSTYPE_TI_ARGS (name));
5412 else if (TREE_CODE (name) == TYPE_DECL)
5413 name = DECL_NAME (name);
5415 fullname = name;
5417 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
5419 name = TREE_OPERAND (name, 0);
5420 if (TREE_CODE (name) == TEMPLATE_DECL)
5421 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
5423 if (TREE_CODE (name) != IDENTIFIER_NODE)
5424 my_friendly_abort (2000);
5426 if (TREE_CODE (context) == NAMESPACE_DECL)
5428 /* We can get here from typename_sub0 in the explicit_template_type
5429 expansion. Just fail. */
5430 cp_error ("no class template named `%#T' in `%#T'",
5431 name, context);
5432 return error_mark_node;
5435 if (! uses_template_parms (context)
5436 || currently_open_class (context))
5438 if (TREE_CODE (fullname) == TEMPLATE_ID_EXPR)
5440 tree tmpl = NULL_TREE;
5441 if (IS_AGGR_TYPE (context))
5442 tmpl = lookup_field (context, name, 0, 0);
5443 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
5445 cp_error ("no class template named `%#T' in `%#T'",
5446 name, context);
5447 return error_mark_node;
5450 return lookup_template_class (tmpl,
5451 TREE_OPERAND (fullname, 1),
5452 NULL_TREE, context,
5453 /*entering_scope=*/0);
5455 else
5457 tree t;
5459 if (!IS_AGGR_TYPE (context))
5461 cp_error ("no type named `%#T' in `%#T'", name, context);
5462 return error_mark_node;
5465 t = lookup_field (context, name, 0, 1);
5466 if (t)
5467 return TREE_TYPE (t);
5471 /* If the CONTEXT is not a template type, then either the field is
5472 there now or its never going to be. */
5473 if (!uses_template_parms (context))
5475 cp_error ("no type named `%#T' in `%#T'", name, context);
5476 return error_mark_node;
5480 return build_typename_type (context, name, fullname, NULL_TREE);
5483 /* Select the right _DECL from multiple choices. */
5485 static tree
5486 select_decl (binding, flags)
5487 tree binding;
5488 int flags;
5490 tree val;
5491 val = BINDING_VALUE (binding);
5492 if (LOOKUP_NAMESPACES_ONLY (flags))
5494 /* We are not interested in types. */
5495 if (val && TREE_CODE (val) == NAMESPACE_DECL)
5496 return val;
5497 return NULL_TREE;
5500 /* If we could have a type and
5501 we have nothing or we need a type and have none. */
5502 if (BINDING_TYPE (binding)
5503 && (!val || ((flags & LOOKUP_PREFER_TYPES)
5504 && TREE_CODE (val) != TYPE_DECL)))
5505 val = TYPE_STUB_DECL (BINDING_TYPE (binding));
5506 /* Don't return non-types if we really prefer types. */
5507 else if (val && LOOKUP_TYPES_ONLY (flags) && TREE_CODE (val) != TYPE_DECL
5508 && (TREE_CODE (val) != TEMPLATE_DECL
5509 || !DECL_CLASS_TEMPLATE_P (val)))
5510 val = NULL_TREE;
5512 return val;
5515 /* Unscoped lookup of a global: iterate over current namespaces,
5516 considering using-directives. If SPACESP is non-NULL, store a list
5517 of the namespaces we've considered in it. */
5519 tree
5520 unqualified_namespace_lookup (name, flags, spacesp)
5521 tree name;
5522 int flags;
5523 tree *spacesp;
5525 tree b = make_node (CPLUS_BINDING);
5526 tree initial = current_decl_namespace();
5527 tree scope = initial;
5528 tree siter;
5529 struct binding_level *level;
5530 tree val = NULL_TREE;
5532 if (spacesp)
5533 *spacesp = NULL_TREE;
5535 for (; !val; scope = CP_DECL_CONTEXT (scope))
5537 if (spacesp)
5538 *spacesp = scratch_tree_cons (scope, NULL_TREE, *spacesp);
5539 val = binding_for_name (name, scope);
5541 /* Initialize binding for this context. */
5542 BINDING_VALUE (b) = BINDING_VALUE (val);
5543 BINDING_TYPE (b) = BINDING_TYPE (val);
5545 /* Add all _DECLs seen through local using-directives. */
5546 for (level = current_binding_level;
5547 !level->namespace_p;
5548 level = level->level_chain)
5549 if (!lookup_using_namespace (name, b, level->using_directives,
5550 scope, flags, spacesp))
5551 /* Give up because of error. */
5552 return error_mark_node;
5554 /* Add all _DECLs seen through global using-directives. */
5555 /* XXX local and global using lists should work equally. */
5556 siter = initial;
5557 while (1)
5559 if (!lookup_using_namespace (name, b, DECL_NAMESPACE_USING (siter),
5560 scope, flags, spacesp))
5561 /* Give up because of error. */
5562 return error_mark_node;
5563 if (siter == scope) break;
5564 siter = CP_DECL_CONTEXT (siter);
5567 val = select_decl (b, flags);
5568 if (scope == global_namespace)
5569 break;
5571 return val;
5574 /* Combine prefer_type and namespaces_only into flags. */
5576 static int
5577 lookup_flags (prefer_type, namespaces_only)
5578 int prefer_type, namespaces_only;
5580 if (namespaces_only)
5581 return LOOKUP_PREFER_NAMESPACES;
5582 if (prefer_type > 1)
5583 return LOOKUP_PREFER_TYPES;
5584 if (prefer_type > 0)
5585 return LOOKUP_PREFER_BOTH;
5586 return 0;
5589 /* Given a lookup that returned VAL, use FLAGS to decide if we want to
5590 ignore it or not. Subroutine of lookup_name_real. */
5592 static tree
5593 qualify_lookup (val, flags)
5594 tree val;
5595 int flags;
5597 if (val == NULL_TREE)
5598 return val;
5599 if ((flags & LOOKUP_PREFER_NAMESPACES) && TREE_CODE (val) == NAMESPACE_DECL)
5600 return val;
5601 if ((flags & LOOKUP_PREFER_TYPES)
5602 && (TREE_CODE (val) == TYPE_DECL
5603 || ((flags & LOOKUP_TEMPLATES_EXPECTED)
5604 && DECL_CLASS_TEMPLATE_P (val))))
5605 return val;
5606 if (flags & (LOOKUP_PREFER_NAMESPACES | LOOKUP_PREFER_TYPES))
5607 return NULL_TREE;
5608 return val;
5611 /* Any other BINDING overrides an implicit TYPENAME. Warn about
5612 that. */
5614 static void
5615 warn_about_implicit_typename_lookup (typename, binding)
5616 tree typename;
5617 tree binding;
5619 tree subtype = TREE_TYPE (TREE_TYPE (typename));
5620 tree name = DECL_NAME (typename);
5622 if (! (TREE_CODE (binding) == TEMPLATE_DECL
5623 && CLASSTYPE_TEMPLATE_INFO (subtype)
5624 && CLASSTYPE_TI_TEMPLATE (subtype) == binding)
5625 && ! (TREE_CODE (binding) == TYPE_DECL
5626 && same_type_p (TREE_TYPE (binding), subtype)))
5628 cp_warning ("lookup of `%D' finds `%#D'",
5629 name, binding);
5630 cp_warning (" instead of `%D' from dependent base class",
5631 typename);
5632 cp_warning (" (use `typename %T::%D' if that's what you meant)",
5633 constructor_name (current_class_type), name);
5637 /* Look up NAME in the current binding level and its superiors in the
5638 namespace of variables, functions and typedefs. Return a ..._DECL
5639 node of some kind representing its definition if there is only one
5640 such declaration, or return a TREE_LIST with all the overloaded
5641 definitions if there are many, or return 0 if it is undefined.
5643 If PREFER_TYPE is > 0, we prefer TYPE_DECLs or namespaces.
5644 If PREFER_TYPE is > 1, we reject non-type decls (e.g. namespaces).
5645 If PREFER_TYPE is -2, we're being called from yylex(). (UGLY)
5646 Otherwise we prefer non-TYPE_DECLs.
5648 If NONCLASS is non-zero, we don't look for the NAME in class scope,
5649 using IDENTIFIER_CLASS_VALUE. */
5651 static tree
5652 lookup_name_real (name, prefer_type, nonclass, namespaces_only)
5653 tree name;
5654 int prefer_type, nonclass, namespaces_only;
5656 tree t;
5657 tree val = NULL_TREE;
5658 int yylex = 0;
5659 tree from_obj = NULL_TREE;
5660 int flags;
5661 int val_is_implicit_typename = 0;
5663 /* Hack: copy flag set by parser, if set. */
5664 if (only_namespace_names)
5665 namespaces_only = 1;
5667 if (prefer_type == -2)
5669 extern int looking_for_typename;
5670 tree type = NULL_TREE;
5672 yylex = 1;
5673 prefer_type = looking_for_typename;
5675 flags = lookup_flags (prefer_type, namespaces_only);
5676 /* If the next thing is '<', class templates are types. */
5677 if (looking_for_template)
5678 flags |= LOOKUP_TEMPLATES_EXPECTED;
5680 /* std:: becomes :: for now. */
5681 if (got_scope == std_node)
5682 got_scope = void_type_node;
5684 if (got_scope)
5685 type = got_scope;
5686 else if (got_object != error_mark_node)
5687 type = got_object;
5689 if (type)
5691 if (type == error_mark_node)
5692 return error_mark_node;
5693 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
5694 type = TREE_TYPE (type);
5696 if (TYPE_P (type))
5697 type = complete_type (type);
5699 if (TREE_CODE (type) == VOID_TYPE)
5700 type = global_namespace;
5701 if (TREE_CODE (type) == NAMESPACE_DECL)
5703 val = make_node (CPLUS_BINDING);
5704 flags |= LOOKUP_COMPLAIN;
5705 if (!qualified_lookup_using_namespace (name, type, val, flags))
5706 return NULL_TREE;
5707 val = select_decl (val, flags);
5709 else if (! IS_AGGR_TYPE (type)
5710 || TREE_CODE (type) == TEMPLATE_TYPE_PARM
5711 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM
5712 || TREE_CODE (type) == TYPENAME_TYPE)
5713 /* Someone else will give an error about this if needed. */
5714 val = NULL_TREE;
5715 else if (type == current_class_type)
5716 val = IDENTIFIER_CLASS_VALUE (name);
5717 else
5718 val = lookup_member (type, name, 0, prefer_type);
5720 else
5721 val = NULL_TREE;
5723 if (got_scope)
5724 goto done;
5725 else if (got_object && val)
5726 from_obj = val;
5728 else
5730 flags = lookup_flags (prefer_type, namespaces_only);
5731 /* If we're not parsing, we need to complain. */
5732 flags |= LOOKUP_COMPLAIN;
5735 /* First, look in non-namespace scopes. */
5737 if (current_class_type == NULL_TREE)
5738 nonclass = 1;
5740 for (t = IDENTIFIER_BINDING (name); t; t = TREE_CHAIN (t))
5742 tree binding;
5744 if (!LOCAL_BINDING_P (t) && nonclass)
5745 /* We're not looking for class-scoped bindings, so keep going. */
5746 continue;
5748 /* If this is the kind of thing we're looking for, we're done. */
5749 if (qualify_lookup (BINDING_VALUE (t), flags))
5750 binding = BINDING_VALUE (t);
5751 else if ((flags & LOOKUP_PREFER_TYPES)
5752 && qualify_lookup (BINDING_TYPE (t), flags))
5753 binding = BINDING_TYPE (t);
5754 else
5755 binding = NULL_TREE;
5757 if (binding
5758 && (!val || !IMPLICIT_TYPENAME_TYPE_DECL_P (binding)))
5760 if (val_is_implicit_typename && !yylex)
5761 warn_about_implicit_typename_lookup (val, binding);
5762 val = binding;
5763 val_is_implicit_typename
5764 = IMPLICIT_TYPENAME_TYPE_DECL_P (val);
5765 if (!val_is_implicit_typename)
5766 break;
5770 /* Now lookup in namespace scopes. */
5771 if (!val || val_is_implicit_typename)
5773 t = unqualified_namespace_lookup (name, flags, 0);
5774 if (t)
5776 if (val_is_implicit_typename && !yylex)
5777 warn_about_implicit_typename_lookup (val, t);
5778 val = t;
5782 done:
5783 if (val)
5785 /* This should only warn about types used in qualified-ids. */
5786 if (from_obj && from_obj != val)
5788 if (looking_for_typename && TREE_CODE (from_obj) == TYPE_DECL
5789 && TREE_CODE (val) == TYPE_DECL
5790 && TREE_TYPE (from_obj) != TREE_TYPE (val))
5792 cp_pedwarn ("lookup of `%D' in the scope of `%#T' (`%#T')",
5793 name, got_object, TREE_TYPE (from_obj));
5794 cp_pedwarn (" does not match lookup in the current scope (`%#T')",
5795 TREE_TYPE (val));
5798 /* We don't change val to from_obj if got_object depends on
5799 template parms because that breaks implicit typename for
5800 destructor calls. */
5801 if (! uses_template_parms (got_object))
5802 val = from_obj;
5805 /* If we have a single function from a using decl, pull it out. */
5806 if (TREE_CODE (val) == OVERLOAD && ! really_overloaded_fn (val))
5807 val = OVL_FUNCTION (val);
5809 else if (from_obj)
5810 val = from_obj;
5812 return val;
5815 tree
5816 lookup_name_nonclass (name)
5817 tree name;
5819 return lookup_name_real (name, 0, 1, 0);
5822 tree
5823 lookup_function_nonclass (name, args)
5824 tree name;
5825 tree args;
5827 return lookup_arg_dependent (name, lookup_name_nonclass (name), args);
5830 tree
5831 lookup_name_namespace_only (name)
5832 tree name;
5834 /* type-or-namespace, nonclass, namespace_only */
5835 return lookup_name_real (name, 1, 1, 1);
5838 tree
5839 lookup_name (name, prefer_type)
5840 tree name;
5841 int prefer_type;
5843 return lookup_name_real (name, prefer_type, 0, 0);
5846 /* Similar to `lookup_name' but look only in the innermost non-class
5847 binding level. */
5849 tree
5850 lookup_name_current_level (name)
5851 tree name;
5853 struct binding_level *b;
5854 tree t = NULL_TREE;
5856 b = current_binding_level;
5857 while (b->parm_flag == 2)
5858 b = b->level_chain;
5860 if (b->namespace_p)
5862 t = IDENTIFIER_NAMESPACE_VALUE (name);
5864 /* extern "C" function() */
5865 if (t != NULL_TREE && TREE_CODE (t) == TREE_LIST)
5866 t = TREE_VALUE (t);
5868 else if (IDENTIFIER_BINDING (name)
5869 && LOCAL_BINDING_P (IDENTIFIER_BINDING (name)))
5871 while (1)
5873 if (BINDING_LEVEL (IDENTIFIER_BINDING (name)) == b)
5874 return IDENTIFIER_VALUE (name);
5876 if (b->keep == 2)
5877 b = b->level_chain;
5878 else
5879 break;
5883 return t;
5886 /* Like lookup_name_current_level, but for types. */
5888 tree
5889 lookup_type_current_level (name)
5890 tree name;
5892 register tree t = NULL_TREE;
5894 my_friendly_assert (! current_binding_level->namespace_p, 980716);
5896 if (REAL_IDENTIFIER_TYPE_VALUE (name) != NULL_TREE
5897 && REAL_IDENTIFIER_TYPE_VALUE (name) != global_type_node)
5899 struct binding_level *b = current_binding_level;
5900 while (1)
5902 if (purpose_member (name, b->type_shadowed))
5903 return REAL_IDENTIFIER_TYPE_VALUE (name);
5904 if (b->keep == 2)
5905 b = b->level_chain;
5906 else
5907 break;
5911 return t;
5914 void
5915 begin_only_namespace_names ()
5917 only_namespace_names = 1;
5920 void
5921 end_only_namespace_names ()
5923 only_namespace_names = 0;
5926 /* Arrange for the user to get a source line number, even when the
5927 compiler is going down in flames, so that she at least has a
5928 chance of working around problems in the compiler. We used to
5929 call error(), but that let the segmentation fault continue
5930 through; now, it's much more passive by asking them to send the
5931 maintainers mail about the problem. */
5933 static void
5934 signal_catch (sig)
5935 int sig ATTRIBUTE_UNUSED;
5937 signal (SIGSEGV, SIG_DFL);
5938 #ifdef SIGIOT
5939 signal (SIGIOT, SIG_DFL);
5940 #endif
5941 #ifdef SIGILL
5942 signal (SIGILL, SIG_DFL);
5943 #endif
5944 #ifdef SIGABRT
5945 signal (SIGABRT, SIG_DFL);
5946 #endif
5947 #ifdef SIGBUS
5948 signal (SIGBUS, SIG_DFL);
5949 #endif
5950 my_friendly_abort (0);
5953 /* Push the declarations of builtin types into the namespace.
5954 RID_INDEX, if < RID_MAX is the index of the builtin type
5955 in the array RID_POINTERS. NAME is the name used when looking
5956 up the builtin type. TYPE is the _TYPE node for the builtin type. */
5958 static void
5959 record_builtin_type (rid_index, name, type)
5960 enum rid rid_index;
5961 const char *name;
5962 tree type;
5964 tree rname = NULL_TREE, tname = NULL_TREE;
5965 tree tdecl = NULL_TREE;
5967 if ((int) rid_index < (int) RID_MAX)
5968 rname = ridpointers[(int) rid_index];
5969 if (name)
5970 tname = get_identifier (name);
5972 TYPE_BUILT_IN (type) = 1;
5974 if (tname)
5976 tdecl = pushdecl (build_decl (TYPE_DECL, tname, type));
5977 set_identifier_type_value (tname, NULL_TREE);
5978 if ((int) rid_index < (int) RID_MAX)
5979 /* Built-in types live in the global namespace. */
5980 SET_IDENTIFIER_GLOBAL_VALUE (tname, tdecl);
5982 if (rname != NULL_TREE)
5984 if (tname != NULL_TREE)
5986 set_identifier_type_value (rname, NULL_TREE);
5987 SET_IDENTIFIER_GLOBAL_VALUE (rname, tdecl);
5989 else
5991 tdecl = pushdecl (build_decl (TYPE_DECL, rname, type));
5992 set_identifier_type_value (rname, NULL_TREE);
5997 /* Record one of the standard Java types.
5998 * Declare it as having the given NAME.
5999 * If SIZE > 0, it is the size of one of the integral types;
6000 * otherwise it is the negative of the size of one of the other types. */
6002 static tree
6003 record_builtin_java_type (name, size)
6004 const char *name;
6005 int size;
6007 tree type, decl;
6008 if (size > 0)
6009 type = make_signed_type (size);
6010 else if (size > -32)
6011 { /* "__java_char" or ""__java_boolean". */
6012 type = make_unsigned_type (-size);
6013 /*if (size == -1) TREE_SET_CODE (type, BOOLEAN_TYPE);*/
6015 else
6016 { /* "__java_float" or ""__java_double". */
6017 type = make_node (REAL_TYPE);
6018 TYPE_PRECISION (type) = - size;
6019 layout_type (type);
6021 record_builtin_type (RID_MAX, name, type);
6022 decl = TYPE_NAME (type);
6024 /* Suppress generate debug symbol entries for these types,
6025 since for normal C++ they are just clutter.
6026 However, push_lang_context undoes this if extern "Java" is seen. */
6027 DECL_IGNORED_P (decl) = 1;
6029 TYPE_FOR_JAVA (type) = 1;
6030 return type;
6033 /* Push a type into the namespace so that the back-ends ignore it. */
6035 static void
6036 record_unknown_type (type, name)
6037 tree type;
6038 const char *name;
6040 tree decl = pushdecl (build_decl (TYPE_DECL, get_identifier (name), type));
6041 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
6042 DECL_IGNORED_P (decl) = 1;
6043 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
6044 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
6045 TYPE_ALIGN (type) = 1;
6046 TYPE_MODE (type) = TYPE_MODE (void_type_node);
6049 /* Push overloaded decl, in global scope, with one argument so it
6050 can be used as a callback from define_function. */
6052 static void
6053 push_overloaded_decl_1 (x)
6054 tree x;
6056 push_overloaded_decl (x, PUSH_GLOBAL);
6059 #ifdef __GNUC__
6060 __inline
6061 #endif
6062 tree
6063 auto_function (name, type, code)
6064 tree name, type;
6065 enum built_in_function code;
6067 return define_function
6068 (IDENTIFIER_POINTER (name), type, code, push_overloaded_decl_1,
6069 IDENTIFIER_POINTER (build_decl_overload (name, TYPE_ARG_TYPES (type),
6070 0)));
6073 /* Create the predefined scalar types of C,
6074 and some nodes representing standard constants (0, 1, (void *)0).
6075 Initialize the global binding level.
6076 Make definitions for built-in primitive functions. */
6078 void
6079 init_decl_processing ()
6081 tree fields[20];
6082 int wchar_type_size;
6083 tree array_domain_type;
6085 /* Have to make these distinct before we try using them. */
6086 lang_name_cplusplus = get_identifier ("C++");
6087 lang_name_c = get_identifier ("C");
6088 lang_name_java = get_identifier ("Java");
6090 /* Let the back-end now how to save and restore language-specific
6091 per-function globals. */
6092 save_lang_status = &push_cp_function_context;
6093 restore_lang_status = &pop_cp_function_context;
6094 mark_lang_status = &mark_cp_function_context;
6096 cp_parse_init ();
6097 init_decl2 ();
6098 init_pt ();
6100 /* Create the global variables. */
6101 push_to_top_level ();
6103 /* Enter the global namespace. */
6104 my_friendly_assert (global_namespace == NULL_TREE, 375);
6105 push_namespace (get_identifier ("::"));
6106 global_namespace = current_namespace;
6107 current_lang_name = NULL_TREE;
6109 if (flag_strict_prototype == 2)
6110 flag_strict_prototype = pedantic;
6111 if (! flag_permissive && ! pedantic)
6112 flag_pedantic_errors = 1;
6114 strict_prototypes_lang_c = flag_strict_prototype;
6116 /* Initially, C. */
6117 current_lang_name = lang_name_c;
6119 current_function_decl = NULL_TREE;
6120 named_labels = NULL_TREE;
6121 named_label_uses = NULL;
6122 current_binding_level = NULL_BINDING_LEVEL;
6123 free_binding_level = NULL_BINDING_LEVEL;
6125 /* Because most segmentation signals can be traced back into user
6126 code, catch them and at least give the user a chance of working
6127 around compiler bugs. */
6128 signal (SIGSEGV, signal_catch);
6130 /* We will also catch aborts in the back-end through signal_catch and
6131 give the user a chance to see where the error might be, and to defeat
6132 aborts in the back-end when there have been errors previously in their
6133 code. */
6134 #ifdef SIGIOT
6135 signal (SIGIOT, signal_catch);
6136 #endif
6137 #ifdef SIGILL
6138 signal (SIGILL, signal_catch);
6139 #endif
6140 #ifdef SIGABRT
6141 signal (SIGABRT, signal_catch);
6142 #endif
6143 #ifdef SIGBUS
6144 signal (SIGBUS, signal_catch);
6145 #endif
6147 gcc_obstack_init (&decl_obstack);
6149 /* Must lay these out before anything else gets laid out. */
6150 error_mark_node = make_node (ERROR_MARK);
6151 TREE_PERMANENT (error_mark_node) = 1;
6152 TREE_TYPE (error_mark_node) = error_mark_node;
6153 error_mark_list = build_tree_list (error_mark_node, error_mark_node);
6154 TREE_TYPE (error_mark_list) = error_mark_node;
6156 /* Make the binding_level structure for global names. */
6157 pushlevel (0);
6158 global_binding_level = current_binding_level;
6159 /* The global level is the namespace level of ::. */
6160 NAMESPACE_LEVEL (global_namespace) = global_binding_level;
6161 declare_namespace_level ();
6163 this_identifier = get_identifier (THIS_NAME);
6164 in_charge_identifier = get_identifier (IN_CHARGE_NAME);
6165 ctor_identifier = get_identifier (CTOR_NAME);
6166 dtor_identifier = get_identifier (DTOR_NAME);
6167 pfn_identifier = get_identifier (VTABLE_PFN_NAME);
6168 index_identifier = get_identifier (VTABLE_INDEX_NAME);
6169 delta_identifier = get_identifier (VTABLE_DELTA_NAME);
6170 delta2_identifier = get_identifier (VTABLE_DELTA2_NAME);
6171 pfn_or_delta2_identifier = get_identifier ("__pfn_or_delta2");
6173 /* Define `int' and `char' first so that dbx will output them first. */
6175 integer_type_node = make_signed_type (INT_TYPE_SIZE);
6176 record_builtin_type (RID_INT, NULL_PTR, integer_type_node);
6178 /* Define `char', which is like either `signed char' or `unsigned char'
6179 but not the same as either. */
6181 char_type_node
6182 = (flag_signed_char
6183 ? make_signed_type (CHAR_TYPE_SIZE)
6184 : make_unsigned_type (CHAR_TYPE_SIZE));
6185 record_builtin_type (RID_CHAR, "char", char_type_node);
6187 /* `signed' is the same as `int' */
6188 record_builtin_type (RID_SIGNED, NULL_PTR, integer_type_node);
6190 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
6191 record_builtin_type (RID_LONG, "long int", long_integer_type_node);
6193 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
6194 record_builtin_type (RID_UNSIGNED, "unsigned int", unsigned_type_node);
6196 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
6197 record_builtin_type (RID_MAX, "long unsigned int", long_unsigned_type_node);
6198 record_builtin_type (RID_MAX, "unsigned long", long_unsigned_type_node);
6200 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
6201 record_builtin_type (RID_MAX, "long long int", long_long_integer_type_node);
6203 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
6204 record_builtin_type (RID_MAX, "long long unsigned int",
6205 long_long_unsigned_type_node);
6206 record_builtin_type (RID_MAX, "long long unsigned",
6207 long_long_unsigned_type_node);
6209 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
6210 record_builtin_type (RID_SHORT, "short int", short_integer_type_node);
6211 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
6212 record_builtin_type (RID_MAX, "short unsigned int", short_unsigned_type_node);
6213 record_builtin_type (RID_MAX, "unsigned short", short_unsigned_type_node);
6215 /* `unsigned long' is the standard type for sizeof.
6216 Note that stddef.h uses `unsigned long',
6217 and this must agree, even if long and int are the same size. */
6218 set_sizetype
6219 (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (SIZE_TYPE))));
6221 ptrdiff_type_node
6222 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (PTRDIFF_TYPE)));
6224 /* Define both `signed char' and `unsigned char'. */
6225 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
6226 record_builtin_type (RID_MAX, "signed char", signed_char_type_node);
6227 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
6228 record_builtin_type (RID_MAX, "unsigned char", unsigned_char_type_node);
6230 /* Create the widest literal types. */
6231 widest_integer_literal_type_node = make_signed_type (HOST_BITS_PER_WIDE_INT * 2);
6232 pushdecl (build_decl (TYPE_DECL, NULL_TREE,
6233 widest_integer_literal_type_node));
6235 widest_unsigned_literal_type_node = make_unsigned_type (HOST_BITS_PER_WIDE_INT * 2);
6236 pushdecl (build_decl (TYPE_DECL, NULL_TREE,
6237 widest_unsigned_literal_type_node));
6239 /* These are types that type_for_size and type_for_mode use. */
6240 intQI_type_node = make_signed_type (GET_MODE_BITSIZE (QImode));
6241 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intQI_type_node));
6242 intHI_type_node = make_signed_type (GET_MODE_BITSIZE (HImode));
6243 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intHI_type_node));
6244 intSI_type_node = make_signed_type (GET_MODE_BITSIZE (SImode));
6245 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intSI_type_node));
6246 intDI_type_node = make_signed_type (GET_MODE_BITSIZE (DImode));
6247 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intDI_type_node));
6248 #if HOST_BITS_PER_WIDE_INT >= 64
6249 intTI_type_node = make_signed_type (GET_MODE_BITSIZE (TImode));
6250 pushdecl (build_decl (TYPE_DECL, get_identifier ("__int128_t"), intTI_type_node));
6251 #endif
6252 unsigned_intQI_type_node = make_unsigned_type (GET_MODE_BITSIZE (QImode));
6253 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intQI_type_node));
6254 unsigned_intHI_type_node = make_unsigned_type (GET_MODE_BITSIZE (HImode));
6255 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intHI_type_node));
6256 unsigned_intSI_type_node = make_unsigned_type (GET_MODE_BITSIZE (SImode));
6257 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intSI_type_node));
6258 unsigned_intDI_type_node = make_unsigned_type (GET_MODE_BITSIZE (DImode));
6259 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intDI_type_node));
6260 #if HOST_BITS_PER_WIDE_INT >= 64
6261 unsigned_intTI_type_node = make_unsigned_type (GET_MODE_BITSIZE (TImode));
6262 pushdecl (build_decl (TYPE_DECL, get_identifier ("__uint128_t"), unsigned_intTI_type_node));
6263 #endif
6265 float_type_node = make_node (REAL_TYPE);
6266 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
6267 record_builtin_type (RID_FLOAT, NULL_PTR, float_type_node);
6268 layout_type (float_type_node);
6270 double_type_node = make_node (REAL_TYPE);
6271 if (flag_short_double)
6272 TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
6273 else
6274 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
6275 record_builtin_type (RID_DOUBLE, NULL_PTR, double_type_node);
6276 layout_type (double_type_node);
6278 long_double_type_node = make_node (REAL_TYPE);
6279 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
6280 record_builtin_type (RID_MAX, "long double", long_double_type_node);
6281 layout_type (long_double_type_node);
6283 complex_integer_type_node = make_node (COMPLEX_TYPE);
6284 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex int"),
6285 complex_integer_type_node));
6286 TREE_TYPE (complex_integer_type_node) = integer_type_node;
6287 layout_type (complex_integer_type_node);
6289 complex_float_type_node = make_node (COMPLEX_TYPE);
6290 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex float"),
6291 complex_float_type_node));
6292 TREE_TYPE (complex_float_type_node) = float_type_node;
6293 layout_type (complex_float_type_node);
6295 complex_double_type_node = make_node (COMPLEX_TYPE);
6296 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex double"),
6297 complex_double_type_node));
6298 TREE_TYPE (complex_double_type_node) = double_type_node;
6299 layout_type (complex_double_type_node);
6301 complex_long_double_type_node = make_node (COMPLEX_TYPE);
6302 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex long double"),
6303 complex_long_double_type_node));
6304 TREE_TYPE (complex_long_double_type_node) = long_double_type_node;
6305 layout_type (complex_long_double_type_node);
6307 java_byte_type_node = record_builtin_java_type ("__java_byte", 8);
6308 java_short_type_node = record_builtin_java_type ("__java_short", 16);
6309 java_int_type_node = record_builtin_java_type ("__java_int", 32);
6310 java_long_type_node = record_builtin_java_type ("__java_long", 64);
6311 java_float_type_node = record_builtin_java_type ("__java_float", -32);
6312 java_double_type_node = record_builtin_java_type ("__java_double", -64);
6313 java_char_type_node = record_builtin_java_type ("__java_char", -16);
6314 java_boolean_type_node = record_builtin_java_type ("__java_boolean", -1);
6316 integer_zero_node = build_int_2 (0, 0);
6317 TREE_TYPE (integer_zero_node) = integer_type_node;
6318 integer_one_node = build_int_2 (1, 0);
6319 TREE_TYPE (integer_one_node) = integer_type_node;
6320 integer_two_node = build_int_2 (2, 0);
6321 TREE_TYPE (integer_two_node) = integer_type_node;
6322 integer_three_node = build_int_2 (3, 0);
6323 TREE_TYPE (integer_three_node) = integer_type_node;
6325 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
6326 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
6327 TYPE_MAX_VALUE (boolean_type_node) = build_int_2 (1, 0);
6328 TREE_TYPE (TYPE_MAX_VALUE (boolean_type_node)) = boolean_type_node;
6329 TYPE_PRECISION (boolean_type_node) = 1;
6330 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
6331 boolean_false_node = build_int_2 (0, 0);
6332 TREE_TYPE (boolean_false_node) = boolean_type_node;
6333 boolean_true_node = build_int_2 (1, 0);
6334 TREE_TYPE (boolean_true_node) = boolean_type_node;
6336 /* These are needed by stor-layout.c. */
6337 size_zero_node = size_int (0);
6338 size_one_node = size_int (1);
6340 signed_size_zero_node = build_int_2 (0, 0);
6341 TREE_TYPE (signed_size_zero_node) = make_signed_type (TYPE_PRECISION (sizetype));
6343 void_type_node = make_node (VOID_TYPE);
6344 record_builtin_type (RID_VOID, NULL_PTR, void_type_node);
6345 layout_type (void_type_node); /* Uses integer_zero_node. */
6346 void_list_node = build_tree_list (NULL_TREE, void_type_node);
6347 TREE_PARMLIST (void_list_node) = 1;
6349 null_pointer_node = build_int_2 (0, 0);
6350 TREE_TYPE (null_pointer_node) = build_pointer_type (void_type_node);
6351 layout_type (TREE_TYPE (null_pointer_node));
6353 /* Used for expressions that do nothing, but are not errors. */
6354 void_zero_node = build_int_2 (0, 0);
6355 TREE_TYPE (void_zero_node) = void_type_node;
6357 string_type_node = build_pointer_type (char_type_node);
6358 const_string_type_node
6359 = build_pointer_type (build_qualified_type (char_type_node,
6360 TYPE_QUAL_CONST));
6361 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
6362 #if 0
6363 record_builtin_type (RID_MAX, NULL_PTR, string_type_node);
6364 #endif
6366 /* Make a type to be the domain of a few array types
6367 whose domains don't really matter.
6368 200 is small enough that it always fits in size_t
6369 and large enough that it can hold most function names for the
6370 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
6371 array_domain_type = build_index_type (build_int_2 (200, 0));
6373 /* Make a type for arrays of characters.
6374 With luck nothing will ever really depend on the length of this
6375 array type. */
6376 char_array_type_node
6377 = build_array_type (char_type_node, array_domain_type);
6378 /* Likewise for arrays of ints. */
6379 int_array_type_node
6380 = build_array_type (integer_type_node, array_domain_type);
6382 /* This is just some anonymous class type. Nobody should ever
6383 need to look inside this envelope. */
6384 class_star_type_node = build_pointer_type (make_lang_type (RECORD_TYPE));
6386 if (flag_huge_objects)
6387 delta_type_node = long_integer_type_node;
6388 else
6389 delta_type_node = short_integer_type_node;
6391 default_function_type
6392 = build_function_type (integer_type_node, NULL_TREE);
6394 ptr_type_node = build_pointer_type (void_type_node);
6395 const_ptr_type_node
6396 = build_pointer_type (build_qualified_type (void_type_node,
6397 TYPE_QUAL_CONST));
6398 c_common_nodes_and_builtins (1, flag_no_builtin, flag_no_nonansi_builtin);
6400 void_ftype_ptr
6401 = build_exception_variant (void_ftype_ptr, empty_except_spec);
6403 /* C++ extensions */
6405 unknown_type_node = make_node (UNKNOWN_TYPE);
6406 record_unknown_type (unknown_type_node, "unknown type");
6408 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
6409 TREE_TYPE (unknown_type_node) = unknown_type_node;
6411 TREE_TYPE (null_node) = type_for_size (POINTER_SIZE, 0);
6413 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
6414 result. */
6415 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
6416 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
6418 /* This is special for C++ so functions can be overloaded. */
6419 wchar_type_node
6420 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (WCHAR_TYPE)));
6421 wchar_type_size = TYPE_PRECISION (wchar_type_node);
6422 signed_wchar_type_node = make_signed_type (wchar_type_size);
6423 unsigned_wchar_type_node = make_unsigned_type (wchar_type_size);
6424 wchar_type_node
6425 = TREE_UNSIGNED (wchar_type_node)
6426 ? unsigned_wchar_type_node
6427 : signed_wchar_type_node;
6428 record_builtin_type (RID_WCHAR, "__wchar_t", wchar_type_node);
6430 /* Artificial declaration of wchar_t -- can be bashed */
6431 wchar_decl_node = build_decl (TYPE_DECL, get_identifier ("wchar_t"),
6432 wchar_type_node);
6433 pushdecl (wchar_decl_node);
6435 /* This is for wide string constants. */
6436 wchar_array_type_node
6437 = build_array_type (wchar_type_node, array_domain_type);
6439 if (flag_vtable_thunks)
6441 /* Make sure we get a unique function type, so we can give
6442 its pointer type a name. (This wins for gdb.) */
6443 tree vfunc_type = make_node (FUNCTION_TYPE);
6444 TREE_TYPE (vfunc_type) = integer_type_node;
6445 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
6446 layout_type (vfunc_type);
6448 vtable_entry_type = build_pointer_type (vfunc_type);
6450 else
6452 vtable_entry_type = make_lang_type (RECORD_TYPE);
6453 fields[0] = build_lang_decl (FIELD_DECL, delta_identifier,
6454 delta_type_node);
6455 fields[1] = build_lang_decl (FIELD_DECL, index_identifier,
6456 delta_type_node);
6457 fields[2] = build_lang_decl (FIELD_DECL, pfn_identifier,
6458 ptr_type_node);
6459 finish_builtin_type (vtable_entry_type, VTBL_PTR_TYPE, fields, 2,
6460 double_type_node);
6462 /* Make this part of an invisible union. */
6463 fields[3] = copy_node (fields[2]);
6464 TREE_TYPE (fields[3]) = delta_type_node;
6465 DECL_NAME (fields[3]) = delta2_identifier;
6466 DECL_MODE (fields[3]) = TYPE_MODE (delta_type_node);
6467 DECL_SIZE (fields[3]) = TYPE_SIZE (delta_type_node);
6468 TREE_UNSIGNED (fields[3]) = 0;
6469 TREE_CHAIN (fields[2]) = fields[3];
6470 vtable_entry_type = build_qualified_type (vtable_entry_type,
6471 TYPE_QUAL_CONST);
6473 record_builtin_type (RID_MAX, VTBL_PTR_TYPE, vtable_entry_type);
6475 vtbl_type_node
6476 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
6477 layout_type (vtbl_type_node);
6478 vtbl_type_node = build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
6479 record_builtin_type (RID_MAX, NULL_PTR, vtbl_type_node);
6480 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
6481 layout_type (vtbl_ptr_type_node);
6482 record_builtin_type (RID_MAX, NULL_PTR, vtbl_ptr_type_node);
6484 std_node = build_decl (NAMESPACE_DECL,
6485 get_identifier (flag_honor_std ? "fake std":"std"),
6486 void_type_node);
6487 pushdecl (std_node);
6489 global_type_node = make_node (LANG_TYPE);
6490 record_unknown_type (global_type_node, "global type");
6492 /* Now, C++. */
6493 current_lang_name = lang_name_cplusplus;
6496 tree bad_alloc_type_node, newtype, deltype;
6497 if (flag_honor_std)
6498 push_namespace (get_identifier ("std"));
6499 bad_alloc_type_node = xref_tag
6500 (class_type_node, get_identifier ("bad_alloc"), 1);
6501 if (flag_honor_std)
6502 pop_namespace ();
6503 newtype = build_exception_variant
6504 (ptr_ftype_sizetype, add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1));
6505 deltype = build_exception_variant (void_ftype_ptr, empty_except_spec);
6506 auto_function (ansi_opname[(int) NEW_EXPR], newtype, NOT_BUILT_IN);
6507 auto_function (ansi_opname[(int) VEC_NEW_EXPR], newtype, NOT_BUILT_IN);
6508 global_delete_fndecl
6509 = auto_function (ansi_opname[(int) DELETE_EXPR], deltype, NOT_BUILT_IN);
6510 auto_function (ansi_opname[(int) VEC_DELETE_EXPR], deltype, NOT_BUILT_IN);
6513 abort_fndecl
6514 = define_function ("__pure_virtual", void_ftype,
6515 NOT_BUILT_IN, 0, 0);
6517 /* Perform other language dependent initializations. */
6518 init_class_processing ();
6519 init_init_processing ();
6520 init_search_processing ();
6521 if (flag_rtti)
6522 init_rtti_processing ();
6524 if (flag_exceptions)
6525 init_exception_processing ();
6526 if (flag_no_inline)
6528 flag_inline_functions = 0;
6531 if (! supports_one_only ())
6532 flag_weak = 0;
6534 /* Create the global bindings for __FUNCTION__ and __PRETTY_FUNCTION__. */
6535 declare_function_name ();
6537 /* Prepare to check format strings against argument lists. */
6538 init_function_format_info ();
6540 /* Show we use EH for cleanups. */
6541 using_eh_for_cleanups ();
6543 print_error_function = lang_print_error_function;
6544 lang_get_alias_set = &c_get_alias_set;
6545 valid_lang_attribute = cp_valid_lang_attribute;
6547 /* Maintain consistency. Perhaps we should just complain if they
6548 say -fwritable-strings? */
6549 if (flag_writable_strings)
6550 flag_const_strings = 0;
6552 /* Add GC roots for all of our global variables. */
6553 ggc_add_tree_root (c_global_trees, sizeof c_global_trees / sizeof(tree));
6554 ggc_add_tree_root (cp_global_trees, sizeof cp_global_trees / sizeof(tree));
6555 ggc_add_tree_root (&char_type_node, 1);
6556 ggc_add_tree_root (&error_mark_node, 1);
6557 ggc_add_tree_root (&integer_type_node, 1);
6558 ggc_add_tree_root (&integer_three_node, 1);
6559 ggc_add_tree_root (&integer_two_node, 1);
6560 ggc_add_tree_root (&integer_one_node, 1);
6561 ggc_add_tree_root (&integer_zero_node, 1);
6562 ggc_add_tree_root (&signed_size_zero_node, 1);
6563 ggc_add_tree_root (&size_one_node, 1);
6564 ggc_add_tree_root (&size_zero_node, 1);
6565 ggc_add_tree_root (&unsigned_type_node, 1);
6566 ggc_add_tree_root (&ptr_type_node, 1);
6567 ggc_add_tree_root (&null_pointer_node, 1);
6568 ggc_add_tree_root (&va_list_type_node, 1);
6569 ggc_add_tree_root (&void_type_node, 1);
6570 ggc_add_root (&global_binding_level, 1, sizeof global_binding_level,
6571 mark_binding_level);
6572 ggc_add_root (&scope_chain, 1, sizeof scope_chain, &mark_saved_scope);
6573 ggc_add_tree_root (&static_ctors, 1);
6574 ggc_add_tree_root (&static_dtors, 1);
6575 ggc_add_tree_root (&lastiddecl, 1);
6577 ggc_add_tree_root (&enum_next_value, 1);
6578 ggc_add_tree_root (&last_function_parm_tags, 1);
6579 ggc_add_tree_root (&current_function_return_value, 1);
6580 ggc_add_tree_root (&current_function_parms, 1);
6581 ggc_add_tree_root (&current_function_parm_tags, 1);
6582 ggc_add_tree_root (&last_function_parms, 1);
6583 ggc_add_tree_root (&error_mark_list, 1);
6585 ggc_add_tree_root (&global_namespace, 1);
6586 ggc_add_tree_root (&global_type_node, 1);
6587 ggc_add_tree_root (&anonymous_namespace_name, 1);
6589 ggc_add_tree_root (&got_object, 1);
6590 ggc_add_tree_root (&got_scope, 1);
6592 ggc_add_tree_root (&current_lang_name, 1);
6593 ggc_add_tree_root (&static_aggregates, 1);
6596 /* Function to print any language-specific context for an error message. */
6598 static void
6599 lang_print_error_function (file)
6600 const char *file;
6602 default_print_error_function (file);
6603 maybe_print_template_context ();
6606 /* Make a definition for a builtin function named NAME and whose data type
6607 is TYPE. TYPE should be a function type with argument types.
6608 FUNCTION_CODE tells later passes how to compile calls to this function.
6609 See tree.h for its possible values.
6611 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
6612 the name to be called if we can't opencode the function. */
6614 tree
6615 define_function (name, type, function_code, pfn, library_name)
6616 const char *name;
6617 tree type;
6618 enum built_in_function function_code;
6619 void (*pfn) PROTO((tree));
6620 const char *library_name;
6622 tree decl = build_lang_decl (FUNCTION_DECL, get_identifier (name), type);
6623 DECL_EXTERNAL (decl) = 1;
6624 TREE_PUBLIC (decl) = 1;
6625 DECL_ARTIFICIAL (decl) = 1;
6627 my_friendly_assert (DECL_CONTEXT (decl) == NULL_TREE, 392);
6628 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
6630 /* Since `pushdecl' relies on DECL_ASSEMBLER_NAME instead of DECL_NAME,
6631 we cannot change DECL_ASSEMBLER_NAME until we have installed this
6632 function in the namespace. */
6633 if (pfn) (*pfn) (decl);
6634 if (library_name)
6635 DECL_ASSEMBLER_NAME (decl) = get_identifier (library_name);
6636 make_function_rtl (decl);
6637 if (function_code != NOT_BUILT_IN)
6639 DECL_BUILT_IN (decl) = 1;
6640 DECL_FUNCTION_CODE (decl) = function_code;
6642 return decl;
6645 tree
6646 builtin_function (name, type, code, libname)
6647 const char *name;
6648 tree type;
6649 enum built_in_function code;
6650 const char *libname;
6652 return define_function (name, type, code, (void (*) PROTO((tree)))pushdecl, libname);
6655 /* When we call finish_struct for an anonymous union, we create
6656 default copy constructors and such. But, an anonymous union
6657 shouldn't have such things; this function undoes the damage to the
6658 anonymous union type T.
6660 (The reason that we create the synthesized methods is that we don't
6661 distinguish `union { int i; }' from `typedef union { int i; } U'.
6662 The first is an anonymous union; the second is just an ordinary
6663 union type.) */
6665 void
6666 fixup_anonymous_aggr (t)
6667 tree t;
6669 tree *q;
6671 /* Wipe out memory of synthesized methods */
6672 TYPE_HAS_CONSTRUCTOR (t) = 0;
6673 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
6674 TYPE_HAS_INIT_REF (t) = 0;
6675 TYPE_HAS_CONST_INIT_REF (t) = 0;
6676 TYPE_HAS_ASSIGN_REF (t) = 0;
6677 TYPE_HAS_CONST_ASSIGN_REF (t) = 0;
6679 /* Splice the implicitly generated functions out of the TYPE_METHODS
6680 list. */
6681 q = &TYPE_METHODS (t);
6682 while (*q)
6684 if (DECL_ARTIFICIAL (*q))
6685 *q = TREE_CHAIN (*q);
6686 else
6687 q = &TREE_CHAIN (*q);
6690 /* ANSI C++ June 5 1992 WP 9.5.3. Anonymous unions may not have
6691 function members. */
6692 if (TYPE_METHODS (t))
6693 error ("an anonymous union cannot have function members");
6696 /* Make sure that a declaration with no declarator is well-formed, i.e.
6697 just defines a tagged type or anonymous union.
6699 Returns the type defined, if any. */
6701 tree
6702 check_tag_decl (declspecs)
6703 tree declspecs;
6705 int found_type = 0;
6706 tree ob_modifier = NULL_TREE;
6707 register tree link;
6708 register tree t = NULL_TREE;
6710 for (link = declspecs; link; link = TREE_CHAIN (link))
6712 register tree value = TREE_VALUE (link);
6714 if (TYPE_P (value))
6716 ++found_type;
6718 if (IS_AGGR_TYPE (value) || TREE_CODE (value) == ENUMERAL_TYPE)
6720 my_friendly_assert (TYPE_MAIN_DECL (value) != NULL_TREE, 261);
6721 t = value;
6724 else if (value == ridpointers[(int) RID_FRIEND])
6726 if (current_class_type == NULL_TREE
6727 || current_scope () != current_class_type)
6728 ob_modifier = value;
6730 else if (value == ridpointers[(int) RID_STATIC]
6731 || value == ridpointers[(int) RID_EXTERN]
6732 || value == ridpointers[(int) RID_AUTO]
6733 || value == ridpointers[(int) RID_REGISTER]
6734 || value == ridpointers[(int) RID_INLINE]
6735 || value == ridpointers[(int) RID_VIRTUAL]
6736 || value == ridpointers[(int) RID_CONST]
6737 || value == ridpointers[(int) RID_VOLATILE]
6738 || value == ridpointers[(int) RID_EXPLICIT])
6739 ob_modifier = value;
6742 if (found_type > 1)
6743 error ("multiple types in one declaration");
6745 /* Inside a class, we might be in a friend or access declaration.
6746 Until we have a good way of detecting the latter, don't warn. */
6747 if (t == NULL_TREE && ! current_class_type)
6748 pedwarn ("declaration does not declare anything");
6750 /* Check for an anonymous union. We're careful
6751 accessing TYPE_IDENTIFIER because some built-in types, like
6752 pointer-to-member types, do not have TYPE_NAME. */
6753 else if (t && IS_AGGR_TYPE_CODE (TREE_CODE (t))
6754 && TYPE_NAME (t)
6755 && ANON_AGGRNAME_P (TYPE_IDENTIFIER (t)))
6757 /* Anonymous unions are objects, so they can have specifiers. */;
6758 SET_ANON_AGGR_TYPE_P (t);
6760 if (TREE_CODE (t) != UNION_TYPE && pedantic && ! in_system_header)
6761 pedwarn ("ISO C++ prohibits anonymous structs");
6764 else if (ob_modifier)
6766 if (ob_modifier == ridpointers[(int) RID_INLINE]
6767 || ob_modifier == ridpointers[(int) RID_VIRTUAL])
6768 cp_error ("`%D' can only be specified for functions", ob_modifier);
6769 else if (ob_modifier == ridpointers[(int) RID_FRIEND])
6770 cp_error ("`%D' can only be specified inside a class", ob_modifier);
6771 else if (ob_modifier == ridpointers[(int) RID_EXPLICIT])
6772 cp_error ("`%D' can only be specified for constructors",
6773 ob_modifier);
6774 else
6775 cp_error ("`%D' can only be specified for objects and functions",
6776 ob_modifier);
6779 return t;
6782 /* Called when a declaration is seen that contains no names to declare.
6783 If its type is a reference to a structure, union or enum inherited
6784 from a containing scope, shadow that tag name for the current scope
6785 with a forward reference.
6786 If its type defines a new named structure or union
6787 or defines an enum, it is valid but we need not do anything here.
6788 Otherwise, it is an error.
6790 C++: may have to grok the declspecs to learn about static,
6791 complain for anonymous unions. */
6793 void
6794 shadow_tag (declspecs)
6795 tree declspecs;
6797 tree t = check_tag_decl (declspecs);
6799 if (t)
6800 maybe_process_partial_specialization (t);
6802 /* This is where the variables in an anonymous union are
6803 declared. An anonymous union declaration looks like:
6804 union { ... } ;
6805 because there is no declarator after the union, the parser
6806 sends that declaration here. */
6807 if (t && ANON_AGGR_TYPE_P (t))
6809 fixup_anonymous_aggr (t);
6811 if (TYPE_FIELDS (t))
6813 tree decl = grokdeclarator (NULL_TREE, declspecs, NORMAL, 0,
6814 NULL_TREE);
6815 finish_anon_union (decl);
6820 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
6822 tree
6823 groktypename (typename)
6824 tree typename;
6826 if (TREE_CODE (typename) != TREE_LIST)
6827 return typename;
6828 return grokdeclarator (TREE_VALUE (typename),
6829 TREE_PURPOSE (typename),
6830 TYPENAME, 0, NULL_TREE);
6833 /* Decode a declarator in an ordinary declaration or data definition.
6834 This is called as soon as the type information and variable name
6835 have been parsed, before parsing the initializer if any.
6836 Here we create the ..._DECL node, fill in its type,
6837 and put it on the list of decls for the current context.
6838 The ..._DECL node is returned as the value.
6840 Exception: for arrays where the length is not specified,
6841 the type is left null, to be filled in by `cp_finish_decl'.
6843 Function definitions do not come here; they go to start_function
6844 instead. However, external and forward declarations of functions
6845 do go through here. Structure field declarations are done by
6846 grokfield and not through here. */
6848 /* Set this to zero to debug not using the temporary obstack
6849 to parse initializers. */
6850 int debug_temp_inits = 1;
6852 tree
6853 start_decl (declarator, declspecs, initialized, attributes, prefix_attributes)
6854 tree declarator, declspecs;
6855 int initialized;
6856 tree attributes, prefix_attributes;
6858 register tree decl;
6859 register tree type, tem;
6860 tree context;
6861 extern int have_extern_spec;
6862 extern int used_extern_spec;
6863 tree attrlist;
6865 #if 0
6866 /* See code below that used this. */
6867 int init_written = initialized;
6868 #endif
6870 /* This should only be done once on the top most decl. */
6871 if (have_extern_spec && !used_extern_spec)
6873 declspecs = decl_tree_cons (NULL_TREE, get_identifier ("extern"),
6874 declspecs);
6875 used_extern_spec = 1;
6878 if (attributes || prefix_attributes)
6879 attrlist = build_scratch_list (attributes, prefix_attributes);
6880 else
6881 attrlist = NULL_TREE;
6883 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
6884 attrlist);
6886 if (decl == NULL_TREE || TREE_CODE (decl) == VOID_TYPE)
6887 return NULL_TREE;
6889 type = TREE_TYPE (decl);
6891 if (type == error_mark_node)
6892 return NULL_TREE;
6894 /* Don't lose if destructors must be executed at file-level. */
6895 if (! processing_template_decl && TREE_STATIC (decl)
6896 && TYPE_NEEDS_DESTRUCTOR (complete_type (type))
6897 && !TREE_PERMANENT (decl))
6899 push_obstacks (&permanent_obstack, &permanent_obstack);
6900 decl = copy_node (decl);
6901 if (TREE_CODE (type) == ARRAY_TYPE)
6903 tree itype = TYPE_DOMAIN (type);
6904 if (itype && ! TREE_PERMANENT (itype))
6906 itype = build_index_type (TYPE_MAX_VALUE (itype));
6907 type = build_cplus_array_type (TREE_TYPE (type), itype);
6908 TREE_TYPE (decl) = type;
6911 pop_obstacks ();
6914 context
6915 = (TREE_CODE (decl) == FUNCTION_DECL && DECL_VIRTUAL_P (decl))
6916 ? DECL_CLASS_CONTEXT (decl)
6917 : DECL_CONTEXT (decl);
6919 if (initialized && context && TREE_CODE (context) == NAMESPACE_DECL
6920 && context != current_namespace && TREE_CODE (decl) == VAR_DECL)
6922 /* When parsing the initializer, lookup should use the object's
6923 namespace. */
6924 push_decl_namespace (context);
6927 /* We are only interested in class contexts, later. */
6928 if (context && TREE_CODE (context) == NAMESPACE_DECL)
6929 context = NULL_TREE;
6931 if (initialized)
6932 /* Is it valid for this decl to have an initializer at all?
6933 If not, set INITIALIZED to zero, which will indirectly
6934 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
6935 switch (TREE_CODE (decl))
6937 case TYPE_DECL:
6938 /* typedef foo = bar means give foo the same type as bar.
6939 We haven't parsed bar yet, so `cp_finish_decl' will fix that up.
6940 Any other case of an initialization in a TYPE_DECL is an error. */
6941 if (pedantic || list_length (declspecs) > 1)
6943 cp_error ("typedef `%D' is initialized", decl);
6944 initialized = 0;
6946 break;
6948 case FUNCTION_DECL:
6949 cp_error ("function `%#D' is initialized like a variable", decl);
6950 initialized = 0;
6951 break;
6953 default:
6954 break;
6957 if (initialized)
6959 if (! toplevel_bindings_p ()
6960 && DECL_EXTERNAL (decl))
6961 cp_warning ("declaration of `%#D' has `extern' and is initialized",
6962 decl);
6963 DECL_EXTERNAL (decl) = 0;
6964 if (toplevel_bindings_p ())
6965 TREE_STATIC (decl) = 1;
6967 /* Tell `pushdecl' this is an initialized decl
6968 even though we don't yet have the initializer expression.
6969 Also tell `cp_finish_decl' it may store the real initializer. */
6970 DECL_INITIAL (decl) = error_mark_node;
6973 #ifdef SET_DEFAULT_DECL_ATTRIBUTES
6974 SET_DEFAULT_DECL_ATTRIBUTES (decl, attributes);
6975 #endif
6977 /* Set attributes here so if duplicate decl, will have proper attributes. */
6978 cplus_decl_attributes (decl, attributes, prefix_attributes);
6980 if (context && TYPE_SIZE (complete_type (context)) != NULL_TREE)
6982 push_nested_class (context, 2);
6984 if (TREE_CODE (decl) == VAR_DECL)
6986 tree field = lookup_field (context, DECL_NAME (decl), 0, 0);
6987 if (field == NULL_TREE || TREE_CODE (field) != VAR_DECL)
6988 cp_error ("`%#D' is not a static member of `%#T'", decl, context);
6989 else
6991 if (DECL_CONTEXT (field) != context)
6993 cp_pedwarn ("ANSI C++ does not permit `%T::%D' to be defined as `%T::%D'",
6994 DECL_CONTEXT (field), DECL_NAME (decl),
6995 context, DECL_NAME (decl));
6996 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
6998 /* Static data member are tricky; an in-class initialization
6999 still doesn't provide a definition, so the in-class
7000 declaration will have DECL_EXTERNAL set, but will have an
7001 initialization. Thus, duplicate_decls won't warn
7002 about this situation, and so we check here. */
7003 if (DECL_INITIAL (decl) && DECL_INITIAL (field))
7004 cp_error ("duplicate initialization of %D", decl);
7005 if (duplicate_decls (decl, field))
7006 decl = field;
7009 else
7011 tree field = check_classfn (context, decl);
7012 if (field && duplicate_decls (decl, field))
7013 decl = field;
7016 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
7017 DECL_IN_AGGR_P (decl) = 0;
7018 if ((DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
7019 || CLASSTYPE_USE_TEMPLATE (context))
7021 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
7022 /* [temp.expl.spec] An explicit specialization of a static data
7023 member of a template is a definition if the declaration
7024 includes an initializer; otherwise, it is a declaration.
7026 We check for processing_specialization so this only applies
7027 to the new specialization syntax. */
7028 if (DECL_INITIAL (decl) == NULL_TREE && processing_specialization)
7029 DECL_EXTERNAL (decl) = 1;
7032 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl))
7033 cp_pedwarn ("declaration of `%#D' outside of class is not definition",
7034 decl);
7037 /* Enter this declaration into the symbol table. */
7038 tem = maybe_push_decl (decl);
7040 if (processing_template_decl)
7042 if (at_function_scope_p ())
7043 push_permanent_obstack ();
7045 tem = push_template_decl (tem);
7046 /* In a a local scope, add a representation of this declaration
7047 to the statement tree. */
7048 if (at_function_scope_p ())
7050 add_decl_stmt (decl);
7051 pop_obstacks ();
7056 #if ! defined (ASM_OUTPUT_BSS) && ! defined (ASM_OUTPUT_ALIGNED_BSS)
7057 /* Tell the back-end to use or not use .common as appropriate. If we say
7058 -fconserve-space, we want this to save .data space, at the expense of
7059 wrong semantics. If we say -fno-conserve-space, we want this to
7060 produce errors about redefs; to do this we force variables into the
7061 data segment. */
7062 DECL_COMMON (tem) = flag_conserve_space || ! TREE_PUBLIC (tem);
7063 #endif
7065 if (! processing_template_decl)
7066 start_decl_1 (tem);
7068 /* Corresponding pop_obstacks is done in `cp_finish_decl'. */
7069 push_obstacks_nochange ();
7071 return tem;
7074 void
7075 start_decl_1 (decl)
7076 tree decl;
7078 tree type = TREE_TYPE (decl);
7079 int initialized = (DECL_INITIAL (decl) != NULL_TREE);
7081 if (type == error_mark_node)
7082 return;
7084 /* If this type of object needs a cleanup, and control may
7085 jump past it, make a new binding level so that it is cleaned
7086 up only when it is initialized first. */
7087 if (TYPE_NEEDS_DESTRUCTOR (type)
7088 && current_binding_level->more_cleanups_ok == 0)
7089 pushlevel_temporary (1);
7091 if (initialized)
7092 /* Is it valid for this decl to have an initializer at all?
7093 If not, set INITIALIZED to zero, which will indirectly
7094 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
7096 /* Don't allow initializations for incomplete types except for
7097 arrays which might be completed by the initialization. */
7098 if (TYPE_SIZE (complete_type (type)) != NULL_TREE)
7099 ; /* A complete type is ok. */
7100 else if (TREE_CODE (type) != ARRAY_TYPE)
7102 cp_error ("variable `%#D' has initializer but incomplete type",
7103 decl);
7104 initialized = 0;
7105 type = TREE_TYPE (decl) = error_mark_node;
7107 else if (TYPE_SIZE (complete_type (TREE_TYPE (type))) == NULL_TREE)
7109 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
7110 cp_error ("elements of array `%#D' have incomplete type", decl);
7111 /* else we already gave an error in start_decl. */
7112 initialized = 0;
7116 if (!initialized
7117 && TREE_CODE (decl) != TYPE_DECL
7118 && TREE_CODE (decl) != TEMPLATE_DECL
7119 && IS_AGGR_TYPE (type) && ! DECL_EXTERNAL (decl))
7121 if ((! processing_template_decl || ! uses_template_parms (type))
7122 && TYPE_SIZE (complete_type (type)) == NULL_TREE)
7124 cp_error ("aggregate `%#D' has incomplete type and cannot be initialized",
7125 decl);
7126 /* Change the type so that assemble_variable will give
7127 DECL an rtl we can live with: (mem (const_int 0)). */
7128 type = TREE_TYPE (decl) = error_mark_node;
7130 else
7132 /* If any base type in the hierarchy of TYPE needs a constructor,
7133 then we set initialized to 1. This way any nodes which are
7134 created for the purposes of initializing this aggregate
7135 will live as long as it does. This is necessary for global
7136 aggregates which do not have their initializers processed until
7137 the end of the file. */
7138 initialized = TYPE_NEEDS_CONSTRUCTING (type);
7142 if (! initialized)
7143 DECL_INITIAL (decl) = NULL_TREE;
7146 /* Handle initialization of references.
7147 These three arguments are from `cp_finish_decl', and have the
7148 same meaning here that they do there.
7150 Quotes on semantics can be found in ARM 8.4.3. */
7152 static void
7153 grok_reference_init (decl, type, init)
7154 tree decl, type, init;
7156 tree tmp;
7158 if (init == NULL_TREE)
7160 if ((DECL_LANG_SPECIFIC (decl) == 0
7161 || DECL_IN_AGGR_P (decl) == 0)
7162 && ! DECL_THIS_EXTERN (decl))
7164 cp_error ("`%D' declared as reference but not initialized", decl);
7165 if (TREE_CODE (decl) == VAR_DECL)
7166 SET_DECL_REFERENCE_SLOT (decl, error_mark_node);
7168 return;
7171 if (init == error_mark_node)
7172 return;
7174 if (TREE_CODE (type) == REFERENCE_TYPE
7175 && TREE_CODE (init) == CONSTRUCTOR)
7177 cp_error ("ANSI C++ forbids use of initializer list to initialize reference `%D'", decl);
7178 return;
7181 if (TREE_CODE (init) == TREE_LIST)
7182 init = build_compound_expr (init);
7184 if (TREE_CODE (TREE_TYPE (init)) == REFERENCE_TYPE)
7185 init = convert_from_reference (init);
7187 if (TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE
7188 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
7190 /* Note: default conversion is only called in very special cases. */
7191 init = default_conversion (init);
7194 tmp = convert_to_reference
7195 (type, init, CONV_IMPLICIT,
7196 LOOKUP_SPECULATIVELY|LOOKUP_NORMAL|DIRECT_BIND, decl);
7198 if (tmp == error_mark_node)
7199 goto fail;
7200 else if (tmp != NULL_TREE)
7202 init = tmp;
7203 DECL_INITIAL (decl) = save_expr (init);
7205 else
7207 cp_error ("cannot initialize `%T' from `%T'", type, TREE_TYPE (init));
7208 goto fail;
7211 /* ?? Can this be optimized in some cases to
7212 hand back the DECL_INITIAL slot?? */
7213 if (TYPE_SIZE (TREE_TYPE (type)))
7215 init = convert_from_reference (decl);
7216 SET_DECL_REFERENCE_SLOT (decl, init);
7219 if (TREE_STATIC (decl) && ! TREE_CONSTANT (DECL_INITIAL (decl)))
7221 expand_static_init (decl, DECL_INITIAL (decl));
7222 DECL_INITIAL (decl) = NULL_TREE;
7224 return;
7226 fail:
7227 if (TREE_CODE (decl) == VAR_DECL)
7228 SET_DECL_REFERENCE_SLOT (decl, error_mark_node);
7229 return;
7232 /* Fill in DECL_INITIAL with some magical value to prevent expand_decl from
7233 mucking with forces it does not comprehend (i.e. initialization with a
7234 constructor). If we are at global scope and won't go into COMMON, fill
7235 it in with a dummy CONSTRUCTOR to force the variable into .data;
7236 otherwise we can use error_mark_node. */
7238 static tree
7239 obscure_complex_init (decl, init)
7240 tree decl, init;
7242 if (! flag_no_inline && TREE_STATIC (decl))
7244 if (extract_init (decl, init))
7245 return NULL_TREE;
7248 #if ! defined (ASM_OUTPUT_BSS) && ! defined (ASM_OUTPUT_ALIGNED_BSS)
7249 if (toplevel_bindings_p () && ! DECL_COMMON (decl))
7250 DECL_INITIAL (decl) = build (CONSTRUCTOR, TREE_TYPE (decl), NULL_TREE,
7251 NULL_TREE);
7252 else
7253 #endif
7254 DECL_INITIAL (decl) = error_mark_node;
7256 return init;
7259 /* When parsing `int a[] = {1, 2};' we don't know the size of the
7260 array until we finish parsing the initializer. If that's the
7261 situation we're in, update DECL accordingly. */
7263 static void
7264 maybe_deduce_size_from_array_init (decl, init)
7265 tree decl;
7266 tree init;
7268 tree type = TREE_TYPE (decl);
7270 if (TREE_CODE (type) == ARRAY_TYPE
7271 && TYPE_DOMAIN (type) == NULL_TREE
7272 && TREE_CODE (decl) != TYPE_DECL)
7274 int do_default
7275 = (TREE_STATIC (decl)
7276 /* Even if pedantic, an external linkage array
7277 may have incomplete type at first. */
7278 ? pedantic && ! DECL_EXTERNAL (decl)
7279 : !DECL_EXTERNAL (decl));
7280 tree initializer = init ? init : DECL_INITIAL (decl);
7281 int failure = complete_array_type (type, initializer, do_default);
7283 if (failure == 1)
7284 cp_error ("initializer fails to determine size of `%D'", decl);
7286 if (failure == 2)
7288 if (do_default)
7289 cp_error ("array size missing in `%D'", decl);
7290 /* If a `static' var's size isn't known, make it extern as
7291 well as static, so it does not get allocated. If it's not
7292 `static', then don't mark it extern; finish_incomplete_decl
7293 will give it a default size and it will get allocated. */
7294 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
7295 DECL_EXTERNAL (decl) = 1;
7298 if (pedantic && TYPE_DOMAIN (type) != NULL_TREE
7299 && tree_int_cst_lt (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
7300 integer_zero_node))
7301 cp_error ("zero-size array `%D'", decl);
7303 layout_decl (decl, 0);
7307 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
7308 any appropriate error messages regarding the layout. INIT is a
7309 the initializer for DECL; returns a modified version. */
7311 static tree
7312 layout_var_decl (decl, init)
7313 tree decl;
7314 tree init;
7316 tree ttype = target_type (TREE_TYPE (decl));
7318 /* If we haven't already layed out this declaration, and we know its
7319 type, do so now. Note that we must not call complete type for an
7320 external object because it's type might involve templates that we
7321 are not supposed to isntantiate yet. */
7322 if (!DECL_EXTERNAL (decl)
7323 && DECL_SIZE (decl) == NULL_TREE
7324 && TYPE_SIZE (complete_type (TREE_TYPE (decl))) != NULL_TREE)
7325 layout_decl (decl, 0);
7327 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
7329 /* An automatic variable with an incomplete type: that is an error.
7330 Don't talk about array types here, since we took care of that
7331 message in grokdeclarator. */
7332 cp_error ("storage size of `%D' isn't known", decl);
7333 TREE_TYPE (decl) = error_mark_node;
7335 else if (!DECL_EXTERNAL (decl) && IS_AGGR_TYPE (ttype))
7336 /* Let debugger know it should output info for this type. */
7337 note_debug_info_needed (ttype);
7339 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
7340 note_debug_info_needed (DECL_CONTEXT (decl));
7342 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
7343 && DECL_SIZE (decl) != NULL_TREE
7344 && ! TREE_CONSTANT (DECL_SIZE (decl)))
7346 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
7347 constant_expression_warning (DECL_SIZE (decl));
7348 else
7349 cp_error ("storage size of `%D' isn't constant", decl);
7352 return init;
7355 /* Return a cleanup for DECL, created on whatever obstack is
7356 appropriate. */
7358 static tree
7359 build_cleanup_on_safe_obstack (decl)
7360 tree decl;
7362 tree cleanup;
7363 tree type;
7364 int need_pop;
7366 type = TREE_TYPE (decl);
7368 /* Only variables get cleaned up. */
7369 if (TREE_CODE (decl) != VAR_DECL)
7370 return NULL_TREE;
7372 /* And only things with destructors need cleaning up. */
7373 if (!TYPE_NEEDS_DESTRUCTOR (type))
7374 return NULL_TREE;
7376 if (TREE_CODE (decl) == VAR_DECL &&
7377 (DECL_EXTERNAL (decl) || TREE_STATIC (decl)))
7378 /* We don't clean up things that aren't defined in this
7379 translation unit, or that need a static cleanup. The latter
7380 are handled by finish_file. */
7381 return NULL_TREE;
7383 /* Switch to an obstack that will live until the point where the
7384 cleanup code is actually expanded. */
7385 need_pop = suspend_momentary ();
7387 /* Compute the cleanup. */
7388 cleanup = maybe_build_cleanup (decl);
7390 /* Pop back to the obstack we were on before. */
7391 resume_momentary (need_pop);
7393 return cleanup;
7396 /* If a local static variable is declared in an inline function, or if
7397 we have a weak definition, we must endeavor to create only one
7398 instance of the variable at link-time. */
7400 static void
7401 maybe_commonize_var (decl)
7402 tree decl;
7404 /* Static data in a function with comdat linkage also has comdat
7405 linkage. */
7406 if (TREE_STATIC (decl)
7407 /* Don't mess with __FUNCTION__. */
7408 && ! TREE_ASM_WRITTEN (decl)
7409 && current_function_decl
7410 && DECL_CONTEXT (decl) == current_function_decl
7411 && (DECL_THIS_INLINE (current_function_decl)
7412 || DECL_TEMPLATE_INSTANTIATION (current_function_decl))
7413 && TREE_PUBLIC (current_function_decl))
7415 /* Rather than try to get this right with inlining, we suppress
7416 inlining of such functions. */
7417 current_function_cannot_inline
7418 = "function with static variable cannot be inline";
7420 /* If flag_weak, we don't need to mess with this, as we can just
7421 make the function weak, and let it refer to its unique local
7422 copy. This works because we don't allow the function to be
7423 inlined. */
7424 if (! flag_weak)
7426 if (DECL_INTERFACE_KNOWN (current_function_decl))
7428 TREE_PUBLIC (decl) = 1;
7429 DECL_EXTERNAL (decl) = DECL_EXTERNAL (current_function_decl);
7431 else if (DECL_INITIAL (decl) == NULL_TREE
7432 || DECL_INITIAL (decl) == error_mark_node)
7434 TREE_PUBLIC (decl) = 1;
7435 DECL_COMMON (decl) = 1;
7437 /* else we lose. We can only do this if we can use common,
7438 which we can't if it has been initialized. */
7440 if (TREE_PUBLIC (decl))
7441 DECL_ASSEMBLER_NAME (decl)
7442 = build_static_name (current_function_decl, DECL_NAME (decl));
7443 else if (! DECL_ARTIFICIAL (decl))
7445 cp_warning_at ("sorry: semantics of inline function static data `%#D' are wrong (you'll wind up with multiple copies)", decl);
7446 cp_warning_at (" you can work around this by removing the initializer", decl);
7450 else if (DECL_LANG_SPECIFIC (decl) && DECL_COMDAT (decl))
7451 /* Set it up again; we might have set DECL_INITIAL since the last
7452 time. */
7453 comdat_linkage (decl);
7456 /* Issue an error message if DECL is an uninitialized const variable. */
7458 static void
7459 check_for_uninitialized_const_var (decl)
7460 tree decl;
7462 tree type = TREE_TYPE (decl);
7464 /* ``Unless explicitly declared extern, a const object does not have
7465 external linkage and must be initialized. ($8.4; $12.1)'' ARM
7466 7.1.6 */
7467 if (TREE_CODE (decl) == VAR_DECL
7468 && TREE_CODE (type) != REFERENCE_TYPE
7469 && CP_TYPE_CONST_P (type)
7470 && !TYPE_NEEDS_CONSTRUCTING (type)
7471 && !DECL_INITIAL (decl))
7472 cp_error ("uninitialized const `%D'", decl);
7475 /* Verify INIT (the initializer for DECL), and record the
7476 initialization in DECL_INITIAL, if appropriate. Returns a new
7477 value for INIT. */
7479 static tree
7480 check_initializer (decl, init)
7481 tree decl;
7482 tree init;
7484 tree type;
7486 if (TREE_CODE (decl) == FIELD_DECL)
7487 return init;
7489 /* If `start_decl' didn't like having an initialization, ignore it now. */
7490 if (init != NULL_TREE && DECL_INITIAL (decl) == NULL_TREE)
7491 init = NULL_TREE;
7493 /* Check the initializer. */
7494 if (init)
7496 /* Things that are going to be initialized need to have complete
7497 type. */
7498 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
7500 if (type == error_mark_node)
7501 /* We will have already complained. */
7502 init = NULL_TREE;
7503 else if (TYPE_SIZE (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
7505 cp_error ("variable-sized object `%D' may not be initialized", decl);
7506 init = NULL_TREE;
7508 else if (TREE_CODE (type) == ARRAY_TYPE
7509 && !TYPE_SIZE (TREE_TYPE (type)))
7511 cp_error ("elements of array `%#D' have incomplete type", decl);
7512 init = NULL_TREE;
7514 else if (!TYPE_SIZE (type))
7516 cp_error ("`%D' has incomplete type", decl);
7517 TREE_TYPE (decl) = error_mark_node;
7518 init = NULL_TREE;
7522 if (TREE_CODE (decl) == CONST_DECL)
7524 my_friendly_assert (TREE_CODE (decl) != REFERENCE_TYPE, 148);
7526 DECL_INITIAL (decl) = init;
7528 /* This will keep us from needing to worry about our obstacks. */
7529 my_friendly_assert (init != NULL_TREE, 149);
7530 init = NULL_TREE;
7532 else if (!DECL_EXTERNAL (decl) && TREE_CODE (type) == REFERENCE_TYPE)
7534 if (TREE_STATIC (decl))
7535 make_decl_rtl (decl, NULL_PTR, toplevel_bindings_p ());
7536 grok_reference_init (decl, type, init);
7537 init = NULL_TREE;
7539 else if (init)
7541 if (TYPE_HAS_CONSTRUCTOR (type) || TYPE_NEEDS_CONSTRUCTING (type))
7543 if (TREE_CODE (type) == ARRAY_TYPE)
7544 init = digest_init (type, init, (tree *) 0);
7545 else if (TREE_CODE (init) == CONSTRUCTOR
7546 && TREE_HAS_CONSTRUCTOR (init))
7548 if (TYPE_NON_AGGREGATE_CLASS (type))
7550 cp_error ("`%D' must be initialized by constructor, not by `{...}'",
7551 decl);
7552 init = error_mark_node;
7554 else
7555 goto dont_use_constructor;
7558 else
7560 dont_use_constructor:
7561 if (TREE_CODE (init) != TREE_VEC)
7562 init = store_init_value (decl, init);
7565 if (init)
7566 /* We must hide the initializer so that expand_decl
7567 won't try to do something it does not understand. */
7568 init = obscure_complex_init (decl, init);
7570 else if (DECL_EXTERNAL (decl))
7572 else if (TREE_CODE_CLASS (TREE_CODE (type)) == 't'
7573 && (IS_AGGR_TYPE (type) || TYPE_NEEDS_CONSTRUCTING (type)))
7575 tree core_type = strip_array_types (type);
7577 if (! TYPE_NEEDS_CONSTRUCTING (core_type))
7579 if (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type))
7580 cp_error ("structure `%D' with uninitialized const members", decl);
7581 if (CLASSTYPE_REF_FIELDS_NEED_INIT (core_type))
7582 cp_error ("structure `%D' with uninitialized reference members",
7583 decl);
7586 check_for_uninitialized_const_var (decl);
7588 if (TYPE_SIZE (type) != NULL_TREE
7589 && TYPE_NEEDS_CONSTRUCTING (type))
7590 init = obscure_complex_init (decl, NULL_TREE);
7593 else
7594 check_for_uninitialized_const_var (decl);
7596 return init;
7599 /* If DECL is not a local variable, give it RTL. */
7601 static void
7602 make_rtl_for_nonlocal_decl (decl, init, asmspec)
7603 tree decl;
7604 tree init;
7605 const char *asmspec;
7607 int toplev;
7608 tree type;
7610 type = TREE_TYPE (decl);
7611 toplev = toplevel_bindings_p ();
7612 push_obstacks_nochange ();
7613 if (TREE_STATIC (decl)
7614 && TYPE_NEEDS_DESTRUCTOR (type)
7615 && allocation_temporary_p ())
7616 end_temporary_allocation ();
7618 if (TREE_CODE (decl) == VAR_DECL && DECL_VIRTUAL_P (decl))
7619 make_decl_rtl (decl, NULL_PTR, toplev);
7620 else if (TREE_CODE (decl) == VAR_DECL
7621 && TREE_READONLY (decl)
7622 && DECL_INITIAL (decl) != NULL_TREE
7623 && DECL_INITIAL (decl) != error_mark_node
7624 && ! EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl)))
7626 DECL_INITIAL (decl) = save_expr (DECL_INITIAL (decl));
7628 if (asmspec)
7629 DECL_ASSEMBLER_NAME (decl) = get_identifier (asmspec);
7631 if (! toplev
7632 && TREE_STATIC (decl)
7633 && ! TREE_SIDE_EFFECTS (decl)
7634 && ! TREE_PUBLIC (decl)
7635 && ! DECL_EXTERNAL (decl)
7636 && ! TYPE_NEEDS_DESTRUCTOR (type)
7637 && DECL_MODE (decl) != BLKmode)
7639 /* If this variable is really a constant, then fill its DECL_RTL
7640 slot with something which won't take up storage.
7641 If something later should take its address, we can always give
7642 it legitimate RTL at that time. */
7643 DECL_RTL (decl) = gen_reg_rtx (DECL_MODE (decl));
7644 store_expr (DECL_INITIAL (decl), DECL_RTL (decl), 0);
7645 TREE_ASM_WRITTEN (decl) = 1;
7647 else if (toplev && ! TREE_PUBLIC (decl))
7649 /* If this is a static const, change its apparent linkage
7650 if it belongs to a #pragma interface. */
7651 if (!interface_unknown)
7653 TREE_PUBLIC (decl) = 1;
7654 DECL_EXTERNAL (decl) = interface_only;
7656 make_decl_rtl (decl, asmspec, toplev);
7658 else
7659 rest_of_decl_compilation (decl, asmspec, toplev, at_eof);
7661 else if (TREE_CODE (decl) == VAR_DECL
7662 && DECL_LANG_SPECIFIC (decl)
7663 && DECL_IN_AGGR_P (decl))
7665 my_friendly_assert (TREE_STATIC (decl), 19990828);
7667 if (init == NULL_TREE
7668 #ifdef DEFAULT_STATIC_DEFS
7669 /* If this code is dead, then users must
7670 explicitly declare static member variables
7671 outside the class def'n as well. */
7672 && TYPE_NEEDS_CONSTRUCTING (type)
7673 #endif
7676 DECL_EXTERNAL (decl) = 1;
7677 make_decl_rtl (decl, asmspec, 1);
7679 else
7680 rest_of_decl_compilation (decl, asmspec, toplev, at_eof);
7682 else
7683 rest_of_decl_compilation (decl, asmspec, toplev, at_eof);
7685 pop_obstacks ();
7688 /* The old ARM scoping rules injected variables declared in the
7689 initialization statement of a for-statement into the surrounding
7690 scope. We support this usage, in order to be backward-compatible.
7691 DECL is a just-declared VAR_DECL; if necessary inject its
7692 declaration into the surrounding scope. */
7694 void
7695 maybe_inject_for_scope_var (decl)
7696 tree decl;
7698 if (current_binding_level->is_for_scope)
7700 struct binding_level *outer
7701 = current_binding_level->level_chain;
7703 /* Check to see if the same name is already bound at the outer
7704 level, either because it was directly declared, or because a
7705 dead for-decl got preserved. In either case, the code would
7706 not have been valid under the ARM scope rules, so clear
7707 is_for_scope for the current_binding_level.
7709 Otherwise, we need to preserve the temp slot for decl to last
7710 into the outer binding level. */
7712 tree outer_binding
7713 = TREE_CHAIN (IDENTIFIER_BINDING (DECL_NAME (decl)));
7715 if (outer_binding && BINDING_LEVEL (outer_binding) == outer
7716 && (TREE_CODE (BINDING_VALUE (outer_binding))
7717 == VAR_DECL)
7718 && DECL_DEAD_FOR_LOCAL (BINDING_VALUE (outer_binding)))
7720 BINDING_VALUE (outer_binding)
7721 = DECL_SHADOWED_FOR_VAR (BINDING_VALUE (outer_binding));
7722 current_binding_level->is_for_scope = 0;
7724 else if (DECL_IN_MEMORY_P (decl))
7725 preserve_temp_slots (DECL_RTL (decl));
7729 /* Generate code to initialized DECL (a local variable). */
7731 void
7732 initialize_local_var (decl, init, flags)
7733 tree decl;
7734 tree init;
7735 int flags;
7737 tree type;
7738 tree cleanup;
7740 type = complete_type (TREE_TYPE (decl));
7742 cleanup = build_cleanup_on_safe_obstack (decl);
7744 if (DECL_SIZE (decl) == NULL_TREE && !TREE_STATIC (decl))
7746 /* If we used it already as memory, it must stay in memory. */
7747 DECL_INITIAL (decl) = NULL_TREE;
7748 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
7751 if (DECL_RTL (decl))
7752 /* Only a RESULT_DECL should have non-NULL RTL when arriving here.
7753 All other local variables are assigned RTL in this function. */
7754 my_friendly_assert (TREE_CODE (decl) == RESULT_DECL, 19990828);
7755 else
7756 /* Create RTL for this variable. */
7757 expand_decl (decl);
7759 expand_start_target_temps ();
7761 if (DECL_SIZE (decl) && type != error_mark_node)
7763 int already_used;
7765 /* Compute and store the initial value. */
7766 already_used = TREE_USED (decl) || TREE_USED (type);
7768 if (init || TYPE_NEEDS_CONSTRUCTING (type))
7770 emit_line_note (DECL_SOURCE_FILE (decl),
7771 DECL_SOURCE_LINE (decl));
7772 /* We call push_momentary here so that when
7773 finish_expr_stmt clears the momentary obstack it
7774 doesn't destory any momentary expressions we may
7775 have lying around. Although cp_finish_decl is
7776 usually called at the end of a declaration
7777 statement, it may also be called for a temporary
7778 object in the middle of an expression. */
7779 push_momentary ();
7780 finish_expr_stmt (build_aggr_init (decl, init, flags));
7781 pop_momentary ();
7783 else
7784 expand_decl_init (decl);
7786 /* Set this to 0 so we can tell whether an aggregate which was
7787 initialized was ever used. Don't do this if it has a
7788 destructor, so we don't complain about the 'resource
7789 allocation is initialization' idiom. Now set
7790 attribute((unused)) on types so decls of that type will be
7791 marked used. (see TREE_USED, above.) */
7792 if (TYPE_NEEDS_CONSTRUCTING (type)
7793 && ! already_used
7794 && cleanup == NULL_TREE
7795 && DECL_NAME (decl))
7796 TREE_USED (decl) = 0;
7797 else if (already_used)
7798 TREE_USED (decl) = 1;
7801 /* Cleanup any temporaries needed for the initial value. */
7802 expand_end_target_temps ();
7804 /* Record the cleanup required for this declaration. */
7805 if (DECL_SIZE (decl)
7806 && type != error_mark_node
7807 && cleanup
7808 && !expand_decl_cleanup (decl, cleanup))
7809 cp_error ("parser lost in parsing declaration of `%D'", decl);
7812 /* Finish processing of a declaration;
7813 install its line number and initial value.
7814 If the length of an array type is not known before,
7815 it must be determined now, from the initial value, or it is an error.
7817 Call `pop_obstacks' iff NEED_POP is nonzero.
7819 For C++, `cp_finish_decl' must be fairly evasive: it must keep initializers
7820 for aggregates that have constructors alive on the permanent obstack,
7821 so that the global initializing functions can be written at the end.
7823 INIT0 holds the value of an initializer that should be allowed to escape
7824 the normal rules.
7826 FLAGS is LOOKUP_ONLYCONVERTING is the = init syntax was used, else 0
7827 if the (init) syntax was used.
7829 For functions that take default parameters, DECL points to its
7830 "maximal" instantiation. `cp_finish_decl' must then also declared its
7831 subsequently lower and lower forms of instantiation, checking for
7832 ambiguity as it goes. This can be sped up later. */
7834 void
7835 cp_finish_decl (decl, init, asmspec_tree, need_pop, flags)
7836 tree decl, init;
7837 tree asmspec_tree;
7838 int need_pop;
7839 int flags;
7841 register tree type;
7842 tree ttype = NULL_TREE;
7843 int temporary = allocation_temporary_p ();
7844 const char *asmspec = NULL;
7845 int was_readonly = 0;
7847 /* If this is 0, then we did not change obstacks. */
7848 if (! decl)
7850 if (init)
7851 error ("assignment (not initialization) in declaration");
7852 return;
7855 /* If a name was specified, get the string. */
7856 if (asmspec_tree)
7857 asmspec = TREE_STRING_POINTER (asmspec_tree);
7859 if (init && TREE_CODE (init) == NAMESPACE_DECL)
7861 cp_error ("Cannot initialize `%D' to namespace `%D'",
7862 decl, init);
7863 init = NULL_TREE;
7866 if (current_class_type
7867 && DECL_REAL_CONTEXT (decl) == current_class_type
7868 && TYPE_BEING_DEFINED (current_class_type)
7869 && (DECL_INITIAL (decl) || init))
7870 DECL_DEFINED_IN_CLASS_P (decl) = 1;
7872 if (TREE_CODE (decl) == VAR_DECL
7873 && DECL_CONTEXT (decl)
7874 && TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL
7875 && DECL_CONTEXT (decl) != current_namespace
7876 && init)
7878 /* Leave the namespace of the object. */
7879 pop_decl_namespace ();
7882 type = TREE_TYPE (decl);
7884 if (type == error_mark_node)
7886 if (toplevel_bindings_p () && temporary)
7887 end_temporary_allocation ();
7889 return;
7892 if (TYPE_HAS_MUTABLE_P (type))
7893 TREE_READONLY (decl) = 0;
7895 if (processing_template_decl)
7897 if (init && DECL_INITIAL (decl))
7898 DECL_INITIAL (decl) = init;
7899 goto finish_end0;
7902 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
7903 my_friendly_assert (TREE_CODE (decl) != PARM_DECL, 19990828);
7905 /* Take care of TYPE_DECLs up front. */
7906 if (TREE_CODE (decl) == TYPE_DECL)
7908 if (init && DECL_INITIAL (decl))
7910 /* typedef foo = bar; store the type of bar as the type of foo. */
7911 TREE_TYPE (decl) = type = TREE_TYPE (init);
7912 DECL_INITIAL (decl) = init = NULL_TREE;
7914 if (type != error_mark_node
7915 && IS_AGGR_TYPE (type) && DECL_NAME (decl))
7917 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
7918 cp_warning ("shadowing previous type declaration of `%#D'", decl);
7919 set_identifier_type_value (DECL_NAME (decl), type);
7920 CLASSTYPE_GOT_SEMICOLON (type) = 1;
7922 GNU_xref_decl (current_function_decl, decl);
7924 /* If we have installed this as the canonical typedef for this
7925 type, and that type has not been defined yet, delay emitting
7926 the debug information for it, as we will emit it later. */
7927 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
7928 && TYPE_SIZE (TREE_TYPE (decl)) == NULL_TREE)
7929 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
7931 rest_of_decl_compilation (decl, NULL_PTR,
7932 DECL_CONTEXT (decl) == NULL_TREE, at_eof);
7933 goto finish_end;
7936 if (TREE_CODE (decl) != FUNCTION_DECL)
7937 ttype = target_type (type);
7939 if (! DECL_EXTERNAL (decl) && TREE_READONLY (decl)
7940 && TYPE_NEEDS_CONSTRUCTING (type))
7942 /* Currently, GNU C++ puts constants in text space, making them
7943 impossible to initialize. In the future, one would hope for
7944 an operating system which understood the difference between
7945 initialization and the running of a program. */
7946 was_readonly = 1;
7947 TREE_READONLY (decl) = 0;
7950 if (TREE_CODE (decl) == FIELD_DECL && asmspec)
7952 /* This must override the asm specifier which was placed by
7953 grokclassfn. Lay this out fresh. */
7954 DECL_RTL (TREE_TYPE (decl)) = NULL_RTX;
7955 DECL_ASSEMBLER_NAME (decl) = get_identifier (asmspec);
7956 make_decl_rtl (decl, asmspec, 0);
7959 /* Deduce size of array from initialization, if not already known. */
7960 maybe_deduce_size_from_array_init (decl, init);
7961 init = check_initializer (decl, init);
7963 GNU_xref_decl (current_function_decl, decl);
7965 /* For top-level declaration, the initial value was read in
7966 the temporary obstack. MAXINDEX, rtl, etc. to be made below
7967 must go in the permanent obstack; but don't discard the
7968 temporary data yet. */
7970 if (toplevel_bindings_p () && temporary)
7971 end_temporary_allocation ();
7973 if (TREE_CODE (decl) == VAR_DECL)
7974 init = layout_var_decl (decl, init);
7976 /* Output the assembler code and/or RTL code for variables and functions,
7977 unless the type is an undefined structure or union.
7978 If not, it will get done when the type is completed. */
7979 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL
7980 || TREE_CODE (decl) == RESULT_DECL)
7982 /* ??? FIXME: What about nested classes? */
7983 int toplev = toplevel_bindings_p ();
7985 if (TREE_CODE (decl) == VAR_DECL)
7986 maybe_commonize_var (decl);
7988 make_rtl_for_nonlocal_decl (decl, init, asmspec);
7990 if (TREE_CODE (type) == FUNCTION_TYPE
7991 || TREE_CODE (type) == METHOD_TYPE)
7992 abstract_virtuals_error (decl,
7993 strip_array_types (TREE_TYPE (type)));
7994 else
7995 abstract_virtuals_error (decl, strip_array_types (type));
7997 if (TREE_CODE (decl) == FUNCTION_DECL)
7999 else if (DECL_EXTERNAL (decl)
8000 && ! (DECL_LANG_SPECIFIC (decl)
8001 && DECL_NOT_REALLY_EXTERN (decl)))
8003 if (init)
8004 DECL_INITIAL (decl) = init;
8006 else if (TREE_STATIC (decl) && type != error_mark_node)
8008 /* Cleanups for static variables are handled by `finish_file'. */
8009 if (TYPE_NEEDS_CONSTRUCTING (type) || init != NULL_TREE
8010 || TYPE_NEEDS_DESTRUCTOR (type))
8011 expand_static_init (decl, init);
8013 else if (! toplev)
8015 /* This is a local declaration. */
8016 maybe_inject_for_scope_var (decl);
8017 /* Initialize the local variable. But, if we're building a
8018 statement-tree, we'll do the initialization when we
8019 expand the tree. */
8020 if (!building_stmt_tree ())
8021 initialize_local_var (decl, init, flags);
8022 else if (init || DECL_INITIAL (decl) == error_mark_node)
8023 DECL_INITIAL (decl) = init;
8025 finish_end0:
8027 /* Undo call to `pushclass' that was done in `start_decl'
8028 due to initialization of qualified member variable.
8029 I.e., Foo::x = 10; */
8031 tree context = DECL_REAL_CONTEXT (decl);
8032 if (context
8033 && TREE_CODE_CLASS (TREE_CODE (context)) == 't'
8034 && (TREE_CODE (decl) == VAR_DECL
8035 /* We also have a pushclass done that we need to undo here
8036 if we're at top level and declare a method. */
8037 || TREE_CODE (decl) == FUNCTION_DECL)
8038 /* If size hasn't been set, we're still defining it,
8039 and therefore inside the class body; don't pop
8040 the binding level.. */
8041 && TYPE_SIZE (context) != NULL_TREE
8042 && context == current_class_type)
8043 pop_nested_class ();
8047 finish_end:
8049 /* If requested, warn about definitions of large data objects. */
8051 if (warn_larger_than
8052 && ! processing_template_decl
8053 && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
8054 && !DECL_EXTERNAL (decl))
8056 register tree decl_size = DECL_SIZE (decl);
8058 if (decl_size && TREE_CODE (decl_size) == INTEGER_CST)
8060 unsigned units = TREE_INT_CST_LOW (decl_size) / BITS_PER_UNIT;
8062 if (units > larger_than_size)
8063 warning_with_decl (decl, "size of `%s' is %u bytes", units);
8067 if (need_pop)
8068 /* Resume permanent allocation, if not within a function. The
8069 corresponding push_obstacks_nochange is in start_decl,
8070 start_method, groktypename, and in grokfield. */
8071 pop_obstacks ();
8073 if (was_readonly)
8074 TREE_READONLY (decl) = 1;
8077 /* This is here for a midend callback from c-common.c */
8079 void
8080 finish_decl (decl, init, asmspec_tree)
8081 tree decl, init;
8082 tree asmspec_tree;
8084 cp_finish_decl (decl, init, asmspec_tree, 1, 0);
8087 void
8088 expand_static_init (decl, init)
8089 tree decl;
8090 tree init;
8092 tree oldstatic = value_member (decl, static_aggregates);
8094 if (oldstatic)
8096 if (TREE_PURPOSE (oldstatic) && init != NULL_TREE)
8097 cp_error ("multiple initializations given for `%D'", decl);
8099 else if (! toplevel_bindings_p ())
8101 /* Emit code to perform this initialization but once. */
8102 tree temp;
8103 tree if_stmt;
8104 tree assignment;
8105 tree temp_init;
8107 /* Remember this information until end of file. */
8108 push_obstacks (&permanent_obstack, &permanent_obstack);
8110 /* Emit code to perform this initialization but once. This code
8111 looks like:
8113 static int temp = 0;
8114 if (!temp) {
8115 // Do initialization.
8116 temp = 1;
8117 // Register variable for destruction at end of program.
8120 Note that the `temp' variable is only set to 1 *after* the
8121 initialization is complete. This ensures that an exception,
8122 thrown during the construction, will cause the variable to
8123 reinitialized when we pass through this code again, as per:
8125 [stmt.dcl]
8127 If the initialization exits by throwing an exception, the
8128 initialization is not complete, so it will be tried again
8129 the next time control enters the declaration.
8131 In theory, this process should be thread-safe, too; multiple
8132 threads should not be able to initialize the variable more
8133 than once. We don't yet attempt to ensure thread-safety. */
8134 temp = get_temp_name (integer_type_node, 1);
8135 rest_of_decl_compilation (temp, NULL_PTR, 0, 0);
8137 /* Begin the conditional initialization. */
8138 if_stmt = begin_if_stmt ();
8139 finish_if_stmt_cond (build_binary_op (EQ_EXPR, temp,
8140 integer_zero_node),
8141 if_stmt);
8143 /* Do the initialization itself. */
8144 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl))
8145 || (init && TREE_CODE (init) == TREE_LIST))
8146 assignment = build_aggr_init (decl, init, 0);
8147 else if (init)
8148 /* The initialization we're doing here is just a bitwise
8149 copy. */
8150 assignment = build (INIT_EXPR, TREE_TYPE (decl), decl, init);
8151 else
8152 assignment = NULL_TREE;
8154 /* Once the assignment is complete, set TEMP to 1. Since the
8155 construction of the static object is complete at this point,
8156 we want to make sure TEMP is set to 1 even if a temporary
8157 constructed during the initialization throws an exception
8158 when it is destroyed. So, we combine the initialization and
8159 the assignment to TEMP into a single expression, ensuring
8160 that when we call finish_expr_stmt the cleanups will not be
8161 run until after TEMP is set to 1. */
8162 temp_init = build_modify_expr (temp, NOP_EXPR, integer_one_node);
8163 if (assignment)
8165 assignment = tree_cons (NULL_TREE, assignment,
8166 build_tree_list (NULL_TREE,
8167 temp_init));
8168 assignment = build_compound_expr (assignment);
8170 else
8171 assignment = temp_init;
8172 finish_expr_stmt (assignment);
8174 /* Use atexit to register a function for destroying this static
8175 variable. */
8176 if (TYPE_NEEDS_DESTRUCTOR (TREE_TYPE (decl)))
8178 tree cleanup, fcall;
8179 static tree Atexit = 0;
8180 int saved_flag_access_control;
8182 if (Atexit == 0)
8184 tree atexit_fndecl, PFV, pfvlist;
8186 ggc_add_tree_root (&Atexit, 1);
8188 /* Remember this information until end of file. */
8189 push_obstacks (&permanent_obstack, &permanent_obstack);
8190 PFV = build_pointer_type (build_function_type
8191 (void_type_node, void_list_node));
8193 pfvlist = tree_cons (NULL_TREE, PFV, void_list_node);
8195 push_lang_context (lang_name_c);
8196 /* Note that we do not call pushdecl for this function;
8197 there's no reason that this declaration should be
8198 accessible to anyone. */
8199 atexit_fndecl
8200 = define_function ("atexit",
8201 build_function_type (void_type_node,
8202 pfvlist),
8203 NOT_BUILT_IN,
8204 /*pfn=*/0,
8205 NULL_PTR);
8206 mark_used (atexit_fndecl);
8207 Atexit = default_conversion (atexit_fndecl);
8208 pop_lang_context ();
8209 pop_obstacks ();
8212 /* Call build_cleanup before we enter the anonymous function
8213 so that any access checks will be done relative to the
8214 current scope, rather than the scope of the anonymous
8215 function. */
8216 build_cleanup (decl);
8218 /* Now start the function. */
8219 cleanup = start_anon_func ();
8221 /* Now, recompute the cleanup. It may contain SAVE_EXPRs
8222 that refer to the original function, rather than the
8223 anonymous one. That will make the back-end think that
8224 nested functions are in use, which causes confusion. */
8225 saved_flag_access_control = flag_access_control;
8226 flag_access_control = 0;
8227 fcall = build_cleanup (decl);
8228 flag_access_control = saved_flag_access_control;
8230 /* Finish off the function. */
8231 expand_expr_stmt (fcall);
8232 end_anon_func ();
8234 /* Call atexit with the cleanup function. */
8235 mark_addressable (cleanup);
8236 cleanup = build_unary_op (ADDR_EXPR, cleanup, 0);
8237 fcall = build_function_call (Atexit,
8238 expr_tree_cons (NULL_TREE,
8239 cleanup,
8240 NULL_TREE));
8241 finish_expr_stmt (fcall);
8244 finish_then_clause (if_stmt);
8245 finish_if_stmt ();
8247 /* Resume old (possibly temporary) allocation. */
8248 pop_obstacks ();
8250 else
8252 /* This code takes into account memory allocation policy of
8253 `start_decl'. Namely, if TYPE_NEEDS_CONSTRUCTING does not
8254 hold for this object, then we must make permanent the storage
8255 currently in the temporary obstack. */
8256 if (!TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
8257 preserve_initializer ();
8258 static_aggregates = perm_tree_cons (init, decl, static_aggregates);
8262 /* Finish the declaration of a catch-parameter. */
8264 void
8265 start_handler_parms (declspecs, declarator)
8266 tree declspecs;
8267 tree declarator;
8269 tree decl;
8270 if (declspecs)
8272 decl = grokdeclarator (declarator, declspecs, CATCHPARM,
8273 1, NULL_TREE);
8274 if (decl == NULL_TREE)
8275 error ("invalid catch parameter");
8277 else
8278 decl = NULL_TREE;
8279 expand_start_catch_block (decl);
8283 /* Make TYPE a complete type based on INITIAL_VALUE.
8284 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
8285 2 if there was no information (in which case assume 0 if DO_DEFAULT). */
8288 complete_array_type (type, initial_value, do_default)
8289 tree type, initial_value;
8290 int do_default;
8292 register tree maxindex = NULL_TREE;
8293 int value = 0;
8295 /* Allocate on the same obstack as TYPE. */
8296 push_obstacks (TYPE_OBSTACK (type), TYPE_OBSTACK (type));
8298 if (initial_value)
8300 /* Note MAXINDEX is really the maximum index,
8301 one less than the size. */
8302 if (TREE_CODE (initial_value) == STRING_CST)
8304 int eltsize
8305 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
8306 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
8307 / eltsize) - 1, 0);
8309 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
8311 tree elts = CONSTRUCTOR_ELTS (initial_value);
8312 maxindex = size_binop (MINUS_EXPR, integer_zero_node, size_one_node);
8313 for (; elts; elts = TREE_CHAIN (elts))
8315 if (TREE_PURPOSE (elts))
8316 maxindex = TREE_PURPOSE (elts);
8317 else
8318 maxindex = size_binop (PLUS_EXPR, maxindex, size_one_node);
8320 maxindex = copy_node (maxindex);
8322 else
8324 /* Make an error message unless that happened already. */
8325 if (initial_value != error_mark_node)
8326 value = 1;
8327 else
8328 initial_value = NULL_TREE;
8330 /* Prevent further error messages. */
8331 maxindex = build_int_2 (0, 0);
8335 if (!maxindex)
8337 if (do_default)
8338 maxindex = build_int_2 (0, 0);
8339 value = 2;
8342 if (maxindex)
8344 tree itype;
8345 tree domain;
8347 domain = build_index_type (maxindex);
8348 TYPE_DOMAIN (type) = domain;
8350 if (! TREE_TYPE (maxindex))
8351 TREE_TYPE (maxindex) = domain;
8352 if (initial_value)
8353 itype = TREE_TYPE (initial_value);
8354 else
8355 itype = NULL;
8356 if (itype && !TYPE_DOMAIN (itype))
8357 TYPE_DOMAIN (itype) = domain;
8358 /* The type of the main variant should never be used for arrays
8359 of different sizes. It should only ever be completed with the
8360 size of the array. */
8361 if (! TYPE_DOMAIN (TYPE_MAIN_VARIANT (type)))
8362 TYPE_DOMAIN (TYPE_MAIN_VARIANT (type)) = domain;
8365 pop_obstacks();
8367 /* Lay out the type now that we can get the real answer. */
8369 layout_type (type);
8371 return value;
8374 /* Return zero if something is declared to be a member of type
8375 CTYPE when in the context of CUR_TYPE. STRING is the error
8376 message to print in that case. Otherwise, quietly return 1. */
8378 static int
8379 member_function_or_else (ctype, cur_type, string)
8380 tree ctype, cur_type;
8381 const char *string;
8383 if (ctype && ctype != cur_type)
8385 error (string, TYPE_NAME_STRING (ctype));
8386 return 0;
8388 return 1;
8391 /* Subroutine of `grokdeclarator'. */
8393 /* Generate errors possibly applicable for a given set of specifiers.
8394 This is for ARM $7.1.2. */
8396 static void
8397 bad_specifiers (object, type, virtualp, quals, inlinep, friendp, raises)
8398 tree object;
8399 const char *type;
8400 int virtualp, quals, friendp, raises, inlinep;
8402 if (virtualp)
8403 cp_error ("`%D' declared as a `virtual' %s", object, type);
8404 if (inlinep)
8405 cp_error ("`%D' declared as an `inline' %s", object, type);
8406 if (quals)
8407 cp_error ("`const' and `volatile' function specifiers on `%D' invalid in %s declaration",
8408 object, type);
8409 if (friendp)
8410 cp_error_at ("`%D' declared as a friend", object);
8411 if (raises)
8412 cp_error_at ("`%D' declared with an exception specification", object);
8415 /* CTYPE is class type, or null if non-class.
8416 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
8417 or METHOD_TYPE.
8418 DECLARATOR is the function's name.
8419 VIRTUALP is truthvalue of whether the function is virtual or not.
8420 FLAGS are to be passed through to `grokclassfn'.
8421 QUALS are qualifiers indicating whether the function is `const'
8422 or `volatile'.
8423 RAISES is a list of exceptions that this function can raise.
8424 CHECK is 1 if we must find this method in CTYPE, 0 if we should
8425 not look, and -1 if we should not call `grokclassfn' at all.
8427 Returns `NULL_TREE' if something goes wrong, after issuing
8428 applicable error messages. */
8430 static tree
8431 grokfndecl (ctype, type, declarator, orig_declarator, virtualp, flags, quals,
8432 raises, check, friendp, publicp, inlinep, funcdef_flag,
8433 template_count, in_namespace)
8434 tree ctype, type;
8435 tree declarator;
8436 tree orig_declarator;
8437 int virtualp;
8438 enum overload_flags flags;
8439 tree quals, raises;
8440 int check, friendp, publicp, inlinep, funcdef_flag, template_count;
8441 tree in_namespace;
8443 tree cname, decl;
8444 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
8445 int has_default_arg = 0;
8446 tree t;
8448 if (ctype)
8449 cname = TREE_CODE (TYPE_NAME (ctype)) == TYPE_DECL
8450 ? TYPE_IDENTIFIER (ctype) : TYPE_NAME (ctype);
8451 else
8452 cname = NULL_TREE;
8454 if (raises)
8456 type = build_exception_variant (type, raises);
8459 decl = build_lang_decl (FUNCTION_DECL, declarator, type);
8460 /* Propagate volatile out from type to decl. */
8461 if (TYPE_VOLATILE (type))
8462 TREE_THIS_VOLATILE (decl) = 1;
8464 /* If this decl has namespace scope, set that up. */
8465 if (in_namespace)
8466 set_decl_namespace (decl, in_namespace, friendp);
8467 else if (publicp && ! ctype)
8468 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
8470 /* `main' and builtins have implicit 'C' linkage. */
8471 if ((MAIN_NAME_P (declarator)
8472 || (IDENTIFIER_LENGTH (declarator) > 10
8473 && IDENTIFIER_POINTER (declarator)[0] == '_'
8474 && IDENTIFIER_POINTER (declarator)[1] == '_'
8475 && strncmp (IDENTIFIER_POINTER (declarator)+2, "builtin_", 8) == 0))
8476 && current_lang_name == lang_name_cplusplus
8477 && ctype == NULL_TREE
8478 /* NULL_TREE means global namespace. */
8479 && DECL_CONTEXT (decl) == NULL_TREE)
8480 DECL_LANGUAGE (decl) = lang_c;
8482 /* Should probably propagate const out from type to decl I bet (mrs). */
8483 if (staticp)
8485 DECL_STATIC_FUNCTION_P (decl) = 1;
8486 DECL_CONTEXT (decl) = ctype;
8489 if (ctype)
8490 DECL_CLASS_CONTEXT (decl) = ctype;
8492 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8494 if (processing_template_decl)
8495 error ("cannot declare `main' to be a template");
8496 if (inlinep)
8497 error ("cannot declare `main' to be inline");
8498 else if (! publicp)
8499 error ("cannot declare `main' to be static");
8500 inlinep = 0;
8501 publicp = 1;
8504 /* Members of anonymous types and local classes have no linkage; make
8505 them internal. */
8506 if (ctype && (ANON_AGGRNAME_P (TYPE_IDENTIFIER (ctype))
8507 || hack_decl_function_context (TYPE_MAIN_DECL (ctype))))
8508 publicp = 0;
8510 if (publicp)
8512 /* [basic.link]: A name with no linkage (notably, the name of a class
8513 or enumeration declared in a local scope) shall not be used to
8514 declare an entity with linkage.
8516 Only check this for public decls for now. */
8517 t = no_linkage_check (TREE_TYPE (decl));
8518 if (t)
8520 if (ANON_AGGRNAME_P (TYPE_IDENTIFIER (t)))
8522 if (DECL_LANGUAGE (decl) == lang_c)
8523 /* Allow this; it's pretty common in C. */;
8524 else
8525 cp_pedwarn ("non-local function `%#D' uses anonymous type",
8526 decl);
8528 else
8529 cp_pedwarn ("non-local function `%#D' uses local type `%T'",
8530 decl, t);
8534 TREE_PUBLIC (decl) = publicp;
8535 if (! publicp)
8537 DECL_INTERFACE_KNOWN (decl) = 1;
8538 DECL_NOT_REALLY_EXTERN (decl) = 1;
8541 if (inlinep)
8542 DECL_THIS_INLINE (decl) = DECL_INLINE (decl) = 1;
8544 DECL_EXTERNAL (decl) = 1;
8545 if (quals != NULL_TREE && TREE_CODE (type) == FUNCTION_TYPE)
8547 cp_error ("%smember function `%D' cannot have `%T' method qualifier",
8548 (ctype ? "static " : "non-"), decl, TREE_VALUE (quals));
8549 quals = NULL_TREE;
8552 if (IDENTIFIER_OPNAME_P (DECL_NAME (decl)))
8553 grok_op_properties (decl, virtualp, check < 0);
8555 if (ctype && hack_decl_function_context (decl))
8556 DECL_NO_STATIC_CHAIN (decl) = 1;
8558 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
8559 if (TREE_PURPOSE (t)
8560 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
8562 has_default_arg = 1;
8563 break;
8566 if (friendp
8567 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
8569 if (funcdef_flag)
8570 cp_error
8571 ("defining explicit specialization `%D' in friend declaration",
8572 orig_declarator);
8573 else
8575 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
8577 /* Something like `template <class T> friend void f<T>()'. */
8578 cp_error ("template-id `%D' in declaration of primary template",
8579 orig_declarator);
8580 return NULL_TREE;
8584 /* A friend declaration of the form friend void f<>(). Record
8585 the information in the TEMPLATE_ID_EXPR. */
8586 SET_DECL_IMPLICIT_INSTANTIATION (decl);
8587 DECL_TEMPLATE_INFO (decl)
8588 = perm_tree_cons (TREE_OPERAND (orig_declarator, 0),
8589 TREE_OPERAND (orig_declarator, 1),
8590 NULL_TREE);
8592 if (has_default_arg)
8594 cp_error ("default arguments are not allowed in declaration of friend template specialization `%D'",
8595 decl);
8596 return NULL_TREE;
8599 if (inlinep)
8601 cp_error ("`inline' is not allowed in declaration of friend template specialization `%D'",
8602 decl);
8603 return NULL_TREE;
8608 if (has_default_arg)
8609 add_defarg_fn (decl);
8611 /* Plain overloading: will not be grok'd by grokclassfn. */
8612 if (! ctype && ! processing_template_decl
8613 && DECL_LANGUAGE (decl) != lang_c
8614 && (! DECL_USE_TEMPLATE (decl) || name_mangling_version < 1))
8615 set_mangled_name_for_decl (decl);
8617 if (funcdef_flag)
8618 /* Make the init_value nonzero so pushdecl knows this is not
8619 tentative. error_mark_node is replaced later with the BLOCK. */
8620 DECL_INITIAL (decl) = error_mark_node;
8622 /* Caller will do the rest of this. */
8623 if (check < 0)
8624 return decl;
8626 if (check && funcdef_flag)
8627 DECL_INITIAL (decl) = error_mark_node;
8629 if (flags == NO_SPECIAL && ctype && constructor_name (cname) == declarator)
8631 tree tmp;
8632 /* Just handle constructors here. We could do this
8633 inside the following if stmt, but I think
8634 that the code is more legible by breaking this
8635 case out. See comments below for what each of
8636 the following calls is supposed to do. */
8637 DECL_CONSTRUCTOR_P (decl) = 1;
8639 grokclassfn (ctype, decl, flags, quals);
8641 decl = check_explicit_specialization (orig_declarator, decl,
8642 template_count,
8643 2 * (funcdef_flag != 0) +
8644 4 * (friendp != 0));
8645 if (decl == error_mark_node)
8646 return NULL_TREE;
8648 if ((! TYPE_FOR_JAVA (ctype) || check_java_method (decl))
8649 && check)
8651 tmp = check_classfn (ctype, decl);
8653 if (tmp && TREE_CODE (tmp) == TEMPLATE_DECL)
8654 tmp = DECL_TEMPLATE_RESULT(tmp);
8656 if (tmp && DECL_ARTIFICIAL (tmp))
8657 cp_error ("definition of implicitly-declared `%D'", tmp);
8658 if (tmp && duplicate_decls (decl, tmp))
8659 return tmp;
8661 if (! grok_ctor_properties (ctype, decl))
8662 return NULL_TREE;
8664 else
8666 tree tmp;
8668 /* Function gets the ugly name, field gets the nice one.
8669 This call may change the type of the function (because
8670 of default parameters)! */
8671 if (ctype != NULL_TREE)
8672 grokclassfn (ctype, decl, flags, quals);
8674 decl = check_explicit_specialization (orig_declarator, decl,
8675 template_count,
8676 2 * (funcdef_flag != 0) +
8677 4 * (friendp != 0));
8678 if (decl == error_mark_node)
8679 return NULL_TREE;
8681 if (ctype != NULL_TREE
8682 && (! TYPE_FOR_JAVA (ctype) || check_java_method (decl))
8683 && check)
8685 tmp = check_classfn (ctype, decl);
8687 if (tmp && TREE_CODE (tmp) == TEMPLATE_DECL)
8688 tmp = DECL_TEMPLATE_RESULT (tmp);
8690 if (tmp && DECL_STATIC_FUNCTION_P (tmp)
8691 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
8693 /* Remove the `this' parm added by grokclassfn.
8694 XXX Isn't this done in start_function, too? */
8695 revert_static_member_fn (&decl, NULL, NULL);
8696 last_function_parms = TREE_CHAIN (last_function_parms);
8698 if (tmp && DECL_ARTIFICIAL (tmp))
8699 cp_error ("definition of implicitly-declared `%D'", tmp);
8700 if (tmp)
8702 /* Attempt to merge the declarations. This can fail, in
8703 the case of some illegal specialization declarations. */
8704 if (!duplicate_decls (decl, tmp))
8705 cp_error ("no `%#D' member function declared in class `%T'",
8706 decl, ctype);
8707 return tmp;
8711 if (ctype == NULL_TREE || check)
8712 return decl;
8714 if (virtualp)
8716 DECL_VIRTUAL_P (decl) = 1;
8717 if (DECL_VINDEX (decl) == NULL_TREE)
8718 DECL_VINDEX (decl) = error_mark_node;
8719 IDENTIFIER_VIRTUAL_P (DECL_NAME (decl)) = 1;
8722 return decl;
8725 static tree
8726 grokvardecl (type, declarator, specbits_in, initialized, constp, in_namespace)
8727 tree type;
8728 tree declarator;
8729 RID_BIT_TYPE *specbits_in;
8730 int initialized;
8731 int constp;
8732 tree in_namespace;
8734 tree decl;
8735 RID_BIT_TYPE specbits;
8737 specbits = *specbits_in;
8739 if (TREE_CODE (type) == OFFSET_TYPE)
8741 /* If you declare a static member so that it
8742 can be initialized, the code will reach here. */
8743 tree basetype = TYPE_OFFSET_BASETYPE (type);
8744 type = TREE_TYPE (type);
8745 decl = build_lang_decl (VAR_DECL, declarator, type);
8746 DECL_CONTEXT (decl) = basetype;
8747 DECL_CLASS_CONTEXT (decl) = basetype;
8748 DECL_ASSEMBLER_NAME (decl) = build_static_name (basetype, declarator);
8750 else
8752 tree context;
8754 if (in_namespace)
8755 context = in_namespace;
8756 else if (namespace_bindings_p () || RIDBIT_SETP (RID_EXTERN, specbits))
8757 context = current_namespace;
8758 else
8759 context = NULL_TREE;
8761 if (processing_template_decl)
8763 /* If we're in a template, we need DECL_LANG_SPECIFIC so that
8764 we can call push_template_decl. */
8765 push_permanent_obstack ();
8766 decl = build_lang_decl (VAR_DECL, declarator, type);
8767 pop_obstacks ();
8769 else
8770 decl = build_decl (VAR_DECL, declarator, type);
8772 if (context)
8773 set_decl_namespace (decl, context, 0);
8775 context = DECL_CONTEXT (decl);
8776 if (declarator && context && current_lang_name != lang_name_c)
8777 DECL_ASSEMBLER_NAME (decl) = build_static_name (context, declarator);
8780 if (in_namespace)
8781 set_decl_namespace (decl, in_namespace, 0);
8783 if (RIDBIT_SETP (RID_EXTERN, specbits))
8785 DECL_THIS_EXTERN (decl) = 1;
8786 DECL_EXTERNAL (decl) = !initialized;
8789 /* In class context, static means one per class,
8790 public access, and static storage. */
8791 if (DECL_CLASS_SCOPE_P (decl))
8793 TREE_PUBLIC (decl) = 1;
8794 TREE_STATIC (decl) = 1;
8795 DECL_EXTERNAL (decl) = 0;
8797 /* At top level, either `static' or no s.c. makes a definition
8798 (perhaps tentative), and absence of `static' makes it public. */
8799 else if (toplevel_bindings_p ())
8801 TREE_PUBLIC (decl) = (RIDBIT_NOTSETP (RID_STATIC, specbits)
8802 && (DECL_THIS_EXTERN (decl) || ! constp));
8803 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
8805 /* Not at top level, only `static' makes a static definition. */
8806 else
8808 TREE_STATIC (decl) = !! RIDBIT_SETP (RID_STATIC, specbits);
8809 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
8812 if (TREE_PUBLIC (decl))
8814 /* [basic.link]: A name with no linkage (notably, the name of a class
8815 or enumeration declared in a local scope) shall not be used to
8816 declare an entity with linkage.
8818 Only check this for public decls for now. */
8819 tree t = no_linkage_check (TREE_TYPE (decl));
8820 if (t)
8822 if (ANON_AGGRNAME_P (TYPE_IDENTIFIER (t)))
8823 /* Ignore for now; `enum { foo } e' is pretty common. */;
8824 else
8825 cp_pedwarn ("non-local variable `%#D' uses local type `%T'",
8826 decl, t);
8830 return decl;
8833 /* Create and return a canonical pointer to member function type, for
8834 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
8836 tree
8837 build_ptrmemfunc_type (type)
8838 tree type;
8840 tree fields[4];
8841 tree t;
8842 tree u;
8843 tree unqualified_variant = NULL_TREE;
8845 /* If a canonical type already exists for this type, use it. We use
8846 this method instead of type_hash_canon, because it only does a
8847 simple equality check on the list of field members. */
8849 if ((t = TYPE_GET_PTRMEMFUNC_TYPE (type)))
8850 return t;
8852 /* Make sure that we always have the unqualified pointer-to-member
8853 type first. */
8854 if (CP_TYPE_QUALS (type) != TYPE_UNQUALIFIED)
8855 unqualified_variant
8856 = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
8858 push_obstacks (TYPE_OBSTACK (type), TYPE_OBSTACK (type));
8860 u = make_lang_type (UNION_TYPE);
8861 SET_IS_AGGR_TYPE (u, 0);
8862 fields[0] = build_lang_decl (FIELD_DECL, pfn_identifier, type);
8863 fields[1] = build_lang_decl (FIELD_DECL, delta2_identifier,
8864 delta_type_node);
8865 finish_builtin_type (u, "__ptrmemfunc_type", fields, 1, ptr_type_node);
8866 TYPE_NAME (u) = NULL_TREE;
8868 t = make_lang_type (RECORD_TYPE);
8870 /* Let the front-end know this is a pointer to member function... */
8871 TYPE_PTRMEMFUNC_FLAG (t) = 1;
8872 /* ... and not really an aggregate. */
8873 SET_IS_AGGR_TYPE (t, 0);
8875 fields[0] = build_lang_decl (FIELD_DECL, delta_identifier,
8876 delta_type_node);
8877 fields[1] = build_lang_decl (FIELD_DECL, index_identifier,
8878 delta_type_node);
8879 fields[2] = build_lang_decl (FIELD_DECL, pfn_or_delta2_identifier, u);
8880 finish_builtin_type (t, "__ptrmemfunc_type", fields, 2, ptr_type_node);
8882 pop_obstacks ();
8884 /* Zap out the name so that the back-end will give us the debugging
8885 information for this anonymous RECORD_TYPE. */
8886 TYPE_NAME (t) = NULL_TREE;
8888 /* If this is not the unqualified form of this pointer-to-member
8889 type, set the TYPE_MAIN_VARIANT for this type to be the
8890 unqualified type. Since they are actually RECORD_TYPEs that are
8891 not variants of each other, we must do this manually. */
8892 if (CP_TYPE_QUALS (type) != TYPE_UNQUALIFIED)
8894 t = build_qualified_type (t, CP_TYPE_QUALS (type));
8895 TYPE_MAIN_VARIANT (t) = unqualified_variant;
8896 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (unqualified_variant);
8897 TYPE_NEXT_VARIANT (unqualified_variant) = t;
8900 /* Cache this pointer-to-member type so that we can find it again
8901 later. */
8902 TYPE_SET_PTRMEMFUNC_TYPE (type, t);
8904 /* Seems to be wanted. */
8905 CLASSTYPE_GOT_SEMICOLON (t) = 1;
8907 return t;
8910 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
8911 Check to see that the definition is valid. Issue appropriate error
8912 messages. Return 1 if the definition is particularly bad, or 0
8913 otherwise. */
8916 check_static_variable_definition (decl, type)
8917 tree decl;
8918 tree type;
8920 /* Motion 10 at San Diego: If a static const integral data member is
8921 initialized with an integral constant expression, the initializer
8922 may appear either in the declaration (within the class), or in
8923 the definition, but not both. If it appears in the class, the
8924 member is a member constant. The file-scope definition is always
8925 required. */
8926 if (CLASS_TYPE_P (type) || TREE_CODE (type) == REFERENCE_TYPE)
8928 cp_error ("in-class initialization of static data member of non-integral type `%T'",
8929 type);
8930 /* If we just return the declaration, crashes will sometimes
8931 occur. We therefore return void_type_node, as if this was a
8932 friend declaration, to cause callers to completely ignore
8933 this declaration. */
8934 return 1;
8936 else if (!CP_TYPE_CONST_P (type))
8937 cp_error ("ANSI C++ forbids in-class initialization of non-const static member `%D'",
8938 decl);
8939 else if (pedantic && !INTEGRAL_TYPE_P (type))
8940 cp_pedwarn ("ANSI C++ forbids initialization of member constant `%D' of non-integral type `%T'", decl, type);
8942 return 0;
8945 /* Given declspecs and a declarator,
8946 determine the name and type of the object declared
8947 and construct a ..._DECL node for it.
8948 (In one case we can return a ..._TYPE node instead.
8949 For invalid input we sometimes return 0.)
8951 DECLSPECS is a chain of tree_list nodes whose value fields
8952 are the storage classes and type specifiers.
8954 DECL_CONTEXT says which syntactic context this declaration is in:
8955 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
8956 FUNCDEF for a function definition. Like NORMAL but a few different
8957 error messages in each case. Return value may be zero meaning
8958 this definition is too screwy to try to parse.
8959 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
8960 handle member functions (which have FIELD context).
8961 Return value may be zero meaning this definition is too screwy to
8962 try to parse.
8963 PARM for a parameter declaration (either within a function prototype
8964 or before a function body). Make a PARM_DECL, or return void_type_node.
8965 CATCHPARM for a parameter declaration before a catch clause.
8966 TYPENAME if for a typename (in a cast or sizeof).
8967 Don't make a DECL node; just return the ..._TYPE node.
8968 FIELD for a struct or union field; make a FIELD_DECL.
8969 BITFIELD for a field with specified width.
8970 INITIALIZED is 1 if the decl has an initializer.
8972 ATTRLIST is a TREE_LIST node with prefix attributes in TREE_VALUE and
8973 normal attributes in TREE_PURPOSE, or NULL_TREE.
8975 In the TYPENAME case, DECLARATOR is really an absolute declarator.
8976 It may also be so in the PARM case, for a prototype where the
8977 argument type is specified but not the name.
8979 This function is where the complicated C meanings of `static'
8980 and `extern' are interpreted.
8982 For C++, if there is any monkey business to do, the function which
8983 calls this one must do it, i.e., prepending instance variables,
8984 renaming overloaded function names, etc.
8986 Note that for this C++, it is an error to define a method within a class
8987 which does not belong to that class.
8989 Except in the case where SCOPE_REFs are implicitly known (such as
8990 methods within a class being redundantly qualified),
8991 declarations which involve SCOPE_REFs are returned as SCOPE_REFs
8992 (class_name::decl_name). The caller must also deal with this.
8994 If a constructor or destructor is seen, and the context is FIELD,
8995 then the type gains the attribute TREE_HAS_x. If such a declaration
8996 is erroneous, NULL_TREE is returned.
8998 QUALS is used only for FUNCDEF and MEMFUNCDEF cases. For a member
8999 function, these are the qualifiers to give to the `this' pointer.
9001 May return void_type_node if the declarator turned out to be a friend.
9002 See grokfield for details. */
9004 enum return_types { return_normal, return_ctor, return_dtor, return_conversion };
9006 tree
9007 grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
9008 tree declspecs;
9009 tree declarator;
9010 enum decl_context decl_context;
9011 int initialized;
9012 tree attrlist;
9014 RID_BIT_TYPE specbits;
9015 int nclasses = 0;
9016 tree spec;
9017 tree type = NULL_TREE;
9018 int longlong = 0;
9019 int constp;
9020 int restrictp;
9021 int volatilep;
9022 int type_quals;
9023 int virtualp, explicitp, friendp, inlinep, staticp;
9024 int explicit_int = 0;
9025 int explicit_char = 0;
9026 int defaulted_int = 0;
9027 tree typedef_decl = NULL_TREE;
9028 const char *name;
9029 tree typedef_type = NULL_TREE;
9030 int funcdef_flag = 0;
9031 enum tree_code innermost_code = ERROR_MARK;
9032 int bitfield = 0;
9033 #if 0
9034 /* See the code below that used this. */
9035 tree decl_machine_attr = NULL_TREE;
9036 #endif
9037 /* Set this to error_mark_node for FIELD_DECLs we could not handle properly.
9038 All FIELD_DECLs we build here have `init' put into their DECL_INITIAL. */
9039 tree init = NULL_TREE;
9041 /* Keep track of what sort of function is being processed
9042 so that we can warn about default return values, or explicit
9043 return values which do not match prescribed defaults. */
9044 enum return_types return_type = return_normal;
9046 tree dname = NULL_TREE;
9047 tree ctype = current_class_type;
9048 tree ctor_return_type = NULL_TREE;
9049 enum overload_flags flags = NO_SPECIAL;
9050 tree quals = NULL_TREE;
9051 tree raises = NULL_TREE;
9052 int template_count = 0;
9053 tree in_namespace = NULL_TREE;
9054 tree inner_attrs;
9055 int ignore_attrs;
9057 RIDBIT_RESET_ALL (specbits);
9058 if (decl_context == FUNCDEF)
9059 funcdef_flag = 1, decl_context = NORMAL;
9060 else if (decl_context == MEMFUNCDEF)
9061 funcdef_flag = -1, decl_context = FIELD;
9062 else if (decl_context == BITFIELD)
9063 bitfield = 1, decl_context = FIELD;
9065 /* Look inside a declarator for the name being declared
9066 and get it as a string, for an error message. */
9068 tree *next = &declarator;
9069 register tree decl;
9070 name = NULL;
9072 while (next && *next)
9074 decl = *next;
9075 switch (TREE_CODE (decl))
9077 case TREE_LIST:
9078 /* For attributes. */
9079 next = &TREE_VALUE (decl);
9080 break;
9082 case COND_EXPR:
9083 ctype = NULL_TREE;
9084 next = &TREE_OPERAND (decl, 0);
9085 break;
9087 case BIT_NOT_EXPR: /* For C++ destructors! */
9089 tree name = TREE_OPERAND (decl, 0);
9090 tree rename = NULL_TREE;
9092 my_friendly_assert (flags == NO_SPECIAL, 152);
9093 flags = DTOR_FLAG;
9094 return_type = return_dtor;
9095 if (TREE_CODE (name) == TYPE_DECL)
9096 TREE_OPERAND (decl, 0) = name = constructor_name (name);
9097 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 153);
9098 if (ctype == NULL_TREE)
9100 if (current_class_type == NULL_TREE)
9102 error ("destructors must be member functions");
9103 flags = NO_SPECIAL;
9105 else
9107 tree t = constructor_name (current_class_name);
9108 if (t != name)
9109 rename = t;
9112 else
9114 tree t = constructor_name (ctype);
9115 if (t != name)
9116 rename = t;
9119 if (rename)
9121 cp_error ("destructor `%T' must match class name `%T'",
9122 name, rename);
9123 TREE_OPERAND (decl, 0) = rename;
9125 next = &name;
9127 break;
9129 case ADDR_EXPR: /* C++ reference declaration */
9130 /* Fall through. */
9131 case ARRAY_REF:
9132 case INDIRECT_REF:
9133 ctype = NULL_TREE;
9134 innermost_code = TREE_CODE (decl);
9135 next = &TREE_OPERAND (decl, 0);
9136 break;
9138 case CALL_EXPR:
9139 if (parmlist_is_exprlist (CALL_DECLARATOR_PARMS (decl)))
9141 /* This is actually a variable declaration using
9142 constructor syntax. We need to call start_decl and
9143 cp_finish_decl so we can get the variable
9144 initialized... */
9146 tree attributes, prefix_attributes;
9148 *next = TREE_OPERAND (decl, 0);
9149 init = CALL_DECLARATOR_PARMS (decl);
9151 if (attrlist)
9153 attributes = TREE_PURPOSE (attrlist);
9154 prefix_attributes = TREE_VALUE (attrlist);
9156 else
9158 attributes = NULL_TREE;
9159 prefix_attributes = NULL_TREE;
9162 decl = start_decl (declarator, declspecs, 1,
9163 attributes, prefix_attributes);
9164 if (decl)
9166 /* Look for __unused__ attribute */
9167 if (TREE_USED (TREE_TYPE (decl)))
9168 TREE_USED (decl) = 1;
9169 finish_decl (decl, init, NULL_TREE);
9171 else
9172 cp_error ("invalid declarator");
9173 return 0;
9175 innermost_code = TREE_CODE (decl);
9176 if (decl_context == FIELD && ctype == NULL_TREE)
9177 ctype = current_class_type;
9178 if (ctype
9179 && TREE_OPERAND (decl, 0)
9180 && (TREE_CODE (TREE_OPERAND (decl, 0)) == TYPE_DECL
9181 && ((DECL_NAME (TREE_OPERAND (decl, 0))
9182 == constructor_name_full (ctype))
9183 || (DECL_NAME (TREE_OPERAND (decl, 0))
9184 == constructor_name (ctype)))))
9185 TREE_OPERAND (decl, 0) = constructor_name (ctype);
9186 next = &TREE_OPERAND (decl, 0);
9187 decl = *next;
9188 if (ctype != NULL_TREE
9189 && decl != NULL_TREE && flags != DTOR_FLAG
9190 && decl == constructor_name (ctype))
9192 return_type = return_ctor;
9193 ctor_return_type = ctype;
9195 ctype = NULL_TREE;
9196 break;
9198 case TEMPLATE_ID_EXPR:
9200 tree fns = TREE_OPERAND (decl, 0);
9202 if (TREE_CODE (fns) == LOOKUP_EXPR)
9203 fns = TREE_OPERAND (fns, 0);
9205 dname = fns;
9206 if (TREE_CODE (dname) == COMPONENT_REF)
9207 dname = TREE_OPERAND (dname, 1);
9208 if (TREE_CODE (dname) != IDENTIFIER_NODE)
9210 my_friendly_assert (is_overloaded_fn (dname),
9211 19990331);
9212 dname = DECL_NAME (get_first_fn (dname));
9215 /* Fall through. */
9217 case IDENTIFIER_NODE:
9218 if (TREE_CODE (decl) == IDENTIFIER_NODE)
9219 dname = decl;
9221 next = 0;
9223 if (is_rid (dname))
9225 cp_error ("declarator-id missing; using reserved word `%D'",
9226 dname);
9227 name = IDENTIFIER_POINTER (dname);
9229 if (! IDENTIFIER_OPNAME_P (dname)
9230 /* GNU/Linux headers use '__op'. Arrgh. */
9231 || (IDENTIFIER_TYPENAME_P (dname) && ! TREE_TYPE (dname)))
9232 name = IDENTIFIER_POINTER (dname);
9233 else
9235 if (IDENTIFIER_TYPENAME_P (dname))
9237 my_friendly_assert (flags == NO_SPECIAL, 154);
9238 flags = TYPENAME_FLAG;
9239 ctor_return_type = TREE_TYPE (dname);
9240 return_type = return_conversion;
9242 name = operator_name_string (dname);
9244 break;
9246 /* C++ extension */
9247 case SCOPE_REF:
9249 /* Perform error checking, and decide on a ctype. */
9250 tree cname = TREE_OPERAND (decl, 0);
9251 if (cname == NULL_TREE)
9252 ctype = NULL_TREE;
9253 else if (TREE_CODE (cname) == NAMESPACE_DECL)
9255 ctype = NULL_TREE;
9256 in_namespace = TREE_OPERAND (decl, 0);
9257 TREE_OPERAND (decl, 0) = NULL_TREE;
9259 else if (! is_aggr_type (cname, 1))
9260 TREE_OPERAND (decl, 0) = NULL_TREE;
9261 /* Must test TREE_OPERAND (decl, 1), in case user gives
9262 us `typedef (class::memfunc)(int); memfunc *memfuncptr;' */
9263 else if (TREE_OPERAND (decl, 1)
9264 && TREE_CODE (TREE_OPERAND (decl, 1)) == INDIRECT_REF)
9265 ctype = cname;
9266 else if (TREE_CODE (cname) == TEMPLATE_TYPE_PARM
9267 || TREE_CODE (cname) == TEMPLATE_TEMPLATE_PARM)
9269 cp_error ("`%T::%D' is not a valid declarator", cname,
9270 TREE_OPERAND (decl, 1));
9271 cp_error (" perhaps you want `typename %T::%D' to make it a type",
9272 cname, TREE_OPERAND (decl, 1));
9273 return void_type_node;
9275 else if (ctype == NULL_TREE)
9276 ctype = cname;
9277 else if (TREE_COMPLEXITY (decl) == current_class_depth)
9278 TREE_OPERAND (decl, 0) = ctype;
9279 else
9281 if (! UNIQUELY_DERIVED_FROM_P (cname, ctype))
9283 cp_error ("type `%T' is not derived from type `%T'",
9284 cname, ctype);
9285 TREE_OPERAND (decl, 0) = NULL_TREE;
9287 else
9288 ctype = cname;
9291 if (ctype && TREE_CODE (TREE_OPERAND (decl, 1)) == TYPE_DECL
9292 && ((DECL_NAME (TREE_OPERAND (decl, 1))
9293 == constructor_name_full (ctype))
9294 || (DECL_NAME (TREE_OPERAND (decl, 1))
9295 == constructor_name (ctype))))
9296 TREE_OPERAND (decl, 1) = constructor_name (ctype);
9297 next = &TREE_OPERAND (decl, 1);
9298 decl = *next;
9299 if (ctype)
9301 if (TREE_CODE (decl) == IDENTIFIER_NODE
9302 && constructor_name (ctype) == decl)
9304 return_type = return_ctor;
9305 ctor_return_type = ctype;
9307 else if (TREE_CODE (decl) == BIT_NOT_EXPR
9308 && TREE_CODE (TREE_OPERAND (decl, 0)) == IDENTIFIER_NODE
9309 && (constructor_name (ctype) == TREE_OPERAND (decl, 0)
9310 || constructor_name_full (ctype) == TREE_OPERAND (decl, 0)))
9312 return_type = return_dtor;
9313 ctor_return_type = ctype;
9314 flags = DTOR_FLAG;
9315 TREE_OPERAND (decl, 0) = constructor_name (ctype);
9316 next = &TREE_OPERAND (decl, 0);
9320 break;
9322 case ERROR_MARK:
9323 next = 0;
9324 break;
9326 case TYPE_DECL:
9327 /* Parse error puts this typespec where
9328 a declarator should go. */
9329 cp_error ("`%T' specified as declarator-id", DECL_NAME (decl));
9330 if (TREE_TYPE (decl) == current_class_type)
9331 cp_error (" perhaps you want `%T' for a constructor",
9332 current_class_name);
9333 dname = DECL_NAME (decl);
9334 name = IDENTIFIER_POINTER (dname);
9336 /* Avoid giving two errors for this. */
9337 IDENTIFIER_CLASS_VALUE (dname) = NULL_TREE;
9339 declspecs = temp_tree_cons (NULL_TREE, integer_type_node,
9340 declspecs);
9341 *next = dname;
9342 next = 0;
9343 break;
9345 default:
9346 cp_compiler_error ("`%D' as declarator", decl);
9347 return 0; /* We used to do a 155 abort here. */
9350 if (name == NULL)
9351 name = "type name";
9354 /* A function definition's declarator must have the form of
9355 a function declarator. */
9357 if (funcdef_flag && innermost_code != CALL_EXPR)
9358 return 0;
9360 if (((dname && IDENTIFIER_OPNAME_P (dname)) || flags == TYPENAME_FLAG)
9361 && innermost_code != CALL_EXPR
9362 && ! (ctype && declspecs == NULL_TREE))
9364 cp_error ("declaration of `%D' as non-function", dname);
9365 return void_type_node;
9368 /* Anything declared one level down from the top level
9369 must be one of the parameters of a function
9370 (because the body is at least two levels down). */
9372 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
9373 by not allowing C++ class definitions to specify their parameters
9374 with xdecls (must be spec.d in the parmlist).
9376 Since we now wait to push a class scope until we are sure that
9377 we are in a legitimate method context, we must set oldcname
9378 explicitly (since current_class_name is not yet alive).
9380 We also want to avoid calling this a PARM if it is in a namespace. */
9382 if (decl_context == NORMAL && !toplevel_bindings_p ())
9384 struct binding_level *b = current_binding_level;
9385 current_binding_level = b->level_chain;
9386 if (current_binding_level != 0 && toplevel_bindings_p ())
9387 decl_context = PARM;
9388 current_binding_level = b;
9391 /* Look through the decl specs and record which ones appear.
9392 Some typespecs are defined as built-in typenames.
9393 Others, the ones that are modifiers of other types,
9394 are represented by bits in SPECBITS: set the bits for
9395 the modifiers that appear. Storage class keywords are also in SPECBITS.
9397 If there is a typedef name or a type, store the type in TYPE.
9398 This includes builtin typedefs such as `int'.
9400 Set EXPLICIT_INT if the type is `int' or `char' and did not
9401 come from a user typedef.
9403 Set LONGLONG if `long' is mentioned twice.
9405 For C++, constructors and destructors have their own fast treatment. */
9407 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
9409 register int i;
9410 register tree id;
9412 /* Certain parse errors slip through. For example,
9413 `int class;' is not caught by the parser. Try
9414 weakly to recover here. */
9415 if (TREE_CODE (spec) != TREE_LIST)
9416 return 0;
9418 id = TREE_VALUE (spec);
9420 if (TREE_CODE (id) == IDENTIFIER_NODE)
9422 if (id == ridpointers[(int) RID_INT]
9423 || id == ridpointers[(int) RID_CHAR]
9424 || id == ridpointers[(int) RID_BOOL]
9425 || id == ridpointers[(int) RID_WCHAR])
9427 if (type)
9429 if (id == ridpointers[(int) RID_BOOL])
9430 error ("`bool' is now a keyword");
9431 else
9432 cp_error ("extraneous `%T' ignored", id);
9434 else
9436 if (id == ridpointers[(int) RID_INT])
9437 explicit_int = 1;
9438 else if (id == ridpointers[(int) RID_CHAR])
9439 explicit_char = 1;
9440 type = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (id));
9442 goto found;
9444 /* C++ aggregate types. */
9445 if (IDENTIFIER_HAS_TYPE_VALUE (id))
9447 if (type)
9448 cp_error ("multiple declarations `%T' and `%T'", type, id);
9449 else
9450 type = IDENTIFIER_TYPE_VALUE (id);
9451 goto found;
9454 for (i = (int) RID_FIRST_MODIFIER; i <= (int) RID_LAST_MODIFIER; i++)
9456 if (ridpointers[i] == id)
9458 if (i == (int) RID_LONG && RIDBIT_SETP (i, specbits))
9460 if (pedantic && ! in_system_header && warn_long_long)
9461 pedwarn ("ANSI C++ does not support `long long'");
9462 if (longlong)
9463 error ("`long long long' is too long for GCC");
9464 else
9465 longlong = 1;
9467 else if (RIDBIT_SETP (i, specbits))
9468 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
9469 RIDBIT_SET (i, specbits);
9470 goto found;
9474 /* C++ aggregate types. */
9475 else if (TREE_CODE (id) == TYPE_DECL || TREE_CODE (id) == TEMPLATE_DECL)
9477 if (type)
9478 cp_error ("multiple declarations `%T' and `%T'", type,
9479 TREE_TYPE (id));
9480 else
9482 type = TREE_TYPE (id);
9483 TREE_VALUE (spec) = type;
9485 goto found;
9487 if (type)
9488 error ("two or more data types in declaration of `%s'", name);
9489 else if (TREE_CODE (id) == IDENTIFIER_NODE)
9491 register tree t = lookup_name (id, 1);
9492 if (!t || TREE_CODE (t) != TYPE_DECL)
9493 error ("`%s' fails to be a typedef or built in type",
9494 IDENTIFIER_POINTER (id));
9495 else
9497 type = TREE_TYPE (t);
9498 #if 0
9499 /* See the code below that used this. */
9500 decl_machine_attr = DECL_MACHINE_ATTRIBUTES (id);
9501 #endif
9502 typedef_decl = t;
9505 else if (id != error_mark_node)
9506 /* Can't change CLASS nodes into RECORD nodes here! */
9507 type = id;
9509 found: ;
9512 typedef_type = type;
9514 /* No type at all: default to `int', and set DEFAULTED_INT
9515 because it was not a user-defined typedef. */
9517 if (type == NULL_TREE
9518 && (RIDBIT_SETP (RID_SIGNED, specbits)
9519 || RIDBIT_SETP (RID_UNSIGNED, specbits)
9520 || RIDBIT_SETP (RID_LONG, specbits)
9521 || RIDBIT_SETP (RID_SHORT, specbits)))
9523 /* These imply 'int'. */
9524 type = integer_type_node;
9525 defaulted_int = 1;
9528 if (type == NULL_TREE)
9530 explicit_int = -1;
9531 if (return_type == return_dtor)
9532 type = void_type_node;
9533 else if (return_type == return_ctor)
9534 type = build_pointer_type (ctor_return_type);
9535 else if (return_type == return_conversion)
9536 type = ctor_return_type;
9537 else
9539 /* We handle `main' specially here, because 'main () { }' is so
9540 common. With no options, it is allowed. With -Wreturn-type,
9541 it is a warning. It is only an error with -pedantic-errors. */
9542 int is_main = (funcdef_flag
9543 && MAIN_NAME_P (dname)
9544 && ctype == NULL_TREE
9545 && in_namespace == NULL_TREE
9546 && current_namespace == global_namespace);
9548 if (in_system_header || flag_ms_extensions)
9549 /* Allow it, sigh. */;
9550 else if (pedantic || ! is_main)
9551 cp_pedwarn ("ANSI C++ forbids declaration `%D' with no type",
9552 dname);
9553 else if (warn_return_type)
9554 cp_warning ("ANSI C++ forbids declaration `%D' with no type",
9555 dname);
9557 type = integer_type_node;
9560 else if (return_type == return_dtor)
9562 error ("return type specification for destructor invalid");
9563 type = void_type_node;
9565 else if (return_type == return_ctor)
9567 error ("return type specification for constructor invalid");
9568 type = build_pointer_type (ctor_return_type);
9570 else if (return_type == return_conversion)
9572 if (!same_type_p (type, ctor_return_type))
9573 cp_error ("operator `%T' declared to return `%T'",
9574 ctor_return_type, type);
9575 else
9576 cp_pedwarn ("return type specified for `operator %T'",
9577 ctor_return_type);
9579 type = ctor_return_type;
9582 ctype = NULL_TREE;
9584 /* Now process the modifiers that were specified
9585 and check for invalid combinations. */
9587 /* Long double is a special combination. */
9589 if (RIDBIT_SETP (RID_LONG, specbits)
9590 && TYPE_MAIN_VARIANT (type) == double_type_node)
9592 RIDBIT_RESET (RID_LONG, specbits);
9593 type = build_qualified_type (long_double_type_node,
9594 CP_TYPE_QUALS (type));
9597 /* Check all other uses of type modifiers. */
9599 if (RIDBIT_SETP (RID_UNSIGNED, specbits)
9600 || RIDBIT_SETP (RID_SIGNED, specbits)
9601 || RIDBIT_SETP (RID_LONG, specbits)
9602 || RIDBIT_SETP (RID_SHORT, specbits))
9604 int ok = 0;
9606 if (TREE_CODE (type) == REAL_TYPE)
9607 error ("short, signed or unsigned invalid for `%s'", name);
9608 else if (TREE_CODE (type) != INTEGER_TYPE)
9609 error ("long, short, signed or unsigned invalid for `%s'", name);
9610 else if (RIDBIT_SETP (RID_LONG, specbits)
9611 && RIDBIT_SETP (RID_SHORT, specbits))
9612 error ("long and short specified together for `%s'", name);
9613 else if ((RIDBIT_SETP (RID_LONG, specbits)
9614 || RIDBIT_SETP (RID_SHORT, specbits))
9615 && explicit_char)
9616 error ("long or short specified with char for `%s'", name);
9617 else if ((RIDBIT_SETP (RID_LONG, specbits)
9618 || RIDBIT_SETP (RID_SHORT, specbits))
9619 && TREE_CODE (type) == REAL_TYPE)
9620 error ("long or short specified with floating type for `%s'", name);
9621 else if (RIDBIT_SETP (RID_SIGNED, specbits)
9622 && RIDBIT_SETP (RID_UNSIGNED, specbits))
9623 error ("signed and unsigned given together for `%s'", name);
9624 else
9626 ok = 1;
9627 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
9629 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
9630 name);
9631 if (flag_pedantic_errors)
9632 ok = 0;
9636 /* Discard the type modifiers if they are invalid. */
9637 if (! ok)
9639 RIDBIT_RESET (RID_UNSIGNED, specbits);
9640 RIDBIT_RESET (RID_SIGNED, specbits);
9641 RIDBIT_RESET (RID_LONG, specbits);
9642 RIDBIT_RESET (RID_SHORT, specbits);
9643 longlong = 0;
9647 if (RIDBIT_SETP (RID_COMPLEX, specbits)
9648 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
9650 error ("complex invalid for `%s'", name);
9651 RIDBIT_RESET (RID_COMPLEX, specbits);
9654 /* Decide whether an integer type is signed or not.
9655 Optionally treat bitfields as signed by default. */
9656 if (RIDBIT_SETP (RID_UNSIGNED, specbits)
9657 /* [class.bit]
9659 It is implementation-defined whether a plain (neither
9660 explicitly signed or unsigned) char, short, int, or long
9661 bit-field is signed or unsigned.
9663 Naturally, we extend this to long long as well. Note that
9664 this does not include wchar_t. */
9665 || (bitfield && !flag_signed_bitfields
9666 && RIDBIT_NOTSETP (RID_SIGNED, specbits)
9667 /* A typedef for plain `int' without `signed' can be
9668 controlled just like plain `int', but a typedef for
9669 `signed int' cannot be so controlled. */
9670 && !(typedef_decl
9671 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
9672 && (TREE_CODE (type) == INTEGER_TYPE
9673 || TREE_CODE (type) == CHAR_TYPE)
9674 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
9676 if (longlong)
9677 type = long_long_unsigned_type_node;
9678 else if (RIDBIT_SETP (RID_LONG, specbits))
9679 type = long_unsigned_type_node;
9680 else if (RIDBIT_SETP (RID_SHORT, specbits))
9681 type = short_unsigned_type_node;
9682 else if (type == char_type_node)
9683 type = unsigned_char_type_node;
9684 else if (typedef_decl)
9685 type = unsigned_type (type);
9686 else
9687 type = unsigned_type_node;
9689 else if (RIDBIT_SETP (RID_SIGNED, specbits)
9690 && type == char_type_node)
9691 type = signed_char_type_node;
9692 else if (longlong)
9693 type = long_long_integer_type_node;
9694 else if (RIDBIT_SETP (RID_LONG, specbits))
9695 type = long_integer_type_node;
9696 else if (RIDBIT_SETP (RID_SHORT, specbits))
9697 type = short_integer_type_node;
9699 if (RIDBIT_SETP (RID_COMPLEX, specbits))
9701 /* If we just have "complex", it is equivalent to
9702 "complex double", but if any modifiers at all are specified it is
9703 the complex form of TYPE. E.g, "complex short" is
9704 "complex short int". */
9706 if (defaulted_int && ! longlong
9707 && ! (RIDBIT_SETP (RID_LONG, specbits)
9708 || RIDBIT_SETP (RID_SHORT, specbits)
9709 || RIDBIT_SETP (RID_SIGNED, specbits)
9710 || RIDBIT_SETP (RID_UNSIGNED, specbits)))
9711 type = complex_double_type_node;
9712 else if (type == integer_type_node)
9713 type = complex_integer_type_node;
9714 else if (type == float_type_node)
9715 type = complex_float_type_node;
9716 else if (type == double_type_node)
9717 type = complex_double_type_node;
9718 else if (type == long_double_type_node)
9719 type = complex_long_double_type_node;
9720 else
9721 type = build_complex_type (type);
9724 if (return_type == return_conversion
9725 && (RIDBIT_SETP (RID_CONST, specbits)
9726 || RIDBIT_SETP (RID_VOLATILE, specbits)
9727 || RIDBIT_SETP (RID_RESTRICT, specbits)))
9728 cp_error ("qualifiers are not allowed on declaration of `operator %T'",
9729 ctor_return_type);
9731 /* Set CONSTP if this declaration is `const', whether by
9732 explicit specification or via a typedef.
9733 Likewise for VOLATILEP. */
9735 constp = !! RIDBIT_SETP (RID_CONST, specbits) + CP_TYPE_CONST_P (type);
9736 restrictp =
9737 !! RIDBIT_SETP (RID_RESTRICT, specbits) + CP_TYPE_RESTRICT_P (type);
9738 volatilep =
9739 !! RIDBIT_SETP (RID_VOLATILE, specbits) + CP_TYPE_VOLATILE_P (type);
9740 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
9741 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
9742 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
9743 type = cp_build_qualified_type (type, type_quals);
9744 staticp = 0;
9745 inlinep = !! RIDBIT_SETP (RID_INLINE, specbits);
9746 virtualp = RIDBIT_SETP (RID_VIRTUAL, specbits);
9747 RIDBIT_RESET (RID_VIRTUAL, specbits);
9748 explicitp = RIDBIT_SETP (RID_EXPLICIT, specbits) != 0;
9749 RIDBIT_RESET (RID_EXPLICIT, specbits);
9751 if (RIDBIT_SETP (RID_STATIC, specbits))
9752 staticp = 1 + (decl_context == FIELD);
9754 if (virtualp && staticp == 2)
9756 cp_error ("member `%D' cannot be declared both virtual and static",
9757 dname);
9758 staticp = 0;
9760 friendp = RIDBIT_SETP (RID_FRIEND, specbits);
9761 RIDBIT_RESET (RID_FRIEND, specbits);
9763 /* $7.1.2, Function specifiers */
9764 if (friendp && explicitp)
9765 error ("only declarations of constructors can be `explicit'");
9767 if (RIDBIT_SETP (RID_MUTABLE, specbits))
9769 if (decl_context == PARM)
9771 error ("non-member `%s' cannot be declared `mutable'", name);
9772 RIDBIT_RESET (RID_MUTABLE, specbits);
9774 else if (friendp || decl_context == TYPENAME)
9776 error ("non-object member `%s' cannot be declared `mutable'", name);
9777 RIDBIT_RESET (RID_MUTABLE, specbits);
9781 /* Warn if two storage classes are given. Default to `auto'. */
9783 if (RIDBIT_ANY_SET (specbits))
9785 if (RIDBIT_SETP (RID_STATIC, specbits)) nclasses++;
9786 if (RIDBIT_SETP (RID_EXTERN, specbits)) nclasses++;
9787 if (decl_context == PARM && nclasses > 0)
9788 error ("storage class specifiers invalid in parameter declarations");
9789 if (RIDBIT_SETP (RID_TYPEDEF, specbits))
9791 if (decl_context == PARM)
9792 error ("typedef declaration invalid in parameter declaration");
9793 nclasses++;
9795 if (RIDBIT_SETP (RID_AUTO, specbits)) nclasses++;
9796 if (RIDBIT_SETP (RID_REGISTER, specbits)) nclasses++;
9799 /* Give error if `virtual' is used outside of class declaration. */
9800 if (virtualp
9801 && (current_class_name == NULL_TREE || decl_context != FIELD))
9803 error ("virtual outside class declaration");
9804 virtualp = 0;
9806 if (current_class_name == NULL_TREE && RIDBIT_SETP (RID_MUTABLE, specbits))
9808 error ("only members can be declared mutable");
9809 RIDBIT_RESET (RID_MUTABLE, specbits);
9812 /* Static anonymous unions are dealt with here. */
9813 if (staticp && decl_context == TYPENAME
9814 && TREE_CODE (declspecs) == TREE_LIST
9815 && ANON_AGGR_TYPE_P (TREE_VALUE (declspecs)))
9816 decl_context = FIELD;
9818 /* Warn about storage classes that are invalid for certain
9819 kinds of declarations (parameters, typenames, etc.). */
9821 if (nclasses > 1)
9822 error ("multiple storage classes in declaration of `%s'", name);
9823 else if (decl_context != NORMAL && nclasses > 0)
9825 if ((decl_context == PARM || decl_context == CATCHPARM)
9826 && (RIDBIT_SETP (RID_REGISTER, specbits)
9827 || RIDBIT_SETP (RID_AUTO, specbits)))
9829 else if (RIDBIT_SETP (RID_TYPEDEF, specbits))
9831 else if (decl_context == FIELD
9832 /* C++ allows static class elements */
9833 && RIDBIT_SETP (RID_STATIC, specbits))
9834 /* C++ also allows inlines and signed and unsigned elements,
9835 but in those cases we don't come in here. */
9837 else
9839 if (decl_context == FIELD)
9841 tree tmp = NULL_TREE;
9842 register int op = 0;
9844 if (declarator)
9846 /* Avoid trying to get an operand off an identifier node. */
9847 if (TREE_CODE (declarator) == IDENTIFIER_NODE)
9848 tmp = declarator;
9849 else
9850 tmp = TREE_OPERAND (declarator, 0);
9851 op = IDENTIFIER_OPNAME_P (tmp);
9853 error ("storage class specified for %s `%s'",
9854 op ? "member operator" : "field",
9855 op ? operator_name_string (tmp) : name);
9857 else
9858 error (((decl_context == PARM || decl_context == CATCHPARM)
9859 ? "storage class specified for parameter `%s'"
9860 : "storage class specified for typename"), name);
9861 RIDBIT_RESET (RID_REGISTER, specbits);
9862 RIDBIT_RESET (RID_AUTO, specbits);
9863 RIDBIT_RESET (RID_EXTERN, specbits);
9866 else if (RIDBIT_SETP (RID_EXTERN, specbits) && initialized && !funcdef_flag)
9868 if (toplevel_bindings_p ())
9870 /* It's common practice (and completely valid) to have a const
9871 be initialized and declared extern. */
9872 if (!(type_quals & TYPE_QUAL_CONST))
9873 warning ("`%s' initialized and declared `extern'", name);
9875 else
9876 error ("`%s' has both `extern' and initializer", name);
9878 else if (RIDBIT_SETP (RID_EXTERN, specbits) && funcdef_flag
9879 && ! toplevel_bindings_p ())
9880 error ("nested function `%s' declared `extern'", name);
9881 else if (toplevel_bindings_p ())
9883 if (RIDBIT_SETP (RID_AUTO, specbits))
9884 error ("top-level declaration of `%s' specifies `auto'", name);
9887 if (nclasses > 0 && friendp)
9888 error ("storage class specifiers invalid in friend function declarations");
9890 /* Now figure out the structure of the declarator proper.
9891 Descend through it, creating more complex types, until we reach
9892 the declared identifier (or NULL_TREE, in an absolute declarator). */
9894 inner_attrs = NULL_TREE;
9895 ignore_attrs = 0;
9897 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE
9898 && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
9900 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
9901 an INDIRECT_REF (for *...),
9902 a CALL_EXPR (for ...(...)),
9903 an identifier (for the name being declared)
9904 or a null pointer (for the place in an absolute declarator
9905 where the name was omitted).
9906 For the last two cases, we have just exited the loop.
9908 For C++ it could also be
9909 a SCOPE_REF (for class :: ...). In this case, we have converted
9910 sensible names to types, and those are the values we use to
9911 qualify the member name.
9912 an ADDR_EXPR (for &...),
9913 a BIT_NOT_EXPR (for destructors)
9915 At this point, TYPE is the type of elements of an array,
9916 or for a function to return, or for a pointer to point to.
9917 After this sequence of ifs, TYPE is the type of the
9918 array or function or pointer, and DECLARATOR has had its
9919 outermost layer removed. */
9921 if (type == error_mark_node)
9923 if (TREE_CODE (declarator) == SCOPE_REF)
9924 declarator = TREE_OPERAND (declarator, 1);
9925 else
9926 declarator = TREE_OPERAND (declarator, 0);
9927 continue;
9929 if (quals != NULL_TREE
9930 && (declarator == NULL_TREE
9931 || TREE_CODE (declarator) != SCOPE_REF))
9933 if (ctype == NULL_TREE && TREE_CODE (type) == METHOD_TYPE)
9934 ctype = TYPE_METHOD_BASETYPE (type);
9935 if (ctype != NULL_TREE)
9937 tree dummy = build_decl (TYPE_DECL, NULL_TREE, type);
9938 ctype = grok_method_quals (ctype, dummy, quals);
9939 type = TREE_TYPE (dummy);
9940 quals = NULL_TREE;
9944 /* See the comment for the TREE_LIST case, below. */
9945 if (ignore_attrs)
9946 ignore_attrs = 0;
9947 else if (inner_attrs)
9949 decl_attributes (type, inner_attrs, NULL_TREE);
9950 inner_attrs = NULL_TREE;
9953 switch (TREE_CODE (declarator))
9955 case TREE_LIST:
9957 /* We encode a declarator with embedded attributes using
9958 a TREE_LIST. The attributes apply to the declarator
9959 directly inside them, so we have to skip an iteration
9960 before applying them to the type. If the declarator just
9961 inside is the declarator-id, we apply the attrs to the
9962 decl itself. */
9963 inner_attrs = TREE_PURPOSE (declarator);
9964 ignore_attrs = 1;
9965 declarator = TREE_VALUE (declarator);
9967 break;
9969 case ARRAY_REF:
9971 register tree itype = NULL_TREE;
9972 register tree size = TREE_OPERAND (declarator, 1);
9973 /* The index is a signed object `sizetype' bits wide. */
9974 tree index_type = signed_type (sizetype);
9976 declarator = TREE_OPERAND (declarator, 0);
9978 /* Check for some types that there cannot be arrays of. */
9980 if (TREE_CODE (type) == VOID_TYPE)
9982 cp_error ("declaration of `%D' as array of voids", dname);
9983 type = error_mark_node;
9986 if (TREE_CODE (type) == FUNCTION_TYPE)
9988 cp_error ("declaration of `%D' as array of functions", dname);
9989 type = error_mark_node;
9992 /* ARM $8.4.3: Since you can't have a pointer to a reference,
9993 you can't have arrays of references. If we allowed them,
9994 then we'd be saying x[i] is valid for an array x, but
9995 then you'd have to ask: what does `*(x + i)' mean? */
9996 if (TREE_CODE (type) == REFERENCE_TYPE)
9998 if (decl_context == TYPENAME)
9999 cp_error ("cannot make arrays of references");
10000 else
10001 cp_error ("declaration of `%D' as array of references",
10002 dname);
10003 type = error_mark_node;
10006 if (TREE_CODE (type) == OFFSET_TYPE)
10008 cp_error ("declaration of `%D' as array of data members",
10009 dname);
10010 type = error_mark_node;
10013 if (TREE_CODE (type) == METHOD_TYPE)
10015 cp_error ("declaration of `%D' as array of function members",
10016 dname);
10017 type = error_mark_node;
10020 if (size == error_mark_node)
10021 type = error_mark_node;
10022 else if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
10024 /* [dcl.array]
10026 the constant expressions that specify the bounds of
10027 the arrays can be omitted only for the first member
10028 of the sequence. */
10029 cp_error ("declaration of `%D' as multidimensional array",
10030 dname);
10031 cp_error ("must have bounds for all dimensions except the first");
10032 type = error_mark_node;
10035 if (type == error_mark_node)
10036 continue;
10038 /* VC++ spells a zero-sized array with []. */
10039 if (size == NULL_TREE && decl_context == FIELD && ! staticp
10040 && ! RIDBIT_SETP (RID_TYPEDEF, specbits))
10041 size = integer_zero_node;
10043 if (size)
10045 /* Must suspend_momentary here because the index
10046 type may need to live until the end of the function.
10047 For example, it is used in the declaration of a
10048 variable which requires destructing at the end of
10049 the function; then build_vec_delete will need this
10050 value. */
10051 int yes = suspend_momentary ();
10052 /* Might be a cast. */
10053 if (TREE_CODE (size) == NOP_EXPR
10054 && TREE_TYPE (size) == TREE_TYPE (TREE_OPERAND (size, 0)))
10055 size = TREE_OPERAND (size, 0);
10056 if (TREE_READONLY_DECL_P (size))
10057 size = decl_constant_value (size);
10059 /* If this involves a template parameter, it will be a
10060 constant at instantiation time, but we don't know
10061 what the value is yet. Even if no template
10062 parameters are involved, we may an expression that
10063 is not a constant; we don't even simplify `1 + 2'
10064 when processing a template. */
10065 if (processing_template_decl)
10067 /* Resolve a qualified reference to an enumerator or
10068 static const data member of ours. */
10069 if (TREE_CODE (size) == SCOPE_REF
10070 && TREE_OPERAND (size, 0) == current_class_type)
10072 tree t = lookup_field (current_class_type,
10073 TREE_OPERAND (size, 1), 0, 0);
10074 if (t)
10075 size = t;
10078 itype = build_index_type (build_min
10079 (MINUS_EXPR, sizetype, size, integer_one_node));
10080 goto dont_grok_size;
10083 if (TREE_CODE (TREE_TYPE (size)) != INTEGER_TYPE
10084 && TREE_CODE (TREE_TYPE (size)) != ENUMERAL_TYPE
10085 && TREE_CODE (TREE_TYPE (size)) != BOOLEAN_TYPE)
10087 cp_error ("size of array `%D' has non-integer type",
10088 dname);
10089 size = integer_one_node;
10091 if (pedantic && integer_zerop (size))
10092 cp_pedwarn ("ANSI C++ forbids zero-size array `%D'", dname);
10093 if (TREE_CONSTANT (size))
10095 int old_flag_pedantic_errors = flag_pedantic_errors;
10096 int old_pedantic = pedantic;
10097 pedantic = flag_pedantic_errors = 1;
10098 /* Always give overflow errors on array subscripts. */
10099 constant_expression_warning (size);
10100 pedantic = old_pedantic;
10101 flag_pedantic_errors = old_flag_pedantic_errors;
10102 if (INT_CST_LT (size, integer_zero_node))
10104 cp_error ("size of array `%D' is negative", dname);
10105 size = integer_one_node;
10108 else
10110 if (pedantic)
10112 if (dname)
10113 cp_pedwarn ("ANSI C++ forbids variable-size array `%D'",
10114 dname);
10115 else
10116 cp_pedwarn ("ANSI C++ forbids variable-size array");
10120 itype
10121 = fold (build_binary_op (MINUS_EXPR,
10122 cp_convert (index_type, size),
10123 cp_convert (index_type,
10124 integer_one_node)));
10125 if (! TREE_CONSTANT (itype))
10126 itype = variable_size (itype);
10127 else if (TREE_OVERFLOW (itype))
10129 error ("overflow in array dimension");
10130 TREE_OVERFLOW (itype) = 0;
10133 /* If we're a parm, we need to have a permanent type so
10134 mangling checks for re-use will work right. If both the
10135 element and index types are permanent, the array type
10136 will be, too. */
10137 if (decl_context == PARM
10138 && allocation_temporary_p () && TREE_PERMANENT (type))
10140 push_obstacks (&permanent_obstack, &permanent_obstack);
10141 itype = build_index_type (itype);
10142 pop_obstacks ();
10144 else
10145 itype = build_index_type (itype);
10147 dont_grok_size:
10148 resume_momentary (yes);
10151 type = build_cplus_array_type (type, itype);
10152 ctype = NULL_TREE;
10154 break;
10156 case CALL_EXPR:
10158 tree arg_types;
10159 int funcdecl_p;
10160 tree inner_parms = CALL_DECLARATOR_PARMS (declarator);
10161 tree inner_decl = TREE_OPERAND (declarator, 0);
10163 /* Declaring a function type.
10164 Make sure we have a valid type for the function to return. */
10166 /* We now know that the TYPE_QUALS don't apply to the
10167 decl, but to its return type. */
10168 type_quals = TYPE_UNQUALIFIED;
10170 /* Warn about some types functions can't return. */
10172 if (TREE_CODE (type) == FUNCTION_TYPE)
10174 error ("`%s' declared as function returning a function", name);
10175 type = integer_type_node;
10177 if (TREE_CODE (type) == ARRAY_TYPE)
10179 error ("`%s' declared as function returning an array", name);
10180 type = integer_type_node;
10183 if (inner_decl && TREE_CODE (inner_decl) == SCOPE_REF)
10184 inner_decl = TREE_OPERAND (inner_decl, 1);
10186 if (inner_decl && TREE_CODE (inner_decl) == TEMPLATE_ID_EXPR)
10187 inner_decl = dname;
10189 /* Pick up type qualifiers which should be applied to `this'. */
10190 quals = CALL_DECLARATOR_QUALS (declarator);
10192 /* Pick up the exception specifications. */
10193 raises = CALL_DECLARATOR_EXCEPTION_SPEC (declarator);
10195 /* Say it's a definition only for the CALL_EXPR
10196 closest to the identifier. */
10197 funcdecl_p
10198 = inner_decl
10199 && (TREE_CODE (inner_decl) == IDENTIFIER_NODE
10200 || TREE_CODE (inner_decl) == TEMPLATE_ID_EXPR
10201 || TREE_CODE (inner_decl) == BIT_NOT_EXPR);
10203 if (ctype == NULL_TREE
10204 && decl_context == FIELD
10205 && funcdecl_p
10206 && (friendp == 0 || dname == current_class_name))
10207 ctype = current_class_type;
10209 if (ctype && return_type == return_conversion)
10210 TYPE_HAS_CONVERSION (ctype) = 1;
10211 if (ctype && constructor_name (ctype) == dname)
10213 /* We are within a class's scope. If our declarator name
10214 is the same as the class name, and we are defining
10215 a function, then it is a constructor/destructor, and
10216 therefore returns a void type. */
10218 if (flags == DTOR_FLAG)
10220 /* ANSI C++ June 5 1992 WP 12.4.1. A destructor may
10221 not be declared const or volatile. A destructor
10222 may not be static. */
10223 if (staticp == 2)
10224 error ("destructor cannot be static member function");
10225 if (quals)
10227 cp_error ("destructors may not be `%s'",
10228 IDENTIFIER_POINTER (TREE_VALUE (quals)));
10229 quals = NULL_TREE;
10231 if (decl_context == FIELD)
10233 if (! member_function_or_else (ctype, current_class_type,
10234 "destructor for alien class `%s' cannot be a member"))
10235 return void_type_node;
10238 else /* It's a constructor. */
10240 if (explicitp == 1)
10241 explicitp = 2;
10242 /* ANSI C++ June 5 1992 WP 12.1.2. A constructor may
10243 not be declared const or volatile. A constructor may
10244 not be virtual. A constructor may not be static. */
10245 if (staticp == 2)
10246 error ("constructor cannot be static member function");
10247 if (virtualp)
10249 pedwarn ("constructors cannot be declared virtual");
10250 virtualp = 0;
10252 if (quals)
10254 cp_error ("constructors may not be `%s'",
10255 IDENTIFIER_POINTER (TREE_VALUE (quals)));
10256 quals = NULL_TREE;
10259 RID_BIT_TYPE tmp_bits;
10260 bcopy ((void*)&specbits, (void*)&tmp_bits, sizeof (RID_BIT_TYPE));
10261 RIDBIT_RESET (RID_INLINE, tmp_bits);
10262 RIDBIT_RESET (RID_STATIC, tmp_bits);
10263 if (RIDBIT_ANY_SET (tmp_bits))
10264 error ("return value type specifier for constructor ignored");
10266 type = build_pointer_type (ctype);
10267 if (decl_context == FIELD)
10269 if (! member_function_or_else (ctype, current_class_type,
10270 "constructor for alien class `%s' cannot be member"))
10271 return void_type_node;
10272 TYPE_HAS_CONSTRUCTOR (ctype) = 1;
10273 if (return_type != return_ctor)
10274 return NULL_TREE;
10277 if (decl_context == FIELD)
10278 staticp = 0;
10280 else if (friendp)
10282 if (initialized)
10283 error ("can't initialize friend function `%s'", name);
10284 if (virtualp)
10286 /* Cannot be both friend and virtual. */
10287 error ("virtual functions cannot be friends");
10288 RIDBIT_RESET (RID_FRIEND, specbits);
10289 friendp = 0;
10291 if (decl_context == NORMAL)
10292 error ("friend declaration not in class definition");
10293 if (current_function_decl && funcdef_flag)
10294 cp_error ("can't define friend function `%s' in a local class definition",
10295 name);
10298 /* Construct the function type and go to the next
10299 inner layer of declarator. */
10301 declarator = TREE_OPERAND (declarator, 0);
10303 /* FIXME: This is where default args should be fully
10304 processed. */
10306 arg_types = grokparms (inner_parms, funcdecl_p ? funcdef_flag : 0);
10308 if (declarator && flags == DTOR_FLAG)
10310 /* A destructor declared in the body of a class will
10311 be represented as a BIT_NOT_EXPR. But, we just
10312 want the underlying IDENTIFIER. */
10313 if (TREE_CODE (declarator) == BIT_NOT_EXPR)
10314 declarator = TREE_OPERAND (declarator, 0);
10316 if (strict_prototype == 0 && arg_types == NULL_TREE)
10317 arg_types = void_list_node;
10318 else if (arg_types == NULL_TREE
10319 || arg_types != void_list_node)
10321 cp_error ("destructors may not have parameters");
10322 arg_types = void_list_node;
10323 last_function_parms = NULL_TREE;
10327 /* ANSI says that `const int foo ();'
10328 does not make the function foo const. */
10329 type = build_function_type (type, arg_types);
10332 tree t;
10333 for (t = arg_types; t; t = TREE_CHAIN (t))
10334 if (TREE_PURPOSE (t)
10335 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
10337 add_defarg_fn (type);
10338 break;
10342 break;
10344 case ADDR_EXPR:
10345 case INDIRECT_REF:
10346 /* Filter out pointers-to-references and references-to-references.
10347 We can get these if a TYPE_DECL is used. */
10349 if (TREE_CODE (type) == REFERENCE_TYPE)
10351 error ("cannot declare %s to references",
10352 TREE_CODE (declarator) == ADDR_EXPR
10353 ? "references" : "pointers");
10354 declarator = TREE_OPERAND (declarator, 0);
10355 continue;
10358 if (TREE_CODE (type) == OFFSET_TYPE
10359 && (TREE_CODE (TREE_TYPE (type)) == VOID_TYPE
10360 || TREE_CODE (TREE_TYPE (type)) == REFERENCE_TYPE))
10362 cp_error ("cannot declare pointer to `%#T' member",
10363 TREE_TYPE (type));
10364 type = TREE_TYPE (type);
10367 /* Merge any constancy or volatility into the target type
10368 for the pointer. */
10370 /* We now know that the TYPE_QUALS don't apply to the decl,
10371 but to the target of the pointer. */
10372 type_quals = TYPE_UNQUALIFIED;
10374 if (TREE_CODE (declarator) == ADDR_EXPR)
10376 if (TREE_CODE (type) == VOID_TYPE)
10377 error ("invalid type: `void &'");
10378 else
10379 type = build_reference_type (type);
10381 else if (TREE_CODE (type) == METHOD_TYPE)
10382 type = build_ptrmemfunc_type (build_pointer_type (type));
10383 else
10384 type = build_pointer_type (type);
10386 /* Process a list of type modifier keywords (such as
10387 const or volatile) that were given inside the `*' or `&'. */
10389 if (TREE_TYPE (declarator))
10391 register tree typemodlist;
10392 int erred = 0;
10394 constp = 0;
10395 volatilep = 0;
10396 restrictp = 0;
10397 for (typemodlist = TREE_TYPE (declarator); typemodlist;
10398 typemodlist = TREE_CHAIN (typemodlist))
10400 tree qualifier = TREE_VALUE (typemodlist);
10402 if (qualifier == ridpointers[(int) RID_CONST])
10403 constp++;
10404 else if (qualifier == ridpointers[(int) RID_VOLATILE])
10405 volatilep++;
10406 else if (qualifier == ridpointers[(int) RID_RESTRICT])
10407 restrictp++;
10408 else if (!erred)
10410 erred = 1;
10411 error ("invalid type modifier within pointer declarator");
10414 if (constp > 1)
10415 pedwarn ("duplicate `const'");
10416 if (volatilep > 1)
10417 pedwarn ("duplicate `volatile'");
10418 if (restrictp > 1)
10419 pedwarn ("duplicate `restrict'");
10421 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
10422 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
10423 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
10424 if (TREE_CODE (declarator) == ADDR_EXPR
10425 && (constp || volatilep))
10427 if (constp)
10428 pedwarn ("discarding `const' applied to a reference");
10429 if (volatilep)
10430 pedwarn ("discarding `volatile' applied to a reference");
10431 type_quals &= ~(TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
10433 type = cp_build_qualified_type (type, type_quals);
10435 declarator = TREE_OPERAND (declarator, 0);
10436 ctype = NULL_TREE;
10437 break;
10439 case SCOPE_REF:
10441 /* We have converted type names to NULL_TREE if the
10442 name was bogus, or to a _TYPE node, if not.
10444 The variable CTYPE holds the type we will ultimately
10445 resolve to. The code here just needs to build
10446 up appropriate member types. */
10447 tree sname = TREE_OPERAND (declarator, 1);
10448 tree t;
10450 /* Destructors can have their visibilities changed as well. */
10451 if (TREE_CODE (sname) == BIT_NOT_EXPR)
10452 sname = TREE_OPERAND (sname, 0);
10454 if (TREE_COMPLEXITY (declarator) == 0)
10455 /* This needs to be here, in case we are called
10456 multiple times. */ ;
10457 else if (TREE_COMPLEXITY (declarator) == -1)
10458 /* Namespace member. */
10459 pop_decl_namespace ();
10460 else if (friendp && (TREE_COMPLEXITY (declarator) < 2))
10461 /* Don't fall out into global scope. Hides real bug? --eichin */ ;
10462 else if (! IS_AGGR_TYPE_CODE
10463 (TREE_CODE (TREE_OPERAND (declarator, 0))))
10465 else if (TREE_COMPLEXITY (declarator) == current_class_depth)
10467 /* Resolve any TYPENAME_TYPEs from the decl-specifier-seq
10468 that refer to ctype. They couldn't be resolved earlier
10469 because we hadn't pushed into the class yet.
10470 Example: resolve 'B<T>::type' in
10471 'B<typename B<T>::type> B<T>::f () { }'. */
10472 if (current_template_parms
10473 && uses_template_parms (type)
10474 && uses_template_parms (current_class_type))
10476 tree args = current_template_args ();
10477 type = tsubst (type, args, /*complain=*/1, NULL_TREE);
10480 /* This pop_nested_class corresponds to the
10481 push_nested_class used to push into class scope for
10482 parsing the argument list of a function decl, in
10483 qualified_id. */
10484 pop_nested_class ();
10485 TREE_COMPLEXITY (declarator) = current_class_depth;
10487 else
10488 my_friendly_abort (16);
10490 if (TREE_OPERAND (declarator, 0) == NULL_TREE)
10492 /* We had a reference to a global decl, or
10493 perhaps we were given a non-aggregate typedef,
10494 in which case we cleared this out, and should just
10495 keep going as though it wasn't there. */
10496 declarator = sname;
10497 continue;
10499 ctype = TREE_OPERAND (declarator, 0);
10501 t = ctype;
10502 while (t != NULL_TREE && CLASS_TYPE_P (t))
10504 if (CLASSTYPE_TEMPLATE_INFO (t) &&
10505 !CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
10506 template_count += 1;
10507 t = TYPE_MAIN_DECL (t);
10508 if (DECL_LANG_SPECIFIC (t))
10509 t = DECL_CLASS_CONTEXT (t);
10510 else
10511 t = NULL_TREE;
10514 if (sname == NULL_TREE)
10515 goto done_scoping;
10517 if (TREE_CODE (sname) == IDENTIFIER_NODE)
10519 /* This is the `standard' use of the scoping operator:
10520 basetype :: member . */
10522 if (ctype == current_class_type)
10524 /* class A {
10525 void A::f ();
10528 Is this ill-formed? */
10530 if (pedantic)
10531 cp_pedwarn ("extra qualification `%T::' on member `%s' ignored",
10532 ctype, name);
10534 else if (TREE_CODE (type) == FUNCTION_TYPE)
10536 if (current_class_type == NULL_TREE
10537 || friendp)
10538 type = build_cplus_method_type (ctype, TREE_TYPE (type),
10539 TYPE_ARG_TYPES (type));
10540 else
10542 cp_error ("cannot declare member function `%T::%s' within `%T'",
10543 ctype, name, current_class_type);
10544 return void_type_node;
10547 else if (RIDBIT_SETP (RID_TYPEDEF, specbits)
10548 || TYPE_SIZE (complete_type (ctype)) != NULL_TREE)
10550 /* Have to move this code elsewhere in this function.
10551 this code is used for i.e., typedef int A::M; M *pm;
10553 It is? How? jason 10/2/94 */
10555 if (current_class_type)
10557 cp_error ("cannot declare member `%T::%s' within `%T'",
10558 ctype, name, current_class_type);
10559 return void_type_node;
10561 type = build_offset_type (ctype, type);
10563 else if (uses_template_parms (ctype))
10565 if (TREE_CODE (type) == FUNCTION_TYPE)
10566 type
10567 = build_cplus_method_type (ctype, TREE_TYPE (type),
10568 TYPE_ARG_TYPES (type));
10570 else
10572 cp_error ("structure `%T' not yet defined", ctype);
10573 return error_mark_node;
10576 declarator = sname;
10578 else if (TREE_CODE (sname) == SCOPE_REF)
10579 my_friendly_abort (17);
10580 else
10582 done_scoping:
10583 declarator = TREE_OPERAND (declarator, 1);
10584 if (declarator && TREE_CODE (declarator) == CALL_EXPR)
10585 /* In this case, we will deal with it later. */
10587 else
10589 if (TREE_CODE (type) == FUNCTION_TYPE)
10590 type = build_cplus_method_type (ctype, TREE_TYPE (type),
10591 TYPE_ARG_TYPES (type));
10592 else
10593 type = build_offset_type (ctype, type);
10597 break;
10599 case BIT_NOT_EXPR:
10600 declarator = TREE_OPERAND (declarator, 0);
10601 break;
10603 case RECORD_TYPE:
10604 case UNION_TYPE:
10605 case ENUMERAL_TYPE:
10606 declarator = NULL_TREE;
10607 break;
10609 case ERROR_MARK:
10610 declarator = NULL_TREE;
10611 break;
10613 default:
10614 my_friendly_abort (158);
10618 /* See the comment for the TREE_LIST case, above. */
10619 if (inner_attrs)
10621 if (! ignore_attrs)
10622 decl_attributes (type, inner_attrs, NULL_TREE);
10623 else if (attrlist)
10624 TREE_VALUE (attrlist) = chainon (inner_attrs, TREE_VALUE (attrlist));
10625 else
10626 attrlist = build_decl_list (NULL_TREE, inner_attrs);
10629 /* Now TYPE has the actual type. */
10631 if (explicitp == 1)
10633 error ("only constructors can be declared `explicit'");
10634 explicitp = 0;
10637 if (RIDBIT_SETP (RID_MUTABLE, specbits))
10639 if (type_quals & TYPE_QUAL_CONST)
10641 error ("const `%s' cannot be declared `mutable'", name);
10642 RIDBIT_RESET (RID_MUTABLE, specbits);
10644 else if (staticp)
10646 error ("static `%s' cannot be declared `mutable'", name);
10647 RIDBIT_RESET (RID_MUTABLE, specbits);
10651 if (declarator == NULL_TREE
10652 || TREE_CODE (declarator) == IDENTIFIER_NODE
10653 || (TREE_CODE (declarator) == TEMPLATE_ID_EXPR
10654 && (TREE_CODE (type) == FUNCTION_TYPE
10655 || TREE_CODE (type) == METHOD_TYPE)))
10656 /* OK */;
10657 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
10659 cp_error ("template-id `%D' used as a declarator", declarator);
10660 declarator = dname;
10662 else
10663 /* Unexpected declarator format. */
10664 my_friendly_abort (990210);
10666 /* If this is declaring a typedef name, return a TYPE_DECL. */
10668 if (RIDBIT_SETP (RID_TYPEDEF, specbits) && decl_context != TYPENAME)
10670 tree decl;
10672 /* Note that the grammar rejects storage classes
10673 in typenames, fields or parameters. */
10674 if (current_lang_name == lang_name_java)
10675 TYPE_FOR_JAVA (type) = 1;
10677 if (decl_context == FIELD)
10679 if (declarator == constructor_name (current_class_type))
10680 cp_pedwarn ("ANSI C++ forbids nested type `%D' with same name as enclosing class",
10681 declarator);
10682 decl = build_lang_decl (TYPE_DECL, declarator, type);
10684 else
10686 /* Make sure this typedef lives as long as its type,
10687 since it might be used as a template parameter. */
10688 if (type != error_mark_node)
10689 push_obstacks (TYPE_OBSTACK (type), TYPE_OBSTACK (type));
10690 if (processing_template_decl)
10691 decl = build_lang_decl (TYPE_DECL, declarator, type);
10692 else
10693 decl = build_decl (TYPE_DECL, declarator, type);
10694 if (type != error_mark_node)
10695 pop_obstacks ();
10698 /* If the user declares "typedef struct {...} foo" then the
10699 struct will have an anonymous name. Fill that name in now.
10700 Nothing can refer to it, so nothing needs know about the name
10701 change. */
10702 if (type != error_mark_node
10703 && TYPE_NAME (type)
10704 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
10705 && ANON_AGGRNAME_P (TYPE_IDENTIFIER (type))
10706 && CP_TYPE_QUALS (type) == TYPE_UNQUALIFIED)
10708 tree oldname = TYPE_NAME (type);
10709 tree t;
10711 /* Replace the anonymous name with the real name everywhere. */
10712 lookup_tag_reverse (type, declarator);
10713 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
10714 if (TYPE_NAME (t) == oldname)
10715 TYPE_NAME (t) = decl;
10717 if (TYPE_LANG_SPECIFIC (type))
10718 TYPE_WAS_ANONYMOUS (type) = 1;
10720 /* If this is a typedef within a template class, the nested
10721 type is a (non-primary) template. The name for the
10722 template needs updating as well. */
10723 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
10724 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
10725 = TYPE_IDENTIFIER (type);
10727 /* XXX Temporarily set the scope.
10728 When returning, start_decl expects it as NULL_TREE,
10729 and will then then set it using pushdecl. */
10730 my_friendly_assert (DECL_CONTEXT (decl) == NULL_TREE, 980404);
10731 if (current_class_type)
10732 DECL_CONTEXT (decl) = current_class_type;
10733 else
10734 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
10736 DECL_ASSEMBLER_NAME (decl) = DECL_NAME (decl);
10737 DECL_ASSEMBLER_NAME (decl)
10738 = get_identifier (build_overload_name (type, 1, 1));
10739 DECL_CONTEXT (decl) = NULL_TREE;
10741 /* FIXME remangle member functions; member functions of a
10742 type with external linkage have external linkage. */
10745 if (TREE_CODE (type) == OFFSET_TYPE || TREE_CODE (type) == METHOD_TYPE)
10747 cp_error_at ("typedef name may not be class-qualified", decl);
10748 return NULL_TREE;
10750 else if (quals)
10752 if (ctype == NULL_TREE)
10754 if (TREE_CODE (type) != METHOD_TYPE)
10755 cp_error_at ("invalid type qualifier for non-method type", decl);
10756 else
10757 ctype = TYPE_METHOD_BASETYPE (type);
10759 if (ctype != NULL_TREE)
10760 grok_method_quals (ctype, decl, quals);
10763 if (RIDBIT_SETP (RID_SIGNED, specbits)
10764 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
10765 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
10767 if (RIDBIT_SETP (RID_MUTABLE, specbits))
10768 error ("non-object member `%s' cannot be declared mutable", name);
10770 bad_specifiers (decl, "type", virtualp, quals != NULL_TREE,
10771 inlinep, friendp, raises != NULL_TREE);
10773 if (initialized)
10774 error ("typedef declaration includes an initializer");
10776 return decl;
10779 /* Detect the case of an array type of unspecified size
10780 which came, as such, direct from a typedef name.
10781 We must copy the type, so that each identifier gets
10782 a distinct type, so that each identifier's size can be
10783 controlled separately by its own initializer. */
10785 if (type == typedef_type && TREE_CODE (type) == ARRAY_TYPE
10786 && TYPE_DOMAIN (type) == NULL_TREE)
10788 type = build_cplus_array_type (TREE_TYPE (type), TYPE_DOMAIN (type));
10791 /* If this is a type name (such as, in a cast or sizeof),
10792 compute the type and return it now. */
10794 if (decl_context == TYPENAME)
10796 /* Note that the grammar rejects storage classes
10797 in typenames, fields or parameters. */
10798 if (type_quals != TYPE_UNQUALIFIED)
10799 type_quals = TYPE_UNQUALIFIED;
10801 /* Special case: "friend class foo" looks like a TYPENAME context. */
10802 if (friendp)
10804 if (type_quals != TYPE_UNQUALIFIED)
10806 cp_error ("type qualifiers specified for friend class declaration");
10807 type_quals = TYPE_UNQUALIFIED;
10809 if (inlinep)
10811 cp_error ("`inline' specified for friend class declaration");
10812 inlinep = 0;
10815 /* Only try to do this stuff if we didn't already give up. */
10816 if (type != integer_type_node)
10818 /* A friendly class? */
10819 if (current_class_type)
10820 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type));
10821 else
10822 error ("trying to make class `%s' a friend of global scope",
10823 TYPE_NAME_STRING (type));
10824 type = void_type_node;
10827 else if (quals)
10829 tree dummy = build_decl (TYPE_DECL, declarator, type);
10830 if (ctype == NULL_TREE)
10832 my_friendly_assert (TREE_CODE (type) == METHOD_TYPE, 159);
10833 ctype = TYPE_METHOD_BASETYPE (type);
10835 grok_method_quals (ctype, dummy, quals);
10836 type = TREE_TYPE (dummy);
10839 return type;
10841 else if (declarator == NULL_TREE && decl_context != PARM
10842 && decl_context != CATCHPARM
10843 && TREE_CODE (type) != UNION_TYPE
10844 && ! bitfield)
10846 cp_error ("abstract declarator `%T' used as declaration", type);
10847 declarator = make_anon_name ();
10850 /* `void' at top level (not within pointer)
10851 is allowed only in typedefs or type names.
10852 We don't complain about parms either, but that is because
10853 a better error message can be made later. */
10855 if (TREE_CODE (type) == VOID_TYPE && decl_context != PARM)
10857 if (! declarator)
10858 error ("unnamed variable or field declared void");
10859 else if (TREE_CODE (declarator) == IDENTIFIER_NODE)
10861 if (IDENTIFIER_OPNAME_P (declarator))
10862 my_friendly_abort (356);
10863 else
10864 error ("variable or field `%s' declared void", name);
10866 else
10867 error ("variable or field declared void");
10868 type = integer_type_node;
10871 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
10872 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
10874 if (decl_context == PARM || decl_context == CATCHPARM)
10876 if (ctype || in_namespace)
10877 error ("cannot use `::' in parameter declaration");
10879 /* A parameter declared as an array of T is really a pointer to T.
10880 One declared as a function is really a pointer to a function.
10881 One declared as a member is really a pointer to member. */
10883 if (TREE_CODE (type) == ARRAY_TYPE)
10885 /* Transfer const-ness of array into that of type pointed to. */
10886 type = build_pointer_type (TREE_TYPE (type));
10887 type_quals = TYPE_UNQUALIFIED;
10889 else if (TREE_CODE (type) == FUNCTION_TYPE)
10890 type = build_pointer_type (type);
10891 else if (TREE_CODE (type) == OFFSET_TYPE)
10892 type = build_pointer_type (type);
10893 else if (TREE_CODE (type) == VOID_TYPE && declarator)
10895 error ("declaration of `%s' as void", name);
10896 return NULL_TREE;
10901 register tree decl;
10903 if (decl_context == PARM)
10905 decl = build_decl (PARM_DECL, declarator, type);
10907 bad_specifiers (decl, "parameter", virtualp, quals != NULL_TREE,
10908 inlinep, friendp, raises != NULL_TREE);
10910 /* Compute the type actually passed in the parmlist,
10911 for the case where there is no prototype.
10912 (For example, shorts and chars are passed as ints.)
10913 When there is a prototype, this is overridden later. */
10915 DECL_ARG_TYPE (decl) = type_promotes_to (type);
10917 else if (decl_context == FIELD)
10919 if (type == error_mark_node)
10921 /* Happens when declaring arrays of sizes which
10922 are error_mark_node, for example. */
10923 decl = NULL_TREE;
10925 else if (in_namespace && !friendp)
10927 /* Something like struct S { int N::j; }; */
10928 cp_error ("invalid use of `::'");
10929 decl = NULL_TREE;
10931 else if (TREE_CODE (type) == FUNCTION_TYPE)
10933 int publicp = 0;
10934 tree function_context;
10936 /* We catch the others as conflicts with the builtin
10937 typedefs. */
10938 if (friendp && declarator == ridpointers[(int) RID_SIGNED])
10940 cp_error ("function `%D' cannot be declared friend",
10941 declarator);
10942 friendp = 0;
10945 if (friendp == 0)
10947 if (ctype == NULL_TREE)
10948 ctype = current_class_type;
10950 if (ctype == NULL_TREE)
10952 cp_error ("can't make `%D' into a method -- not in a class",
10953 declarator);
10954 return void_type_node;
10957 /* ``A union may [ ... ] not [ have ] virtual functions.''
10958 ARM 9.5 */
10959 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
10961 cp_error ("function `%D' declared virtual inside a union",
10962 declarator);
10963 return void_type_node;
10966 if (declarator == ansi_opname[(int) NEW_EXPR]
10967 || declarator == ansi_opname[(int) VEC_NEW_EXPR]
10968 || declarator == ansi_opname[(int) DELETE_EXPR]
10969 || declarator == ansi_opname[(int) VEC_DELETE_EXPR])
10971 if (virtualp)
10973 cp_error ("`%D' cannot be declared virtual, since it is always static",
10974 declarator);
10975 virtualp = 0;
10978 else if (staticp < 2)
10979 type = build_cplus_method_type (ctype, TREE_TYPE (type),
10980 TYPE_ARG_TYPES (type));
10983 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
10984 function_context = (ctype != NULL_TREE) ?
10985 hack_decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
10986 publicp = (! friendp || ! staticp)
10987 && function_context == NULL_TREE;
10988 decl = grokfndecl (ctype, type,
10989 TREE_CODE (declarator) != TEMPLATE_ID_EXPR
10990 ? declarator : dname,
10991 declarator,
10992 virtualp, flags, quals, raises,
10993 friendp ? -1 : 0, friendp, publicp, inlinep,
10994 funcdef_flag, template_count, in_namespace);
10995 if (decl == NULL_TREE)
10996 return decl;
10997 #if 0
10998 /* This clobbers the attrs stored in `decl' from `attrlist'. */
10999 /* The decl and setting of decl_machine_attr is also turned off. */
11000 decl = build_decl_attribute_variant (decl, decl_machine_attr);
11001 #endif
11003 /* [class.conv.ctor]
11005 A constructor declared without the function-specifier
11006 explicit that can be called with a single parameter
11007 specifies a conversion from the type of its first
11008 parameter to the type of its class. Such a constructor
11009 is called a converting constructor. */
11010 if (explicitp == 2)
11011 DECL_NONCONVERTING_P (decl) = 1;
11012 else if (DECL_CONSTRUCTOR_P (decl))
11014 /* The constructor can be called with exactly one
11015 parameter if there is at least one parameter, and
11016 any subsequent parameters have default arguments.
11017 We don't look at the first parameter, which is
11018 really just the `this' parameter for the new
11019 object. */
11020 tree arg_types =
11021 TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)));
11023 /* Skip the `in_chrg' argument too, if present. */
11024 if (TYPE_USES_VIRTUAL_BASECLASSES (DECL_CONTEXT (decl)))
11025 arg_types = TREE_CHAIN (arg_types);
11027 if (arg_types == void_list_node
11028 || (arg_types
11029 && TREE_CHAIN (arg_types)
11030 && TREE_CHAIN (arg_types) != void_list_node
11031 && !TREE_PURPOSE (TREE_CHAIN (arg_types))))
11032 DECL_NONCONVERTING_P (decl) = 1;
11035 else if (TREE_CODE (type) == METHOD_TYPE)
11037 /* We only get here for friend declarations of
11038 members of other classes. */
11039 /* All method decls are public, so tell grokfndecl to set
11040 TREE_PUBLIC, also. */
11041 decl = grokfndecl (ctype, type, declarator, declarator,
11042 virtualp, flags, quals, raises,
11043 friendp ? -1 : 0, friendp, 1, 0, funcdef_flag,
11044 template_count, in_namespace);
11045 if (decl == NULL_TREE)
11046 return NULL_TREE;
11048 else if (!staticp && ! processing_template_decl
11049 && TYPE_SIZE (complete_type (type)) == NULL_TREE
11050 && (TREE_CODE (type) != ARRAY_TYPE || initialized == 0))
11052 if (declarator)
11053 cp_error ("field `%D' has incomplete type", declarator);
11054 else
11055 cp_error ("name `%T' has incomplete type", type);
11057 /* If we're instantiating a template, tell them which
11058 instantiation made the field's type be incomplete. */
11059 if (current_class_type
11060 && TYPE_NAME (current_class_type)
11061 && IDENTIFIER_TEMPLATE (TYPE_IDENTIFIER (current_class_type))
11062 && declspecs && TREE_VALUE (declspecs)
11063 && TREE_TYPE (TREE_VALUE (declspecs)) == type)
11064 cp_error (" in instantiation of template `%T'",
11065 current_class_type);
11067 type = error_mark_node;
11068 decl = NULL_TREE;
11070 else
11072 if (friendp)
11074 error ("`%s' is neither function nor method; cannot be declared friend",
11075 IDENTIFIER_POINTER (declarator));
11076 friendp = 0;
11078 decl = NULL_TREE;
11081 if (friendp)
11083 /* Friends are treated specially. */
11084 if (ctype == current_class_type)
11085 warning ("member functions are implicitly friends of their class");
11086 else
11088 tree t = NULL_TREE;
11089 if (decl && DECL_NAME (decl))
11091 if (template_class_depth (current_class_type) == 0)
11093 decl
11094 = check_explicit_specialization
11095 (declarator, decl,
11096 template_count, 2 * (funcdef_flag != 0) + 4);
11097 if (decl == error_mark_node)
11098 return error_mark_node;
11101 t = do_friend (ctype, declarator, decl,
11102 last_function_parms, attrlist, flags, quals,
11103 funcdef_flag);
11105 if (t && funcdef_flag)
11106 return t;
11108 return void_type_node;
11112 /* Structure field. It may not be a function, except for C++ */
11114 if (decl == NULL_TREE)
11116 if (initialized)
11118 if (!staticp)
11120 /* An attempt is being made to initialize a non-static
11121 member. But, from [class.mem]:
11123 4 A member-declarator can contain a
11124 constant-initializer only if it declares a static
11125 member (_class.static_) of integral or enumeration
11126 type, see _class.static.data_.
11128 This used to be relatively common practice, but
11129 the rest of the compiler does not correctly
11130 handle the initialization unless the member is
11131 static so we make it static below. */
11132 cp_pedwarn ("ANSI C++ forbids initialization of member `%D'",
11133 declarator);
11134 cp_pedwarn ("making `%D' static", declarator);
11135 staticp = 1;
11138 if (uses_template_parms (type))
11139 /* We'll check at instantiation time. */
11141 else if (check_static_variable_definition (declarator,
11142 type))
11143 /* If we just return the declaration, crashes
11144 will sometimes occur. We therefore return
11145 void_type_node, as if this was a friend
11146 declaration, to cause callers to completely
11147 ignore this declaration. */
11148 return void_type_node;
11151 /* 9.2p13 [class.mem] */
11152 if (declarator == constructor_name (current_class_type)
11153 /* Divergence from the standard: In extern "C", we
11154 allow non-static data members here, because C does
11155 and /usr/include/netinet/in.h uses that. */
11156 && (staticp || ! in_system_header))
11157 cp_pedwarn ("ANSI C++ forbids data member `%D' with same name as enclosing class",
11158 declarator);
11160 if (staticp)
11162 /* C++ allows static class members. All other work
11163 for this is done by grokfield. */
11164 decl = build_lang_decl (VAR_DECL, declarator, type);
11165 TREE_STATIC (decl) = 1;
11166 /* In class context, 'static' means public access. */
11167 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl) = 1;
11169 else
11171 decl = build_lang_decl (FIELD_DECL, declarator, type);
11172 if (RIDBIT_SETP (RID_MUTABLE, specbits))
11174 DECL_MUTABLE_P (decl) = 1;
11175 RIDBIT_RESET (RID_MUTABLE, specbits);
11179 bad_specifiers (decl, "field", virtualp, quals != NULL_TREE,
11180 inlinep, friendp, raises != NULL_TREE);
11183 else if (TREE_CODE (type) == FUNCTION_TYPE || TREE_CODE (type) == METHOD_TYPE)
11185 tree original_name;
11186 int publicp = 0;
11188 if (! declarator)
11189 return NULL_TREE;
11191 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
11192 original_name = dname;
11193 else
11194 original_name = declarator;
11196 if (RIDBIT_SETP (RID_AUTO, specbits))
11197 error ("storage class `auto' invalid for function `%s'", name);
11198 else if (RIDBIT_SETP (RID_REGISTER, specbits))
11199 error ("storage class `register' invalid for function `%s'", name);
11201 /* Function declaration not at top level.
11202 Storage classes other than `extern' are not allowed
11203 and `extern' makes no difference. */
11204 if (! toplevel_bindings_p ()
11205 && (RIDBIT_SETP (RID_STATIC, specbits)
11206 || RIDBIT_SETP (RID_INLINE, specbits))
11207 && pedantic)
11209 if (RIDBIT_SETP (RID_STATIC, specbits))
11210 pedwarn ("storage class `static' invalid for function `%s' declared out of global scope", name);
11211 else
11212 pedwarn ("storage class `inline' invalid for function `%s' declared out of global scope", name);
11215 if (ctype == NULL_TREE)
11217 if (virtualp)
11219 error ("virtual non-class function `%s'", name);
11220 virtualp = 0;
11223 else if (TREE_CODE (type) == FUNCTION_TYPE && staticp < 2)
11224 type = build_cplus_method_type (ctype, TREE_TYPE (type),
11225 TYPE_ARG_TYPES (type));
11227 /* Record presence of `static'. */
11228 publicp = (ctype != NULL_TREE
11229 || RIDBIT_SETP (RID_EXTERN, specbits)
11230 || !RIDBIT_SETP (RID_STATIC, specbits));
11232 decl = grokfndecl (ctype, type, original_name, declarator,
11233 virtualp, flags, quals, raises,
11234 1, friendp,
11235 publicp, inlinep, funcdef_flag,
11236 template_count, in_namespace);
11237 if (decl == NULL_TREE)
11238 return NULL_TREE;
11240 if (staticp == 1)
11242 int illegal_static = 0;
11244 /* Don't allow a static member function in a class, and forbid
11245 declaring main to be static. */
11246 if (TREE_CODE (type) == METHOD_TYPE)
11248 cp_pedwarn ("cannot declare member function `%D' to have static linkage", decl);
11249 illegal_static = 1;
11251 else if (current_function_decl)
11253 /* FIXME need arm citation */
11254 error ("cannot declare static function inside another function");
11255 illegal_static = 1;
11258 if (illegal_static)
11260 staticp = 0;
11261 RIDBIT_RESET (RID_STATIC, specbits);
11265 else
11267 /* It's a variable. */
11269 /* An uninitialized decl with `extern' is a reference. */
11270 decl = grokvardecl (type, declarator, &specbits,
11271 initialized,
11272 (type_quals & TYPE_QUAL_CONST) != 0,
11273 in_namespace);
11274 bad_specifiers (decl, "variable", virtualp, quals != NULL_TREE,
11275 inlinep, friendp, raises != NULL_TREE);
11277 if (ctype)
11279 DECL_CONTEXT (decl) = ctype;
11280 if (staticp == 1)
11282 cp_pedwarn ("static member `%D' re-declared as static", decl);
11283 staticp = 0;
11284 RIDBIT_RESET (RID_STATIC, specbits);
11286 if (RIDBIT_SETP (RID_REGISTER, specbits) && TREE_STATIC (decl))
11288 cp_error ("static member `%D' declared `register'", decl);
11289 RIDBIT_RESET (RID_REGISTER, specbits);
11291 if (RIDBIT_SETP (RID_EXTERN, specbits) && pedantic)
11293 cp_pedwarn ("cannot explicitly declare member `%#D' to have extern linkage",
11294 decl);
11295 RIDBIT_RESET (RID_EXTERN, specbits);
11300 if (RIDBIT_SETP (RID_MUTABLE, specbits))
11302 error ("`%s' cannot be declared mutable", name);
11305 /* Record `register' declaration for warnings on &
11306 and in case doing stupid register allocation. */
11308 if (RIDBIT_SETP (RID_REGISTER, specbits))
11309 DECL_REGISTER (decl) = 1;
11311 if (RIDBIT_SETP (RID_EXTERN, specbits))
11312 DECL_THIS_EXTERN (decl) = 1;
11314 if (RIDBIT_SETP (RID_STATIC, specbits))
11315 DECL_THIS_STATIC (decl) = 1;
11317 /* Record constancy and volatility. There's no need to do this
11318 when processing a template; we'll do this for the instantiated
11319 declaration based on the type of DECL. */
11320 if (!processing_template_decl)
11321 c_apply_type_quals_to_decl (type_quals, decl);
11323 return decl;
11327 /* Tell if a parmlist/exprlist looks like an exprlist or a parmlist.
11328 An empty exprlist is a parmlist. An exprlist which
11329 contains only identifiers at the global level
11330 is a parmlist. Otherwise, it is an exprlist. */
11333 parmlist_is_exprlist (exprs)
11334 tree exprs;
11336 if (exprs == NULL_TREE || TREE_PARMLIST (exprs))
11337 return 0;
11339 if (toplevel_bindings_p ())
11341 /* At the global level, if these are all identifiers,
11342 then it is a parmlist. */
11343 while (exprs)
11345 if (TREE_CODE (TREE_VALUE (exprs)) != IDENTIFIER_NODE)
11346 return 1;
11347 exprs = TREE_CHAIN (exprs);
11349 return 0;
11351 return 1;
11354 /* Subroutine of start_function. Ensure that each of the parameter
11355 types (as listed in PARMS) is complete, as is required for a
11356 function definition. */
11358 static void
11359 require_complete_types_for_parms (parms)
11360 tree parms;
11362 while (parms)
11364 tree type = TREE_TYPE (parms);
11365 if (TYPE_SIZE (complete_type (type)) == NULL_TREE)
11367 if (DECL_NAME (parms))
11368 error ("parameter `%s' has incomplete type",
11369 IDENTIFIER_POINTER (DECL_NAME (parms)));
11370 else
11371 error ("parameter has incomplete type");
11372 TREE_TYPE (parms) = error_mark_node;
11374 else
11375 layout_decl (parms, 0);
11377 parms = TREE_CHAIN (parms);
11381 /* Returns DECL if DECL is a local variable (or parameter). Returns
11382 NULL_TREE otherwise. */
11384 static tree
11385 local_variable_p (t)
11386 tree t;
11388 if ((TREE_CODE (t) == VAR_DECL
11389 /* A VAR_DECL with a context that is a _TYPE is a static data
11390 member. */
11391 && !TYPE_P (CP_DECL_CONTEXT (t))
11392 /* Any other non-local variable must be at namespace scope. */
11393 && TREE_CODE (CP_DECL_CONTEXT (t)) != NAMESPACE_DECL)
11394 || (TREE_CODE (t) == PARM_DECL))
11395 return t;
11397 return NULL_TREE;
11400 /* Check that ARG, which is a default-argument expression for a
11401 parameter DECL, is legal. Returns ARG, or ERROR_MARK_NODE, if
11402 something goes wrong. DECL may also be a _TYPE node, rather than a
11403 DECL, if there is no DECL available. */
11405 tree
11406 check_default_argument (decl, arg)
11407 tree decl;
11408 tree arg;
11410 tree var;
11411 tree decl_type;
11413 if (TREE_CODE (arg) == DEFAULT_ARG)
11414 /* We get a DEFAULT_ARG when looking at an in-class declaration
11415 with a default argument. Ignore the argument for now; we'll
11416 deal with it after the class is complete. */
11417 return arg;
11419 if (processing_template_decl || uses_template_parms (arg))
11420 /* We don't do anything checking until instantiation-time. Note
11421 that there may be uninstantiated arguments even for an
11422 instantiated function, since default arguments are not
11423 instantiated until they are needed. */
11424 return arg;
11426 if (TYPE_P (decl))
11428 decl_type = decl;
11429 decl = NULL_TREE;
11431 else
11432 decl_type = TREE_TYPE (decl);
11434 if (arg == error_mark_node
11435 || decl == error_mark_node
11436 || TREE_TYPE (arg) == error_mark_node
11437 || decl_type == error_mark_node)
11438 /* Something already went wrong. There's no need to check
11439 further. */
11440 return error_mark_node;
11442 /* [dcl.fct.default]
11444 A default argument expression is implicitly converted to the
11445 parameter type. */
11446 if (!TREE_TYPE (arg)
11447 || !can_convert_arg (decl_type, TREE_TYPE (arg), arg))
11449 if (decl)
11450 cp_error ("default argument for `%#D' has type `%T'",
11451 decl, TREE_TYPE (arg));
11452 else
11453 cp_error ("default argument for parameter of type `%T' has type `%T'",
11454 decl_type, TREE_TYPE (arg));
11456 return error_mark_node;
11459 /* [dcl.fct.default]
11461 Local variables shall not be used in default argument
11462 expressions.
11464 The keyword `this' shall not be used in a default argument of a
11465 member function. */
11466 var = search_tree (arg, local_variable_p);
11467 if (var)
11469 cp_error ("default argument `%E' uses local variable `%D'",
11470 arg, var);
11471 return error_mark_node;
11474 /* All is well. */
11475 return arg;
11478 /* Decode the list of parameter types for a function type.
11479 Given the list of things declared inside the parens,
11480 return a list of types.
11482 The list we receive can have three kinds of elements:
11483 an IDENTIFIER_NODE for names given without types,
11484 a TREE_LIST node for arguments given as typespecs or names with typespecs,
11485 or void_type_node, to mark the end of an argument list
11486 when additional arguments are not permitted (... was not used).
11488 FUNCDEF_FLAG is nonzero for a function definition, 0 for
11489 a mere declaration. A nonempty identifier-list gets an error message
11490 when FUNCDEF_FLAG is zero.
11491 If FUNCDEF_FLAG is 1, then parameter types must be complete.
11492 If FUNCDEF_FLAG is -1, then parameter types may be incomplete.
11494 If all elements of the input list contain types,
11495 we return a list of the types.
11496 If all elements contain no type (except perhaps a void_type_node
11497 at the end), we return a null list.
11498 If some have types and some do not, it is an error, and we
11499 return a null list.
11501 Also set last_function_parms to either
11502 a list of names (IDENTIFIER_NODEs) or a chain of PARM_DECLs.
11503 A list of names is converted to a chain of PARM_DECLs
11504 by store_parm_decls so that ultimately it is always a chain of decls.
11506 Note that in C++, parameters can take default values. These default
11507 values are in the TREE_PURPOSE field of the TREE_LIST. It is
11508 an error to specify default values which are followed by parameters
11509 that have no default values, or an ELLIPSES. For simplicities sake,
11510 only parameters which are specified with their types can take on
11511 default values. */
11513 static tree
11514 grokparms (first_parm, funcdef_flag)
11515 tree first_parm;
11516 int funcdef_flag;
11518 tree result = NULL_TREE;
11519 tree decls = NULL_TREE;
11521 if (first_parm != NULL_TREE
11522 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
11524 if (! funcdef_flag)
11525 pedwarn ("parameter names (without types) in function declaration");
11526 last_function_parms = first_parm;
11527 return NULL_TREE;
11529 else if (first_parm != NULL_TREE
11530 && TREE_CODE (TREE_VALUE (first_parm)) != TREE_LIST
11531 && TREE_CODE (TREE_VALUE (first_parm)) != VOID_TYPE)
11532 my_friendly_abort (145);
11533 else
11535 /* Types were specified. This is a list of declarators
11536 each represented as a TREE_LIST node. */
11537 register tree parm, chain;
11538 int any_init = 0, any_error = 0;
11540 if (first_parm != NULL_TREE)
11542 tree last_result = NULL_TREE;
11543 tree last_decl = NULL_TREE;
11545 for (parm = first_parm; parm != NULL_TREE; parm = chain)
11547 tree type = NULL_TREE, list_node = parm;
11548 register tree decl = TREE_VALUE (parm);
11549 tree init = TREE_PURPOSE (parm);
11551 chain = TREE_CHAIN (parm);
11552 /* @@ weak defense against parse errors. */
11553 if (TREE_CODE (decl) != VOID_TYPE
11554 && TREE_CODE (decl) != TREE_LIST)
11556 /* Give various messages as the need arises. */
11557 if (TREE_CODE (decl) == STRING_CST)
11558 cp_error ("invalid string constant `%E'", decl);
11559 else if (TREE_CODE (decl) == INTEGER_CST)
11560 error ("invalid integer constant in parameter list, did you forget to give parameter name?");
11561 continue;
11564 if (TREE_CODE (decl) != VOID_TYPE)
11566 decl = grokdeclarator (TREE_VALUE (decl),
11567 TREE_PURPOSE (decl),
11568 PARM, init != NULL_TREE,
11569 NULL_TREE);
11570 if (! decl || TREE_TYPE (decl) == error_mark_node)
11571 continue;
11573 /* Top-level qualifiers on the parameters are
11574 ignored for function types. */
11575 type = TYPE_MAIN_VARIANT (TREE_TYPE (decl));
11577 if (TREE_CODE (type) == VOID_TYPE)
11578 decl = void_type_node;
11579 else if (TREE_CODE (type) == METHOD_TYPE)
11581 if (DECL_NAME (decl))
11582 /* Cannot use the decl here because
11583 we don't have DECL_CONTEXT set up yet. */
11584 cp_error ("parameter `%D' invalidly declared method type",
11585 DECL_NAME (decl));
11586 else
11587 error ("parameter invalidly declared method type");
11588 type = build_pointer_type (type);
11589 TREE_TYPE (decl) = type;
11591 else if (TREE_CODE (type) == OFFSET_TYPE)
11593 if (DECL_NAME (decl))
11594 cp_error ("parameter `%D' invalidly declared offset type",
11595 DECL_NAME (decl));
11596 else
11597 error ("parameter invalidly declared offset type");
11598 type = build_pointer_type (type);
11599 TREE_TYPE (decl) = type;
11601 else if (abstract_virtuals_error (decl, type))
11602 any_error = 1; /* Seems like a good idea. */
11603 else if (POINTER_TYPE_P (type))
11605 tree t = type;
11606 while (POINTER_TYPE_P (t)
11607 || (TREE_CODE (t) == ARRAY_TYPE
11608 && TYPE_DOMAIN (t) != NULL_TREE))
11609 t = TREE_TYPE (t);
11610 if (TREE_CODE (t) == ARRAY_TYPE)
11611 cp_error ("parameter type `%T' includes %s to array of unknown bound",
11612 type,
11613 TYPE_PTR_P (type) ? "pointer" : "reference");
11617 if (TREE_CODE (decl) == VOID_TYPE)
11619 if (result == NULL_TREE)
11621 result = void_list_node;
11622 last_result = result;
11624 else
11626 TREE_CHAIN (last_result) = void_list_node;
11627 last_result = void_list_node;
11629 if (chain
11630 && (chain != void_list_node || TREE_CHAIN (chain)))
11631 error ("`void' in parameter list must be entire list");
11632 break;
11635 /* Since there is a prototype, args are passed in their own types. */
11636 DECL_ARG_TYPE (decl) = TREE_TYPE (decl);
11637 if (PROMOTE_PROTOTYPES
11638 && (TREE_CODE (type) == INTEGER_TYPE
11639 || TREE_CODE (type) == ENUMERAL_TYPE)
11640 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
11641 DECL_ARG_TYPE (decl) = integer_type_node;
11642 if (!any_error && init)
11644 any_init++;
11645 init = check_default_argument (decl, init);
11647 else
11648 init = NULL_TREE;
11650 if (decls == NULL_TREE)
11652 decls = decl;
11653 last_decl = decls;
11655 else
11657 TREE_CHAIN (last_decl) = decl;
11658 last_decl = decl;
11660 if (! current_function_decl && TREE_PERMANENT (list_node))
11662 TREE_PURPOSE (list_node) = init;
11663 TREE_VALUE (list_node) = type;
11664 TREE_CHAIN (list_node) = NULL_TREE;
11666 else
11667 list_node = saveable_tree_cons (init, type, NULL_TREE);
11668 if (result == NULL_TREE)
11670 result = list_node;
11671 last_result = result;
11673 else
11675 TREE_CHAIN (last_result) = list_node;
11676 last_result = list_node;
11679 if (last_result)
11680 TREE_CHAIN (last_result) = NULL_TREE;
11681 /* If there are no parameters, and the function does not end
11682 with `...', then last_decl will be NULL_TREE. */
11683 if (last_decl != NULL_TREE)
11684 TREE_CHAIN (last_decl) = NULL_TREE;
11688 last_function_parms = decls;
11690 return result;
11693 /* Called from the parser to update an element of TYPE_ARG_TYPES for some
11694 FUNCTION_TYPE with the newly parsed version of its default argument, which
11695 was previously digested as text. See snarf_defarg et al in lex.c. */
11697 void
11698 replace_defarg (arg, init)
11699 tree arg, init;
11701 if (! processing_template_decl
11702 && ! can_convert_arg (TREE_VALUE (arg), TREE_TYPE (init), init))
11703 cp_pedwarn ("invalid type `%T' for default argument to `%T'",
11704 TREE_TYPE (init), TREE_VALUE (arg));
11705 TREE_PURPOSE (arg) = init;
11709 copy_args_p (d)
11710 tree d;
11712 tree t = FUNCTION_ARG_CHAIN (d);
11713 if (DECL_CONSTRUCTOR_P (d)
11714 && TYPE_USES_VIRTUAL_BASECLASSES (DECL_CONTEXT (d)))
11715 t = TREE_CHAIN (t);
11716 if (t && TREE_CODE (TREE_VALUE (t)) == REFERENCE_TYPE
11717 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_VALUE (t)))
11718 == DECL_CLASS_CONTEXT (d))
11719 && (TREE_CHAIN (t) == NULL_TREE
11720 || TREE_CHAIN (t) == void_list_node
11721 || TREE_PURPOSE (TREE_CHAIN (t))))
11722 return 1;
11723 return 0;
11726 /* These memoizing functions keep track of special properties which
11727 a class may have. `grok_ctor_properties' notices whether a class
11728 has a constructor of the form X(X&), and also complains
11729 if the class has a constructor of the form X(X).
11730 `grok_op_properties' takes notice of the various forms of
11731 operator= which are defined, as well as what sorts of type conversion
11732 may apply. Both functions take a FUNCTION_DECL as an argument. */
11735 grok_ctor_properties (ctype, decl)
11736 tree ctype, decl;
11738 tree parmtypes = FUNCTION_ARG_CHAIN (decl);
11739 tree parmtype = parmtypes ? TREE_VALUE (parmtypes) : void_type_node;
11741 /* When a type has virtual baseclasses, a magical first int argument is
11742 added to any ctor so we can tell if the class has been initialized
11743 yet. This could screw things up in this function, so we deliberately
11744 ignore the leading int if we're in that situation. */
11745 if (TYPE_USES_VIRTUAL_BASECLASSES (ctype))
11747 my_friendly_assert (parmtypes
11748 && TREE_VALUE (parmtypes) == integer_type_node,
11749 980529);
11750 parmtypes = TREE_CHAIN (parmtypes);
11751 parmtype = TREE_VALUE (parmtypes);
11754 /* [class.copy]
11756 A non-template constructor for class X is a copy constructor if
11757 its first parameter is of type X&, const X&, volatile X& or const
11758 volatile X&, and either there are no other parameters or else all
11759 other parameters have default arguments. */
11760 if (TREE_CODE (parmtype) == REFERENCE_TYPE
11761 && TYPE_MAIN_VARIANT (TREE_TYPE (parmtype)) == ctype
11762 && (TREE_CHAIN (parmtypes) == NULL_TREE
11763 || TREE_CHAIN (parmtypes) == void_list_node
11764 || TREE_PURPOSE (TREE_CHAIN (parmtypes)))
11765 && !(DECL_TEMPLATE_INSTANTIATION (decl)
11766 && is_member_template (DECL_TI_TEMPLATE (decl))))
11768 TYPE_HAS_INIT_REF (ctype) = 1;
11769 if (CP_TYPE_CONST_P (TREE_TYPE (parmtype)))
11770 TYPE_HAS_CONST_INIT_REF (ctype) = 1;
11772 /* [class.copy]
11774 A declaration of a constructor for a class X is ill-formed if its
11775 first parameter is of type (optionally cv-qualified) X and either
11776 there are no other parameters or else all other parameters have
11777 default arguments.
11779 We *don't* complain about member template instantiations that
11780 have this form, though; they can occur as we try to decide what
11781 constructor to use during overload resolution. Since overload
11782 resolution will never prefer such a constructor to the
11783 non-template copy constructor (which is either explicitly or
11784 implicitly defined), there's no need to worry about their
11785 existence. Theoretically, they should never even be
11786 instantiated, but that's hard to forestall. */
11787 else if (TYPE_MAIN_VARIANT (parmtype) == ctype
11788 && (TREE_CHAIN (parmtypes) == NULL_TREE
11789 || TREE_CHAIN (parmtypes) == void_list_node
11790 || TREE_PURPOSE (TREE_CHAIN (parmtypes)))
11791 && !(DECL_TEMPLATE_INSTANTIATION (decl)
11792 && is_member_template (DECL_TI_TEMPLATE (decl))))
11794 cp_error ("invalid constructor; you probably meant `%T (const %T&)'",
11795 ctype, ctype);
11796 SET_IDENTIFIER_ERROR_LOCUS (DECL_NAME (decl), ctype);
11797 return 0;
11799 else if (TREE_CODE (parmtype) == VOID_TYPE
11800 || TREE_PURPOSE (parmtypes) != NULL_TREE)
11801 TYPE_HAS_DEFAULT_CONSTRUCTOR (ctype) = 1;
11803 return 1;
11806 /* An operator with this name can be either unary or binary. */
11808 static int
11809 ambi_op_p (name)
11810 tree name;
11812 return (name == ansi_opname [(int) INDIRECT_REF]
11813 || name == ansi_opname [(int) ADDR_EXPR]
11814 || name == ansi_opname [(int) NEGATE_EXPR]
11815 || name == ansi_opname[(int) POSTINCREMENT_EXPR]
11816 || name == ansi_opname[(int) POSTDECREMENT_EXPR]
11817 || name == ansi_opname [(int) CONVERT_EXPR]);
11820 /* An operator with this name can only be unary. */
11822 static int
11823 unary_op_p (name)
11824 tree name;
11826 return (name == ansi_opname [(int) TRUTH_NOT_EXPR]
11827 || name == ansi_opname [(int) BIT_NOT_EXPR]
11828 || name == ansi_opname [(int) COMPONENT_REF]
11829 || IDENTIFIER_TYPENAME_P (name));
11832 /* Do a little sanity-checking on how they declared their operator. */
11834 void
11835 grok_op_properties (decl, virtualp, friendp)
11836 tree decl;
11837 int virtualp, friendp;
11839 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
11840 int methodp = (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE);
11841 tree name = DECL_NAME (decl);
11843 if (current_class_type == NULL_TREE)
11844 friendp = 1;
11846 if (! friendp)
11848 /* [class.copy]
11850 A user-declared copy assignment operator X::operator= is a
11851 non-static non-template member function of class X with
11852 exactly one parameter of type X, X&, const X&, volatile X& or
11853 const volatile X&. */
11854 if (name == ansi_opname[(int) MODIFY_EXPR]
11855 && !(DECL_TEMPLATE_INSTANTIATION (decl)
11856 && is_member_template (DECL_TI_TEMPLATE (decl))))
11858 else if (name == ansi_opname[(int) CALL_EXPR])
11859 TYPE_OVERLOADS_CALL_EXPR (current_class_type) = 1;
11860 else if (name == ansi_opname[(int) ARRAY_REF])
11861 TYPE_OVERLOADS_ARRAY_REF (current_class_type) = 1;
11862 else if (name == ansi_opname[(int) COMPONENT_REF]
11863 || name == ansi_opname[(int) MEMBER_REF])
11864 TYPE_OVERLOADS_ARROW (current_class_type) = 1;
11865 else if (name == ansi_opname[(int) NEW_EXPR])
11866 TYPE_GETS_NEW (current_class_type) |= 1;
11867 else if (name == ansi_opname[(int) DELETE_EXPR])
11868 TYPE_GETS_DELETE (current_class_type) |= 1;
11869 else if (name == ansi_opname[(int) VEC_NEW_EXPR])
11870 TYPE_GETS_NEW (current_class_type) |= 2;
11871 else if (name == ansi_opname[(int) VEC_DELETE_EXPR])
11872 TYPE_GETS_DELETE (current_class_type) |= 2;
11875 if (name == ansi_opname[(int) NEW_EXPR]
11876 || name == ansi_opname[(int) VEC_NEW_EXPR])
11878 /* When the compiler encounters the definition of A::operator new, it
11879 doesn't look at the class declaration to find out if it's static. */
11880 if (methodp)
11881 revert_static_member_fn (&decl, NULL, NULL);
11883 /* Take care of function decl if we had syntax errors. */
11884 if (argtypes == NULL_TREE)
11885 TREE_TYPE (decl)
11886 = build_function_type (ptr_type_node,
11887 hash_tree_chain (integer_type_node,
11888 void_list_node));
11889 else
11890 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
11892 else if (name == ansi_opname[(int) DELETE_EXPR]
11893 || name == ansi_opname[(int) VEC_DELETE_EXPR])
11895 if (methodp)
11896 revert_static_member_fn (&decl, NULL, NULL);
11898 if (argtypes == NULL_TREE)
11899 TREE_TYPE (decl)
11900 = build_function_type (void_type_node,
11901 hash_tree_chain (ptr_type_node,
11902 void_list_node));
11903 else
11905 TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
11907 if (! friendp && name == ansi_opname[(int) VEC_DELETE_EXPR]
11908 && (TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
11909 != void_list_node))
11910 TYPE_VEC_DELETE_TAKES_SIZE (current_class_type) = 1;
11913 else
11915 /* An operator function must either be a non-static member function
11916 or have at least one parameter of a class, a reference to a class,
11917 an enumeration, or a reference to an enumeration. 13.4.0.6 */
11918 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
11920 if (IDENTIFIER_TYPENAME_P (name)
11921 || name == ansi_opname[(int) CALL_EXPR]
11922 || name == ansi_opname[(int) MODIFY_EXPR]
11923 || name == ansi_opname[(int) COMPONENT_REF]
11924 || name == ansi_opname[(int) ARRAY_REF])
11925 cp_error ("`%D' must be a nonstatic member function", decl);
11926 else
11928 tree p = argtypes;
11930 if (DECL_STATIC_FUNCTION_P (decl))
11931 cp_error ("`%D' must be either a non-static member function or a non-member function", decl);
11933 if (p)
11934 for (; TREE_CODE (TREE_VALUE (p)) != VOID_TYPE ; p = TREE_CHAIN (p))
11936 tree arg = TREE_VALUE (p);
11937 if (TREE_CODE (arg) == REFERENCE_TYPE)
11938 arg = TREE_TYPE (arg);
11940 /* This lets bad template code slip through. */
11941 if (IS_AGGR_TYPE (arg)
11942 || TREE_CODE (arg) == ENUMERAL_TYPE
11943 || TREE_CODE (arg) == TEMPLATE_TYPE_PARM
11944 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
11945 goto foundaggr;
11947 cp_error
11948 ("`%D' must have an argument of class or enumerated type",
11949 decl);
11950 foundaggr:
11955 if (name == ansi_opname[(int) CALL_EXPR])
11956 return; /* No restrictions on args. */
11958 if (IDENTIFIER_TYPENAME_P (name) && ! DECL_TEMPLATE_INFO (decl))
11960 tree t = TREE_TYPE (name);
11961 if (TREE_CODE (t) == VOID_TYPE)
11962 pedwarn ("void is not a valid type conversion operator");
11963 else if (! friendp)
11965 int ref = (TREE_CODE (t) == REFERENCE_TYPE);
11966 const char *what = 0;
11967 if (ref)
11968 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
11970 if (t == current_class_type)
11971 what = "the same type";
11972 /* Don't force t to be complete here. */
11973 else if (IS_AGGR_TYPE (t)
11974 && TYPE_SIZE (t)
11975 && DERIVED_FROM_P (t, current_class_type))
11976 what = "a base class";
11978 if (what)
11979 warning ("conversion to %s%s will never use a type conversion operator",
11980 ref ? "a reference to " : "", what);
11984 if (name == ansi_opname[(int) MODIFY_EXPR])
11986 tree parmtype;
11988 if (list_length (argtypes) != 3 && methodp)
11990 cp_error ("`%D' must take exactly one argument", decl);
11991 return;
11993 parmtype = TREE_VALUE (TREE_CHAIN (argtypes));
11995 if (copy_assignment_arg_p (parmtype, virtualp)
11996 && ! friendp)
11998 TYPE_HAS_ASSIGN_REF (current_class_type) = 1;
11999 if (TREE_CODE (parmtype) != REFERENCE_TYPE
12000 || CP_TYPE_CONST_P (TREE_TYPE (parmtype)))
12001 TYPE_HAS_CONST_ASSIGN_REF (current_class_type) = 1;
12004 else if (name == ansi_opname[(int) COND_EXPR])
12006 /* 13.4.0.3 */
12007 cp_error ("ANSI C++ prohibits overloading operator ?:");
12009 else if (ambi_op_p (name))
12011 if (list_length (argtypes) == 2)
12012 /* prefix */;
12013 else if (list_length (argtypes) == 3)
12015 if ((name == ansi_opname[(int) POSTINCREMENT_EXPR]
12016 || name == ansi_opname[(int) POSTDECREMENT_EXPR])
12017 && ! processing_template_decl
12018 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)), integer_type_node))
12020 if (methodp)
12021 cp_error ("postfix `%D' must take `int' as its argument",
12022 decl);
12023 else
12024 cp_error
12025 ("postfix `%D' must take `int' as its second argument",
12026 decl);
12029 else
12031 if (methodp)
12032 cp_error ("`%D' must take either zero or one argument", decl);
12033 else
12034 cp_error ("`%D' must take either one or two arguments", decl);
12037 /* More Effective C++ rule 6. */
12038 if (warn_ecpp
12039 && (name == ansi_opname[(int) POSTINCREMENT_EXPR]
12040 || name == ansi_opname[(int) POSTDECREMENT_EXPR]))
12042 tree arg = TREE_VALUE (argtypes);
12043 tree ret = TREE_TYPE (TREE_TYPE (decl));
12044 if (methodp || TREE_CODE (arg) == REFERENCE_TYPE)
12045 arg = TREE_TYPE (arg);
12046 arg = TYPE_MAIN_VARIANT (arg);
12047 if (list_length (argtypes) == 2)
12049 if (TREE_CODE (ret) != REFERENCE_TYPE
12050 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)),
12051 arg))
12052 cp_warning ("prefix `%D' should return `%T'", decl,
12053 build_reference_type (arg));
12055 else
12057 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
12058 cp_warning ("postfix `%D' should return `%T'", decl, arg);
12062 else if (unary_op_p (name))
12064 if (list_length (argtypes) != 2)
12066 if (methodp)
12067 cp_error ("`%D' must take `void'", decl);
12068 else
12069 cp_error ("`%D' must take exactly one argument", decl);
12072 else /* if (binary_op_p (name)) */
12074 if (list_length (argtypes) != 3)
12076 if (methodp)
12077 cp_error ("`%D' must take exactly one argument", decl);
12078 else
12079 cp_error ("`%D' must take exactly two arguments", decl);
12082 /* More Effective C++ rule 7. */
12083 if (warn_ecpp
12084 && (name == ansi_opname [TRUTH_ANDIF_EXPR]
12085 || name == ansi_opname [TRUTH_ORIF_EXPR]
12086 || name == ansi_opname [COMPOUND_EXPR]))
12087 cp_warning ("user-defined `%D' always evaluates both arguments",
12088 decl);
12091 /* Effective C++ rule 23. */
12092 if (warn_ecpp
12093 && list_length (argtypes) == 3
12094 && (name == ansi_opname [PLUS_EXPR]
12095 || name == ansi_opname [MINUS_EXPR]
12096 || name == ansi_opname [TRUNC_DIV_EXPR]
12097 || name == ansi_opname [MULT_EXPR])
12098 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
12099 cp_warning ("`%D' should return by value", decl);
12101 /* 13.4.0.8 */
12102 if (argtypes)
12103 for (; argtypes != void_list_node ; argtypes = TREE_CHAIN (argtypes))
12104 if (TREE_PURPOSE (argtypes))
12106 TREE_PURPOSE (argtypes) = NULL_TREE;
12107 if (name == ansi_opname[(int) POSTINCREMENT_EXPR]
12108 || name == ansi_opname[(int) POSTDECREMENT_EXPR])
12110 if (pedantic)
12111 cp_pedwarn ("`%D' cannot have default arguments", decl);
12113 else
12114 cp_error ("`%D' cannot have default arguments", decl);
12119 static const char *
12120 tag_name (code)
12121 enum tag_types code;
12123 switch (code)
12125 case record_type:
12126 return "struct";
12127 case class_type:
12128 return "class";
12129 case union_type:
12130 return "union ";
12131 case enum_type:
12132 return "enum";
12133 default:
12134 my_friendly_abort (981122);
12138 /* Get the struct, enum or union (CODE says which) with tag NAME.
12139 Define the tag as a forward-reference if it is not defined.
12141 C++: If a class derivation is given, process it here, and report
12142 an error if multiple derivation declarations are not identical.
12144 If this is a definition, come in through xref_tag and only look in
12145 the current frame for the name (since C++ allows new names in any
12146 scope.) */
12148 tree
12149 xref_tag (code_type_node, name, globalize)
12150 tree code_type_node;
12151 tree name;
12152 int globalize;
12154 enum tag_types tag_code;
12155 enum tree_code code;
12156 int temp = 0;
12157 register tree ref, t;
12158 struct binding_level *b = current_binding_level;
12159 int got_type = 0;
12160 tree attributes = NULL_TREE;
12161 tree context = NULL_TREE;
12163 /* If we are called from the parser, code_type_node will sometimes be a
12164 TREE_LIST. This indicates that the user wrote
12165 "class __attribute__ ((foo)) bar". Extract the attributes so we can
12166 use them later. */
12167 if (TREE_CODE (code_type_node) == TREE_LIST)
12169 attributes = TREE_PURPOSE (code_type_node);
12170 code_type_node = TREE_VALUE (code_type_node);
12173 tag_code = (enum tag_types) TREE_INT_CST_LOW (code_type_node);
12174 switch (tag_code)
12176 case record_type:
12177 case class_type:
12178 code = RECORD_TYPE;
12179 break;
12180 case union_type:
12181 code = UNION_TYPE;
12182 break;
12183 case enum_type:
12184 code = ENUMERAL_TYPE;
12185 break;
12186 default:
12187 my_friendly_abort (18);
12190 /* If a cross reference is requested, look up the type
12191 already defined for this tag and return it. */
12192 if (TREE_CODE_CLASS (TREE_CODE (name)) == 't')
12194 t = name;
12195 name = TYPE_IDENTIFIER (t);
12196 got_type = 1;
12198 else
12199 t = IDENTIFIER_TYPE_VALUE (name);
12201 if (t && TREE_CODE (t) != code && TREE_CODE (t) != TEMPLATE_TYPE_PARM
12202 && TREE_CODE (t) != TEMPLATE_TEMPLATE_PARM)
12203 t = NULL_TREE;
12205 if (! globalize)
12207 /* If we know we are defining this tag, only look it up in
12208 this scope and don't try to find it as a type. */
12209 ref = lookup_tag (code, name, b, 1);
12211 else
12213 if (t)
12215 /* [dcl.type.elab] If the identifier resolves to a
12216 typedef-name or a template type-parameter, the
12217 elaborated-type-specifier is ill-formed. */
12218 if (t != TYPE_MAIN_VARIANT (t)
12219 || (CLASS_TYPE_P (t) && TYPE_WAS_ANONYMOUS (t)))
12220 cp_pedwarn ("using typedef-name `%D' after `%s'",
12221 TYPE_NAME (t), tag_name (tag_code));
12222 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
12223 cp_error ("using template type parameter `%T' after `%s'",
12224 t, tag_name (tag_code));
12226 ref = t;
12228 else
12229 ref = lookup_tag (code, name, b, 0);
12231 if (! ref)
12233 /* Try finding it as a type declaration. If that wins,
12234 use it. */
12235 ref = lookup_name (name, 1);
12237 if (ref != NULL_TREE
12238 && processing_template_decl
12239 && DECL_CLASS_TEMPLATE_P (ref)
12240 && template_class_depth (current_class_type) == 0)
12241 /* Since GLOBALIZE is true, we're declaring a global
12242 template, so we want this type. */
12243 ref = DECL_RESULT (ref);
12245 if (ref && TREE_CODE (ref) == TYPE_DECL
12246 && TREE_CODE (TREE_TYPE (ref)) == code)
12247 ref = TREE_TYPE (ref);
12248 else
12249 ref = NULL_TREE;
12252 if (ref && current_class_type
12253 && template_class_depth (current_class_type)
12254 && PROCESSING_REAL_TEMPLATE_DECL_P ())
12256 /* Since GLOBALIZE is non-zero, we are not looking at a
12257 definition of this tag. Since, in addition, we are currently
12258 processing a (member) template declaration of a template
12259 class, we must be very careful; consider:
12261 template <class X>
12262 struct S1
12264 template <class U>
12265 struct S2
12266 { template <class V>
12267 friend struct S1; };
12269 Here, the S2::S1 declaration should not be confused with the
12270 outer declaration. In particular, the inner version should
12271 have a template parameter of level 2, not level 1. This
12272 would be particularly important if the member declaration
12273 were instead:
12275 template <class V = U> friend struct S1;
12277 say, when we should tsubst into `U' when instantiating
12278 S2. On the other hand, when presented with:
12280 template <class T>
12281 struct S1 {
12282 template <class U>
12283 struct S2 {};
12284 template <class U>
12285 friend struct S2;
12288 we must find the inner binding eventually. We
12289 accomplish this by making sure that the new type we
12290 create to represent this declaration has the right
12291 TYPE_CONTEXT. */
12292 context = TYPE_CONTEXT (ref);
12293 ref = NULL_TREE;
12297 push_obstacks_nochange ();
12299 if (! ref)
12301 /* If no such tag is yet defined, create a forward-reference node
12302 and record it as the "definition".
12303 When a real declaration of this type is found,
12304 the forward-reference will be altered into a real type. */
12306 /* In C++, since these migrate into the global scope, we must
12307 build them on the permanent obstack. */
12309 temp = allocation_temporary_p ();
12310 if (temp)
12311 end_temporary_allocation ();
12313 if (code == ENUMERAL_TYPE)
12315 cp_error ("use of enum `%#D' without previous declaration", name);
12317 ref = make_node (ENUMERAL_TYPE);
12319 /* Give the type a default layout like unsigned int
12320 to avoid crashing if it does not get defined. */
12321 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
12322 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
12323 TREE_UNSIGNED (ref) = 1;
12324 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
12325 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
12326 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
12328 /* Enable us to recognize when a type is created in class context.
12329 To do nested classes correctly, this should probably be cleared
12330 out when we leave this classes scope. Currently this in only
12331 done in `start_enum'. */
12333 pushtag (name, ref, globalize);
12335 else
12337 struct binding_level *old_b = class_binding_level;
12339 ref = make_lang_type (code);
12340 TYPE_CONTEXT (ref) = context;
12342 #ifdef NONNESTED_CLASSES
12343 /* Class types don't nest the way enums do. */
12344 class_binding_level = (struct binding_level *)0;
12345 #endif
12346 pushtag (name, ref, globalize);
12347 class_binding_level = old_b;
12350 else
12352 /* If it no longer looks like a nested type, make sure it's
12353 in global scope.
12354 If it is not an IDENTIFIER, this is not a declaration */
12355 if (b->namespace_p && !class_binding_level
12356 && TREE_CODE (name) == IDENTIFIER_NODE)
12358 if (IDENTIFIER_NAMESPACE_VALUE (name) == NULL_TREE)
12359 SET_IDENTIFIER_NAMESPACE_VALUE (name, TYPE_NAME (ref));
12362 if (!globalize && processing_template_decl && IS_AGGR_TYPE (ref))
12363 redeclare_class_template (ref, current_template_parms);
12366 /* Until the type is defined, tentatively accept whatever
12367 structure tag the user hands us. */
12368 if (TYPE_SIZE (ref) == NULL_TREE
12369 && ref != current_class_type
12370 /* Have to check this, in case we have contradictory tag info. */
12371 && IS_AGGR_TYPE_CODE (TREE_CODE (ref)))
12373 if (tag_code == class_type)
12374 CLASSTYPE_DECLARED_CLASS (ref) = 1;
12375 else if (tag_code == record_type)
12376 CLASSTYPE_DECLARED_CLASS (ref) = 0;
12379 pop_obstacks ();
12381 TREE_TYPE (ref) = attributes;
12383 return ref;
12386 tree
12387 xref_tag_from_type (old, id, globalize)
12388 tree old, id;
12389 int globalize;
12391 tree code_type_node;
12393 if (TREE_CODE (old) == RECORD_TYPE)
12394 code_type_node = (CLASSTYPE_DECLARED_CLASS (old)
12395 ? class_type_node : record_type_node);
12396 else
12397 code_type_node = union_type_node;
12399 if (id == NULL_TREE)
12400 id = TYPE_IDENTIFIER (old);
12402 return xref_tag (code_type_node, id, globalize);
12405 /* REF is a type (named NAME), for which we have just seen some
12406 baseclasses. BINFO is a list of those baseclasses; the
12407 TREE_PURPOSE is an access_* node, and the TREE_VALUE is the type of
12408 the base-class. CODE_TYPE_NODE indicates whether REF is a class,
12409 struct, or union. */
12411 void
12412 xref_basetypes (code_type_node, name, ref, binfo)
12413 tree code_type_node;
12414 tree name, ref;
12415 tree binfo;
12417 /* In the declaration `A : X, Y, ... Z' we mark all the types
12418 (A, X, Y, ..., Z) so we can check for duplicates. */
12419 tree binfos;
12420 tree base;
12422 int i, len;
12423 enum tag_types tag_code = (enum tag_types) TREE_INT_CST_LOW (code_type_node);
12425 if (tag_code == union_type)
12427 cp_error ("derived union `%T' invalid", ref);
12428 return;
12431 len = list_length (binfo);
12432 push_obstacks (TYPE_OBSTACK (ref), TYPE_OBSTACK (ref));
12434 /* First, make sure that any templates in base-classes are
12435 instantiated. This ensures that if we call ourselves recursively
12436 we do not get confused about which classes are marked and which
12437 are not. */
12438 for (base = binfo; base; base = TREE_CHAIN (base))
12439 complete_type (TREE_VALUE (base));
12441 SET_CLASSTYPE_MARKED (ref);
12442 BINFO_BASETYPES (TYPE_BINFO (ref)) = binfos = make_tree_vec (len);
12444 for (i = 0; binfo; binfo = TREE_CHAIN (binfo))
12446 /* The base of a derived struct is public by default. */
12447 int via_public
12448 = (TREE_PURPOSE (binfo) == access_public_node
12449 || TREE_PURPOSE (binfo) == access_public_virtual_node
12450 || (tag_code != class_type
12451 && (TREE_PURPOSE (binfo) == access_default_node
12452 || TREE_PURPOSE (binfo) == access_default_virtual_node)));
12453 int via_protected
12454 = (TREE_PURPOSE (binfo) == access_protected_node
12455 || TREE_PURPOSE (binfo) == access_protected_virtual_node);
12456 int via_virtual
12457 = (TREE_PURPOSE (binfo) == access_private_virtual_node
12458 || TREE_PURPOSE (binfo) == access_protected_virtual_node
12459 || TREE_PURPOSE (binfo) == access_public_virtual_node
12460 || TREE_PURPOSE (binfo) == access_default_virtual_node);
12461 tree basetype = TREE_VALUE (binfo);
12462 tree base_binfo;
12464 if (basetype && TREE_CODE (basetype) == TYPE_DECL)
12465 basetype = TREE_TYPE (basetype);
12466 if (!basetype
12467 || (TREE_CODE (basetype) != RECORD_TYPE
12468 && TREE_CODE (basetype) != TYPENAME_TYPE
12469 && TREE_CODE (basetype) != TEMPLATE_TYPE_PARM
12470 && TREE_CODE (basetype) != TEMPLATE_TEMPLATE_PARM))
12472 cp_error ("base type `%T' fails to be a struct or class type",
12473 TREE_VALUE (binfo));
12474 continue;
12477 GNU_xref_hier (name, basetype, via_public, via_virtual, 0);
12479 /* This code replaces similar code in layout_basetypes.
12480 We put the complete_type first for implicit `typename'. */
12481 if (TYPE_SIZE (basetype) == NULL_TREE
12482 && ! (current_template_parms && uses_template_parms (basetype)))
12484 cp_error ("base class `%T' has incomplete type", basetype);
12485 continue;
12487 else
12489 if (CLASSTYPE_MARKED (basetype))
12491 if (basetype == ref)
12492 cp_error ("recursive type `%T' undefined", basetype);
12493 else
12494 cp_error ("duplicate base type `%T' invalid", basetype);
12495 continue;
12498 if (TYPE_FOR_JAVA (basetype)
12499 && (current_lang_stack
12500 == &VARRAY_TREE (current_lang_base, 0)))
12501 TYPE_FOR_JAVA (ref) = 1;
12503 /* Note that the BINFO records which describe individual
12504 inheritances are *not* shared in the lattice! They
12505 cannot be shared because a given baseclass may be
12506 inherited with different `accessibility' by different
12507 derived classes. (Each BINFO record describing an
12508 individual inheritance contains flags which say what
12509 the `accessibility' of that particular inheritance is.) */
12511 base_binfo
12512 = make_binfo (integer_zero_node, basetype,
12513 CLASS_TYPE_P (basetype)
12514 ? TYPE_BINFO_VTABLE (basetype) : NULL_TREE,
12515 CLASS_TYPE_P (basetype)
12516 ? TYPE_BINFO_VIRTUALS (basetype) : NULL_TREE);
12518 TREE_VEC_ELT (binfos, i) = base_binfo;
12519 TREE_VIA_PUBLIC (base_binfo) = via_public;
12520 TREE_VIA_PROTECTED (base_binfo) = via_protected;
12521 TREE_VIA_VIRTUAL (base_binfo) = via_virtual;
12522 BINFO_INHERITANCE_CHAIN (base_binfo) = TYPE_BINFO (ref);
12524 /* We need to unshare the binfos now so that lookups during class
12525 definition work. */
12526 unshare_base_binfos (base_binfo);
12528 SET_CLASSTYPE_MARKED (basetype);
12530 /* We are free to modify these bits because they are meaningless
12531 at top level, and BASETYPE is a top-level type. */
12532 if (via_virtual || TYPE_USES_VIRTUAL_BASECLASSES (basetype))
12534 TYPE_USES_VIRTUAL_BASECLASSES (ref) = 1;
12535 TYPE_USES_COMPLEX_INHERITANCE (ref) = 1;
12538 if (CLASS_TYPE_P (basetype))
12540 TYPE_GETS_NEW (ref) |= TYPE_GETS_NEW (basetype);
12541 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
12544 i += 1;
12547 if (i)
12548 TREE_VEC_LENGTH (binfos) = i;
12549 else
12550 BINFO_BASETYPES (TYPE_BINFO (ref)) = NULL_TREE;
12552 if (i > 1)
12553 TYPE_USES_MULTIPLE_INHERITANCE (ref) = 1;
12554 else if (i == 1)
12556 tree basetype = BINFO_TYPE (TREE_VEC_ELT (binfos, 0));
12558 if (CLASS_TYPE_P (basetype))
12559 TYPE_USES_MULTIPLE_INHERITANCE (ref)
12560 = TYPE_USES_MULTIPLE_INHERITANCE (basetype);
12563 if (TYPE_USES_MULTIPLE_INHERITANCE (ref))
12564 TYPE_USES_COMPLEX_INHERITANCE (ref) = 1;
12566 /* Unmark all the types. */
12567 while (--i >= 0)
12568 CLEAR_CLASSTYPE_MARKED (BINFO_TYPE (TREE_VEC_ELT (binfos, i)));
12569 CLEAR_CLASSTYPE_MARKED (ref);
12571 /* Now that we know all the base-classes, set up the list of virtual
12572 bases. */
12573 CLASSTYPE_VBASECLASSES (ref) = get_vbase_types (ref);
12575 pop_obstacks ();
12579 /* Begin compiling the definition of an enumeration type.
12580 NAME is its name (or null if anonymous).
12581 Returns the type object, as yet incomplete.
12582 Also records info about it so that build_enumerator
12583 may be used to declare the individual values as they are read. */
12585 tree
12586 start_enum (name)
12587 tree name;
12589 register tree enumtype = NULL_TREE;
12590 struct binding_level *b = current_binding_level;
12592 /* We are wasting space here and putting these on the permanent_obstack so
12593 that typeid(local enum) will work correctly. */
12594 push_obstacks (&permanent_obstack, &permanent_obstack);
12596 /* If this is the real definition for a previous forward reference,
12597 fill in the contents in the same object that used to be the
12598 forward reference. */
12600 if (name != NULL_TREE)
12601 enumtype = lookup_tag (ENUMERAL_TYPE, name, b, 1);
12603 if (enumtype != NULL_TREE && TREE_CODE (enumtype) == ENUMERAL_TYPE)
12605 cp_error ("multiple definition of `%#T'", enumtype);
12606 cp_error_at ("previous definition here", enumtype);
12608 else
12610 enumtype = make_node (ENUMERAL_TYPE);
12611 pushtag (name, enumtype, 0);
12614 if (current_class_type)
12615 TREE_ADDRESSABLE (b->tags) = 1;
12617 /* We don't copy this value because build_enumerator needs to do it. */
12618 enum_next_value = integer_zero_node;
12619 enum_overflow = 0;
12621 GNU_xref_decl (current_function_decl, enumtype);
12622 return enumtype;
12625 /* After processing and defining all the values of an enumeration type,
12626 install their decls in the enumeration type and finish it off.
12627 ENUMTYPE is the type object and VALUES a list of name-value pairs.
12628 Returns ENUMTYPE. */
12630 tree
12631 finish_enum (enumtype)
12632 tree enumtype;
12634 register tree minnode = NULL_TREE, maxnode = NULL_TREE;
12635 /* Calculate the maximum value of any enumerator in this type. */
12637 tree values = TYPE_VALUES (enumtype);
12638 if (values)
12640 tree pair;
12642 for (pair = values; pair; pair = TREE_CHAIN (pair))
12644 tree decl;
12645 tree value;
12647 /* The TREE_VALUE is a CONST_DECL for this enumeration
12648 constant. */
12649 decl = TREE_VALUE (pair);
12651 /* The DECL_INITIAL will be NULL if we are processing a
12652 template declaration and this enumeration constant had no
12653 explicit initializer. */
12654 value = DECL_INITIAL (decl);
12655 if (value && !processing_template_decl)
12657 /* Set the TREE_TYPE for the VALUE as well. That's so
12658 that when we call decl_constant_value we get an
12659 entity of the right type (but with the constant
12660 value). Since we shouldn't ever call
12661 decl_constant_value on a template type, there's no
12662 reason to do that when processing_template_decl.
12663 And, if the expression is something like a
12664 TEMPLATE_PARM_INDEX or a CAST_EXPR doing so will
12665 wreak havoc on the intended type of the expression.
12667 Of course, there's also no point in trying to compute
12668 minimum or maximum values if we're in a template. */
12669 TREE_TYPE (value) = enumtype;
12671 if (!minnode)
12672 minnode = maxnode = value;
12673 else if (tree_int_cst_lt (maxnode, value))
12674 maxnode = value;
12675 else if (tree_int_cst_lt (value, minnode))
12676 minnode = value;
12679 if (processing_template_decl)
12680 /* If this is just a template, leave the CONST_DECL
12681 alone. That way tsubst_copy will find CONST_DECLs for
12682 CONST_DECLs, and not INTEGER_CSTs. */
12684 else
12685 /* In the list we're building up, we want the enumeration
12686 values, not the CONST_DECLs. */
12687 TREE_VALUE (pair) = value;
12690 else
12691 maxnode = minnode = integer_zero_node;
12693 TYPE_VALUES (enumtype) = nreverse (values);
12695 if (processing_template_decl)
12697 tree scope = current_scope ();
12698 if (scope && TREE_CODE (scope) == FUNCTION_DECL)
12699 add_tree (build_min (TAG_DEFN, enumtype));
12701 else
12703 int unsignedp = tree_int_cst_sgn (minnode) >= 0;
12704 int lowprec = min_precision (minnode, unsignedp);
12705 int highprec = min_precision (maxnode, unsignedp);
12706 int precision = MAX (lowprec, highprec);
12707 tree tem;
12709 TYPE_SIZE (enumtype) = NULL_TREE;
12711 /* Set TYPE_MIN_VALUE and TYPE_MAX_VALUE according to `precision'. */
12713 TYPE_PRECISION (enumtype) = precision;
12714 if (unsignedp)
12715 fixup_unsigned_type (enumtype);
12716 else
12717 fixup_signed_type (enumtype);
12719 if (flag_short_enums || (precision > TYPE_PRECISION (integer_type_node)))
12720 /* Use the width of the narrowest normal C type which is wide
12721 enough. */
12722 TYPE_PRECISION (enumtype) = TYPE_PRECISION (type_for_size
12723 (precision, 1));
12724 else
12725 TYPE_PRECISION (enumtype) = TYPE_PRECISION (integer_type_node);
12727 TYPE_SIZE (enumtype) = 0;
12728 layout_type (enumtype);
12730 /* Fix up all variant types of this enum type. */
12731 for (tem = TYPE_MAIN_VARIANT (enumtype); tem;
12732 tem = TYPE_NEXT_VARIANT (tem))
12734 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
12735 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
12736 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
12737 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
12738 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
12739 TYPE_MODE (tem) = TYPE_MODE (enumtype);
12740 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
12741 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
12742 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
12745 /* Finish debugging output for this type. */
12746 rest_of_type_compilation (enumtype, namespace_bindings_p ());
12749 /* In start_enum we pushed obstacks. Here, we must pop them. */
12750 pop_obstacks ();
12752 return enumtype;
12755 /* Build and install a CONST_DECL for an enumeration constant of the
12756 enumeration type TYPE whose NAME and VALUE (if any) are provided.
12757 Assignment of sequential values by default is handled here. */
12759 tree
12760 build_enumerator (name, value, type)
12761 tree name;
12762 tree value;
12763 tree type;
12765 tree decl, result;
12766 tree context;
12768 /* Remove no-op casts from the value. */
12769 if (value)
12770 STRIP_TYPE_NOPS (value);
12772 if (! processing_template_decl)
12774 /* Validate and default VALUE. */
12775 if (value != NULL_TREE)
12777 if (TREE_READONLY_DECL_P (value))
12778 value = decl_constant_value (value);
12780 if (TREE_CODE (value) == INTEGER_CST)
12782 value = default_conversion (value);
12783 constant_expression_warning (value);
12785 else
12787 cp_error ("enumerator value for `%D' not integer constant", name);
12788 value = NULL_TREE;
12792 /* Default based on previous value. */
12793 if (value == NULL_TREE && ! processing_template_decl)
12795 value = enum_next_value;
12796 if (enum_overflow)
12797 cp_error ("overflow in enumeration values at `%D'", name);
12800 /* Remove no-op casts from the value. */
12801 if (value)
12802 STRIP_TYPE_NOPS (value);
12803 #if 0
12804 /* To fix MAX_VAL enum consts. (bkoz) */
12805 TREE_TYPE (value) = integer_type_node;
12806 #endif
12809 /* We always have to copy here; not all INTEGER_CSTs are unshared.
12810 Even in other cases, we will later (in finish_enum) be setting the
12811 type of VALUE. */
12812 if (value != NULL_TREE)
12813 value = copy_node (value);
12815 /* C++ associates enums with global, function, or class declarations. */
12817 context = current_scope ();
12818 if (context && context == current_class_type)
12819 /* This enum declaration is local to the class. */
12820 decl = build_lang_decl (CONST_DECL, name, type);
12821 else
12822 /* It's a global enum, or it's local to a function. (Note local to
12823 a function could mean local to a class method. */
12824 decl = build_decl (CONST_DECL, name, type);
12826 DECL_CONTEXT (decl) = FROB_CONTEXT (context);
12827 DECL_INITIAL (decl) = value;
12828 TREE_READONLY (decl) = 1;
12830 if (context && context == current_class_type)
12831 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
12832 on the TYPE_FIELDS list for `S'. (That's so that you can say
12833 things like `S::i' later.) */
12834 finish_member_declaration (decl);
12835 else
12837 pushdecl (decl);
12838 GNU_xref_decl (current_function_decl, decl);
12841 if (! processing_template_decl)
12843 /* Set basis for default for next value. */
12844 enum_next_value = build_binary_op_nodefault (PLUS_EXPR, value,
12845 integer_one_node, PLUS_EXPR);
12846 enum_overflow = tree_int_cst_lt (enum_next_value, value);
12849 result = saveable_tree_cons (name, decl, NULL_TREE);
12850 return result;
12854 static int function_depth;
12856 /* Create the FUNCTION_DECL for a function definition.
12857 DECLSPECS and DECLARATOR are the parts of the declaration;
12858 they describe the function's name and the type it returns,
12859 but twisted together in a fashion that parallels the syntax of C.
12861 If PRE_PARSED_P is non-zero then DECLARATOR is really the DECL for
12862 the function we are about to process; DECLSPECS are ignored. For
12863 example, we set PRE_PARSED_P when processing the definition of
12864 inline function that was defined in-class; the definition is
12865 actually processed when the class is complete. In this case,
12866 PRE_PARSED_P is 2. We also set PRE_PARSED_P when instanting the
12867 body of a template function, and when constructing thunk functions
12868 and such; in these cases PRE_PARSED_P is 1.
12870 This function creates a binding context for the function body
12871 as well as setting up the FUNCTION_DECL in current_function_decl.
12873 Returns 1 on success. If the DECLARATOR is not suitable for a function
12874 (it defines a datum instead), we return 0, which tells
12875 yyparse to report a parse error.
12877 For C++, we must first check whether that datum makes any sense.
12878 For example, "class A local_a(1,2);" means that variable local_a
12879 is an aggregate of type A, which should have a constructor
12880 applied to it with the argument list [1, 2]. */
12883 start_function (declspecs, declarator, attrs, pre_parsed_p)
12884 tree declspecs, declarator, attrs;
12885 int pre_parsed_p;
12887 tree decl1;
12888 tree ctype = NULL_TREE;
12889 tree fntype;
12890 tree restype;
12891 extern int have_extern_spec;
12892 extern int used_extern_spec;
12893 int doing_friend = 0;
12895 /* Sanity check. */
12896 my_friendly_assert (TREE_CODE (TREE_VALUE (void_list_node)) == VOID_TYPE, 160);
12897 my_friendly_assert (TREE_CHAIN (void_list_node) == NULL_TREE, 161);
12899 /* Assume, until we see it does. */
12900 current_function_returns_value = 0;
12901 current_function_returns_null = 0;
12902 named_labels = 0;
12903 current_function_assigns_this = 0;
12904 current_function_just_assigned_this = 0;
12905 current_function_parms_stored = 0;
12906 last_dtor_insn = NULL_RTX;
12907 last_parm_cleanup_insn = NULL_RTX;
12908 original_result_rtx = NULL_RTX;
12909 base_init_expr = NULL_TREE;
12910 current_base_init_list = NULL_TREE;
12911 current_member_init_list = NULL_TREE;
12912 ctor_label = dtor_label = NULL_TREE;
12913 static_labelno = 0;
12914 in_function_try_handler = 0;
12916 clear_temp_name ();
12918 /* This should only be done once on the top most decl. */
12919 if (have_extern_spec && !used_extern_spec)
12921 declspecs = decl_tree_cons (NULL_TREE, get_identifier ("extern"), declspecs);
12922 used_extern_spec = 1;
12925 if (pre_parsed_p)
12927 decl1 = declarator;
12929 fntype = TREE_TYPE (decl1);
12930 if (TREE_CODE (fntype) == METHOD_TYPE)
12931 ctype = TYPE_METHOD_BASETYPE (fntype);
12933 /* ANSI C++ June 5 1992 WP 11.4.5. A friend function defined in a
12934 class is in the (lexical) scope of the class in which it is
12935 defined. */
12936 if (!ctype && DECL_FRIEND_P (decl1))
12938 ctype = DECL_CLASS_CONTEXT (decl1);
12940 /* CTYPE could be null here if we're dealing with a template;
12941 for example, `inline friend float foo()' inside a template
12942 will have no CTYPE set. */
12943 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
12944 ctype = NULL_TREE;
12945 else
12946 doing_friend = 1;
12949 last_function_parms = DECL_ARGUMENTS (decl1);
12950 last_function_parm_tags = NULL_TREE;
12952 else
12954 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, NULL_TREE);
12955 /* If the declarator is not suitable for a function definition,
12956 cause a syntax error. */
12957 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL) return 0;
12959 fntype = TREE_TYPE (decl1);
12961 restype = TREE_TYPE (fntype);
12962 if (CLASS_TYPE_P (restype) && !CLASSTYPE_GOT_SEMICOLON (restype))
12964 cp_error ("semicolon missing after declaration of `%#T'", restype);
12965 shadow_tag (build_expr_list (NULL_TREE, restype));
12966 CLASSTYPE_GOT_SEMICOLON (restype) = 1;
12967 if (TREE_CODE (fntype) == FUNCTION_TYPE)
12968 fntype = build_function_type (integer_type_node,
12969 TYPE_ARG_TYPES (fntype));
12970 else
12971 fntype = build_cplus_method_type (build_type_variant (TYPE_METHOD_BASETYPE (fntype), TREE_READONLY (decl1), TREE_SIDE_EFFECTS (decl1)),
12972 integer_type_node,
12973 TYPE_ARG_TYPES (fntype));
12974 TREE_TYPE (decl1) = fntype;
12977 if (TREE_CODE (fntype) == METHOD_TYPE)
12978 ctype = TYPE_METHOD_BASETYPE (fntype);
12979 else if (DECL_MAIN_P (decl1))
12981 /* If this doesn't return integer_type, complain. */
12982 if (TREE_TYPE (TREE_TYPE (decl1)) != integer_type_node)
12984 if (pedantic || warn_return_type)
12985 pedwarn ("return type for `main' changed to `int'");
12986 TREE_TYPE (decl1) = fntype = default_function_type;
12991 /* Warn if function was previously implicitly declared
12992 (but not if we warned then). */
12993 if (! warn_implicit
12994 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)) != NULL_TREE)
12995 cp_warning_at ("`%D' implicitly declared before its definition", IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)));
12997 if (!building_stmt_tree ())
12998 announce_function (decl1);
13000 /* Set up current_class_type, and enter the scope of the class, if
13001 appropriate. */
13002 if (ctype)
13003 push_nested_class (ctype, 1);
13004 else if (DECL_STATIC_FUNCTION_P (decl1))
13005 push_nested_class (DECL_CONTEXT (decl1), 2);
13007 /* Now that we have entered the scope of the class, we must restore
13008 the bindings for any template parameters surrounding DECL1, if it
13009 is an inline member template. (Order is important; consider the
13010 case where a template parameter has the same name as a field of
13011 the class.) It is not until after this point that
13012 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
13013 if (pre_parsed_p == 2)
13014 maybe_begin_member_template_processing (decl1);
13016 /* Effective C++ rule 15. See also c_expand_return. */
13017 if (warn_ecpp
13018 && DECL_NAME (decl1) == ansi_opname[(int) MODIFY_EXPR]
13019 && TREE_CODE (TREE_TYPE (fntype)) == VOID_TYPE)
13020 cp_warning ("`operator=' should return a reference to `*this'");
13022 /* Make the init_value nonzero so pushdecl knows this is not tentative.
13023 error_mark_node is replaced below (in poplevel) with the BLOCK. */
13024 DECL_INITIAL (decl1) = error_mark_node;
13026 #ifdef SET_DEFAULT_DECL_ATTRIBUTES
13027 SET_DEFAULT_DECL_ATTRIBUTES (decl1, attrs);
13028 #endif
13030 /* This function exists in static storage.
13031 (This does not mean `static' in the C sense!) */
13032 TREE_STATIC (decl1) = 1;
13034 /* We must call push_template_decl after current_class_type is set
13035 up. (If we are processing inline definitions after exiting a
13036 class scope, current_class_type will be NULL_TREE until set above
13037 by push_nested_class.) */
13038 if (processing_template_decl)
13039 decl1 = push_template_decl (decl1);
13041 /* We are now in the scope of the function being defined. */
13042 current_function_decl = decl1;
13044 /* Save the parm names or decls from this function's declarator
13045 where store_parm_decls will find them. */
13046 current_function_parms = last_function_parms;
13047 current_function_parm_tags = last_function_parm_tags;
13049 if (! processing_template_decl)
13051 /* In a function definition, arg types must be complete. */
13052 require_complete_types_for_parms (current_function_parms);
13054 if (TYPE_SIZE (complete_type (TREE_TYPE (fntype))) == NULL_TREE)
13056 cp_error ("return-type `%#T' is an incomplete type",
13057 TREE_TYPE (fntype));
13059 /* Make it return void instead, but don't change the
13060 type of the DECL_RESULT, in case we have a named return value. */
13061 if (ctype)
13062 TREE_TYPE (decl1)
13063 = build_cplus_method_type (build_type_variant (ctype,
13064 TREE_READONLY (decl1),
13065 TREE_SIDE_EFFECTS (decl1)),
13066 void_type_node,
13067 FUNCTION_ARG_CHAIN (decl1));
13068 else
13069 TREE_TYPE (decl1)
13070 = build_function_type (void_type_node,
13071 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
13072 DECL_RESULT (decl1)
13073 = build_decl (RESULT_DECL, 0, TYPE_MAIN_VARIANT (TREE_TYPE (fntype)));
13074 TREE_READONLY (DECL_RESULT (decl1))
13075 = CP_TYPE_CONST_P (TREE_TYPE (fntype));
13076 TREE_THIS_VOLATILE (DECL_RESULT (decl1))
13077 = CP_TYPE_VOLATILE_P (TREE_TYPE (fntype));
13080 abstract_virtuals_error (decl1, TREE_TYPE (fntype));
13083 /* Record the decl so that the function name is defined.
13084 If we already have a decl for this name, and it is a FUNCTION_DECL,
13085 use the old decl. */
13086 if (!processing_template_decl && pre_parsed_p == 0)
13088 /* A specialization is not used to guide overload resolution. */
13089 if ((flag_guiding_decls
13090 || !DECL_TEMPLATE_SPECIALIZATION (decl1))
13091 && ! DECL_FUNCTION_MEMBER_P (decl1))
13092 decl1 = pushdecl (decl1);
13093 else
13095 /* We need to set the DECL_CONTEXT. */
13096 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
13097 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
13098 /* And make sure we have enough default args. */
13099 check_default_args (decl1);
13101 DECL_MAIN_VARIANT (decl1) = decl1;
13102 fntype = TREE_TYPE (decl1);
13105 current_function_decl = decl1;
13107 if (DECL_INTERFACE_KNOWN (decl1))
13109 tree ctx = hack_decl_function_context (decl1);
13111 if (DECL_NOT_REALLY_EXTERN (decl1))
13112 DECL_EXTERNAL (decl1) = 0;
13114 if (ctx != NULL_TREE && DECL_THIS_INLINE (ctx)
13115 && TREE_PUBLIC (ctx))
13116 /* This is a function in a local class in an extern inline
13117 function. */
13118 comdat_linkage (decl1);
13120 /* If this function belongs to an interface, it is public.
13121 If it belongs to someone else's interface, it is also external.
13122 This only affects inlines and template instantiations. */
13123 else if (interface_unknown == 0
13124 && (! DECL_TEMPLATE_INSTANTIATION (decl1)
13125 || flag_alt_external_templates))
13127 if (DECL_THIS_INLINE (decl1) || DECL_TEMPLATE_INSTANTIATION (decl1)
13128 || processing_template_decl)
13130 DECL_EXTERNAL (decl1)
13131 = (interface_only
13132 || (DECL_THIS_INLINE (decl1) && ! flag_implement_inlines
13133 && !DECL_VINDEX (decl1)));
13135 /* For WIN32 we also want to put these in linkonce sections. */
13136 maybe_make_one_only (decl1);
13138 else
13139 DECL_EXTERNAL (decl1) = 0;
13140 DECL_NOT_REALLY_EXTERN (decl1) = 0;
13141 DECL_INTERFACE_KNOWN (decl1) = 1;
13143 else if (interface_unknown && interface_only
13144 && (! DECL_TEMPLATE_INSTANTIATION (decl1)
13145 || flag_alt_external_templates))
13147 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
13148 interface, we will have interface_only set but not
13149 interface_known. In that case, we don't want to use the normal
13150 heuristics because someone will supply a #pragma implementation
13151 elsewhere, and deducing it here would produce a conflict. */
13152 comdat_linkage (decl1);
13153 DECL_EXTERNAL (decl1) = 0;
13154 DECL_INTERFACE_KNOWN (decl1) = 1;
13155 DECL_DEFER_OUTPUT (decl1) = 1;
13157 else
13159 /* This is a definition, not a reference.
13160 So clear DECL_EXTERNAL. */
13161 DECL_EXTERNAL (decl1) = 0;
13163 if ((DECL_THIS_INLINE (decl1) || DECL_TEMPLATE_INSTANTIATION (decl1))
13164 && ! DECL_INTERFACE_KNOWN (decl1)
13165 /* Don't try to defer nested functions for now. */
13166 && ! hack_decl_function_context (decl1))
13167 DECL_DEFER_OUTPUT (decl1) = 1;
13168 else
13169 DECL_INTERFACE_KNOWN (decl1) = 1;
13172 if (ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1))
13174 if (TREE_CODE (fntype) == METHOD_TYPE)
13175 TREE_TYPE (decl1) = fntype
13176 = build_function_type (TREE_TYPE (fntype),
13177 TREE_CHAIN (TYPE_ARG_TYPES (fntype)));
13178 current_function_parms = TREE_CHAIN (current_function_parms);
13179 DECL_ARGUMENTS (decl1) = current_function_parms;
13180 ctype = NULL_TREE;
13182 restype = TREE_TYPE (fntype);
13184 if (ctype)
13186 /* If we're compiling a friend function, neither of the variables
13187 current_class_ptr nor current_class_type will have values. */
13188 if (! doing_friend)
13190 /* We know that this was set up by `grokclassfn'.
13191 We do not wait until `store_parm_decls', since evil
13192 parse errors may never get us to that point. Here
13193 we keep the consistency between `current_class_type'
13194 and `current_class_ptr'. */
13195 tree t = current_function_parms;
13196 int i;
13198 my_friendly_assert (t != NULL_TREE
13199 && TREE_CODE (t) == PARM_DECL, 162);
13200 my_friendly_assert (TREE_CODE (TREE_TYPE (t)) == POINTER_TYPE,
13201 19990811);
13203 if (! hack_decl_function_context (decl1))
13204 temporary_allocation ();
13205 i = suspend_momentary ();
13207 /* Normally, build_indirect_ref returns current_class_ref
13208 whenever current_class_ptr is dereferenced. This time,
13209 however, we want it to *create* current_class_ref, so we
13210 temporarily clear current_class_ptr to fool it. */
13211 current_class_ptr = NULL_TREE;
13212 current_class_ref = build_indirect_ref (t, NULL_PTR);
13213 current_class_ptr = t;
13215 resume_momentary (i);
13216 if (! hack_decl_function_context (decl1))
13217 end_temporary_allocation ();
13220 else
13221 current_class_ptr = current_class_ref = NULL_TREE;
13223 pushlevel (0);
13224 current_binding_level->parm_flag = 1;
13226 if (attrs)
13227 cplus_decl_attributes (decl1, NULL_TREE, attrs);
13229 if (!building_stmt_tree ())
13231 GNU_xref_function (decl1, current_function_parms);
13232 make_function_rtl (decl1);
13235 /* Promote the value to int before returning it. */
13236 if (C_PROMOTING_INTEGER_TYPE_P (restype))
13237 restype = type_promotes_to (restype);
13239 /* If this fcn was already referenced via a block-scope `extern' decl
13240 (or an implicit decl), propagate certain information about the usage. */
13241 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (decl1)))
13242 TREE_ADDRESSABLE (decl1) = 1;
13244 if (DECL_RESULT (decl1) == NULL_TREE)
13246 DECL_RESULT (decl1)
13247 = build_decl (RESULT_DECL, 0, TYPE_MAIN_VARIANT (restype));
13248 TREE_READONLY (DECL_RESULT (decl1)) = CP_TYPE_CONST_P (restype);
13249 TREE_THIS_VOLATILE (DECL_RESULT (decl1)) = CP_TYPE_VOLATILE_P (restype);
13252 /* Allocate further tree nodes temporarily during compilation
13253 of this function only. Tiemann moved up here from bottom of fn. */
13254 /* If this is a nested function, then we must continue to allocate RTL
13255 on the permanent obstack in case we need to inline it later. */
13256 if (! hack_decl_function_context (decl1))
13257 temporary_allocation ();
13259 /* Make sure that we always have a momntary obstack while we're in a
13260 function body. */
13261 push_momentary ();
13263 if (building_stmt_tree ())
13264 begin_stmt_tree (decl1);
13266 ++function_depth;
13268 if (DESTRUCTOR_NAME_P (DECL_ASSEMBLER_NAME (decl1))
13269 && DECL_LANGUAGE (decl1) == lang_cplusplus)
13271 dtor_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
13272 ctor_label = NULL_TREE;
13274 else
13276 dtor_label = NULL_TREE;
13277 if (DECL_CONSTRUCTOR_P (decl1))
13278 ctor_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
13281 return 1;
13284 /* Called after store_parm_decls for a function-try-block. We need to update
13285 last_parm_cleanup_insn so that the base initializers for a constructor
13286 are run within this block, not before it. */
13288 void
13289 expand_start_early_try_stmts ()
13291 expand_start_try_stmts ();
13292 last_parm_cleanup_insn = get_last_insn ();
13295 /* Store the parameter declarations into the current function declaration.
13296 This is called after parsing the parameter declarations, before
13297 digesting the body of the function.
13299 Also install to binding contour return value identifier, if any. */
13301 void
13302 store_parm_decls ()
13304 register tree fndecl = current_function_decl;
13305 register tree parm;
13306 int parms_have_cleanups = 0;
13307 tree cleanups = NULL_TREE;
13309 /* This is either a chain of PARM_DECLs (when a prototype is used). */
13310 tree specparms = current_function_parms;
13312 /* This is a list of types declared among parms in a prototype. */
13313 tree parmtags = current_function_parm_tags;
13315 /* This is a chain of any other decls that came in among the parm
13316 declarations. If a parm is declared with enum {foo, bar} x;
13317 then CONST_DECLs for foo and bar are put here. */
13318 tree nonparms = NULL_TREE;
13320 if (toplevel_bindings_p ())
13321 fatal ("parse errors have confused me too much");
13323 /* Initialize RTL machinery. */
13324 init_function_start (fndecl, input_filename, lineno);
13325 /* Even though we're inside a function body, we still don't want to
13326 call expand_expr to calculate the size of a variable-sized array.
13327 We haven't necessarily assigned RTL to all variables yet, so it's
13328 not safe to try to expand expressions involving them. */
13329 immediate_size_expand = 0;
13330 get_pending_sizes ();
13332 /* Create a binding level for the parms. */
13333 expand_start_bindings (0);
13335 if (specparms != NULL_TREE)
13337 /* This case is when the function was defined with an ANSI prototype.
13338 The parms already have decls, so we need not do anything here
13339 except record them as in effect
13340 and complain if any redundant old-style parm decls were written. */
13342 register tree next;
13344 /* Must clear this because it might contain TYPE_DECLs declared
13345 at class level. */
13346 storedecls (NULL_TREE);
13348 for (parm = nreverse (specparms); parm; parm = next)
13350 next = TREE_CHAIN (parm);
13351 if (TREE_CODE (parm) == PARM_DECL)
13353 tree cleanup;
13354 if (DECL_NAME (parm) == NULL_TREE)
13356 pushdecl (parm);
13358 else if (TREE_CODE (TREE_TYPE (parm)) == VOID_TYPE)
13359 cp_error ("parameter `%D' declared void", parm);
13360 else
13362 /* Now fill in DECL_REFERENCE_SLOT for any of the parm decls.
13363 A parameter is assumed not to have any side effects.
13364 If this should change for any reason, then this
13365 will have to wrap the bashed reference type in a save_expr.
13367 Also, if the parameter type is declared to be an X
13368 and there is an X(X&) constructor, we cannot lay it
13369 into the stack (any more), so we make this parameter
13370 look like it is really of reference type. Functions
13371 which pass parameters to this function will know to
13372 create a temporary in their frame, and pass a reference
13373 to that. */
13375 if (TREE_CODE (TREE_TYPE (parm)) == REFERENCE_TYPE
13376 && TYPE_SIZE (TREE_TYPE (TREE_TYPE (parm))))
13377 SET_DECL_REFERENCE_SLOT (parm, convert_from_reference (parm));
13379 pushdecl (parm);
13381 if (! building_stmt_tree ()
13382 && (cleanup = maybe_build_cleanup (parm), cleanup))
13384 expand_decl (parm);
13385 parms_have_cleanups = 1;
13387 /* Keep track of the cleanups. */
13388 cleanups = tree_cons (parm, cleanup, cleanups);
13391 else
13393 /* If we find an enum constant or a type tag,
13394 put it aside for the moment. */
13395 TREE_CHAIN (parm) = NULL_TREE;
13396 nonparms = chainon (nonparms, parm);
13400 /* Get the decls in their original chain order
13401 and record in the function. This is all and only the
13402 PARM_DECLs that were pushed into scope by the loop above. */
13403 DECL_ARGUMENTS (fndecl) = getdecls ();
13405 storetags (chainon (parmtags, gettags ()));
13407 else
13408 DECL_ARGUMENTS (fndecl) = NULL_TREE;
13410 /* Now store the final chain of decls for the arguments
13411 as the decl-chain of the current lexical scope.
13412 Put the enumerators in as well, at the front so that
13413 DECL_ARGUMENTS is not modified. */
13415 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
13417 /* Declare __FUNCTION__ and __PRETTY_FUNCTION__ for this function. */
13418 declare_function_name ();
13420 /* Initialize the RTL code for the function. */
13421 DECL_SAVED_INSNS (fndecl) = 0;
13422 if (! building_stmt_tree ())
13423 expand_function_start (fndecl, parms_have_cleanups);
13425 current_function_parms_stored = 1;
13427 /* If this function is `main', emit a call to `__main'
13428 to run global initializers, etc. */
13429 if (DECL_MAIN_P (fndecl) && !building_stmt_tree ())
13430 expand_main_function ();
13432 /* Now that we have initialized the parms, we can start their
13433 cleanups. We cannot do this before, since expand_decl_cleanup
13434 should not be called before the parm can be used. */
13435 if (cleanups && !building_stmt_tree ())
13437 for (cleanups = nreverse (cleanups); cleanups; cleanups = TREE_CHAIN (cleanups))
13439 if (! expand_decl_cleanup (TREE_PURPOSE (cleanups), TREE_VALUE (cleanups)))
13440 cp_error ("parser lost in parsing declaration of `%D'",
13441 TREE_PURPOSE (cleanups));
13445 /* Create a binding contour which can be used to catch
13446 cleanup-generated temporaries. Also, if the return value needs or
13447 has initialization, deal with that now. */
13448 if (parms_have_cleanups)
13450 pushlevel (0);
13451 if (!building_stmt_tree ())
13452 expand_start_bindings (0);
13455 if (! building_stmt_tree () && flag_exceptions)
13457 /* Do the starting of the exception specifications, if we have any. */
13458 if (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (current_function_decl)))
13459 expand_start_eh_spec ();
13462 last_parm_cleanup_insn = get_last_insn ();
13463 last_dtor_insn = get_last_insn ();
13466 /* Bind a name and initialization to the return value of
13467 the current function. */
13469 void
13470 store_return_init (decl)
13471 tree decl;
13473 /* If this named return value comes in a register, put it in a
13474 pseudo-register. */
13475 if (DECL_REGISTER (decl))
13477 original_result_rtx = DECL_RTL (decl);
13478 DECL_RTL (decl) = gen_reg_rtx (DECL_MODE (decl));
13483 /* Finish up a function declaration and compile that function
13484 all the way to assembler language output. The free the storage
13485 for the function definition.
13487 This is called after parsing the body of the function definition.
13488 LINENO is the current line number.
13490 FLAGS is a bitwise or of the following values:
13491 1 - CALL_POPLEVEL
13492 An extra call to poplevel (and expand_end_bindings) must be
13493 made to take care of the binding contour for the base
13494 initializers. This is only relevant for constructors.
13495 2 - INCLASS_INLINE
13496 We just finished processing the body of an in-class inline
13497 function definition. (This processing will have taken place
13498 after the class definition is complete.) */
13500 void
13501 finish_function (lineno, flags)
13502 int lineno;
13503 int flags;
13505 register tree fndecl = current_function_decl;
13506 tree fntype, ctype = NULL_TREE;
13507 rtx fn_last_parm_insn, insns;
13508 /* Label to use if this function is supposed to return a value. */
13509 tree no_return_label = NULL_TREE;
13510 tree decls = NULL_TREE;
13511 int call_poplevel = (flags & 1) != 0;
13512 int inclass_inline = (flags & 2) != 0;
13513 int expand_p;
13514 int nested;
13516 /* When we get some parse errors, we can end up without a
13517 current_function_decl, so cope. */
13518 if (fndecl == NULL_TREE)
13519 return;
13521 nested = function_depth > 1;
13522 fntype = TREE_TYPE (fndecl);
13524 /* TREE_READONLY (fndecl) = 1;
13525 This caused &foo to be of type ptr-to-const-function
13526 which then got a warning when stored in a ptr-to-function variable. */
13528 /* This happens on strange parse errors. */
13529 if (! current_function_parms_stored)
13531 call_poplevel = 0;
13532 store_parm_decls ();
13535 if (building_stmt_tree ())
13537 if (DECL_CONSTRUCTOR_P (fndecl) && call_poplevel)
13539 decls = getdecls ();
13540 expand_end_bindings (decls, decls != NULL_TREE, 0);
13541 poplevel (decls != NULL_TREE, 0, 0);
13544 /* Because we do not call expand_function_end, we won't call
13545 expand_end_bindings to match the call to
13546 expand_start_bindings we did in store_parm_decls. Therefore,
13547 we explicitly call expand_end_bindings here. However, we
13548 really shouldn't be calling expand_start_bindings at all when
13549 building_stmt_tree; it's conceptually an RTL-generation
13550 function, rather than a front-end function. */
13551 expand_end_bindings (0, 0, 0);
13553 else
13555 if (write_symbols != NO_DEBUG /*&& TREE_CODE (fntype) != METHOD_TYPE*/)
13557 tree ttype = target_type (fntype);
13558 tree parmdecl;
13560 if (IS_AGGR_TYPE (ttype))
13561 /* Let debugger know it should output info for this type. */
13562 note_debug_info_needed (ttype);
13564 for (parmdecl = DECL_ARGUMENTS (fndecl); parmdecl; parmdecl = TREE_CHAIN (parmdecl))
13566 ttype = target_type (TREE_TYPE (parmdecl));
13567 if (IS_AGGR_TYPE (ttype))
13568 /* Let debugger know it should output info for this type. */
13569 note_debug_info_needed (ttype);
13573 /* Clean house because we will need to reorder insns here. */
13574 do_pending_stack_adjust ();
13576 if (dtor_label)
13578 tree binfo = TYPE_BINFO (current_class_type);
13579 tree cond = integer_one_node;
13580 tree exprstmt;
13581 tree in_charge_node = lookup_name (in_charge_identifier, 0);
13582 tree virtual_size;
13583 int ok_to_optimize_dtor = 0;
13584 int empty_dtor = get_last_insn () == last_dtor_insn;
13586 if (current_function_assigns_this)
13587 cond = build (NE_EXPR, boolean_type_node,
13588 current_class_ptr, integer_zero_node);
13589 else
13591 int n_baseclasses = CLASSTYPE_N_BASECLASSES (current_class_type);
13593 /* If this destructor is empty, then we don't need to check
13594 whether `this' is NULL in some cases. */
13595 if ((flag_this_is_variable & 1) == 0)
13596 ok_to_optimize_dtor = 1;
13597 else if (empty_dtor)
13598 ok_to_optimize_dtor
13599 = (n_baseclasses == 0
13600 || (n_baseclasses == 1
13601 && TYPE_HAS_DESTRUCTOR (TYPE_BINFO_BASETYPE (current_class_type, 0))));
13604 /* These initializations might go inline. Protect
13605 the binding level of the parms. */
13606 pushlevel (0);
13607 expand_start_bindings (0);
13609 if (current_function_assigns_this)
13611 current_function_assigns_this = 0;
13612 current_function_just_assigned_this = 0;
13615 /* Generate the code to call destructor on base class.
13616 If this destructor belongs to a class with virtual
13617 functions, then set the virtual function table
13618 pointer to represent the type of our base class. */
13620 /* This side-effect makes call to `build_delete' generate the
13621 code we have to have at the end of this destructor.
13622 `build_delete' will set the flag again. */
13623 TYPE_HAS_DESTRUCTOR (current_class_type) = 0;
13625 /* These are two cases where we cannot delegate deletion. */
13626 if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type)
13627 || TYPE_GETS_REG_DELETE (current_class_type))
13628 exprstmt = build_delete (current_class_type, current_class_ref, integer_zero_node,
13629 LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR|LOOKUP_NORMAL, 0);
13630 else
13631 exprstmt = build_delete (current_class_type, current_class_ref, in_charge_node,
13632 LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR|LOOKUP_NORMAL, 0);
13634 /* If we did not assign to this, then `this' is non-zero at
13635 the end of a destructor. As a special optimization, don't
13636 emit test if this is an empty destructor. If it does nothing,
13637 it does nothing. If it calls a base destructor, the base
13638 destructor will perform the test. */
13640 if (exprstmt != error_mark_node
13641 && (TREE_CODE (exprstmt) != NOP_EXPR
13642 || TREE_OPERAND (exprstmt, 0) != integer_zero_node
13643 || TYPE_USES_VIRTUAL_BASECLASSES (current_class_type)))
13645 expand_label (dtor_label);
13646 if (cond != integer_one_node)
13647 expand_start_cond (cond, 0);
13648 if (exprstmt != void_zero_node)
13649 /* Don't call `expand_expr_stmt' if we're not going to do
13650 anything, since -Wall will give a diagnostic. */
13651 expand_expr_stmt (exprstmt);
13653 /* Run destructor on all virtual baseclasses. */
13654 if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type))
13656 tree vbases = nreverse (copy_list (CLASSTYPE_VBASECLASSES (current_class_type)));
13657 expand_start_cond (build (BIT_AND_EXPR, integer_type_node,
13658 in_charge_node, integer_two_node), 0);
13659 while (vbases)
13661 if (TYPE_NEEDS_DESTRUCTOR (BINFO_TYPE (vbases)))
13663 tree vb = get_vbase
13664 (BINFO_TYPE (vbases),
13665 TYPE_BINFO (current_class_type));
13666 expand_expr_stmt
13667 (build_scoped_method_call
13668 (current_class_ref, vb, dtor_identifier,
13669 build_expr_list (NULL_TREE, integer_zero_node)));
13671 vbases = TREE_CHAIN (vbases);
13673 expand_end_cond ();
13676 do_pending_stack_adjust ();
13677 if (cond != integer_one_node)
13678 expand_end_cond ();
13681 virtual_size = c_sizeof (current_class_type);
13683 /* At the end, call delete if that's what's requested. */
13685 /* FDIS sez: At the point of definition of a virtual destructor
13686 (including an implicit definition), non-placement operator
13687 delete shall be looked up in the scope of the destructor's
13688 class and if found shall be accessible and unambiguous.
13690 This is somewhat unclear, but I take it to mean that if the
13691 class only defines placement deletes we don't do anything here.
13692 So we pass LOOKUP_SPECULATIVELY; delete_sanity will complain
13693 for us if they ever try to delete one of these. */
13695 if (TYPE_GETS_REG_DELETE (current_class_type)
13696 || TYPE_USES_VIRTUAL_BASECLASSES (current_class_type))
13697 exprstmt = build_op_delete_call
13698 (DELETE_EXPR, current_class_ptr, virtual_size,
13699 LOOKUP_NORMAL | LOOKUP_SPECULATIVELY, NULL_TREE);
13700 else
13701 exprstmt = NULL_TREE;
13703 if (exprstmt)
13705 cond = build (BIT_AND_EXPR, integer_type_node,
13706 in_charge_node, integer_one_node);
13707 expand_start_cond (cond, 0);
13708 expand_expr_stmt (exprstmt);
13709 expand_end_cond ();
13712 /* End of destructor. */
13713 expand_end_bindings (NULL_TREE, getdecls () != NULL_TREE, 0);
13714 poplevel (getdecls () != NULL_TREE, 0, 0);
13716 /* Back to the top of destructor. */
13717 /* Don't execute destructor code if `this' is NULL. */
13719 start_sequence ();
13721 /* If the dtor is empty, and we know there is not possible way we
13722 could use any vtable entries, before they are possibly set by
13723 a base class dtor, we don't have to setup the vtables, as we
13724 know that any base class dtoring will set up any vtables it
13725 needs. We avoid MI, because one base class dtor can do a
13726 virtual dispatch to an overridden function that would need to
13727 have a non-related vtable set up, we cannot avoid setting up
13728 vtables in that case. We could change this to see if there is
13729 just one vtable. */
13730 if (! empty_dtor || TYPE_USES_COMPLEX_INHERITANCE (current_class_type))
13732 /* Make all virtual function table pointers in non-virtual base
13733 classes point to CURRENT_CLASS_TYPE's virtual function
13734 tables. */
13735 expand_direct_vtbls_init (binfo, binfo, 1, 0, current_class_ptr);
13737 if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type))
13738 expand_indirect_vtbls_init (binfo, current_class_ref, current_class_ptr);
13741 if (! ok_to_optimize_dtor)
13743 cond = build_binary_op (NE_EXPR,
13744 current_class_ptr, integer_zero_node);
13745 expand_start_cond (cond, 0);
13748 insns = get_insns ();
13749 end_sequence ();
13751 fn_last_parm_insn = get_first_nonparm_insn ();
13752 if (fn_last_parm_insn == NULL_RTX)
13753 fn_last_parm_insn = get_last_insn ();
13754 else
13755 fn_last_parm_insn = previous_insn (fn_last_parm_insn);
13757 emit_insns_after (insns, fn_last_parm_insn);
13759 if (! ok_to_optimize_dtor)
13760 expand_end_cond ();
13762 else if (current_function_assigns_this)
13764 /* Does not need to call emit_base_init, because
13765 that is done (if needed) just after assignment to this
13766 is seen. */
13768 if (DECL_CONSTRUCTOR_P (current_function_decl))
13770 end_protect_partials ();
13771 expand_label (ctor_label);
13772 ctor_label = NULL_TREE;
13774 if (call_poplevel)
13776 decls = getdecls ();
13777 expand_end_bindings (decls, decls != NULL_TREE, 0);
13778 poplevel (decls != NULL_TREE, 0, 0);
13780 /* c_expand_return knows to return 'this' from a constructor. */
13781 c_expand_return (NULL_TREE);
13783 else if (TREE_CODE (TREE_TYPE (DECL_RESULT (current_function_decl))) != VOID_TYPE
13784 && return_label != NULL_RTX)
13785 no_return_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
13787 current_function_assigns_this = 0;
13788 current_function_just_assigned_this = 0;
13789 base_init_expr = NULL_TREE;
13791 else if (DECL_CONSTRUCTOR_P (fndecl))
13793 tree cond = NULL_TREE, thenclause = NULL_TREE;
13794 /* Allow constructor for a type to get a new instance of the object
13795 using `build_new'. */
13796 tree abstract_virtuals = CLASSTYPE_ABSTRACT_VIRTUALS (current_class_type);
13797 CLASSTYPE_ABSTRACT_VIRTUALS (current_class_type) = NULL_TREE;
13799 if (flag_this_is_variable > 0)
13801 cond = build_binary_op (EQ_EXPR,
13802 current_class_ptr, integer_zero_node);
13803 thenclause = build_modify_expr (current_class_ptr, NOP_EXPR,
13804 build_new (NULL_TREE, current_class_type, void_type_node, 0));
13807 CLASSTYPE_ABSTRACT_VIRTUALS (current_class_type) = abstract_virtuals;
13809 start_sequence ();
13811 if (flag_this_is_variable > 0)
13813 expand_start_cond (cond, 0);
13814 expand_expr_stmt (thenclause);
13815 expand_end_cond ();
13818 /* Emit insns from `emit_base_init' which sets up virtual
13819 function table pointer(s). */
13820 if (base_init_expr)
13822 expand_expr_stmt (base_init_expr);
13823 base_init_expr = NULL_TREE;
13826 insns = get_insns ();
13827 end_sequence ();
13829 /* This is where the body of the constructor begins. */
13831 emit_insns_after (insns, last_parm_cleanup_insn);
13833 end_protect_partials ();
13835 /* This is where the body of the constructor ends. */
13836 expand_label (ctor_label);
13837 ctor_label = NULL_TREE;
13839 if (call_poplevel)
13841 decls = getdecls ();
13842 expand_end_bindings (decls, decls != NULL_TREE, 0);
13843 poplevel (decls != NULL_TREE, 1, 0);
13846 /* c_expand_return knows to return 'this' from a constructor. */
13847 c_expand_return (NULL_TREE);
13849 current_function_assigns_this = 0;
13850 current_function_just_assigned_this = 0;
13852 else if (DECL_MAIN_P (fndecl))
13854 /* Make it so that `main' always returns 0 by default. */
13855 #ifdef VMS
13856 c_expand_return (integer_one_node);
13857 #else
13858 c_expand_return (integer_zero_node);
13859 #endif
13861 else if (return_label != NULL_RTX
13862 && current_function_return_value == NULL_TREE
13863 && ! DECL_NAME (DECL_RESULT (current_function_decl)))
13864 no_return_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
13866 if (flag_exceptions)
13867 expand_exception_blocks ();
13869 /* If this function is supposed to return a value, ensure that
13870 we do not fall into the cleanups by mistake. The end of our
13871 function will look like this:
13873 user code (may have return stmt somewhere)
13874 goto no_return_label
13875 cleanup_label:
13876 cleanups
13877 goto return_label
13878 no_return_label:
13879 NOTE_INSN_FUNCTION_END
13880 return_label:
13881 things for return
13883 If the user omits a return stmt in the USER CODE section, we
13884 will have a control path which reaches NOTE_INSN_FUNCTION_END.
13885 Otherwise, we won't. */
13886 if (no_return_label)
13888 DECL_CONTEXT (no_return_label) = fndecl;
13889 DECL_INITIAL (no_return_label) = error_mark_node;
13890 DECL_SOURCE_FILE (no_return_label) = input_filename;
13891 DECL_SOURCE_LINE (no_return_label) = lineno;
13892 expand_goto (no_return_label);
13895 if (cleanup_label)
13897 /* Remove the binding contour which is used
13898 to catch cleanup-generated temporaries. */
13899 expand_end_bindings (0, 0, 0);
13900 poplevel (0, 0, 0);
13902 /* Emit label at beginning of cleanup code for parameters. */
13903 emit_label (cleanup_label);
13906 /* Get return value into register if that's where it's supposed to be. */
13907 if (original_result_rtx)
13908 fixup_result_decl (DECL_RESULT (fndecl), original_result_rtx);
13910 /* Finish building code that will trigger warnings if users forget
13911 to make their functions return values. */
13912 if (no_return_label || cleanup_label)
13913 emit_jump (return_label);
13914 if (no_return_label)
13916 /* We don't need to call `expand_*_return' here because we
13917 don't need any cleanups here--this path of code is only
13918 for error checking purposes. */
13919 expand_label (no_return_label);
13922 /* We hard-wired immediate_size_expand to zero in
13923 start_function. Expand_function_end will decrement this
13924 variable. So, we set the variable to one here, so that after
13925 the decrement it will remain zero. */
13926 immediate_size_expand = 1;
13928 /* Generate rtl for function exit. */
13929 expand_function_end (input_filename, lineno, 1);
13932 /* We have to save this value here in case
13933 maybe_end_member_template_processing decides to pop all the
13934 template parameters. */
13935 expand_p = !building_stmt_tree ();
13937 /* If we're saving up tree structure, tie off the function now. */
13938 if (!expand_p)
13939 finish_stmt_tree (fndecl);
13941 /* This must come after expand_function_end because cleanups might
13942 have declarations (from inline functions) that need to go into
13943 this function's blocks. */
13944 if (current_binding_level->parm_flag != 1)
13945 my_friendly_abort (122);
13946 poplevel (1, 0, 1);
13948 /* If this is a in-class inline definition, we may have to pop the
13949 bindings for the template parameters that we added in
13950 maybe_begin_member_template_processing when start_function was
13951 called. */
13952 if (inclass_inline)
13953 maybe_end_member_template_processing ();
13955 /* Reset scope for C++: if we were in the scope of a class,
13956 then when we finish this function, we are not longer so.
13957 This cannot be done until we know for sure that no more
13958 class members will ever be referenced in this function
13959 (i.e., calls to destructors). */
13960 if (current_class_name)
13962 ctype = current_class_type;
13963 pop_nested_class ();
13966 /* Must mark the RESULT_DECL as being in this function. */
13967 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
13969 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
13970 to the FUNCTION_DECL node itself. */
13971 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
13973 /* Undo the call to push_momentary in start_function. */
13974 pop_momentary ();
13976 if (expand_p)
13978 int saved_flag_keep_inline_functions =
13979 flag_keep_inline_functions;
13981 /* So we can tell if jump_optimize sets it to 1. */
13982 can_reach_end = 0;
13984 if (DECL_CONTEXT (fndecl) != NULL_TREE
13985 && hack_decl_function_context (fndecl))
13986 /* Trick rest_of_compilation into not deferring output of this
13987 function, even if it is inline, since the rtl_obstack for
13988 this function is the function_obstack of the enclosing
13989 function and will be deallocated when the enclosing
13990 function is gone. See save_tree_status. */
13991 flag_keep_inline_functions = 1;
13993 /* If this is a nested function (like a template instantiation
13994 that we're compiling in the midst of compiling something
13995 else), push a new GC context. That will keep local variables
13996 on the stack from being collected while we're doing the
13997 compilation of this function. */
13998 if (function_depth > 1)
13999 ggc_push_context ();
14001 /* Run the optimizers and output the assembler code for this
14002 function. */
14003 if (DECL_ARTIFICIAL (fndecl))
14005 /* Do we really *want* to inline this synthesized method? */
14007 int save_fif = flag_inline_functions;
14008 flag_inline_functions = 1;
14010 /* Turn off DECL_INLINE for the moment so function_cannot_inline_p
14011 will check our size. */
14012 DECL_INLINE (fndecl) = 0;
14014 rest_of_compilation (fndecl);
14015 flag_inline_functions = save_fif;
14017 else
14018 rest_of_compilation (fndecl);
14020 /* Undo the call to ggc_push_context above. */
14021 if (function_depth > 1)
14022 ggc_pop_context ();
14024 flag_keep_inline_functions = saved_flag_keep_inline_functions;
14026 if (DECL_SAVED_INSNS (fndecl) && ! TREE_ASM_WRITTEN (fndecl))
14028 /* Set DECL_EXTERNAL so that assemble_external will be called as
14029 necessary. We'll clear it again in finish_file. */
14030 if (! DECL_EXTERNAL (fndecl))
14031 DECL_NOT_REALLY_EXTERN (fndecl) = 1;
14032 DECL_EXTERNAL (fndecl) = 1;
14033 mark_inline_for_output (fndecl);
14036 if (ctype && TREE_ASM_WRITTEN (fndecl))
14037 note_debug_info_needed (ctype);
14039 current_function_returns_null |= can_reach_end;
14041 /* Since we don't normally go through c_expand_return for constructors,
14042 this normally gets the wrong value.
14043 Also, named return values have their return codes emitted after
14044 NOTE_INSN_FUNCTION_END, confusing jump.c. */
14045 if (DECL_CONSTRUCTOR_P (fndecl)
14046 || DECL_NAME (DECL_RESULT (fndecl)) != NULL_TREE)
14047 current_function_returns_null = 0;
14049 if (TREE_THIS_VOLATILE (fndecl) && current_function_returns_null)
14050 cp_warning ("`noreturn' function `%D' does return", fndecl);
14051 else if ((warn_return_type || pedantic)
14052 && current_function_returns_null
14053 && TREE_CODE (TREE_TYPE (fntype)) != VOID_TYPE)
14055 /* If this function returns non-void and control can drop through,
14056 complain. */
14057 cp_warning ("control reaches end of non-void function `%D'", fndecl);
14059 /* With just -W, complain only if function returns both with
14060 and without a value. */
14061 else if (extra_warnings
14062 && current_function_returns_value && current_function_returns_null)
14063 warning ("this function may return with or without a value");
14066 --function_depth;
14068 /* Free all the tree nodes making up this function. */
14069 /* Switch back to allocating nodes permanently
14070 until we start another function. */
14071 if (! nested)
14072 permanent_allocation (1);
14074 if (DECL_SAVED_INSNS (fndecl) == 0)
14076 tree t;
14078 /* Stop pointing to the local nodes about to be freed. */
14079 /* But DECL_INITIAL must remain nonzero so we know this
14080 was an actual function definition. */
14081 DECL_INITIAL (fndecl) = error_mark_node;
14082 for (t = DECL_ARGUMENTS (fndecl); t; t = TREE_CHAIN (t))
14083 DECL_RTL (t) = DECL_INCOMING_RTL (t) = NULL_RTX;
14086 if (DECL_STATIC_CONSTRUCTOR (fndecl))
14087 static_ctors = perm_tree_cons (NULL_TREE, fndecl, static_ctors);
14088 if (DECL_STATIC_DESTRUCTOR (fndecl))
14089 static_dtors = perm_tree_cons (NULL_TREE, fndecl, static_dtors);
14091 if (! nested)
14093 /* Let the error reporting routines know that we're outside a
14094 function. For a nested function, this value is used in
14095 pop_cp_function_context and then reset via pop_function_context. */
14096 current_function_decl = NULL_TREE;
14099 named_label_uses = NULL;
14100 current_class_ptr = NULL_TREE;
14101 current_class_ref = NULL_TREE;
14104 /* Create the FUNCTION_DECL for a function definition.
14105 DECLSPECS and DECLARATOR are the parts of the declaration;
14106 they describe the return type and the name of the function,
14107 but twisted together in a fashion that parallels the syntax of C.
14109 This function creates a binding context for the function body
14110 as well as setting up the FUNCTION_DECL in current_function_decl.
14112 Returns a FUNCTION_DECL on success.
14114 If the DECLARATOR is not suitable for a function (it defines a datum
14115 instead), we return 0, which tells yyparse to report a parse error.
14117 May return void_type_node indicating that this method is actually
14118 a friend. See grokfield for more details.
14120 Came here with a `.pushlevel' .
14122 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
14123 CHANGES TO CODE IN `grokfield'. */
14125 tree
14126 start_method (declspecs, declarator, attrlist)
14127 tree declarator, declspecs, attrlist;
14129 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
14130 attrlist);
14132 /* Something too ugly to handle. */
14133 if (fndecl == NULL_TREE)
14134 return NULL_TREE;
14136 /* Pass friends other than inline friend functions back. */
14137 if (fndecl == void_type_node)
14138 return fndecl;
14140 if (TREE_CODE (fndecl) != FUNCTION_DECL)
14141 /* Not a function, tell parser to report parse error. */
14142 return NULL_TREE;
14144 if (DECL_IN_AGGR_P (fndecl))
14146 if (IDENTIFIER_ERROR_LOCUS (DECL_ASSEMBLER_NAME (fndecl)) != current_class_type)
14148 if (DECL_CONTEXT (fndecl)
14149 && TREE_CODE( DECL_CONTEXT (fndecl)) != NAMESPACE_DECL)
14150 cp_error ("`%D' is already defined in class %s", fndecl,
14151 TYPE_NAME_STRING (DECL_CONTEXT (fndecl)));
14153 return void_type_node;
14156 check_template_shadow (fndecl);
14158 DECL_THIS_INLINE (fndecl) = 1;
14160 if (flag_default_inline)
14161 DECL_INLINE (fndecl) = 1;
14163 /* We process method specializations in finish_struct_1. */
14164 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
14165 fndecl = push_template_decl (fndecl);
14167 /* We read in the parameters on the maybepermanent_obstack,
14168 but we won't be getting back to them until after we
14169 may have clobbered them. So the call to preserve_data
14170 will keep them safe. */
14171 preserve_data ();
14173 if (! DECL_FRIEND_P (fndecl))
14175 if (TREE_CHAIN (fndecl))
14177 fndecl = copy_node (fndecl);
14178 TREE_CHAIN (fndecl) = NULL_TREE;
14181 if (DECL_CONSTRUCTOR_P (fndecl))
14183 if (! grok_ctor_properties (current_class_type, fndecl))
14184 return void_type_node;
14186 else if (IDENTIFIER_OPNAME_P (DECL_NAME (fndecl)))
14187 grok_op_properties (fndecl, DECL_VIRTUAL_P (fndecl), 0);
14190 cp_finish_decl (fndecl, NULL_TREE, NULL_TREE, 0, 0);
14192 /* Make a place for the parms */
14193 pushlevel (0);
14194 current_binding_level->parm_flag = 1;
14196 DECL_IN_AGGR_P (fndecl) = 1;
14197 return fndecl;
14200 /* Go through the motions of finishing a function definition.
14201 We don't compile this method until after the whole class has
14202 been processed.
14204 FINISH_METHOD must return something that looks as though it
14205 came from GROKFIELD (since we are defining a method, after all).
14207 This is called after parsing the body of the function definition.
14208 STMTS is the chain of statements that makes up the function body.
14210 DECL is the ..._DECL that `start_method' provided. */
14212 tree
14213 finish_method (decl)
14214 tree decl;
14216 register tree fndecl = decl;
14217 tree old_initial;
14219 register tree link;
14221 if (decl == void_type_node)
14222 return decl;
14224 old_initial = DECL_INITIAL (fndecl);
14226 /* Undo the level for the parms (from start_method).
14227 This is like poplevel, but it causes nothing to be
14228 saved. Saving information here confuses symbol-table
14229 output routines. Besides, this information will
14230 be correctly output when this method is actually
14231 compiled. */
14233 /* Clear out the meanings of the local variables of this level;
14234 also record in each decl which block it belongs to. */
14236 for (link = current_binding_level->names; link; link = TREE_CHAIN (link))
14238 if (DECL_NAME (link) != NULL_TREE)
14239 pop_binding (DECL_NAME (link), link);
14240 my_friendly_assert (TREE_CODE (link) != FUNCTION_DECL, 163);
14241 DECL_CONTEXT (link) = NULL_TREE;
14244 GNU_xref_end_scope ((HOST_WIDE_INT) current_binding_level,
14245 (HOST_WIDE_INT) current_binding_level->level_chain,
14246 current_binding_level->parm_flag,
14247 current_binding_level->keep);
14249 poplevel (0, 0, 0);
14251 DECL_INITIAL (fndecl) = old_initial;
14253 /* We used to check if the context of FNDECL was different from
14254 current_class_type as another way to get inside here. This didn't work
14255 for String.cc in libg++. */
14256 if (DECL_FRIEND_P (fndecl))
14258 CLASSTYPE_INLINE_FRIENDS (current_class_type)
14259 = tree_cons (NULL_TREE, fndecl, CLASSTYPE_INLINE_FRIENDS (current_class_type));
14260 decl = void_type_node;
14263 return decl;
14266 /* Called when a new struct TYPE is defined.
14267 If this structure or union completes the type of any previous
14268 variable declaration, lay it out and output its rtl. */
14270 void
14271 hack_incomplete_structures (type)
14272 tree type;
14274 tree *list;
14276 if (current_binding_level->incomplete == NULL_TREE)
14277 return;
14279 if (!type) /* Don't do this for class templates. */
14280 return;
14282 for (list = &current_binding_level->incomplete; *list; )
14284 tree decl = TREE_VALUE (*list);
14285 if ((decl && TREE_TYPE (decl) == type)
14286 || (TREE_TYPE (decl)
14287 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
14288 && TREE_TYPE (TREE_TYPE (decl)) == type))
14290 int toplevel = toplevel_bindings_p ();
14291 if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
14292 && TREE_TYPE (TREE_TYPE (decl)) == type)
14293 layout_type (TREE_TYPE (decl));
14294 layout_decl (decl, 0);
14295 rest_of_decl_compilation (decl, NULL_PTR, toplevel, 0);
14296 if (! toplevel)
14298 tree cleanup;
14299 expand_decl (decl);
14300 cleanup = maybe_build_cleanup (decl);
14301 expand_decl_init (decl);
14302 if (! expand_decl_cleanup (decl, cleanup))
14303 cp_error ("parser lost in parsing declaration of `%D'",
14304 decl);
14306 *list = TREE_CHAIN (*list);
14308 else
14309 list = &TREE_CHAIN (*list);
14313 /* If DECL is of a type which needs a cleanup, build that cleanup here.
14314 See build_delete for information about AUTO_DELETE.
14316 Don't build these on the momentary obstack; they must live
14317 the life of the binding contour. */
14319 static tree
14320 maybe_build_cleanup_1 (decl, auto_delete)
14321 tree decl, auto_delete;
14323 tree type = TREE_TYPE (decl);
14324 if (type != error_mark_node && TYPE_NEEDS_DESTRUCTOR (type))
14326 int temp = 0, flags = LOOKUP_NORMAL|LOOKUP_DESTRUCTOR;
14327 tree rval;
14329 if (TREE_CODE (decl) != PARM_DECL)
14330 temp = suspend_momentary ();
14332 if (TREE_CODE (type) == ARRAY_TYPE)
14333 rval = decl;
14334 else
14336 mark_addressable (decl);
14337 rval = build_unary_op (ADDR_EXPR, decl, 0);
14340 /* Optimize for space over speed here. */
14341 if (! TYPE_USES_VIRTUAL_BASECLASSES (type)
14342 || flag_expensive_optimizations)
14343 flags |= LOOKUP_NONVIRTUAL;
14345 rval = build_delete (TREE_TYPE (rval), rval, auto_delete, flags, 0);
14347 if (TYPE_USES_VIRTUAL_BASECLASSES (type)
14348 && ! TYPE_HAS_DESTRUCTOR (type))
14349 rval = build_compound_expr (expr_tree_cons (NULL_TREE, rval,
14350 build_expr_list (NULL_TREE, build_vbase_delete (type, decl))));
14352 if (TREE_CODE (decl) != PARM_DECL)
14353 resume_momentary (temp);
14355 return rval;
14357 return 0;
14360 /* If DECL is of a type which needs a cleanup, build that cleanup
14361 here. The cleanup does free the storage with a call to delete. */
14363 tree
14364 maybe_build_cleanup_and_delete (decl)
14365 tree decl;
14367 return maybe_build_cleanup_1 (decl, integer_three_node);
14370 /* If DECL is of a type which needs a cleanup, build that cleanup
14371 here. The cleanup does not free the storage with a call a delete. */
14373 tree
14374 maybe_build_cleanup (decl)
14375 tree decl;
14377 return maybe_build_cleanup_1 (decl, integer_two_node);
14380 /* Expand a C++ expression at the statement level.
14381 This is needed to ferret out nodes which have UNKNOWN_TYPE.
14382 The C++ type checker should get all of these out when
14383 expressions are combined with other, type-providing, expressions,
14384 leaving only orphan expressions, such as:
14386 &class::bar; / / takes its address, but does nothing with it. */
14388 void
14389 cplus_expand_expr_stmt (exp)
14390 tree exp;
14392 exp = require_complete_type_in_void (exp);
14394 if (TREE_CODE (exp) == FUNCTION_DECL)
14396 cp_warning ("reference, not call, to function `%D'", exp);
14397 warning ("at this point in file");
14400 #if 0
14401 /* We should do this eventually, but right now this causes regex.o from
14402 libg++ to miscompile, and tString to core dump. */
14403 exp = build1 (CLEANUP_POINT_EXPR, TREE_TYPE (exp), exp);
14404 #endif
14406 /* Strip unused implicit INDIRECT_REFs of references. */
14407 if (TREE_CODE (exp) == INDIRECT_REF
14408 && TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == REFERENCE_TYPE)
14409 exp = TREE_OPERAND (exp, 0);
14411 /* If we don't do this, we end up down inside expand_expr
14412 trying to do TYPE_MODE on the ERROR_MARK, and really
14413 go outside the bounds of the type. */
14414 if (exp != error_mark_node)
14415 expand_expr_stmt (break_out_cleanups (exp));
14418 /* When a stmt has been parsed, this function is called. */
14420 void
14421 finish_stmt ()
14423 if (!current_function_assigns_this
14424 && current_function_just_assigned_this)
14426 if (DECL_CONSTRUCTOR_P (current_function_decl))
14428 /* Constructors must wait until we are out of control
14429 zones before calling base constructors. */
14430 if (in_control_zone_p ())
14431 return;
14432 expand_expr_stmt (base_init_expr);
14433 check_base_init (current_class_type);
14435 current_function_assigns_this = 1;
14438 /* Always assume this statement was not an expression statement. If
14439 it actually was an expression statement, its our callers
14440 responsibility to fix this up. */
14441 last_expr_type = NULL_TREE;
14444 /* Change a static member function definition into a FUNCTION_TYPE, instead
14445 of the METHOD_TYPE that we create when it's originally parsed.
14447 WARNING: DO NOT pass &TREE_TYPE (decl) to FN or &TYPE_ARG_TYPES
14448 (TREE_TYPE (decl)) to ARGTYPES, as doing so will corrupt the types of
14449 other decls. Either pass the addresses of local variables or NULL. */
14451 void
14452 revert_static_member_fn (decl, fn, argtypes)
14453 tree *decl, *fn, *argtypes;
14455 tree tmp;
14456 tree function = fn ? *fn : TREE_TYPE (*decl);
14457 tree args = argtypes ? *argtypes : TYPE_ARG_TYPES (function);
14459 if (CP_TYPE_QUALS (TREE_TYPE (TREE_VALUE (args)))
14460 != TYPE_UNQUALIFIED)
14461 cp_error ("static member function `%#D' declared with type qualifiers",
14462 *decl);
14464 args = TREE_CHAIN (args);
14465 tmp = build_function_type (TREE_TYPE (function), args);
14466 tmp = build_qualified_type (tmp, CP_TYPE_QUALS (function));
14467 tmp = build_exception_variant (tmp,
14468 TYPE_RAISES_EXCEPTIONS (function));
14469 TREE_TYPE (*decl) = tmp;
14470 if (DECL_ARGUMENTS (*decl))
14471 DECL_ARGUMENTS (*decl) = TREE_CHAIN (DECL_ARGUMENTS (*decl));
14472 DECL_STATIC_FUNCTION_P (*decl) = 1;
14473 if (fn)
14474 *fn = tmp;
14475 if (argtypes)
14476 *argtypes = args;
14479 /* Save and reinitialize the variables
14480 used during compilation of a C++ function. */
14482 static void
14483 push_cp_function_context (f)
14484 struct function *f;
14486 struct language_function *p
14487 = ((struct language_function *)
14488 xcalloc (1, sizeof (struct language_function)));
14489 f->language = p;
14490 if (f->next)
14491 p->binding_level = f->next->language->binding_level;
14493 /* For now, we always assume we're expanding all the way to RTL
14494 unless we're explicitly doing otherwise. */
14495 expanding_p = 1;
14497 /* Whenever we start a new function, we destroy temporaries in the
14498 usual way. */
14499 stmts_are_full_exprs_p = 1;
14502 /* Restore the variables used during compilation of a C++ function. */
14504 static void
14505 pop_cp_function_context (f)
14506 struct function *f;
14508 free (f->language);
14509 f->language = 0;
14512 void
14513 mark_cp_function_context (f)
14514 struct function *f;
14516 struct language_function *p = f->language;
14518 if (!p)
14519 return;
14521 ggc_mark_tree (p->x_named_labels);
14522 ggc_mark_tree (p->x_ctor_label);
14523 ggc_mark_tree (p->x_dtor_label);
14524 ggc_mark_tree (p->x_base_init_list);
14525 ggc_mark_tree (p->x_member_init_list);
14526 ggc_mark_tree (p->x_base_init_expr);
14527 ggc_mark_tree (p->x_current_class_ptr);
14528 ggc_mark_tree (p->x_current_class_ref);
14529 ggc_mark_tree (p->x_last_tree);
14530 ggc_mark_tree (p->x_last_expr_type);
14532 ggc_mark_rtx (p->x_last_dtor_insn);
14533 ggc_mark_rtx (p->x_last_parm_cleanup_insn);
14534 ggc_mark_rtx (p->x_result_rtx);
14536 mark_binding_level (&p->binding_level);
14541 in_function_p ()
14543 return function_depth != 0;
14547 void
14548 lang_mark_false_label_stack (l)
14549 struct label_node *l;
14551 /* C++ doesn't use false_label_stack. It better be NULL. */
14552 my_friendly_assert (l == NULL, 19990904);
14555 void
14556 lang_mark_tree (t)
14557 tree t;
14559 enum tree_code code = TREE_CODE (t);
14560 if (code == IDENTIFIER_NODE)
14562 struct lang_identifier *li = (struct lang_identifier *) t;
14563 struct lang_id2 *li2 = li->x;
14564 ggc_mark_tree (li->namespace_bindings);
14565 ggc_mark_tree (li->class_value);
14566 ggc_mark_tree (li->class_template_info);
14568 if (li2)
14570 ggc_mark_tree (li2->label_value);
14571 ggc_mark_tree (li2->implicit_decl);
14572 ggc_mark_tree (li2->error_locus);
14575 else if (code == CPLUS_BINDING)
14577 if (BINDING_HAS_LEVEL_P (t))
14578 mark_binding_level (&BINDING_LEVEL (t));
14579 else
14580 ggc_mark_tree (BINDING_SCOPE (t));
14581 ggc_mark_tree (BINDING_VALUE (t));
14583 else if (code == OVERLOAD)
14584 ggc_mark_tree (OVL_FUNCTION (t));
14585 else if (code == TEMPLATE_PARM_INDEX)
14586 ggc_mark_tree (TEMPLATE_PARM_DECL (t));
14587 else if (TREE_CODE_CLASS (code) == 'd')
14589 struct lang_decl *ld = DECL_LANG_SPECIFIC (t);
14591 if (ld)
14593 ggc_mark_tree (ld->decl_flags.access);
14594 ggc_mark_tree (ld->decl_flags.context);
14595 if (TREE_CODE (t) != NAMESPACE_DECL)
14596 ggc_mark_tree (ld->decl_flags.u.template_info);
14597 if (CAN_HAVE_FULL_LANG_DECL_P (t))
14599 ggc_mark_tree (ld->main_decl_variant);
14600 ggc_mark_tree (ld->befriending_classes);
14601 ggc_mark_tree (ld->saved_tree);
14602 if (TREE_CODE (t) == TYPE_DECL)
14603 ggc_mark_tree (ld->u.sorted_fields);
14607 else if (TREE_CODE_CLASS (code) == 't')
14609 struct lang_type *lt = TYPE_LANG_SPECIFIC (t);
14611 if (lt && !(TREE_CODE (t) == POINTER_TYPE
14612 && TREE_CODE (TREE_TYPE (t)) == METHOD_TYPE))
14614 ggc_mark_tree (lt->vfields);
14615 ggc_mark_tree (lt->vbases);
14616 ggc_mark_tree (lt->tags);
14617 ggc_mark_tree (lt->search_slot);
14618 ggc_mark_tree (lt->size);
14619 ggc_mark_tree (lt->abstract_virtuals);
14620 ggc_mark_tree (lt->friend_classes);
14621 ggc_mark_tree (lt->rtti);
14622 ggc_mark_tree (lt->methods);
14623 ggc_mark_tree (lt->template_info);
14624 ggc_mark_tree (lt->befriending_classes);
14626 else if (lt)
14627 /* In the case of pointer-to-member function types, the
14628 TYPE_LANG_SPECIFIC is really just a tree. */
14629 ggc_mark_tree ((tree) lt);
14633 void
14634 lang_cleanup_tree (t)
14635 tree t;
14637 if (TREE_CODE_CLASS (TREE_CODE (t)) == 't'
14638 && TYPE_LANG_SPECIFIC (t) != NULL
14639 && !(TREE_CODE (t) == POINTER_TYPE
14640 && TREE_CODE (TREE_TYPE (t)) == METHOD_TYPE))
14641 free (TYPE_LANG_SPECIFIC (t));